less-rails-semantic_ui 2.3.0.0 → 2.3.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (53) hide show
  1. checksums.yaml +5 -5
  2. data/assets/fonts/semantic_ui/themes/default/assets/fonts/brand-icons.eot +0 -0
  3. data/assets/fonts/semantic_ui/themes/default/assets/fonts/brand-icons.svg +1008 -0
  4. data/assets/fonts/semantic_ui/themes/default/assets/fonts/brand-icons.ttf +0 -0
  5. data/assets/fonts/semantic_ui/themes/default/assets/fonts/brand-icons.woff +0 -0
  6. data/assets/fonts/semantic_ui/themes/default/assets/fonts/brand-icons.woff2 +0 -0
  7. data/assets/fonts/semantic_ui/themes/default/assets/fonts/icons.eot +0 -0
  8. data/assets/fonts/semantic_ui/themes/default/assets/fonts/icons.svg +1515 -944
  9. data/assets/fonts/semantic_ui/themes/default/assets/fonts/icons.ttf +0 -0
  10. data/assets/fonts/semantic_ui/themes/default/assets/fonts/icons.woff +0 -0
  11. data/assets/fonts/semantic_ui/themes/default/assets/fonts/icons.woff2 +0 -0
  12. data/assets/fonts/semantic_ui/themes/default/assets/fonts/outline-icons.eot +0 -0
  13. data/assets/fonts/semantic_ui/themes/default/assets/fonts/outline-icons.svg +366 -0
  14. data/assets/fonts/semantic_ui/themes/default/assets/fonts/outline-icons.ttf +0 -0
  15. data/assets/fonts/semantic_ui/themes/default/assets/fonts/outline-icons.woff +0 -0
  16. data/assets/fonts/semantic_ui/themes/default/assets/fonts/outline-icons.woff2 +0 -0
  17. data/assets/javascripts/semantic_ui/definitions/behaviors/api.js +1 -1
  18. data/assets/javascripts/semantic_ui/definitions/behaviors/form.js +6 -6
  19. data/assets/javascripts/semantic_ui/definitions/behaviors/visibility.js +2 -2
  20. data/assets/javascripts/semantic_ui/definitions/modules/accordion.js +1 -1
  21. data/assets/javascripts/semantic_ui/definitions/modules/checkbox.js +1 -1
  22. data/assets/javascripts/semantic_ui/definitions/modules/dimmer.js +1 -1
  23. data/assets/javascripts/semantic_ui/definitions/modules/dropdown.js +11 -5
  24. data/assets/javascripts/semantic_ui/definitions/modules/embed.js +1 -1
  25. data/assets/javascripts/semantic_ui/definitions/modules/modal.js +1 -1
  26. data/assets/javascripts/semantic_ui/definitions/modules/nag.js +1 -1
  27. data/assets/javascripts/semantic_ui/definitions/modules/popup.js +1 -1
  28. data/assets/javascripts/semantic_ui/definitions/modules/progress.js +1 -1
  29. data/assets/javascripts/semantic_ui/definitions/modules/rating.js +1 -1
  30. data/assets/javascripts/semantic_ui/definitions/modules/search.js +4 -3
  31. data/assets/javascripts/semantic_ui/definitions/modules/shape.js +1 -1
  32. data/assets/javascripts/semantic_ui/definitions/modules/sidebar.js +1 -1
  33. data/assets/javascripts/semantic_ui/definitions/modules/sticky.js +1 -1
  34. data/assets/javascripts/semantic_ui/definitions/modules/tab.js +1 -1
  35. data/assets/javascripts/semantic_ui/definitions/modules/transition.js +1 -1
  36. data/assets/stylesheets/semantic_ui/definitions/collections/menu.less +2 -2
  37. data/assets/stylesheets/semantic_ui/definitions/elements/icon.less +1 -1
  38. data/assets/stylesheets/semantic_ui/definitions/elements/image.less +2 -2
  39. data/assets/stylesheets/semantic_ui/definitions/elements/reveal.less +2 -0
  40. data/assets/stylesheets/semantic_ui/definitions/modules/search.less +12 -0
  41. data/assets/stylesheets/semantic_ui/themes/basic/elements/button.variables +1 -1
  42. data/assets/stylesheets/semantic_ui/themes/basic/modules/progress.variables +2 -2
  43. data/assets/stylesheets/semantic_ui/themes/bookish/elements/header.variables +2 -2
  44. data/assets/stylesheets/semantic_ui/themes/bootstrap3/elements/button.variables +2 -2
  45. data/assets/stylesheets/semantic_ui/themes/chubby/elements/button.variables +1 -1
  46. data/assets/stylesheets/semantic_ui/themes/default/elements/icon.overrides +1082 -749
  47. data/assets/stylesheets/semantic_ui/themes/default/elements/icon.variables +39 -7
  48. data/lib/generators/semantic_ui/install/templates/semantic_ui.js +0 -3
  49. data/lib/less/rails/semantic_ui/version.rb +1 -1
  50. metadata +13 -7
  51. data/assets/javascripts/semantic_ui/definitions/behaviors/colorize.js +0 -280
  52. data/assets/javascripts/semantic_ui/definitions/behaviors/state.js +0 -708
  53. data/assets/javascripts/semantic_ui/definitions/behaviors/visit.js +0 -525
@@ -10,7 +10,7 @@
10
10
 
