font-awesome-sass 5.14.0 → 6.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +22 -66
  3. data/assets/fonts/font-awesome/fa-brands-400.ttf +0 -0
  4. data/assets/fonts/font-awesome/fa-brands-400.woff2 +0 -0
  5. data/assets/fonts/font-awesome/fa-regular-400.ttf +0 -0
  6. data/assets/fonts/font-awesome/fa-regular-400.woff2 +0 -0
  7. data/assets/fonts/font-awesome/fa-solid-900.ttf +0 -0
  8. data/assets/fonts/font-awesome/fa-solid-900.woff2 +0 -0
  9. data/assets/stylesheets/_font-awesome.scss +11 -4
  10. data/assets/stylesheets/font-awesome/_animated.scss +201 -5
  11. data/assets/stylesheets/font-awesome/_bordered-pulled.scss +13 -13
  12. data/assets/stylesheets/font-awesome/_brands.scss +33 -0
  13. data/assets/stylesheets/font-awesome/_core.scss +16 -4
  14. data/assets/stylesheets/font-awesome/_fixed-width.scss +2 -1
  15. data/assets/stylesheets/font-awesome/_functions.scss +66 -0
  16. data/assets/stylesheets/font-awesome/_icons.scss +8 -1448
  17. data/assets/stylesheets/font-awesome/_list.scss +7 -5
  18. data/assets/stylesheets/font-awesome/_mixins.scss +50 -34
  19. data/assets/stylesheets/font-awesome/_regular.scss +27 -0
  20. data/assets/stylesheets/font-awesome/_rotated-flipped.scss +25 -18
  21. data/assets/stylesheets/font-awesome/_screen-reader.scss +12 -3
  22. data/assets/stylesheets/font-awesome/_shims.scss +1195 -652
  23. data/assets/stylesheets/font-awesome/_sizing.scss +16 -0
  24. data/assets/stylesheets/font-awesome/_solid.scss +26 -0
  25. data/assets/stylesheets/font-awesome/_stacked.scss +5 -4
  26. data/assets/stylesheets/font-awesome/_variables.scss +4181 -771
  27. data/font-awesome-sass.gemspec +1 -2
  28. data/lib/font-awesome-sass.rb +0 -18
  29. data/lib/font_awesome/sass/rails/engine.rb +1 -1
  30. data/lib/font_awesome/sass/rails/helpers.rb +1 -0
  31. data/lib/font_awesome/sass/version.rb +1 -1
  32. metadata +10 -33
  33. data/assets/fonts/font-awesome/fa-brands-400.eot +0 -0
  34. data/assets/fonts/font-awesome/fa-brands-400.svg +0 -3637
  35. data/assets/fonts/font-awesome/fa-brands-400.woff +0 -0
  36. data/assets/fonts/font-awesome/fa-regular-400.eot +0 -0
  37. data/assets/fonts/font-awesome/fa-regular-400.svg +0 -805
  38. data/assets/fonts/font-awesome/fa-regular-400.woff +0 -0
  39. data/assets/fonts/font-awesome/fa-solid-900.eot +0 -0
  40. data/assets/fonts/font-awesome/fa-solid-900.svg +0 -5015
  41. data/assets/fonts/font-awesome/fa-solid-900.woff +0 -0
  42. data/assets/stylesheets/_font-awesome-compass.scss +0 -5
  43. data/assets/stylesheets/_font-awesome-sprockets.scss +0 -5
  44. data/assets/stylesheets/_v4-shims.scss +0 -6
  45. data/assets/stylesheets/font-awesome/_larger.scss +0 -23
  46. data/assets/stylesheets/font-awesome/_path.scss +0 -56
@@ -1,2066 +1,2609 @@
1
- .#{$fa-css-prefix}.#{$fa-css-prefix}-glass:before { content: fa-content($fa-var-glass-martini); }
1
+ @import "functions";
2
+ @import "variables";
2
3
 
3
- .#{$fa-css-prefix}.#{$fa-css-prefix}-meetup {
4
- font-family: 'Font Awesome 5 Brands';
4
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-glass:before {
5
+ content: unquote('"#{ $fa-var-martini-glass-empty }"');
6
+ }
7
+
8
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-o {
9
+ font-family: "Font Awesome 6 Free";
5
10
  font-weight: 400;
6
11
  }
12
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-o:before {
13
+ content: unquote('"#{ $fa-var-envelope }"');
14
+ }
7
15
 
8
16
  .#{$fa-css-prefix}.#{$fa-css-prefix}-star-o {
9
- font-family: 'Font Awesome 5 Free';
17
+ font-family: "Font Awesome 6 Free";
10
18
  font-weight: 400;
11
19
  }
12
- .#{$fa-css-prefix}.#{$fa-css-prefix}-star-o:before { content: fa-content($fa-var-star); }
20
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-star-o:before {
21
+ content: unquote('"#{ $fa-var-star }"');
22
+ }
13
23
 
14
- .#{$fa-css-prefix}.#{$fa-css-prefix}-remove:before { content: fa-content($fa-var-times); }
24
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-remove:before {
25
+ content: unquote('"#{ $fa-var-xmark }"');
26
+ }
15
27
 
16
- .#{$fa-css-prefix}.#{$fa-css-prefix}-close:before { content: fa-content($fa-var-times); }
28
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-close:before {
29
+ content: unquote('"#{ $fa-var-xmark }"');
30
+ }
17
31
 
18
- .#{$fa-css-prefix}.#{$fa-css-prefix}-gear:before { content: fa-content($fa-var-cog); }
32
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-gear:before {
33
+ content: unquote('"#{ $fa-var-gear }"');
34
+ }
19
35
 
20
36
  .#{$fa-css-prefix}.#{$fa-css-prefix}-trash-o {
21
- font-family: 'Font Awesome 5 Free';
37
+ font-family: "Font Awesome 6 Free";
22
38
  font-weight: 400;
23
39
  }
24
- .#{$fa-css-prefix}.#{$fa-css-prefix}-trash-o:before { content: fa-content($fa-var-trash-alt); }
40
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-trash-o:before {
41
+ content: unquote('"#{ $fa-var-trash-can }"');
42
+ }
43
+
44
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-home:before {
45
+ content: unquote('"#{ $fa-var-house }"');
46
+ }
25
47
 
26
48
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-o {
27
- font-family: 'Font Awesome 5 Free';
49
+ font-family: "Font Awesome 6 Free";
28
50
  font-weight: 400;
29
51
  }
30
- .#{$fa-css-prefix}.#{$fa-css-prefix}-file-o:before { content: fa-content($fa-var-file); }
52
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-o:before {
53
+ content: unquote('"#{ $fa-var-file }"');
54
+ }
31
55
 
32
56
  .#{$fa-css-prefix}.#{$fa-css-prefix}-clock-o {
33
- font-family: 'Font Awesome 5 Free';
57
+ font-family: "Font Awesome 6 Free";
34
58
  font-weight: 400;
35
59
  }
36
- .#{$fa-css-prefix}.#{$fa-css-prefix}-clock-o:before { content: fa-content($fa-var-clock); }
60
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-clock-o:before {
61
+ content: unquote('"#{ $fa-var-clock }"');
62
+ }
37
63
 
38
64
  .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-down {
39
- font-family: 'Font Awesome 5 Free';
65
+ font-family: "Font Awesome 6 Free";
40
66
  font-weight: 400;
41
67
  }
42
- .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-down:before { content: fa-content($fa-var-arrow-alt-circle-down); }
68
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-down:before {
69
+ content: unquote('"#{ $fa-var-circle-down }"');
70
+ }
43
71
 
44
72
  .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-up {
45
- font-family: 'Font Awesome 5 Free';
73
+ font-family: "Font Awesome 6 Free";
46
74
  font-weight: 400;
47
75
  }
48
- .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-up:before { content: fa-content($fa-var-arrow-alt-circle-up); }
76
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-up:before {
77
+ content: unquote('"#{ $fa-var-circle-up }"');
78
+ }
49
79
 
50
80
  .#{$fa-css-prefix}.#{$fa-css-prefix}-play-circle-o {
51
- font-family: 'Font Awesome 5 Free';
81
+ font-family: "Font Awesome 6 Free";
52
82
  font-weight: 400;
53
83
  }
54
- .#{$fa-css-prefix}.#{$fa-css-prefix}-play-circle-o:before { content: fa-content($fa-var-play-circle); }
84
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-play-circle-o:before {
85
+ content: unquote('"#{ $fa-var-circle-play }"');
86
+ }
55
87
 
56
- .#{$fa-css-prefix}.#{$fa-css-prefix}-repeat:before { content: fa-content($fa-var-redo); }
88
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-repeat:before {
89
+ content: unquote('"#{ $fa-var-arrow-rotate-right }"');
90
+ }
57
91
 
58
- .#{$fa-css-prefix}.#{$fa-css-prefix}-rotate-right:before { content: fa-content($fa-var-redo); }
92
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-rotate-right:before {
93
+ content: unquote('"#{ $fa-var-arrow-rotate-right }"');
94
+ }
59
95
 
60
- .#{$fa-css-prefix}.#{$fa-css-prefix}-refresh:before { content: fa-content($fa-var-sync); }
96
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-refresh:before {
97
+ content: unquote('"#{ $fa-var-arrows-rotate }"');
98
+ }
61
99
 
62
100
  .#{$fa-css-prefix}.#{$fa-css-prefix}-list-alt {
63
- font-family: 'Font Awesome 5 Free';
101
+ font-family: "Font Awesome 6 Free";
64
102
  font-weight: 400;
65
103
  }
104
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-list-alt:before {
105
+ content: unquote('"#{ $fa-var-rectangle-list }"');
106
+ }
66
107
 
67
- .#{$fa-css-prefix}.#{$fa-css-prefix}-dedent:before { content: fa-content($fa-var-outdent); }
108
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-dedent:before {
109
+ content: unquote('"#{ $fa-var-outdent }"');
110
+ }
68
111
 
69
- .#{$fa-css-prefix}.#{$fa-css-prefix}-video-camera:before { content: fa-content($fa-var-video); }
112
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-video-camera:before {
113
+ content: unquote('"#{ $fa-var-video }"');
114
+ }
70
115
 
71
116
  .#{$fa-css-prefix}.#{$fa-css-prefix}-picture-o {
72
- font-family: 'Font Awesome 5 Free';
117
+ font-family: "Font Awesome 6 Free";
73
118
  font-weight: 400;
74
119
  }
75
- .#{$fa-css-prefix}.#{$fa-css-prefix}-picture-o:before { content: fa-content($fa-var-image); }
120
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-picture-o:before {
121
+ content: unquote('"#{ $fa-var-image }"');
122
+ }
76
123
 
77
124
  .#{$fa-css-prefix}.#{$fa-css-prefix}-photo {
78
- font-family: 'Font Awesome 5 Free';
125
+ font-family: "Font Awesome 6 Free";
79
126
  font-weight: 400;
80
127
  }
81
- .#{$fa-css-prefix}.#{$fa-css-prefix}-photo:before { content: fa-content($fa-var-image); }
128
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-photo:before {
129
+ content: unquote('"#{ $fa-var-image }"');
130
+ }
82
131
 
83
132
  .#{$fa-css-prefix}.#{$fa-css-prefix}-image {
84
- font-family: 'Font Awesome 5 Free';
133
+ font-family: "Font Awesome 6 Free";
85
134
  font-weight: 400;
86
135
  }
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); }
136
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-image:before {
137
+ content: unquote('"#{ $fa-var-image }"');
138
+ }
90
139
 
91
- .#{$fa-css-prefix}.#{$fa-css-prefix}-map-marker:before { content: fa-content($fa-var-map-marker-alt); }
140
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-map-marker:before {
141
+ content: unquote('"#{ $fa-var-location-dot }"');
142
+ }
92
143
 
93
144
  .#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square-o {
94
- font-family: 'Font Awesome 5 Free';
145
+ font-family: "Font Awesome 6 Free";
95
146
  font-weight: 400;
96
147
  }
97
- .#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square-o:before { content: fa-content($fa-var-edit); }
148
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square-o:before {
149
+ content: unquote('"#{ $fa-var-pen-to-square }"');
150
+ }
98
151
 
99
- .#{$fa-css-prefix}.#{$fa-css-prefix}-share-square-o {
100
- font-family: 'Font Awesome 5 Free';
152
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-edit {
153
+ font-family: "Font Awesome 6 Free";
101
154
  font-weight: 400;
102
155
  }
103
- .#{$fa-css-prefix}.#{$fa-css-prefix}-share-square-o:before { content: fa-content($fa-var-share-square); }
156
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-edit:before {
157
+ content: unquote('"#{ $fa-var-pen-to-square }"');
158
+ }
159
+
160
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-share-square-o:before {
161
+ content: unquote('"#{ $fa-var-share-from-square }"');
162
+ }
104
163
 
105
164
  .#{$fa-css-prefix}.#{$fa-css-prefix}-check-square-o {
106
- font-family: 'Font Awesome 5 Free';
165
+ font-family: "Font Awesome 6 Free";
107
166
  font-weight: 400;
108
167
  }
109
- .#{$fa-css-prefix}.#{$fa-css-prefix}-check-square-o:before { content: fa-content($fa-var-check-square); }
168
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-check-square-o:before {
169
+ content: unquote('"#{ $fa-var-square-check }"');
170
+ }
110
171
 
111
- .#{$fa-css-prefix}.#{$fa-css-prefix}-arrows:before { content: fa-content($fa-var-arrows-alt); }
172
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-arrows:before {
173
+ content: unquote('"#{ $fa-var-up-down-left-right }"');
174
+ }
112
175
 
113
176
  .#{$fa-css-prefix}.#{$fa-css-prefix}-times-circle-o {
114
- font-family: 'Font Awesome 5 Free';
177
+ font-family: "Font Awesome 6 Free";
115
178
  font-weight: 400;
116
179
  }
117
- .#{$fa-css-prefix}.#{$fa-css-prefix}-times-circle-o:before { content: fa-content($fa-var-times-circle); }
180
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-times-circle-o:before {
181
+ content: unquote('"#{ $fa-var-circle-xmark }"');
182
+ }
118
183
 
119
184
  .#{$fa-css-prefix}.#{$fa-css-prefix}-check-circle-o {
120
- font-family: 'Font Awesome 5 Free';
185
+ font-family: "Font Awesome 6 Free";
121
186
  font-weight: 400;
122
187
  }
123
- .#{$fa-css-prefix}.#{$fa-css-prefix}-check-circle-o:before { content: fa-content($fa-var-check-circle); }
188
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-check-circle-o:before {
189
+ content: unquote('"#{ $fa-var-circle-check }"');
190
+ }
124
191
 
125
- .#{$fa-css-prefix}.#{$fa-css-prefix}-mail-forward:before { content: fa-content($fa-var-share); }
192
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-mail-forward:before {
193
+ content: unquote('"#{ $fa-var-share }"');
194
+ }
126
195
 
127
- .#{$fa-css-prefix}.#{$fa-css-prefix}-expand:before { content: fa-content($fa-var-expand-alt); }
196
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-expand:before {
197
+ content: unquote('"#{ $fa-var-up-right-and-down-left-from-center }"');
198
+ }
128
199
 
129
- .#{$fa-css-prefix}.#{$fa-css-prefix}-compress:before { content: fa-content($fa-var-compress-alt); }
200
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-compress:before {
201
+ content: unquote('"#{ $fa-var-down-left-and-up-right-to-center }"');
202
+ }
130
203
 
131
204
  .#{$fa-css-prefix}.#{$fa-css-prefix}-eye {
132
- font-family: 'Font Awesome 5 Free';
205
+ font-family: "Font Awesome 6 Free";
133
206
  font-weight: 400;
134
207
  }
135
208
 
136
209
  .#{$fa-css-prefix}.#{$fa-css-prefix}-eye-slash {
137
- font-family: 'Font Awesome 5 Free';
210
+ font-family: "Font Awesome 6 Free";
138
211
  font-weight: 400;
139
212
  }
140
213
 
141
- .#{$fa-css-prefix}.#{$fa-css-prefix}-warning:before { content: fa-content($fa-var-exclamation-triangle); }
214
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-warning:before {
215
+ content: unquote('"#{ $fa-var-triangle-exclamation }"');
216
+ }
142
217
 
143
- .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar:before { content: fa-content($fa-var-calendar-alt); }
218
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar:before {
219
+ content: unquote('"#{ $fa-var-calendar-days }"');
220
+ }
144
221
 
145
- .#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-v:before { content: fa-content($fa-var-arrows-alt-v); }
222
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-v:before {
223
+ content: unquote('"#{ $fa-var-up-down }"');
224
+ }
146
225
 
147
- .#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-h:before { content: fa-content($fa-var-arrows-alt-h); }
226
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-h:before {
227
+ content: unquote('"#{ $fa-var-left-right }"');
228
+ }
148
229
 
149
- .#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart {
150
- font-family: 'Font Awesome 5 Free';
151
- font-weight: 400;
230
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart:before {
231
+ content: unquote('"#{ $fa-var-chart-column }"');
152
232
  }
153
- .#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart:before { content: fa-content($fa-var-chart-bar); }
154
233
 
155
- .#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart-o {
156
- font-family: 'Font Awesome 5 Free';
157
- font-weight: 400;
234
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart-o:before {
235
+ content: unquote('"#{ $fa-var-chart-column }"');
158
236
  }
159
- .#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart-o:before { content: fa-content($fa-var-chart-bar); }
160
237
 
161
238
  .#{$fa-css-prefix}.#{$fa-css-prefix}-twitter-square {
162
- font-family: 'Font Awesome 5 Brands';
239
+ font-family: "Font Awesome 6 Brands";
163
240
  font-weight: 400;
164
241
  }
165
242
 
166
243
  .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-square {
167
- font-family: 'Font Awesome 5 Brands';
244
+ font-family: "Font Awesome 6 Brands";
168
245
  font-weight: 400;
169
246
  }
170
247
 
171
- .#{$fa-css-prefix}.#{$fa-css-prefix}-gears:before { content: fa-content($fa-var-cogs); }
248
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-gears:before {
249
+ content: unquote('"#{ $fa-var-gears }"');
250
+ }
172
251
 
173
252
  .#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-up {
174
- font-family: 'Font Awesome 5 Free';
253
+ font-family: "Font Awesome 6 Free";
175
254
  font-weight: 400;
176
255
  }
177
- .#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-up:before { content: fa-content($fa-var-thumbs-up); }
256
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-up:before {
257
+ content: unquote('"#{ $fa-var-thumbs-up }"');
258
+ }
178
259
 
179
260
  .#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-down {
180
- font-family: 'Font Awesome 5 Free';
261
+ font-family: "Font Awesome 6 Free";
181
262
  font-weight: 400;
182
263
  }
183
- .#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-down:before { content: fa-content($fa-var-thumbs-down); }
264
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-down:before {
265
+ content: unquote('"#{ $fa-var-thumbs-down }"');
266
+ }
184
267
 
185
268
  .#{$fa-css-prefix}.#{$fa-css-prefix}-heart-o {
186
- font-family: 'Font Awesome 5 Free';
269
+ font-family: "Font Awesome 6 Free";
187
270
  font-weight: 400;
188
271
  }
189
- .#{$fa-css-prefix}.#{$fa-css-prefix}-heart-o:before { content: fa-content($fa-var-heart); }
272
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-heart-o:before {
273
+ content: unquote('"#{ $fa-var-heart }"');
274
+ }
190
275
 
191
- .#{$fa-css-prefix}.#{$fa-css-prefix}-sign-out:before { content: fa-content($fa-var-sign-out-alt); }
276
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sign-out:before {
277
+ content: unquote('"#{ $fa-var-right-from-bracket }"');
278
+ }
192
279
 
193
280
  .#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin-square {
194
- font-family: 'Font Awesome 5 Brands';
281
+ font-family: "Font Awesome 6 Brands";
195
282
  font-weight: 400;
