@bnsights/bbsf-controls 1.0.65 → 1.0.67

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