jekyll-theme-peaceful-gates 2.0.1 → 2.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (68) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.txt +21 -0
  3. data/README.md +49 -0
  4. data/_includes/footer.html +21 -0
  5. data/_includes/head.html +43 -0
  6. data/_includes/menu.html +40 -0
  7. data/_includes/page-header.html +6 -0
  8. data/_includes/social-bar.html +36 -0
  9. data/_includes/social-link.html +6 -0
  10. data/_layouts/centered.html +13 -0
  11. data/_layouts/default.html +13 -0
  12. data/_layouts/index.html +8 -0
  13. data/_layouts/page.html +10 -0
  14. data/_layouts/post-index.html +26 -0
  15. data/_layouts/post.html +19 -0
  16. data/_sass/fontawesome/_animated.scss +20 -0
  17. data/_sass/fontawesome/_bordered-pulled.scss +20 -0
  18. data/_sass/fontawesome/_core.scss +21 -0
  19. data/_sass/fontawesome/_fixed-width.scss +6 -0
  20. data/_sass/fontawesome/_icons.scss +1410 -0
  21. data/_sass/fontawesome/_larger.scss +23 -0
  22. data/_sass/fontawesome/_list.scss +18 -0
  23. data/_sass/fontawesome/_mixins.scss +56 -0
  24. data/_sass/fontawesome/_rotated-flipped.scss +24 -0
  25. data/_sass/fontawesome/_screen-reader.scss +5 -0
  26. data/_sass/fontawesome/_shims.scss +2066 -0
  27. data/_sass/fontawesome/_stacked.scss +31 -0
  28. data/_sass/fontawesome/_variables.scss +1427 -0
  29. data/_sass/fontawesome/brands.scss +23 -0
  30. data/_sass/fontawesome/fontawesome.scss +16 -0
  31. data/_sass/fontawesome/regular.scss +23 -0
  32. data/_sass/fontawesome/solid.scss +24 -0
  33. data/_sass/fontawesome/v4-shims.scss +6 -0
  34. data/_sass/jekyll-theme-peaceful-gates.scss +17 -0
  35. data/_sass/jekyll-theme-peaceful-gates/_base.scss +76 -0
  36. data/_sass/jekyll-theme-peaceful-gates/_button.scss +125 -0
  37. data/_sass/jekyll-theme-peaceful-gates/_centered.scss +29 -0
  38. data/_sass/jekyll-theme-peaceful-gates/_code.scss +121 -0
  39. data/_sass/jekyll-theme-peaceful-gates/_footer.scss +94 -0
  40. data/_sass/jekyll-theme-peaceful-gates/_menu.scss +108 -0
  41. data/_sass/jekyll-theme-peaceful-gates/_page.scss +74 -0
  42. data/_sass/jekyll-theme-peaceful-gates/_theme.scss +57 -0
  43. data/_sass/jekyll-theme-peaceful-gates/_util.scss +60 -0
  44. data/_sass/jekyll-theme-peaceful-gates/_variables.scss +32 -0
  45. data/assets/css/main.scss +8 -0
  46. data/assets/fonts/consolas.ttf +0 -0
  47. data/assets/fonts/fa-brands-400.eot +0 -0
  48. data/assets/fonts/fa-brands-400.svg +3570 -0
  49. data/assets/fonts/fa-brands-400.ttf +0 -0
  50. data/assets/fonts/fa-brands-400.woff +0 -0
  51. data/assets/fonts/fa-brands-400.woff2 +0 -0
  52. data/assets/fonts/fa-regular-400.eot +0 -0
  53. data/assets/fonts/fa-regular-400.svg +803 -0
  54. data/assets/fonts/fa-regular-400.ttf +0 -0
  55. data/assets/fonts/fa-regular-400.woff +0 -0
  56. data/assets/fonts/fa-regular-400.woff2 +0 -0
  57. data/assets/fonts/fa-solid-900.eot +0 -0
  58. data/assets/fonts/fa-solid-900.svg +4700 -0
  59. data/assets/fonts/fa-solid-900.ttf +0 -0
  60. data/assets/fonts/fa-solid-900.woff +0 -0
  61. data/assets/fonts/fa-solid-900.woff2 +0 -0
  62. data/assets/images/showcase/landscape-photo.jpg +0 -0
  63. data/assets/images/showcase/portrait-photo.jpg +0 -0
  64. data/assets/images/showcase/square-photo.jpg +0 -0
  65. data/assets/js/colormode-select.js +9 -0
  66. data/assets/js/dropdown-toggle.js +5 -0
  67. data/assets/js/table-layout.js +14 -0
  68. metadata +69 -3