196
283
  }
197
- .#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin-square:before { content: fa-content($fa-var-linkedin); }
284
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin-square:before {
285
+ content: unquote('"#{ $fa-var-linkedin }"');
286
+ }
198
287
 
199
- .#{$fa-css-prefix}.#{$fa-css-prefix}-thumb-tack:before { content: fa-content($fa-var-thumbtack); }
288
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-thumb-tack:before {
289
+ content: unquote('"#{ $fa-var-thumbtack }"');
290
+ }
200
291
 
201
- .#{$fa-css-prefix}.#{$fa-css-prefix}-external-link:before { content: fa-content($fa-var-external-link-alt); }
292
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-external-link:before {
293
+ content: unquote('"#{ $fa-var-up-right-from-square }"');
294
+ }
202
295
 
203
- .#{$fa-css-prefix}.#{$fa-css-prefix}-sign-in:before { content: fa-content($fa-var-sign-in-alt); }
296
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sign-in:before {
297
+ content: unquote('"#{ $fa-var-right-to-bracket }"');
298
+ }
204
299
 
205
300
  .#{$fa-css-prefix}.#{$fa-css-prefix}-github-square {
206
- font-family: 'Font Awesome 5 Brands';
301
+ font-family: "Font Awesome 6 Brands";
207
302
  font-weight: 400;
208
303
  }
209
304
 
210
305
  .#{$fa-css-prefix}.#{$fa-css-prefix}-lemon-o {
211
- font-family: 'Font Awesome 5 Free';
306
+ font-family: "Font Awesome 6 Free";
212
307
  font-weight: 400;
213
308
  }
214
- .#{$fa-css-prefix}.#{$fa-css-prefix}-lemon-o:before { content: fa-content($fa-var-lemon); }
309
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-lemon-o:before {
310
+ content: unquote('"#{ $fa-var-lemon }"');
311
+ }
215
312
 
216
313
  .#{$fa-css-prefix}.#{$fa-css-prefix}-square-o {
217
- font-family: 'Font Awesome 5 Free';
314
+ font-family: "Font Awesome 6 Free";
218
315
  font-weight: 400;
219
316
  }
220
- .#{$fa-css-prefix}.#{$fa-css-prefix}-square-o:before { content: fa-content($fa-var-square); }
317
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-square-o:before {
318
+ content: unquote('"#{ $fa-var-square }"');
319
+ }
221
320
 
222
321
  .#{$fa-css-prefix}.#{$fa-css-prefix}-bookmark-o {
223
- font-family: 'Font Awesome 5 Free';
322
+ font-family: "Font Awesome 6 Free";
224
323
  font-weight: 400;
225
324
  }
226
- .#{$fa-css-prefix}.#{$fa-css-prefix}-bookmark-o:before { content: fa-content($fa-var-bookmark); }
325
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bookmark-o:before {
326
+ content: unquote('"#{ $fa-var-bookmark }"');
327
+ }
227
328
 
228
329
  .#{$fa-css-prefix}.#{$fa-css-prefix}-twitter {
229
- font-family: 'Font Awesome 5 Brands';
330
+ font-family: "Font Awesome 6 Brands";
230
331
  font-weight: 400;
231
332
  }
232
333
 
233
334
  .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook {
234
- font-family: 'Font Awesome 5 Brands';
335
+ font-family: "Font Awesome 6 Brands";
235
336
  font-weight: 400;
236
337
  }
237
- .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook:before { content: fa-content($fa-var-facebook-f); }
338
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook:before {
339
+ content: unquote('"#{ $fa-var-facebook-f }"');
340
+ }
238
341
 
239
342
  .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-f {
240
- font-family: 'Font Awesome 5 Brands';
343
+ font-family: "Font Awesome 6 Brands";
241
344
  font-weight: 400;
242
345
  }
243
- .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-f:before { content: fa-content($fa-var-facebook-f); }
346
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-f:before {
347
+ content: unquote('"#{ $fa-var-facebook-f }"');
348
+ }
244
349
 
245
350
  .#{$fa-css-prefix}.#{$fa-css-prefix}-github {
246
- font-family: 'Font Awesome 5 Brands';
351
+ font-family: "Font Awesome 6 Brands";
247
352
  font-weight: 400;
248
353
  }
249
354
 
250
355
  .#{$fa-css-prefix}.#{$fa-css-prefix}-credit-card {
251
- font-family: 'Font Awesome 5 Free';
356
+ font-family: "Font Awesome 6 Free";
252
357
  font-weight: 400;
253
358
  }
254
359
 
255
- .#{$fa-css-prefix}.#{$fa-css-prefix}-feed:before { content: fa-content($fa-var-rss); }
360
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-feed:before {
361
+ content: unquote('"#{ $fa-var-rss }"');
362
+ }
256
363
 
257
364
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hdd-o {
258
- font-family: 'Font Awesome 5 Free';
365
+ font-family: "Font Awesome 6 Free";
259
366
  font-weight: 400;
260
367
  }
261
- .#{$fa-css-prefix}.#{$fa-css-prefix}-hdd-o:before { content: fa-content($fa-var-hdd); }
368
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hdd-o:before {
369
+ content: unquote('"#{ $fa-var-hard-drive }"');
370
+ }
262
371
 
263
372
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-right {
264
- font-family: 'Font Awesome 5 Free';
373
+ font-family: "Font Awesome 6 Free";
265
374
  font-weight: 400;
266
375
  }
267
- .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-right:before { content: fa-content($fa-var-hand-point-right); }
376
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-right:before {
377
+ content: unquote('"#{ $fa-var-hand-point-right }"');
378
+ }
268
379
 
269
380
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-left {
270
- font-family: 'Font Awesome 5 Free';
381
+ font-family: "Font Awesome 6 Free";
271
382
  font-weight: 400;
272
383
  }
273
- .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-left:before { content: fa-content($fa-var-hand-point-left); }
384
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-left:before {
385
+ content: unquote('"#{ $fa-var-hand-point-left }"');
386
+ }
274
387
 
275
388
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-up {
276
- font-family: 'Font Awesome 5 Free';
389
+ font-family: "Font Awesome 6 Free";
277
390
  font-weight: 400;
278
391
  }
279
- .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-up:before { content: fa-content($fa-var-hand-point-up); }
392
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-up:before {
393
+ content: unquote('"#{ $fa-var-hand-point-up }"');
394
+ }
280
395
 
281
396
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-down {
282
- font-family: 'Font Awesome 5 Free';
397
+ font-family: "Font Awesome 6 Free";
283
398
  font-weight: 400;
284
399
  }
285
- .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-down:before { content: fa-content($fa-var-hand-point-down); }
400
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-down:before {
401
+ content: unquote('"#{ $fa-var-hand-point-down }"');
402
+ }
286
403
 
287
- .#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-alt:before { content: fa-content($fa-var-expand-arrows-alt); }
404
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-globe:before {
405
+ content: unquote('"#{ $fa-var-earth-americas }"');
406
+ }
407
+
408
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-tasks:before {
409
+ content: unquote('"#{ $fa-var-bars-progress }"');
410
+ }
411
+
412
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-alt:before {
413
+ content: unquote('"#{ $fa-var-maximize }"');
414
+ }
288
415
 
289
- .#{$fa-css-prefix}.#{$fa-css-prefix}-group:before { content: fa-content($fa-var-users); }
416
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-group:before {
417
+ content: unquote('"#{ $fa-var-users }"');
418
+ }
290
419
 
291
- .#{$fa-css-prefix}.#{$fa-css-prefix}-chain:before { content: fa-content($fa-var-link); }
420
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-chain:before {
421
+ content: unquote('"#{ $fa-var-link }"');
422
+ }
292
423
 
293
- .#{$fa-css-prefix}.#{$fa-css-prefix}-scissors:before { content: fa-content($fa-var-cut); }
424
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cut:before {
425
+ content: unquote('"#{ $fa-var-scissors }"');
426
+ }
294
427
 
295
428
  .#{$fa-css-prefix}.#{$fa-css-prefix}-files-o {
296
- font-family: 'Font Awesome 5 Free';
429
+ font-family: "Font Awesome 6 Free";
297
430
  font-weight: 400;
298
431
  }
299
- .#{$fa-css-prefix}.#{$fa-css-prefix}-files-o:before { content: fa-content($fa-var-copy); }
432
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-files-o:before {
433
+ content: unquote('"#{ $fa-var-copy }"');
434
+ }
300
435
 
301
436
  .#{$fa-css-prefix}.#{$fa-css-prefix}-floppy-o {
302
- font-family: 'Font Awesome 5 Free';
437
+ font-family: "Font Awesome 6 Free";
303
438
  font-weight: 400;
304
439
  }
305
- .#{$fa-css-prefix}.#{$fa-css-prefix}-floppy-o:before { content: fa-content($fa-var-save); }
440
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-floppy-o:before {
441
+ content: unquote('"#{ $fa-var-floppy-disk }"');
442
+ }
306
443
 
307
- .#{$fa-css-prefix}.#{$fa-css-prefix}-navicon:before { content: fa-content($fa-var-bars); }
444
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-save {
445
+ font-family: "Font Awesome 6 Free";
446
+ font-weight: 400;
447
+ }
448
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-save:before {
449
+ content: unquote('"#{ $fa-var-floppy-disk }"');
450
+ }
308
451
 
309
- .#{$fa-css-prefix}.#{$fa-css-prefix}-reorder:before { content: fa-content($fa-var-bars); }
452
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-navicon:before {
453
+ content: unquote('"#{ $fa-var-bars }"');
454
+ }
455
+
456
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-reorder:before {
457
+ content: unquote('"#{ $fa-var-bars }"');
458
+ }
459
+
460
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-magic:before {
461
+ content: unquote('"#{ $fa-var-wand-magic-sparkles }"');
462
+ }
310
463
 
311
464
  .#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest {
312
- font-family: 'Font Awesome 5 Brands';
465
+ font-family: "Font Awesome 6 Brands";
313
466
  font-weight: 400;
314
467
  }
315
468
 
316
469
  .#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest-square {
317
- font-family: 'Font Awesome 5 Brands';
470
+ font-family: "Font Awesome 6 Brands";
318
471
  font-weight: 400;
319
472
  }
320
473
 
321
474
  .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-square {
322
- font-family: 'Font Awesome 5 Brands';
475
+ font-family: "Font Awesome 6 Brands";
323
476
  font-weight: 400;
324
477
  }
325
478
 
326
479
  .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus {
327
- font-family: 'Font Awesome 5 Brands';
480
+ font-family: "Font Awesome 6 Brands";
328
481
  font-weight: 400;
329
482
  }
330
- .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus:before { content: fa-content($fa-var-google-plus-g); }
483
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus:before {
484
+ content: unquote('"#{ $fa-var-google-plus-g }"');
485
+ }
331
486
 
332
- .#{$fa-css-prefix}.#{$fa-css-prefix}-money {
333
- font-family: 'Font Awesome 5 Free';
334
- font-weight: 400;
487
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-money:before {
488
+ content: unquote('"#{ $fa-var-money-bill-1 }"');
335
489
  }
336
- .#{$fa-css-prefix}.#{$fa-css-prefix}-money:before { content: fa-content($fa-var-money-bill-alt); }
337
490
 
338
- .#{$fa-css-prefix}.#{$fa-css-prefix}-unsorted:before { content: fa-content($fa-var-sort); }
491
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-unsorted:before {
492
+ content: unquote('"#{ $fa-var-sort }"');
493
+ }
339
494
 
340
- .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-desc:before { content: fa-content($fa-var-sort-down); }
495
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-desc:before {
496
+ content: unquote('"#{ $fa-var-sort-down }"');
497
+ }
341
498
 
342
- .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-asc:before { content: fa-content($fa-var-sort-up); }
499
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-asc:before {
500
+ content: unquote('"#{ $fa-var-sort-up }"');
501
+ }
343
502
 
344
503
  .#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin {
345
- font-family: 'Font Awesome 5 Brands';
504
+ font-family: "Font Awesome 6 Brands";
346
505
  font-weight: 400;
347
506
  }
348
- .#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin:before { content: fa-content($fa-var-linkedin-in); }
507
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin:before {
508
+ content: unquote('"#{ $fa-var-linkedin-in }"');
509
+ }
349
510
 
350
- .#{$fa-css-prefix}.#{$fa-css-prefix}-rotate-left:before { content: fa-content($fa-var-undo); }
511
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-rotate-left:before {
512
+ content: unquote('"#{ $fa-var-arrow-rotate-left }"');
513
+ }
351
514
 
352
- .#{$fa-css-prefix}.#{$fa-css-prefix}-legal:before { content: fa-content($fa-var-gavel); }
515
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-legal:before {
516
+ content: unquote('"#{ $fa-var-gavel }"');
517
+ }
353
518
 
354
- .#{$fa-css-prefix}.#{$fa-css-prefix}-tachometer:before { content: fa-content($fa-var-tachometer-alt); }
519
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-tachometer:before {
520
+ content: unquote('"#{ $fa-var-gauge-high }"');
521
+ }
355
522
 
356
- .#{$fa-css-prefix}.#{$fa-css-prefix}-dashboard:before { content: fa-content($fa-var-tachometer-alt); }
523
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-dashboard:before {
524
+ content: unquote('"#{ $fa-var-gauge-high }"');
525
+ }
357
526
 
358
527
  .#{$fa-css-prefix}.#{$fa-css-prefix}-comment-o {
359
- font-family: 'Font Awesome 5 Free';
528
+ font-family: "Font Awesome 6 Free";
360
529
  font-weight: 400;
361
530
  }
362
- .#{$fa-css-prefix}.#{$fa-css-prefix}-comment-o:before { content: fa-content($fa-var-comment); }
531
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-comment-o:before {
532
+ content: unquote('"#{ $fa-var-comment }"');
533
+ }
363
534
 
364
535
  .#{$fa-css-prefix}.#{$fa-css-prefix}-comments-o {
365
- font-family: 'Font Awesome 5 Free';
536
+ font-family: "Font Awesome 6 Free";
366
537
  font-weight: 400;
367
538
  }
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); }
539
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-comments-o:before {
540
+ content: unquote('"#{ $fa-var-comments }"');
541
+ }
371
542
 
372
- .#{$fa-css-prefix}.#{$fa-css-prefix}-clipboard {
373
- font-family: 'Font Awesome 5 Free';
374
- font-weight: 400;
543
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-flash:before {
544
+ content: unquote('"#{ $fa-var-bolt }"');
375
545
  }
376
546
 
377
- .#{$fa-css-prefix}.#{$fa-css-prefix}-paste {
378
- font-family: 'Font Awesome 5 Free';
379
- font-weight: 400;
547
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-clipboard:before {
548
+ content: unquote('"#{ $fa-var-paste }"');
380
549
  }
381
- .#{$fa-css-prefix}.#{$fa-css-prefix}-paste:before { content: fa-content($fa-var-clipboard); }
382
550
 
383
551
  .#{$fa-css-prefix}.#{$fa-css-prefix}-lightbulb-o {
384
- font-family: 'Font Awesome 5 Free';
552
+ font-family: "Font Awesome 6 Free";
385
553
  font-weight: 400;
386
554
  }
387
- .#{$fa-css-prefix}.#{$fa-css-prefix}-lightbulb-o:before { content: fa-content($fa-var-lightbulb); }
555
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-lightbulb-o:before {
556
+ content: unquote('"#{ $fa-var-lightbulb }"');
557
+ }
388
558
 
389
- .#{$fa-css-prefix}.#{$fa-css-prefix}-exchange:before { content: fa-content($fa-var-exchange-alt); }
559
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-exchange:before {
560
+ content: unquote('"#{ $fa-var-right-left }"');
561
+ }
390
562
 
391
- .#{$fa-css-prefix}.#{$fa-css-prefix}-cloud-download:before { content: fa-content($fa-var-cloud-download-alt); }
563
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cloud-download:before {
564
+ content: unquote('"#{ $fa-var-cloud-arrow-down }"');
565
+ }
392
566
 
393
- .#{$fa-css-prefix}.#{$fa-css-prefix}-cloud-upload:before { content: fa-content($fa-var-cloud-upload-alt); }
567
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cloud-upload:before {
568
+ content: unquote('"#{ $fa-var-cloud-arrow-up }"');
569
+ }
394
570
 
395
571
  .#{$fa-css-prefix}.#{$fa-css-prefix}-bell-o {
396
- font-family: 'Font Awesome 5 Free';
572
+ font-family: "Font Awesome 6 Free";
397
573
  font-weight: 400;
398
574
  }
399
- .#{$fa-css-prefix}.#{$fa-css-prefix}-bell-o:before { content: fa-content($fa-var-bell); }
575
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bell-o:before {
576
+ content: unquote('"#{ $fa-var-bell }"');
577
+ }
400
578
 
401
- .#{$fa-css-prefix}.#{$fa-css-prefix}-cutlery:before { content: fa-content($fa-var-utensils); }
579
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cutlery:before {
580
+ content: unquote('"#{ $fa-var-utensils }"');
581
+ }
402
582
 
403
583
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-text-o {
404
- font-family: 'Font Awesome 5 Free';
584
+ font-family: "Font Awesome 6 Free";
405
585
  font-weight: 400;
406
586
  }
407
- .#{$fa-css-prefix}.#{$fa-css-prefix}-file-text-o:before { content: fa-content($fa-var-file-alt); }
587
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-text-o:before {
588
+ content: unquote('"#{ $fa-var-file-lines }"');
589
+ }
408
590
 
409
591
  .#{$fa-css-prefix}.#{$fa-css-prefix}-building-o {
410
- font-family: 'Font Awesome 5 Free';
592
+ font-family: "Font Awesome 6 Free";
411
593
  font-weight: 400;
412
594
  }
413
- .#{$fa-css-prefix}.#{$fa-css-prefix}-building-o:before { content: fa-content($fa-var-building); }
595
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-building-o:before {
596
+ content: unquote('"#{ $fa-var-building }"');
597
+ }
414
598
 
415
599
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hospital-o {
416
- font-family: 'Font Awesome 5 Free';
600
+ font-family: "Font Awesome 6 Free";
417
601
  font-weight: 400;
418
602
  }
419
- .#{$fa-css-prefix}.#{$fa-css-prefix}-hospital-o:before { content: fa-content($fa-var-hospital); }
603
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hospital-o:before {
604
+ content: unquote('"#{ $fa-var-hospital }"');
605
+ }
420
606
 
421
- .#{$fa-css-prefix}.#{$fa-css-prefix}-tablet:before { content: fa-content($fa-var-tablet-alt); }
607
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-tablet:before {
608
+ content: unquote('"#{ $fa-var-tablet-screen-button }"');
609
+ }
422
610
 
423
- .#{$fa-css-prefix}.#{$fa-css-prefix}-mobile:before { content: fa-content($fa-var-mobile-alt); }
611
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-mobile:before {
612
+ content: unquote('"#{ $fa-var-mobile-screen-button }"');
613
+ }
424
614
 
425
- .#{$fa-css-prefix}.#{$fa-css-prefix}-mobile-phone:before { content: fa-content($fa-var-mobile-alt); }
615
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-mobile-phone:before {
616
+ content: unquote('"#{ $fa-var-mobile-screen-button }"');
617
+ }
426
618
 
427
619
  .#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o {
428
- font-family: 'Font Awesome 5 Free';
620
+ font-family: "Font Awesome 6 Free";
429
621
  font-weight: 400;
430
622
  }
431
- .#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o:before { content: fa-content($fa-var-circle); }
623
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o:before {
624
+ content: unquote('"#{ $fa-var-circle }"');
625
+ }
432
626
 
433
- .#{$fa-css-prefix}.#{$fa-css-prefix}-mail-reply:before { content: fa-content($fa-var-reply); }
627
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-mail-reply:before {
628
+ content: unquote('"#{ $fa-var-reply }"');
629
+ }
434
630
 