11
11
  ;(function ($, window, document, undefined) {
12
12
 
13
- "use strict";
13
+ 'use strict';
14
14
 
15
15
  window = (typeof window != 'undefined' && window.Math == Math)
16
16
  ? window
@@ -10,7 +10,7 @@
10
10
 
11
11
  ;(function ($, window, document, undefined) {
12
12
 
13
- "use strict";
13
+ 'use strict';
14
14
 
15
15
  window = (typeof window != 'undefined' && window.Math == Math)
16
16
  ? window
@@ -1617,7 +1617,7 @@ $.fn.dropdown = function(parameters) {
1617
1617
  : text
1618
1618
  ;
1619
1619
  if( module.can.activate( $(element) ) ) {
1620
- module.set.value(value, $(element));
1620
+ module.set.value(value, text, $(element));
1621
1621
  if(module.is.multiple() && !module.is.allFiltered()) {
1622
1622
  return;
1623
1623
  }
@@ -2283,7 +2283,7 @@ $.fn.dropdown = function(parameters) {
2283
2283
  var
2284
2284
  length = module.get.query().length
2285
2285
  ;
2286
- $search.val( text.substr(0 , length));
2286
+ $search.val( text.substr(0, length));
2287
2287
  },
2288
2288
  scrollPosition: function($item, forceScroll) {
2289
2289
  var
@@ -2579,6 +2579,9 @@ $.fn.dropdown = function(parameters) {
2579
2579
  escapedValue = module.escape.value(value),
2580
2580
  $label
2581
2581
  ;
2582
+ if(settings.ignoreCase) {
2583
+ escapedValue = escapedValue.toLowerCase();
2584
+ }
2582
2585
  $label = $('<a />')
2583
2586
  .addClass(className.label)
2584
2587
  .attr('data-' + metadata.value, escapedValue)
@@ -2586,7 +2589,7 @@ $.fn.dropdown = function(parameters) {
2586
2589
  ;
2587
2590
  $label = settings.onLabelCreate.call($label, escapedValue, text);
2588
2591
 
2589
- if(module.has.value(value)) {
2592
+ if(module.has.label(value)) {
2590
2593
  module.debug('User selection already exists, skipping', escapedValue);
2591
2594
  return;
2592
2595
  }
@@ -3043,6 +3046,9 @@ $.fn.dropdown = function(parameters) {
3043
3046
  escapedValue = module.escape.value(value),
3044
3047
  $labels = $module.find(selector.label)
3045
3048
  ;
3049
+ if(settings.ignoreCase) {
3050
+ escapedValue = escapedValue.toLowerCase();
3051
+ }
3046
3052
  return ($labels.filter('[data-' + metadata.value + '="' + module.escape.string(escapedValue) +'"]').length > 0);
3047
3053
  },
3048
3054
  maxSelections: function() {
@@ -3889,7 +3895,7 @@ $.fn.dropdown.settings.templates = {
3889
3895
  ? 'disabled '
3890
3896
  : ''
3891
3897
  ;
3892
- html += '<div class="'+ maybeDisabled +'item" data-value="' + option[fields.value] + '"' + maybeText + '>'
3898
+ html += '<div class="'+ maybeDisabled +'item" data-value="' + option[fields.value] + '"' + maybeText + '>';
3893
3899
  html += option[fields.name];
3894
3900
  html += '</div>';
3895
3901
  });
@@ -10,7 +10,7 @@
10
10
 
11
11
  ;(function ($, window, document, undefined) {
12
12
 
13
- "use strict";
13
+ 'use strict';
14
14
 
15
15
  window = (typeof window != 'undefined' && window.Math == Math)
16
16
  ? window
@@ -10,7 +10,7 @@
10
10
 
11
11
  ;(function ($, window, document, undefined) {
12
12
 
13
- "use strict";
13
+ 'use strict';
14
14
 
15
15
  window = (typeof window != 'undefined' && window.Math == Math)
16
16
  ? window
@@ -10,7 +10,7 @@
10
10
 
11
11
  ;(function ($, window, document, undefined) {
12
12
 
13
- "use strict";
13
+ 'use strict';
14
14
 
15
15
  window = (typeof window != 'undefined' && window.Math == Math)
16
16
  ? window
@@ -10,7 +10,7 @@
10
10
 
11
11
  ;(function ($, window, document, undefined) {
12
12
 
13
- "use strict";
13
+ 'use strict';
14
14
 
15
15
  window = (typeof window != 'undefined' && window.Math == Math)
16
16
  ? window
@@ -10,7 +10,7 @@
10
10
 
11
11
  ;(function ($, window, document, undefined) {
12
12
 
13
- "use strict";
13
+ 'use strict';
14
14
 
15
15
  window = (typeof window != 'undefined' && window.Math == Math)
16
16
  ? window
@@ -10,7 +10,7 @@
10
10
 
11
11
  ;(function ($, window, document, undefined) {
12
12
 
13
- "use strict";
13
+ 'use strict';
14
14
 
15
15
  window = (typeof window != 'undefined' && window.Math == Math)
16
16
  ? window
@@ -10,7 +10,7 @@
10
10
 
11
11
  ;(function ($, window, document, undefined) {
12
12
 
13
- "use strict";
13
+ 'use strict';
14
14
 
15
15
  window = (typeof window != 'undefined' && window.Math == Math)
16
16
  ? window
@@ -596,9 +596,10 @@ $.fn.search = function(parameters) {
596
596
  addResult = function(array, result) {
597
597
  var
598
598
  notResult = ($.inArray(result, results) == -1),
599
- notFuzzyResult = ($.inArray(result, fuzzyResults) == -1)
599
+ notFuzzyResult = ($.inArray(result, fuzzyResults) == -1),
600
+ notExactResults = ($.inArray(result, exactResults) == -1)
600
601
  ;
601
- if(notResult && notFuzzyResult) {
602
+ if(notResult && notFuzzyResult && notExactResults) {
602
603
  array.push(result);
603
604
  }
604
605
  }
@@ -10,7 +10,7 @@
10
10
 
11
11
  ;(function ($, window, document, undefined) {
12
12
 
13
- "use strict";
13
+ 'use strict';
14
14
 
15
15
  window = (typeof window != 'undefined' && window.Math == Math)
16
16
  ? window
@@ -10,7 +10,7 @@
10
10
 
11
11
  ;(function ($, window, document, undefined) {
12
12
 
13
- "use strict";
13
+ 'use strict';
14
14
 
15
15
  window = (typeof window != 'undefined' && window.Math == Math)
16
16
  ? window
@@ -10,7 +10,7 @@
10
10
 
11
11
  ;(function ($, window, document, undefined) {
12
12
 
13
- "use strict";
13
+ 'use strict';
14
14
 
15
15
  window = (typeof window != 'undefined' && window.Math == Math)
16
16
  ? window
@@ -10,7 +10,7 @@
10
10
 
11
11
  ;(function ($, window, document, undefined) {
12
12
 
13
- "use strict";
13
+ 'use strict';
14
14
 
15
15
  window = (typeof window != 'undefined' && window.Math == Math)
16
16
  ? window
@@ -10,7 +10,7 @@
10
10
 
11
11
  ;(function ($, window, document, undefined) {
12
12
 
13
- "use strict";
13
+ 'use strict';
14
14
 
15
15
  window = (typeof window != 'undefined' && window.Math == Math)
16
16
  ? window
@@ -462,9 +462,9 @@
462
462
 
463
463
  .ui.menu .item.disabled,
464
464
  .ui.menu .item.disabled:hover {
465
- cursor: default;
465
+ cursor: default !important;
466
466
  background-color: transparent !important;
467
- color: @disabledTextColor;
467
+ color: @disabledTextColor !important;
468
468
  }
469
469
 
470
470
 
@@ -124,7 +124,7 @@ i.disabled.icon {
124
124
 
125
125
  i.fitted.icon {
126
126
  width: auto;
127
- margin: 0em;
127
+ margin: 0em !important;
128
128
  }
129
129
 
130
130
  /*-------------------
@@ -329,8 +329,8 @@ img.ui.bordered.image {
329
329
  }
330
330
 
331
331
  .ui.images .image,
332
- .ui.images img,
333
- .ui.images svg {
332
+ .ui.images > img,
333
+ .ui.images > svg {
334
334
  display: inline-block;
335
335
  margin: 0em @imageHorizontalMargin @imageVerticalMargin;
336
336
  }
@@ -74,6 +74,7 @@
74
74
  .ui.slide.reveal > .content {
75
75
  display: block;
76
76
  width: 100%;
77
+ white-space: normal;
77
78
  float: left;
78
79
 
79
80
  margin: 0em;
@@ -164,6 +165,7 @@
164
165
  .ui.move.reveal > .content {
165
166
  display: block;
166
167
  float: left;
168
+ white-space: normal;
167
169
 
168
170
  margin: 0em;
169
171
  transition: @moveTransition;
@@ -280,6 +280,18 @@
280
280
  color: @resultActiveDescriptionColor;
281
281
  }
282
282
 
283
+ /*--------------------
284
+ Disabled
285
+ ----------------------*/
286
+
287
+ /* Disabled */
288
+ .ui.disabled.search {
289
+ cursor: default;
290
+ pointer-events: none;
291
+ opacity: @disabledOpacity;
292
+ }
293
+
294
+
283
295
  /*******************************
284
296
  Types
285
297
  *******************************/
@@ -4,7 +4,7 @@
4
4
 
5
5
  /* Button Variables */
6
6
  @textTransform: none;
7
- @fontWeight: normal;
7
+ @fontWeight: @normal;
8
8
  @textColor: #333333;
9
9
 
10
10
  @primaryColor: #333333;
@@ -10,6 +10,6 @@
10
10
  @progressWidth: 100%;
11
11
  @progressTextAlign: center;
12
12
 
13
- @labelFontWeight: normal;
13
+ @labelFontWeight: @normal;
14
14
  @labelTextAlign: left;
15
- @labelHeight: 1.5em;
15
+ @labelHeight: 1.5em;
@@ -3,7 +3,7 @@
3
3
  --------------------*/
4
4
 
5
5
  @headerFont : 'Karma', 'Times New Roman', serif;
6
- @fontWeight: normal;
6
+ @fontWeight: @normal;
7
7
 
8
8
  @iconSize: 1.5em;
9
9
  @iconOffset: 0.2em;
@@ -34,4 +34,4 @@
34
34
  @largeFontSize: 1.33em;
35
35
  @mediumFontSize: 1.33em;
36
36
  @smallFontSize: 1em;
37
- @tinyFontSize: 0.9em;
37
+ @tinyFontSize: 0.9em;
@@ -5,7 +5,7 @@
5
5
  /* Button Variables */
6
6
  @pageFont: Helvetica Neue, Helvetica, Arial, sans-serif;
7
7
  @textTransform: none;
8
- @fontWeight: normal;
8
+ @fontWeight: @normal;
9
9
  @textColor: rgba(51, 51, 51, 1);
10
10
 
11
11
  @borderRadius: @4px;
@@ -60,4 +60,4 @@
60
60
 
61
61
  @activeBackgroundColor: #E6E6E6;
62
62
 
63
- @disabledOpacity: 0.65;
63
+ @disabledOpacity: 0.65;
@@ -6,7 +6,7 @@
6
6
  @pageFont: 'Source Sans Pro', Arial, sans-serif;
7
7
 
8
8
  @textTransform: none;
9
- @fontWeight: normal;
9
+ @fontWeight: @normal;
10
10
  @textColor: #333333;
11
11
 
12
12
  @verticalPadding: 1.1em;
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Font Awesome 5.0.6 by @fontawesome - http://fontawesome.io - @fontawesome
2
+ * Font Awesome 5.0.8 by @fontawesome - http://fontawesome.io - @fontawesome
3
3
  * License - https://fontawesome.com/license (Icons: CC BY 4.0 License, Fonts: SIL OFL 1.1 License, CSS: MIT License)
4
4
  */
5
5
 
@@ -26,1018 +26,858 @@ for instance `lemon icon` not `lemon outline icon` since there is only one lemon
26
26
 
27
27
  *******************************/
28
28
 
29
- /*******************************
30
- Icons
31
- *******************************/
32
-
33
-
34
- /* Accessibility */
35
- i.icon.american.sign.language.interpreting:before { content: "\f2a3"; }
36
- i.icon.assistive.listening.systems:before { content: "\f2a2"; }
37
- i.icon.audio.description:before { content: "\f29e"; }
38
- i.icon.blind:before { content: "\f29d"; }
39
- i.icon.braille:before { content: "\f2a1"; }
40
- i.icon.closed.captioning.outline:before { content: "\f327"; }
41
- i.icon.closed.captioning:before { content: "\f20a"; }
42
- i.icon.deaf:before { content: "\f2a4"; }
43
- i.icon.low.vision:before { content: "\f2a8"; }
44
- i.icon.phone.volume:before { content: "\f2a0"; }
45
- i.icon.question.circle.outline:before { content: "\f628"; }
46
- i.icon.question.circle:before { content: "\f059"; }
47
- i.icon.sign.language:before { content: "\f2a7"; }
48
- i.icon.tty:before { content: "\f1e4"; }
49
- i.icon.universal.access:before { content: "\f29a"; }
50
- i.icon.wheelchair:before { content: "\f193"; }
51
-
52
-
53
- /* Arrows */
54
- i.icon.angle.double.down:before { content: "\f103"; }
55
- i.icon.angle.double.left:before { content: "\f100"; }
56
- i.icon.angle.double.right:before { content: "\f101"; }
57
- i.icon.angle.double.up:before { content: "\f102"; }
58
- i.icon.angle.down:before { content: "\f107"; }
59
- i.icon.angle.left:before { content: "\f104"; }
60
- i.icon.angle.right:before { content: "\f105"; }
61
- i.icon.angle.up:before { content: "\f106"; }
62
- i.icon.arrow.alternate.circle.down.outline:before { content: "\f608"; }
63
- i.icon.arrow.alternate.circle.down:before { content: "\f358"; }
64
- i.icon.arrow.alternate.circle.left.outline:before { content: "\f605"; }
65
- i.icon.arrow.alternate.circle.left:before { content: "\f359"; }
66
- i.icon.arrow.alternate.circle.right.outline:before { content: "\f304"; }
67
- i.icon.arrow.alternate.circle.right:before { content: "\f35a"; }
68
- i.icon.arrow.alternate.circle.up.outline:before { content: "\f305"; }
69
- i.icon.arrow.alternate.circle.up:before { content: "\f35b"; }
70
- i.icon.arrow.circle.down:before { content: "\f0ab"; }
71
- i.icon.arrow.circle.left:before { content: "\f0a8"; }
72
- i.icon.arrow.circle.right:before { content: "\f0a9"; }
73
- i.icon.arrow.circle.up:before { content: "\f0aa"; }
74
- i.icon.arrow.down:before { content: "\f063"; }
75
- i.icon.arrow.left:before { content: "\f060"; }
76
- i.icon.arrow.right:before { content: "\f061"; }
77
- i.icon.arrow.up:before { content: "\f062"; }
78
- i.icon.arrows.alternate.horizontal:before { content: "\f337"; }
79
- i.icon.arrows.alternate.vertical:before { content: "\f338"; }
80
- i.icon.arrows.alternate:before { content: "\f0b2"; }
81
- i.icon.caret.down:before { content: "\f0d7"; }
82
- i.icon.caret.left:before { content: "\f0d9"; }
83
- i.icon.caret.right:before { content: "\f0da"; }
84
- i.icon.caret.square.down.outline:before { content: "\f316"; }
85
- i.icon.caret.square.down:before { content: "\f150"; }
86
- i.icon.caret.square.left.outline:before { content: "\f317"; }
87
- i.icon.caret.square.left:before { content: "\f191"; }
88
- i.icon.caret.square.right.outline:before { content: "\f318"; }
89
- i.icon.caret.square.right:before { content: "\f152"; }
90
- i.icon.caret.square.up.outline:before { content: "\f319"; }
91
- i.icon.caret.square.up:before { content: "\f151"; }
92
- i.icon.caret.up:before { content: "\f0d8"; }
93
- i.icon.cart.arrow.down:before { content: "\f218"; }
94
- i.icon.chart.line:before { content: "\f201"; }
95
- i.icon.chevron.circle.down:before { content: "\f13a"; }
96
- i.icon.chevron.circle.left:before { content: "\f137"; }
97
- i.icon.chevron.circle.right:before { content: "\f138"; }
98
- i.icon.chevron.circle.up:before { content: "\f139"; }
99
- i.icon.chevron.down:before { content: "\f078"; }
100
- i.icon.chevron.left:before { content: "\f053"; }
101
- i.icon.chevron.right:before { content: "\f054"; }
102
- i.icon.chevron.up:before { content: "\f077"; }
103
- i.icon.cloud.download.alternate:before { content: "\f600"; }
104
- i.icon.cloud.upload.alternate:before { content: "\f601"; }
105
- i.icon.download:before { content: "\f019"; }
106
- i.icon.exchange.alternate:before { content: "\f362"; }
107
- i.icon.expand.arrows.alternate:before { content: "\f31e"; }
108
- i.icon.external.link.alternate:before { content: "\f35d"; }
109
- i.icon.external.link.square.alternate:before { content: "\f360"; }
110
- i.icon.hand.point.down.outline:before { content: "\f602"; }
111
- i.icon.hand.point.down:before { content: "\f0a7"; }
112
- i.icon.hand.point.left.outline:before { content: "\f361"; }
113
- i.icon.hand.point.left:before { content: "\f0a5"; }
114
- i.icon.hand.point.right.outline:before { content: "\f362"; }
115
- i.icon.hand.point.right:before { content: "\f0a4"; }
116
- i.icon.hand.point.up.outline:before { content: "\f363"; }
117
- i.icon.hand.point.up:before { content: "\f0a6"; }
118
- i.icon.hand.pointer.outline:before { content: "\f364"; }
119
- i.icon.hand.pointer:before { content: "\f25a"; }
120
- i.icon.history:before { content: "\f1da"; }
121
- i.icon.level.down.alternate:before { content: "\f3be"; }
122
- i.icon.level.up.alternate:before { content: "\f3bf"; }
123
- i.icon.location.arrow:before { content: "\f124"; }
124
- i.icon.long.arrow.alternate.down:before { content: "\f309"; }
125
- i.icon.long.arrow.alternate.left:before { content: "\f30a"; }
126
- i.icon.long.arrow.alternate.right:before { content: "\f30b"; }
127
- i.icon.long.arrow.alternate.up:before { content: "\f30c"; }
128
- i.icon.mouse.pointer:before { content: "\f245"; }
129
- i.icon.play:before { content: "\f04b"; }
130
- i.icon.random:before { content: "\f074"; }
131
- i.icon.recycle:before { content: "\f1b8"; }
132
- i.icon.redo.alternate:before { content: "\f2f9"; }
133
- i.icon.redo:before { content: "\f01e"; }
134
- i.icon.reply.all:before { content: "\f122"; }
135
- i.icon.reply:before { content: "\f3e5"; }
136
- i.icon.retweet:before { content: "\f079"; }
137
- i.icon.share.square.outline:before { content: "\f631"; }
138
- i.icon.share.square:before { content: "\f14d"; }
139
- i.icon.share:before { content: "\f064"; }
140
- i.icon.sign.in.alternate:before { content: "\f2f6"; }
141
- i.icon.sign.out.alternate:before { content: "\f2f5"; }
142
- i.icon.sort.alphabet.down:before { content: "\f15d"; }
143
- i.icon.sort.alphabet.up:before { content: "\f15e"; }
144
- i.icon.sort.amount.down:before { content: "\f160"; }
145
- i.icon.sort.amount.up:before { content: "\f161"; }
146
- i.icon.sort.down:before { content: "\f0dd"; }
147
- i.icon.sort.numeric.down:before { content: "\f162"; }
148
- i.icon.sort.numeric.up:before { content: "\f163"; }
149
- i.icon.sort.up:before { content: "\f0de"; }
150
- i.icon.sort:before { content: "\f0dc"; }
151
- i.icon.sync.alternate:before { content: "\f2f1"; }
152
- i.icon.sync:before { content: "\f021"; }
153
- i.icon.text.height:before { content: "\f034"; }
154
- i.icon.text.width:before { content: "\f035"; }
155
- i.icon.undo.alternate:before { content: "\f2ea"; }
156
- i.icon.undo:before { content: "\f0e2"; }
157
- i.icon.upload:before { content: "\f093"; }
158
-
159
-
160
- /* Audio & Video */
161
- i.icon.backward:before { content: "\f04a"; }
162
- i.icon.circle.outline:before { content: "\f323"; }
163
- i.icon.circle:before { content: "\f111"; }
164
- i.icon.compress:before { content: "\f066"; }
165
- i.icon.eject:before { content: "\f052"; }
166
- i.icon.expand:before { content: "\f065"; }
167
- i.icon.fast.backward:before { content: "\f049"; }
168
- i.icon.fast.forward:before { content: "\f050"; }
169
- i.icon.file.audio.outline:before { content: "\f342"; }
170
- i.icon.file.audio:before { content: "\f1c7"; }
171
- i.icon.file.video.outline:before { content: "\f348"; }
172
- i.icon.file.video:before { content: "\f1c8"; }
173
- i.icon.film:before { content: "\f008"; }
174
- i.icon.forward:before { content: "\f04e"; }
175
- i.icon.headphones:before { content: "\f025"; }
176
- i.icon.microphone.slash:before { content: "\f131"; }
177
- i.icon.microphone:before { content: "\f130"; }
178
- i.icon.music:before { content: "\f001"; }
179
- i.icon.pause.circle.outline:before { content: "\f625"; }
180
- i.icon.pause.circle:before { content: "\f28b"; }
181
- i.icon.pause:before { content: "\f04c"; }
182
- i.icon.play.circle.outline:before { content: "\f626"; }
183
- i.icon.play.circle:before { content: "\f144"; }
184
- i.icon.podcast:before { content: "\f2ce"; }
185
- i.icon.rss.square:before { content: "\f143"; }
186
- i.icon.rss:before { content: "\f09e"; }
187
- i.icon.step.backward:before { content: "\f048"; }
188
- i.icon.step.forward:before { content: "\f051"; }
189
- i.icon.stop.circle.outline:before { content: "\f636"; }
190
- i.icon.stop.circle:before { content: "\f28d"; }
191
- i.icon.stop:before { content: "\f04d"; }
192
- i.icon.video:before { content: "\f03d"; }
193
- i.icon.volume.down:before { content: "\f027"; }
194
- i.icon.volume.off:before { content: "\f026"; }
195
- i.icon.volume.up:before { content: "\f028"; }
196
-
197
-
198
- /* Business */
199
- i.icon.address.book.outline:before { content: "\f300"; }
200
- i.icon.address.book:before { content: "\f2b9"; }
201
- i.icon.address.card.outline:before { content: "\f301"; }
202
- i.icon.address.card:before { content: "\f2bb"; }
203
- i.icon.archive:before { content: "\f187"; }
204
- i.icon.balance.scale:before { content: "\f24e"; }
205
- i.icon.birthday.cake:before { content: "\f1fd"; }
206
- i.icon.book:before { content: "\f02d"; }
207
- i.icon.briefcase:before { content: "\f0b1"; }
208
- i.icon.building.outline:before { content: "\f603"; }
209
- i.icon.building:before { content: "\f1ad"; }
210
- i.icon.bullhorn:before { content: "\f0a1"; }
211
- i.icon.calculator:before { content: "\f1ec"; }
212
- i.icon.calendar.alternate.outline:before { content: "\f310"; }
213
- i.icon.calendar.alternate:before { content: "\f073"; }
214
- i.icon.calendar.outline:before { content: "\f315"; }
215
- i.icon.calendar:before { content: "\f133"; }
216
- i.icon.certificate:before { content: "\f0a3"; }
217
- i.icon.chart.area:before { content: "\f1fe"; }
218
- i.icon.chart.bar.outline:before { content: "\f320"; }
219
- i.icon.chart.bar:before { content: "\f080"; }
220
- i.icon.chart.pie:before { content: "\f200"; }
221
- i.icon.clipboard.outline:before { content: "\f324"; }
222
- i.icon.clipboard:before { content: "\f328"; }
223
- i.icon.coffee:before { content: "\f0f4"; }
224
- i.icon.columns:before { content: "\f0db"; }
225
- i.icon.compass.outline:before { content: "\f331"; }
226
- i.icon.compass:before { content: "\f14e"; }
227
- i.icon.copy.outline:before { content: "\f332"; }
228
- i.icon.copy:before { content: "\f0c5"; }
229
- i.icon.copyright.outline:before { content: "\f333"; }
230
- i.icon.copyright:before { content: "\f1f9"; }
231
- i.icon.cut:before { content: "\f0c4"; }
232
- i.icon.edit.outline:before { content: "\f336"; }
233
- i.icon.edit:before { content: "\f044"; }
234
- i.icon.envelope.open.outline:before { content: "\f337"; }
235
- i.icon.envelope.open:before { content: "\f2b6"; }
236
- i.icon.envelope.outline:before { content: "\f338"; }
237
- i.icon.envelope.square:before { content: "\f199"; }
238
- i.icon.envelope:before { content: "\f0e0"; }
239
- i.icon.eraser:before { content: "\f12d"; }
240
- i.icon.fax:before { content: "\f1ac"; }
241
- i.icon.file.alternate.outline:before { content: "\f340"; }
242
- i.icon.file.alternate:before { content: "\f15c"; }
243
- i.icon.file.outline:before { content: "\f350"; }
244
- i.icon.file:before { content: "\f15b"; }
245
- i.icon.folder.open.outline:before { content: "\f352"; }
246
- i.icon.folder.open:before { content: "\f07c"; }
247
- i.icon.folder.outline:before { content: "\f353"; }
248
- i.icon.folder:before { content: "\f07b"; }
249
- i.icon.globe:before { content: "\f0ac"; }
250
- i.icon.industry:before { content: "\f275"; }
251
- i.icon.paperclip:before { content: "\f0c6"; }
252
- i.icon.paste:before { content: "\f0ea"; }
253
- i.icon.pen.square:before { content: "\f14b"; }
254
- i.icon.pencil.alternate:before { content: "\f303"; }
255
- i.icon.percent:before { content: "\f295"; }
256
- i.icon.phone.square:before { content: "\f098"; }
257
- i.icon.phone:before { content: "\f095"; }
258
- i.icon.registered.outline:before { content: "\f629"; }
259
- i.icon.registered:before { content: "\f25d"; }
260
- i.icon.save.outline:before { content: "\f630"; }
261
- i.icon.save:before { content: "\f0c7"; }
262
- i.icon.sitemap:before { content: "\f0e8"; }
263
- i.icon.sticky.note.outline:before { content: "\f635"; }
264
- i.icon.sticky.note:before { content: "\f249"; }
265
- i.icon.suitcase:before { content: "\f0f2"; }
266
- i.icon.table:before { content: "\f0ce"; }
267
- i.icon.tag:before { content: "\f02b"; }
268
- i.icon.tags:before { content: "\f02c"; }
269
- i.icon.tasks:before { content: "\f0ae"; }
270
- i.icon.thumbtack:before { content: "\f08d"; }
271
- i.icon.trademark:before { content: "\f25c"; }
272
-
273
- /* Chess */
274
- i.icon.chess:before { content: "\f439"; }
275
- i.icon.chess.bishop:before { content: "\f43a"; }
276
- i.icon.chess.board:before { content: "\f43c"; }
277
- i.icon.chess.king:before { content: "\f43f"; }
278
- i.icon.chess.knight:before { content: "\f441"; }
279
- i.icon.chess.pawn:before { content: "\f443"; }
280
- i.icon.chess.queen:before { content: "\f445"; }
281
- i.icon.chess.rock:before { content: "\f447"; }
282
- i.icon.square.full:before { content: "\f45c"; }
283
-
284
- /* Code */
285
- i.icon.barcode:before { content: "\f02a"; }
286
- i.icon.bath:before { content: "\f2cd"; }
287
- i.icon.bug:before { content: "\f188"; }
288
- i.icon.code:before { content: "\f121"; }
289
- i.icon.code.branch:before { content: "\f126"; }
290
- i.icon.file.code.outline:before { content: "\f343"; }
291
- i.icon.file.code:before { content: "\f1c9"; }
292
- i.icon.filter:before { content: "\f0b0"; }
293
- i.icon.fire.extinguisher:before { content: "\f134"; }
294
- i.icon.keyboard.outline:before { content: "\f377"; }
295
- i.icon.keyboard:before { content: "\f11c"; }
296
- i.icon.microchip:before { content: "\f2db"; }
297
- i.icon.qrcode:before { content: "\f029"; }
298
- i.icon.shield.alternate:before { content: "\f3ed"; }
299
- i.icon.terminal:before { content: "\f120"; }
300
- i.icon.user.secret:before { content: "\f21b"; }
301
- i.icon.window.close.outline:before { content: "\f642"; }
302
- i.icon.window.close:before { content: "\f410"; }
303
- i.icon.window.maximize.outline:before { content: "\f644"; }
304
- i.icon.window.maximize:before { content: "\f2d0"; }
305
- i.icon.window.minimize.outline:before { content: "\f643"; }
306
- i.icon.window.minimize:before { content: "\f2d1"; }
307
- i.icon.window.restore.outline:before { content: "\f416"; }
308
- i.icon.window.restore:before { content: "\f2d2"; }
309
-
310
-
311
- /* Communication */
312
- i.icon.at:before { content: "\f1fa"; }
313
- i.icon.bell.outline:before { content: "\f307"; }
314
- i.icon.bell.slash.outline:before { content: "\f306"; }
315
- i.icon.bell.slash:before { content: "\f1f6"; }
316
- i.icon.bell:before { content: "\f0f3"; }
317
- i.icon.comment.alternate.outline:before { content: "\f604"; }
318
- i.icon.comment.alternate:before { content: "\f27a"; }
319
- i.icon.comment.outline:before { content: "\f329"; }
320
- i.icon.comment:before { content: "\f075"; }
321
- i.icon.comments.outline:before { content: "\f330"; }
322
- i.icon.comments:before { content: "\f086"; }
323
- i.icon.inbox:before { content: "\f01c"; }
324
- i.icon.language:before { content: "\f1ab"; }
325
- i.icon.mobile.alternate:before { content: "\f3cd"; }
326
- i.icon.mobile:before { content: "\f10b"; }
327
- i.icon.paper.plane.outline:before { content: "\f390"; }
328
- i.icon.paper.plane:before { content: "\f1d8"; }
329
- i.icon.wifi:before { content: "\f1eb"; }
330
-
331
-
332
- /* Computers */
333
- i.icon.desktop:before { content: "\f108"; }
334
- i.icon.hdd.outline:before { content: "\f611"; }
335
- i.icon.hdd:before { content: "\f0a0"; }
336
- i.icon.laptop:before { content: "\f109"; }
337
- i.icon.plug:before { content: "\f1e6"; }
338
- i.icon.power.off:before { content: "\f011"; }
339
- i.icon.print:before { content: "\f02f"; }
340
- i.icon.server:before { content: "\f233"; }
341
- i.icon.tablet.alternate:before { content: "\f3fa"; }
342
- i.icon.tablet:before { content: "\f10a"; }
343
- i.icon.tv:before { content: "\f26c"; }
344
-
345
-
346
- /* Currency */
347
- i.icon.dollar.sign:before { content: "\f155"; }
348
- i.icon.euro.sign:before { content: "\f153"; }
349
- i.icon.lira.sign:before { content: "\f195"; }
350
- i.icon.money.bill.alternate.outline:before { content: "\f623"; }
351
- i.icon.money.bill.alternate:before { content: "\f3d1"; }
352
- i.icon.pound.sign:before { content: "\f154"; }
353
- i.icon.ruble.sign:before { content: "\f158"; }
354
- i.icon.rupee.sign:before { content: "\f156"; }
355
- i.icon.shekel.sign:before { content: "\f20b"; }
356
- i.icon.won.sign:before { content: "\f159"; }
357
- i.icon.yen.sign:before { content: "\f157"; }
358
-
359
-
360
- /* Date & Time */
361
- i.icon.calendar.check.outline:before { content: "\f311"; }
362
- i.icon.calendar.check:before { content: "\f274"; }
363
- i.icon.calendar.minus.outline:before { content: "\f312"; }
364
- i.icon.calendar.minus:before { content: "\f272"; }
365
- i.icon.calendar.plus.outline:before { content: "\f313"; }
366
- i.icon.calendar.plus:before { content: "\f271"; }
367
- i.icon.calendar.times.outline:before { content: "\f314"; }
368
- i.icon.calendar.times:before { content: "\f273"; }
369
- i.icon.clock.outline:before { content: "\f325"; }
370
- i.icon.clock:before { content: "\f017"; }
371
- i.icon.hourglass.end:before { content: "\f253"; }
372
- i.icon.hourglass.half:before { content: "\f252"; }
373
- i.icon.hourglass.outline:before { content: "\f614"; }
374
- i.icon.hourglass.start:before { content: "\f251"; }
375
- i.icon.hourglass:before { content: "\f254"; }
376
- i.icon.stopwatch:before { content: "\f2f2"; }
377
-
378
-
379
- /* Design */
380
- i.icon.adjust:before { content: "\f042"; }
381
- i.icon.clone.outline:before { content: "\f326"; }
382
- i.icon.clone:before { content: "\f24d"; }
383
- i.icon.crop:before { content: "\f125"; }
384
- i.icon.crosshairs:before { content: "\f05b"; }
385
- i.icon.eye.dropper:before { content: "\f1fb"; }
386
- i.icon.eye.slash.outline:before { content: "\f339"; }
387
- i.icon.eye.slash:before { content: "\f070"; }
388
- i.icon.eye:before { content: "\f06e"; }
389
- i.icon.object.group.outline:before { content: "\f624"; }
390
- i.icon.object.group:before { content: "\f247"; }
391
- i.icon.object.ungroup.outline:before { content: "\f389"; }
392
- i.icon.object.ungroup:before { content: "\f248"; }
393
- i.icon.paint.brush:before { content: "\f1fc"; }
394
- i.icon.tint:before { content: "\f043"; }
395
-
396
-
397
- /* Editors */
398
- i.icon.align.center:before { content: "\f037"; }
399
- i.icon.align.justify:before { content: "\f039"; }
400
- i.icon.align.left:before { content: "\f036"; }
401
- i.icon.align.right:before { content: "\f038"; }
402
- i.icon.bold:before { content: "\f032"; }
403
- i.icon.font:before { content: "\f031"; }
404
- i.icon.heading:before { content: "\f1dc"; }
405
- i.icon.i.cursor:before { content: "\f246"; }
406
- i.icon.indent:before { content: "\f03c"; }
407
- i.icon.italic:before { content: "\f033"; }
408
- i.icon.link:before { content: "\f0c1"; }
409
- i.icon.list.alternate.outline:before { content: "\f381"; }
410
- i.icon.list.alternate:before { content: "\f022"; }
411
- i.icon.ordered.list:before { content: "\f0cb"; }
412
- i.icon.unordered.list:before { content: "\f0ca"; }
413
- i.icon.list:before { content: "\f03a"; }
414
- i.icon.outdent:before { content: "\f03b"; }
415
- i.icon.paragraph:before { content: "\f1dd"; }
416
- i.icon.quote.left:before { content: "\f10d"; }
417
- i.icon.quote.right:before { content: "\f10e"; }
418
- i.icon.strikethrough:before { content: "\f0cc"; }
419
- i.icon.subscript:before { content: "\f12c"; }
420
- i.icon.superscript:before { content: "\f12b"; }
421
- i.icon.th.large:before { content: "\f009"; }
422
- i.icon.th.list:before { content: "\f00b"; }
423
- i.icon.th:before { content: "\f00a"; }
424
- i.icon.trash.alternate.outline:before { content: "\f640"; }
425
- i.icon.trash.alternate:before { content: "\f2ed"; }
426
- i.icon.trash:before { content: "\f1f8"; }
427
- i.icon.underline:before { content: "\f0cd"; }
428
- i.icon.unlink:before { content: "\f127"; }
429
-
430
-
431
- /* Files */
432
- i.icon.file.archive.outline:before { content: "\f341"; }
433
- i.icon.file.archive:before { content: "\f1c6"; }
434
- i.icon.file.excel.outline:before { content: "\f344"; }
435
- i.icon.file.excel:before { content: "\f1c3"; }
436
- i.icon.file.image.outline:before { content: "\f617"; }
437
- i.icon.file.image:before { content: "\f1c5"; }
438
- i.icon.file.pdf.outline:before { content: "\f346"; }
439
- i.icon.file.pdf:before { content: "\f1c1"; }
440
- i.icon.file.powerpoint.outline:before { content: "\f347"; }
441
- i.icon.file.powerpoint:before { content: "\f1c4"; }
442
- i.icon.file.word.outline:before { content: "\f349"; }
443
- i.icon.file.word:before { content: "\f1c2"; }
444
-
445
-
446
- /* Genders */
447
- i.icon.genderless:before { content: "\f22d"; }
448
- i.icon.mars.double:before { content: "\f227"; }
449
- i.icon.mars.stroke.horizontal:before { content: "\f22b"; }
450
- i.icon.mars.stroke.vertical:before { content: "\f22a"; }
451
- i.icon.mars.stroke:before { content: "\f229"; }
452
- i.icon.mars:before { content: "\f222"; }
453
- i.icon.mercury:before { content: "\f223"; }
454
- i.icon.neuter:before { content: "\f22c"; }
455
- i.icon.transgender.alternate:before { content: "\f225"; }
456
- i.icon.transgender:before { content: "\f224"; }
457
- i.icon.venus.double:before { content: "\f226"; }
458
- i.icon.venus.mars:before { content: "\f228"; }
459
- i.icon.venus:before { content: "\f221"; }
460
-
461
-
462
- /* Hands */
463
- i.icon.hand.lizard.outline:before { content: "\f357"; }
464
- i.icon.hand.lizard:before { content: "\f258"; }
465
- i.icon.hand.paper.outline:before { content: "\f358"; }
466
- i.icon.hand.paper:before { content: "\f256"; }
467
- i.icon.hand.peace.outline:before { content: "\f359"; }
468
- i.icon.hand.peace:before { content: "\f25b"; }
469
- i.icon.hand.rock.outline:before { content: "\f365"; }
470
- i.icon.hand.rock:before { content: "\f255"; }
471
- i.icon.hand.scissors.outline:before { content: "\f366"; }
472
- i.icon.hand.scissors:before { content: "\f257"; }
473
- i.icon.hand.spock.outline:before { content: "\f367"; }
474
- i.icon.hand.spock:before { content: "\f259"; }
475
- i.icon.handshake.outline:before { content: "\f610"; }
476
- i.icon.handshake:before { content: "\f2b5"; }
477
- i.icon.thumbs.down.outline:before { content: "\f406"; }
478
- i.icon.thumbs.down:before { content: "\f165"; }
479
- i.icon.thumbs.up.outline:before { content: "\f638"; }
480
- i.icon.thumbs.up:before { content: "\f164"; }
481
-
482
-
483
- /* Health */
484
- i.icon.ambulance:before { content: "\f0f9"; }
485
- i.icon.h.square:before { content: "\f0fd"; }
486
- i.icon.heart.outline:before { content: "\f612"; }
487
- i.icon.heart:before { content: "\f004"; }
488
- i.icon.heartbeat:before { content: "\f21e"; }
489
- i.icon.hospital.outline:before { content: "\f613"; }
490
- i.icon.hospital:before { content: "\f0f8"; }
491
- i.icon.medkit:before { content: "\f0fa"; }
492
- i.icon.plus.square.outline:before { content: "\f627"; }
493
- i.icon.plus.square:before { content: "\f0fe"; }
494
- i.icon.stethoscope:before { content: "\f0f1"; }
495
- i.icon.user.doctor:before { content: "\f0f0"; }
496
-
497
-
498
- /* Images */
499
- i.icon.bolt:before { content: "\f0e7"; }
500
- i.icon.camera.retro:before { content: "\f083"; }
501
- i.icon.camera:before { content: "\f030"; }
502
- i.icon.id.badge.outline:before { content: "\f615"; }
503
- i.icon.id.badge:before { content: "\f2c1"; }
504
- i.icon.id.card.outline:before { content: "\f616"; }
505
- i.icon.id.card:before { content: "\f2c2"; }
506
- i.icon.image.outline:before { content: "\f617"; }
507
- i.icon.image:before { content: "\f03e"; }
508
- i.icon.images.outline:before { content: "\f376"; }
509
- i.icon.images:before { content: "\f302"; }
510
- i.icon.sliders.horizontal:before { content: "\f1de"; }
511
-
512
-
513
- /* Interfaces */
514
- i.icon.ban:before { content: "\f05e"; }
515
- i.icon.bars:before { content: "\f0c9"; }
516
- i.icon.beer:before { content: "\f0fc"; }
517
- i.icon.bullseye:before { content: "\f140"; }
518
- i.icon.check.circle.outline:before { content: "\f321"; }
519
- i.icon.check.circle:before { content: "\f058"; }
520
- i.icon.check.square.outline:before { content: "\f322"; }
521
- i.icon.check.square:before { content: "\f14a"; }
522
- i.icon.check:before { content: "\f00c"; }
523
- i.icon.cloud:before { content: "\f0c2"; }
524
- i.icon.cog:before { content: "\f013"; }
525
- i.icon.cogs:before { content: "\f085"; }
526
- i.icon.database:before { content: "\f1c0"; }
527
- i.icon.dot.circle.outline:before { content: "\f335"; }
528
- i.icon.dot.circle:before { content: "\f192"; }
529
- i.icon.ellipsis.horizontal:before { content: "\f141"; }
530
- i.icon.ellipsis.vertical:before { content: "\f142"; }
531
- i.icon.exclamation.circle:before { content: "\f06a"; }
532
- i.icon.exclamation.triangle:before { content: "\f071"; }
533
- i.icon.exclamation:before { content: "\f12a"; }
534
- i.icon.flag.checkered:before { content: "\f11e"; }
535
- i.icon.flag.outline:before { content: "\f351"; }
536
- i.icon.flag:before { content: "\f024"; }
537
- i.icon.frown.outline:before { content: "\f354"; }
538
- i.icon.frown:before { content: "\f119"; }
539
- i.icon.hashtag:before { content: "\f292"; }
540
- i.icon.home:before { content: "\f015"; }
541
- i.icon.info.circle:before { content: "\f05a"; }
542
- i.icon.info:before { content: "\f129"; }
543
- i.icon.magic:before { content: "\f0d0"; }
544
- i.icon.meh.outline:before { content: "\f621"; }
545
- i.icon.meh:before { content: "\f11a"; }
546
- i.icon.minus.circle:before { content: "\f056"; }
547
- i.icon.minus.square.outline:before { content: "\f622"; }
548
- i.icon.minus.square:before { content: "\f146"; }
549
- i.icon.minus:before { content: "\f068"; }
550
- i.icon.plus.circle:before { content: "\f055"; }
551
- i.icon.plus:before { content: "\f067"; }
552
- i.icon.question:before { content: "\f128"; }
553
- i.icon.search.minus:before { content: "\f010"; }
554
- i.icon.search.plus:before { content: "\f00e"; }
555
- i.icon.search:before { content: "\f002"; }
556
- i.icon.share.alternate.square:before { content: "\f1e1"; }
557
- i.icon.share.alternate:before { content: "\f1e0"; }
558
- i.icon.shield:before { content: "\f3ed"; }
559
- i.icon.signal:before { content: "\f012"; }
560
- i.icon.smile.outline:before { content: "\f398"; }
561
- i.icon.smile:before { content: "\f118"; }
562
- i.icon.star.half.outline:before { content: "\f401"; }
563
- i.icon.star.half:before { content: "\f089"; }
564
- i.icon.star.outline:before { content: "\f634"; }
565
- i.icon.star:before { content: "\f005"; }
566
- i.icon.times.circle.outline:before { content: "\f639"; }
567
- i.icon.times.circle:before { content: "\f057"; }
568
- i.icon.times:before { content: "\f00d"; }
569
- i.icon.toggle.off:before { content: "\f204"; }
570
- i.icon.toggle.on:before { content: "\f205"; }
571
- i.icon.trophy:before { content: "\f091"; }
572
- i.icon.user.circle.outline:before { content: "\f606"; }
573
- i.icon.user.circle:before { content: "\f2bd"; }
574
- i.icon.user.outline:before { content: "\f641"; }
575
- i.icon.user:before { content: "\f007"; }
576
-
577
-
578
- /* Maps */
579
- i.icon.anchor:before { content: "\f13d"; }
580
- i.icon.bed:before { content: "\f236"; }
581
- i.icon.bicycle:before { content: "\f206"; }
582
- i.icon.binoculars:before { content: "\f1e5"; }
583
- i.icon.bomb:before { content: "\f1e2"; }
584
- i.icon.bookmark.outline:before { content: "\f308"; }
585
- i.icon.bookmark:before { content: "\f02e"; }
586
- i.icon.car:before { content: "\f1b9"; }
587
- i.icon.fighter.jet:before { content: "\f0fb"; }
588
- i.icon.fire:before { content: "\f06d"; }
589
- i.icon.flask:before { content: "\f0c3"; }
590
- i.icon.gamepad:before { content: "\f11b"; }
591
- i.icon.gavel:before { content: "\f0e3"; }
592
- i.icon.gift:before { content: "\f06b"; }
593
- i.icon.glass.martini:before { content: "\f000"; }
594
- i.icon.graduation.cap:before { content: "\f19d"; }
595
- i.icon.key:before { content: "\f084"; }
596
- i.icon.leaf:before { content: "\f06c"; }
597
- i.icon.lemon.outline:before { content: "\f618"; }
598
- i.icon.lemon:before { content: "\f094"; }
599
- i.icon.life.ring.outline:before { content: "\f619"; }
600
- i.icon.life.ring:before { content: "\f1cd"; }
601
- i.icon.lightbulb.outline:before { content: "\f620"; }
602
- i.icon.lightbulb:before { content: "\f0eb"; }
603
- i.icon.magnet:before { content: "\f076"; }
604
- i.icon.male:before { content: "\f183"; }
605
- i.icon.map.marker.alternate:before { content: "\f3c5"; }
606
- i.icon.map.marker:before { content: "\f041"; }
607
- i.icon.map.outline:before { content: "\f382"; }
608
- i.icon.map.pin:before { content: "\f276"; }
609
- i.icon.map.signs:before { content: "\f277"; }
610
- i.icon.map:before { content: "\f279"; }
611
- i.icon.motorcycle:before { content: "\f21c"; }
612
- i.icon.newspaper.outline:before { content: "\f387"; }
613
- i.icon.newspaper:before { content: "\f1ea"; }
614
- i.icon.paw:before { content: "\f1b0"; }
615
- i.icon.plane:before { content: "\f072"; }
616
- i.icon.road:before { content: "\f018"; }
617
- i.icon.rocket:before { content: "\f135"; }
618
- i.icon.ship:before { content: "\f21a"; }
619
- i.icon.shopping.bag:before { content: "\f290"; }
620
- i.icon.shopping.basket:before { content: "\f291"; }
621
- i.icon.shopping.cart:before { content: "\f07a"; }
622
- i.icon.shower:before { content: "\f2cc"; }
623
- i.icon.street.view:before { content: "\f21d"; }
624
- i.icon.subway:before { content: "\f239"; }
625
- i.icon.taxi:before { content: "\f1ba"; }
626
- i.icon.ticket.alternate:before { content: "\f3ff"; }
627
- i.icon.train:before { content: "\f238"; }
628
- i.icon.tree:before { content: "\f1bb"; }
629
- i.icon.truck:before { content: "\f0d1"; }
630
- i.icon.umbrella:before { content: "\f0e9"; }
631
- i.icon.university:before { content: "\f19c"; }
632
- i.icon.utensil.spoon:before { content: "\f2e5"; }
633
- i.icon.utensils:before { content: "\f2e7"; }
634
- i.icon.wrench:before { content: "\f0ad"; }
635
-
636
-
637
- /* Objects */
638
- i.icon.bus:before { content: "\f207"; }
639
- i.icon.cube:before { content: "\f1b2"; }
640
- i.icon.cubes:before { content: "\f1b3"; }
641
- i.icon.futbol.outline:before { content: "\f633"; }
642
- i.icon.futbol:before { content: "\f1e3"; }
643
- i.icon.gem.outline:before { content: "\f356"; }
644
- i.icon.gem:before { content: "\f3a5"; }
645
- i.icon.lock.open:before { content: "\f3c1"; }
646
- i.icon.lock:before { content: "\f023"; }
647
- i.icon.moon.outline:before { content: "\f386"; }
648
- i.icon.moon:before { content: "\f186"; }
649
- i.icon.puzzle:before { content: "\f12e"; }
650
- i.icon.snowflake.outline:before { content: "\f632"; }
651
- i.icon.snowflake:before { content: "\f2dc"; }
652
- i.icon.space.shuttle:before { content: "\f197"; }
653
- i.icon.sun.outline:before { content: "\f637"; }
654
- i.icon.sun:before { content: "\f185"; }
655
- i.icon.tachometer.alternate:before { content: "\f3fd"; }
656
- i.icon.unlock.alternate:before { content: "\f13e"; }
657
- i.icon.unlock:before { content: "\f09c"; }
658
-
659
-
660
- /* Payments & Shopping */
661
- i.icon.cart.plus:before { content: "\f217"; }
662
- i.icon.credit.card.outline:before { content: "\f334"; }
663
- i.icon.credit.card:before { content: "\f09d"; }
664
-
665
29
 
666
- /* Shapes */
667
- i.icon.square.outline:before { content: "\f400"; }
668
- i.icon.square:before { content: "\f0c8"; }
669
-
670
-
671
- /* Spinners */
672
- i.icon.asterisk:before { content: "\f069"; }
673
- i.icon.circle.notch:before { content: "\f1ce"; }
674
- i.icon.spinner:before { content: "\f110"; }
675
-
676
- /* Sports */
677
- i.icon.baseball.ball:before { content: "\f433"; }
678
- i.icon.basketball.ball:before { content: "\f434"; }
679
- i.icon.bowling.ball:before { content: "\f436"; }
680
- i.icon.football.ball:before { content: "\f44e"; }
681
- i.icon.golf.ball:before { content: "\f450"; }
682
- i.icon.hockey.puck:before { content: "\f453"; }
683
- i.icon.quidditch:before { content: "\f458"; }
684
- i.icon.table.tennis:before { content: "\f45d"; }
685
- i.icon.volleyball.ball:before { content: "\f45f"; }
686
-
687
- /* Status */
688
- i.icon.battery.empty:before { content: "\f244"; }
689
- i.icon.battery.full:before { content: "\f240"; }
690
- i.icon.battery.half:before { content: "\f242"; }
691
- i.icon.battery.quarter:before { content: "\f243"; }
692
- i.icon.battery.three.quarters:before { content: "\f241"; }
693
- i.icon.thermometer.empty:before { content: "\f2cb"; }
694
- i.icon.thermometer.full:before { content: "\f2c7"; }
695
- i.icon.thermometer.half:before { content: "\f2c9"; }
696
- i.icon.thermometer.quarter:before { content: "\f2ca"; }
697
- i.icon.thermometer.three.quarters:before { content: "\f2c8"; }
698
-
699
- /* Users & People */
700
- i.icon.child:before { content: "\f1ae"; }
701
- i.icon.female:before { content: "\f182"; }
702
- i.icon.user.circle.outline:before { content: "\f410"; }
703
- i.icon.user.plus:before { content: "\f234"; }
704
- i.icon.user.times:before { content: "\f235"; }
705
- i.icon.users:before { content: "\f0c0"; }
30
+ /*******************************
31
+ Icons
32
+ *******************************/
706
33
 
707
- /* Brands */
34
+ /* Icons */
708
35
  i.icon.\35 00px:before { content: "\f26e"; }
709
36
  i.icon.accessible.icon:before { content: "\f368"; }
710
37
  i.icon.accusoft:before { content: "\f369"; }
38
+ i.icon.address.book:before { content: "\f2b9"; }
39
+ i.icon.address.card:before { content: "\f2bb"; }
40
+ i.icon.adjust:before { content: "\f042"; }
711
41
  i.icon.adn:before { content: "\f170"; }
712
42
  i.icon.adversal:before { content: "\f36a"; }
713
43
  i.icon.affiliatetheme:before { content: "\f36b"; }
714
44
  i.icon.algolia:before { content: "\f36c"; }
715
- i.icon.amazon.pay:before { content: "\f42c"; }
45
+ i.icon.align.center:before { content: "\f037"; }
46
+ i.icon.align.justify:before { content: "\f039"; }
47
+ i.icon.align.left:before { content: "\f036"; }
48
+ i.icon.align.right:before { content: "\f038"; }
716
49
  i.icon.amazon:before { content: "\f270"; }
50
+ i.icon.amazon.pay:before { content: "\f42c"; }
51
+ i.icon.ambulance:before { content: "\f0f9"; }
52
+ i.icon.american.sign.language.interpreting:before { content: "\f2a3"; }
717
53
  i.icon.amilia:before { content: "\f36d"; }
54
+ i.icon.anchor:before { content: "\f13d"; }
718
55
  i.icon.android:before { content: "\f17b"; }
719
56
  i.icon.angellist:before { content: "\f209"; }
57
+ i.icon.angle.double.down:before { content: "\f103"; }
58
+ i.icon.angle.double.left:before { content: "\f100"; }
59
+ i.icon.angle.double.right:before { content: "\f101"; }
60
+ i.icon.angle.double.up:before { content: "\f102"; }
61
+ i.icon.angle.down:before { content: "\f107"; }
62
+ i.icon.angle.left:before { content: "\f104"; }
63
+ i.icon.angle.right:before { content: "\f105"; }
64
+ i.icon.angle.up:before { content: "\f106"; }
720
65
  i.icon.angrycreative:before { content: "\f36e"; }
721
66
  i.icon.angular:before { content: "\f420"; }
722
- i.icon.app.store.ios:before { content: "\f370"; }
723
67
  i.icon.app.store:before { content: "\f36f"; }
68
+ i.icon.app.store.ios:before { content: "\f370"; }
724
69
  i.icon.apper:before { content: "\f371"; }
725
- i.icon.apple.pay:before { content: "\f609"; }
726
70
  i.icon.apple:before { content: "\f179"; }
71
+ i.icon.apple.pay:before { content: "\f415"; }
72
+ i.icon.archive:before { content: "\f187"; }
73
+ i.icon.arrow.alternate.circle.down:before { content: "\f358"; }
74
+ i.icon.arrow.alternate.circle.left:before { content: "\f359"; }
75
+ i.icon.arrow.alternate.circle.right:before { content: "\f35a"; }
76
+ i.icon.arrow.alternate.circle.up:before { content: "\f35b"; }
77
+ i.icon.arrow.circle.down:before { content: "\f0ab"; }
78
+ i.icon.arrow.circle.left:before { content: "\f0a8"; }
79
+ i.icon.arrow.circle.right:before { content: "\f0a9"; }
80
+ i.icon.arrow.circle.up:before { content: "\f0aa"; }
81
+ i.icon.arrow.down:before { content: "\f063"; }
82
+ i.icon.arrow.left:before { content: "\f060"; }
83
+ i.icon.arrow.right:before { content: "\f061"; }
84
+ i.icon.arrow.up:before { content: "\f062"; }
85
+ i.icon.arrows.alternate:before { content: "\f0b2"; }
86
+ i.icon.arrows.alternate.horizontal:before { content: "\f337"; }
87
+ i.icon.arrows.alternate.vertical:before { content: "\f338"; }
88
+ i.icon.assistive.listening.systems:before { content: "\f2a2"; }
89
+ i.icon.asterisk:before { content: "\f069"; }
727
90
  i.icon.asymmetrik:before { content: "\f372"; }
91
+ i.icon.at:before { content: "\f1fa"; }
728
92
  i.icon.audible:before { content: "\f373"; }
93
+ i.icon.audio.description:before { content: "\f29e"; }
729
94
  i.icon.autoprefixer:before { content: "\f41c"; }
730
95
  i.icon.avianex:before { content: "\f374"; }
731
96
  i.icon.aviato:before { content: "\f421"; }
732
97
  i.icon.aws:before { content: "\f375"; }
98
+ i.icon.backward:before { content: "\f04a"; }
99
+ i.icon.balance.scale:before { content: "\f24e"; }
100
+ i.icon.ban:before { content: "\f05e"; }
101
+ i.icon.band.aid:before { content: "\f462"; }
733
102
  i.icon.bandcamp:before { content: "\f2d5"; }
734
- i.icon.behance.square:before { content: "\f1b5"; }
103
+ i.icon.barcode:before { content: "\f02a"; }
104
+ i.icon.bars:before { content: "\f0c9"; }
105
+ i.icon.baseball.ball:before { content: "\f433"; }
106
+ i.icon.basketball.ball:before { content: "\f434"; }
107
+ i.icon.bath:before { content: "\f2cd"; }
108
+ i.icon.battery.empty:before { content: "\f244"; }
109
+ i.icon.battery.full:before { content: "\f240"; }
110
+ i.icon.battery.half:before { content: "\f242"; }
111
+ i.icon.battery.quarter:before { content: "\f243"; }
112
+ i.icon.battery.three.quarters:before { content: "\f241"; }
113
+ i.icon.bed:before { content: "\f236"; }
114
+ i.icon.beer:before { content: "\f0fc"; }
735
115
  i.icon.behance:before { content: "\f1b4"; }
116
+ i.icon.behance.square:before { content: "\f1b5"; }
117
+ i.icon.bell:before { content: "\f0f3"; }
118
+ i.icon.bell.slash:before { content: "\f1f6"; }
119
+ i.icon.bicycle:before { content: "\f206"; }
736
120
  i.icon.bimobject:before { content: "\f378"; }
121
+ i.icon.binoculars:before { content: "\f1e5"; }
122
+ i.icon.birthday.cake:before { content: "\f1fd"; }
737
123
  i.icon.bitbucket:before { content: "\f171"; }
738
124
  i.icon.bitcoin:before { content: "\f379"; }
739
125
  i.icon.bity:before { content: "\f37a"; }
740
126
  i.icon.black.tie:before { content: "\f27e"; }
741
127
  i.icon.blackberry:before { content: "\f37b"; }
742
- i.icon.blogger.b:before { content: "\f37d"; }
128
+ i.icon.blind:before { content: "\f29d"; }
743
129
  i.icon.blogger:before { content: "\f37c"; }
744
- i.icon.bluetooth.b:before { content: "\f294"; }
130
+ i.icon.blogger.b:before { content: "\f37d"; }
745
131
  i.icon.bluetooth:before { content: "\f293"; }
132
+ i.icon.bluetooth.b:before { content: "\f294"; }
133
+ i.icon.bold:before { content: "\f032"; }
134
+ i.icon.bolt:before { content: "\f0e7"; }
135
+ i.icon.bomb:before { content: "\f1e2"; }
136
+ i.icon.book:before { content: "\f02d"; }
137
+ i.icon.bookmark:before { content: "\f02e"; }
138
+ i.icon.bowling.ball:before { content: "\f436"; }
139
+ i.icon.box:before { content: "\f466"; }
140
+ i.icon.boxes:before { content: "\f468"; }
141
+ i.icon.braille:before { content: "\f2a1"; }
142
+ i.icon.briefcase:before { content: "\f0b1"; }
746
143
  i.icon.btc:before { content: "\f15a"; }
144
+ i.icon.bug:before { content: "\f188"; }
145
+ i.icon.building:before { content: "\f1ad"; }
146
+ i.icon.bullhorn:before { content: "\f0a1"; }
147
+ i.icon.bullseye:before { content: "\f140"; }
747
148
  i.icon.buromobelexperte:before { content: "\f37f"; }
149
+ i.icon.bus:before { content: "\f207"; }
748
150
  i.icon.buysellads:before { content: "\f20d"; }
749
- i.icon.credit.card.amazon.pay:before { content: "\f42d"; }
750
- i.icon.credit.card.american.express:before { content: "\f1f3"; }
751
- i.icon.credit.card.apple.pay:before { content: "\f607"; }
752
- i.icon.credit.card.diners.club:before { content: "\f24c"; }
753
- i.icon.credit.card.discover:before { content: "\f1f2"; }
754
- i.icon.credit.card.jcb:before { content: "\f24b"; }
755
- i.icon.credit.card.mastercard:before { content: "\f1f1"; }
756
- i.icon.credit.card.paypal:before { content: "\f1f4"; }
757
- i.icon.credit.card.stripe:before { content: "\f1f5"; }
758
- i.icon.credit.card.visa:before { content: "\f1f0"; }
151
+ i.icon.calculator:before { content: "\f1ec"; }
152
+ i.icon.calendar:before { content: "\f133"; }
153
+ i.icon.calendar.alternate:before { content: "\f073"; }
154
+ i.icon.calendar.check:before { content: "\f274"; }
155
+ i.icon.calendar.minus:before { content: "\f272"; }
156
+ i.icon.calendar.plus:before { content: "\f271"; }
157
+ i.icon.calendar.times:before { content: "\f273"; }
158
+ i.icon.camera:before { content: "\f030"; }
159
+ i.icon.camera.retro:before { content: "\f083"; }
160
+ i.icon.car:before { content: "\f1b9"; }
161
+ i.icon.caret.down:before { content: "\f0d7"; }
162
+ i.icon.caret.left:before { content: "\f0d9"; }
163
+ i.icon.caret.right:before { content: "\f0da"; }
164
+ i.icon.caret.square.down:before { content: "\f150"; }
165
+ i.icon.caret.square.left:before { content: "\f191"; }
166
+ i.icon.caret.square.right:before { content: "\f152"; }
167
+ i.icon.caret.square.up:before { content: "\f151"; }
168
+ i.icon.caret.up:before { content: "\f0d8"; }
169
+ i.icon.cart.arrow.down:before { content: "\f218"; }
170
+ i.icon.cart.plus:before { content: "\f217"; }
171
+ i.icon.cc.amazon.pay:before { content: "\f42d"; }
172
+ i.icon.cc.amex:before { content: "\f1f3"; }
173
+ i.icon.cc.apple.pay:before { content: "\f416"; }
174
+ i.icon.cc.diners.club:before { content: "\f24c"; }
175
+ i.icon.cc.discover:before { content: "\f1f2"; }
176
+ i.icon.cc.jcb:before { content: "\f24b"; }
177
+ i.icon.cc.mastercard:before { content: "\f1f1"; }
178
+ i.icon.cc.paypal:before { content: "\f1f4"; }
179
+ i.icon.cc.stripe:before { content: "\f1f5"; }
180
+ i.icon.cc.visa:before { content: "\f1f0"; }
759
181
  i.icon.centercode:before { content: "\f380"; }
182
+ i.icon.certificate:before { content: "\f0a3"; }
183
+ i.icon.chart.area:before { content: "\f1fe"; }
184
+ i.icon.chart.bar:before { content: "\f080"; }
185
+ i.icon.chart.line:before { content: "\f201"; }
186
+ i.icon.chart.pie:before { content: "\f200"; }
187
+ i.icon.check:before { content: "\f00c"; }
188
+ i.icon.check.circle:before { content: "\f058"; }
189
+ i.icon.check.square:before { content: "\f14a"; }
190
+ i.icon.chess:before { content: "\f439"; }
191
+ i.icon.chess.bishop:before { content: "\f43a"; }
192
+ i.icon.chess.board:before { content: "\f43c"; }
193
+ i.icon.chess.king:before { content: "\f43f"; }
194
+ i.icon.chess.knight:before { content: "\f441"; }
195
+ i.icon.chess.pawn:before { content: "\f443"; }
196
+ i.icon.chess.queen:before { content: "\f445"; }
197
+ i.icon.chess.rook:before { content: "\f447"; }
198
+ i.icon.chevron.circle.down:before { content: "\f13a"; }
199
+ i.icon.chevron.circle.left:before { content: "\f137"; }
200
+ i.icon.chevron.circle.right:before { content: "\f138"; }
201
+ i.icon.chevron.circle.up:before { content: "\f139"; }
202
+ i.icon.chevron.down:before { content: "\f078"; }
203
+ i.icon.chevron.left:before { content: "\f053"; }
204
+ i.icon.chevron.right:before { content: "\f054"; }
205
+ i.icon.chevron.up:before { content: "\f077"; }
206
+ i.icon.child:before { content: "\f1ae"; }
760
207
  i.icon.chrome:before { content: "\f268"; }
208
+ i.icon.circle:before { content: "\f111"; }
209
+ i.icon.circle.notch:before { content: "\f1ce"; }
210
+ i.icon.clipboard:before { content: "\f328"; }
211
+ i.icon.clipboard.check:before { content: "\f46c"; }
212
+ i.icon.clipboard.list:before { content: "\f46d"; }
213
+ i.icon.clock:before { content: "\f017"; }
214
+ i.icon.clone:before { content: "\f24d"; }
215
+ i.icon.closed.captioning:before { content: "\f20a"; }
216
+ i.icon.cloud:before { content: "\f0c2"; }
761
217
  i.icon.cloudscale:before { content: "\f383"; }
762
218
  i.icon.cloudsmith:before { content: "\f384"; }
763
219
  i.icon.cloudversify:before { content: "\f385"; }
220
+ i.icon.code:before { content: "\f121"; }
221
+ i.icon.code.branch:before { content: "\f126"; }
764
222
  i.icon.codepen:before { content: "\f1cb"; }
765
223
  i.icon.codiepie:before { content: "\f284"; }
224
+ i.icon.coffee:before { content: "\f0f4"; }
225
+ i.icon.cog:before { content: "\f013"; }
226
+ i.icon.cogs:before { content: "\f085"; }
227
+ i.icon.columns:before { content: "\f0db"; }
228
+ i.icon.comment:before { content: "\f075"; }
229
+ i.icon.comment.alternate:before { content: "\f27a"; }
230
+ i.icon.comments:before { content: "\f086"; }
231
+ i.icon.compass:before { content: "\f14e"; }
232
+ i.icon.compress:before { content: "\f066"; }
766
233
  i.icon.connectdevelop:before { content: "\f20e"; }
767
234
  i.icon.contao:before { content: "\f26d"; }
235
+ i.icon.copy:before { content: "\f0c5"; }
236
+ i.icon.copyright:before { content: "\f1f9"; }
768
237
  i.icon.cpanel:before { content: "\f388"; }
769
238
  i.icon.creative.commons:before { content: "\f25e"; }
770
- i.icon.css3.alternate:before { content: "\f38b"; }
239
+ i.icon.credit.card:before { content: "\f09d"; }
240
+ i.icon.crop:before { content: "\f125"; }
241
+ i.icon.crosshairs:before { content: "\f05b"; }
771
242
  i.icon.css3:before { content: "\f13c"; }
243
+ i.icon.css3.alternate:before { content: "\f38b"; }
244
+ i.icon.cube:before { content: "\f1b2"; }
245
+ i.icon.cubes:before { content: "\f1b3"; }
246
+ i.icon.cut:before { content: "\f0c4"; }
772
247
  i.icon.cuttlefish:before { content: "\f38c"; }
773
248
  i.icon.d.and.d:before { content: "\f38d"; }
774
249
  i.icon.dashcube:before { content: "\f210"; }
250
+ i.icon.database:before { content: "\f1c0"; }
251
+ i.icon.deaf:before { content: "\f2a4"; }
775
252
  i.icon.delicious:before { content: "\f1a5"; }
776
253
  i.icon.deploydog:before { content: "\f38e"; }
777
254
  i.icon.deskpro:before { content: "\f38f"; }
255
+ i.icon.desktop:before { content: "\f108"; }
778
256
  i.icon.deviantart:before { content: "\f1bd"; }
779
257
  i.icon.digg:before { content: "\f1a6"; }
780
258
  i.icon.digital.ocean:before { content: "\f391"; }
781
259
  i.icon.discord:before { content: "\f392"; }
782
260
  i.icon.discourse:before { content: "\f393"; }
261
+ i.icon.dna:before { content: "\f471"; }
783
262
  i.icon.dochub:before { content: "\f394"; }
784
263
  i.icon.docker:before { content: "\f395"; }
264
+ i.icon.dollar.sign:before { content: "\f155"; }
265
+ i.icon.dolly:before { content: "\f472"; }
266
+ i.icon.dolly.flatbed:before { content: "\f474"; }
267
+ i.icon.dot.circle:before { content: "\f192"; }
268
+ i.icon.download:before { content: "\f019"; }
785
269
  i.icon.draft2digital:before { content: "\f396"; }
786
- i.icon.dribbble.square:before { content: "\f397"; }
787
270
  i.icon.dribbble:before { content: "\f17d"; }
271
+ i.icon.dribbble.square:before { content: "\f397"; }
788
272
  i.icon.dropbox:before { content: "\f16b"; }
789
273
  i.icon.drupal:before { content: "\f1a9"; }
790
274
  i.icon.dyalog:before { content: "\f399"; }
791
275
  i.icon.earlybirds:before { content: "\f39a"; }
792
276
  i.icon.edge:before { content: "\f282"; }
277
+ i.icon.edit:before { content: "\f044"; }
278
+ i.icon.eject:before { content: "\f052"; }
793
279
  i.icon.elementor:before { content: "\f430"; }
280
+ i.icon.ellipsis.horizontal:before { content: "\f141"; }
281
+ i.icon.ellipsis.vertical:before { content: "\f142"; }
794
282
  i.icon.ember:before { content: "\f423"; }
795
283
  i.icon.empire:before { content: "\f1d1"; }
284
+ i.icon.envelope:before { content: "\f0e0"; }
285
+ i.icon.envelope.open:before { content: "\f2b6"; }
286
+ i.icon.envelope.square:before { content: "\f199"; }
796
287
  i.icon.envira:before { content: "\f299"; }
288
+ i.icon.eraser:before { content: "\f12d"; }
797
289
  i.icon.erlang:before { content: "\f39d"; }
798
290
  i.icon.ethereum:before { content: "\f42e"; }
799
291
  i.icon.etsy:before { content: "\f2d7"; }
292
+ i.icon.euro.sign:before { content: "\f153"; }
293
+ i.icon.exchange.alternate:before { content: "\f362"; }
294
+ i.icon.exclamation:before { content: "\f12a"; }
295
+ i.icon.exclamation.circle:before { content: "\f06a"; }
296
+ i.icon.exclamation.triangle:before { content: "\f071"; }
297
+ i.icon.expand:before { content: "\f065"; }
298
+ i.icon.expand.arrows.alternate:before { content: "\f31e"; }
800
299
  i.icon.expeditedssl:before { content: "\f23e"; }
300
+ i.icon.external.alternate:before { content: "\f35d"; }
301
+ i.icon.external.square.alternate:before { content: "\f360"; }
302
+ i.icon.eye:before { content: "\f06e"; }
303
+ i.icon.eye.dropper:before { content: "\f1fb"; }
304
+ i.icon.eye.slash:before { content: "\f070"; }
305
+ i.icon.facebook:before { content: "\f09a"; }
801
306
  i.icon.facebook.f:before { content: "\f39e"; }
802
307
  i.icon.facebook.messenger:before { content: "\f39f"; }
803
308
  i.icon.facebook.square:before { content: "\f082"; }
804
- i.icon.facebook:before { content: "\f09a"; }
309
+ i.icon.fast.backward:before { content: "\f049"; }
310
+ i.icon.fast.forward:before { content: "\f050"; }
311
+ i.icon.fax:before { content: "\f1ac"; }
312
+ i.icon.female:before { content: "\f182"; }
313
+ i.icon.fighter.jet:before { content: "\f0fb"; }
314
+ i.icon.file:before { content: "\f15b"; }
315
+ i.icon.file.alternate:before { content: "\f15c"; }
316
+ i.icon.file.archive:before { content: "\f1c6"; }
317
+ i.icon.file.audio:before { content: "\f1c7"; }
318
+ i.icon.file.code:before { content: "\f1c9"; }
319
+ i.icon.file.excel:before { content: "\f1c3"; }
320
+ i.icon.file.image:before { content: "\f1c5"; }
321
+ i.icon.file.pdf:before { content: "\f1c1"; }
322
+ i.icon.file.powerpoint:before { content: "\f1c4"; }
323
+ i.icon.file.video:before { content: "\f1c8"; }
324
+ i.icon.file.word:before { content: "\f1c2"; }
325
+ i.icon.film:before { content: "\f008"; }
326
+ i.icon.filter:before { content: "\f0b0"; }
327
+ i.icon.fire:before { content: "\f06d"; }
328
+ i.icon.fire.extinguisher:before { content: "\f134"; }
805
329
  i.icon.firefox:before { content: "\f269"; }
330
+ i.icon.first.aid:before { content: "\f479"; }
806
331
  i.icon.first.order:before { content: "\f2b0"; }
807
332
  i.icon.firstdraft:before { content: "\f3a1"; }
333
+ i.icon.flag:before { content: "\f024"; }
334
+ i.icon.flag.checkered:before { content: "\f11e"; }
335
+ i.icon.flask:before { content: "\f0c3"; }
808
336
  i.icon.flickr:before { content: "\f16e"; }
809
337
  i.icon.flipboard:before { content: "\f44d"; }
810
338
  i.icon.fly:before { content: "\f417"; }
339
+ i.icon.folder:before { content: "\f07b"; }
340
+ i.icon.folder.open:before { content: "\f07c"; }
341
+ i.icon.font:before { content: "\f031"; }
342
+ i.icon.font.awesome:before { content: "\f2b4"; }
811
343
  i.icon.font.awesome.alternate:before { content: "\f35c"; }
812
344
  i.icon.font.awesome.flag:before { content: "\f425"; }
813
- i.icon.font.awesome:before { content: "\f2b4"; }
814
- i.icon.fonticons.fi:before { content: "\f3a2"; }
815
345
  i.icon.fonticons:before { content: "\f280"; }
816
- i.icon.fort.awesome.alternate:before { content: "\f3a3"; }
346
+ i.icon.fonticons.fi:before { content: "\f3a2"; }
347
+ i.icon.football.ball:before { content: "\f44e"; }
817
348
  i.icon.fort.awesome:before { content: "\f286"; }
349
+ i.icon.fort.awesome.alternate:before { content: "\f3a3"; }
818
350
  i.icon.forumbee:before { content: "\f211"; }
351
+ i.icon.forward:before { content: "\f04e"; }
819
352
  i.icon.foursquare:before { content: "\f180"; }
820
353
  i.icon.free.code.camp:before { content: "\f2c5"; }
821
354
  i.icon.freebsd:before { content: "\f3a4"; }
355
+ i.icon.frown:before { content: "\f119"; }
356
+ i.icon.futbol:before { content: "\f1e3"; }
357
+ i.icon.gamepad:before { content: "\f11b"; }
358
+ i.icon.gavel:before { content: "\f0e3"; }
359
+ i.icon.gem:before { content: "\f3a5"; }
360
+ i.icon.genderless:before { content: "\f22d"; }
822
361
  i.icon.get.pocket:before { content: "\f265"; }
823
- i.icon.gg.circle:before { content: "\f261"; }
824
362
  i.icon.gg:before { content: "\f260"; }
825
- i.icon.git.square:before { content: "\f1d2"; }
363
+ i.icon.gg.circle:before { content: "\f261"; }
364
+ i.icon.gift:before { content: "\f06b"; }
826
365
  i.icon.git:before { content: "\f1d3"; }
366
+ i.icon.git.square:before { content: "\f1d2"; }
367
+ i.icon.github:before { content: "\f09b"; }
827
368
  i.icon.github.alternate:before { content: "\f113"; }
828
369
  i.icon.github.square:before { content: "\f092"; }
829
- i.icon.github:before { content: "\f09b"; }
830
370
  i.icon.gitkraken:before { content: "\f3a6"; }
831
371
  i.icon.gitlab:before { content: "\f296"; }
832
372
  i.icon.gitter:before { content: "\f426"; }
833
- i.icon.glide.g:before { content: "\f2a6"; }
373
+ i.icon.glass.martini:before { content: "\f000"; }
834
374
  i.icon.glide:before { content: "\f2a5"; }
375
+ i.icon.glide.g:before { content: "\f2a6"; }
376
+ i.icon.globe:before { content: "\f0ac"; }
835
377
  i.icon.gofore:before { content: "\f3a7"; }
836
- i.icon.goodreads.g:before { content: "\f3a9"; }
378
+ i.icon.golf.ball:before { content: "\f450"; }
837
379
  i.icon.goodreads:before { content: "\f3a8"; }
380
+ i.icon.goodreads.g:before { content: "\f3a9"; }
381
+ i.icon.google:before { content: "\f1a0"; }
838
382
  i.icon.google.drive:before { content: "\f3aa"; }
839
383
  i.icon.google.play:before { content: "\f3ab"; }
384
+ i.icon.google.plus:before { content: "\f2b3"; }
840
385
  i.icon.google.plus.g:before { content: "\f0d5"; }
841
386
  i.icon.google.plus.square:before { content: "\f0d4"; }
842
- i.icon.google.plus:before { content: "\f2b3"; }
843
387
  i.icon.google.wallet:before { content: "\f1ee"; }
844
- i.icon.google:before { content: "\f1a0"; }
388
+ i.icon.graduation.cap:before { content: "\f19d"; }
845
389
  i.icon.gratipay:before { content: "\f184"; }
846
390
  i.icon.grav:before { content: "\f2d6"; }
847
391
  i.icon.gripfire:before { content: "\f3ac"; }
848
392
  i.icon.grunt:before { content: "\f3ad"; }
849
393
  i.icon.gulp:before { content: "\f3ae"; }
850
- i.icon.hacker.news.square:before { content: "\f3af"; }
394
+ i.icon.h.square:before { content: "\f0fd"; }
851
395
  i.icon.hacker.news:before { content: "\f1d4"; }
396
+ i.icon.hacker.news.square:before { content: "\f3af"; }
397
+ i.icon.hand.lizard:before { content: "\f258"; }
398
+ i.icon.hand.paper:before { content: "\f256"; }
399
+ i.icon.hand.peace:before { content: "\f25b"; }
400
+ i.icon.hand.point.down:before { content: "\f0a7"; }
401
+ i.icon.hand.point.left:before { content: "\f0a5"; }
402
+ i.icon.hand.point.right:before { content: "\f0a4"; }
403
+ i.icon.hand.point.up:before { content: "\f0a6"; }
404
+ i.icon.hand.pointer:before { content: "\f25a"; }
405
+ i.icon.hand.rock:before { content: "\f255"; }
406
+ i.icon.hand.scissors:before { content: "\f257"; }
407
+ i.icon.hand.spock:before { content: "\f259"; }
408
+ i.icon.handshake:before { content: "\f2b5"; }
409
+ i.icon.hashtag:before { content: "\f292"; }
410
+ i.icon.hdd:before { content: "\f0a0"; }
411
+ i.icon.heading:before { content: "\f1dc"; }
412
+ i.icon.headphones:before { content: "\f025"; }
413
+ i.icon.heart:before { content: "\f004"; }
414
+ i.icon.heartbeat:before { content: "\f21e"; }
852
415
  i.icon.hips:before { content: "\f452"; }
853
416
  i.icon.hire.a.helper:before { content: "\f3b0"; }
417
+ i.icon.history:before { content: "\f1da"; }
418
+ i.icon.hockey.puck:before { content: "\f453"; }
419
+ i.icon.home:before { content: "\f015"; }
854
420
  i.icon.hooli:before { content: "\f427"; }
421
+ i.icon.hospital:before { content: "\f0f8"; }
422
+ i.icon.hospital.symbol:before { content: "\f47e"; }
855
423
  i.icon.hotjar:before { content: "\f3b1"; }
424
+ i.icon.hourglass:before { content: "\f254"; }
425
+ i.icon.hourglass.end:before { content: "\f253"; }
426
+ i.icon.hourglass.half:before { content: "\f252"; }
427
+ i.icon.hourglass.start:before { content: "\f251"; }
856
428
  i.icon.houzz:before { content: "\f27c"; }
857
429
  i.icon.html5:before { content: "\f13b"; }
858
430
  i.icon.hubspot:before { content: "\f3b2"; }
431
+ i.icon.i.cursor:before { content: "\f246"; }
432
+ i.icon.id.badge:before { content: "\f2c1"; }
433
+ i.icon.id.card:before { content: "\f2c2"; }
434
+ i.icon.image:before { content: "\f03e"; }
435
+ i.icon.images:before { content: "\f302"; }
859
436
  i.icon.imdb:before { content: "\f2d8"; }
437
+ i.icon.inbox:before { content: "\f01c"; }
438
+ i.icon.indent:before { content: "\f03c"; }
439
+ i.icon.industry:before { content: "\f275"; }
440
+ i.icon.info:before { content: "\f129"; }
441
+ i.icon.info.circle:before { content: "\f05a"; }
860
442
  i.icon.instagram:before { content: "\f16d"; }
861
443
  i.icon.internet.explorer:before { content: "\f26b"; }
862
444
  i.icon.ioxhost:before { content: "\f208"; }
863
- i.icon.itunes.note:before { content: "\f3b5"; }
445
+ i.icon.italic:before { content: "\f033"; }
864
446
  i.icon.itunes:before { content: "\f3b4"; }
447
+ i.icon.itunes.note:before { content: "\f3b5"; }
865
448
  i.icon.jenkins:before { content: "\f3b6"; }
866
449
  i.icon.joget:before { content: "\f3b7"; }
867
450
  i.icon.joomla:before { content: "\f1aa"; }
868
- i.icon.js.square:before { content: "\f3b9"; }
869
451
  i.icon.js:before { content: "\f3b8"; }
452
+ i.icon.js.square:before { content: "\f3b9"; }
870
453
  i.icon.jsfiddle:before { content: "\f1cc"; }
454
+ i.icon.key:before { content: "\f084"; }
455
+ i.icon.keyboard:before { content: "\f11c"; }
871
456
  i.icon.keycdn:before { content: "\f3ba"; }
872
- i.icon.kickstarter.k:before { content: "\f3bc"; }
873
457
  i.icon.kickstarter:before { content: "\f3bb"; }
458
+ i.icon.kickstarter.k:before { content: "\f3bc"; }
874
459
  i.icon.korvue:before { content: "\f42f"; }
460
+ i.icon.language:before { content: "\f1ab"; }
461
+ i.icon.laptop:before { content: "\f109"; }
875
462
  i.icon.laravel:before { content: "\f3bd"; }
876
- i.icon.lastfm.square:before { content: "\f203"; }
877
463
  i.icon.lastfm:before { content: "\f202"; }
464
+ i.icon.lastfm.square:before { content: "\f203"; }
465
+ i.icon.leaf:before { content: "\f06c"; }
878
466
  i.icon.leanpub:before { content: "\f212"; }
467
+ i.icon.lemon:before { content: "\f094"; }
879
468
  i.icon.less:before { content: "\f41d"; }
880
- i.icon.line:before { content: "\f3c0"; }
881
- i.icon.linkedin.in:before { content: "\f0e1"; }
469
+ i.icon.level.down.alternate:before { content: "\f3be"; }
470
+ i.icon.level.up.alternate:before { content: "\f3bf"; }
471
+ i.icon.life.ring:before { content: "\f1cd"; }
472
+ i.icon.lightbulb:before { content: "\f0eb"; }
473
+ i.icon.linechat:before { content: "\f3c0"; }
474
+ i.icon.linkify:before { content: "\f0c1"; }
882
475
  i.icon.linkedin:before { content: "\f08c"; }
476
+ i.icon.linkedin.in:before { content: "\f0e1"; }
883
477
  i.icon.linode:before { content: "\f2b8"; }
884
478
  i.icon.linux:before { content: "\f17c"; }
479
+ i.icon.lira.sign:before { content: "\f195"; }
480
+ i.icon.list:before { content: "\f03a"; }
481
+ i.icon.list.alternate:before { content: "\f022"; }
482
+ i.icon.list.ol:before { content: "\f0cb"; }
483
+ i.icon.list.ul:before { content: "\f0ca"; }
484
+ i.icon.location.arrow:before { content: "\f124"; }
485
+ i.icon.lock:before { content: "\f023"; }
486
+ i.icon.lock.open:before { content: "\f3c1"; }
487
+ i.icon.long.arrow.alternate.down:before { content: "\f309"; }
488
+ i.icon.long.arrow.alternate.left:before { content: "\f30a"; }
489
+ i.icon.long.arrow.alternate.right:before { content: "\f30b"; }
490
+ i.icon.long.arrow.alternate.up:before { content: "\f30c"; }
491
+ i.icon.low.vision:before { content: "\f2a8"; }
885
492
  i.icon.lyft:before { content: "\f3c3"; }
886
493
  i.icon.magento:before { content: "\f3c4"; }
494
+ i.icon.magic:before { content: "\f0d0"; }
495
+ i.icon.magnet:before { content: "\f076"; }
496
+ i.icon.male:before { content: "\f183"; }
497
+ i.icon.map:before { content: "\f279"; }
498
+ i.icon.map.marker:before { content: "\f041"; }
499
+ i.icon.map.marker.alternate:before { content: "\f3c5"; }
500
+ i.icon.map.pin:before { content: "\f276"; }
501
+ i.icon.map.signs:before { content: "\f277"; }
502
+ i.icon.mars:before { content: "\f222"; }
503
+ i.icon.mars.double:before { content: "\f227"; }
504
+ i.icon.mars.stroke:before { content: "\f229"; }
505
+ i.icon.mars.stroke.horizontal:before { content: "\f22b"; }
506
+ i.icon.mars.stroke.vertical:before { content: "\f22a"; }
887
507
  i.icon.maxcdn:before { content: "\f136"; }
888
508
  i.icon.medapps:before { content: "\f3c6"; }
889
- i.icon.medium.m:before { content: "\f3c7"; }
890
509
  i.icon.medium:before { content: "\f23a"; }
510
+ i.icon.medium.m:before { content: "\f3c7"; }
511
+ i.icon.medkit:before { content: "\f0fa"; }
891
512
  i.icon.medrt:before { content: "\f3c8"; }
892
513
  i.icon.meetup:before { content: "\f2e0"; }
514
+ i.icon.meh:before { content: "\f11a"; }
515
+ i.icon.mercury:before { content: "\f223"; }
516
+ i.icon.microchip:before { content: "\f2db"; }
517
+ i.icon.microphone:before { content: "\f130"; }
518
+ i.icon.microphone.slash:before { content: "\f131"; }
893
519
  i.icon.microsoft:before { content: "\f3ca"; }
520
+ i.icon.minus:before { content: "\f068"; }
521
+ i.icon.minus.circle:before { content: "\f056"; }
522
+ i.icon.minus.square:before { content: "\f146"; }
894
523
  i.icon.mix:before { content: "\f3cb"; }
895
524
  i.icon.mixcloud:before { content: "\f289"; }
896
525
  i.icon.mizuni:before { content: "\f3cc"; }
526
+ i.icon.mobile:before { content: "\f10b"; }
527
+ i.icon.mobile.alternate:before { content: "\f3cd"; }
897
528
  i.icon.modx:before { content: "\f285"; }
898
529
  i.icon.monero:before { content: "\f3d0"; }
530
+ i.icon.money.bill.alternate:before { content: "\f3d1"; }
531
+ i.icon.moon:before { content: "\f186"; }
532
+ i.icon.motorcycle:before { content: "\f21c"; }
533
+ i.icon.mouse.pointer:before { content: "\f245"; }
534
+ i.icon.music:before { content: "\f001"; }
899
535
  i.icon.napster:before { content: "\f3d2"; }
536
+ i.icon.neuter:before { content: "\f22c"; }
537
+ i.icon.newspaper:before { content: "\f1ea"; }
900
538
  i.icon.nintendo.switch:before { content: "\f418"; }
901
- i.icon.node.js:before { content: "\f3d3"; }
902
539
  i.icon.node:before { content: "\f419"; }
540
+ i.icon.node.js:before { content: "\f3d3"; }
903
541
  i.icon.npm:before { content: "\f3d4"; }
904
542
  i.icon.ns8:before { content: "\f3d5"; }
905
543
  i.icon.nutritionix:before { content: "\f3d6"; }
906
- i.icon.odnoklassniki.square:before { content: "\f264"; }
544
+ i.icon.object.group:before { content: "\f247"; }
545
+ i.icon.object.ungroup:before { content: "\f248"; }
907
546
  i.icon.odnoklassniki:before { content: "\f263"; }
547
+ i.icon.odnoklassniki.square:before { content: "\f264"; }
908
548
  i.icon.opencart:before { content: "\f23d"; }
909
549
  i.icon.openid:before { content: "\f19b"; }
910
550
  i.icon.opera:before { content: "\f26a"; }
911
551
  i.icon.optin.monster:before { content: "\f23c"; }
912
552
  i.icon.osi:before { content: "\f41a"; }
553
+ i.icon.outdent:before { content: "\f03b"; }
913
554
  i.icon.page4:before { content: "\f3d7"; }
914
555
  i.icon.pagelines:before { content: "\f18c"; }
556
+ i.icon.paint.brush:before { content: "\f1fc"; }
915
557
  i.icon.palfed:before { content: "\f3d8"; }
558
+ i.icon.pallet:before { content: "\f482"; }
559
+ i.icon.paper.plane:before { content: "\f1d8"; }
560
+ i.icon.paperclip:before { content: "\f0c6"; }
561
+ i.icon.paragraph:before { content: "\f1dd"; }
562
+ i.icon.paste:before { content: "\f0ea"; }
916
563
  i.icon.patreon:before { content: "\f3d9"; }
564
+ i.icon.pause:before { content: "\f04c"; }
565
+ i.icon.pause.circle:before { content: "\f28b"; }
566
+ i.icon.paw:before { content: "\f1b0"; }
917
567
  i.icon.paypal:before { content: "\f1ed"; }
568
+ i.icon.pen.square:before { content: "\f14b"; }
569
+ i.icon.pencil.alternate:before { content: "\f303"; }
570
+ i.icon.percent:before { content: "\f295"; }
918
571
  i.icon.periscope:before { content: "\f3da"; }
919
572
  i.icon.phabricator:before { content: "\f3db"; }
920
573
  i.icon.phoenix.framework:before { content: "\f3dc"; }
574
+ i.icon.phone:before { content: "\f095"; }
575
+ i.icon.phone.square:before { content: "\f098"; }
576
+ i.icon.phone.volume:before { content: "\f2a0"; }
921
577
  i.icon.php:before { content: "\f457"; }
578
+ i.icon.pied.piper:before { content: "\f2ae"; }
922
579
  i.icon.pied.piper.alternate:before { content: "\f1a8"; }
923
580
  i.icon.pied.piper.pp:before { content: "\f1a7"; }
924
- i.icon.pied.piper:before { content: "\f2ae"; }
581
+ i.icon.pills:before { content: "\f484"; }
582
+ i.icon.pinterest:before { content: "\f0d2"; }
925
583
  i.icon.pinterest.p:before { content: "\f231"; }
926
584
  i.icon.pinterest.square:before { content: "\f0d3"; }
927
- i.icon.pinterest:before { content: "\f0d2"; }
585
+ i.icon.plane:before { content: "\f072"; }
586
+ i.icon.play:before { content: "\f04b"; }
587
+ i.icon.play.circle:before { content: "\f144"; }
928
588
  i.icon.playstation:before { content: "\f3df"; }
589
+ i.icon.plug:before { content: "\f1e6"; }
590
+ i.icon.plus:before { content: "\f067"; }
591
+ i.icon.plus.circle:before { content: "\f055"; }
592
+ i.icon.plus.square:before { content: "\f0fe"; }
593
+ i.icon.podcast:before { content: "\f2ce"; }
594
+ i.icon.pound.sign:before { content: "\f154"; }
595
+ i.icon.power.off:before { content: "\f011"; }
596
+ i.icon.print:before { content: "\f02f"; }
929
597
  i.icon.product.hunt:before { content: "\f288"; }
930
598
  i.icon.pushed:before { content: "\f3e1"; }
599
+ i.icon.puzzle.piece:before { content: "\f12e"; }
931
600
  i.icon.python:before { content: "\f3e2"; }
932
601
  i.icon.qq:before { content: "\f1d6"; }
602
+ i.icon.qrcode:before { content: "\f029"; }
603
+ i.icon.question:before { content: "\f128"; }
604
+ i.icon.question.circle:before { content: "\f059"; }
605
+ i.icon.quidditch:before { content: "\f458"; }
933
606
  i.icon.quinscape:before { content: "\f459"; }
934
607
  i.icon.quora:before { content: "\f2c4"; }
608
+ i.icon.quote.left:before { content: "\f10d"; }
609
+ i.icon.quote.right:before { content: "\f10e"; }
610
+ i.icon.random:before { content: "\f074"; }
935
611
  i.icon.ravelry:before { content: "\f2d9"; }
936
612
  i.icon.react:before { content: "\f41b"; }
937
613
  i.icon.rebel:before { content: "\f1d0"; }
614
+ i.icon.recycle:before { content: "\f1b8"; }
938
615
  i.icon.redriver:before { content: "\f3e3"; }
616
+ i.icon.reddit:before { content: "\f1a1"; }
939
617
  i.icon.reddit.alien:before { content: "\f281"; }
940
618
  i.icon.reddit.square:before { content: "\f1a2"; }
941
- i.icon.reddit:before { content: "\f1a1"; }
619
+ i.icon.redo:before { content: "\f01e"; }
620
+ i.icon.redo.alternate:before { content: "\f2f9"; }
621
+ i.icon.registered:before { content: "\f25d"; }
942
622
  i.icon.rendact:before { content: "\f3e4"; }
943
623
  i.icon.renren:before { content: "\f18b"; }
624
+ i.icon.reply:before { content: "\f3e5"; }
625
+ i.icon.reply.all:before { content: "\f122"; }
944
626
  i.icon.replyd:before { content: "\f3e6"; }
945
627
  i.icon.resolving:before { content: "\f3e7"; }
628
+ i.icon.retweet:before { content: "\f079"; }
629
+ i.icon.road:before { content: "\f018"; }
630
+ i.icon.rocket:before { content: "\f135"; }
946
631
  i.icon.rocketchat:before { content: "\f3e8"; }
947
632
  i.icon.rockrms:before { content: "\f3e9"; }
633
+ i.icon.rss:before { content: "\f09e"; }
634
+ i.icon.rss.square:before { content: "\f143"; }
635
+ i.icon.ruble.sign:before { content: "\f158"; }
636
+ i.icon.rupee.sign:before { content: "\f156"; }
948
637
  i.icon.safari:before { content: "\f267"; }
949
638
  i.icon.sass:before { content: "\f41e"; }
639
+ i.icon.save:before { content: "\f0c7"; }
950
640
  i.icon.schlix:before { content: "\f3ea"; }
951
641
  i.icon.scribd:before { content: "\f28a"; }
642
+ i.icon.search:before { content: "\f002"; }
643
+ i.icon.search.minus:before { content: "\f010"; }
644
+ i.icon.search.plus:before { content: "\f00e"; }
952
645
  i.icon.searchengin:before { content: "\f3eb"; }
953
646
  i.icon.sellcast:before { content: "\f2da"; }
954
647
  i.icon.sellsy:before { content: "\f213"; }
648
+ i.icon.server:before { content: "\f233"; }
955
649
  i.icon.servicestack:before { content: "\f3ec"; }
650
+ i.icon.share:before { content: "\f064"; }
651
+ i.icon.share.alternate:before { content: "\f1e0"; }
652
+ i.icon.share.alternate.square:before { content: "\f1e1"; }
653
+ i.icon.share.square:before { content: "\f14d"; }
654
+ i.icon.shekel.sign:before { content: "\f20b"; }
655
+ i.icon.shield.alternate:before { content: "\f3ed"; }
656
+ i.icon.ship:before { content: "\f21a"; }
657
+ i.icon.shipping.fast:before { content: "\f48b"; }
956
658
  i.icon.shirtsinbulk:before { content: "\f214"; }
659
+ i.icon.shopping.bag:before { content: "\f290"; }
660
+ i.icon.shopping.basket:before { content: "\f291"; }
661
+ i.icon.shopping.cart:before { content: "\f07a"; }
662
+ i.icon.shower:before { content: "\f2cc"; }
663
+ i.icon.sign.in.alternate:before { content: "\f2f6"; }
664
+ i.icon.sign.language:before { content: "\f2a7"; }
665
+ i.icon.sign.out.alternate:before { content: "\f2f5"; }
666
+ i.icon.signal:before { content: "\f012"; }
957
667
  i.icon.simplybuilt:before { content: "\f215"; }
958
668
  i.icon.sistrix:before { content: "\f3ee"; }
669
+ i.icon.sitemap:before { content: "\f0e8"; }
959
670
  i.icon.skyatlas:before { content: "\f216"; }
960
671
  i.icon.skype:before { content: "\f17e"; }
961
- i.icon.slack.hash:before { content: "\f3ef"; }
962
672
  i.icon.slack:before { content: "\f198"; }
673
+ i.icon.slack.hash:before { content: "\f3ef"; }
674
+ i.icon.sliders.horizontal:before { content: "\f1de"; }
963
675
  i.icon.slideshare:before { content: "\f1e7"; }
676
+ i.icon.smile:before { content: "\f118"; }
677
+ i.icon.snapchat:before { content: "\f2ab"; }
964
678
  i.icon.snapchat.ghost:before { content: "\f2ac"; }
965
679
  i.icon.snapchat.square:before { content: "\f2ad"; }
966
- i.icon.snapchat:before { content: "\f2ab"; }
680
+ i.icon.snowflake:before { content: "\f2dc"; }
681
+ i.icon.sort:before { content: "\f0dc"; }
682
+ i.icon.sort.alphabet.down:before { content: "\f15d"; }
683
+ i.icon.sort.alphabet.up:before { content: "\f15e"; }
684
+ i.icon.sort.amount.down:before { content: "\f160"; }
685
+ i.icon.sort.amount.up:before { content: "\f161"; }
686
+ i.icon.sort.down:before { content: "\f0dd"; }
687
+ i.icon.sort.numeric.down:before { content: "\f162"; }
688
+ i.icon.sort.numeric.up:before { content: "\f163"; }
689
+ i.icon.sort.up:before { content: "\f0de"; }
967
690
  i.icon.soundcloud:before { content: "\f1be"; }
691
+ i.icon.space.shuttle:before { content: "\f197"; }
968
692
  i.icon.speakap:before { content: "\f3f3"; }
693
+ i.icon.spinner:before { content: "\f110"; }
969
694
  i.icon.spotify:before { content: "\f1bc"; }
695
+ i.icon.square:before { content: "\f0c8"; }
696
+ i.icon.square.full:before { content: "\f45c"; }
970
697
  i.icon.stack.exchange:before { content: "\f18d"; }
971
698
  i.icon.stack.overflow:before { content: "\f16c"; }
699
+ i.icon.star:before { content: "\f005"; }
700
+ i.icon.star.half:before { content: "\f089"; }
972
701
  i.icon.staylinked:before { content: "\f3f5"; }
702
+ i.icon.steam:before { content: "\f1b6"; }
973
703
  i.icon.steam.square:before { content: "\f1b7"; }
974
704
  i.icon.steam.symbol:before { content: "\f3f6"; }
975
- i.icon.steam:before { content: "\f1b6"; }
705
+ i.icon.step.backward:before { content: "\f048"; }
706
+ i.icon.step.forward:before { content: "\f051"; }
707
+ i.icon.stethoscope:before { content: "\f0f1"; }
976
708
  i.icon.sticker.mule:before { content: "\f3f7"; }
709
+ i.icon.sticky.note:before { content: "\f249"; }
710
+ i.icon.stop:before { content: "\f04d"; }
711
+ i.icon.stop.circle:before { content: "\f28d"; }
712
+ i.icon.stopwatch:before { content: "\f2f2"; }
977
713
  i.icon.strava:before { content: "\f428"; }
978
- i.icon.stripe.s:before { content: "\f42a"; }
714
+ i.icon.street.view:before { content: "\f21d"; }
715
+ i.icon.strikethrough:before { content: "\f0cc"; }
979
716
  i.icon.stripe:before { content: "\f429"; }
717
+ i.icon.stripe.s:before { content: "\f42a"; }
980
718
  i.icon.studiovinari:before { content: "\f3f8"; }
981
- i.icon.stumbleupon.circle:before { content: "\f1a3"; }
982
719
  i.icon.stumbleupon:before { content: "\f1a4"; }
720
+ i.icon.stumbleupon.circle:before { content: "\f1a3"; }
721
+ i.icon.subscript:before { content: "\f12c"; }
722
+ i.icon.subway:before { content: "\f239"; }
723
+ i.icon.suitcase:before { content: "\f0f2"; }
724
+ i.icon.sun:before { content: "\f185"; }
983
725
  i.icon.superpowers:before { content: "\f2dd"; }
726
+ i.icon.superscript:before { content: "\f12b"; }
984
727
  i.icon.supple:before { content: "\f3f9"; }
985
- i.icon.telegram.plane:before { content: "\f3fe"; }
728
+ i.icon.sync:before { content: "\f021"; }
729
+ i.icon.sync.alternate:before { content: "\f2f1"; }
730
+ i.icon.syringe:before { content: "\f48e"; }
731
+ i.icon.table:before { content: "\f0ce"; }
732
+ i.icon.table.tennis:before { content: "\f45d"; }
733
+ i.icon.tablet:before { content: "\f10a"; }
734
+ i.icon.tablet.alternate:before { content: "\f3fa"; }
735
+ i.icon.tachometer.alternate:before { content: "\f3fd"; }
736
+ i.icon.tag:before { content: "\f02b"; }
737
+ i.icon.tags:before { content: "\f02c"; }
738
+ i.icon.tasks:before { content: "\f0ae"; }
739
+ i.icon.taxi:before { content: "\f1ba"; }
986
740
  i.icon.telegram:before { content: "\f2c6"; }
741
+ i.icon.telegram.plane:before { content: "\f3fe"; }
987
742
  i.icon.tencent.weibo:before { content: "\f1d5"; }
743
+ i.icon.terminal:before { content: "\f120"; }
744
+ i.icon.text.height:before { content: "\f034"; }
745
+ i.icon.text.width:before { content: "\f035"; }
746
+ i.icon.th:before { content: "\f00a"; }
747
+ i.icon.th.large:before { content: "\f009"; }
748
+ i.icon.th.list:before { content: "\f00b"; }
988
749
  i.icon.themeisle:before { content: "\f2b2"; }
750
+ i.icon.thermometer:before { content: "\f491"; }
751
+ i.icon.thermometer.empty:before { content: "\f2cb"; }
752
+ i.icon.thermometer.full:before { content: "\f2c7"; }
753
+ i.icon.thermometer.half:before { content: "\f2c9"; }
754
+ i.icon.thermometer.quarter:before { content: "\f2ca"; }
755
+ i.icon.thermometer.three.quarters:before { content: "\f2c8"; }
756
+ i.icon.thumbs.down:before { content: "\f165"; }
757
+ i.icon.thumbs.up:before { content: "\f164"; }
758
+ i.icon.thumbtack:before { content: "\f08d"; }
759
+ i.icon.ticket.alternate:before { content: "\f3ff"; }
760
+ i.icon.times:before { content: "\f00d"; }
761
+ i.icon.times.circle:before { content: "\f057"; }
762
+ i.icon.tint:before { content: "\f043"; }
763
+ i.icon.toggle.off:before { content: "\f204"; }
764
+ i.icon.toggle.on:before { content: "\f205"; }
765
+ i.icon.trademark:before { content: "\f25c"; }
766
+ i.icon.train:before { content: "\f238"; }
767
+ i.icon.transgender:before { content: "\f224"; }
768
+ i.icon.transgender.alternate:before { content: "\f225"; }
769
+ i.icon.trash:before { content: "\f1f8"; }
770
+ i.icon.trash.alternate:before { content: "\f2ed"; }
771
+ i.icon.tree:before { content: "\f1bb"; }
989
772
  i.icon.trello:before { content: "\f181"; }
990
773
  i.icon.tripadvisor:before { content: "\f262"; }
991
- i.icon.tumblr.square:before { content: "\f174"; }
774
+ i.icon.trophy:before { content: "\f091"; }
775
+ i.icon.truck:before { content: "\f0d1"; }
776
+ i.icon.tty:before { content: "\f1e4"; }
992
777
  i.icon.tumblr:before { content: "\f173"; }
778
+ i.icon.tumblr.square:before { content: "\f174"; }
779
+ i.icon.tv:before { content: "\f26c"; }
993
780
  i.icon.twitch:before { content: "\f1e8"; }
994
- i.icon.twitter.square:before { content: "\f081"; }
995
781
  i.icon.twitter:before { content: "\f099"; }
782
+ i.icon.twitter.square:before { content: "\f081"; }
996
783
  i.icon.typo3:before { content: "\f42b"; }
997
784
  i.icon.uber:before { content: "\f402"; }
998
785
  i.icon.uikit:before { content: "\f403"; }
786
+ i.icon.umbrella:before { content: "\f0e9"; }
787
+ i.icon.underline:before { content: "\f0cd"; }
788
+ i.icon.undo:before { content: "\f0e2"; }
789
+ i.icon.undo.alternate:before { content: "\f2ea"; }
999
790
  i.icon.uniregistry:before { content: "\f404"; }
791
+ i.icon.universal.access:before { content: "\f29a"; }
792
+ i.icon.university:before { content: "\f19c"; }
793
+ i.icon.unlink:before { content: "\f127"; }
794
+ i.icon.unlock:before { content: "\f09c"; }
795
+ i.icon.unlock.alternate:before { content: "\f13e"; }
1000
796
  i.icon.untappd:before { content: "\f405"; }
797
+ i.icon.upload:before { content: "\f093"; }
1001
798
  i.icon.usb:before { content: "\f287"; }
799
+ i.icon.user:before { content: "\f007"; }
800
+ i.icon.user.circle:before { content: "\f2bd"; }
801
+ i.icon.user.md:before { content: "\f0f0"; }
802
+ i.icon.user.plus:before { content: "\f234"; }
803
+ i.icon.user.secret:before { content: "\f21b"; }
804
+ i.icon.user.times:before { content: "\f235"; }
805
+ i.icon.users:before { content: "\f0c0"; }
1002
806
  i.icon.ussunnah:before { content: "\f407"; }
807
+ i.icon.utensil.spoon:before { content: "\f2e5"; }
808
+ i.icon.utensils:before { content: "\f2e7"; }
1003
809
  i.icon.vaadin:before { content: "\f408"; }
810
+ i.icon.venus:before { content: "\f221"; }
811
+ i.icon.venus.double:before { content: "\f226"; }
812
+ i.icon.venus.mars:before { content: "\f228"; }
1004
813
  i.icon.viacoin:before { content: "\f237"; }
1005
- i.icon.viadeo.square:before { content: "\f2aa"; }
1006
814
  i.icon.viadeo:before { content: "\f2a9"; }
815
+ i.icon.viadeo.square:before { content: "\f2aa"; }
1007
816
  i.icon.viber:before { content: "\f409"; }
817
+ i.icon.video:before { content: "\f03d"; }
818
+ i.icon.vimeo:before { content: "\f40a"; }
1008
819
  i.icon.vimeo.square:before { content: "\f194"; }
1009
820
  i.icon.vimeo.v:before { content: "\f27d"; }
1010
- i.icon.vimeo:before { content: "\f40a"; }
1011
821
  i.icon.vine:before { content: "\f1ca"; }
1012
822
  i.icon.vk:before { content: "\f189"; }
1013
823
  i.icon.vnv:before { content: "\f40b"; }
824
+ i.icon.volleyball.ball:before { content: "\f45f"; }
825
+ i.icon.volume.down:before { content: "\f027"; }
826
+ i.icon.volume.off:before { content: "\f026"; }
827
+ i.icon.volume.up:before { content: "\f028"; }
1014
828
  i.icon.vuejs:before { content: "\f41f"; }
829
+ i.icon.warehouse:before { content: "\f494"; }
1015
830
  i.icon.weibo:before { content: "\f18a"; }
831
+ i.icon.weight:before { content: "\f496"; }
1016
832
  i.icon.weixin:before { content: "\f1d7"; }
1017
- i.icon.whatsapp.square:before { content: "\f40c"; }
1018
833
  i.icon.whatsapp:before { content: "\f232"; }
834
+ i.icon.whatsapp.square:before { content: "\f40c"; }
835
+ i.icon.wheelchair:before { content: "\f193"; }
1019
836
  i.icon.whmcs:before { content: "\f40d"; }
837
+ i.icon.wifi:before { content: "\f1eb"; }
1020
838
  i.icon.wikipedia.w:before { content: "\f266"; }
839
+ i.icon.window.close:before { content: "\f410"; }
840
+ i.icon.window.maximize:before { content: "\f2d0"; }
841
+ i.icon.window.minimize:before { content: "\f2d1"; }
842
+ i.icon.window.restore:before { content: "\f2d2"; }
1021
843
  i.icon.windows:before { content: "\f17a"; }
1022
- i.icon.wordpress.simple:before { content: "\f411"; }
844
+ i.icon.won.sign:before { content: "\f159"; }
1023
845
  i.icon.wordpress:before { content: "\f19a"; }
846
+ i.icon.wordpress.simple:before { content: "\f411"; }
1024
847
  i.icon.wpbeginner:before { content: "\f297"; }
1025
848
  i.icon.wpexplorer:before { content: "\f2de"; }
1026
849
  i.icon.wpforms:before { content: "\f298"; }
850
+ i.icon.wrench:before { content: "\f0ad"; }
1027
851
  i.icon.xbox:before { content: "\f412"; }
1028
- i.icon.xing.square:before { content: "\f169"; }
1029
852
  i.icon.xing:before { content: "\f168"; }
853
+ i.icon.xing.square:before { content: "\f169"; }
1030
854
  i.icon.y.combinator:before { content: "\f23b"; }
1031
855
  i.icon.yahoo:before { content: "\f19e"; }
1032
- i.icon.yandex.international:before { content: "\f414"; }
1033
856
  i.icon.yandex:before { content: "\f413"; }
857
+ i.icon.yandex.international:before { content: "\f414"; }
1034
858
  i.icon.yelp:before { content: "\f1e9"; }
859
+ i.icon.yen.sign:before { content: "\f157"; }
1035
860
  i.icon.yoast:before { content: "\f2b1"; }
1036
- i.icon.youtube.square:before { content: "\f431"; }
1037
861
  i.icon.youtube:before { content: "\f167"; }
862
+ i.icon.youtube.square:before { content: "\f431"; }
1038
863
 
1039
864
 
1040
- /* Aliases */
865
+ /* Aliases */
866
+ i.icon.chess.rock:before { content: "\f447"; }
867
+ i.icon.ordered.list:before { content: "\f0cb"; }
868
+ i.icon.unordered.list:before { content: "\f0ca"; }
869
+ i.icon.user.doctor:before { content: "\f0f0"; }
870
+ i.icon.shield:before { content: "\f3ed"; }
871
+ i.icon.puzzle:before { content: "\f12e"; }
872
+ i.icon.credit.card.amazon.pay:before { content: "\f42d"; }
873
+ i.icon.credit.card.american.express:before { content: "\f1f3"; }
874
+ i.icon.credit.card.diners.club:before { content: "\f24c"; }
875
+ i.icon.credit.card.discover:before { content: "\f1f2"; }
876
+ i.icon.credit.card.jcb:before { content: "\f24b"; }
877
+ i.icon.credit.card.mastercard:before { content: "\f1f1"; }
878
+ i.icon.credit.card.paypal:before { content: "\f1f4"; }
879
+ i.icon.credit.card.stripe:before { content: "\f1f5"; }
880
+ i.icon.credit.card.visa:before { content: "\f1f0"; }
1041
881
  i.icon.add.circle:before { content: "\f055"; }
1042
882
  i.icon.add.square:before { content: "\f0fe"; }
1043
883
  i.icon.add.to.calendar:before { content: "\f271"; }
@@ -1062,8 +902,6 @@ i.icon.assistive.listening.devices:before { content: "\f2a2"; }
1062
902
  i.icon.attach:before { content: "\f0c6"; }
1063
903
  i.icon.attention:before { content: "\f06a"; }
1064
904
  i.icon.balance:before { content: "\f24e"; }
1065
- i.icon.bar.chart:before { content: "\f080"; }
1066
- i.icon.bar.graph:before { content: "\f080"; }
1067
905
  i.icon.bar:before { content: "\f0fc"; }
1068
906
  i.icon.bathtub:before { content: "\f2cd"; }
1069
907
  i.icon.battery.four:before { content: "\f240"; }
@@ -1170,7 +1008,6 @@ i.icon.legal:before { content: "\f0e3"; }
1170
1008
  i.icon.lesbian:before { content: "\f226"; }
1171
1009
  i.icon.lightning:before { content: "\f0e7"; }
1172
1010
  i.icon.like:before { content: "\f004"; }
1173
- i.icon.line.chart:before { content: "\f201"; }
1174
1011
  i.icon.line.graph:before { content: "\f201"; }
1175
1012
  i.icon.linkedin.square:before { content: "\f08c"; }
1176
1013
  i.icon.linkify:before { content: "\f0c1"; }
@@ -1188,10 +1025,8 @@ i.icon.mars.horizontal:before { content: "\f22b"; }
1188
1025
  i.icon.mars.vertical:before { content: "\f22a"; }
1189
1026
  i.icon.mastercard.card:before { content: "\f1f1"; }
1190
1027
  i.icon.mastercard:before { content: "\f1f1"; }
1191
- i.icon.maximize:before { content: "\f0b2"; }
1192
1028
  i.icon.microsoft.edge:before { content: "\f282"; }
1193
1029
  i.icon.military:before { content: "\f0fb"; }
1194
- i.icon.minimize:before { content: "\f066"; }
1195
1030
  i.icon.ms.edge:before { content: "\f282"; }
1196
1031
  i.icon.mute:before { content: "\f131"; }
1197
1032
  i.icon.new.pied.piper:before { content: "\f2ae"; }
@@ -1325,11 +1160,6 @@ i.icon.zip:before { content: "\f187"; }
1325
1160
  i.icon.zoom.in:before { content: "\f00e"; }
1326
1161
  i.icon.zoom.out:before { content: "\f010"; }
1327
1162
  i.icon.zoom:before { content: "\f00e"; }
1328
-
1329
- /*
1330
- Icons which where removed in FontAwesome 5
1331
- (Added the classes but pointed them to another icon which matches or is similar for compatibility reasons)
1332
- */
1333
1163
  i.icon.bitbucket.square:before { content: "\f171"; }
1334
1164
  i.icon.checkmark.box:before { content: "\f14a"; }
1335
1165
  i.icon.circle.thin:before { content: "\f111"; }
@@ -1341,7 +1171,6 @@ i.icon.credit.card.alternative:before { content: "\f09d"; }
1341
1171
  i.icon.currency:before { content: "\f3d1"; }
1342
1172
  i.icon.dashboard:before { content: "\f3fd"; }
1343
1173
  i.icon.diamond:before { content: "\f3a5"; }
1344
- i.icon.disk.outline:before { content: "\f369"; }
1345
1174
  i.icon.disk:before { content: "\f0a0"; }
1346
1175
  i.icon.exchange:before { content: "\f362"; }
1347
1176
  i.icon.external.share:before { content: "\f14d"; }
@@ -1349,7 +1178,6 @@ i.icon.external.square:before { content: "\f360"; }
1349
1178
  i.icon.external:before { content: "\f35d"; }
1350
1179
  i.icon.facebook.official:before { content: "\f082"; }
1351
1180
  i.icon.food:before { content: "\f2e7"; }
1352
- i.icon.heart.empty:before { content: "\f004"; }
1353
1181
  i.icon.hourglass.zero:before { content: "\f253"; }
1354
1182
  i.icon.level.down:before { content: "\f3be"; }
1355
1183
  i.icon.level.up:before { content: "\f3bf"; }
@@ -1366,10 +1194,515 @@ i.icon.resize.vertical:before { content: "\f338"; }
1366
1194
  i.icon.sign.in:before { content: "\f2f6"; }
1367
1195
  i.icon.sign.out:before { content: "\f2f5"; }
1368
1196
  i.icon.spoon:before { content: "\f2e5"; }
1369
- i.icon.star.empty:before { content: "\f089"; }
1370
1197
  i.icon.star.half.empty:before { content: "\f089"; }
1371
1198
  i.icon.star.half.full:before { content: "\f089"; }
1372
1199
  i.icon.ticket:before { content: "\f3ff"; }
1373
1200
  i.icon.times.rectangle:before { content: "\f410"; }
1374
1201
  i.icon.write:before { content: "\f303"; }
1375
1202
  i.icon.youtube.play:before { content: "\f167"; }
1203
+
1204
+
1205
+
1206
+ /*******************************
1207
+ Outline Icons
1208
+ *******************************/
1209
+
1210
+ /* Outline Icon */
1211
+ .loadOutlineIcons() when (@importOutlineIcons) {
1212
+ /* Load & Define Icon Font */
1213
+ @font-face {
1214
+ font-family: @outlineFontName;
1215
+ src: @outlineFallbackSRC;
1216
+ src: @outlineSrc;
1217
+ font-style: normal;
1218
+ font-weight: @normal;
1219
+ font-variant: normal;
1220
+ text-decoration: inherit;
1221
+ text-transform: none;
1222
+ }
1223
+ i.icon.outline {
1224
+ font-family: @outlineFontName;
1225
+ }
1226
+ /* Icon Definitions */
1227
+ i.icon.address.book.outline:before { content: "\f2b9"; }
1228
+ i.icon.address.card.outline:before { content: "\f2bb"; }
1229
+ i.icon.arrow.alternate.circle.down.outline:before { content: "\f358"; }
1230
+ i.icon.arrow.alternate.circle.left.outline:before { content: "\f359"; }
1231
+ i.icon.arrow.alternate.circle.right.outline:before { content: "\f35a"; }
1232
+ i.icon.arrow.alternate.circle.up.outline:before { content: "\f35b"; }
1233
+ i.icon.bell.outline:before { content: "\f0f3"; }
1234
+ i.icon.bell.slash.outline:before { content: "\f1f6"; }
1235
+ i.icon.bookmark.outline:before { content: "\f02e"; }
1236
+ i.icon.building.outline:before { content: "\f1ad"; }
1237
+ i.icon.calendar.outline:before { content: "\f133"; }
1238
+ i.icon.calendar.alternate.outline:before { content: "\f073"; }
1239
+ i.icon.calendar.check.outline:before { content: "\f274"; }
1240
+ i.icon.calendar.minus.outline:before { content: "\f272"; }
1241
+ i.icon.calendar.plus.outline:before { content: "\f271"; }
1242
+ i.icon.calendar.times.outline:before { content: "\f273"; }
1243
+ i.icon.caret.square.down.outline:before { content: "\f150"; }
1244
+ i.icon.caret.square.left.outline:before { content: "\f191"; }
1245
+ i.icon.caret.square.right.outline:before { content: "\f152"; }
1246
+ i.icon.caret.square.up.outline:before { content: "\f151"; }
1247
+ i.icon.chart.bar.outline:before { content: "\f080"; }
1248
+ i.icon.check.circle.outline:before { content: "\f058"; }
1249
+ i.icon.check.square.outline:before { content: "\f14a"; }
1250
+ i.icon.circle.outline:before { content: "\f111"; }
1251
+ i.icon.clipboard.outline:before { content: "\f328"; }
1252
+ i.icon.clock.outline:before { content: "\f017"; }
1253
+ i.icon.clone.outline:before { content: "\f24d"; }
1254
+ i.icon.closed.captioning.outline:before { content: "\f20a"; }
1255
+ i.icon.comment.outline:before { content: "\f075"; }
1256
+ i.icon.comment.alternate.outline:before { content: "\f27a"; }
1257
+ i.icon.comments.outline:before { content: "\f086"; }
1258
+ i.icon.compass.outline:before { content: "\f14e"; }
1259
+ i.icon.copy.outline:before { content: "\f0c5"; }
1260
+ i.icon.copyright.outline:before { content: "\f1f9"; }
1261
+ i.icon.credit.card.outline:before { content: "\f09d"; }
1262
+ i.icon.dot.circle.outline:before { content: "\f192"; }
1263
+ i.icon.edit.outline:before { content: "\f044"; }
1264
+ i.icon.envelope.outline:before { content: "\f0e0"; }
1265
+ i.icon.envelope.open.outline:before { content: "\f2b6"; }
1266
+ i.icon.eye.slash.outline:before { content: "\f070"; }
1267
+ i.icon.file.outline:before { content: "\f15b"; }
1268
+ i.icon.file.alternate.outline:before { content: "\f15c"; }
1269
+ i.icon.file.archive.outline:before { content: "\f1c6"; }
1270
+ i.icon.file.audio.outline:before { content: "\f1c7"; }
1271
+ i.icon.file.code.outline:before { content: "\f1c9"; }
1272
+ i.icon.file.excel.outline:before { content: "\f1c3"; }
1273
+ i.icon.file.image.outline:before { content: "\f1c5"; }
1274
+ i.icon.file.pdf.outline:before { content: "\f1c1"; }
1275
+ i.icon.file.powerpoint.outline:before { content: "\f1c4"; }
1276
+ i.icon.file.video.outline:before { content: "\f1c8"; }
1277
+ i.icon.file.word.outline:before { content: "\f1c2"; }
1278
+ i.icon.flag.outline:before { content: "\f024"; }
1279
+ i.icon.folder.outline:before { content: "\f07b"; }
1280
+ i.icon.folder.open.outline:before { content: "\f07c"; }
1281
+ i.icon.frown.outline:before { content: "\f119"; }
1282
+ i.icon.futbol.outline:before { content: "\f1e3"; }
1283
+ i.icon.gem.outline:before { content: "\f3a5"; }
1284
+ i.icon.hand.lizard.outline:before { content: "\f258"; }
1285
+ i.icon.hand.paper.outline:before { content: "\f256"; }
1286
+ i.icon.hand.peace.outline:before { content: "\f25b"; }
1287
+ i.icon.hand.point.down.outline:before { content: "\f0a7"; }
1288
+ i.icon.hand.point.left.outline:before { content: "\f0a5"; }
1289
+ i.icon.hand.point.right.outline:before { content: "\f0a4"; }
1290
+ i.icon.hand.point.up.outline:before { content: "\f0a6"; }
1291
+ i.icon.hand.pointer.outline:before { content: "\f25a"; }
1292
+ i.icon.hand.rock.outline:before { content: "\f255"; }
1293
+ i.icon.hand.scissors.outline:before { content: "\f257"; }
1294
+ i.icon.hand.spock.outline:before { content: "\f259"; }
1295
+ i.icon.handshake.outline:before { content: "\f2b5"; }
1296
+ i.icon.hdd.outline:before { content: "\f0a0"; }
1297
+ i.icon.heart.outline:before { content: "\f004"; }
1298
+ i.icon.hospital.outline:before { content: "\f0f8"; }
1299
+ i.icon.hourglass.outline:before { content: "\f254"; }
1300
+ i.icon.id.badge.outline:before { content: "\f2c1"; }
1301
+ i.icon.id.card.outline:before { content: "\f2c2"; }
1302
+ i.icon.image.outline:before { content: "\f03e"; }
1303
+ i.icon.images.outline:before { content: "\f302"; }
1304
+ i.icon.keyboard.outline:before { content: "\f11c"; }
1305
+ i.icon.lemon.outline:before { content: "\f094"; }
1306
+ i.icon.life.ring.outline:before { content: "\f1cd"; }
1307
+ i.icon.lightbulb.outline:before { content: "\f0eb"; }
1308
+ i.icon.list.alternate.outline:before { content: "\f022"; }
1309
+ i.icon.map.outline:before { content: "\f279"; }
1310
+ i.icon.meh.outline:before { content: "\f11a"; }
1311
+ i.icon.minus.square.outline:before { content: "\f146"; }
1312
+ i.icon.money.bill.alternate.outline:before { content: "\f3d1"; }
1313
+ i.icon.moon.outline:before { content: "\f186"; }
1314
+ i.icon.newspaper.outline:before { content: "\f1ea"; }
1315
+ i.icon.object.group.outline:before { content: "\f247"; }
1316
+ i.icon.object.ungroup.outline:before { content: "\f248"; }
1317
+ i.icon.paper.plane.outline:before { content: "\f1d8"; }
1318
+ i.icon.pause.circle.outline:before { content: "\f28b"; }
1319
+ i.icon.play.circle.outline:before { content: "\f144"; }
1320
+ i.icon.plus.square.outline:before { content: "\f0fe"; }
1321
+ i.icon.question.circle.outline:before { content: "\f059"; }
1322
+ i.icon.registered.outline:before { content: "\f25d"; }
1323
+ i.icon.save.outline:before { content: "\f0c7"; }
1324
+ i.icon.share.square.outline:before { content: "\f14d"; }
1325
+ i.icon.smile.outline:before { content: "\f118"; }
1326
+ i.icon.snowflake.outline:before { content: "\f2dc"; }
1327
+ i.icon.square.outline:before { content: "\f0c8"; }
1328
+ i.icon.star.outline:before { content: "\f005"; }
1329
+ i.icon.star.half.outline:before { content: "\f089"; }
1330
+ i.icon.sticky.note.outline:before { content: "\f249"; }
1331
+ i.icon.stop.circle.outline:before { content: "\f28d"; }
1332
+ i.icon.sun.outline:before { content: "\f185"; }
1333
+ i.icon.thumbs.down.outline:before { content: "\f165"; }
1334
+ i.icon.thumbs.up.outline:before { content: "\f164"; }
1335
+ i.icon.times.circle.outline:before { content: "\f057"; }
1336
+ i.icon.trash.alternate.outline:before { content: "\f2ed"; }
1337
+ i.icon.user.outline:before { content: "\f007"; }
1338
+ i.icon.user.circle.outline:before { content: "\f2bd"; }
1339
+ i.icon.window.close.outline:before { content: "\f410"; }
1340
+ i.icon.window.maximize.outline:before { content: "\f2d0"; }
1341
+ i.icon.window.minimize.outline:before { content: "\f2d1"; }
1342
+ i.icon.window.restore.outline:before { content: "\f2d2"; }
1343
+ i.icon.disk.outline:before { content: "\f369"; }
1344
+
1345
+ /* Outline Aliases */
1346
+ i.icon.heart.empty,
1347
+ i.icon.star.empty {
1348
+ font-family: @outlineFontName;
1349
+ }
1350
+ i.icon.heart.empty:before { content: "\f004"; }
1351
+ i.icon.star.empty:before { content: "\f089"; }
1352
+
1353
+ }
1354
+ .loadOutlineIcons();
1355
+
1356
+ /*******************************
1357
+ Brand Icons
1358
+ *******************************/
1359
+
1360
+ .loadBrandIcons() when (@importBrandIcons) {
1361
+ /* Load & Define Brand Font */
1362
+ @font-face {
1363
+ font-family: @brandFontName;
1364
+ src: @brandFallbackSRC;
1365
+ src: @brandSrc;
1366
+ font-style: normal;
1367
+ font-weight: @normal;
1368
+ font-variant: normal;
1369
+ text-decoration: inherit;
1370
+ text-transform: none;
1371
+ }
1372
+ /* Brand Icon Font Family */
1373
+ i.icon.\35 00px,
1374
+ i.icon.accessible.icon,
1375
+ i.icon.accusoft,
1376
+ i.icon.adn,
1377
+ i.icon.adversal,
1378
+ i.icon.affiliatetheme,
1379
+ i.icon.algolia,
1380
+ i.icon.amazon,
1381
+ i.icon.amazon.pay,
1382
+ i.icon.amilia,
1383
+ i.icon.android,
1384
+ i.icon.angellist,
1385
+ i.icon.angrycreative,
1386
+ i.icon.angular,
1387
+ i.icon.app.store,
1388
+ i.icon.app.store.ios,
1389
+ i.icon.apper,
1390
+ i.icon.apple,
1391
+ i.icon.apple.pay,
1392
+ i.icon.asymmetrik,
1393
+ i.icon.audible,
1394
+ i.icon.autoprefixer,
1395
+ i.icon.avianex,
1396
+ i.icon.aviato,
1397
+ i.icon.aws,
1398
+ i.icon.bandcamp,
1399
+ i.icon.behance,
1400
+ i.icon.behance.square,
1401
+ i.icon.bimobject,
1402
+ i.icon.bitbucket,
1403
+ i.icon.bitcoin,
1404
+ i.icon.bity,
1405
+ i.icon.black.tie,
1406
+ i.icon.blackberry,
1407
+ i.icon.blogger,
1408
+ i.icon.blogger.b,
1409
+ i.icon.bluetooth,
1410
+ i.icon.bluetooth.b,
1411
+ i.icon.btc,
1412
+ i.icon.buromobelexperte,
1413
+ i.icon.buysellads,
1414
+ i.icon.cc.amazon.pay,
1415
+ i.icon.cc.amex,
1416
+ i.icon.cc.apple.pay,
1417
+ i.icon.cc.diners.club,
1418
+ i.icon.cc.discover,
1419
+ i.icon.cc.jcb,
1420
+ i.icon.cc.mastercard,
1421
+ i.icon.cc.paypal,
1422
+ i.icon.cc.stripe,
1423
+ i.icon.cc.visa,
1424
+ i.icon.centercode,
1425
+ i.icon.chrome,
1426
+ i.icon.cloudscale,
1427
+ i.icon.cloudsmith,
1428
+ i.icon.cloudversify,
1429
+ i.icon.codepen,
1430
+ i.icon.codiepie,
1431
+ i.icon.connectdevelop,
1432
+ i.icon.contao,
1433
+ i.icon.cpanel,
1434
+ i.icon.creative.commons,
1435
+ i.icon.css3,
1436
+ i.icon.css3.alternate,
1437
+ i.icon.cuttlefish,
1438
+ i.icon.d.and.d,
1439
+ i.icon.dashcube,
1440
+ i.icon.delicious,
1441
+ i.icon.deploydog,
1442
+ i.icon.deskpro,
1443
+ i.icon.deviantart,
1444
+ i.icon.digg,
1445
+ i.icon.digital.ocean,
1446
+ i.icon.discord,
1447
+ i.icon.discourse,
1448
+ i.icon.dochub,
1449
+ i.icon.docker,
1450
+ i.icon.draft2digital,
1451
+ i.icon.dribbble,
1452
+ i.icon.dribbble.square,
1453
+ i.icon.dropbox,
1454
+ i.icon.drupal,
1455
+ i.icon.dyalog,
1456
+ i.icon.earlybirds,
1457
+ i.icon.edge,
1458
+ i.icon.elementor,
1459
+ i.icon.ember,
1460
+ i.icon.empire,
1461
+ i.icon.envira,
1462
+ i.icon.erlang,
1463
+ i.icon.ethereum,
1464
+ i.icon.etsy,
1465
+ i.icon.expeditedssl,
1466
+ i.icon.facebook,
1467
+ i.icon.facebook.f,
1468
+ i.icon.facebook.messenger,
1469
+ i.icon.facebook.square,
1470
+ i.icon.firefox,
1471
+ i.icon.first.order,
1472
+ i.icon.firstdraft,
1473
+ i.icon.flickr,
1474
+ i.icon.flipboard,
1475
+ i.icon.fly,
1476
+ i.icon.font.awesome,
1477
+ i.icon.font.awesome.alternate,
1478
+ i.icon.font.awesome.flag,
1479
+ i.icon.fonticons,
1480
+ i.icon.fonticons.fi,
1481
+ i.icon.fort.awesome,
1482
+ i.icon.fort.awesome.alternate,
1483
+ i.icon.forumbee,
1484
+ i.icon.foursquare,
1485
+ i.icon.free.code.camp,
1486
+ i.icon.freebsd,
1487
+ i.icon.get.pocket,
1488
+ i.icon.gg,
1489
+ i.icon.gg.circle,
1490
+ i.icon.git,
1491
+ i.icon.git.square,
1492
+ i.icon.github,
1493
+ i.icon.github.alternate,
1494
+ i.icon.github.square,
1495
+ i.icon.gitkraken,
1496
+ i.icon.gitlab,
1497
+ i.icon.gitter,
1498
+ i.icon.glide,
1499
+ i.icon.glide.g,
1500
+ i.icon.gofore,
1501
+ i.icon.goodreads,
1502
+ i.icon.goodreads.g,
1503
+ i.icon.google,
1504
+ i.icon.google.drive,
1505
+ i.icon.google.play,
1506
+ i.icon.google.plus,
1507
+ i.icon.google.plus.g,
1508
+ i.icon.google.plus.square,
1509
+ i.icon.google.wallet,
1510
+ i.icon.gratipay,
1511
+ i.icon.grav,
1512
+ i.icon.gripfire,
1513
+ i.icon.grunt,
1514
+ i.icon.gulp,
1515
+ i.icon.hacker.news,
1516
+ i.icon.hacker.news.square,
1517
+ i.icon.hips,
1518
+ i.icon.hire.a.helper,
1519
+ i.icon.hooli,
1520
+ i.icon.hotjar,
1521
+ i.icon.houzz,
1522
+ i.icon.html5,
1523
+ i.icon.hubspot,
1524
+ i.icon.imdb,
1525
+ i.icon.instagram,
1526
+ i.icon.internet.explorer,
1527
+ i.icon.ioxhost,
1528
+ i.icon.itunes,
1529
+ i.icon.itunes.note,
1530
+ i.icon.jenkins,
1531
+ i.icon.joget,
1532
+ i.icon.joomla,
1533
+ i.icon.js,
1534
+ i.icon.js.square,
1535
+ i.icon.jsfiddle,
1536
+ i.icon.keycdn,
1537
+ i.icon.kickstarter,
1538
+ i.icon.kickstarter.k,
1539
+ i.icon.korvue,
1540
+ i.icon.laravel,
1541
+ i.icon.lastfm,
1542
+ i.icon.lastfm.square,
1543
+ i.icon.leanpub,
1544
+ i.icon.less,
1545
+ i.icon.linechat,
1546
+ i.icon.linkedin,
1547
+ i.icon.linkedin.in,
1548
+ i.icon.linode,
1549
+ i.icon.linux,
1550
+ i.icon.lyft,
1551
+ i.icon.magento,
1552
+ i.icon.maxcdn,
1553
+ i.icon.medapps,
1554
+ i.icon.medium,
1555
+ i.icon.medium.m,
1556
+ i.icon.medrt,
1557
+ i.icon.meetup,
1558
+ i.icon.microsoft,
1559
+ i.icon.mix,
1560
+ i.icon.mixcloud,
1561
+ i.icon.mizuni,
1562
+ i.icon.modx,
1563
+ i.icon.monero,
1564
+ i.icon.napster,
1565
+ i.icon.nintendo.switch,
1566
+ i.icon.node,
1567
+ i.icon.node.js,
1568
+ i.icon.npm,
1569
+ i.icon.ns8,
1570
+ i.icon.nutritionix,
1571
+ i.icon.odnoklassniki,
1572
+ i.icon.odnoklassniki.square,
1573
+ i.icon.opencart,
1574
+ i.icon.openid,
1575
+ i.icon.opera,
1576
+ i.icon.optin.monster,
1577
+ i.icon.osi,
1578
+ i.icon.page4,
1579
+ i.icon.pagelines,
1580
+ i.icon.palfed,
1581
+ i.icon.patreon,
1582
+ i.icon.paypal,
1583
+ i.icon.periscope,
1584
+ i.icon.phabricator,
1585
+ i.icon.phoenix.framework,
1586
+ i.icon.php,
1587
+ i.icon.pied.piper,
1588
+ i.icon.pied.piper.alternate,
1589
+ i.icon.pied.piper.pp,
1590
+ i.icon.pinterest,
1591
+ i.icon.pinterest.p,
1592
+ i.icon.pinterest.square,
1593
+ i.icon.playstation,
1594
+ i.icon.product.hunt,
1595
+ i.icon.pushed,
1596
+ i.icon.python,
1597
+ i.icon.qq,
1598
+ i.icon.quinscape,
1599
+ i.icon.quora,
1600
+ i.icon.ravelry,
1601
+ i.icon.react,
1602
+ i.icon.rebel,
1603
+ i.icon.redriver,
1604
+ i.icon.reddit,
1605
+ i.icon.reddit.alien,
1606
+ i.icon.reddit.square,
1607
+ i.icon.rendact,
1608
+ i.icon.renren,
1609
+ i.icon.replyd,
1610
+ i.icon.resolving,
1611
+ i.icon.rocketchat,
1612
+ i.icon.rockrms,
1613
+ i.icon.safari,
1614
+ i.icon.sass,
1615
+ i.icon.schlix,
1616
+ i.icon.scribd,
1617
+ i.icon.searchengin,
1618
+ i.icon.sellcast,
1619
+ i.icon.sellsy,
1620
+ i.icon.servicestack,
1621
+ i.icon.shirtsinbulk,
1622
+ i.icon.simplybuilt,
1623
+ i.icon.sistrix,
1624
+ i.icon.skyatlas,
1625
+ i.icon.skype,
1626
+ i.icon.slack,
1627
+ i.icon.slack.hash,
1628
+ i.icon.slideshare,
1629
+ i.icon.snapchat,
1630
+ i.icon.snapchat.ghost,
1631
+ i.icon.snapchat.square,
1632
+ i.icon.soundcloud,
1633
+ i.icon.speakap,
1634
+ i.icon.spotify,
1635
+ i.icon.stack.exchange,
1636
+ i.icon.stack.overflow,
1637
+ i.icon.staylinked,
1638
+ i.icon.steam,
1639
+ i.icon.steam.square,
1640
+ i.icon.steam.symbol,
1641
+ i.icon.sticker.mule,
1642
+ i.icon.strava,
1643
+ i.icon.stripe,
1644
+ i.icon.stripe.s,
1645
+ i.icon.studiovinari,
1646
+ i.icon.stumbleupon,
1647
+ i.icon.stumbleupon.circle,
1648
+ i.icon.superpowers,
1649
+ i.icon.supple,
1650
+ i.icon.telegram,
1651
+ i.icon.telegram.plane,
1652
+ i.icon.tencent.weibo,
1653
+ i.icon.themeisle,
1654
+ i.icon.trello,
1655
+ i.icon.tripadvisor,
1656
+ i.icon.tumblr,
1657
+ i.icon.tumblr.square,
1658
+ i.icon.twitch,
1659
+ i.icon.twitter,
1660
+ i.icon.twitter.square,
1661
+ i.icon.typo3,
1662
+ i.icon.uber,
1663
+ i.icon.uikit,
1664
+ i.icon.uniregistry,
1665
+ i.icon.untappd,
1666
+ i.icon.usb,
1667
+ i.icon.ussunnah,
1668
+ i.icon.vaadin,
1669
+ i.icon.viacoin,
1670
+ i.icon.viadeo,
1671
+ i.icon.viadeo.square,
1672
+ i.icon.viber,
1673
+ i.icon.vimeo,
1674
+ i.icon.vimeo.square,
1675
+ i.icon.vimeo.v,
1676
+ i.icon.vine,
1677
+ i.icon.vk,
1678
+ i.icon.vnv,
1679
+ i.icon.vuejs,
1680
+ i.icon.weibo,
1681
+ i.icon.weixin,
1682
+ i.icon.whatsapp,
1683
+ i.icon.whatsapp.square,
1684
+ i.icon.whmcs,
1685
+ i.icon.wikipedia.w,
1686
+ i.icon.windows,
1687
+ i.icon.wordpress,
1688
+ i.icon.wordpress.simple,
1689
+ i.icon.wpbeginner,
1690
+ i.icon.wpexplorer,
1691
+ i.icon.wpforms,
1692
+ i.icon.xbox,
1693
+ i.icon.xing,
1694
+ i.icon.xing.square,
1695
+ i.icon.y.combinator,
1696
+ i.icon.yahoo,
1697
+ i.icon.yandex,
1698
+ i.icon.yandex.international,
1699
+ i.icon.yelp,
1700
+ i.icon.yoast,
1701
+ i.icon.youtube,
1702
+ i.icon.youtube.square {
1703
+ font-family: 'brand-icons';
1704
+ }
1705
+ /* Brand Icons Ideally Would Be Defined Here */
1706
+
1707
+ }
1708
+ .loadBrandIcons();