@@ -0,0 +1,23 @@
1
+ // Icon Sizes
2
+ // -------------------------
3
+
4
+ // makes the font 33% larger relative to the icon container
5
+ .#{$fa-css-prefix}-lg {
6
+ font-size: (4em / 3);
7
+ line-height: (3em / 4);
8
+ vertical-align: -.0667em;
9
+ }
10
+
11
+ .#{$fa-css-prefix}-xs {
12
+ font-size: .75em;
13
+ }
14
+
15
+ .#{$fa-css-prefix}-sm {
16
+ font-size: .875em;
17
+ }
18
+
19
+ @for $i from 1 through 10 {
20
+ .#{$fa-css-prefix}-#{$i}x {
21
+ font-size: $i * 1em;
22
+ }
23
+ }
@@ -0,0 +1,18 @@
1
+ // List Icons
2
+ // -------------------------
3
+
4
+ .#{$fa-css-prefix}-ul {
5
+ list-style-type: none;
6
+ margin-left: $fa-li-width * 5/4;
7
+ padding-left: 0;
8
+
9
+ > li { position: relative; }
10
+ }
11
+
12
+ .#{$fa-css-prefix}-li {
13
+ left: -$fa-li-width;
14
+ position: absolute;
15
+ text-align: center;
16
+ width: $fa-li-width;
17
+ line-height: inherit;
18
+ }
@@ -0,0 +1,56 @@
1
+ // Mixins
2
+ // --------------------------
3
+
4
+ @mixin fa-icon {
5
+ -webkit-font-smoothing: antialiased;
6
+ -moz-osx-font-smoothing: grayscale;
7
+ display: inline-block;
8
+ font-style: normal;
9
+ font-variant: normal;
10
+ font-weight: normal;
11
+ line-height: 1;
12
+ }
13
+
14
+ @mixin fa-icon-rotate($degrees, $rotation) {
15
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation})";
16
+ transform: rotate($degrees);
17
+ }
18
+
19
+ @mixin fa-icon-flip($horiz, $vert, $rotation) {
20
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}, mirror=1)";
21
+ transform: scale($horiz, $vert);
22
+ }
23
+
24
+
25
+ // Only display content to screen readers. A la Bootstrap 4.
26
+ //
27
+ // See: http://a11yproject.com/posts/how-to-hide-content/
28
+
29
+ @mixin sr-only {
30
+ border: 0;
31
+ clip: rect(0, 0, 0, 0);
32
+ height: 1px;
33
+ margin: -1px;
34
+ overflow: hidden;
35
+ padding: 0;
36
+ position: absolute;
37
+ width: 1px;
38
+ }
39
+
40
+ // Use in conjunction with .sr-only to only display content when it's focused.
41
+ //
42
+ // Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
43
+ //
44
+ // Credit: HTML5 Boilerplate
45
+
46
+ @mixin sr-only-focusable {
47
+ &:active,
48
+ &:focus {
49
+ clip: auto;
50
+ height: auto;
51
+ margin: 0;
52
+ overflow: visible;
53
+ position: static;
54
+ width: auto;
55
+ }
56
+ }
@@ -0,0 +1,24 @@
1
+ // Rotated & Flipped Icons
2
+ // -------------------------
3
+
4
+ .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); }
5
+ .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); }
6
+ .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); }
7
+
8
+ .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); }
9
+ .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); }
10
+ .#{$fa-css-prefix}-flip-both, .#{$fa-css-prefix}-flip-horizontal.#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(-1, -1, 2); }
11
+
12
+ // Hook for IE8-9
13
+ // -------------------------
14
+
15
+ :root {
16
+ .#{$fa-css-prefix}-rotate-90,
17
+ .#{$fa-css-prefix}-rotate-180,
18
+ .#{$fa-css-prefix}-rotate-270,
19
+ .#{$fa-css-prefix}-flip-horizontal,
20
+ .#{$fa-css-prefix}-flip-vertical,
21
+ .#{$fa-css-prefix}-flip-both {
22
+ filter: none;
23
+ }
24
+ }
@@ -0,0 +1,5 @@
1
+ // Screen Readers
2
+ // -------------------------
3
+
4
+ .sr-only { @include sr-only; }
5
+ .sr-only-focusable { @include sr-only-focusable; }
@@ -0,0 +1,2066 @@
1
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-glass:before { content: fa-content($fa-var-glass-martini); }
2
+
3
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-meetup {
4
+ font-family: 'Font Awesome 5 Brands';
5
+ font-weight: 400;
6
+ }
7
+
8
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-star-o {
9
+ font-family: 'Font Awesome 5 Free';
10
+ font-weight: 400;
11
+ }
12
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-star-o:before { content: fa-content($fa-var-star); }
13
+
14
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-remove:before { content: fa-content($fa-var-times); }
15
+
16
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-close:before { content: fa-content($fa-var-times); }
17
+
18
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-gear:before { content: fa-content($fa-var-cog); }
19
+
20
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-trash-o {
21
+ font-family: 'Font Awesome 5 Free';
22
+ font-weight: 400;
23
+ }
24
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-trash-o:before { content: fa-content($fa-var-trash-alt); }
25
+
26
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-o {
27
+ font-family: 'Font Awesome 5 Free';
28
+ font-weight: 400;
29
+ }
30
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-o:before { content: fa-content($fa-var-file); }
31
+
32
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-clock-o {
33
+ font-family: 'Font Awesome 5 Free';
34
+ font-weight: 400;
35
+ }
36
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-clock-o:before { content: fa-content($fa-var-clock); }
37
+
38
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-down {
39
+ font-family: 'Font Awesome 5 Free';
40
+ font-weight: 400;
41
+ }
42
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-down:before { content: fa-content($fa-var-arrow-alt-circle-down); }
43
+
44
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-up {
45
+ font-family: 'Font Awesome 5 Free';
46
+ font-weight: 400;
47
+ }
48
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-up:before { content: fa-content($fa-var-arrow-alt-circle-up); }
49
+
50
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-play-circle-o {
51
+ font-family: 'Font Awesome 5 Free';
52
+ font-weight: 400;
53
+ }
54
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-play-circle-o:before { content: fa-content($fa-var-play-circle); }
55
+
56
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-repeat:before { content: fa-content($fa-var-redo); }
57
+
58
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-rotate-right:before { content: fa-content($fa-var-redo); }
59
+
60
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-refresh:before { content: fa-content($fa-var-sync); }
61
+
62
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-list-alt {
63
+ font-family: 'Font Awesome 5 Free';
64
+ font-weight: 400;
65
+ }
66
+
67
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-dedent:before { content: fa-content($fa-var-outdent); }
68
+
69
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-video-camera:before { content: fa-content($fa-var-video); }
70
+
71
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-picture-o {
72
+ font-family: 'Font Awesome 5 Free';
73
+ font-weight: 400;
74
+ }
75
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-picture-o:before { content: fa-content($fa-var-image); }
76
+
77
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-photo {
78
+ font-family: 'Font Awesome 5 Free';
79
+ font-weight: 400;
80
+ }
81
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-photo:before { content: fa-content($fa-var-image); }
82
+
83
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-image {
84
+ font-family: 'Font Awesome 5 Free';
85
+ font-weight: 400;
86
+ }
87
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-image:before { content: fa-content($fa-var-image); }
88
+
89
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-pencil:before { content: fa-content($fa-var-pencil-alt); }
90
+
91
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-map-marker:before { content: fa-content($fa-var-map-marker-alt); }
92
+
93
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square-o {
94
+ font-family: 'Font Awesome 5 Free';
95
+ font-weight: 400;
96
+ }
97
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square-o:before { content: fa-content($fa-var-edit); }
98
+
99
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-share-square-o {
100
+ font-family: 'Font Awesome 5 Free';
101
+ font-weight: 400;
102
+ }
103
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-share-square-o:before { content: fa-content($fa-var-share-square); }
104
+
105
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-check-square-o {
106
+ font-family: 'Font Awesome 5 Free';
107
+ font-weight: 400;
108
+ }
109
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-check-square-o:before { content: fa-content($fa-var-check-square); }
110
+
111
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-arrows:before { content: fa-content($fa-var-arrows-alt); }
112
+
113
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-times-circle-o {
114
+ font-family: 'Font Awesome 5 Free';
115
+ font-weight: 400;
116
+ }
117
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-times-circle-o:before { content: fa-content($fa-var-times-circle); }
118
+
119
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-check-circle-o {
120
+ font-family: 'Font Awesome 5 Free';
121
+ font-weight: 400;
122
+ }
123
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-check-circle-o:before { content: fa-content($fa-var-check-circle); }
124
+
125
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-mail-forward:before { content: fa-content($fa-var-share); }
126
+
127
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-expand:before { content: fa-content($fa-var-expand-alt); }
128
+
129
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-compress:before { content: fa-content($fa-var-compress-alt); }
130
+
131
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-eye {
132
+ font-family: 'Font Awesome 5 Free';
133
+ font-weight: 400;
134
+ }
135
+
136
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-eye-slash {
137
+ font-family: 'Font Awesome 5 Free';
138
+ font-weight: 400;
139
+ }
140
+
141
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-warning:before { content: fa-content($fa-var-exclamation-triangle); }
142
+
143
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar:before { content: fa-content($fa-var-calendar-alt); }
144
+
145
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-v:before { content: fa-content($fa-var-arrows-alt-v); }
146
+
147
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-h:before { content: fa-content($fa-var-arrows-alt-h); }
148
+
149
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart {
150
+ font-family: 'Font Awesome 5 Free';
151
+ font-weight: 400;
152
+ }
153
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart:before { content: fa-content($fa-var-chart-bar); }
154
+
155
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart-o {
156
+ font-family: 'Font Awesome 5 Free';
157
+ font-weight: 400;
158
+ }
159
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart-o:before { content: fa-content($fa-var-chart-bar); }
160
+
161
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-twitter-square {
162
+ font-family: 'Font Awesome 5 Brands';
163
+ font-weight: 400;
164
+ }
165
+
166
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-square {
167
+ font-family: 'Font Awesome 5 Brands';
168
+ font-weight: 400;
169
+ }
170
+
171
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-gears:before { content: fa-content($fa-var-cogs); }
172
+
173
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-up {
174
+ font-family: 'Font Awesome 5 Free';
175
+ font-weight: 400;
176
+ }
177
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-up:before { content: fa-content($fa-var-thumbs-up); }
178
+
179
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-down {
180
+ font-family: 'Font Awesome 5 Free';
181
+ font-weight: 400;
182
+ }
183
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-down:before { content: fa-content($fa-var-thumbs-down); }
184
+
185
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-heart-o {
186
+ font-family: 'Font Awesome 5 Free';
187
+ font-weight: 400;
188
+ }
189
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-heart-o:before { content: fa-content($fa-var-heart); }
190
+
191
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sign-out:before { content: fa-content($fa-var-sign-out-alt); }
192
+
193
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin-square {
194
+ font-family: 'Font Awesome 5 Brands';
195
+ font-weight: 400;
196
+ }
197
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin-square:before { content: fa-content($fa-var-linkedin); }
198
+
199
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-thumb-tack:before { content: fa-content($fa-var-thumbtack); }
200
+
201
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-external-link:before { content: fa-content($fa-var-external-link-alt); }
202
+
203
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sign-in:before { content: fa-content($fa-var-sign-in-alt); }
204
+
205
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-github-square {
206
+ font-family: 'Font Awesome 5 Brands';
207
+ font-weight: 400;
208
+ }
209
+
210
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-lemon-o {
211
+ font-family: 'Font Awesome 5 Free';
212
+ font-weight: 400;
213
+ }
214
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-lemon-o:before { content: fa-content($fa-var-lemon); }
215
+
216
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-square-o {
217
+ font-family: 'Font Awesome 5 Free';
218
+ font-weight: 400;
219
+ }
220
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-square-o:before { content: fa-content($fa-var-square); }
221
+
222
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bookmark-o {
223
+ font-family: 'Font Awesome 5 Free';
224
+ font-weight: 400;
225
+ }
226
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bookmark-o:before { content: fa-content($fa-var-bookmark); }
227
+
228
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-twitter {
229
+ font-family: 'Font Awesome 5 Brands';
230
+ font-weight: 400;
231
+ }
232
+
233
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook {
234
+ font-family: 'Font Awesome 5 Brands';
235
+ font-weight: 400;
236
+ }
237
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook:before { content: fa-content($fa-var-facebook-f); }
238
+
239
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-f {
240
+ font-family: 'Font Awesome 5 Brands';
241
+ font-weight: 400;
242
+ }
243
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-f:before { content: fa-content($fa-var-facebook-f); }
244
+
245
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-github {
246
+ font-family: 'Font Awesome 5 Brands';
247
+ font-weight: 400;
248
+ }
249
+
250
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-credit-card {
251
+ font-family: 'Font Awesome 5 Free';
252
+ font-weight: 400;
253
+ }
254
+
255
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-feed:before { content: fa-content($fa-var-rss); }
256
+
257
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hdd-o {
258
+ font-family: 'Font Awesome 5 Free';
259
+ font-weight: 400;
260
+ }
261
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hdd-o:before { content: fa-content($fa-var-hdd); }
262
+
263
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-right {
264
+ font-family: 'Font Awesome 5 Free';
265
+ font-weight: 400;
266
+ }
267
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-right:before { content: fa-content($fa-var-hand-point-right); }
268
+
269
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-left {
270
+ font-family: 'Font Awesome 5 Free';
271
+ font-weight: 400;
272
+ }
273
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-left:before { content: fa-content($fa-var-hand-point-left); }
274
+
275
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-up {
276
+ font-family: 'Font Awesome 5 Free';
277
+ font-weight: 400;
278
+ }
279
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-up:before { content: fa-content($fa-var-hand-point-up); }
280
+
281
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-down {
282
+ font-family: 'Font Awesome 5 Free';
283
+ font-weight: 400;
284
+ }
285
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-down:before { content: fa-content($fa-var-hand-point-down); }
286
+
287
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-alt:before { content: fa-content($fa-var-expand-arrows-alt); }
288
+
289
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-group:before { content: fa-content($fa-var-users); }
290
+
291
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-chain:before { content: fa-content($fa-var-link); }
292
+
293
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-scissors:before { content: fa-content($fa-var-cut); }
294
+
295
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-files-o {
296
+ font-family: 'Font Awesome 5 Free';
297
+ font-weight: 400;
298
+ }
299
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-files-o:before { content: fa-content($fa-var-copy); }
300
+
301
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-floppy-o {
302
+ font-family: 'Font Awesome 5 Free';
303
+ font-weight: 400;
304
+ }
305
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-floppy-o:before { content: fa-content($fa-var-save); }
306
+
307
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-navicon:before { content: fa-content($fa-var-bars); }
308
+
309
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-reorder:before { content: fa-content($fa-var-bars); }
310
+
311
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest {
312
+ font-family: 'Font Awesome 5 Brands';
313
+ font-weight: 400;
314
+ }
315
+
316
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest-square {
317
+ font-family: 'Font Awesome 5 Brands';
318
+ font-weight: 400;
319
+ }
320
+
321
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-square {
322
+ font-family: 'Font Awesome 5 Brands';
323
+ font-weight: 400;
324
+ }
325
+
326
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus {
327
+ font-family: 'Font Awesome 5 Brands';
328
+ font-weight: 400;
329
+ }
330
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus:before { content: fa-content($fa-var-google-plus-g); }
331
+
332
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-money {
333
+ font-family: 'Font Awesome 5 Free';
334
+ font-weight: 400;
335
+ }
336
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-money:before { content: fa-content($fa-var-money-bill-alt); }
337
+
338
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-unsorted:before { content: fa-content($fa-var-sort); }
339
+
340
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-desc:before { content: fa-content($fa-var-sort-down); }
341
+
342
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-asc:before { content: fa-content($fa-var-sort-up); }
343
+
344
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin {
345
+ font-family: 'Font Awesome 5 Brands';
346
+ font-weight: 400;
347
+ }
348
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin:before { content: fa-content($fa-var-linkedin-in); }
349
+
350
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-rotate-left:before { content: fa-content($fa-var-undo); }
351
+
352
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-legal:before { content: fa-content($fa-var-gavel); }
353
+
354
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-tachometer:before { content: fa-content($fa-var-tachometer-alt); }
355
+
356
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-dashboard:before { content: fa-content($fa-var-tachometer-alt); }
357
+
358
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-comment-o {
359
+ font-family: 'Font Awesome 5 Free';
360
+ font-weight: 400;
361
+ }
362
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-comment-o:before { content: fa-content($fa-var-comment); }
363
+
364
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-comments-o {
365
+ font-family: 'Font Awesome 5 Free';
366
+ font-weight: 400;
367
+ }
368
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-comments-o:before { content: fa-content($fa-var-comments); }
369
+
370
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-flash:before { content: fa-content($fa-var-bolt); }
371
+
372
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-clipboard {
373
+ font-family: 'Font Awesome 5 Free';
374
+ font-weight: 400;
375
+ }
376
+
377
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-paste {
378
+ font-family: 'Font Awesome 5 Free';
379
+ font-weight: 400;
380
+ }
381
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-paste:before { content: fa-content($fa-var-clipboard); }
382
+
383
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-lightbulb-o {
384
+ font-family: 'Font Awesome 5 Free';
385
+ font-weight: 400;
386
+ }
387
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-lightbulb-o:before { content: fa-content($fa-var-lightbulb); }
388
+
389
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-exchange:before { content: fa-content($fa-var-exchange-alt); }
390
+
391
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cloud-download:before { content: fa-content($fa-var-cloud-download-alt); }
392
+
393
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cloud-upload:before { content: fa-content($fa-var-cloud-upload-alt); }
394
+
395
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bell-o {
396
+ font-family: 'Font Awesome 5 Free';
397
+ font-weight: 400;
398
+ }
399
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bell-o:before { content: fa-content($fa-var-bell); }
400
+
401
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cutlery:before { content: fa-content($fa-var-utensils); }
402
+
403
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-text-o {
404
+ font-family: 'Font Awesome 5 Free';
405
+ font-weight: 400;
406
+ }
407
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-text-o:before { content: fa-content($fa-var-file-alt); }
408
+
409
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-building-o {
410
+ font-family: 'Font Awesome 5 Free';
411
+ font-weight: 400;
412
+ }
413
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-building-o:before { content: fa-content($fa-var-building); }
414
+
415
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hospital-o {
416
+ font-family: 'Font Awesome 5 Free';
417
+ font-weight: 400;
418
+ }
419
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hospital-o:before { content: fa-content($fa-var-hospital); }
420
+
421
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-tablet:before { content: fa-content($fa-var-tablet-alt); }
422
+
423
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-mobile:before { content: fa-content($fa-var-mobile-alt); }
424
+
425
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-mobile-phone:before { content: fa-content($fa-var-mobile-alt); }
426
+
427
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o {
428
+ font-family: 'Font Awesome 5 Free';
429
+ font-weight: 400;
430
+ }
431
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o:before { content: fa-content($fa-var-circle); }
432
+
433
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-mail-reply:before { content: fa-content($fa-var-reply); }
434
+
435
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-github-alt {
436
+ font-family: 'Font Awesome 5 Brands';
437
+ font-weight: 400;
438
+ }
439
+
440
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-folder-o {
441
+ font-family: 'Font Awesome 5 Free';
442
+ font-weight: 400;
443
+ }
444
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-folder-o:before { content: fa-content($fa-var-folder); }
445
+
446
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-folder-open-o {
447
+ font-family: 'Font Awesome 5 Free';
448
+ font-weight: 400;
449
+ }
450
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-folder-open-o:before { content: fa-content($fa-var-folder-open); }
451
+
452
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-smile-o {
453
+ font-family: 'Font Awesome 5 Free';
454
+ font-weight: 400;
455
+ }
456
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-smile-o:before { content: fa-content($fa-var-smile); }
457
+
458
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-frown-o {
459
+ font-family: 'Font Awesome 5 Free';
460
+ font-weight: 400;
461
+ }
462
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-frown-o:before { content: fa-content($fa-var-frown); }
463
+
464
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-meh-o {
465
+ font-family: 'Font Awesome 5 Free';
466
+ font-weight: 400;
467
+ }
468
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-meh-o:before { content: fa-content($fa-var-meh); }
469
+
470
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-keyboard-o {
471
+ font-family: 'Font Awesome 5 Free';
472
+ font-weight: 400;
473
+ }
474
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-keyboard-o:before { content: fa-content($fa-var-keyboard); }
475
+
476
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-flag-o {
477
+ font-family: 'Font Awesome 5 Free';
478
+ font-weight: 400;
479
+ }
480
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-flag-o:before { content: fa-content($fa-var-flag); }
481
+
482
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-mail-reply-all:before { content: fa-content($fa-var-reply-all); }
483
+
484
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-o {
485
+ font-family: 'Font Awesome 5 Free';
486
+ font-weight: 400;
487
+ }
488
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-o:before { content: fa-content($fa-var-star-half); }
489
+
490
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-empty {
491
+ font-family: 'Font Awesome 5 Free';
492
+ font-weight: 400;
493
+ }
494
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-empty:before { content: fa-content($fa-var-star-half); }
495
+
496
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-full {
497
+ font-family: 'Font Awesome 5 Free';
498
+ font-weight: 400;
499
+ }
500
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-full:before { content: fa-content($fa-var-star-half); }
501
+
502
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-code-fork:before { content: fa-content($fa-var-code-branch); }
503
+
504
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-chain-broken:before { content: fa-content($fa-var-unlink); }
505
+
506
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-shield:before { content: fa-content($fa-var-shield-alt); }
507
+
508
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-o {
509
+ font-family: 'Font Awesome 5 Free';
510
+ font-weight: 400;
511
+ }
512
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-o:before { content: fa-content($fa-var-calendar); }
513
+
514
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-maxcdn {
515
+ font-family: 'Font Awesome 5 Brands';
516
+ font-weight: 400;
517
+ }
518
+
519
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-html5 {
520
+ font-family: 'Font Awesome 5 Brands';
521
+ font-weight: 400;
522
+ }
523
+
524
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-css3 {
525
+ font-family: 'Font Awesome 5 Brands';
526
+ font-weight: 400;
527
+ }
528
+
529
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-ticket:before { content: fa-content($fa-var-ticket-alt); }
530
+
531
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-minus-square-o {
532
+ font-family: 'Font Awesome 5 Free';
533
+ font-weight: 400;
534
+ }
535
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-minus-square-o:before { content: fa-content($fa-var-minus-square); }
536
+
537
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-level-up:before { content: fa-content($fa-var-level-up-alt); }
538
+
539
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-level-down:before { content: fa-content($fa-var-level-down-alt); }
540
+
541
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square:before { content: fa-content($fa-var-pen-square); }
542
+
543
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-external-link-square:before { content: fa-content($fa-var-external-link-square-alt); }
544
+
545
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-compass {
546
+ font-family: 'Font Awesome 5 Free';
547
+ font-weight: 400;
548
+ }
549
+
550
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-down {
551
+ font-family: 'Font Awesome 5 Free';
552
+ font-weight: 400;
553
+ }
554
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-down:before { content: fa-content($fa-var-caret-square-down); }
555
+
556
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-down {
557
+ font-family: 'Font Awesome 5 Free';
558
+ font-weight: 400;
559
+ }
560
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-down:before { content: fa-content($fa-var-caret-square-down); }
561
+
562
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-up {
563
+ font-family: 'Font Awesome 5 Free';
564
+ font-weight: 400;
565
+ }
566
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-up:before { content: fa-content($fa-var-caret-square-up); }
567
+
568
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-up {
569
+ font-family: 'Font Awesome 5 Free';
570
+ font-weight: 400;
571
+ }
572
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-up:before { content: fa-content($fa-var-caret-square-up); }
573
+
574
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-right {
575
+ font-family: 'Font Awesome 5 Free';
576
+ font-weight: 400;
577
+ }
578
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-right:before { content: fa-content($fa-var-caret-square-right); }
579
+
580
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-right {
581
+ font-family: 'Font Awesome 5 Free';
582
+ font-weight: 400;
583
+ }
584
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-right:before { content: fa-content($fa-var-caret-square-right); }
585
+
586
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-eur:before { content: fa-content($fa-var-euro-sign); }
587
+
588
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-euro:before { content: fa-content($fa-var-euro-sign); }
589
+
590
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-gbp:before { content: fa-content($fa-var-pound-sign); }
591
+
592
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-usd:before { content: fa-content($fa-var-dollar-sign); }
593
+
594
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-dollar:before { content: fa-content($fa-var-dollar-sign); }
595
+
596
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-inr:before { content: fa-content($fa-var-rupee-sign); }
597
+
598
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-rupee:before { content: fa-content($fa-var-rupee-sign); }
599
+
600
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-jpy:before { content: fa-content($fa-var-yen-sign); }
601
+
602
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cny:before { content: fa-content($fa-var-yen-sign); }
603
+
604
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-rmb:before { content: fa-content($fa-var-yen-sign); }
605
+
606
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-yen:before { content: fa-content($fa-var-yen-sign); }
607
+
608
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-rub:before { content: fa-content($fa-var-ruble-sign); }
609
+
610
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-ruble:before { content: fa-content($fa-var-ruble-sign); }
611
+
612
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-rouble:before { content: fa-content($fa-var-ruble-sign); }
613
+
614
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-krw:before { content: fa-content($fa-var-won-sign); }
615
+
616
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-won:before { content: fa-content($fa-var-won-sign); }
617
+
618
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-btc {
619
+ font-family: 'Font Awesome 5 Brands';
620
+ font-weight: 400;
621
+ }
622
+
623
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bitcoin {
624
+ font-family: 'Font Awesome 5 Brands';
625
+ font-weight: 400;
626
+ }
627
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bitcoin:before { content: fa-content($fa-var-btc); }
628
+
629
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-text:before { content: fa-content($fa-var-file-alt); }
630
+
631
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-alpha-asc:before { content: fa-content($fa-var-sort-alpha-down); }
632
+
633
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-alpha-desc:before { content: fa-content($fa-var-sort-alpha-down-alt); }
634
+
635
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-amount-asc:before { content: fa-content($fa-var-sort-amount-down); }
636
+
637
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-amount-desc:before { content: fa-content($fa-var-sort-amount-down-alt); }
638
+
639
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-numeric-asc:before { content: fa-content($fa-var-sort-numeric-down); }
640
+
641
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-numeric-desc:before { content: fa-content($fa-var-sort-numeric-down-alt); }
642
+
643
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-square {
644
+ font-family: 'Font Awesome 5 Brands';
645
+ font-weight: 400;
646
+ }
647
+
648
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-youtube {
649
+ font-family: 'Font Awesome 5 Brands';
650
+ font-weight: 400;
651
+ }
652
+
653
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-xing {
654
+ font-family: 'Font Awesome 5 Brands';
655
+ font-weight: 400;
656
+ }
657
+
658
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-xing-square {
659
+ font-family: 'Font Awesome 5 Brands';
660
+ font-weight: 400;
661
+ }
662
+
663
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-play {
664
+ font-family: 'Font Awesome 5 Brands';
665
+ font-weight: 400;
666
+ }
667
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-play:before { content: fa-content($fa-var-youtube); }
668
+
669
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-dropbox {
670
+ font-family: 'Font Awesome 5 Brands';
671
+ font-weight: 400;
672
+ }
673
+
674
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-stack-overflow {
675
+ font-family: 'Font Awesome 5 Brands';
676
+ font-weight: 400;
677
+ }
678
+
679
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-instagram {
680
+ font-family: 'Font Awesome 5 Brands';
681
+ font-weight: 400;
682
+ }
683
+
684
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-flickr {
685
+ font-family: 'Font Awesome 5 Brands';
686
+ font-weight: 400;
687
+ }
688
+
689
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-adn {
690
+ font-family: 'Font Awesome 5 Brands';
691
+ font-weight: 400;
692
+ }
693
+
694
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket {
695
+ font-family: 'Font Awesome 5 Brands';
696
+ font-weight: 400;
697
+ }
698
+
699
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket-square {
700
+ font-family: 'Font Awesome 5 Brands';
701
+ font-weight: 400;
702
+ }
703
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket-square:before { content: fa-content($fa-var-bitbucket); }
704
+
705
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-tumblr {
706
+ font-family: 'Font Awesome 5 Brands';
707
+ font-weight: 400;
708
+ }
709
+
710
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-tumblr-square {
711
+ font-family: 'Font Awesome 5 Brands';
712
+ font-weight: 400;
713
+ }
714
+
715
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-down:before { content: fa-content($fa-var-long-arrow-alt-down); }
716
+
717
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-up:before { content: fa-content($fa-var-long-arrow-alt-up); }
718
+
719
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-left:before { content: fa-content($fa-var-long-arrow-alt-left); }
720
+
721
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-right:before { content: fa-content($fa-var-long-arrow-alt-right); }
722
+
723
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-apple {
724
+ font-family: 'Font Awesome 5 Brands';
725
+ font-weight: 400;
726
+ }
727
+
728
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-windows {
729
+ font-family: 'Font Awesome 5 Brands';
730
+ font-weight: 400;
731
+ }
732
+
733
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-android {
734
+ font-family: 'Font Awesome 5 Brands';
735
+ font-weight: 400;
736
+ }
737
+
738
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-linux {
739
+ font-family: 'Font Awesome 5 Brands';
740
+ font-weight: 400;
741
+ }
742
+
743
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-dribbble {
744
+ font-family: 'Font Awesome 5 Brands';
745
+ font-weight: 400;
746
+ }
747
+
748
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-skype {
749
+ font-family: 'Font Awesome 5 Brands';
750
+ font-weight: 400;
751
+ }
752
+
753
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-foursquare {
754
+ font-family: 'Font Awesome 5 Brands';
755
+ font-weight: 400;
756
+ }
757
+
758
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-trello {
759
+ font-family: 'Font Awesome 5 Brands';
760
+ font-weight: 400;
761
+ }
762
+
763
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-gratipay {
764
+ font-family: 'Font Awesome 5 Brands';
765
+ font-weight: 400;
766
+ }
767
+
768
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-gittip {
769
+ font-family: 'Font Awesome 5 Brands';
770
+ font-weight: 400;
771
+ }
772
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-gittip:before { content: fa-content($fa-var-gratipay); }
773
+
774
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sun-o {
775
+ font-family: 'Font Awesome 5 Free';
776
+ font-weight: 400;
777
+ }
778
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sun-o:before { content: fa-content($fa-var-sun); }
779
+
780
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-moon-o {
781
+ font-family: 'Font Awesome 5 Free';
782
+ font-weight: 400;
783
+ }
784
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-moon-o:before { content: fa-content($fa-var-moon); }
785
+
786
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-vk {
787
+ font-family: 'Font Awesome 5 Brands';
788
+ font-weight: 400;
789
+ }
790
+
791
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-weibo {
792
+ font-family: 'Font Awesome 5 Brands';
793
+ font-weight: 400;
794
+ }
795
+
796
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-renren {
797
+ font-family: 'Font Awesome 5 Brands';
798
+ font-weight: 400;
799
+ }
800
+
801
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-pagelines {
802
+ font-family: 'Font Awesome 5 Brands';
803
+ font-weight: 400;
804
+ }
805
+
806
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-stack-exchange {
807
+ font-family: 'Font Awesome 5 Brands';
808
+ font-weight: 400;
809
+ }
810
+
811
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-right {
812
+ font-family: 'Font Awesome 5 Free';
813
+ font-weight: 400;
814
+ }
815
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-right:before { content: fa-content($fa-var-arrow-alt-circle-right); }
816
+
817
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-left {
818
+ font-family: 'Font Awesome 5 Free';
819
+ font-weight: 400;
820
+ }
821
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-left:before { content: fa-content($fa-var-arrow-alt-circle-left); }
822
+
823
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-left {
824
+ font-family: 'Font Awesome 5 Free';
825
+ font-weight: 400;
826
+ }
827
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-left:before { content: fa-content($fa-var-caret-square-left); }
828
+
829
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-left {
830
+ font-family: 'Font Awesome 5 Free';
831
+ font-weight: 400;
832
+ }
833
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-left:before { content: fa-content($fa-var-caret-square-left); }
834
+
835
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-dot-circle-o {
836
+ font-family: 'Font Awesome 5 Free';
837
+ font-weight: 400;
838
+ }
839
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-dot-circle-o:before { content: fa-content($fa-var-dot-circle); }
840
+
841
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo-square {
842
+ font-family: 'Font Awesome 5 Brands';
843
+ font-weight: 400;
844
+ }
845
+
846
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-try:before { content: fa-content($fa-var-lira-sign); }
847
+
848
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-turkish-lira:before { content: fa-content($fa-var-lira-sign); }
849
+
850
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-plus-square-o {
851
+ font-family: 'Font Awesome 5 Free';
852
+ font-weight: 400;
853
+ }
854
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-plus-square-o:before { content: fa-content($fa-var-plus-square); }
855
+
856
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-slack {
857
+ font-family: 'Font Awesome 5 Brands';
858
+ font-weight: 400;
859
+ }
860
+
861
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-wordpress {
862
+ font-family: 'Font Awesome 5 Brands';
863
+ font-weight: 400;
864
+ }
865
+
866
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-openid {
867
+ font-family: 'Font Awesome 5 Brands';
868
+ font-weight: 400;
869
+ }
870
+
871
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-institution:before { content: fa-content($fa-var-university); }
872
+
873
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bank:before { content: fa-content($fa-var-university); }
874
+
875
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-mortar-board:before { content: fa-content($fa-var-graduation-cap); }
876
+
877
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-yahoo {
878
+ font-family: 'Font Awesome 5 Brands';
879
+ font-weight: 400;
880
+ }
881
+
882
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-google {
883
+ font-family: 'Font Awesome 5 Brands';
884
+ font-weight: 400;
885
+ }
886
+
887
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-reddit {
888
+ font-family: 'Font Awesome 5 Brands';
889
+ font-weight: 400;
890
+ }
891
+
892
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-reddit-square {
893
+ font-family: 'Font Awesome 5 Brands';
894
+ font-weight: 400;
895
+ }
896
+
897
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-stumbleupon-circle {
898
+ font-family: 'Font Awesome 5 Brands';
899
+ font-weight: 400;
900
+ }
901
+
902
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-stumbleupon {
903
+ font-family: 'Font Awesome 5 Brands';
904
+ font-weight: 400;
905
+ }
906
+
907
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-delicious {
908
+ font-family: 'Font Awesome 5 Brands';
909
+ font-weight: 400;
910
+ }
911
+
912
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-digg {
913
+ font-family: 'Font Awesome 5 Brands';
914
+ font-weight: 400;
915
+ }
916
+
917
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-pied-piper-pp {
918
+ font-family: 'Font Awesome 5 Brands';
919
+ font-weight: 400;
920
+ }
921
+
922
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-pied-piper-alt {
923
+ font-family: 'Font Awesome 5 Brands';
924
+ font-weight: 400;
925
+ }
926
+
927
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-drupal {
928
+ font-family: 'Font Awesome 5 Brands';
929
+ font-weight: 400;
930
+ }
931
+
932
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-joomla {
933
+ font-family: 'Font Awesome 5 Brands';
934
+ font-weight: 400;
935
+ }
936
+
937
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-spoon:before { content: fa-content($fa-var-utensil-spoon); }
938
+
939
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-behance {
940
+ font-family: 'Font Awesome 5 Brands';
941
+ font-weight: 400;
942
+ }
943
+
944
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-behance-square {
945
+ font-family: 'Font Awesome 5 Brands';
946
+ font-weight: 400;
947
+ }
948
+
949
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-steam {
950
+ font-family: 'Font Awesome 5 Brands';
951
+ font-weight: 400;
952
+ }
953
+
954
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-steam-square {
955
+ font-family: 'Font Awesome 5 Brands';
956
+ font-weight: 400;
957
+ }
958
+
959
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-automobile:before { content: fa-content($fa-var-car); }
960
+
961
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-o {
962
+ font-family: 'Font Awesome 5 Free';
963
+ font-weight: 400;
964
+ }
965
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-o:before { content: fa-content($fa-var-envelope); }
966
+
967
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-spotify {
968
+ font-family: 'Font Awesome 5 Brands';
969
+ font-weight: 400;
970
+ }
971
+
972
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-deviantart {
973
+ font-family: 'Font Awesome 5 Brands';
974
+ font-weight: 400;
975
+ }
976
+
977
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-soundcloud {
978
+ font-family: 'Font Awesome 5 Brands';
979
+ font-weight: 400;
980
+ }
981
+
982
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-pdf-o {
983
+ font-family: 'Font Awesome 5 Free';
984
+ font-weight: 400;
985
+ }
986
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-pdf-o:before { content: fa-content($fa-var-file-pdf); }
987
+
988
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-word-o {
989
+ font-family: 'Font Awesome 5 Free';
990
+ font-weight: 400;
991
+ }
992
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-word-o:before { content: fa-content($fa-var-file-word); }
993
+
994
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-excel-o {
995
+ font-family: 'Font Awesome 5 Free';
996
+ font-weight: 400;
997
+ }
998
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-excel-o:before { content: fa-content($fa-var-file-excel); }
999
+
1000
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-powerpoint-o {
1001
+ font-family: 'Font Awesome 5 Free';
1002
+ font-weight: 400;
1003
+ }
1004
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-powerpoint-o:before { content: fa-content($fa-var-file-powerpoint); }
1005
+
1006
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-image-o {
1007
+ font-family: 'Font Awesome 5 Free';
1008
+ font-weight: 400;
1009
+ }
1010
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-image-o:before { content: fa-content($fa-var-file-image); }
1011
+
1012
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-photo-o {
1013
+ font-family: 'Font Awesome 5 Free';
1014
+ font-weight: 400;
1015
+ }
1016
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-photo-o:before { content: fa-content($fa-var-file-image); }
1017
+
1018
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-picture-o {
1019
+ font-family: 'Font Awesome 5 Free';
1020
+ font-weight: 400;
1021
+ }
1022
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-picture-o:before { content: fa-content($fa-var-file-image); }
1023
+
1024
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-archive-o {
1025
+ font-family: 'Font Awesome 5 Free';
1026
+ font-weight: 400;
1027
+ }
1028
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-archive-o:before { content: fa-content($fa-var-file-archive); }
1029
+
1030
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-zip-o {
1031
+ font-family: 'Font Awesome 5 Free';
1032
+ font-weight: 400;
1033
+ }
1034
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-zip-o:before { content: fa-content($fa-var-file-archive); }
1035
+
1036
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-audio-o {
1037
+ font-family: 'Font Awesome 5 Free';
1038
+ font-weight: 400;
1039
+ }
1040
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-audio-o:before { content: fa-content($fa-var-file-audio); }
1041
+
1042
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-sound-o {
1043
+ font-family: 'Font Awesome 5 Free';
1044
+ font-weight: 400;
1045
+ }
1046
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-sound-o:before { content: fa-content($fa-var-file-audio); }
1047
+
1048
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-video-o {
1049
+ font-family: 'Font Awesome 5 Free';
1050
+ font-weight: 400;
1051
+ }
1052
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-video-o:before { content: fa-content($fa-var-file-video); }
1053
+
1054
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-movie-o {
1055
+ font-family: 'Font Awesome 5 Free';
1056
+ font-weight: 400;
1057
+ }
1058
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-movie-o:before { content: fa-content($fa-var-file-video); }
1059
+
1060
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-code-o {
1061
+ font-family: 'Font Awesome 5 Free';
1062
+ font-weight: 400;
1063
+ }
1064
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-code-o:before { content: fa-content($fa-var-file-code); }
1065
+
1066
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-vine {
1067
+ font-family: 'Font Awesome 5 Brands';
1068
+ font-weight: 400;
1069
+ }
1070
+
1071
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-codepen {
1072
+ font-family: 'Font Awesome 5 Brands';
1073
+ font-weight: 400;
1074
+ }
1075
+
1076
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-jsfiddle {
1077
+ font-family: 'Font Awesome 5 Brands';
1078
+ font-weight: 400;
1079
+ }
1080
+
1081
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-life-ring {
1082
+ font-family: 'Font Awesome 5 Free';
1083
+ font-weight: 400;
1084
+ }
1085
+
1086
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-life-bouy {
1087
+ font-family: 'Font Awesome 5 Free';
1088
+ font-weight: 400;
1089
+ }
1090
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-life-bouy:before { content: fa-content($fa-var-life-ring); }
1091
+
1092
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-life-buoy {
1093
+ font-family: 'Font Awesome 5 Free';
1094
+ font-weight: 400;
1095
+ }
1096
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-life-buoy:before { content: fa-content($fa-var-life-ring); }
1097
+
1098
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-life-saver {
1099
+ font-family: 'Font Awesome 5 Free';
1100
+ font-weight: 400;
1101
+ }
1102
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-life-saver:before { content: fa-content($fa-var-life-ring); }
1103
+
1104
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-support {
1105
+ font-family: 'Font Awesome 5 Free';
1106
+ font-weight: 400;
1107
+ }
1108
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-support:before { content: fa-content($fa-var-life-ring); }
1109
+
1110
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o-notch:before { content: fa-content($fa-var-circle-notch); }
1111
+
1112
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-rebel {
1113
+ font-family: 'Font Awesome 5 Brands';
1114
+ font-weight: 400;
1115
+ }
1116
+
1117
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-ra {
1118
+ font-family: 'Font Awesome 5 Brands';
1119
+ font-weight: 400;
1120
+ }
1121
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-ra:before { content: fa-content($fa-var-rebel); }
1122
+
1123
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-resistance {
1124
+ font-family: 'Font Awesome 5 Brands';
1125
+ font-weight: 400;
1126
+ }
1127
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-resistance:before { content: fa-content($fa-var-rebel); }
1128
+
1129
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-empire {
1130
+ font-family: 'Font Awesome 5 Brands';
1131
+ font-weight: 400;
1132
+ }
1133
+
1134
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-ge {
1135
+ font-family: 'Font Awesome 5 Brands';
1136
+ font-weight: 400;
1137
+ }
1138
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-ge:before { content: fa-content($fa-var-empire); }
1139
+
1140
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-git-square {
1141
+ font-family: 'Font Awesome 5 Brands';
1142
+ font-weight: 400;
1143
+ }
1144
+
1145
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-git {
1146
+ font-family: 'Font Awesome 5 Brands';
1147
+ font-weight: 400;
1148
+ }
1149
+
1150
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hacker-news {
1151
+ font-family: 'Font Awesome 5 Brands';
1152
+ font-weight: 400;
1153
+ }
1154
+
1155
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator-square {
1156
+ font-family: 'Font Awesome 5 Brands';
1157
+ font-weight: 400;
1158
+ }
1159
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator-square:before { content: fa-content($fa-var-hacker-news); }
1160
+
1161
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-yc-square {
1162
+ font-family: 'Font Awesome 5 Brands';
1163
+ font-weight: 400;
1164
+ }
1165
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-yc-square:before { content: fa-content($fa-var-hacker-news); }
1166
+
1167
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-tencent-weibo {
1168
+ font-family: 'Font Awesome 5 Brands';
1169
+ font-weight: 400;
1170
+ }
1171
+
1172
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-qq {
1173
+ font-family: 'Font Awesome 5 Brands';
1174
+ font-weight: 400;
1175
+ }
1176
+
1177
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-weixin {
1178
+ font-family: 'Font Awesome 5 Brands';
1179
+ font-weight: 400;
1180
+ }
1181
+
1182
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-wechat {
1183
+ font-family: 'Font Awesome 5 Brands';
1184
+ font-weight: 400;
1185
+ }
1186
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-wechat:before { content: fa-content($fa-var-weixin); }
1187
+
1188
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-send:before { content: fa-content($fa-var-paper-plane); }
1189
+
1190
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-paper-plane-o {
1191
+ font-family: 'Font Awesome 5 Free';
1192
+ font-weight: 400;
1193
+ }
1194
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-paper-plane-o:before { content: fa-content($fa-var-paper-plane); }
1195
+
1196
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-send-o {
1197
+ font-family: 'Font Awesome 5 Free';
1198
+ font-weight: 400;
1199
+ }
1200
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-send-o:before { content: fa-content($fa-var-paper-plane); }
1201
+
1202
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-circle-thin {
1203
+ font-family: 'Font Awesome 5 Free';
1204
+ font-weight: 400;
1205
+ }
1206
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-circle-thin:before { content: fa-content($fa-var-circle); }
1207
+
1208
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-header:before { content: fa-content($fa-var-heading); }
1209
+
1210
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sliders:before { content: fa-content($fa-var-sliders-h); }
1211
+
1212
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-futbol-o {
1213
+ font-family: 'Font Awesome 5 Free';
1214
+ font-weight: 400;
1215
+ }
1216
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-futbol-o:before { content: fa-content($fa-var-futbol); }
1217
+
1218
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-soccer-ball-o {
1219
+ font-family: 'Font Awesome 5 Free';
1220
+ font-weight: 400;
1221
+ }
1222
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-soccer-ball-o:before { content: fa-content($fa-var-futbol); }
1223
+
1224
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-slideshare {
1225
+ font-family: 'Font Awesome 5 Brands';
1226
+ font-weight: 400;
1227
+ }
1228
+
1229
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-twitch {
1230
+ font-family: 'Font Awesome 5 Brands';
1231
+ font-weight: 400;
1232
+ }
1233
+
1234
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-yelp {
1235
+ font-family: 'Font Awesome 5 Brands';
1236
+ font-weight: 400;
1237
+ }
1238
+
1239
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-newspaper-o {
1240
+ font-family: 'Font Awesome 5 Free';
1241
+ font-weight: 400;
1242
+ }
1243
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-newspaper-o:before { content: fa-content($fa-var-newspaper); }
1244
+
1245
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-paypal {
1246
+ font-family: 'Font Awesome 5 Brands';
1247
+ font-weight: 400;
1248
+ }
1249
+
1250
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-google-wallet {
1251
+ font-family: 'Font Awesome 5 Brands';
1252
+ font-weight: 400;
1253
+ }
1254
+
1255
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-visa {
1256
+ font-family: 'Font Awesome 5 Brands';
1257
+ font-weight: 400;
1258
+ }
1259
+
1260
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-mastercard {
1261
+ font-family: 'Font Awesome 5 Brands';
1262
+ font-weight: 400;
1263
+ }
1264
+
1265
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-discover {
1266
+ font-family: 'Font Awesome 5 Brands';
1267
+ font-weight: 400;
1268
+ }
1269
+
1270
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-amex {
1271
+ font-family: 'Font Awesome 5 Brands';
1272
+ font-weight: 400;
1273
+ }
1274
+
1275
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-paypal {
1276
+ font-family: 'Font Awesome 5 Brands';
1277
+ font-weight: 400;
1278
+ }
1279
+
1280
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-stripe {
1281
+ font-family: 'Font Awesome 5 Brands';
1282
+ font-weight: 400;
1283
+ }
1284
+
1285
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bell-slash-o {
1286
+ font-family: 'Font Awesome 5 Free';
1287
+ font-weight: 400;
1288
+ }
1289
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bell-slash-o:before { content: fa-content($fa-var-bell-slash); }
1290
+
1291
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-trash:before { content: fa-content($fa-var-trash-alt); }
1292
+
1293
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-copyright {
1294
+ font-family: 'Font Awesome 5 Free';
1295
+ font-weight: 400;
1296
+ }
1297
+
1298
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-eyedropper:before { content: fa-content($fa-var-eye-dropper); }
1299
+
1300
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-area-chart:before { content: fa-content($fa-var-chart-area); }
1301
+
1302
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-pie-chart:before { content: fa-content($fa-var-chart-pie); }
1303
+
1304
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-line-chart:before { content: fa-content($fa-var-chart-line); }
1305
+
1306
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-lastfm {
1307
+ font-family: 'Font Awesome 5 Brands';
1308
+ font-weight: 400;
1309
+ }
1310
+
1311
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-lastfm-square {
1312
+ font-family: 'Font Awesome 5 Brands';
1313
+ font-weight: 400;
1314
+ }
1315
+
1316
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-ioxhost {
1317
+ font-family: 'Font Awesome 5 Brands';
1318
+ font-weight: 400;
1319
+ }
1320
+
1321
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-angellist {
1322
+ font-family: 'Font Awesome 5 Brands';
1323
+ font-weight: 400;
1324
+ }
1325
+
1326
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cc {
1327
+ font-family: 'Font Awesome 5 Free';
1328
+ font-weight: 400;
1329
+ }
1330
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cc:before { content: fa-content($fa-var-closed-captioning); }
1331
+
1332
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-ils:before { content: fa-content($fa-var-shekel-sign); }
1333
+
1334
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-shekel:before { content: fa-content($fa-var-shekel-sign); }
1335
+
1336
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sheqel:before { content: fa-content($fa-var-shekel-sign); }
1337
+
1338
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-meanpath {
1339
+ font-family: 'Font Awesome 5 Brands';
1340
+ font-weight: 400;
1341
+ }
1342
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-meanpath:before { content: fa-content($fa-var-font-awesome); }
1343
+
1344
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-buysellads {
1345
+ font-family: 'Font Awesome 5 Brands';
1346
+ font-weight: 400;
1347
+ }
1348
+
1349
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-connectdevelop {
1350
+ font-family: 'Font Awesome 5 Brands';
1351
+ font-weight: 400;
1352
+ }
1353
+
1354
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-dashcube {
1355
+ font-family: 'Font Awesome 5 Brands';
1356
+ font-weight: 400;
1357
+ }
1358
+
1359
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-forumbee {
1360
+ font-family: 'Font Awesome 5 Brands';
1361
+ font-weight: 400;
1362
+ }
1363
+
1364
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-leanpub {
1365
+ font-family: 'Font Awesome 5 Brands';
1366
+ font-weight: 400;
1367
+ }
1368
+
1369
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sellsy {
1370
+ font-family: 'Font Awesome 5 Brands';
1371
+ font-weight: 400;
1372
+ }
1373
+
1374
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-shirtsinbulk {
1375
+ font-family: 'Font Awesome 5 Brands';
1376
+ font-weight: 400;
1377
+ }
1378
+
1379
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-simplybuilt {
1380
+ font-family: 'Font Awesome 5 Brands';
1381
+ font-weight: 400;
1382
+ }
1383
+
1384
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-skyatlas {
1385
+ font-family: 'Font Awesome 5 Brands';
1386
+ font-weight: 400;
1387
+ }
1388
+
1389
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-diamond {
1390
+ font-family: 'Font Awesome 5 Free';
1391
+ font-weight: 400;
1392
+ }
1393
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-diamond:before { content: fa-content($fa-var-gem); }
1394
+
1395
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-intersex:before { content: fa-content($fa-var-transgender); }
1396
+
1397
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-official {
1398
+ font-family: 'Font Awesome 5 Brands';
1399
+ font-weight: 400;
1400
+ }
1401
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-official:before { content: fa-content($fa-var-facebook); }
1402
+
1403
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest-p {
1404
+ font-family: 'Font Awesome 5 Brands';
1405
+ font-weight: 400;
1406
+ }
1407
+
1408
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-whatsapp {
1409
+ font-family: 'Font Awesome 5 Brands';
1410
+ font-weight: 400;
1411
+ }
1412
+
1413
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hotel:before { content: fa-content($fa-var-bed); }
1414
+
1415
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-viacoin {
1416
+ font-family: 'Font Awesome 5 Brands';
1417
+ font-weight: 400;
1418
+ }
1419
+
1420
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-medium {
1421
+ font-family: 'Font Awesome 5 Brands';
1422
+ font-weight: 400;
1423
+ }
1424
+
1425
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator {
1426
+ font-family: 'Font Awesome 5 Brands';
1427
+ font-weight: 400;
1428
+ }
1429
+
1430
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-yc {
1431
+ font-family: 'Font Awesome 5 Brands';
1432
+ font-weight: 400;
1433
+ }
1434
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-yc:before { content: fa-content($fa-var-y-combinator); }
1435
+
1436
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-optin-monster {
1437
+ font-family: 'Font Awesome 5 Brands';
1438
+ font-weight: 400;
1439
+ }
1440
+
1441
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-opencart {
1442
+ font-family: 'Font Awesome 5 Brands';
1443
+ font-weight: 400;
1444
+ }
1445
+
1446
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-expeditedssl {
1447
+ font-family: 'Font Awesome 5 Brands';
1448
+ font-weight: 400;
1449
+ }
1450
+
1451
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-battery-4:before { content: fa-content($fa-var-battery-full); }
1452
+
1453
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-battery:before { content: fa-content($fa-var-battery-full); }
1454
+
1455
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-battery-3:before { content: fa-content($fa-var-battery-three-quarters); }
1456
+
1457
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-battery-2:before { content: fa-content($fa-var-battery-half); }
1458
+
1459
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-battery-1:before { content: fa-content($fa-var-battery-quarter); }
1460
+
1461
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-battery-0:before { content: fa-content($fa-var-battery-empty); }
1462
+
1463
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-object-group {
1464
+ font-family: 'Font Awesome 5 Free';
1465
+ font-weight: 400;
1466
+ }
1467
+
1468
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-object-ungroup {
1469
+ font-family: 'Font Awesome 5 Free';
1470
+ font-weight: 400;
1471
+ }
1472
+
1473
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sticky-note-o {
1474
+ font-family: 'Font Awesome 5 Free';
1475
+ font-weight: 400;
1476
+ }
1477
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sticky-note-o:before { content: fa-content($fa-var-sticky-note); }
1478
+
1479
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-jcb {
1480
+ font-family: 'Font Awesome 5 Brands';
1481
+ font-weight: 400;
1482
+ }
1483
+
1484
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-diners-club {
1485
+ font-family: 'Font Awesome 5 Brands';
1486
+ font-weight: 400;
1487
+ }
1488
+
1489
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-clone {
1490
+ font-family: 'Font Awesome 5 Free';
1491
+ font-weight: 400;
1492
+ }
1493
+
1494
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-o {
1495
+ font-family: 'Font Awesome 5 Free';
1496
+ font-weight: 400;
1497
+ }
1498
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-o:before { content: fa-content($fa-var-hourglass); }
1499
+
1500
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-1:before { content: fa-content($fa-var-hourglass-start); }
1501
+
1502
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-2:before { content: fa-content($fa-var-hourglass-half); }
1503
+
1504
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-3:before { content: fa-content($fa-var-hourglass-end); }
1505
+
1506
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-rock-o {
1507
+ font-family: 'Font Awesome 5 Free';
1508
+ font-weight: 400;
1509
+ }
1510
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-rock-o:before { content: fa-content($fa-var-hand-rock); }
1511
+
1512
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-grab-o {
1513
+ font-family: 'Font Awesome 5 Free';
1514
+ font-weight: 400;
1515
+ }
1516
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-grab-o:before { content: fa-content($fa-var-hand-rock); }
1517
+
1518
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-paper-o {
1519
+ font-family: 'Font Awesome 5 Free';
1520
+ font-weight: 400;
1521
+ }
1522
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-paper-o:before { content: fa-content($fa-var-hand-paper); }
1523
+
1524
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-stop-o {
1525
+ font-family: 'Font Awesome 5 Free';
1526
+ font-weight: 400;
1527
+ }
1528
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-stop-o:before { content: fa-content($fa-var-hand-paper); }
1529
+
1530
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-scissors-o {
1531
+ font-family: 'Font Awesome 5 Free';
1532
+ font-weight: 400;
1533
+ }
1534
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-scissors-o:before { content: fa-content($fa-var-hand-scissors); }
1535
+
1536
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-lizard-o {
1537
+ font-family: 'Font Awesome 5 Free';
1538
+ font-weight: 400;
1539
+ }
1540
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-lizard-o:before { content: fa-content($fa-var-hand-lizard); }
1541
+
1542
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-spock-o {
1543
+ font-family: 'Font Awesome 5 Free';
1544
+ font-weight: 400;
1545
+ }
1546
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-spock-o:before { content: fa-content($fa-var-hand-spock); }
1547
+
1548
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-pointer-o {
1549
+ font-family: 'Font Awesome 5 Free';
1550
+ font-weight: 400;
1551
+ }
1552
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-pointer-o:before { content: fa-content($fa-var-hand-pointer); }
1553
+
1554
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-peace-o {
1555
+ font-family: 'Font Awesome 5 Free';
1556
+ font-weight: 400;
1557
+ }
1558
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-peace-o:before { content: fa-content($fa-var-hand-peace); }
1559
+
1560
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-registered {
1561
+ font-family: 'Font Awesome 5 Free';
1562
+ font-weight: 400;
1563
+ }
1564
+
1565
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-creative-commons {
1566
+ font-family: 'Font Awesome 5 Brands';
1567
+ font-weight: 400;
1568
+ }
1569
+
1570
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-gg {
1571
+ font-family: 'Font Awesome 5 Brands';
1572
+ font-weight: 400;
1573
+ }
1574
+
1575
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-gg-circle {
1576
+ font-family: 'Font Awesome 5 Brands';
1577
+ font-weight: 400;
1578
+ }
1579
+
1580
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-tripadvisor {
1581
+ font-family: 'Font Awesome 5 Brands';
1582
+ font-weight: 400;
1583
+ }
1584
+
1585
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-odnoklassniki {
1586
+ font-family: 'Font Awesome 5 Brands';
1587
+ font-weight: 400;
1588
+ }
1589
+
1590
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-odnoklassniki-square {
1591
+ font-family: 'Font Awesome 5 Brands';
1592
+ font-weight: 400;
1593
+ }
1594
+
1595
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-get-pocket {
1596
+ font-family: 'Font Awesome 5 Brands';
1597
+ font-weight: 400;
1598
+ }
1599
+
1600
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-wikipedia-w {
1601
+ font-family: 'Font Awesome 5 Brands';
1602
+ font-weight: 400;
1603
+ }
1604
+
1605
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-safari {
1606
+ font-family: 'Font Awesome 5 Brands';
1607
+ font-weight: 400;
1608
+ }
1609
+
1610
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-chrome {
1611
+ font-family: 'Font Awesome 5 Brands';
1612
+ font-weight: 400;
1613
+ }
1614
+
1615
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-firefox {
1616
+ font-family: 'Font Awesome 5 Brands';
1617
+ font-weight: 400;
1618
+ }
1619
+
1620
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-opera {
1621
+ font-family: 'Font Awesome 5 Brands';
1622
+ font-weight: 400;
1623
+ }
1624
+
1625
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-internet-explorer {
1626
+ font-family: 'Font Awesome 5 Brands';
1627
+ font-weight: 400;
1628
+ }
1629
+
1630
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-television:before { content: fa-content($fa-var-tv); }
1631
+
1632
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-contao {
1633
+ font-family: 'Font Awesome 5 Brands';
1634
+ font-weight: 400;
1635
+ }
1636
+
1637
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-500px {
1638
+ font-family: 'Font Awesome 5 Brands';
1639
+ font-weight: 400;
1640
+ }
1641
+
1642
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-amazon {
1643
+ font-family: 'Font Awesome 5 Brands';
1644
+ font-weight: 400;
1645
+ }
1646
+
1647
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-plus-o {
1648
+ font-family: 'Font Awesome 5 Free';
1649
+ font-weight: 400;
1650
+ }
1651
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-plus-o:before { content: fa-content($fa-var-calendar-plus); }
1652
+
1653
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-minus-o {
1654
+ font-family: 'Font Awesome 5 Free';
1655
+ font-weight: 400;
1656
+ }
1657
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-minus-o:before { content: fa-content($fa-var-calendar-minus); }
1658
+
1659
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-times-o {
1660
+ font-family: 'Font Awesome 5 Free';
1661
+ font-weight: 400;
1662
+ }
1663
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-times-o:before { content: fa-content($fa-var-calendar-times); }
1664
+
1665
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-check-o {
1666
+ font-family: 'Font Awesome 5 Free';
1667
+ font-weight: 400;
1668
+ }
1669
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-check-o:before { content: fa-content($fa-var-calendar-check); }
1670
+
1671
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-map-o {
1672
+ font-family: 'Font Awesome 5 Free';
1673
+ font-weight: 400;
1674
+ }
1675
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-map-o:before { content: fa-content($fa-var-map); }
1676
+
1677
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-commenting:before { content: fa-content($fa-var-comment-dots); }
1678
+
1679
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-commenting-o {
1680
+ font-family: 'Font Awesome 5 Free';
1681
+ font-weight: 400;
1682
+ }
1683
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-commenting-o:before { content: fa-content($fa-var-comment-dots); }
1684
+
1685
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-houzz {
1686
+ font-family: 'Font Awesome 5 Brands';
1687
+ font-weight: 400;
1688
+ }
1689
+
1690
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo {
1691
+ font-family: 'Font Awesome 5 Brands';
1692
+ font-weight: 400;
1693
+ }
1694
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo:before { content: fa-content($fa-var-vimeo-v); }
1695
+
1696
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-black-tie {
1697
+ font-family: 'Font Awesome 5 Brands';
1698
+ font-weight: 400;
1699
+ }
1700
+
1701
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-fonticons {
1702
+ font-family: 'Font Awesome 5 Brands';
1703
+ font-weight: 400;
1704
+ }
1705
+
1706
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-reddit-alien {
1707
+ font-family: 'Font Awesome 5 Brands';
1708
+ font-weight: 400;
1709
+ }
1710
+
1711
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-edge {
1712
+ font-family: 'Font Awesome 5 Brands';
1713
+ font-weight: 400;
1714
+ }
1715
+
1716
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-credit-card-alt:before { content: fa-content($fa-var-credit-card); }
1717
+
1718
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-codiepie {
1719
+ font-family: 'Font Awesome 5 Brands';
1720
+ font-weight: 400;
1721
+ }
1722
+
1723
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-modx {
1724
+ font-family: 'Font Awesome 5 Brands';
1725
+ font-weight: 400;
1726
+ }
1727
+
1728
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-fort-awesome {
1729
+ font-family: 'Font Awesome 5 Brands';
1730
+ font-weight: 400;
1731
+ }
1732
+
1733
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-usb {
1734
+ font-family: 'Font Awesome 5 Brands';
1735
+ font-weight: 400;
1736
+ }
1737
+
1738
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-product-hunt {
1739
+ font-family: 'Font Awesome 5 Brands';
1740
+ font-weight: 400;
1741
+ }
1742
+
1743
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-mixcloud {
1744
+ font-family: 'Font Awesome 5 Brands';
1745
+ font-weight: 400;
1746
+ }
1747
+
1748
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-scribd {
1749
+ font-family: 'Font Awesome 5 Brands';
1750
+ font-weight: 400;
1751
+ }
1752
+
1753
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-pause-circle-o {
1754
+ font-family: 'Font Awesome 5 Free';
1755
+ font-weight: 400;
1756
+ }
1757
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-pause-circle-o:before { content: fa-content($fa-var-pause-circle); }
1758
+
1759
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-stop-circle-o {
1760
+ font-family: 'Font Awesome 5 Free';
1761
+ font-weight: 400;
1762
+ }
1763
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-stop-circle-o:before { content: fa-content($fa-var-stop-circle); }
1764
+
1765
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bluetooth {
1766
+ font-family: 'Font Awesome 5 Brands';
1767
+ font-weight: 400;
1768
+ }
1769
+
1770
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bluetooth-b {
1771
+ font-family: 'Font Awesome 5 Brands';
1772
+ font-weight: 400;
1773
+ }
1774
+
1775
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-gitlab {
1776
+ font-family: 'Font Awesome 5 Brands';
1777
+ font-weight: 400;
1778
+ }
1779
+
1780
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-wpbeginner {
1781
+ font-family: 'Font Awesome 5 Brands';
1782
+ font-weight: 400;
1783
+ }
1784
+
1785
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-wpforms {
1786
+ font-family: 'Font Awesome 5 Brands';
1787
+ font-weight: 400;
1788
+ }
1789
+
1790
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-envira {
1791
+ font-family: 'Font Awesome 5 Brands';
1792
+ font-weight: 400;
1793
+ }
1794
+
1795
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-wheelchair-alt {
1796
+ font-family: 'Font Awesome 5 Brands';
1797
+ font-weight: 400;
1798
+ }
1799
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-wheelchair-alt:before { content: fa-content($fa-var-accessible-icon); }
1800
+
1801
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-question-circle-o {
1802
+ font-family: 'Font Awesome 5 Free';
1803
+ font-weight: 400;
1804
+ }
1805
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-question-circle-o:before { content: fa-content($fa-var-question-circle); }
1806
+
1807
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-volume-control-phone:before { content: fa-content($fa-var-phone-volume); }
1808
+
1809
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-asl-interpreting:before { content: fa-content($fa-var-american-sign-language-interpreting); }
1810
+
1811
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-deafness:before { content: fa-content($fa-var-deaf); }
1812
+
1813
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hard-of-hearing:before { content: fa-content($fa-var-deaf); }
1814
+
1815
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-glide {
1816
+ font-family: 'Font Awesome 5 Brands';
1817
+ font-weight: 400;
1818
+ }
1819
+
1820
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-glide-g {
1821
+ font-family: 'Font Awesome 5 Brands';
1822
+ font-weight: 400;
1823
+ }
1824
+
1825
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-signing:before { content: fa-content($fa-var-sign-language); }
1826
+
1827
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-viadeo {
1828
+ font-family: 'Font Awesome 5 Brands';
1829
+ font-weight: 400;
1830
+ }
1831
+
1832
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-viadeo-square {
1833
+ font-family: 'Font Awesome 5 Brands';
1834
+ font-weight: 400;
1835
+ }
1836
+
1837
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat {
1838
+ font-family: 'Font Awesome 5 Brands';
1839
+ font-weight: 400;
1840
+ }
1841
+
1842
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat-ghost {
1843
+ font-family: 'Font Awesome 5 Brands';
1844
+ font-weight: 400;
1845
+ }
1846
+
1847
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat-square {
1848
+ font-family: 'Font Awesome 5 Brands';
1849
+ font-weight: 400;
1850
+ }
1851
+
1852
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-pied-piper {
1853
+ font-family: 'Font Awesome 5 Brands';
1854
+ font-weight: 400;
1855
+ }
1856
+
1857
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-first-order {
1858
+ font-family: 'Font Awesome 5 Brands';
1859
+ font-weight: 400;
1860
+ }
1861
+
1862
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-yoast {
1863
+ font-family: 'Font Awesome 5 Brands';
1864
+ font-weight: 400;
1865
+ }
1866
+
1867
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-themeisle {
1868
+ font-family: 'Font Awesome 5 Brands';
1869
+ font-weight: 400;
1870
+ }
1871
+
1872
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-official {
1873
+ font-family: 'Font Awesome 5 Brands';
1874
+ font-weight: 400;
1875
+ }
1876
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-official:before { content: fa-content($fa-var-google-plus); }
1877
+
1878
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-circle {
1879
+ font-family: 'Font Awesome 5 Brands';
1880
+ font-weight: 400;
1881
+ }
1882
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-circle:before { content: fa-content($fa-var-google-plus); }
1883
+
1884
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-font-awesome {
1885
+ font-family: 'Font Awesome 5 Brands';
1886
+ font-weight: 400;
1887
+ }
1888
+
1889
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-fa {
1890
+ font-family: 'Font Awesome 5 Brands';
1891
+ font-weight: 400;
1892
+ }
1893
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-fa:before { content: fa-content($fa-var-font-awesome); }
1894
+
1895
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-handshake-o {
1896
+ font-family: 'Font Awesome 5 Free';
1897
+ font-weight: 400;
1898
+ }
1899
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-handshake-o:before { content: fa-content($fa-var-handshake); }
1900
+
1901
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-open-o {
1902
+ font-family: 'Font Awesome 5 Free';
1903
+ font-weight: 400;
1904
+ }
1905
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-open-o:before { content: fa-content($fa-var-envelope-open); }
1906
+
1907
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-linode {
1908
+ font-family: 'Font Awesome 5 Brands';
1909
+ font-weight: 400;
1910
+ }
1911
+
1912
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-address-book-o {
1913
+ font-family: 'Font Awesome 5 Free';
1914
+ font-weight: 400;
1915
+ }
1916
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-address-book-o:before { content: fa-content($fa-var-address-book); }
1917
+
1918
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-vcard:before { content: fa-content($fa-var-address-card); }
1919
+
1920
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-address-card-o {
1921
+ font-family: 'Font Awesome 5 Free';
1922
+ font-weight: 400;
1923
+ }
1924
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-address-card-o:before { content: fa-content($fa-var-address-card); }
1925
+
1926
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-vcard-o {
1927
+ font-family: 'Font Awesome 5 Free';
1928
+ font-weight: 400;
1929
+ }
1930
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-vcard-o:before { content: fa-content($fa-var-address-card); }
1931
+
1932
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-user-circle-o {
1933
+ font-family: 'Font Awesome 5 Free';
1934
+ font-weight: 400;
1935
+ }
1936
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-user-circle-o:before { content: fa-content($fa-var-user-circle); }
1937
+
1938
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-user-o {
1939
+ font-family: 'Font Awesome 5 Free';
1940
+ font-weight: 400;
1941
+ }
1942
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-user-o:before { content: fa-content($fa-var-user); }
1943
+
1944
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-id-badge {
1945
+ font-family: 'Font Awesome 5 Free';
1946
+ font-weight: 400;
1947
+ }
1948
+
1949
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license:before { content: fa-content($fa-var-id-card); }
1950
+
1951
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-id-card-o {
1952
+ font-family: 'Font Awesome 5 Free';
1953
+ font-weight: 400;
1954
+ }
1955
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-id-card-o:before { content: fa-content($fa-var-id-card); }
1956
+
1957
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license-o {
1958
+ font-family: 'Font Awesome 5 Free';
1959
+ font-weight: 400;
1960
+ }
1961
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license-o:before { content: fa-content($fa-var-id-card); }
1962
+
1963
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-quora {
1964
+ font-family: 'Font Awesome 5 Brands';
1965
+ font-weight: 400;
1966
+ }
1967
+
1968
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-free-code-camp {
1969
+ font-family: 'Font Awesome 5 Brands';
1970
+ font-weight: 400;
1971
+ }
1972
+
1973
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-telegram {
1974
+ font-family: 'Font Awesome 5 Brands';
1975
+ font-weight: 400;
1976
+ }
1977
+
1978
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-4:before { content: fa-content($fa-var-thermometer-full); }
1979
+
1980
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer:before { content: fa-content($fa-var-thermometer-full); }
1981
+
1982
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-3:before { content: fa-content($fa-var-thermometer-three-quarters); }
1983
+
1984
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-2:before { content: fa-content($fa-var-thermometer-half); }
1985
+
1986
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-1:before { content: fa-content($fa-var-thermometer-quarter); }
1987
+
1988
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-0:before { content: fa-content($fa-var-thermometer-empty); }
1989
+
1990
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bathtub:before { content: fa-content($fa-var-bath); }
1991
+
1992
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-s15:before { content: fa-content($fa-var-bath); }
1993
+
1994
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-window-maximize {
1995
+ font-family: 'Font Awesome 5 Free';
1996
+ font-weight: 400;
1997
+ }
1998
+
1999
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-window-restore {
2000
+ font-family: 'Font Awesome 5 Free';
2001
+ font-weight: 400;
2002
+ }
2003
+
2004
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle:before { content: fa-content($fa-var-window-close); }
2005
+
2006
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-window-close-o {
2007
+ font-family: 'Font Awesome 5 Free';
2008
+ font-weight: 400;
2009
+ }
2010
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-window-close-o:before { content: fa-content($fa-var-window-close); }
2011
+
2012
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle-o {
2013
+ font-family: 'Font Awesome 5 Free';
2014
+ font-weight: 400;
2015
+ }
2016
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle-o:before { content: fa-content($fa-var-window-close); }
2017
+
2018
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bandcamp {
2019
+ font-family: 'Font Awesome 5 Brands';
2020
+ font-weight: 400;
2021
+ }
2022
+
2023
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-grav {
2024
+ font-family: 'Font Awesome 5 Brands';
2025
+ font-weight: 400;
2026
+ }
2027
+
2028
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-etsy {
2029
+ font-family: 'Font Awesome 5 Brands';
2030
+ font-weight: 400;
2031
+ }
2032
+
2033
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-imdb {
2034
+ font-family: 'Font Awesome 5 Brands';
2035
+ font-weight: 400;
2036
+ }
2037
+
2038
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-ravelry {
2039
+ font-family: 'Font Awesome 5 Brands';
2040
+ font-weight: 400;
2041
+ }
2042
+
2043
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-eercast {
2044
+ font-family: 'Font Awesome 5 Brands';
2045
+ font-weight: 400;
2046
+ }
2047
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-eercast:before { content: fa-content($fa-var-sellcast); }
2048
+
2049
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-snowflake-o {
2050
+ font-family: 'Font Awesome 5 Free';
2051
+ font-weight: 400;
2052
+ }
2053
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-snowflake-o:before { content: fa-content($fa-var-snowflake); }
2054
+
2055
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-superpowers {
2056
+ font-family: 'Font Awesome 5 Brands';
2057
+ font-weight: 400;
2058
+ }
2059
+
2060
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-wpexplorer {
2061
+ font-family: 'Font Awesome 5 Brands';
2062
+ font-weight: 400;
2063
+ }
2064
+
2065
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cab:before { content: fa-content($fa-var-taxi); }
2066
+