435
631
  .#{$fa-css-prefix}.#{$fa-css-prefix}-github-alt {
436
- font-family: 'Font Awesome 5 Brands';
632
+ font-family: "Font Awesome 6 Brands";
437
633
  font-weight: 400;
438
634
  }
439
635
 
440
636
  .#{$fa-css-prefix}.#{$fa-css-prefix}-folder-o {
441
- font-family: 'Font Awesome 5 Free';
637
+ font-family: "Font Awesome 6 Free";
442
638
  font-weight: 400;
443
639
  }
444
- .#{$fa-css-prefix}.#{$fa-css-prefix}-folder-o:before { content: fa-content($fa-var-folder); }
640
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-folder-o:before {
641
+ content: unquote('"#{ $fa-var-folder }"');
642
+ }
445
643
 
446
644
  .#{$fa-css-prefix}.#{$fa-css-prefix}-folder-open-o {
447
- font-family: 'Font Awesome 5 Free';
645
+ font-family: "Font Awesome 6 Free";
448
646
  font-weight: 400;
449
647
  }
450
- .#{$fa-css-prefix}.#{$fa-css-prefix}-folder-open-o:before { content: fa-content($fa-var-folder-open); }
648
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-folder-open-o:before {
649
+ content: unquote('"#{ $fa-var-folder-open }"');
650
+ }
451
651
 
452
652
  .#{$fa-css-prefix}.#{$fa-css-prefix}-smile-o {
453
- font-family: 'Font Awesome 5 Free';
653
+ font-family: "Font Awesome 6 Free";
454
654
  font-weight: 400;
455
655
  }
456
- .#{$fa-css-prefix}.#{$fa-css-prefix}-smile-o:before { content: fa-content($fa-var-smile); }
656
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-smile-o:before {
657
+ content: unquote('"#{ $fa-var-face-smile }"');
658
+ }
457
659
 
458
660
  .#{$fa-css-prefix}.#{$fa-css-prefix}-frown-o {
459
- font-family: 'Font Awesome 5 Free';
661
+ font-family: "Font Awesome 6 Free";
460
662
  font-weight: 400;
461
663
  }
462
- .#{$fa-css-prefix}.#{$fa-css-prefix}-frown-o:before { content: fa-content($fa-var-frown); }
664
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-frown-o:before {
665
+ content: unquote('"#{ $fa-var-face-frown }"');
666
+ }
463
667
 
464
668
  .#{$fa-css-prefix}.#{$fa-css-prefix}-meh-o {
465
- font-family: 'Font Awesome 5 Free';
669
+ font-family: "Font Awesome 6 Free";
466
670
  font-weight: 400;
467
671
  }
468
- .#{$fa-css-prefix}.#{$fa-css-prefix}-meh-o:before { content: fa-content($fa-var-meh); }
672
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-meh-o:before {
673
+ content: unquote('"#{ $fa-var-face-meh }"');
674
+ }
469
675
 
470
676
  .#{$fa-css-prefix}.#{$fa-css-prefix}-keyboard-o {
471
- font-family: 'Font Awesome 5 Free';
677
+ font-family: "Font Awesome 6 Free";
472
678
  font-weight: 400;
473
679
  }
474
- .#{$fa-css-prefix}.#{$fa-css-prefix}-keyboard-o:before { content: fa-content($fa-var-keyboard); }
680
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-keyboard-o:before {
681
+ content: unquote('"#{ $fa-var-keyboard }"');
682
+ }
475
683
 
476
684
  .#{$fa-css-prefix}.#{$fa-css-prefix}-flag-o {
477
- font-family: 'Font Awesome 5 Free';
685
+ font-family: "Font Awesome 6 Free";
478
686
  font-weight: 400;
479
687
  }
480
- .#{$fa-css-prefix}.#{$fa-css-prefix}-flag-o:before { content: fa-content($fa-var-flag); }
688
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-flag-o:before {
689
+ content: unquote('"#{ $fa-var-flag }"');
690
+ }
481
691
 
482
- .#{$fa-css-prefix}.#{$fa-css-prefix}-mail-reply-all:before { content: fa-content($fa-var-reply-all); }
692
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-mail-reply-all:before {
693
+ content: unquote('"#{ $fa-var-reply-all }"');
694
+ }
483
695
 
484
696
  .#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-o {
485
- font-family: 'Font Awesome 5 Free';
697
+ font-family: "Font Awesome 6 Free";
486
698
  font-weight: 400;
487
699
  }
488
- .#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-o:before { content: fa-content($fa-var-star-half); }
700
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-o:before {
701
+ content: unquote('"#{ $fa-var-star-half-stroke }"');
702
+ }
489
703
 
490
704
  .#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-empty {
491
- font-family: 'Font Awesome 5 Free';
705
+ font-family: "Font Awesome 6 Free";
492
706
  font-weight: 400;
493
707
  }
494
- .#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-empty:before { content: fa-content($fa-var-star-half); }
708
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-empty:before {
709
+ content: unquote('"#{ $fa-var-star-half-stroke }"');
710
+ }
495
711
 
496
712
  .#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-full {
497
- font-family: 'Font Awesome 5 Free';
713
+ font-family: "Font Awesome 6 Free";
498
714
  font-weight: 400;
499
715
  }
500
- .#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-full:before { content: fa-content($fa-var-star-half); }
716
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-full:before {
717
+ content: unquote('"#{ $fa-var-star-half-stroke }"');
718
+ }
501
719
 
502
- .#{$fa-css-prefix}.#{$fa-css-prefix}-code-fork:before { content: fa-content($fa-var-code-branch); }
720
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-code-fork:before {
721
+ content: unquote('"#{ $fa-var-code-branch }"');
722
+ }
503
723
 
504
- .#{$fa-css-prefix}.#{$fa-css-prefix}-chain-broken:before { content: fa-content($fa-var-unlink); }
724
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-chain-broken:before {
725
+ content: unquote('"#{ $fa-var-link-slash }"');
726
+ }
505
727
 
506
- .#{$fa-css-prefix}.#{$fa-css-prefix}-shield:before { content: fa-content($fa-var-shield-alt); }
728
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-unlink:before {
729
+ content: unquote('"#{ $fa-var-link-slash }"');
730
+ }
507
731
 
508
732
  .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-o {
509
- font-family: 'Font Awesome 5 Free';
733
+ font-family: "Font Awesome 6 Free";
510
734
  font-weight: 400;
511
735
  }
512
- .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-o:before { content: fa-content($fa-var-calendar); }
736
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-o:before {
737
+ content: unquote('"#{ $fa-var-calendar }"');
738
+ }
513
739
 
514
740
  .#{$fa-css-prefix}.#{$fa-css-prefix}-maxcdn {
515
- font-family: 'Font Awesome 5 Brands';
741
+ font-family: "Font Awesome 6 Brands";
516
742
  font-weight: 400;
517
743
  }
518
744
 
519
745
  .#{$fa-css-prefix}.#{$fa-css-prefix}-html5 {
520
- font-family: 'Font Awesome 5 Brands';
746
+ font-family: "Font Awesome 6 Brands";
521
747
  font-weight: 400;
522
748
  }
523
749
 
524
750
  .#{$fa-css-prefix}.#{$fa-css-prefix}-css3 {
525
- font-family: 'Font Awesome 5 Brands';
751
+ font-family: "Font Awesome 6 Brands";
526
752
  font-weight: 400;
527
753
  }
528
754
 
529
- .#{$fa-css-prefix}.#{$fa-css-prefix}-ticket:before { content: fa-content($fa-var-ticket-alt); }
755
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-unlock-alt:before {
756
+ content: unquote('"#{ $fa-var-unlock }"');
757
+ }
530
758
 
531
759
  .#{$fa-css-prefix}.#{$fa-css-prefix}-minus-square-o {
532
- font-family: 'Font Awesome 5 Free';
760
+ font-family: "Font Awesome 6 Free";
533
761
  font-weight: 400;
534
762
  }
535
- .#{$fa-css-prefix}.#{$fa-css-prefix}-minus-square-o:before { content: fa-content($fa-var-minus-square); }
763
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-minus-square-o:before {
764
+ content: unquote('"#{ $fa-var-square-minus }"');
765
+ }
536
766
 
537
- .#{$fa-css-prefix}.#{$fa-css-prefix}-level-up:before { content: fa-content($fa-var-level-up-alt); }
767
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-level-up:before {
768
+ content: unquote('"#{ $fa-var-turn-up }"');
769
+ }
538
770
 
539
- .#{$fa-css-prefix}.#{$fa-css-prefix}-level-down:before { content: fa-content($fa-var-level-down-alt); }
771
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-level-down:before {
772
+ content: unquote('"#{ $fa-var-turn-down }"');
773
+ }
540
774
 
541
- .#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square:before { content: fa-content($fa-var-pen-square); }
775
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square:before {
776
+ content: unquote('"#{ $fa-var-square-pen }"');
777
+ }
542
778
 
543
- .#{$fa-css-prefix}.#{$fa-css-prefix}-external-link-square:before { content: fa-content($fa-var-external-link-square-alt); }
779
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-external-link-square:before {
780
+ content: unquote('"#{ $fa-var-square-up-right }"');
781
+ }
544
782
 
545
783
  .#{$fa-css-prefix}.#{$fa-css-prefix}-compass {
546
- font-family: 'Font Awesome 5 Free';
784
+ font-family: "Font Awesome 6 Free";
547
785
  font-weight: 400;
548
786
  }
549
787
 
550
788
  .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-down {
551
- font-family: 'Font Awesome 5 Free';
789
+ font-family: "Font Awesome 6 Free";
552
790
  font-weight: 400;
553
791
  }
554
- .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-down:before { content: fa-content($fa-var-caret-square-down); }
792
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-down:before {
793
+ content: unquote('"#{ $fa-var-square-caret-down }"');
794
+ }
555
795
 
556
796
  .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-down {
557
- font-family: 'Font Awesome 5 Free';
797
+ font-family: "Font Awesome 6 Free";
558
798
  font-weight: 400;
559
799
  }
560
- .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-down:before { content: fa-content($fa-var-caret-square-down); }
800
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-down:before {
801
+ content: unquote('"#{ $fa-var-square-caret-down }"');
802
+ }
561
803
 
562
804
  .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-up {
563
- font-family: 'Font Awesome 5 Free';
805
+ font-family: "Font Awesome 6 Free";
564
806
  font-weight: 400;
565
807
  }
566
- .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-up:before { content: fa-content($fa-var-caret-square-up); }
808
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-up:before {
809
+ content: unquote('"#{ $fa-var-square-caret-up }"');
810
+ }
567
811
 
568
812
  .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-up {
569
- font-family: 'Font Awesome 5 Free';
813
+ font-family: "Font Awesome 6 Free";
570
814
  font-weight: 400;
571
815
  }
572
- .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-up:before { content: fa-content($fa-var-caret-square-up); }
816
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-up:before {
817
+ content: unquote('"#{ $fa-var-square-caret-up }"');
818
+ }
573
819
 
574
820
  .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-right {
575
- font-family: 'Font Awesome 5 Free';
821
+ font-family: "Font Awesome 6 Free";
576
822
  font-weight: 400;
577
823
  }
578
- .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-right:before { content: fa-content($fa-var-caret-square-right); }
824
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-right:before {
825
+ content: unquote('"#{ $fa-var-square-caret-right }"');
826
+ }
579
827
 
580
828
  .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-right {
581
- font-family: 'Font Awesome 5 Free';
829
+ font-family: "Font Awesome 6 Free";
582
830
  font-weight: 400;
583
831
  }
584
- .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-right:before { content: fa-content($fa-var-caret-square-right); }
832
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-right:before {
833
+ content: unquote('"#{ $fa-var-square-caret-right }"');
834
+ }
585
835
 
586
- .#{$fa-css-prefix}.#{$fa-css-prefix}-eur:before { content: fa-content($fa-var-euro-sign); }
836
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-eur:before {
837
+ content: unquote('"#{ $fa-var-euro-sign }"');
838
+ }
587
839
 
588
- .#{$fa-css-prefix}.#{$fa-css-prefix}-euro:before { content: fa-content($fa-var-euro-sign); }
840
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-euro:before {
841
+ content: unquote('"#{ $fa-var-euro-sign }"');
842
+ }
589
843
 
590
- .#{$fa-css-prefix}.#{$fa-css-prefix}-gbp:before { content: fa-content($fa-var-pound-sign); }
844
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-gbp:before {
845
+ content: unquote('"#{ $fa-var-sterling-sign }"');
846
+ }
591
847
 
592
- .#{$fa-css-prefix}.#{$fa-css-prefix}-usd:before { content: fa-content($fa-var-dollar-sign); }
848
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-usd:before {
849
+ content: unquote('"#{ $fa-var-dollar-sign }"');
850
+ }
593
851
 
594
- .#{$fa-css-prefix}.#{$fa-css-prefix}-dollar:before { content: fa-content($fa-var-dollar-sign); }
852
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-dollar:before {
853
+ content: unquote('"#{ $fa-var-dollar-sign }"');
854
+ }
595
855
 
596
- .#{$fa-css-prefix}.#{$fa-css-prefix}-inr:before { content: fa-content($fa-var-rupee-sign); }
856
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-inr:before {
857
+ content: unquote('"#{ $fa-var-indian-rupee-sign }"');
858
+ }
597
859
 
598
- .#{$fa-css-prefix}.#{$fa-css-prefix}-rupee:before { content: fa-content($fa-var-rupee-sign); }
860
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-rupee:before {
861
+ content: unquote('"#{ $fa-var-indian-rupee-sign }"');
862
+ }
599
863
 
600
- .#{$fa-css-prefix}.#{$fa-css-prefix}-jpy:before { content: fa-content($fa-var-yen-sign); }
864
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-jpy:before {
865
+ content: unquote('"#{ $fa-var-yen-sign }"');
866
+ }
601
867
 
602
- .#{$fa-css-prefix}.#{$fa-css-prefix}-cny:before { content: fa-content($fa-var-yen-sign); }
868
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cny:before {
869
+ content: unquote('"#{ $fa-var-yen-sign }"');
870
+ }
603
871
 
604
- .#{$fa-css-prefix}.#{$fa-css-prefix}-rmb:before { content: fa-content($fa-var-yen-sign); }
872
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-rmb:before {
873
+ content: unquote('"#{ $fa-var-yen-sign }"');
874
+ }
605
875
 
606
- .#{$fa-css-prefix}.#{$fa-css-prefix}-yen:before { content: fa-content($fa-var-yen-sign); }
876
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-yen:before {
877
+ content: unquote('"#{ $fa-var-yen-sign }"');
878
+ }
607
879
 
608
- .#{$fa-css-prefix}.#{$fa-css-prefix}-rub:before { content: fa-content($fa-var-ruble-sign); }
880
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-rub:before {
881
+ content: unquote('"#{ $fa-var-ruble-sign }"');
882
+ }
609
883
 
610
- .#{$fa-css-prefix}.#{$fa-css-prefix}-ruble:before { content: fa-content($fa-var-ruble-sign); }
884
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-ruble:before {
885
+ content: unquote('"#{ $fa-var-ruble-sign }"');
886
+ }
611
887
 
612
- .#{$fa-css-prefix}.#{$fa-css-prefix}-rouble:before { content: fa-content($fa-var-ruble-sign); }
888
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-rouble:before {
889
+ content: unquote('"#{ $fa-var-ruble-sign }"');
890
+ }
613
891
 
614
- .#{$fa-css-prefix}.#{$fa-css-prefix}-krw:before { content: fa-content($fa-var-won-sign); }
892
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-krw:before {
893
+ content: unquote('"#{ $fa-var-won-sign }"');
894
+ }
615
895
 
616
- .#{$fa-css-prefix}.#{$fa-css-prefix}-won:before { content: fa-content($fa-var-won-sign); }
896
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-won:before {
897
+ content: unquote('"#{ $fa-var-won-sign }"');
898
+ }
617
899
 
618
900
  .#{$fa-css-prefix}.#{$fa-css-prefix}-btc {
619
- font-family: 'Font Awesome 5 Brands';
901
+ font-family: "Font Awesome 6 Brands";
620
902
  font-weight: 400;
621
903
  }
622
904
 
623
905
  .#{$fa-css-prefix}.#{$fa-css-prefix}-bitcoin {
624
- font-family: 'Font Awesome 5 Brands';
906
+ font-family: "Font Awesome 6 Brands";
625
907
  font-weight: 400;
626
908
  }
627
- .#{$fa-css-prefix}.#{$fa-css-prefix}-bitcoin:before { content: fa-content($fa-var-btc); }
909
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bitcoin:before {
910
+ content: unquote('"#{ $fa-var-btc }"');
911
+ }
628
912
 
629
- .#{$fa-css-prefix}.#{$fa-css-prefix}-file-text:before { content: fa-content($fa-var-file-alt); }
913
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-text:before {
914
+ content: unquote('"#{ $fa-var-file-lines }"');
915
+ }
630
916
 
631
- .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-alpha-asc:before { content: fa-content($fa-var-sort-alpha-down); }
917
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-alpha-asc:before {
918
+ content: unquote('"#{ $fa-var-arrow-down-a-z }"');
919
+ }
632
920
 
633
- .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-alpha-desc:before { content: fa-content($fa-var-sort-alpha-down-alt); }
921
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-alpha-desc:before {
922
+ content: unquote('"#{ $fa-var-arrow-down-z-a }"');
923
+ }
634
924
 
635
- .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-amount-asc:before { content: fa-content($fa-var-sort-amount-down); }
925
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-amount-asc:before {
926
+ content: unquote('"#{ $fa-var-arrow-down-short-wide }"');
927
+ }
636
928
 
637
- .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-amount-desc:before { content: fa-content($fa-var-sort-amount-down-alt); }
929
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-amount-desc:before {
930
+ content: unquote('"#{ $fa-var-arrow-down-wide-short }"');
931
+ }
638
932
 
639
- .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-numeric-asc:before { content: fa-content($fa-var-sort-numeric-down); }
933
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-numeric-asc:before {
934
+ content: unquote('"#{ $fa-var-arrow-down-1-9 }"');
935
+ }
640
936
 
641
- .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-numeric-desc:before { content: fa-content($fa-var-sort-numeric-down-alt); }
937
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-numeric-desc:before {
938
+ content: unquote('"#{ $fa-var-arrow-down-9-1 }"');
939
+ }
642
940
 
643
941
  .#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-square {
644
- font-family: 'Font Awesome 5 Brands';
942
+ font-family: "Font Awesome 6 Brands";
645
943
  font-weight: 400;
646
944
  }
647
945
 
648
946
  .#{$fa-css-prefix}.#{$fa-css-prefix}-youtube {
649
- font-family: 'Font Awesome 5 Brands';
947
+ font-family: "Font Awesome 6 Brands";
650
948
  font-weight: 400;
651
949
  }
652
950
 
653
951
  .#{$fa-css-prefix}.#{$fa-css-prefix}-xing {
654
- font-family: 'Font Awesome 5 Brands';
952
+ font-family: "Font Awesome 6 Brands";
655
953
  font-weight: 400;
656
954
  }
657
955
 
658
956
  .#{$fa-css-prefix}.#{$fa-css-prefix}-xing-square {
659
- font-family: 'Font Awesome 5 Brands';
957
+ font-family: "Font Awesome 6 Brands";
660
958
  font-weight: 400;
661
959
  }
662
960
 
663
961
  .#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-play {
664
- font-family: 'Font Awesome 5 Brands';
962
+ font-family: "Font Awesome 6 Brands";
665
963
  font-weight: 400;
666
964
  }
667
- .#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-play:before { content: fa-content($fa-var-youtube); }
965
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-play:before {
966
+ content: unquote('"#{ $fa-var-youtube }"');
967
+ }
668
968
 
669
969
  .#{$fa-css-prefix}.#{$fa-css-prefix}-dropbox {
670
- font-family: 'Font Awesome 5 Brands';
970
+ font-family: "Font Awesome 6 Brands";
671
971
  font-weight: 400;
672
972
  }
673
973
 
674
974
  .#{$fa-css-prefix}.#{$fa-css-prefix}-stack-overflow {
675
- font-family: 'Font Awesome 5 Brands';
975
+ font-family: "Font Awesome 6 Brands";
676
976
  font-weight: 400;
677
977
  }
678
978
 
679
979
  .#{$fa-css-prefix}.#{$fa-css-prefix}-instagram {
680
- font-family: 'Font Awesome 5 Brands';
980
+ font-family: "Font Awesome 6 Brands";
681
981
  font-weight: 400;
682
982
  }
683
983
 
684
984
  .#{$fa-css-prefix}.#{$fa-css-prefix}-flickr {
685
- font-family: 'Font Awesome 5 Brands';
985
+ font-family: "Font Awesome 6 Brands";
686
986
  font-weight: 400;
687
987
  }
688
988
 
689
989
  .#{$fa-css-prefix}.#{$fa-css-prefix}-adn {
690
- font-family: 'Font Awesome 5 Brands';
990
+ font-family: "Font Awesome 6 Brands";
691
991
  font-weight: 400;
692
992
  }
693
993
 
694
994
  .#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket {
695
- font-family: 'Font Awesome 5 Brands';
995
+ font-family: "Font Awesome 6 Brands";
696
996
  font-weight: 400;
697
997
  }
698
998
 
699
999
  .#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket-square {
700
- font-family: 'Font Awesome 5 Brands';
1000
+ font-family: "Font Awesome 6 Brands";
701
1001
  font-weight: 400;
702
1002
  }
703
- .#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket-square:before { content: fa-content($fa-var-bitbucket); }
1003
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket-square:before {
1004
+ content: unquote('"#{ $fa-var-bitbucket }"');
1005
+ }
704
1006
 
705
1007
  .#{$fa-css-prefix}.#{$fa-css-prefix}-tumblr {
706
- font-family: 'Font Awesome 5 Brands';
1008
+ font-family: "Font Awesome 6 Brands";
707
1009
  font-weight: 400;
708
1010
  }
709
1011
 
710
1012
  .#{$fa-css-prefix}.#{$fa-css-prefix}-tumblr-square {
711
- font-family: 'Font Awesome 5 Brands';
1013
+ font-family: "Font Awesome 6 Brands";
712
1014
  font-weight: 400;
713
1015
  }
714
1016
 
715
- .#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-down:before { content: fa-content($fa-var-long-arrow-alt-down); }
1017
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-down:before {
1018
+ content: unquote('"#{ $fa-var-down-long }"');
1019
+ }
716
1020
 
717
- .#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-up:before { content: fa-content($fa-var-long-arrow-alt-up); }
1021
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-up:before {
1022
+ content: unquote('"#{ $fa-var-up-long }"');
1023
+ }
718
1024
 
719
- .#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-left:before { content: fa-content($fa-var-long-arrow-alt-left); }
1025
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-left:before {
1026
+ content: unquote('"#{ $fa-var-left-long }"');
1027
+ }
720
1028
 
721
- .#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-right:before { content: fa-content($fa-var-long-arrow-alt-right); }
1029
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-right:before {
1030
+ content: unquote('"#{ $fa-var-right-long }"');
1031
+ }
722
1032
 
723
1033
  .#{$fa-css-prefix}.#{$fa-css-prefix}-apple {
724
- font-family: 'Font Awesome 5 Brands';
1034
+ font-family: "Font Awesome 6 Brands";
725
1035
  font-weight: 400;
726
1036
  }
727
1037
 
728
1038
  .#{$fa-css-prefix}.#{$fa-css-prefix}-windows {
729
- font-family: 'Font Awesome 5 Brands';
1039
+ font-family: "Font Awesome 6 Brands";
730
1040
  font-weight: 400;
731
1041
  }
732
1042
 
733
1043
  .#{$fa-css-prefix}.#{$fa-css-prefix}-android {
734
- font-family: 'Font Awesome 5 Brands';
1044
+ font-family: "Font Awesome 6 Brands";
735
1045
  font-weight: 400;
736
1046
  }
737
1047
 
738
1048
  .#{$fa-css-prefix}.#{$fa-css-prefix}-linux {
739
- font-family: 'Font Awesome 5 Brands';
1049
+ font-family: "Font Awesome 6 Brands";
740
1050
  font-weight: 400;
741
1051
  }
742
1052
 
743
1053
  .#{$fa-css-prefix}.#{$fa-css-prefix}-dribbble {
744
- font-family: 'Font Awesome 5 Brands';
1054
+ font-family: "Font Awesome 6 Brands";
745
1055
  font-weight: 400;
746
1056
  }
747
1057
 
748
1058
  .#{$fa-css-prefix}.#{$fa-css-prefix}-skype {
749
- font-family: 'Font Awesome 5 Brands';
1059
+ font-family: "Font Awesome 6 Brands";
750
1060
  font-weight: 400;
751
1061
  }
752
1062
 
753
1063
  .#{$fa-css-prefix}.#{$fa-css-prefix}-foursquare {
754
- font-family: 'Font Awesome 5 Brands';
1064
+ font-family: "Font Awesome 6 Brands";
755
1065
  font-weight: 400;
756
1066
  }
757
1067
 
758
1068
  .#{$fa-css-prefix}.#{$fa-css-prefix}-trello {
759
- font-family: 'Font Awesome 5 Brands';
1069
+ font-family: "Font Awesome 6 Brands";
760
1070
  font-weight: 400;
761
1071
  }
762
1072
 
763
1073
  .#{$fa-css-prefix}.#{$fa-css-prefix}-gratipay {
764
- font-family: 'Font Awesome 5 Brands';
1074
+ font-family: "Font Awesome 6 Brands";
765
1075
  font-weight: 400;
766
1076
  }
767
1077
 
768
1078
  .#{$fa-css-prefix}.#{$fa-css-prefix}-gittip {
769
- font-family: 'Font Awesome 5 Brands';
1079
+ font-family: "Font Awesome 6 Brands";
770
1080
  font-weight: 400;
771
1081
  }
772
- .#{$fa-css-prefix}.#{$fa-css-prefix}-gittip:before { content: fa-content($fa-var-gratipay); }
1082
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-gittip:before {
1083
+ content: unquote('"#{ $fa-var-gratipay }"');
1084
+ }
773
1085
 
774
1086
  .#{$fa-css-prefix}.#{$fa-css-prefix}-sun-o {
775
- font-family: 'Font Awesome 5 Free';
1087
+ font-family: "Font Awesome 6 Free";
776
1088
  font-weight: 400;
777
1089
  }
778
- .#{$fa-css-prefix}.#{$fa-css-prefix}-sun-o:before { content: fa-content($fa-var-sun); }
1090
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sun-o:before {
1091
+ content: unquote('"#{ $fa-var-sun }"');
1092
+ }
779
1093
 
780
1094
  .#{$fa-css-prefix}.#{$fa-css-prefix}-moon-o {
781
- font-family: 'Font Awesome 5 Free';
1095
+ font-family: "Font Awesome 6 Free";
782
1096
  font-weight: 400;
783
1097
  }
784
- .#{$fa-css-prefix}.#{$fa-css-prefix}-moon-o:before { content: fa-content($fa-var-moon); }
1098
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-moon-o:before {
1099
+ content: unquote('"#{ $fa-var-moon }"');
1100
+ }
785
1101
 
786
1102
  .#{$fa-css-prefix}.#{$fa-css-prefix}-vk {
787
- font-family: 'Font Awesome 5 Brands';
1103
+ font-family: "Font Awesome 6 Brands";
788
1104
  font-weight: 400;
789
1105
  }
790
1106
 
791
1107
  .#{$fa-css-prefix}.#{$fa-css-prefix}-weibo {
792
- font-family: 'Font Awesome 5 Brands';
1108
+ font-family: "Font Awesome 6 Brands";
793
1109
  font-weight: 400;
794
1110
  }
795
1111
 
796
1112
  .#{$fa-css-prefix}.#{$fa-css-prefix}-renren {
797
- font-family: 'Font Awesome 5 Brands';
1113
+ font-family: "Font Awesome 6 Brands";
798
1114
  font-weight: 400;
799
1115
  }
800
1116
 
801
1117
  .#{$fa-css-prefix}.#{$fa-css-prefix}-pagelines {
802
- font-family: 'Font Awesome 5 Brands';
1118
+ font-family: "Font Awesome 6 Brands";
803
1119
  font-weight: 400;
804
1120
  }
805
1121
 
806
1122
  .#{$fa-css-prefix}.#{$fa-css-prefix}-stack-exchange {
807
- font-family: 'Font Awesome 5 Brands';
1123
+ font-family: "Font Awesome 6 Brands";
808
1124
  font-weight: 400;
809
1125
  }
810
1126
 
811
1127
  .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-right {
812
- font-family: 'Font Awesome 5 Free';
1128
+ font-family: "Font Awesome 6 Free";
813
1129
  font-weight: 400;
814
1130
  }
815
- .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-right:before { content: fa-content($fa-var-arrow-alt-circle-right); }
1131
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-right:before {
1132
+ content: unquote('"#{ $fa-var-circle-right }"');
1133
+ }
816
1134
 
817
1135
  .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-left {
818
- font-family: 'Font Awesome 5 Free';
1136
+ font-family: "Font Awesome 6 Free";
819
1137
  font-weight: 400;
820
1138
  }
821
- .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-left:before { content: fa-content($fa-var-arrow-alt-circle-left); }
1139
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-left:before {
1140
+ content: unquote('"#{ $fa-var-circle-left }"');
1141
+ }
822
1142
 
823
1143
  .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-left {
824
- font-family: 'Font Awesome 5 Free';
1144
+ font-family: "Font Awesome 6 Free";
825
1145
  font-weight: 400;
826
1146
  }
827
- .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-left:before { content: fa-content($fa-var-caret-square-left); }
1147
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-left:before {
1148
+ content: unquote('"#{ $fa-var-square-caret-left }"');
1149
+ }
828
1150
 
829
1151
  .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-left {
830
- font-family: 'Font Awesome 5 Free';
1152
+ font-family: "Font Awesome 6 Free";
831
1153
  font-weight: 400;
832
1154
  }
833
- .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-left:before { content: fa-content($fa-var-caret-square-left); }
1155
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-left:before {
1156
+ content: unquote('"#{ $fa-var-square-caret-left }"');
1157
+ }
834
1158
 
835
1159
  .#{$fa-css-prefix}.#{$fa-css-prefix}-dot-circle-o {
836
- font-family: 'Font Awesome 5 Free';
1160
+ font-family: "Font Awesome 6 Free";
837
1161
  font-weight: 400;
838
1162
  }
839
- .#{$fa-css-prefix}.#{$fa-css-prefix}-dot-circle-o:before { content: fa-content($fa-var-dot-circle); }
1163
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-dot-circle-o:before {
1164
+ content: unquote('"#{ $fa-var-circle-dot }"');
1165
+ }
840
1166
 
841
1167
  .#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo-square {
842
- font-family: 'Font Awesome 5 Brands';
1168
+ font-family: "Font Awesome 6 Brands";
843
1169
  font-weight: 400;
844
1170
  }
845
1171
 
846
- .#{$fa-css-prefix}.#{$fa-css-prefix}-try:before { content: fa-content($fa-var-lira-sign); }
1172
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-try:before {
1173
+ content: unquote('"#{ $fa-var-turkish-lira-sign }"');
1174
+ }
847
1175
 
848
- .#{$fa-css-prefix}.#{$fa-css-prefix}-turkish-lira:before { content: fa-content($fa-var-lira-sign); }
1176
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-turkish-lira:before {
1177
+ content: unquote('"#{ $fa-var-turkish-lira-sign }"');
1178
+ }
849
1179
 
850
1180
  .#{$fa-css-prefix}.#{$fa-css-prefix}-plus-square-o {
851
- font-family: 'Font Awesome 5 Free';
1181
+ font-family: "Font Awesome 6 Free";
852
1182
  font-weight: 400;
853
1183
  }
854
- .#{$fa-css-prefix}.#{$fa-css-prefix}-plus-square-o:before { content: fa-content($fa-var-plus-square); }
1184
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-plus-square-o:before {
1185
+ content: unquote('"#{ $fa-var-square-plus }"');
1186
+ }
855
1187
 
856
1188
  .#{$fa-css-prefix}.#{$fa-css-prefix}-slack {
857
- font-family: 'Font Awesome 5 Brands';
1189
+ font-family: "Font Awesome 6 Brands";
858
1190
  font-weight: 400;
859
1191
  }
860
1192
 
861
1193
  .#{$fa-css-prefix}.#{$fa-css-prefix}-wordpress {
862
- font-family: 'Font Awesome 5 Brands';
1194
+ font-family: "Font Awesome 6 Brands";
863
1195
  font-weight: 400;
864
1196
  }
865
1197
 
866
1198
  .#{$fa-css-prefix}.#{$fa-css-prefix}-openid {
867
- font-family: 'Font Awesome 5 Brands';
1199
+ font-family: "Font Awesome 6 Brands";
868
1200
  font-weight: 400;
869
1201
  }
870
1202
 
871
- .#{$fa-css-prefix}.#{$fa-css-prefix}-institution:before { content: fa-content($fa-var-university); }
1203
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-institution:before {
1204
+ content: unquote('"#{ $fa-var-building-columns }"');
1205
+ }
872
1206
 
873
- .#{$fa-css-prefix}.#{$fa-css-prefix}-bank:before { content: fa-content($fa-var-university); }
1207
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bank:before {
1208
+ content: unquote('"#{ $fa-var-building-columns }"');
1209
+ }
874
1210
 
875
- .#{$fa-css-prefix}.#{$fa-css-prefix}-mortar-board:before { content: fa-content($fa-var-graduation-cap); }
1211
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-mortar-board:before {
1212
+ content: unquote('"#{ $fa-var-graduation-cap }"');
1213
+ }
876
1214
 
877
1215
  .#{$fa-css-prefix}.#{$fa-css-prefix}-yahoo {
878
- font-family: 'Font Awesome 5 Brands';
1216
+ font-family: "Font Awesome 6 Brands";
879
1217
  font-weight: 400;
880
1218
  }
881
1219
 
882
1220
  .#{$fa-css-prefix}.#{$fa-css-prefix}-google {
883
- font-family: 'Font Awesome 5 Brands';
1221
+ font-family: "Font Awesome 6 Brands";
884
1222
  font-weight: 400;
885
1223
  }
886
1224
 
887
1225
  .#{$fa-css-prefix}.#{$fa-css-prefix}-reddit {
888
- font-family: 'Font Awesome 5 Brands';
1226
+ font-family: "Font Awesome 6 Brands";
889
1227
  font-weight: 400;
890
1228
  }
891
1229
 
892
1230
  .#{$fa-css-prefix}.#{$fa-css-prefix}-reddit-square {
893
- font-family: 'Font Awesome 5 Brands';
1231
+ font-family: "Font Awesome 6 Brands";
894
1232
  font-weight: 400;
895
1233
  }
896
1234
 
897
1235
  .#{$fa-css-prefix}.#{$fa-css-prefix}-stumbleupon-circle {
898
- font-family: 'Font Awesome 5 Brands';
1236
+ font-family: "Font Awesome 6 Brands";
899
1237
  font-weight: 400;
900
1238
  }
901
1239
 
902
1240
  .#{$fa-css-prefix}.#{$fa-css-prefix}-stumbleupon {
903
- font-family: 'Font Awesome 5 Brands';
1241
+ font-family: "Font Awesome 6 Brands";
904
1242
  font-weight: 400;
905
1243
  }
906
1244
 
907
1245
  .#{$fa-css-prefix}.#{$fa-css-prefix}-delicious {
908
- font-family: 'Font Awesome 5 Brands';
1246
+ font-family: "Font Awesome 6 Brands";
909
1247
  font-weight: 400;
910
1248
  }
911
1249
 
912
1250
  .#{$fa-css-prefix}.#{$fa-css-prefix}-digg {
913
- font-family: 'Font Awesome 5 Brands';
1251
+ font-family: "Font Awesome 6 Brands";
914
1252
  font-weight: 400;
915
1253
  }
916
1254
 
917
1255
  .#{$fa-css-prefix}.#{$fa-css-prefix}-pied-piper-pp {
918
- font-family: 'Font Awesome 5 Brands';
1256
+ font-family: "Font Awesome 6 Brands";
919
1257
  font-weight: 400;
920
1258
  }
921
1259
 
922
1260
  .#{$fa-css-prefix}.#{$fa-css-prefix}-pied-piper-alt {
923
- font-family: 'Font Awesome 5 Brands';
1261
+ font-family: "Font Awesome 6 Brands";
924
1262
  font-weight: 400;
925
1263
  }
926
1264
 
927
1265
  .#{$fa-css-prefix}.#{$fa-css-prefix}-drupal {
928
- font-family: 'Font Awesome 5 Brands';
1266
+ font-family: "Font Awesome 6 Brands";
929
1267
  font-weight: 400;
930
1268
  }
931
1269
 
932
1270
  .#{$fa-css-prefix}.#{$fa-css-prefix}-joomla {
933
- font-family: 'Font Awesome 5 Brands';
1271
+ font-family: "Font Awesome 6 Brands";
934
1272
  font-weight: 400;
935
1273
  }
936
1274
 
937
- .#{$fa-css-prefix}.#{$fa-css-prefix}-spoon:before { content: fa-content($fa-var-utensil-spoon); }
938
-
939
1275
  .#{$fa-css-prefix}.#{$fa-css-prefix}-behance {
940
- font-family: 'Font Awesome 5 Brands';
1276
+ font-family: "Font Awesome 6 Brands";
941
1277
  font-weight: 400;
942
1278
  }
943
1279
 
944
1280
  .#{$fa-css-prefix}.#{$fa-css-prefix}-behance-square {
945
- font-family: 'Font Awesome 5 Brands';
1281
+ font-family: "Font Awesome 6 Brands";
946
1282
  font-weight: 400;
947
1283
  }
948
1284
 
949
1285
  .#{$fa-css-prefix}.#{$fa-css-prefix}-steam {
950
- font-family: 'Font Awesome 5 Brands';
1286
+ font-family: "Font Awesome 6 Brands";
951
1287
  font-weight: 400;
952
1288
  }
953
1289
 
954
1290
  .#{$fa-css-prefix}.#{$fa-css-prefix}-steam-square {
955
- font-family: 'Font Awesome 5 Brands';
1291
+ font-family: "Font Awesome 6 Brands";
956
1292
  font-weight: 400;
957
1293
  }
958
1294
 
959
- .#{$fa-css-prefix}.#{$fa-css-prefix}-automobile:before { content: fa-content($fa-var-car); }
1295
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-automobile:before {
1296
+ content: unquote('"#{ $fa-var-car }"');
1297
+ }
960
1298
 
961
- .#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-o {
962
- font-family: 'Font Awesome 5 Free';
963
- font-weight: 400;
1299
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cab:before {
1300
+ content: unquote('"#{ $fa-var-taxi }"');
964
1301
  }
965
- .#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-o:before { content: fa-content($fa-var-envelope); }
966
1302
 
967
1303
  .#{$fa-css-prefix}.#{$fa-css-prefix}-spotify {
968
- font-family: 'Font Awesome 5 Brands';
1304
+ font-family: "Font Awesome 6 Brands";
969
1305
  font-weight: 400;
970
1306
  }
971
1307
 
972
1308
  .#{$fa-css-prefix}.#{$fa-css-prefix}-deviantart {
973
- font-family: 'Font Awesome 5 Brands';
1309
+ font-family: "Font Awesome 6 Brands";
974
1310
  font-weight: 400;
975
1311
  }
976
1312
 
977
1313
  .#{$fa-css-prefix}.#{$fa-css-prefix}-soundcloud {
978
- font-family: 'Font Awesome 5 Brands';
1314
+ font-family: "Font Awesome 6 Brands";
979
1315
  font-weight: 400;
980
1316
  }
981
1317
 
982
1318
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-pdf-o {
983
- font-family: 'Font Awesome 5 Free';
1319
+ font-family: "Font Awesome 6 Free";
984
1320
  font-weight: 400;
985
1321
  }
986
- .#{$fa-css-prefix}.#{$fa-css-prefix}-file-pdf-o:before { content: fa-content($fa-var-file-pdf); }
1322
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-pdf-o:before {
1323
+ content: unquote('"#{ $fa-var-file-pdf }"');
1324
+ }
987
1325
 
988
1326
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-word-o {
989
- font-family: 'Font Awesome 5 Free';
1327
+ font-family: "Font Awesome 6 Free";
990
1328
  font-weight: 400;
991
1329
  }
992
- .#{$fa-css-prefix}.#{$fa-css-prefix}-file-word-o:before { content: fa-content($fa-var-file-word); }
1330
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-word-o:before {
1331
+ content: unquote('"#{ $fa-var-file-word }"');
1332
+ }
993
1333
 
994
1334
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-excel-o {
995
- font-family: 'Font Awesome 5 Free';
1335
+ font-family: "Font Awesome 6 Free";
996
1336
  font-weight: 400;
997
1337
  }
998
- .#{$fa-css-prefix}.#{$fa-css-prefix}-file-excel-o:before { content: fa-content($fa-var-file-excel); }
1338
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-excel-o:before {
1339
+ content: unquote('"#{ $fa-var-file-excel }"');
1340
+ }
999
1341
 
1000
1342
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-powerpoint-o {
1001
- font-family: 'Font Awesome 5 Free';
1343
+ font-family: "Font Awesome 6 Free";
1002
1344
  font-weight: 400;
1003
1345
  }
1004
- .#{$fa-css-prefix}.#{$fa-css-prefix}-file-powerpoint-o:before { content: fa-content($fa-var-file-powerpoint); }
1346
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-powerpoint-o:before {
1347
+ content: unquote('"#{ $fa-var-file-powerpoint }"');
1348
+ }
1005
1349
 
1006
1350
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-image-o {
1007
- font-family: 'Font Awesome 5 Free';
1351
+ font-family: "Font Awesome 6 Free";
1008
1352
  font-weight: 400;
1009
1353
  }
1010
- .#{$fa-css-prefix}.#{$fa-css-prefix}-file-image-o:before { content: fa-content($fa-var-file-image); }
1354
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-image-o:before {
1355
+ content: unquote('"#{ $fa-var-file-image }"');
1356
+ }
1011
1357
 
1012
1358
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-photo-o {
1013
- font-family: 'Font Awesome 5 Free';
1359
+ font-family: "Font Awesome 6 Free";
1014
1360
  font-weight: 400;
1015
1361
  }
1016
- .#{$fa-css-prefix}.#{$fa-css-prefix}-file-photo-o:before { content: fa-content($fa-var-file-image); }
1362
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-photo-o:before {
1363
+ content: unquote('"#{ $fa-var-file-image }"');
1364
+ }
1017
1365
 
1018
1366
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-picture-o {
1019
- font-family: 'Font Awesome 5 Free';
1367
+ font-family: "Font Awesome 6 Free";
1020
1368
  font-weight: 400;
1021
1369
  }
1022
- .#{$fa-css-prefix}.#{$fa-css-prefix}-file-picture-o:before { content: fa-content($fa-var-file-image); }
1370
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-picture-o:before {
1371
+ content: unquote('"#{ $fa-var-file-image }"');
1372
+ }
1023
1373
 
1024
1374
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-archive-o {
1025
- font-family: 'Font Awesome 5 Free';
1375
+ font-family: "Font Awesome 6 Free";
1026
1376
  font-weight: 400;
1027
1377
  }
1028
- .#{$fa-css-prefix}.#{$fa-css-prefix}-file-archive-o:before { content: fa-content($fa-var-file-archive); }
1378
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-archive-o:before {
1379
+ content: unquote('"#{ $fa-var-file-zipper }"');
1380
+ }
1029
1381
 
1030
1382
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-zip-o {
1031
- font-family: 'Font Awesome 5 Free';
1383
+ font-family: "Font Awesome 6 Free";
1032
1384
  font-weight: 400;
1033
1385
  }
1034
- .#{$fa-css-prefix}.#{$fa-css-prefix}-file-zip-o:before { content: fa-content($fa-var-file-archive); }
1386
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-zip-o:before {
1387
+ content: unquote('"#{ $fa-var-file-zipper }"');
1388
+ }
1035
1389
 
1036
1390
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-audio-o {
1037
- font-family: 'Font Awesome 5 Free';
1391
+ font-family: "Font Awesome 6 Free";
1038
1392
  font-weight: 400;
1039
1393
  }
1040
- .#{$fa-css-prefix}.#{$fa-css-prefix}-file-audio-o:before { content: fa-content($fa-var-file-audio); }
1394
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-audio-o:before {
1395
+ content: unquote('"#{ $fa-var-file-audio }"');
1396
+ }
1041
1397
 
1042
1398
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-sound-o {
1043
- font-family: 'Font Awesome 5 Free';
1399
+ font-family: "Font Awesome 6 Free";
1044
1400
  font-weight: 400;
1045
1401
  }
1046
- .#{$fa-css-prefix}.#{$fa-css-prefix}-file-sound-o:before { content: fa-content($fa-var-file-audio); }
1402
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-sound-o:before {
1403
+ content: unquote('"#{ $fa-var-file-audio }"');
1404
+ }
1047
1405
 
1048
1406
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-video-o {
1049
- font-family: 'Font Awesome 5 Free';
1407
+ font-family: "Font Awesome 6 Free";
1050
1408
  font-weight: 400;
1051
1409
  }
1052
- .#{$fa-css-prefix}.#{$fa-css-prefix}-file-video-o:before { content: fa-content($fa-var-file-video); }
1410
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-video-o:before {
1411
+ content: unquote('"#{ $fa-var-file-video }"');
1412
+ }
1053
1413
 
1054
1414
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-movie-o {
1055
- font-family: 'Font Awesome 5 Free';
1415
+ font-family: "Font Awesome 6 Free";
1056
1416
  font-weight: 400;
1057
1417
  }
1058
- .#{$fa-css-prefix}.#{$fa-css-prefix}-file-movie-o:before { content: fa-content($fa-var-file-video); }
1418
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-movie-o:before {
1419
+ content: unquote('"#{ $fa-var-file-video }"');
1420
+ }
1059
1421
 
1060
1422
  .#{$fa-css-prefix}.#{$fa-css-prefix}-file-code-o {
1061
- font-family: 'Font Awesome 5 Free';
1423
+ font-family: "Font Awesome 6 Free";
1062
1424
  font-weight: 400;
1063
1425
  }
1064
- .#{$fa-css-prefix}.#{$fa-css-prefix}-file-code-o:before { content: fa-content($fa-var-file-code); }
1426
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-code-o:before {
1427
+ content: unquote('"#{ $fa-var-file-code }"');
1428
+ }
1065
1429
 
1066
1430
  .#{$fa-css-prefix}.#{$fa-css-prefix}-vine {
1067
- font-family: 'Font Awesome 5 Brands';
1431
+ font-family: "Font Awesome 6 Brands";
1068
1432
  font-weight: 400;
1069
1433
  }
1070
1434
 
1071
1435
  .#{$fa-css-prefix}.#{$fa-css-prefix}-codepen {
1072
- font-family: 'Font Awesome 5 Brands';
1436
+ font-family: "Font Awesome 6 Brands";
1073
1437
  font-weight: 400;
1074
1438
  }
1075
1439
 
1076
1440
  .#{$fa-css-prefix}.#{$fa-css-prefix}-jsfiddle {
1077
- font-family: 'Font Awesome 5 Brands';
1441
+ font-family: "Font Awesome 6 Brands";
1078
1442
  font-weight: 400;
1079
1443
  }
1080
1444
 
1081
- .#{$fa-css-prefix}.#{$fa-css-prefix}-life-ring {
1082
- font-family: 'Font Awesome 5 Free';
1083
- font-weight: 400;
1445
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-life-bouy:before {
1446
+ content: unquote('"#{ $fa-var-life-ring }"');
1084
1447
  }
1085
1448
 
1086
- .#{$fa-css-prefix}.#{$fa-css-prefix}-life-bouy {
1087
- font-family: 'Font Awesome 5 Free';
1088
- font-weight: 400;
1449
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-life-buoy:before {
1450
+ content: unquote('"#{ $fa-var-life-ring }"');
1089
1451
  }
1090
- .#{$fa-css-prefix}.#{$fa-css-prefix}-life-bouy:before { content: fa-content($fa-var-life-ring); }
1091
1452
 
1092
- .#{$fa-css-prefix}.#{$fa-css-prefix}-life-buoy {
1093
- font-family: 'Font Awesome 5 Free';
1094
- font-weight: 400;
1453
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-life-saver:before {
1454
+ content: unquote('"#{ $fa-var-life-ring }"');
1095
1455
  }
1096
- .#{$fa-css-prefix}.#{$fa-css-prefix}-life-buoy:before { content: fa-content($fa-var-life-ring); }
1097
1456
 
1098
- .#{$fa-css-prefix}.#{$fa-css-prefix}-life-saver {
1099
- font-family: 'Font Awesome 5 Free';
1100
- font-weight: 400;
1457
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-support:before {
1458
+ content: unquote('"#{ $fa-var-life-ring }"');
1101
1459
  }
1102
- .#{$fa-css-prefix}.#{$fa-css-prefix}-life-saver:before { content: fa-content($fa-var-life-ring); }
1103
1460
 
1104
- .#{$fa-css-prefix}.#{$fa-css-prefix}-support {
1105
- font-family: 'Font Awesome 5 Free';
1106
- font-weight: 400;
1461
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o-notch:before {
1462
+ content: unquote('"#{ $fa-var-circle-notch }"');
1107
1463
  }
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
1464
 
1112
1465
  .#{$fa-css-prefix}.#{$fa-css-prefix}-rebel {
1113
- font-family: 'Font Awesome 5 Brands';
1466
+ font-family: "Font Awesome 6 Brands";
1114
1467
  font-weight: 400;
1115
1468
  }
1116
1469
 
1117
1470
  .#{$fa-css-prefix}.#{$fa-css-prefix}-ra {
1118
- font-family: 'Font Awesome 5 Brands';
1471
+ font-family: "Font Awesome 6 Brands";
1119
1472
  font-weight: 400;
1120
1473
  }
1121
- .#{$fa-css-prefix}.#{$fa-css-prefix}-ra:before { content: fa-content($fa-var-rebel); }
1474
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-ra:before {
1475
+ content: unquote('"#{ $fa-var-rebel }"');
1476
+ }
1122
1477
 
1123
1478
  .#{$fa-css-prefix}.#{$fa-css-prefix}-resistance {
1124
- font-family: 'Font Awesome 5 Brands';
1479
+ font-family: "Font Awesome 6 Brands";
1125
1480
  font-weight: 400;
1126
1481
  }
1127
- .#{$fa-css-prefix}.#{$fa-css-prefix}-resistance:before { content: fa-content($fa-var-rebel); }
1482
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-resistance:before {
1483
+ content: unquote('"#{ $fa-var-rebel }"');
1484
+ }
1128
1485
 
1129
1486
  .#{$fa-css-prefix}.#{$fa-css-prefix}-empire {
1130
- font-family: 'Font Awesome 5 Brands';
1487
+ font-family: "Font Awesome 6 Brands";
1131
1488
  font-weight: 400;
1132
1489
  }
1133
1490
 
1134
1491
  .#{$fa-css-prefix}.#{$fa-css-prefix}-ge {
1135
- font-family: 'Font Awesome 5 Brands';
1492
+ font-family: "Font Awesome 6 Brands";
1136
1493
  font-weight: 400;
1137
1494
  }
1138
- .#{$fa-css-prefix}.#{$fa-css-prefix}-ge:before { content: fa-content($fa-var-empire); }
1495
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-ge:before {
1496
+ content: unquote('"#{ $fa-var-empire }"');
1497
+ }
1139
1498
 
1140
1499
  .#{$fa-css-prefix}.#{$fa-css-prefix}-git-square {
1141
- font-family: 'Font Awesome 5 Brands';
1500
+ font-family: "Font Awesome 6 Brands";
1142
1501
  font-weight: 400;
1143
1502
  }
1144
1503
 
1145
1504
  .#{$fa-css-prefix}.#{$fa-css-prefix}-git {
1146
- font-family: 'Font Awesome 5 Brands';
1505
+ font-family: "Font Awesome 6 Brands";
1147
1506
  font-weight: 400;
1148
1507
  }
1149
1508
 
1150
1509
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hacker-news {
1151
- font-family: 'Font Awesome 5 Brands';
1510
+ font-family: "Font Awesome 6 Brands";
1152
1511
  font-weight: 400;
1153
1512
  }
1154
1513
 
1155
1514
  .#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator-square {
1156
- font-family: 'Font Awesome 5 Brands';
1515
+ font-family: "Font Awesome 6 Brands";
1157
1516
  font-weight: 400;
1158
1517
  }
1159
- .#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator-square:before { content: fa-content($fa-var-hacker-news); }
1518
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator-square:before {
1519
+ content: unquote('"#{ $fa-var-hacker-news }"');
1520
+ }
1160
1521
 
1161
1522
  .#{$fa-css-prefix}.#{$fa-css-prefix}-yc-square {
1162
- font-family: 'Font Awesome 5 Brands';
1523
+ font-family: "Font Awesome 6 Brands";
1163
1524
  font-weight: 400;
1164
1525
  }
1165
- .#{$fa-css-prefix}.#{$fa-css-prefix}-yc-square:before { content: fa-content($fa-var-hacker-news); }
1526
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-yc-square:before {
1527
+ content: unquote('"#{ $fa-var-hacker-news }"');
1528
+ }
1166
1529
 
1167
1530
  .#{$fa-css-prefix}.#{$fa-css-prefix}-tencent-weibo {
1168
- font-family: 'Font Awesome 5 Brands';
1531
+ font-family: "Font Awesome 6 Brands";
1169
1532
  font-weight: 400;
1170
1533
  }
1171
1534
 
1172
1535
  .#{$fa-css-prefix}.#{$fa-css-prefix}-qq {
1173
- font-family: 'Font Awesome 5 Brands';
1536
+ font-family: "Font Awesome 6 Brands";
1174
1537
  font-weight: 400;
1175
1538
  }
1176
1539
 
1177
1540
  .#{$fa-css-prefix}.#{$fa-css-prefix}-weixin {
1178
- font-family: 'Font Awesome 5 Brands';
1541
+ font-family: "Font Awesome 6 Brands";
1179
1542
  font-weight: 400;
1180
1543
  }
1181
1544
 
1182
1545
  .#{$fa-css-prefix}.#{$fa-css-prefix}-wechat {
1183
- font-family: 'Font Awesome 5 Brands';
1546
+ font-family: "Font Awesome 6 Brands";
1184
1547
  font-weight: 400;
1185
1548
  }
1186
- .#{$fa-css-prefix}.#{$fa-css-prefix}-wechat:before { content: fa-content($fa-var-weixin); }
1549
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-wechat:before {
1550
+ content: unquote('"#{ $fa-var-weixin }"');
1551
+ }
1187
1552
 
1188
- .#{$fa-css-prefix}.#{$fa-css-prefix}-send:before { content: fa-content($fa-var-paper-plane); }
1553
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-send:before {
1554
+ content: unquote('"#{ $fa-var-paper-plane }"');
1555
+ }
1189
1556
 
1190
1557
  .#{$fa-css-prefix}.#{$fa-css-prefix}-paper-plane-o {
1191
- font-family: 'Font Awesome 5 Free';
1558
+ font-family: "Font Awesome 6 Free";
1192
1559
  font-weight: 400;
1193
1560
  }
1194
- .#{$fa-css-prefix}.#{$fa-css-prefix}-paper-plane-o:before { content: fa-content($fa-var-paper-plane); }
1561
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-paper-plane-o:before {
1562
+ content: unquote('"#{ $fa-var-paper-plane }"');
1563
+ }
1195
1564
 
1196
1565
  .#{$fa-css-prefix}.#{$fa-css-prefix}-send-o {
1197
- font-family: 'Font Awesome 5 Free';
1566
+ font-family: "Font Awesome 6 Free";
1198
1567
  font-weight: 400;
1199
1568
  }
1200
- .#{$fa-css-prefix}.#{$fa-css-prefix}-send-o:before { content: fa-content($fa-var-paper-plane); }
1569
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-send-o:before {
1570
+ content: unquote('"#{ $fa-var-paper-plane }"');
1571
+ }
1201
1572
 
1202
1573
  .#{$fa-css-prefix}.#{$fa-css-prefix}-circle-thin {
1203
- font-family: 'Font Awesome 5 Free';
1574
+ font-family: "Font Awesome 6 Free";
1204
1575
  font-weight: 400;
1205
1576
  }
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); }
1577
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-circle-thin:before {
1578
+ content: unquote('"#{ $fa-var-circle }"');
1579
+ }
1209
1580
 
1210
- .#{$fa-css-prefix}.#{$fa-css-prefix}-sliders:before { content: fa-content($fa-var-sliders-h); }
1581
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-header:before {
1582
+ content: unquote('"#{ $fa-var-heading }"');
1583
+ }
1211
1584
 
1212
1585
  .#{$fa-css-prefix}.#{$fa-css-prefix}-futbol-o {
1213
- font-family: 'Font Awesome 5 Free';
1586
+ font-family: "Font Awesome 6 Free";
1214
1587
  font-weight: 400;
1215
1588
  }
1216
- .#{$fa-css-prefix}.#{$fa-css-prefix}-futbol-o:before { content: fa-content($fa-var-futbol); }
1589
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-futbol-o:before {
1590
+ content: unquote('"#{ $fa-var-futbol }"');
1591
+ }
1217
1592
 
1218
1593
  .#{$fa-css-prefix}.#{$fa-css-prefix}-soccer-ball-o {
1219
- font-family: 'Font Awesome 5 Free';
1594
+ font-family: "Font Awesome 6 Free";
1220
1595
  font-weight: 400;
1221
1596
  }
1222
- .#{$fa-css-prefix}.#{$fa-css-prefix}-soccer-ball-o:before { content: fa-content($fa-var-futbol); }
1597
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-soccer-ball-o:before {
1598
+ content: unquote('"#{ $fa-var-futbol }"');
1599
+ }
1223
1600
 
1224
1601
  .#{$fa-css-prefix}.#{$fa-css-prefix}-slideshare {
1225
- font-family: 'Font Awesome 5 Brands';
1602
+ font-family: "Font Awesome 6 Brands";
1226
1603
  font-weight: 400;
1227
1604
  }
1228
1605
 
1229
1606
  .#{$fa-css-prefix}.#{$fa-css-prefix}-twitch {
1230
- font-family: 'Font Awesome 5 Brands';
1607
+ font-family: "Font Awesome 6 Brands";
1231
1608
  font-weight: 400;
1232
1609
  }
1233
1610
 
1234
1611
  .#{$fa-css-prefix}.#{$fa-css-prefix}-yelp {
1235
- font-family: 'Font Awesome 5 Brands';
1612
+ font-family: "Font Awesome 6 Brands";
1236
1613
  font-weight: 400;
1237
1614
  }
1238
1615
 
1239
1616
  .#{$fa-css-prefix}.#{$fa-css-prefix}-newspaper-o {
1240
- font-family: 'Font Awesome 5 Free';
1617
+ font-family: "Font Awesome 6 Free";
1241
1618
  font-weight: 400;
1242
1619
  }
1243
- .#{$fa-css-prefix}.#{$fa-css-prefix}-newspaper-o:before { content: fa-content($fa-var-newspaper); }
1620
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-newspaper-o:before {
1621
+ content: unquote('"#{ $fa-var-newspaper }"');
1622
+ }
1244
1623
 
1245
1624
  .#{$fa-css-prefix}.#{$fa-css-prefix}-paypal {
1246
- font-family: 'Font Awesome 5 Brands';
1625
+ font-family: "Font Awesome 6 Brands";
1247
1626
  font-weight: 400;
1248
1627
  }
1249
1628
 
1250
1629
  .#{$fa-css-prefix}.#{$fa-css-prefix}-google-wallet {
1251
- font-family: 'Font Awesome 5 Brands';
1630
+ font-family: "Font Awesome 6 Brands";
1252
1631
  font-weight: 400;
1253
1632
  }
1254
1633
 
1255
1634
  .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-visa {
1256
- font-family: 'Font Awesome 5 Brands';
1635
+ font-family: "Font Awesome 6 Brands";
1257
1636
  font-weight: 400;
1258
1637
  }
1259
1638
 
1260
1639
  .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-mastercard {
1261
- font-family: 'Font Awesome 5 Brands';
1640
+ font-family: "Font Awesome 6 Brands";
1262
1641
  font-weight: 400;
1263
1642
  }
1264
1643
 
1265
1644
  .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-discover {
1266
- font-family: 'Font Awesome 5 Brands';
1645
+ font-family: "Font Awesome 6 Brands";
1267
1646
  font-weight: 400;
1268
1647
  }
1269
1648
 
1270
1649
  .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-amex {
1271
- font-family: 'Font Awesome 5 Brands';
1650
+ font-family: "Font Awesome 6 Brands";
1272
1651
  font-weight: 400;
1273
1652
  }
1274
1653
 
1275
1654
  .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-paypal {
1276
- font-family: 'Font Awesome 5 Brands';
1655
+ font-family: "Font Awesome 6 Brands";
1277
1656
  font-weight: 400;
1278
1657
  }
1279
1658
 
1280
1659
  .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-stripe {
1281
- font-family: 'Font Awesome 5 Brands';
1660
+ font-family: "Font Awesome 6 Brands";
1282
1661
  font-weight: 400;
1283
1662
  }
1284
1663
 
1285
1664
  .#{$fa-css-prefix}.#{$fa-css-prefix}-bell-slash-o {
1286
- font-family: 'Font Awesome 5 Free';
1665
+ font-family: "Font Awesome 6 Free";
1287
1666
  font-weight: 400;
1288
1667
  }
1289
- .#{$fa-css-prefix}.#{$fa-css-prefix}-bell-slash-o:before { content: fa-content($fa-var-bell-slash); }
1668
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bell-slash-o:before {
1669
+ content: unquote('"#{ $fa-var-bell-slash }"');
1670
+ }
1290
1671
 
1291
- .#{$fa-css-prefix}.#{$fa-css-prefix}-trash:before { content: fa-content($fa-var-trash-alt); }
1672
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-trash:before {
1673
+ content: unquote('"#{ $fa-var-trash-can }"');
1674
+ }
1292
1675
 
1293
1676
  .#{$fa-css-prefix}.#{$fa-css-prefix}-copyright {
1294
- font-family: 'Font Awesome 5 Free';
1677
+ font-family: "Font Awesome 6 Free";
1295
1678
  font-weight: 400;
1296
1679
  }
1297
1680
 
1298
- .#{$fa-css-prefix}.#{$fa-css-prefix}-eyedropper:before { content: fa-content($fa-var-eye-dropper); }
1681
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-eyedropper:before {
1682
+ content: unquote('"#{ $fa-var-eye-dropper }"');
1683
+ }
1299
1684
 
1300
- .#{$fa-css-prefix}.#{$fa-css-prefix}-area-chart:before { content: fa-content($fa-var-chart-area); }
1685
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-area-chart:before {
1686
+ content: unquote('"#{ $fa-var-chart-area }"');
1687
+ }
1301
1688
 
1302
- .#{$fa-css-prefix}.#{$fa-css-prefix}-pie-chart:before { content: fa-content($fa-var-chart-pie); }
1689
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-pie-chart:before {
1690
+ content: unquote('"#{ $fa-var-chart-pie }"');
1691
+ }
1303
1692
 
1304
- .#{$fa-css-prefix}.#{$fa-css-prefix}-line-chart:before { content: fa-content($fa-var-chart-line); }
1693
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-line-chart:before {
1694
+ content: unquote('"#{ $fa-var-chart-line }"');
1695
+ }
1305
1696
 
1306
1697
  .#{$fa-css-prefix}.#{$fa-css-prefix}-lastfm {
1307
- font-family: 'Font Awesome 5 Brands';
1698
+ font-family: "Font Awesome 6 Brands";
1308
1699
  font-weight: 400;
1309
1700
  }
1310
1701
 
1311
1702
  .#{$fa-css-prefix}.#{$fa-css-prefix}-lastfm-square {
1312
- font-family: 'Font Awesome 5 Brands';
1703
+ font-family: "Font Awesome 6 Brands";
1313
1704
  font-weight: 400;
1314
1705
  }
1315
1706
 
1316
1707
  .#{$fa-css-prefix}.#{$fa-css-prefix}-ioxhost {
1317
- font-family: 'Font Awesome 5 Brands';
1708
+ font-family: "Font Awesome 6 Brands";
1318
1709
  font-weight: 400;
1319
1710
  }
1320
1711
 
1321
1712
  .#{$fa-css-prefix}.#{$fa-css-prefix}-angellist {
1322
- font-family: 'Font Awesome 5 Brands';
1713
+ font-family: "Font Awesome 6 Brands";
1323
1714
  font-weight: 400;
1324
1715
  }
1325
1716
 
1326
1717
  .#{$fa-css-prefix}.#{$fa-css-prefix}-cc {
1327
- font-family: 'Font Awesome 5 Free';
1718
+ font-family: "Font Awesome 6 Free";
1328
1719
  font-weight: 400;
1329
1720
  }
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); }
1721
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cc:before {
1722
+ content: unquote('"#{ $fa-var-closed-captioning }"');
1723
+ }
1333
1724
 
1334
- .#{$fa-css-prefix}.#{$fa-css-prefix}-shekel:before { content: fa-content($fa-var-shekel-sign); }
1725
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-ils:before {
1726
+ content: unquote('"#{ $fa-var-shekel-sign }"');
1727
+ }
1335
1728
 
1336
- .#{$fa-css-prefix}.#{$fa-css-prefix}-sheqel:before { content: fa-content($fa-var-shekel-sign); }
1729
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-shekel:before {
1730
+ content: unquote('"#{ $fa-var-shekel-sign }"');
1731
+ }
1337
1732
 
1338
- .#{$fa-css-prefix}.#{$fa-css-prefix}-meanpath {
1339
- font-family: 'Font Awesome 5 Brands';
1340
- font-weight: 400;
1733
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sheqel:before {
1734
+ content: unquote('"#{ $fa-var-shekel-sign }"');
1341
1735
  }
1342
- .#{$fa-css-prefix}.#{$fa-css-prefix}-meanpath:before { content: fa-content($fa-var-font-awesome); }
1343
1736
 
1344
1737
  .#{$fa-css-prefix}.#{$fa-css-prefix}-buysellads {
1345
- font-family: 'Font Awesome 5 Brands';
1738
+ font-family: "Font Awesome 6 Brands";
1346
1739
  font-weight: 400;
1347
1740
  }
1348
1741
 
1349
1742
  .#{$fa-css-prefix}.#{$fa-css-prefix}-connectdevelop {
1350
- font-family: 'Font Awesome 5 Brands';
1743
+ font-family: "Font Awesome 6 Brands";
1351
1744
  font-weight: 400;
1352
1745
  }
1353
1746
 
1354
1747
  .#{$fa-css-prefix}.#{$fa-css-prefix}-dashcube {
1355
- font-family: 'Font Awesome 5 Brands';
1748
+ font-family: "Font Awesome 6 Brands";
1356
1749
  font-weight: 400;
1357
1750
  }
1358
1751
 
1359
1752
  .#{$fa-css-prefix}.#{$fa-css-prefix}-forumbee {
1360
- font-family: 'Font Awesome 5 Brands';
1753
+ font-family: "Font Awesome 6 Brands";
1361
1754
  font-weight: 400;
1362
1755
  }
1363
1756
 
1364
1757
  .#{$fa-css-prefix}.#{$fa-css-prefix}-leanpub {
1365
- font-family: 'Font Awesome 5 Brands';
1758
+ font-family: "Font Awesome 6 Brands";
1366
1759
  font-weight: 400;
1367
1760
  }
1368
1761
 
1369
1762
  .#{$fa-css-prefix}.#{$fa-css-prefix}-sellsy {
1370
- font-family: 'Font Awesome 5 Brands';
1763
+ font-family: "Font Awesome 6 Brands";
1371
1764
  font-weight: 400;
1372
1765
  }
1373
1766
 
1374
1767
  .#{$fa-css-prefix}.#{$fa-css-prefix}-shirtsinbulk {
1375
- font-family: 'Font Awesome 5 Brands';
1768
+ font-family: "Font Awesome 6 Brands";
1376
1769
  font-weight: 400;
1377
1770
  }
1378
1771
 
1379
1772
  .#{$fa-css-prefix}.#{$fa-css-prefix}-simplybuilt {
1380
- font-family: 'Font Awesome 5 Brands';
1773
+ font-family: "Font Awesome 6 Brands";
1381
1774
  font-weight: 400;
1382
1775
  }
1383
1776
 
1384
1777
  .#{$fa-css-prefix}.#{$fa-css-prefix}-skyatlas {
1385
- font-family: 'Font Awesome 5 Brands';
1778
+ font-family: "Font Awesome 6 Brands";
1386
1779
  font-weight: 400;
1387
1780
  }
1388
1781
 
1389
1782
  .#{$fa-css-prefix}.#{$fa-css-prefix}-diamond {
1390
- font-family: 'Font Awesome 5 Free';
1783
+ font-family: "Font Awesome 6 Free";
1391
1784
  font-weight: 400;
1392
1785
  }
1393
- .#{$fa-css-prefix}.#{$fa-css-prefix}-diamond:before { content: fa-content($fa-var-gem); }
1786
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-diamond:before {
1787
+ content: unquote('"#{ $fa-var-gem }"');
1788
+ }
1394
1789
 
1395
- .#{$fa-css-prefix}.#{$fa-css-prefix}-intersex:before { content: fa-content($fa-var-transgender); }
1790
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-transgender:before {
1791
+ content: unquote('"#{ $fa-var-mars-and-venus }"');
1792
+ }
1793
+
1794
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-intersex:before {
1795
+ content: unquote('"#{ $fa-var-mars-and-venus }"');
1796
+ }
1797
+
1798
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-transgender-alt:before {
1799
+ content: unquote('"#{ $fa-var-transgender }"');
1800
+ }
1396
1801
 
1397
1802
  .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-official {
1398
- font-family: 'Font Awesome 5 Brands';
1803
+ font-family: "Font Awesome 6 Brands";
1399
1804
  font-weight: 400;
1400
1805
  }
1401
- .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-official:before { content: fa-content($fa-var-facebook); }
1806
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-official:before {
1807
+ content: unquote('"#{ $fa-var-facebook }"');
1808
+ }
1402
1809
 
1403
1810
  .#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest-p {
1404
- font-family: 'Font Awesome 5 Brands';
1811
+ font-family: "Font Awesome 6 Brands";
1405
1812
  font-weight: 400;
1406
1813
  }
1407
1814
 
1408
1815
  .#{$fa-css-prefix}.#{$fa-css-prefix}-whatsapp {
1409
- font-family: 'Font Awesome 5 Brands';
1816
+ font-family: "Font Awesome 6 Brands";
1410
1817
  font-weight: 400;
1411
1818
  }
1412
1819
 
1413
- .#{$fa-css-prefix}.#{$fa-css-prefix}-hotel:before { content: fa-content($fa-var-bed); }
1820
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hotel:before {
1821
+ content: unquote('"#{ $fa-var-bed }"');
1822
+ }
1414
1823
 
1415
1824
  .#{$fa-css-prefix}.#{$fa-css-prefix}-viacoin {
1416
- font-family: 'Font Awesome 5 Brands';
1825
+ font-family: "Font Awesome 6 Brands";
1417
1826
  font-weight: 400;
1418
1827
  }
1419
1828
 
1420
1829
  .#{$fa-css-prefix}.#{$fa-css-prefix}-medium {
1421
- font-family: 'Font Awesome 5 Brands';
1830
+ font-family: "Font Awesome 6 Brands";
1422
1831
  font-weight: 400;
1423
1832
  }
1424
1833
 
1425
1834
  .#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator {
1426
- font-family: 'Font Awesome 5 Brands';
1835
+ font-family: "Font Awesome 6 Brands";
1427
1836
  font-weight: 400;
1428
1837
  }
1429
1838
 
1430
1839
  .#{$fa-css-prefix}.#{$fa-css-prefix}-yc {
1431
- font-family: 'Font Awesome 5 Brands';
1840
+ font-family: "Font Awesome 6 Brands";
1432
1841
  font-weight: 400;
1433
1842
  }
1434
- .#{$fa-css-prefix}.#{$fa-css-prefix}-yc:before { content: fa-content($fa-var-y-combinator); }
1843
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-yc:before {
1844
+ content: unquote('"#{ $fa-var-y-combinator }"');
1845
+ }
1435
1846
 
1436
1847
  .#{$fa-css-prefix}.#{$fa-css-prefix}-optin-monster {
1437
- font-family: 'Font Awesome 5 Brands';
1848
+ font-family: "Font Awesome 6 Brands";
1438
1849
  font-weight: 400;
1439
1850
  }
1440
1851
 
1441
1852
  .#{$fa-css-prefix}.#{$fa-css-prefix}-opencart {
1442
- font-family: 'Font Awesome 5 Brands';
1853
+ font-family: "Font Awesome 6 Brands";
1443
1854
  font-weight: 400;
1444
1855
  }
1445
1856
 
1446
1857
  .#{$fa-css-prefix}.#{$fa-css-prefix}-expeditedssl {
1447
- font-family: 'Font Awesome 5 Brands';
1858
+ font-family: "Font Awesome 6 Brands";
1448
1859
  font-weight: 400;
1449
1860
  }
1450
1861
 
1451
- .#{$fa-css-prefix}.#{$fa-css-prefix}-battery-4:before { content: fa-content($fa-var-battery-full); }
1862
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-battery-4:before {
1863
+ content: unquote('"#{ $fa-var-battery-full }"');
1864
+ }
1452
1865
 
1453
- .#{$fa-css-prefix}.#{$fa-css-prefix}-battery:before { content: fa-content($fa-var-battery-full); }
1866
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-battery:before {
1867
+ content: unquote('"#{ $fa-var-battery-full }"');
1868
+ }
1454
1869
 
1455
- .#{$fa-css-prefix}.#{$fa-css-prefix}-battery-3:before { content: fa-content($fa-var-battery-three-quarters); }
1870
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-battery-3:before {
1871
+ content: unquote('"#{ $fa-var-battery-three-quarters }"');
1872
+ }
1456
1873
 
1457
- .#{$fa-css-prefix}.#{$fa-css-prefix}-battery-2:before { content: fa-content($fa-var-battery-half); }
1874
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-battery-2:before {
1875
+ content: unquote('"#{ $fa-var-battery-half }"');
1876
+ }
1458
1877
 
1459
- .#{$fa-css-prefix}.#{$fa-css-prefix}-battery-1:before { content: fa-content($fa-var-battery-quarter); }
1878
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-battery-1:before {
1879
+ content: unquote('"#{ $fa-var-battery-quarter }"');
1880
+ }
1460
1881
 
1461
- .#{$fa-css-prefix}.#{$fa-css-prefix}-battery-0:before { content: fa-content($fa-var-battery-empty); }
1882
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-battery-0:before {
1883
+ content: unquote('"#{ $fa-var-battery-empty }"');
1884
+ }
1462
1885
 
1463
1886
  .#{$fa-css-prefix}.#{$fa-css-prefix}-object-group {
1464
- font-family: 'Font Awesome 5 Free';
1887
+ font-family: "Font Awesome 6 Free";
1465
1888
  font-weight: 400;
1466
1889
  }
1467
1890
 
1468
1891
  .#{$fa-css-prefix}.#{$fa-css-prefix}-object-ungroup {
1469
- font-family: 'Font Awesome 5 Free';
1892
+ font-family: "Font Awesome 6 Free";
1470
1893
  font-weight: 400;
1471
1894
  }
1472
1895
 
1473
1896
  .#{$fa-css-prefix}.#{$fa-css-prefix}-sticky-note-o {
1474
- font-family: 'Font Awesome 5 Free';
1897
+ font-family: "Font Awesome 6 Free";
1475
1898
  font-weight: 400;
1476
1899
  }
1477
- .#{$fa-css-prefix}.#{$fa-css-prefix}-sticky-note-o:before { content: fa-content($fa-var-sticky-note); }
1900
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sticky-note-o:before {
1901
+ content: unquote('"#{ $fa-var-note-sticky }"');
1902
+ }
1478
1903
 
1479
1904
  .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-jcb {
1480
- font-family: 'Font Awesome 5 Brands';
1905
+ font-family: "Font Awesome 6 Brands";
1481
1906
  font-weight: 400;
1482
1907
  }
1483
1908
 
1484
1909
  .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-diners-club {
1485
- font-family: 'Font Awesome 5 Brands';
1910
+ font-family: "Font Awesome 6 Brands";
1486
1911
  font-weight: 400;
1487
1912
  }
1488
1913
 
1489
1914
  .#{$fa-css-prefix}.#{$fa-css-prefix}-clone {
1490
- font-family: 'Font Awesome 5 Free';
1915
+ font-family: "Font Awesome 6 Free";
1491
1916
  font-weight: 400;
1492
1917
  }
1493
1918
 
1494
- .#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-o {
1495
- font-family: 'Font Awesome 5 Free';
1496
- font-weight: 400;
1919
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-o:before {
1920
+ content: unquote('"#{ $fa-var-hourglass-empty }"');
1497
1921
  }
1498
- .#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-o:before { content: fa-content($fa-var-hourglass); }
1499
1922
 
1500
- .#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-1:before { content: fa-content($fa-var-hourglass-start); }
1923
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-1:before {
1924
+ content: unquote('"#{ $fa-var-hourglass-start }"');
1925
+ }
1501
1926
 
1502
- .#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-2:before { content: fa-content($fa-var-hourglass-half); }
1927
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-half:before {
1928
+ content: unquote('"#{ $fa-var-hourglass }"');
1929
+ }
1930
+
1931
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-2:before {
1932
+ content: unquote('"#{ $fa-var-hourglass }"');
1933
+ }
1503
1934
 
1504
- .#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-3:before { content: fa-content($fa-var-hourglass-end); }
1935
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-3:before {
1936
+ content: unquote('"#{ $fa-var-hourglass-end }"');
1937
+ }
1505
1938
 
1506
1939
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-rock-o {
1507
- font-family: 'Font Awesome 5 Free';
1940
+ font-family: "Font Awesome 6 Free";
1508
1941
  font-weight: 400;
1509
1942
  }
1510
- .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-rock-o:before { content: fa-content($fa-var-hand-rock); }
1943
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-rock-o:before {
1944
+ content: unquote('"#{ $fa-var-hand-back-fist }"');
1945
+ }
1511
1946
 
1512
1947
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-grab-o {
1513
- font-family: 'Font Awesome 5 Free';
1948
+ font-family: "Font Awesome 6 Free";
1514
1949
  font-weight: 400;
1515
1950
  }
1516
- .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-grab-o:before { content: fa-content($fa-var-hand-rock); }
1951
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-grab-o:before {
1952
+ content: unquote('"#{ $fa-var-hand-back-fist }"');
1953
+ }
1517
1954
 
1518
1955
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-paper-o {
1519
- font-family: 'Font Awesome 5 Free';
1956
+ font-family: "Font Awesome 6 Free";
1520
1957
  font-weight: 400;
1521
1958
  }
1522
- .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-paper-o:before { content: fa-content($fa-var-hand-paper); }
1959
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-paper-o:before {
1960
+ content: unquote('"#{ $fa-var-hand }"');
1961
+ }
1523
1962
 
1524
1963
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-stop-o {
1525
- font-family: 'Font Awesome 5 Free';
1964
+ font-family: "Font Awesome 6 Free";
1526
1965
  font-weight: 400;
1527
1966
  }
1528
- .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-stop-o:before { content: fa-content($fa-var-hand-paper); }
1967
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-stop-o:before {
1968
+ content: unquote('"#{ $fa-var-hand }"');
1969
+ }
1529
1970
 
1530
1971
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-scissors-o {
1531
- font-family: 'Font Awesome 5 Free';
1972
+ font-family: "Font Awesome 6 Free";
1532
1973
  font-weight: 400;
1533
1974
  }
1534
- .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-scissors-o:before { content: fa-content($fa-var-hand-scissors); }
1975
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-scissors-o:before {
1976
+ content: unquote('"#{ $fa-var-hand-scissors }"');
1977
+ }
1535
1978
 
1536
1979
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-lizard-o {
1537
- font-family: 'Font Awesome 5 Free';
1980
+ font-family: "Font Awesome 6 Free";
1538
1981
  font-weight: 400;
1539
1982
  }
1540
- .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-lizard-o:before { content: fa-content($fa-var-hand-lizard); }
1983
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-lizard-o:before {
1984
+ content: unquote('"#{ $fa-var-hand-lizard }"');
1985
+ }
1541
1986
 
1542
1987
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-spock-o {
1543
- font-family: 'Font Awesome 5 Free';
1988
+ font-family: "Font Awesome 6 Free";
1544
1989
  font-weight: 400;
1545
1990
  }
1546
- .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-spock-o:before { content: fa-content($fa-var-hand-spock); }
1991
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-spock-o:before {
1992
+ content: unquote('"#{ $fa-var-hand-spock }"');
1993
+ }
1547
1994
 
1548
1995
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-pointer-o {
1549
- font-family: 'Font Awesome 5 Free';
1996
+ font-family: "Font Awesome 6 Free";
1550
1997
  font-weight: 400;
1551
1998
  }
1552
- .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-pointer-o:before { content: fa-content($fa-var-hand-pointer); }
1999
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-pointer-o:before {
2000
+ content: unquote('"#{ $fa-var-hand-pointer }"');
2001
+ }
1553
2002
 
1554
2003
  .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-peace-o {
1555
- font-family: 'Font Awesome 5 Free';
2004
+ font-family: "Font Awesome 6 Free";
1556
2005
  font-weight: 400;
1557
2006
  }
1558
- .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-peace-o:before { content: fa-content($fa-var-hand-peace); }
2007
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-peace-o:before {
2008
+ content: unquote('"#{ $fa-var-hand-peace }"');
2009
+ }
1559
2010
 
1560
2011
  .#{$fa-css-prefix}.#{$fa-css-prefix}-registered {
1561
- font-family: 'Font Awesome 5 Free';
2012
+ font-family: "Font Awesome 6 Free";
1562
2013
  font-weight: 400;
1563
2014
  }
1564
2015
 
1565
2016
  .#{$fa-css-prefix}.#{$fa-css-prefix}-creative-commons {
1566
- font-family: 'Font Awesome 5 Brands';
2017
+ font-family: "Font Awesome 6 Brands";
1567
2018
  font-weight: 400;
1568
2019
  }
1569
2020
 
1570
2021
  .#{$fa-css-prefix}.#{$fa-css-prefix}-gg {
1571
- font-family: 'Font Awesome 5 Brands';
2022
+ font-family: "Font Awesome 6 Brands";
1572
2023
  font-weight: 400;
1573
2024
  }
1574
2025
 
1575
2026
  .#{$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';
2027
+ font-family: "Font Awesome 6 Brands";
1582
2028
  font-weight: 400;
1583
2029
  }
1584
2030
 
1585
2031
  .#{$fa-css-prefix}.#{$fa-css-prefix}-odnoklassniki {
1586
- font-family: 'Font Awesome 5 Brands';
2032
+ font-family: "Font Awesome 6 Brands";
1587
2033
  font-weight: 400;
1588
2034
  }
1589
2035
 
1590
2036
  .#{$fa-css-prefix}.#{$fa-css-prefix}-odnoklassniki-square {
1591
- font-family: 'Font Awesome 5 Brands';
2037
+ font-family: "Font Awesome 6 Brands";
1592
2038
  font-weight: 400;
1593
2039
  }
1594
2040
 
1595
2041
  .#{$fa-css-prefix}.#{$fa-css-prefix}-get-pocket {
1596
- font-family: 'Font Awesome 5 Brands';
2042
+ font-family: "Font Awesome 6 Brands";
1597
2043
  font-weight: 400;
1598
2044
  }
1599
2045
 
1600
2046
  .#{$fa-css-prefix}.#{$fa-css-prefix}-wikipedia-w {
1601
- font-family: 'Font Awesome 5 Brands';
2047
+ font-family: "Font Awesome 6 Brands";
1602
2048
  font-weight: 400;
1603
2049
  }
1604
2050
 
1605
2051
  .#{$fa-css-prefix}.#{$fa-css-prefix}-safari {
1606
- font-family: 'Font Awesome 5 Brands';
2052
+ font-family: "Font Awesome 6 Brands";
1607
2053
  font-weight: 400;
1608
2054
  }
1609
2055
 
1610
2056
  .#{$fa-css-prefix}.#{$fa-css-prefix}-chrome {
1611
- font-family: 'Font Awesome 5 Brands';
2057
+ font-family: "Font Awesome 6 Brands";
1612
2058
  font-weight: 400;
1613
2059
  }
1614
2060
 
1615
2061
  .#{$fa-css-prefix}.#{$fa-css-prefix}-firefox {
1616
- font-family: 'Font Awesome 5 Brands';
2062
+ font-family: "Font Awesome 6 Brands";
1617
2063
  font-weight: 400;
1618
2064
  }
1619
2065
 
1620
2066
  .#{$fa-css-prefix}.#{$fa-css-prefix}-opera {
1621
- font-family: 'Font Awesome 5 Brands';
2067
+ font-family: "Font Awesome 6 Brands";
1622
2068
  font-weight: 400;
1623
2069
  }
1624
2070
 
1625
2071
  .#{$fa-css-prefix}.#{$fa-css-prefix}-internet-explorer {
1626
- font-family: 'Font Awesome 5 Brands';
2072
+ font-family: "Font Awesome 6 Brands";
1627
2073
  font-weight: 400;
1628
2074
  }
1629
2075
 
1630
- .#{$fa-css-prefix}.#{$fa-css-prefix}-television:before { content: fa-content($fa-var-tv); }
2076
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-television:before {
2077
+ content: unquote('"#{ $fa-var-tv }"');
2078
+ }
1631
2079
 
1632
2080
  .#{$fa-css-prefix}.#{$fa-css-prefix}-contao {
1633
- font-family: 'Font Awesome 5 Brands';
2081
+ font-family: "Font Awesome 6 Brands";
1634
2082
  font-weight: 400;
1635
2083
  }
1636
2084
 
1637
2085
  .#{$fa-css-prefix}.#{$fa-css-prefix}-500px {
1638
- font-family: 'Font Awesome 5 Brands';
2086
+ font-family: "Font Awesome 6 Brands";
1639
2087
  font-weight: 400;
1640
2088
  }
1641
2089
 
1642
2090
  .#{$fa-css-prefix}.#{$fa-css-prefix}-amazon {
1643
- font-family: 'Font Awesome 5 Brands';
2091
+ font-family: "Font Awesome 6 Brands";
1644
2092
  font-weight: 400;
1645
2093
  }
1646
2094
 
1647
2095
  .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-plus-o {
1648
- font-family: 'Font Awesome 5 Free';
2096
+ font-family: "Font Awesome 6 Free";
1649
2097
  font-weight: 400;
1650
2098
  }
1651
- .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-plus-o:before { content: fa-content($fa-var-calendar-plus); }
2099
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-plus-o:before {
2100
+ content: unquote('"#{ $fa-var-calendar-plus }"');
2101
+ }
1652
2102
 
1653
2103
  .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-minus-o {
1654
- font-family: 'Font Awesome 5 Free';
2104
+ font-family: "Font Awesome 6 Free";
1655
2105
  font-weight: 400;
1656
2106
  }
1657
- .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-minus-o:before { content: fa-content($fa-var-calendar-minus); }
2107
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-minus-o:before {
2108
+ content: unquote('"#{ $fa-var-calendar-minus }"');
2109
+ }
1658
2110
 
1659
2111
  .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-times-o {
1660
- font-family: 'Font Awesome 5 Free';
2112
+ font-family: "Font Awesome 6 Free";
1661
2113
  font-weight: 400;
1662
2114
  }
1663
- .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-times-o:before { content: fa-content($fa-var-calendar-times); }
2115
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-times-o:before {
2116
+ content: unquote('"#{ $fa-var-calendar-xmark }"');
2117
+ }
1664
2118
 
1665
2119
  .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-check-o {
1666
- font-family: 'Font Awesome 5 Free';
2120
+ font-family: "Font Awesome 6 Free";
1667
2121
  font-weight: 400;
1668
2122
  }
1669
- .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-check-o:before { content: fa-content($fa-var-calendar-check); }
2123
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-check-o:before {
2124
+ content: unquote('"#{ $fa-var-calendar-check }"');
2125
+ }
1670
2126
 
1671
2127
  .#{$fa-css-prefix}.#{$fa-css-prefix}-map-o {
1672
- font-family: 'Font Awesome 5 Free';
2128
+ font-family: "Font Awesome 6 Free";
1673
2129
  font-weight: 400;
1674
2130
  }
1675
- .#{$fa-css-prefix}.#{$fa-css-prefix}-map-o:before { content: fa-content($fa-var-map); }
2131
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-map-o:before {
2132
+ content: unquote('"#{ $fa-var-map }"');
2133
+ }
1676
2134
 
1677
- .#{$fa-css-prefix}.#{$fa-css-prefix}-commenting:before { content: fa-content($fa-var-comment-dots); }
2135
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-commenting:before {
2136
+ content: unquote('"#{ $fa-var-comment-dots }"');
2137
+ }
1678
2138
 
1679
2139
  .#{$fa-css-prefix}.#{$fa-css-prefix}-commenting-o {
1680
- font-family: 'Font Awesome 5 Free';
2140
+ font-family: "Font Awesome 6 Free";
1681
2141
  font-weight: 400;
1682
2142
  }
1683
- .#{$fa-css-prefix}.#{$fa-css-prefix}-commenting-o:before { content: fa-content($fa-var-comment-dots); }
2143
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-commenting-o:before {
2144
+ content: unquote('"#{ $fa-var-comment-dots }"');
2145
+ }
1684
2146
 
1685
2147
  .#{$fa-css-prefix}.#{$fa-css-prefix}-houzz {
1686
- font-family: 'Font Awesome 5 Brands';
2148
+ font-family: "Font Awesome 6 Brands";
1687
2149
  font-weight: 400;
1688
2150
  }
1689
2151
 
1690
2152
  .#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo {
1691
- font-family: 'Font Awesome 5 Brands';
2153
+ font-family: "Font Awesome 6 Brands";
1692
2154
  font-weight: 400;
1693
2155
  }
1694
- .#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo:before { content: fa-content($fa-var-vimeo-v); }
2156
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo:before {
2157
+ content: unquote('"#{ $fa-var-vimeo-v }"');
2158
+ }
1695
2159
 
1696
2160
  .#{$fa-css-prefix}.#{$fa-css-prefix}-black-tie {
1697
- font-family: 'Font Awesome 5 Brands';
2161
+ font-family: "Font Awesome 6 Brands";
1698
2162
  font-weight: 400;
1699
2163
  }
1700
2164
 
1701
2165
  .#{$fa-css-prefix}.#{$fa-css-prefix}-fonticons {
1702
- font-family: 'Font Awesome 5 Brands';
2166
+ font-family: "Font Awesome 6 Brands";
1703
2167
  font-weight: 400;
1704
2168
  }
1705
2169
 
1706
2170
  .#{$fa-css-prefix}.#{$fa-css-prefix}-reddit-alien {
1707
- font-family: 'Font Awesome 5 Brands';
2171
+ font-family: "Font Awesome 6 Brands";
1708
2172
  font-weight: 400;
1709
2173
  }
1710
2174
 
1711
2175
  .#{$fa-css-prefix}.#{$fa-css-prefix}-edge {
1712
- font-family: 'Font Awesome 5 Brands';
2176
+ font-family: "Font Awesome 6 Brands";
1713
2177
  font-weight: 400;
1714
2178
  }
1715
2179
 
1716
- .#{$fa-css-prefix}.#{$fa-css-prefix}-credit-card-alt:before { content: fa-content($fa-var-credit-card); }
2180
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-credit-card-alt:before {
2181
+ content: unquote('"#{ $fa-var-credit-card }"');
2182
+ }
1717
2183
 
1718
2184
  .#{$fa-css-prefix}.#{$fa-css-prefix}-codiepie {
1719
- font-family: 'Font Awesome 5 Brands';
2185
+ font-family: "Font Awesome 6 Brands";
1720
2186
  font-weight: 400;
1721
2187
  }
1722
2188
 
1723
2189
  .#{$fa-css-prefix}.#{$fa-css-prefix}-modx {
1724
- font-family: 'Font Awesome 5 Brands';
2190
+ font-family: "Font Awesome 6 Brands";
1725
2191
  font-weight: 400;
1726
2192
  }
1727
2193
 
1728
2194
  .#{$fa-css-prefix}.#{$fa-css-prefix}-fort-awesome {
1729
- font-family: 'Font Awesome 5 Brands';
2195
+ font-family: "Font Awesome 6 Brands";
1730
2196
  font-weight: 400;
1731
2197
  }
1732
2198
 
1733
2199
  .#{$fa-css-prefix}.#{$fa-css-prefix}-usb {
1734
- font-family: 'Font Awesome 5 Brands';
2200
+ font-family: "Font Awesome 6 Brands";
1735
2201
  font-weight: 400;
1736
2202
  }
1737
2203
 
1738
2204
  .#{$fa-css-prefix}.#{$fa-css-prefix}-product-hunt {
1739
- font-family: 'Font Awesome 5 Brands';
2205
+ font-family: "Font Awesome 6 Brands";
1740
2206
  font-weight: 400;
1741
2207
  }
1742
2208
 
1743
2209
  .#{$fa-css-prefix}.#{$fa-css-prefix}-mixcloud {
1744
- font-family: 'Font Awesome 5 Brands';
2210
+ font-family: "Font Awesome 6 Brands";
1745
2211
  font-weight: 400;
1746
2212
  }
1747
2213
 
1748
2214
  .#{$fa-css-prefix}.#{$fa-css-prefix}-scribd {
1749
- font-family: 'Font Awesome 5 Brands';
2215
+ font-family: "Font Awesome 6 Brands";
1750
2216
  font-weight: 400;
1751
2217
  }
1752
2218
 
1753
2219
  .#{$fa-css-prefix}.#{$fa-css-prefix}-pause-circle-o {
1754
- font-family: 'Font Awesome 5 Free';
2220
+ font-family: "Font Awesome 6 Free";
1755
2221
  font-weight: 400;
1756
2222
  }
1757
- .#{$fa-css-prefix}.#{$fa-css-prefix}-pause-circle-o:before { content: fa-content($fa-var-pause-circle); }
2223
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-pause-circle-o:before {
2224
+ content: unquote('"#{ $fa-var-circle-pause }"');
2225
+ }
1758
2226
 
1759
2227
  .#{$fa-css-prefix}.#{$fa-css-prefix}-stop-circle-o {
1760
- font-family: 'Font Awesome 5 Free';
2228
+ font-family: "Font Awesome 6 Free";
1761
2229
  font-weight: 400;
1762
2230
  }
1763
- .#{$fa-css-prefix}.#{$fa-css-prefix}-stop-circle-o:before { content: fa-content($fa-var-stop-circle); }
2231
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-stop-circle-o:before {
2232
+ content: unquote('"#{ $fa-var-circle-stop }"');
2233
+ }
1764
2234
 
1765
2235
  .#{$fa-css-prefix}.#{$fa-css-prefix}-bluetooth {
1766
- font-family: 'Font Awesome 5 Brands';
2236
+ font-family: "Font Awesome 6 Brands";
1767
2237
  font-weight: 400;
1768
2238
  }
1769
2239
 
1770
2240
  .#{$fa-css-prefix}.#{$fa-css-prefix}-bluetooth-b {
1771
- font-family: 'Font Awesome 5 Brands';
2241
+ font-family: "Font Awesome 6 Brands";
1772
2242
  font-weight: 400;
1773
2243
  }
1774
2244
 
1775
2245
  .#{$fa-css-prefix}.#{$fa-css-prefix}-gitlab {
1776
- font-family: 'Font Awesome 5 Brands';
2246
+ font-family: "Font Awesome 6 Brands";
1777
2247
  font-weight: 400;
1778
2248
  }
1779
2249
 
1780
2250
  .#{$fa-css-prefix}.#{$fa-css-prefix}-wpbeginner {
1781
- font-family: 'Font Awesome 5 Brands';
2251
+ font-family: "Font Awesome 6 Brands";
1782
2252
  font-weight: 400;
1783
2253
  }
1784
2254
 
1785
2255
  .#{$fa-css-prefix}.#{$fa-css-prefix}-wpforms {
1786
- font-family: 'Font Awesome 5 Brands';
2256
+ font-family: "Font Awesome 6 Brands";
1787
2257
  font-weight: 400;
1788
2258
  }
1789
2259
 
1790
2260
  .#{$fa-css-prefix}.#{$fa-css-prefix}-envira {
1791
- font-family: 'Font Awesome 5 Brands';
2261
+ font-family: "Font Awesome 6 Brands";
1792
2262
  font-weight: 400;
1793
2263
  }
1794
2264
 
1795
2265
  .#{$fa-css-prefix}.#{$fa-css-prefix}-wheelchair-alt {
1796
- font-family: 'Font Awesome 5 Brands';
2266
+ font-family: "Font Awesome 6 Brands";
1797
2267
  font-weight: 400;
1798
2268
  }
1799
- .#{$fa-css-prefix}.#{$fa-css-prefix}-wheelchair-alt:before { content: fa-content($fa-var-accessible-icon); }
2269
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-wheelchair-alt:before {
2270
+ content: unquote('"#{ $fa-var-accessible-icon }"');
2271
+ }
1800
2272
 
1801
2273
  .#{$fa-css-prefix}.#{$fa-css-prefix}-question-circle-o {
1802
- font-family: 'Font Awesome 5 Free';
2274
+ font-family: "Font Awesome 6 Free";
1803
2275
  font-weight: 400;
1804
2276
  }
1805
- .#{$fa-css-prefix}.#{$fa-css-prefix}-question-circle-o:before { content: fa-content($fa-var-question-circle); }
2277
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-question-circle-o:before {
2278
+ content: unquote('"#{ $fa-var-circle-question }"');
2279
+ }
1806
2280
 
1807
- .#{$fa-css-prefix}.#{$fa-css-prefix}-volume-control-phone:before { content: fa-content($fa-var-phone-volume); }
2281
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-volume-control-phone:before {
2282
+ content: unquote('"#{ $fa-var-phone-volume }"');
2283
+ }
1808
2284
 
1809
- .#{$fa-css-prefix}.#{$fa-css-prefix}-asl-interpreting:before { content: fa-content($fa-var-american-sign-language-interpreting); }
2285
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-asl-interpreting:before {
2286
+ content: unquote('"#{ $fa-var-hands-asl-interpreting }"');
2287
+ }
1810
2288
 
1811
- .#{$fa-css-prefix}.#{$fa-css-prefix}-deafness:before { content: fa-content($fa-var-deaf); }
2289
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-deafness:before {
2290
+ content: unquote('"#{ $fa-var-ear-deaf }"');
2291
+ }
1812
2292
 
1813
- .#{$fa-css-prefix}.#{$fa-css-prefix}-hard-of-hearing:before { content: fa-content($fa-var-deaf); }
2293
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hard-of-hearing:before {
2294
+ content: unquote('"#{ $fa-var-ear-deaf }"');
2295
+ }
1814
2296
 
1815
2297
  .#{$fa-css-prefix}.#{$fa-css-prefix}-glide {
1816
- font-family: 'Font Awesome 5 Brands';
2298
+ font-family: "Font Awesome 6 Brands";
1817
2299
  font-weight: 400;
1818
2300
  }
1819
2301
 
1820
2302
  .#{$fa-css-prefix}.#{$fa-css-prefix}-glide-g {
1821
- font-family: 'Font Awesome 5 Brands';
2303
+ font-family: "Font Awesome 6 Brands";
1822
2304
  font-weight: 400;
1823
2305
  }
1824
2306
 
1825
- .#{$fa-css-prefix}.#{$fa-css-prefix}-signing:before { content: fa-content($fa-var-sign-language); }
2307
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-signing:before {
2308
+ content: unquote('"#{ $fa-var-hands }"');
2309
+ }
1826
2310
 
1827
2311
  .#{$fa-css-prefix}.#{$fa-css-prefix}-viadeo {
1828
- font-family: 'Font Awesome 5 Brands';
2312
+ font-family: "Font Awesome 6 Brands";
1829
2313
  font-weight: 400;
1830
2314
  }
1831
2315
 
1832
2316
  .#{$fa-css-prefix}.#{$fa-css-prefix}-viadeo-square {
1833
- font-family: 'Font Awesome 5 Brands';
2317
+ font-family: "Font Awesome 6 Brands";
1834
2318
  font-weight: 400;
1835
2319
  }
1836
2320
 
1837
2321
  .#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat {
1838
- font-family: 'Font Awesome 5 Brands';
2322
+ font-family: "Font Awesome 6 Brands";
1839
2323
  font-weight: 400;
1840
2324
  }
1841
2325
 
1842
2326
  .#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat-ghost {
1843
- font-family: 'Font Awesome 5 Brands';
2327
+ font-family: "Font Awesome 6 Brands";
1844
2328
  font-weight: 400;
1845
2329
  }
2330
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat-ghost:before {
2331
+ content: unquote('"#{ $fa-var-snapchat }"');
2332
+ }
1846
2333
 
1847
2334
  .#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat-square {
1848
- font-family: 'Font Awesome 5 Brands';
2335
+ font-family: "Font Awesome 6 Brands";
1849
2336
  font-weight: 400;
1850
2337
  }
1851
2338
 
1852
2339
  .#{$fa-css-prefix}.#{$fa-css-prefix}-pied-piper {
1853
- font-family: 'Font Awesome 5 Brands';
2340
+ font-family: "Font Awesome 6 Brands";
1854
2341
  font-weight: 400;
1855
2342
  }
1856
2343
 
1857
2344
  .#{$fa-css-prefix}.#{$fa-css-prefix}-first-order {
1858
- font-family: 'Font Awesome 5 Brands';
2345
+ font-family: "Font Awesome 6 Brands";
1859
2346
  font-weight: 400;
1860
2347
  }
1861
2348
 
1862
2349
  .#{$fa-css-prefix}.#{$fa-css-prefix}-yoast {
1863
- font-family: 'Font Awesome 5 Brands';
2350
+ font-family: "Font Awesome 6 Brands";
1864
2351
  font-weight: 400;
1865
2352
  }
1866
2353
 
1867
2354
  .#{$fa-css-prefix}.#{$fa-css-prefix}-themeisle {
1868
- font-family: 'Font Awesome 5 Brands';
2355
+ font-family: "Font Awesome 6 Brands";
1869
2356
  font-weight: 400;
1870
2357
  }
1871
2358
 
1872
2359
  .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-official {
1873
- font-family: 'Font Awesome 5 Brands';
2360
+ font-family: "Font Awesome 6 Brands";
1874
2361
  font-weight: 400;
1875
2362
  }
1876
- .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-official:before { content: fa-content($fa-var-google-plus); }
2363
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-official:before {
2364
+ content: unquote('"#{ $fa-var-google-plus }"');
2365
+ }
1877
2366
 
1878
2367
  .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-circle {
1879
- font-family: 'Font Awesome 5 Brands';
2368
+ font-family: "Font Awesome 6 Brands";
1880
2369
  font-weight: 400;
1881
2370
  }
1882
- .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-circle:before { content: fa-content($fa-var-google-plus); }
2371
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-circle:before {
2372
+ content: unquote('"#{ $fa-var-google-plus }"');
2373
+ }
1883
2374
 
1884
2375
  .#{$fa-css-prefix}.#{$fa-css-prefix}-font-awesome {
1885
- font-family: 'Font Awesome 5 Brands';
2376
+ font-family: "Font Awesome 6 Brands";
1886
2377
  font-weight: 400;
1887
2378
  }
1888
2379
 
1889
2380
  .#{$fa-css-prefix}.#{$fa-css-prefix}-fa {
1890
- font-family: 'Font Awesome 5 Brands';
2381
+ font-family: "Font Awesome 6 Brands";
1891
2382
  font-weight: 400;
1892
2383
  }
1893
- .#{$fa-css-prefix}.#{$fa-css-prefix}-fa:before { content: fa-content($fa-var-font-awesome); }
2384
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-fa:before {
2385
+ content: unquote('"#{ $fa-var-font-awesome }"');
2386
+ }
1894
2387
 
1895
2388
  .#{$fa-css-prefix}.#{$fa-css-prefix}-handshake-o {
1896
- font-family: 'Font Awesome 5 Free';
2389
+ font-family: "Font Awesome 6 Free";
1897
2390
  font-weight: 400;
1898
2391
  }
1899
- .#{$fa-css-prefix}.#{$fa-css-prefix}-handshake-o:before { content: fa-content($fa-var-handshake); }
2392
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-handshake-o:before {
2393
+ content: unquote('"#{ $fa-var-handshake }"');
2394
+ }
1900
2395
 
1901
2396
  .#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-open-o {
1902
- font-family: 'Font Awesome 5 Free';
2397
+ font-family: "Font Awesome 6 Free";
1903
2398
  font-weight: 400;
1904
2399
  }
1905
- .#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-open-o:before { content: fa-content($fa-var-envelope-open); }
2400
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-open-o:before {
2401
+ content: unquote('"#{ $fa-var-envelope-open }"');
2402
+ }
1906
2403
 
1907
2404
  .#{$fa-css-prefix}.#{$fa-css-prefix}-linode {
1908
- font-family: 'Font Awesome 5 Brands';
2405
+ font-family: "Font Awesome 6 Brands";
1909
2406
  font-weight: 400;
1910
2407
  }
1911
2408
 
1912
2409
  .#{$fa-css-prefix}.#{$fa-css-prefix}-address-book-o {
1913
- font-family: 'Font Awesome 5 Free';
2410
+ font-family: "Font Awesome 6 Free";
1914
2411
  font-weight: 400;
1915
2412
  }
1916
- .#{$fa-css-prefix}.#{$fa-css-prefix}-address-book-o:before { content: fa-content($fa-var-address-book); }
2413
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-address-book-o:before {
2414
+ content: unquote('"#{ $fa-var-address-book }"');
2415
+ }
1917
2416
 
1918
- .#{$fa-css-prefix}.#{$fa-css-prefix}-vcard:before { content: fa-content($fa-var-address-card); }
2417
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-vcard:before {
2418
+ content: unquote('"#{ $fa-var-address-card }"');
2419
+ }
1919
2420
 
1920
2421
  .#{$fa-css-prefix}.#{$fa-css-prefix}-address-card-o {
1921
- font-family: 'Font Awesome 5 Free';
2422
+ font-family: "Font Awesome 6 Free";
1922
2423
  font-weight: 400;
1923
2424
  }
1924
- .#{$fa-css-prefix}.#{$fa-css-prefix}-address-card-o:before { content: fa-content($fa-var-address-card); }
2425
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-address-card-o:before {
2426
+ content: unquote('"#{ $fa-var-address-card }"');
2427
+ }
1925
2428
 
1926
2429
  .#{$fa-css-prefix}.#{$fa-css-prefix}-vcard-o {
1927
- font-family: 'Font Awesome 5 Free';
2430
+ font-family: "Font Awesome 6 Free";
1928
2431
  font-weight: 400;
1929
2432
  }
1930
- .#{$fa-css-prefix}.#{$fa-css-prefix}-vcard-o:before { content: fa-content($fa-var-address-card); }
2433
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-vcard-o:before {
2434
+ content: unquote('"#{ $fa-var-address-card }"');
2435
+ }
1931
2436
 
1932
2437
  .#{$fa-css-prefix}.#{$fa-css-prefix}-user-circle-o {
1933
- font-family: 'Font Awesome 5 Free';
2438
+ font-family: "Font Awesome 6 Free";
1934
2439
  font-weight: 400;
1935
2440
  }
1936
- .#{$fa-css-prefix}.#{$fa-css-prefix}-user-circle-o:before { content: fa-content($fa-var-user-circle); }
2441
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-user-circle-o:before {
2442
+ content: unquote('"#{ $fa-var-circle-user }"');
2443
+ }
1937
2444
 
1938
2445
  .#{$fa-css-prefix}.#{$fa-css-prefix}-user-o {
1939
- font-family: 'Font Awesome 5 Free';
2446
+ font-family: "Font Awesome 6 Free";
1940
2447
  font-weight: 400;
1941
2448
  }
1942
- .#{$fa-css-prefix}.#{$fa-css-prefix}-user-o:before { content: fa-content($fa-var-user); }
2449
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-user-o:before {
2450
+ content: unquote('"#{ $fa-var-user }"');
2451
+ }
1943
2452
 
1944
2453
  .#{$fa-css-prefix}.#{$fa-css-prefix}-id-badge {
1945
- font-family: 'Font Awesome 5 Free';
2454
+ font-family: "Font Awesome 6 Free";
1946
2455
  font-weight: 400;
1947
2456
  }
1948
2457
 
1949
- .#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license:before { content: fa-content($fa-var-id-card); }
2458
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license:before {
2459
+ content: unquote('"#{ $fa-var-id-card }"');
2460
+ }
1950
2461
 
1951
2462
  .#{$fa-css-prefix}.#{$fa-css-prefix}-id-card-o {
1952
- font-family: 'Font Awesome 5 Free';
2463
+ font-family: "Font Awesome 6 Free";
1953
2464
  font-weight: 400;
1954
2465
  }
1955
- .#{$fa-css-prefix}.#{$fa-css-prefix}-id-card-o:before { content: fa-content($fa-var-id-card); }
2466
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-id-card-o:before {
2467
+ content: unquote('"#{ $fa-var-id-card }"');
2468
+ }
1956
2469
 
1957
2470
  .#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license-o {
1958
- font-family: 'Font Awesome 5 Free';
2471
+ font-family: "Font Awesome 6 Free";
1959
2472
  font-weight: 400;
1960
2473
  }
1961
- .#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license-o:before { content: fa-content($fa-var-id-card); }
2474
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license-o:before {
2475
+ content: unquote('"#{ $fa-var-id-card }"');
2476
+ }
1962
2477
 
1963
2478
  .#{$fa-css-prefix}.#{$fa-css-prefix}-quora {
1964
- font-family: 'Font Awesome 5 Brands';
2479
+ font-family: "Font Awesome 6 Brands";
1965
2480
  font-weight: 400;
1966
2481
  }
1967
2482
 
1968
2483
  .#{$fa-css-prefix}.#{$fa-css-prefix}-free-code-camp {
1969
- font-family: 'Font Awesome 5 Brands';
2484
+ font-family: "Font Awesome 6 Brands";
1970
2485
  font-weight: 400;
1971
2486
  }
1972
2487
 
1973
2488
  .#{$fa-css-prefix}.#{$fa-css-prefix}-telegram {
1974
- font-family: 'Font Awesome 5 Brands';
2489
+ font-family: "Font Awesome 6 Brands";
1975
2490
  font-weight: 400;
1976
2491
  }
1977
2492
 
1978
- .#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-4:before { content: fa-content($fa-var-thermometer-full); }
2493
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-4:before {
2494
+ content: unquote('"#{ $fa-var-temperature-full }"');
2495
+ }
1979
2496
 
1980
- .#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer:before { content: fa-content($fa-var-thermometer-full); }
2497
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer:before {
2498
+ content: unquote('"#{ $fa-var-temperature-full }"');
2499
+ }
1981
2500
 
1982
- .#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-3:before { content: fa-content($fa-var-thermometer-three-quarters); }
2501
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-3:before {
2502
+ content: unquote('"#{ $fa-var-temperature-three-quarters }"');
2503
+ }
1983
2504
 
1984
- .#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-2:before { content: fa-content($fa-var-thermometer-half); }
2505
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-2:before {
2506
+ content: unquote('"#{ $fa-var-temperature-half }"');
2507
+ }
1985
2508
 
1986
- .#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-1:before { content: fa-content($fa-var-thermometer-quarter); }
2509
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-1:before {
2510
+ content: unquote('"#{ $fa-var-temperature-quarter }"');
2511
+ }
1987
2512
 
1988
- .#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-0:before { content: fa-content($fa-var-thermometer-empty); }
2513
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-0:before {
2514
+ content: unquote('"#{ $fa-var-temperature-empty }"');
2515
+ }
1989
2516
 
1990
- .#{$fa-css-prefix}.#{$fa-css-prefix}-bathtub:before { content: fa-content($fa-var-bath); }
2517
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bathtub:before {
2518
+ content: unquote('"#{ $fa-var-bath }"');
2519
+ }
1991
2520
 
1992
- .#{$fa-css-prefix}.#{$fa-css-prefix}-s15:before { content: fa-content($fa-var-bath); }
2521
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-s15:before {
2522
+ content: unquote('"#{ $fa-var-bath }"');
2523
+ }
1993
2524
 
1994
2525
  .#{$fa-css-prefix}.#{$fa-css-prefix}-window-maximize {
1995
- font-family: 'Font Awesome 5 Free';
2526
+ font-family: "Font Awesome 6 Free";
1996
2527
  font-weight: 400;
1997
2528
  }
1998
2529
 
1999
2530
  .#{$fa-css-prefix}.#{$fa-css-prefix}-window-restore {
2000
- font-family: 'Font Awesome 5 Free';
2531
+ font-family: "Font Awesome 6 Free";
2001
2532
  font-weight: 400;
2002
2533
  }
2003
2534
 
2004
- .#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle:before { content: fa-content($fa-var-window-close); }
2535
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle:before {
2536
+ content: unquote('"#{ $fa-var-rectangle-xmark }"');
2537
+ }
2005
2538
 
2006
2539
  .#{$fa-css-prefix}.#{$fa-css-prefix}-window-close-o {
2007
- font-family: 'Font Awesome 5 Free';
2540
+ font-family: "Font Awesome 6 Free";
2008
2541
  font-weight: 400;
2009
2542
  }
2010
- .#{$fa-css-prefix}.#{$fa-css-prefix}-window-close-o:before { content: fa-content($fa-var-window-close); }
2543
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-window-close-o:before {
2544
+ content: unquote('"#{ $fa-var-rectangle-xmark }"');
2545
+ }
2011
2546
 
2012
2547
  .#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle-o {
2013
- font-family: 'Font Awesome 5 Free';
2548
+ font-family: "Font Awesome 6 Free";
2014
2549
  font-weight: 400;
2015
2550
  }
2016
- .#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle-o:before { content: fa-content($fa-var-window-close); }
2551
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle-o:before {
2552
+ content: unquote('"#{ $fa-var-rectangle-xmark }"');
2553
+ }
2017
2554
 
2018
2555
  .#{$fa-css-prefix}.#{$fa-css-prefix}-bandcamp {
2019
- font-family: 'Font Awesome 5 Brands';
2556
+ font-family: "Font Awesome 6 Brands";
2020
2557
  font-weight: 400;
2021
2558
  }
2022
2559
 
2023
2560
  .#{$fa-css-prefix}.#{$fa-css-prefix}-grav {
2024
- font-family: 'Font Awesome 5 Brands';
2561
+ font-family: "Font Awesome 6 Brands";
2025
2562
  font-weight: 400;
2026
2563
  }
2027
2564
 
2028
2565
  .#{$fa-css-prefix}.#{$fa-css-prefix}-etsy {
2029
- font-family: 'Font Awesome 5 Brands';
2566
+ font-family: "Font Awesome 6 Brands";
2030
2567
  font-weight: 400;
2031
2568
  }
2032
2569
 
2033
2570
  .#{$fa-css-prefix}.#{$fa-css-prefix}-imdb {
2034
- font-family: 'Font Awesome 5 Brands';
2571
+ font-family: "Font Awesome 6 Brands";
2035
2572
  font-weight: 400;
2036
2573
  }
2037
2574
 
2038
2575
  .#{$fa-css-prefix}.#{$fa-css-prefix}-ravelry {
2039
- font-family: 'Font Awesome 5 Brands';
2576
+ font-family: "Font Awesome 6 Brands";
2040
2577
  font-weight: 400;
2041
2578
  }
2042
2579
 
2043
2580
  .#{$fa-css-prefix}.#{$fa-css-prefix}-eercast {
2044
- font-family: 'Font Awesome 5 Brands';
2581
+ font-family: "Font Awesome 6 Brands";
2045
2582
  font-weight: 400;
2046
2583
  }
2047
- .#{$fa-css-prefix}.#{$fa-css-prefix}-eercast:before { content: fa-content($fa-var-sellcast); }
2584
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-eercast:before {
2585
+ content: unquote('"#{ $fa-var-sellcast }"');
2586
+ }
2048
2587
 
2049
2588
  .#{$fa-css-prefix}.#{$fa-css-prefix}-snowflake-o {
2050
- font-family: 'Font Awesome 5 Free';
2589
+ font-family: "Font Awesome 6 Free";
2051
2590
  font-weight: 400;
2052
2591
  }
2053
- .#{$fa-css-prefix}.#{$fa-css-prefix}-snowflake-o:before { content: fa-content($fa-var-snowflake); }
2592
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-snowflake-o:before {
2593
+ content: unquote('"#{ $fa-var-snowflake }"');
2594
+ }
2054
2595
 
2055
2596
  .#{$fa-css-prefix}.#{$fa-css-prefix}-superpowers {
2056
- font-family: 'Font Awesome 5 Brands';
2597
+ font-family: "Font Awesome 6 Brands";
2057
2598
  font-weight: 400;
2058
2599
  }
2059
2600
 
2060
2601
  .#{$fa-css-prefix}.#{$fa-css-prefix}-wpexplorer {
2061
- font-family: 'Font Awesome 5 Brands';
2602
+ font-family: "Font Awesome 6 Brands";
2062
2603
  font-weight: 400;
2063
2604
  }
2064
2605
 
2065
- .#{$fa-css-prefix}.#{$fa-css-prefix}-cab:before { content: fa-content($fa-var-taxi); }
2066
-
2606
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-meetup {
2607
+ font-family: "Font Awesome 6 Brands";
2608
+ font-weight: 400;
2609
+ }