jekyll-theme-dtf-basic 0.0.1

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 (161) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +438 -0
  3. data/README.md +39 -0
  4. data/_config.yml +84 -0
  5. data/_data/authors.yml +2 -0
  6. data/_data/navigation.yml +4 -0
  7. data/_includes/dtf/alert_element.html +4 -0
  8. data/_includes/dtf/author_element.html +17 -0
  9. data/_includes/dtf/feature_element.html +13 -0
  10. data/_includes/dtf/feature_group.html +12 -0
  11. data/_includes/dtf/picture_element.html +13 -0
  12. data/_includes/dtf/post_element.html +19 -0
  13. data/_includes/dtf/post_group.html +12 -0
  14. data/_includes/dtf/project_element.html +19 -0
  15. data/_includes/dtf/project_group.html +17 -0
  16. data/_includes/footer.html +7 -0
  17. data/_includes/head.html +12 -0
  18. data/_includes/nav.html +45 -0
  19. data/_includes/pagination.html +19 -0
  20. data/_layouts/archive.html +19 -0
  21. data/_layouts/default.html +19 -0
  22. data/_layouts/page.html +13 -0
  23. data/_layouts/post.html +43 -0
  24. data/_sass/basic/_style.scss +55 -0
  25. data/_sass/bootstrap-5.3.3/_accordion.scss +158 -0
  26. data/_sass/bootstrap-5.3.3/_alert.scss +68 -0
  27. data/_sass/bootstrap-5.3.3/_badge.scss +38 -0
  28. data/_sass/bootstrap-5.3.3/_breadcrumb.scss +40 -0
  29. data/_sass/bootstrap-5.3.3/_button-group.scss +142 -0
  30. data/_sass/bootstrap-5.3.3/_buttons.scss +216 -0
  31. data/_sass/bootstrap-5.3.3/_card.scss +239 -0
  32. data/_sass/bootstrap-5.3.3/_carousel.scss +236 -0
  33. data/_sass/bootstrap-5.3.3/_close.scss +63 -0
  34. data/_sass/bootstrap-5.3.3/_containers.scss +41 -0
  35. data/_sass/bootstrap-5.3.3/_dropdown.scss +250 -0
  36. data/_sass/bootstrap-5.3.3/_forms.scss +9 -0
  37. data/_sass/bootstrap-5.3.3/_functions.scss +302 -0
  38. data/_sass/bootstrap-5.3.3/_grid.scss +39 -0
  39. data/_sass/bootstrap-5.3.3/_helpers.scss +12 -0
  40. data/_sass/bootstrap-5.3.3/_images.scss +42 -0
  41. data/_sass/bootstrap-5.3.3/_list-group.scss +197 -0
  42. data/_sass/bootstrap-5.3.3/_maps.scss +174 -0
  43. data/_sass/bootstrap-5.3.3/_mixins.scss +42 -0
  44. data/_sass/bootstrap-5.3.3/_modal.scss +236 -0
  45. data/_sass/bootstrap-5.3.3/_nav.scss +197 -0
  46. data/_sass/bootstrap-5.3.3/_navbar.scss +289 -0
  47. data/_sass/bootstrap-5.3.3/_offcanvas.scss +143 -0
  48. data/_sass/bootstrap-5.3.3/_pagination.scss +109 -0
  49. data/_sass/bootstrap-5.3.3/_placeholders.scss +51 -0
  50. data/_sass/bootstrap-5.3.3/_popover.scss +196 -0
  51. data/_sass/bootstrap-5.3.3/_progress.scss +68 -0
  52. data/_sass/bootstrap-5.3.3/_reboot.scss +611 -0
  53. data/_sass/bootstrap-5.3.3/_root.scss +187 -0
  54. data/_sass/bootstrap-5.3.3/_spinners.scss +85 -0
  55. data/_sass/bootstrap-5.3.3/_tables.scss +171 -0
  56. data/_sass/bootstrap-5.3.3/_toasts.scss +73 -0
  57. data/_sass/bootstrap-5.3.3/_tooltip.scss +119 -0
  58. data/_sass/bootstrap-5.3.3/_transitions.scss +27 -0
  59. data/_sass/bootstrap-5.3.3/_type.scss +106 -0
  60. data/_sass/bootstrap-5.3.3/_utilities.scss +806 -0
  61. data/_sass/bootstrap-5.3.3/_variables-dark.scss +87 -0
  62. data/_sass/bootstrap-5.3.3/_variables.scss +1751 -0
  63. data/_sass/bootstrap-5.3.3/bootstrap-grid.scss +62 -0
  64. data/_sass/bootstrap-5.3.3/bootstrap-reboot.scss +10 -0
  65. data/_sass/bootstrap-5.3.3/bootstrap-utilities.scss +19 -0
  66. data/_sass/bootstrap-5.3.3/bootstrap.scss +52 -0
  67. data/_sass/bootstrap-5.3.3/forms/_floating-labels.scss +95 -0
  68. data/_sass/bootstrap-5.3.3/forms/_form-check.scss +189 -0
  69. data/_sass/bootstrap-5.3.3/forms/_form-control.scss +214 -0
  70. data/_sass/bootstrap-5.3.3/forms/_form-range.scss +91 -0
  71. data/_sass/bootstrap-5.3.3/forms/_form-select.scss +80 -0
  72. data/_sass/bootstrap-5.3.3/forms/_form-text.scss +11 -0
  73. data/_sass/bootstrap-5.3.3/forms/_input-group.scss +132 -0
  74. data/_sass/bootstrap-5.3.3/forms/_labels.scss +36 -0
  75. data/_sass/bootstrap-5.3.3/forms/_validation.scss +12 -0
  76. data/_sass/bootstrap-5.3.3/helpers/_clearfix.scss +3 -0
  77. data/_sass/bootstrap-5.3.3/helpers/_color-bg.scss +7 -0
  78. data/_sass/bootstrap-5.3.3/helpers/_colored-links.scss +30 -0
  79. data/_sass/bootstrap-5.3.3/helpers/_focus-ring.scss +5 -0
  80. data/_sass/bootstrap-5.3.3/helpers/_icon-link.scss +25 -0
  81. data/_sass/bootstrap-5.3.3/helpers/_position.scss +36 -0
  82. data/_sass/bootstrap-5.3.3/helpers/_ratio.scss +26 -0
  83. data/_sass/bootstrap-5.3.3/helpers/_stacks.scss +15 -0
  84. data/_sass/bootstrap-5.3.3/helpers/_stretched-link.scss +15 -0
  85. data/_sass/bootstrap-5.3.3/helpers/_text-truncation.scss +7 -0
  86. data/_sass/bootstrap-5.3.3/helpers/_visually-hidden.scss +8 -0
  87. data/_sass/bootstrap-5.3.3/helpers/_vr.scss +8 -0
  88. data/_sass/bootstrap-5.3.3/mixins/_alert.scss +18 -0
  89. data/_sass/bootstrap-5.3.3/mixins/_backdrop.scss +14 -0
  90. data/_sass/bootstrap-5.3.3/mixins/_banner.scss +7 -0
  91. data/_sass/bootstrap-5.3.3/mixins/_border-radius.scss +78 -0
  92. data/_sass/bootstrap-5.3.3/mixins/_box-shadow.scss +18 -0
  93. data/_sass/bootstrap-5.3.3/mixins/_breakpoints.scss +127 -0
  94. data/_sass/bootstrap-5.3.3/mixins/_buttons.scss +70 -0
  95. data/_sass/bootstrap-5.3.3/mixins/_caret.scss +69 -0
  96. data/_sass/bootstrap-5.3.3/mixins/_clearfix.scss +9 -0
  97. data/_sass/bootstrap-5.3.3/mixins/_color-mode.scss +21 -0
  98. data/_sass/bootstrap-5.3.3/mixins/_color-scheme.scss +7 -0
  99. data/_sass/bootstrap-5.3.3/mixins/_container.scss +11 -0
  100. data/_sass/bootstrap-5.3.3/mixins/_deprecate.scss +10 -0
  101. data/_sass/bootstrap-5.3.3/mixins/_forms.scss +163 -0
  102. data/_sass/bootstrap-5.3.3/mixins/_gradients.scss +47 -0
  103. data/_sass/bootstrap-5.3.3/mixins/_grid.scss +151 -0
  104. data/_sass/bootstrap-5.3.3/mixins/_image.scss +16 -0
  105. data/_sass/bootstrap-5.3.3/mixins/_list-group.scss +26 -0
  106. data/_sass/bootstrap-5.3.3/mixins/_lists.scss +7 -0
  107. data/_sass/bootstrap-5.3.3/mixins/_pagination.scss +10 -0
  108. data/_sass/bootstrap-5.3.3/mixins/_reset-text.scss +17 -0
  109. data/_sass/bootstrap-5.3.3/mixins/_resize.scss +6 -0
  110. data/_sass/bootstrap-5.3.3/mixins/_table-variants.scss +24 -0
  111. data/_sass/bootstrap-5.3.3/mixins/_text-truncate.scss +8 -0
  112. data/_sass/bootstrap-5.3.3/mixins/_transition.scss +26 -0
  113. data/_sass/bootstrap-5.3.3/mixins/_utilities.scss +97 -0
  114. data/_sass/bootstrap-5.3.3/mixins/_visually-hidden.scss +33 -0
  115. data/_sass/bootstrap-5.3.3/tests/jasmine.js +16 -0
  116. data/_sass/bootstrap-5.3.3/tests/mixins/_auto-import-of-variables-dark.test.scss +7 -0
  117. data/_sass/bootstrap-5.3.3/tests/mixins/_color-modes.test.scss +69 -0
  118. data/_sass/bootstrap-5.3.3/tests/mixins/_media-query-color-mode-full.test.scss +8 -0
  119. data/_sass/bootstrap-5.3.3/tests/mixins/_utilities.test.scss +393 -0
  120. data/_sass/bootstrap-5.3.3/tests/sass-true/register.js +14 -0
  121. data/_sass/bootstrap-5.3.3/tests/sass-true/runner.js +17 -0
  122. data/_sass/bootstrap-5.3.3/tests/utilities/_api.test.scss +75 -0
  123. data/_sass/bootstrap-5.3.3/utilities/_api.scss +47 -0
  124. data/_sass/custom_style.scss +0 -0
  125. data/_sass/fontawesome/font-awesome.scss +10 -0
  126. data/_sass/fontawesome/scss/LICENSE.txt +165 -0
  127. data/_sass/fontawesome/scss/_animated.scss +152 -0
  128. data/_sass/fontawesome/scss/_bordered-pulled.scss +20 -0
  129. data/_sass/fontawesome/scss/_core.scss +49 -0
  130. data/_sass/fontawesome/scss/_fixed-width.scss +7 -0
  131. data/_sass/fontawesome/scss/_functions.scss +57 -0
  132. data/_sass/fontawesome/scss/_icons.scss +12 -0
  133. data/_sass/fontawesome/scss/_list.scss +18 -0
  134. data/_sass/fontawesome/scss/_mixins.scss +65 -0
  135. data/_sass/fontawesome/scss/_rotated-flipped.scss +31 -0
  136. data/_sass/fontawesome/scss/_screen-reader.scss +14 -0
  137. data/_sass/fontawesome/scss/_shims.scss +1578 -0
  138. data/_sass/fontawesome/scss/_sizing.scss +16 -0
  139. data/_sass/fontawesome/scss/_stacked.scss +32 -0
  140. data/_sass/fontawesome/scss/_variables.scss +5044 -0
  141. data/_sass/fontawesome/scss/brands.scss +30 -0
  142. data/_sass/fontawesome/scss/fontawesome.scss +21 -0
  143. data/_sass/fontawesome/scss/regular.scss +27 -0
  144. data/_sass/fontawesome/scss/solid.scss +27 -0
  145. data/_sass/fontawesome/scss/v4-shims.scss +11 -0
  146. data/_sass/highlighter/code.scss +232 -0
  147. data/_sass/main.scss +40 -0
  148. data/assets/css/main.scss +4 -0
  149. data/assets/fonts/fontawesome/LICENSE.txt +165 -0
  150. data/assets/fonts/fontawesome/fa-brands-400.ttf +0 -0
  151. data/assets/fonts/fontawesome/fa-brands-400.woff2 +0 -0
  152. data/assets/fonts/fontawesome/fa-regular-400.ttf +0 -0
  153. data/assets/fonts/fontawesome/fa-regular-400.woff2 +0 -0
  154. data/assets/fonts/fontawesome/fa-solid-900.ttf +0 -0
  155. data/assets/fonts/fontawesome/fa-solid-900.woff2 +0 -0
  156. data/assets/fonts/fontawesome/fa-v4compatibility.ttf +0 -0
  157. data/assets/fonts/fontawesome/fa-v4compatibility.woff2 +0 -0
  158. data/assets/js/bootstrap.bundle.js.map +1 -0
  159. data/assets/js/bootstrap.bundle.min.js +7 -0
  160. data/assets/js/darkmode.js +74 -0
  161. metadata +343 -0
@@ -0,0 +1,1578 @@
1
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-glass { #{$fa-icon-property}: unquote("\"#{ $fa-var-martini-glass-empty }\""); }
2
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-o {
3
+ font-family: 'Font Awesome 6 Free';
4
+ font-weight: 400;
5
+ }
6
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-envelope }\""); }
7
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-star-o {
8
+ font-family: 'Font Awesome 6 Free';
9
+ font-weight: 400;
10
+ }
11
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-star-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-star }\""); }
12
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-remove { #{$fa-icon-property}: unquote("\"#{ $fa-var-xmark }\""); }
13
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-close { #{$fa-icon-property}: unquote("\"#{ $fa-var-xmark }\""); }
14
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-gear { #{$fa-icon-property}: unquote("\"#{ $fa-var-gear }\""); }
15
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-trash-o {
16
+ font-family: 'Font Awesome 6 Free';
17
+ font-weight: 400;
18
+ }
19
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-trash-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-trash-can }\""); }
20
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-home { #{$fa-icon-property}: unquote("\"#{ $fa-var-house }\""); }
21
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-o {
22
+ font-family: 'Font Awesome 6 Free';
23
+ font-weight: 400;
24
+ }
25
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-file }\""); }
26
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-clock-o {
27
+ font-family: 'Font Awesome 6 Free';
28
+ font-weight: 400;
29
+ }
30
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-clock-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-clock }\""); }
31
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-down {
32
+ font-family: 'Font Awesome 6 Free';
33
+ font-weight: 400;
34
+ }
35
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-down { #{$fa-icon-property}: unquote("\"#{ $fa-var-circle-down }\""); }
36
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-up {
37
+ font-family: 'Font Awesome 6 Free';
38
+ font-weight: 400;
39
+ }
40
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-up { #{$fa-icon-property}: unquote("\"#{ $fa-var-circle-up }\""); }
41
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-play-circle-o {
42
+ font-family: 'Font Awesome 6 Free';
43
+ font-weight: 400;
44
+ }
45
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-play-circle-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-circle-play }\""); }
46
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-repeat { #{$fa-icon-property}: unquote("\"#{ $fa-var-arrow-rotate-right }\""); }
47
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-rotate-right { #{$fa-icon-property}: unquote("\"#{ $fa-var-arrow-rotate-right }\""); }
48
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-refresh { #{$fa-icon-property}: unquote("\"#{ $fa-var-arrows-rotate }\""); }
49
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-list-alt {
50
+ font-family: 'Font Awesome 6 Free';
51
+ font-weight: 400;
52
+ }
53
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-list-alt { #{$fa-icon-property}: unquote("\"#{ $fa-var-rectangle-list }\""); }
54
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-dedent { #{$fa-icon-property}: unquote("\"#{ $fa-var-outdent }\""); }
55
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-video-camera { #{$fa-icon-property}: unquote("\"#{ $fa-var-video }\""); }
56
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-picture-o {
57
+ font-family: 'Font Awesome 6 Free';
58
+ font-weight: 400;
59
+ }
60
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-picture-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-image }\""); }
61
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-photo {
62
+ font-family: 'Font Awesome 6 Free';
63
+ font-weight: 400;
64
+ }
65
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-photo { #{$fa-icon-property}: unquote("\"#{ $fa-var-image }\""); }
66
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-image {
67
+ font-family: 'Font Awesome 6 Free';
68
+ font-weight: 400;
69
+ }
70
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-image { #{$fa-icon-property}: unquote("\"#{ $fa-var-image }\""); }
71
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-map-marker { #{$fa-icon-property}: unquote("\"#{ $fa-var-location-dot }\""); }
72
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square-o {
73
+ font-family: 'Font Awesome 6 Free';
74
+ font-weight: 400;
75
+ }
76
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-pen-to-square }\""); }
77
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-edit {
78
+ font-family: 'Font Awesome 6 Free';
79
+ font-weight: 400;
80
+ }
81
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-edit { #{$fa-icon-property}: unquote("\"#{ $fa-var-pen-to-square }\""); }
82
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-share-square-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-share-from-square }\""); }
83
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-check-square-o {
84
+ font-family: 'Font Awesome 6 Free';
85
+ font-weight: 400;
86
+ }
87
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-check-square-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-check }\""); }
88
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-arrows { #{$fa-icon-property}: unquote("\"#{ $fa-var-up-down-left-right }\""); }
89
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-times-circle-o {
90
+ font-family: 'Font Awesome 6 Free';
91
+ font-weight: 400;
92
+ }
93
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-times-circle-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-circle-xmark }\""); }
94
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-check-circle-o {
95
+ font-family: 'Font Awesome 6 Free';
96
+ font-weight: 400;
97
+ }
98
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-check-circle-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-circle-check }\""); }
99
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-mail-forward { #{$fa-icon-property}: unquote("\"#{ $fa-var-share }\""); }
100
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-expand { #{$fa-icon-property}: unquote("\"#{ $fa-var-up-right-and-down-left-from-center }\""); }
101
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-compress { #{$fa-icon-property}: unquote("\"#{ $fa-var-down-left-and-up-right-to-center }\""); }
102
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-eye {
103
+ font-family: 'Font Awesome 6 Free';
104
+ font-weight: 400;
105
+ }
106
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-eye-slash {
107
+ font-family: 'Font Awesome 6 Free';
108
+ font-weight: 400;
109
+ }
110
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-warning { #{$fa-icon-property}: unquote("\"#{ $fa-var-triangle-exclamation }\""); }
111
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar { #{$fa-icon-property}: unquote("\"#{ $fa-var-calendar-days }\""); }
112
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-v { #{$fa-icon-property}: unquote("\"#{ $fa-var-up-down }\""); }
113
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-h { #{$fa-icon-property}: unquote("\"#{ $fa-var-left-right }\""); }
114
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart { #{$fa-icon-property}: unquote("\"#{ $fa-var-chart-column }\""); }
115
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-chart-column }\""); }
116
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-twitter-square {
117
+ font-family: 'Font Awesome 6 Brands';
118
+ font-weight: 400;
119
+ }
120
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-twitter-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-twitter }\""); }
121
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-square {
122
+ font-family: 'Font Awesome 6 Brands';
123
+ font-weight: 400;
124
+ }
125
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-facebook }\""); }
126
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-gears { #{$fa-icon-property}: unquote("\"#{ $fa-var-gears }\""); }
127
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-up {
128
+ font-family: 'Font Awesome 6 Free';
129
+ font-weight: 400;
130
+ }
131
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-up { #{$fa-icon-property}: unquote("\"#{ $fa-var-thumbs-up }\""); }
132
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-down {
133
+ font-family: 'Font Awesome 6 Free';
134
+ font-weight: 400;
135
+ }
136
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-down { #{$fa-icon-property}: unquote("\"#{ $fa-var-thumbs-down }\""); }
137
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-heart-o {
138
+ font-family: 'Font Awesome 6 Free';
139
+ font-weight: 400;
140
+ }
141
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-heart-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-heart }\""); }
142
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sign-out { #{$fa-icon-property}: unquote("\"#{ $fa-var-right-from-bracket }\""); }
143
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin-square {
144
+ font-family: 'Font Awesome 6 Brands';
145
+ font-weight: 400;
146
+ }
147
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-linkedin }\""); }
148
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-thumb-tack { #{$fa-icon-property}: unquote("\"#{ $fa-var-thumbtack }\""); }
149
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-external-link { #{$fa-icon-property}: unquote("\"#{ $fa-var-up-right-from-square }\""); }
150
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sign-in { #{$fa-icon-property}: unquote("\"#{ $fa-var-right-to-bracket }\""); }
151
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-github-square {
152
+ font-family: 'Font Awesome 6 Brands';
153
+ font-weight: 400;
154
+ }
155
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-github-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-github }\""); }
156
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-lemon-o {
157
+ font-family: 'Font Awesome 6 Free';
158
+ font-weight: 400;
159
+ }
160
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-lemon-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-lemon }\""); }
161
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-square-o {
162
+ font-family: 'Font Awesome 6 Free';
163
+ font-weight: 400;
164
+ }
165
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-square-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-square }\""); }
166
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bookmark-o {
167
+ font-family: 'Font Awesome 6 Free';
168
+ font-weight: 400;
169
+ }
170
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bookmark-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-bookmark }\""); }
171
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-twitter {
172
+ font-family: 'Font Awesome 6 Brands';
173
+ font-weight: 400;
174
+ }
175
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook {
176
+ font-family: 'Font Awesome 6 Brands';
177
+ font-weight: 400;
178
+ }
179
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook { #{$fa-icon-property}: unquote("\"#{ $fa-var-facebook-f }\""); }
180
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-f {
181
+ font-family: 'Font Awesome 6 Brands';
182
+ font-weight: 400;
183
+ }
184
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-f { #{$fa-icon-property}: unquote("\"#{ $fa-var-facebook-f }\""); }
185
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-github {
186
+ font-family: 'Font Awesome 6 Brands';
187
+ font-weight: 400;
188
+ }
189
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-credit-card {
190
+ font-family: 'Font Awesome 6 Free';
191
+ font-weight: 400;
192
+ }
193
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-feed { #{$fa-icon-property}: unquote("\"#{ $fa-var-rss }\""); }
194
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hdd-o {
195
+ font-family: 'Font Awesome 6 Free';
196
+ font-weight: 400;
197
+ }
198
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hdd-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-hard-drive }\""); }
199
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-right {
200
+ font-family: 'Font Awesome 6 Free';
201
+ font-weight: 400;
202
+ }
203
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-right { #{$fa-icon-property}: unquote("\"#{ $fa-var-hand-point-right }\""); }
204
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-left {
205
+ font-family: 'Font Awesome 6 Free';
206
+ font-weight: 400;
207
+ }
208
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-left { #{$fa-icon-property}: unquote("\"#{ $fa-var-hand-point-left }\""); }
209
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-up {
210
+ font-family: 'Font Awesome 6 Free';
211
+ font-weight: 400;
212
+ }
213
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-up { #{$fa-icon-property}: unquote("\"#{ $fa-var-hand-point-up }\""); }
214
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-down {
215
+ font-family: 'Font Awesome 6 Free';
216
+ font-weight: 400;
217
+ }
218
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-down { #{$fa-icon-property}: unquote("\"#{ $fa-var-hand-point-down }\""); }
219
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-globe { #{$fa-icon-property}: unquote("\"#{ $fa-var-earth-americas }\""); }
220
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-tasks { #{$fa-icon-property}: unquote("\"#{ $fa-var-bars-progress }\""); }
221
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-alt { #{$fa-icon-property}: unquote("\"#{ $fa-var-maximize }\""); }
222
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-group { #{$fa-icon-property}: unquote("\"#{ $fa-var-users }\""); }
223
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-chain { #{$fa-icon-property}: unquote("\"#{ $fa-var-link }\""); }
224
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cut { #{$fa-icon-property}: unquote("\"#{ $fa-var-scissors }\""); }
225
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-files-o {
226
+ font-family: 'Font Awesome 6 Free';
227
+ font-weight: 400;
228
+ }
229
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-files-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-copy }\""); }
230
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-floppy-o {
231
+ font-family: 'Font Awesome 6 Free';
232
+ font-weight: 400;
233
+ }
234
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-floppy-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-floppy-disk }\""); }
235
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-save {
236
+ font-family: 'Font Awesome 6 Free';
237
+ font-weight: 400;
238
+ }
239
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-save { #{$fa-icon-property}: unquote("\"#{ $fa-var-floppy-disk }\""); }
240
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-navicon { #{$fa-icon-property}: unquote("\"#{ $fa-var-bars }\""); }
241
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-reorder { #{$fa-icon-property}: unquote("\"#{ $fa-var-bars }\""); }
242
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-magic { #{$fa-icon-property}: unquote("\"#{ $fa-var-wand-magic-sparkles }\""); }
243
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest {
244
+ font-family: 'Font Awesome 6 Brands';
245
+ font-weight: 400;
246
+ }
247
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest-square {
248
+ font-family: 'Font Awesome 6 Brands';
249
+ font-weight: 400;
250
+ }
251
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-pinterest }\""); }
252
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-square {
253
+ font-family: 'Font Awesome 6 Brands';
254
+ font-weight: 400;
255
+ }
256
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-google-plus }\""); }
257
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus {
258
+ font-family: 'Font Awesome 6 Brands';
259
+ font-weight: 400;
260
+ }
261
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus { #{$fa-icon-property}: unquote("\"#{ $fa-var-google-plus-g }\""); }
262
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-money { #{$fa-icon-property}: unquote("\"#{ $fa-var-money-bill-1 }\""); }
263
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-unsorted { #{$fa-icon-property}: unquote("\"#{ $fa-var-sort }\""); }
264
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-desc { #{$fa-icon-property}: unquote("\"#{ $fa-var-sort-down }\""); }
265
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-asc { #{$fa-icon-property}: unquote("\"#{ $fa-var-sort-up }\""); }
266
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin {
267
+ font-family: 'Font Awesome 6 Brands';
268
+ font-weight: 400;
269
+ }
270
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin { #{$fa-icon-property}: unquote("\"#{ $fa-var-linkedin-in }\""); }
271
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-rotate-left { #{$fa-icon-property}: unquote("\"#{ $fa-var-arrow-rotate-left }\""); }
272
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-legal { #{$fa-icon-property}: unquote("\"#{ $fa-var-gavel }\""); }
273
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-tachometer { #{$fa-icon-property}: unquote("\"#{ $fa-var-gauge-high }\""); }
274
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-dashboard { #{$fa-icon-property}: unquote("\"#{ $fa-var-gauge-high }\""); }
275
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-comment-o {
276
+ font-family: 'Font Awesome 6 Free';
277
+ font-weight: 400;
278
+ }
279
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-comment-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-comment }\""); }
280
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-comments-o {
281
+ font-family: 'Font Awesome 6 Free';
282
+ font-weight: 400;
283
+ }
284
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-comments-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-comments }\""); }
285
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-flash { #{$fa-icon-property}: unquote("\"#{ $fa-var-bolt }\""); }
286
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-clipboard { #{$fa-icon-property}: unquote("\"#{ $fa-var-paste }\""); }
287
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-lightbulb-o {
288
+ font-family: 'Font Awesome 6 Free';
289
+ font-weight: 400;
290
+ }
291
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-lightbulb-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-lightbulb }\""); }
292
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-exchange { #{$fa-icon-property}: unquote("\"#{ $fa-var-right-left }\""); }
293
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cloud-download { #{$fa-icon-property}: unquote("\"#{ $fa-var-cloud-arrow-down }\""); }
294
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cloud-upload { #{$fa-icon-property}: unquote("\"#{ $fa-var-cloud-arrow-up }\""); }
295
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bell-o {
296
+ font-family: 'Font Awesome 6 Free';
297
+ font-weight: 400;
298
+ }
299
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bell-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-bell }\""); }
300
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cutlery { #{$fa-icon-property}: unquote("\"#{ $fa-var-utensils }\""); }
301
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-text-o {
302
+ font-family: 'Font Awesome 6 Free';
303
+ font-weight: 400;
304
+ }
305
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-text-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-file-lines }\""); }
306
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-building-o {
307
+ font-family: 'Font Awesome 6 Free';
308
+ font-weight: 400;
309
+ }
310
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-building-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-building }\""); }
311
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hospital-o {
312
+ font-family: 'Font Awesome 6 Free';
313
+ font-weight: 400;
314
+ }
315
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hospital-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-hospital }\""); }
316
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-tablet { #{$fa-icon-property}: unquote("\"#{ $fa-var-tablet-screen-button }\""); }
317
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-mobile { #{$fa-icon-property}: unquote("\"#{ $fa-var-mobile-screen-button }\""); }
318
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-mobile-phone { #{$fa-icon-property}: unquote("\"#{ $fa-var-mobile-screen-button }\""); }
319
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o {
320
+ font-family: 'Font Awesome 6 Free';
321
+ font-weight: 400;
322
+ }
323
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-circle }\""); }
324
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-mail-reply { #{$fa-icon-property}: unquote("\"#{ $fa-var-reply }\""); }
325
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-github-alt {
326
+ font-family: 'Font Awesome 6 Brands';
327
+ font-weight: 400;
328
+ }
329
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-folder-o {
330
+ font-family: 'Font Awesome 6 Free';
331
+ font-weight: 400;
332
+ }
333
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-folder-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-folder }\""); }
334
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-folder-open-o {
335
+ font-family: 'Font Awesome 6 Free';
336
+ font-weight: 400;
337
+ }
338
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-folder-open-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-folder-open }\""); }
339
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-smile-o {
340
+ font-family: 'Font Awesome 6 Free';
341
+ font-weight: 400;
342
+ }
343
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-smile-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-face-smile }\""); }
344
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-frown-o {
345
+ font-family: 'Font Awesome 6 Free';
346
+ font-weight: 400;
347
+ }
348
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-frown-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-face-frown }\""); }
349
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-meh-o {
350
+ font-family: 'Font Awesome 6 Free';
351
+ font-weight: 400;
352
+ }
353
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-meh-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-face-meh }\""); }
354
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-keyboard-o {
355
+ font-family: 'Font Awesome 6 Free';
356
+ font-weight: 400;
357
+ }
358
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-keyboard-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-keyboard }\""); }
359
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-flag-o {
360
+ font-family: 'Font Awesome 6 Free';
361
+ font-weight: 400;
362
+ }
363
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-flag-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-flag }\""); }
364
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-mail-reply-all { #{$fa-icon-property}: unquote("\"#{ $fa-var-reply-all }\""); }
365
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-o {
366
+ font-family: 'Font Awesome 6 Free';
367
+ font-weight: 400;
368
+ }
369
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-star-half-stroke }\""); }
370
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-empty {
371
+ font-family: 'Font Awesome 6 Free';
372
+ font-weight: 400;
373
+ }
374
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-empty { #{$fa-icon-property}: unquote("\"#{ $fa-var-star-half-stroke }\""); }
375
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-full {
376
+ font-family: 'Font Awesome 6 Free';
377
+ font-weight: 400;
378
+ }
379
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-full { #{$fa-icon-property}: unquote("\"#{ $fa-var-star-half-stroke }\""); }
380
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-code-fork { #{$fa-icon-property}: unquote("\"#{ $fa-var-code-branch }\""); }
381
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-chain-broken { #{$fa-icon-property}: unquote("\"#{ $fa-var-link-slash }\""); }
382
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-unlink { #{$fa-icon-property}: unquote("\"#{ $fa-var-link-slash }\""); }
383
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-o {
384
+ font-family: 'Font Awesome 6 Free';
385
+ font-weight: 400;
386
+ }
387
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-calendar }\""); }
388
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-maxcdn {
389
+ font-family: 'Font Awesome 6 Brands';
390
+ font-weight: 400;
391
+ }
392
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-html5 {
393
+ font-family: 'Font Awesome 6 Brands';
394
+ font-weight: 400;
395
+ }
396
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-css3 {
397
+ font-family: 'Font Awesome 6 Brands';
398
+ font-weight: 400;
399
+ }
400
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-unlock-alt { #{$fa-icon-property}: unquote("\"#{ $fa-var-unlock }\""); }
401
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-minus-square-o {
402
+ font-family: 'Font Awesome 6 Free';
403
+ font-weight: 400;
404
+ }
405
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-minus-square-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-minus }\""); }
406
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-level-up { #{$fa-icon-property}: unquote("\"#{ $fa-var-turn-up }\""); }
407
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-level-down { #{$fa-icon-property}: unquote("\"#{ $fa-var-turn-down }\""); }
408
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-pen }\""); }
409
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-external-link-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-up-right }\""); }
410
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-compass {
411
+ font-family: 'Font Awesome 6 Free';
412
+ font-weight: 400;
413
+ }
414
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-down {
415
+ font-family: 'Font Awesome 6 Free';
416
+ font-weight: 400;
417
+ }
418
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-down { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-caret-down }\""); }
419
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-down {
420
+ font-family: 'Font Awesome 6 Free';
421
+ font-weight: 400;
422
+ }
423
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-down { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-caret-down }\""); }
424
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-up {
425
+ font-family: 'Font Awesome 6 Free';
426
+ font-weight: 400;
427
+ }
428
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-up { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-caret-up }\""); }
429
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-up {
430
+ font-family: 'Font Awesome 6 Free';
431
+ font-weight: 400;
432
+ }
433
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-up { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-caret-up }\""); }
434
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-right {
435
+ font-family: 'Font Awesome 6 Free';
436
+ font-weight: 400;
437
+ }
438
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-right { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-caret-right }\""); }
439
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-right {
440
+ font-family: 'Font Awesome 6 Free';
441
+ font-weight: 400;
442
+ }
443
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-right { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-caret-right }\""); }
444
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-eur { #{$fa-icon-property}: unquote("\"#{ $fa-var-euro-sign }\""); }
445
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-euro { #{$fa-icon-property}: unquote("\"#{ $fa-var-euro-sign }\""); }
446
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-gbp { #{$fa-icon-property}: unquote("\"#{ $fa-var-sterling-sign }\""); }
447
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-usd { #{$fa-icon-property}: unquote("\"#{ $fa-var-dollar-sign }\""); }
448
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-dollar { #{$fa-icon-property}: unquote("\"#{ $fa-var-dollar-sign }\""); }
449
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-inr { #{$fa-icon-property}: unquote("\"#{ $fa-var-indian-rupee-sign }\""); }
450
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-rupee { #{$fa-icon-property}: unquote("\"#{ $fa-var-indian-rupee-sign }\""); }
451
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-jpy { #{$fa-icon-property}: unquote("\"#{ $fa-var-yen-sign }\""); }
452
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cny { #{$fa-icon-property}: unquote("\"#{ $fa-var-yen-sign }\""); }
453
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-rmb { #{$fa-icon-property}: unquote("\"#{ $fa-var-yen-sign }\""); }
454
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-yen { #{$fa-icon-property}: unquote("\"#{ $fa-var-yen-sign }\""); }
455
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-rub { #{$fa-icon-property}: unquote("\"#{ $fa-var-ruble-sign }\""); }
456
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-ruble { #{$fa-icon-property}: unquote("\"#{ $fa-var-ruble-sign }\""); }
457
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-rouble { #{$fa-icon-property}: unquote("\"#{ $fa-var-ruble-sign }\""); }
458
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-krw { #{$fa-icon-property}: unquote("\"#{ $fa-var-won-sign }\""); }
459
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-won { #{$fa-icon-property}: unquote("\"#{ $fa-var-won-sign }\""); }
460
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-btc {
461
+ font-family: 'Font Awesome 6 Brands';
462
+ font-weight: 400;
463
+ }
464
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bitcoin {
465
+ font-family: 'Font Awesome 6 Brands';
466
+ font-weight: 400;
467
+ }
468
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bitcoin { #{$fa-icon-property}: unquote("\"#{ $fa-var-btc }\""); }
469
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-text { #{$fa-icon-property}: unquote("\"#{ $fa-var-file-lines }\""); }
470
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-alpha-asc { #{$fa-icon-property}: unquote("\"#{ $fa-var-arrow-down-a-z }\""); }
471
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-alpha-desc { #{$fa-icon-property}: unquote("\"#{ $fa-var-arrow-down-z-a }\""); }
472
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-amount-asc { #{$fa-icon-property}: unquote("\"#{ $fa-var-arrow-down-short-wide }\""); }
473
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-amount-desc { #{$fa-icon-property}: unquote("\"#{ $fa-var-arrow-down-wide-short }\""); }
474
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-numeric-asc { #{$fa-icon-property}: unquote("\"#{ $fa-var-arrow-down-1-9 }\""); }
475
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sort-numeric-desc { #{$fa-icon-property}: unquote("\"#{ $fa-var-arrow-down-9-1 }\""); }
476
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-square {
477
+ font-family: 'Font Awesome 6 Brands';
478
+ font-weight: 400;
479
+ }
480
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-youtube }\""); }
481
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-youtube {
482
+ font-family: 'Font Awesome 6 Brands';
483
+ font-weight: 400;
484
+ }
485
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-xing {
486
+ font-family: 'Font Awesome 6 Brands';
487
+ font-weight: 400;
488
+ }
489
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-xing-square {
490
+ font-family: 'Font Awesome 6 Brands';
491
+ font-weight: 400;
492
+ }
493
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-xing-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-xing }\""); }
494
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-play {
495
+ font-family: 'Font Awesome 6 Brands';
496
+ font-weight: 400;
497
+ }
498
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-play { #{$fa-icon-property}: unquote("\"#{ $fa-var-youtube }\""); }
499
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-dropbox {
500
+ font-family: 'Font Awesome 6 Brands';
501
+ font-weight: 400;
502
+ }
503
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-stack-overflow {
504
+ font-family: 'Font Awesome 6 Brands';
505
+ font-weight: 400;
506
+ }
507
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-instagram {
508
+ font-family: 'Font Awesome 6 Brands';
509
+ font-weight: 400;
510
+ }
511
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-flickr {
512
+ font-family: 'Font Awesome 6 Brands';
513
+ font-weight: 400;
514
+ }
515
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-adn {
516
+ font-family: 'Font Awesome 6 Brands';
517
+ font-weight: 400;
518
+ }
519
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket {
520
+ font-family: 'Font Awesome 6 Brands';
521
+ font-weight: 400;
522
+ }
523
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket-square {
524
+ font-family: 'Font Awesome 6 Brands';
525
+ font-weight: 400;
526
+ }
527
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-bitbucket }\""); }
528
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-tumblr {
529
+ font-family: 'Font Awesome 6 Brands';
530
+ font-weight: 400;
531
+ }
532
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-tumblr-square {
533
+ font-family: 'Font Awesome 6 Brands';
534
+ font-weight: 400;
535
+ }
536
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-tumblr-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-tumblr }\""); }
537
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-down { #{$fa-icon-property}: unquote("\"#{ $fa-var-down-long }\""); }
538
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-up { #{$fa-icon-property}: unquote("\"#{ $fa-var-up-long }\""); }
539
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-left { #{$fa-icon-property}: unquote("\"#{ $fa-var-left-long }\""); }
540
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-right { #{$fa-icon-property}: unquote("\"#{ $fa-var-right-long }\""); }
541
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-apple {
542
+ font-family: 'Font Awesome 6 Brands';
543
+ font-weight: 400;
544
+ }
545
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-windows {
546
+ font-family: 'Font Awesome 6 Brands';
547
+ font-weight: 400;
548
+ }
549
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-android {
550
+ font-family: 'Font Awesome 6 Brands';
551
+ font-weight: 400;
552
+ }
553
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-linux {
554
+ font-family: 'Font Awesome 6 Brands';
555
+ font-weight: 400;
556
+ }
557
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-dribbble {
558
+ font-family: 'Font Awesome 6 Brands';
559
+ font-weight: 400;
560
+ }
561
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-skype {
562
+ font-family: 'Font Awesome 6 Brands';
563
+ font-weight: 400;
564
+ }
565
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-foursquare {
566
+ font-family: 'Font Awesome 6 Brands';
567
+ font-weight: 400;
568
+ }
569
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-trello {
570
+ font-family: 'Font Awesome 6 Brands';
571
+ font-weight: 400;
572
+ }
573
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-gratipay {
574
+ font-family: 'Font Awesome 6 Brands';
575
+ font-weight: 400;
576
+ }
577
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-gittip {
578
+ font-family: 'Font Awesome 6 Brands';
579
+ font-weight: 400;
580
+ }
581
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-gittip { #{$fa-icon-property}: unquote("\"#{ $fa-var-gratipay }\""); }
582
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sun-o {
583
+ font-family: 'Font Awesome 6 Free';
584
+ font-weight: 400;
585
+ }
586
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sun-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-sun }\""); }
587
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-moon-o {
588
+ font-family: 'Font Awesome 6 Free';
589
+ font-weight: 400;
590
+ }
591
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-moon-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-moon }\""); }
592
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-vk {
593
+ font-family: 'Font Awesome 6 Brands';
594
+ font-weight: 400;
595
+ }
596
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-weibo {
597
+ font-family: 'Font Awesome 6 Brands';
598
+ font-weight: 400;
599
+ }
600
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-renren {
601
+ font-family: 'Font Awesome 6 Brands';
602
+ font-weight: 400;
603
+ }
604
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-pagelines {
605
+ font-family: 'Font Awesome 6 Brands';
606
+ font-weight: 400;
607
+ }
608
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-stack-exchange {
609
+ font-family: 'Font Awesome 6 Brands';
610
+ font-weight: 400;
611
+ }
612
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-right {
613
+ font-family: 'Font Awesome 6 Free';
614
+ font-weight: 400;
615
+ }
616
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-right { #{$fa-icon-property}: unquote("\"#{ $fa-var-circle-right }\""); }
617
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-left {
618
+ font-family: 'Font Awesome 6 Free';
619
+ font-weight: 400;
620
+ }
621
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-left { #{$fa-icon-property}: unquote("\"#{ $fa-var-circle-left }\""); }
622
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-left {
623
+ font-family: 'Font Awesome 6 Free';
624
+ font-weight: 400;
625
+ }
626
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-left { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-caret-left }\""); }
627
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-left {
628
+ font-family: 'Font Awesome 6 Free';
629
+ font-weight: 400;
630
+ }
631
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-left { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-caret-left }\""); }
632
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-dot-circle-o {
633
+ font-family: 'Font Awesome 6 Free';
634
+ font-weight: 400;
635
+ }
636
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-dot-circle-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-circle-dot }\""); }
637
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo-square {
638
+ font-family: 'Font Awesome 6 Brands';
639
+ font-weight: 400;
640
+ }
641
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-vimeo }\""); }
642
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-try { #{$fa-icon-property}: unquote("\"#{ $fa-var-turkish-lira-sign }\""); }
643
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-turkish-lira { #{$fa-icon-property}: unquote("\"#{ $fa-var-turkish-lira-sign }\""); }
644
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-plus-square-o {
645
+ font-family: 'Font Awesome 6 Free';
646
+ font-weight: 400;
647
+ }
648
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-plus-square-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-plus }\""); }
649
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-slack {
650
+ font-family: 'Font Awesome 6 Brands';
651
+ font-weight: 400;
652
+ }
653
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-wordpress {
654
+ font-family: 'Font Awesome 6 Brands';
655
+ font-weight: 400;
656
+ }
657
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-openid {
658
+ font-family: 'Font Awesome 6 Brands';
659
+ font-weight: 400;
660
+ }
661
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-institution { #{$fa-icon-property}: unquote("\"#{ $fa-var-building-columns }\""); }
662
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bank { #{$fa-icon-property}: unquote("\"#{ $fa-var-building-columns }\""); }
663
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-mortar-board { #{$fa-icon-property}: unquote("\"#{ $fa-var-graduation-cap }\""); }
664
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-yahoo {
665
+ font-family: 'Font Awesome 6 Brands';
666
+ font-weight: 400;
667
+ }
668
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-google {
669
+ font-family: 'Font Awesome 6 Brands';
670
+ font-weight: 400;
671
+ }
672
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-reddit {
673
+ font-family: 'Font Awesome 6 Brands';
674
+ font-weight: 400;
675
+ }
676
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-reddit-square {
677
+ font-family: 'Font Awesome 6 Brands';
678
+ font-weight: 400;
679
+ }
680
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-reddit-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-reddit }\""); }
681
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-stumbleupon-circle {
682
+ font-family: 'Font Awesome 6 Brands';
683
+ font-weight: 400;
684
+ }
685
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-stumbleupon {
686
+ font-family: 'Font Awesome 6 Brands';
687
+ font-weight: 400;
688
+ }
689
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-delicious {
690
+ font-family: 'Font Awesome 6 Brands';
691
+ font-weight: 400;
692
+ }
693
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-digg {
694
+ font-family: 'Font Awesome 6 Brands';
695
+ font-weight: 400;
696
+ }
697
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-pied-piper-pp {
698
+ font-family: 'Font Awesome 6 Brands';
699
+ font-weight: 400;
700
+ }
701
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-pied-piper-alt {
702
+ font-family: 'Font Awesome 6 Brands';
703
+ font-weight: 400;
704
+ }
705
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-drupal {
706
+ font-family: 'Font Awesome 6 Brands';
707
+ font-weight: 400;
708
+ }
709
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-joomla {
710
+ font-family: 'Font Awesome 6 Brands';
711
+ font-weight: 400;
712
+ }
713
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-behance {
714
+ font-family: 'Font Awesome 6 Brands';
715
+ font-weight: 400;
716
+ }
717
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-behance-square {
718
+ font-family: 'Font Awesome 6 Brands';
719
+ font-weight: 400;
720
+ }
721
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-behance-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-behance }\""); }
722
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-steam {
723
+ font-family: 'Font Awesome 6 Brands';
724
+ font-weight: 400;
725
+ }
726
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-steam-square {
727
+ font-family: 'Font Awesome 6 Brands';
728
+ font-weight: 400;
729
+ }
730
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-steam-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-steam }\""); }
731
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-automobile { #{$fa-icon-property}: unquote("\"#{ $fa-var-car }\""); }
732
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cab { #{$fa-icon-property}: unquote("\"#{ $fa-var-taxi }\""); }
733
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-spotify {
734
+ font-family: 'Font Awesome 6 Brands';
735
+ font-weight: 400;
736
+ }
737
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-deviantart {
738
+ font-family: 'Font Awesome 6 Brands';
739
+ font-weight: 400;
740
+ }
741
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-soundcloud {
742
+ font-family: 'Font Awesome 6 Brands';
743
+ font-weight: 400;
744
+ }
745
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-pdf-o {
746
+ font-family: 'Font Awesome 6 Free';
747
+ font-weight: 400;
748
+ }
749
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-pdf-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-file-pdf }\""); }
750
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-word-o {
751
+ font-family: 'Font Awesome 6 Free';
752
+ font-weight: 400;
753
+ }
754
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-word-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-file-word }\""); }
755
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-excel-o {
756
+ font-family: 'Font Awesome 6 Free';
757
+ font-weight: 400;
758
+ }
759
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-excel-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-file-excel }\""); }
760
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-powerpoint-o {
761
+ font-family: 'Font Awesome 6 Free';
762
+ font-weight: 400;
763
+ }
764
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-powerpoint-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-file-powerpoint }\""); }
765
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-image-o {
766
+ font-family: 'Font Awesome 6 Free';
767
+ font-weight: 400;
768
+ }
769
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-image-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-file-image }\""); }
770
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-photo-o {
771
+ font-family: 'Font Awesome 6 Free';
772
+ font-weight: 400;
773
+ }
774
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-photo-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-file-image }\""); }
775
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-picture-o {
776
+ font-family: 'Font Awesome 6 Free';
777
+ font-weight: 400;
778
+ }
779
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-picture-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-file-image }\""); }
780
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-archive-o {
781
+ font-family: 'Font Awesome 6 Free';
782
+ font-weight: 400;
783
+ }
784
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-archive-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-file-zipper }\""); }
785
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-zip-o {
786
+ font-family: 'Font Awesome 6 Free';
787
+ font-weight: 400;
788
+ }
789
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-zip-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-file-zipper }\""); }
790
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-audio-o {
791
+ font-family: 'Font Awesome 6 Free';
792
+ font-weight: 400;
793
+ }
794
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-audio-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-file-audio }\""); }
795
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-sound-o {
796
+ font-family: 'Font Awesome 6 Free';
797
+ font-weight: 400;
798
+ }
799
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-sound-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-file-audio }\""); }
800
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-video-o {
801
+ font-family: 'Font Awesome 6 Free';
802
+ font-weight: 400;
803
+ }
804
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-video-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-file-video }\""); }
805
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-movie-o {
806
+ font-family: 'Font Awesome 6 Free';
807
+ font-weight: 400;
808
+ }
809
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-movie-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-file-video }\""); }
810
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-code-o {
811
+ font-family: 'Font Awesome 6 Free';
812
+ font-weight: 400;
813
+ }
814
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-file-code-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-file-code }\""); }
815
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-vine {
816
+ font-family: 'Font Awesome 6 Brands';
817
+ font-weight: 400;
818
+ }
819
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-codepen {
820
+ font-family: 'Font Awesome 6 Brands';
821
+ font-weight: 400;
822
+ }
823
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-jsfiddle {
824
+ font-family: 'Font Awesome 6 Brands';
825
+ font-weight: 400;
826
+ }
827
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-life-bouy { #{$fa-icon-property}: unquote("\"#{ $fa-var-life-ring }\""); }
828
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-life-buoy { #{$fa-icon-property}: unquote("\"#{ $fa-var-life-ring }\""); }
829
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-life-saver { #{$fa-icon-property}: unquote("\"#{ $fa-var-life-ring }\""); }
830
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-support { #{$fa-icon-property}: unquote("\"#{ $fa-var-life-ring }\""); }
831
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o-notch { #{$fa-icon-property}: unquote("\"#{ $fa-var-circle-notch }\""); }
832
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-rebel {
833
+ font-family: 'Font Awesome 6 Brands';
834
+ font-weight: 400;
835
+ }
836
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-ra {
837
+ font-family: 'Font Awesome 6 Brands';
838
+ font-weight: 400;
839
+ }
840
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-ra { #{$fa-icon-property}: unquote("\"#{ $fa-var-rebel }\""); }
841
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-resistance {
842
+ font-family: 'Font Awesome 6 Brands';
843
+ font-weight: 400;
844
+ }
845
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-resistance { #{$fa-icon-property}: unquote("\"#{ $fa-var-rebel }\""); }
846
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-empire {
847
+ font-family: 'Font Awesome 6 Brands';
848
+ font-weight: 400;
849
+ }
850
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-ge {
851
+ font-family: 'Font Awesome 6 Brands';
852
+ font-weight: 400;
853
+ }
854
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-ge { #{$fa-icon-property}: unquote("\"#{ $fa-var-empire }\""); }
855
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-git-square {
856
+ font-family: 'Font Awesome 6 Brands';
857
+ font-weight: 400;
858
+ }
859
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-git-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-git }\""); }
860
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-git {
861
+ font-family: 'Font Awesome 6 Brands';
862
+ font-weight: 400;
863
+ }
864
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hacker-news {
865
+ font-family: 'Font Awesome 6 Brands';
866
+ font-weight: 400;
867
+ }
868
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator-square {
869
+ font-family: 'Font Awesome 6 Brands';
870
+ font-weight: 400;
871
+ }
872
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-hacker-news }\""); }
873
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-yc-square {
874
+ font-family: 'Font Awesome 6 Brands';
875
+ font-weight: 400;
876
+ }
877
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-yc-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-hacker-news }\""); }
878
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-tencent-weibo {
879
+ font-family: 'Font Awesome 6 Brands';
880
+ font-weight: 400;
881
+ }
882
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-qq {
883
+ font-family: 'Font Awesome 6 Brands';
884
+ font-weight: 400;
885
+ }
886
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-weixin {
887
+ font-family: 'Font Awesome 6 Brands';
888
+ font-weight: 400;
889
+ }
890
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-wechat {
891
+ font-family: 'Font Awesome 6 Brands';
892
+ font-weight: 400;
893
+ }
894
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-wechat { #{$fa-icon-property}: unquote("\"#{ $fa-var-weixin }\""); }
895
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-send { #{$fa-icon-property}: unquote("\"#{ $fa-var-paper-plane }\""); }
896
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-paper-plane-o {
897
+ font-family: 'Font Awesome 6 Free';
898
+ font-weight: 400;
899
+ }
900
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-paper-plane-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-paper-plane }\""); }
901
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-send-o {
902
+ font-family: 'Font Awesome 6 Free';
903
+ font-weight: 400;
904
+ }
905
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-send-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-paper-plane }\""); }
906
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-circle-thin {
907
+ font-family: 'Font Awesome 6 Free';
908
+ font-weight: 400;
909
+ }
910
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-circle-thin { #{$fa-icon-property}: unquote("\"#{ $fa-var-circle }\""); }
911
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-header { #{$fa-icon-property}: unquote("\"#{ $fa-var-heading }\""); }
912
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-futbol-o {
913
+ font-family: 'Font Awesome 6 Free';
914
+ font-weight: 400;
915
+ }
916
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-futbol-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-futbol }\""); }
917
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-soccer-ball-o {
918
+ font-family: 'Font Awesome 6 Free';
919
+ font-weight: 400;
920
+ }
921
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-soccer-ball-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-futbol }\""); }
922
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-slideshare {
923
+ font-family: 'Font Awesome 6 Brands';
924
+ font-weight: 400;
925
+ }
926
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-twitch {
927
+ font-family: 'Font Awesome 6 Brands';
928
+ font-weight: 400;
929
+ }
930
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-yelp {
931
+ font-family: 'Font Awesome 6 Brands';
932
+ font-weight: 400;
933
+ }
934
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-newspaper-o {
935
+ font-family: 'Font Awesome 6 Free';
936
+ font-weight: 400;
937
+ }
938
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-newspaper-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-newspaper }\""); }
939
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-paypal {
940
+ font-family: 'Font Awesome 6 Brands';
941
+ font-weight: 400;
942
+ }
943
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-google-wallet {
944
+ font-family: 'Font Awesome 6 Brands';
945
+ font-weight: 400;
946
+ }
947
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-visa {
948
+ font-family: 'Font Awesome 6 Brands';
949
+ font-weight: 400;
950
+ }
951
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-mastercard {
952
+ font-family: 'Font Awesome 6 Brands';
953
+ font-weight: 400;
954
+ }
955
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-discover {
956
+ font-family: 'Font Awesome 6 Brands';
957
+ font-weight: 400;
958
+ }
959
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-amex {
960
+ font-family: 'Font Awesome 6 Brands';
961
+ font-weight: 400;
962
+ }
963
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-paypal {
964
+ font-family: 'Font Awesome 6 Brands';
965
+ font-weight: 400;
966
+ }
967
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-stripe {
968
+ font-family: 'Font Awesome 6 Brands';
969
+ font-weight: 400;
970
+ }
971
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bell-slash-o {
972
+ font-family: 'Font Awesome 6 Free';
973
+ font-weight: 400;
974
+ }
975
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bell-slash-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-bell-slash }\""); }
976
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-trash { #{$fa-icon-property}: unquote("\"#{ $fa-var-trash-can }\""); }
977
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-copyright {
978
+ font-family: 'Font Awesome 6 Free';
979
+ font-weight: 400;
980
+ }
981
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-eyedropper { #{$fa-icon-property}: unquote("\"#{ $fa-var-eye-dropper }\""); }
982
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-area-chart { #{$fa-icon-property}: unquote("\"#{ $fa-var-chart-area }\""); }
983
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-pie-chart { #{$fa-icon-property}: unquote("\"#{ $fa-var-chart-pie }\""); }
984
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-line-chart { #{$fa-icon-property}: unquote("\"#{ $fa-var-chart-line }\""); }
985
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-lastfm {
986
+ font-family: 'Font Awesome 6 Brands';
987
+ font-weight: 400;
988
+ }
989
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-lastfm-square {
990
+ font-family: 'Font Awesome 6 Brands';
991
+ font-weight: 400;
992
+ }
993
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-lastfm-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-lastfm }\""); }
994
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-ioxhost {
995
+ font-family: 'Font Awesome 6 Brands';
996
+ font-weight: 400;
997
+ }
998
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-angellist {
999
+ font-family: 'Font Awesome 6 Brands';
1000
+ font-weight: 400;
1001
+ }
1002
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cc {
1003
+ font-family: 'Font Awesome 6 Free';
1004
+ font-weight: 400;
1005
+ }
1006
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cc { #{$fa-icon-property}: unquote("\"#{ $fa-var-closed-captioning }\""); }
1007
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-ils { #{$fa-icon-property}: unquote("\"#{ $fa-var-shekel-sign }\""); }
1008
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-shekel { #{$fa-icon-property}: unquote("\"#{ $fa-var-shekel-sign }\""); }
1009
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sheqel { #{$fa-icon-property}: unquote("\"#{ $fa-var-shekel-sign }\""); }
1010
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-buysellads {
1011
+ font-family: 'Font Awesome 6 Brands';
1012
+ font-weight: 400;
1013
+ }
1014
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-connectdevelop {
1015
+ font-family: 'Font Awesome 6 Brands';
1016
+ font-weight: 400;
1017
+ }
1018
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-dashcube {
1019
+ font-family: 'Font Awesome 6 Brands';
1020
+ font-weight: 400;
1021
+ }
1022
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-forumbee {
1023
+ font-family: 'Font Awesome 6 Brands';
1024
+ font-weight: 400;
1025
+ }
1026
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-leanpub {
1027
+ font-family: 'Font Awesome 6 Brands';
1028
+ font-weight: 400;
1029
+ }
1030
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sellsy {
1031
+ font-family: 'Font Awesome 6 Brands';
1032
+ font-weight: 400;
1033
+ }
1034
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-shirtsinbulk {
1035
+ font-family: 'Font Awesome 6 Brands';
1036
+ font-weight: 400;
1037
+ }
1038
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-simplybuilt {
1039
+ font-family: 'Font Awesome 6 Brands';
1040
+ font-weight: 400;
1041
+ }
1042
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-skyatlas {
1043
+ font-family: 'Font Awesome 6 Brands';
1044
+ font-weight: 400;
1045
+ }
1046
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-diamond {
1047
+ font-family: 'Font Awesome 6 Free';
1048
+ font-weight: 400;
1049
+ }
1050
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-diamond { #{$fa-icon-property}: unquote("\"#{ $fa-var-gem }\""); }
1051
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-transgender { #{$fa-icon-property}: unquote("\"#{ $fa-var-mars-and-venus }\""); }
1052
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-intersex { #{$fa-icon-property}: unquote("\"#{ $fa-var-mars-and-venus }\""); }
1053
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-transgender-alt { #{$fa-icon-property}: unquote("\"#{ $fa-var-transgender }\""); }
1054
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-official {
1055
+ font-family: 'Font Awesome 6 Brands';
1056
+ font-weight: 400;
1057
+ }
1058
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-official { #{$fa-icon-property}: unquote("\"#{ $fa-var-facebook }\""); }
1059
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest-p {
1060
+ font-family: 'Font Awesome 6 Brands';
1061
+ font-weight: 400;
1062
+ }
1063
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-whatsapp {
1064
+ font-family: 'Font Awesome 6 Brands';
1065
+ font-weight: 400;
1066
+ }
1067
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hotel { #{$fa-icon-property}: unquote("\"#{ $fa-var-bed }\""); }
1068
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-viacoin {
1069
+ font-family: 'Font Awesome 6 Brands';
1070
+ font-weight: 400;
1071
+ }
1072
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-medium {
1073
+ font-family: 'Font Awesome 6 Brands';
1074
+ font-weight: 400;
1075
+ }
1076
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator {
1077
+ font-family: 'Font Awesome 6 Brands';
1078
+ font-weight: 400;
1079
+ }
1080
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-yc {
1081
+ font-family: 'Font Awesome 6 Brands';
1082
+ font-weight: 400;
1083
+ }
1084
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-yc { #{$fa-icon-property}: unquote("\"#{ $fa-var-y-combinator }\""); }
1085
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-optin-monster {
1086
+ font-family: 'Font Awesome 6 Brands';
1087
+ font-weight: 400;
1088
+ }
1089
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-opencart {
1090
+ font-family: 'Font Awesome 6 Brands';
1091
+ font-weight: 400;
1092
+ }
1093
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-expeditedssl {
1094
+ font-family: 'Font Awesome 6 Brands';
1095
+ font-weight: 400;
1096
+ }
1097
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-battery-4 { #{$fa-icon-property}: unquote("\"#{ $fa-var-battery-full }\""); }
1098
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-battery { #{$fa-icon-property}: unquote("\"#{ $fa-var-battery-full }\""); }
1099
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-battery-3 { #{$fa-icon-property}: unquote("\"#{ $fa-var-battery-three-quarters }\""); }
1100
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-battery-2 { #{$fa-icon-property}: unquote("\"#{ $fa-var-battery-half }\""); }
1101
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-battery-1 { #{$fa-icon-property}: unquote("\"#{ $fa-var-battery-quarter }\""); }
1102
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-battery-0 { #{$fa-icon-property}: unquote("\"#{ $fa-var-battery-empty }\""); }
1103
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-object-group {
1104
+ font-family: 'Font Awesome 6 Free';
1105
+ font-weight: 400;
1106
+ }
1107
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-object-ungroup {
1108
+ font-family: 'Font Awesome 6 Free';
1109
+ font-weight: 400;
1110
+ }
1111
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sticky-note-o {
1112
+ font-family: 'Font Awesome 6 Free';
1113
+ font-weight: 400;
1114
+ }
1115
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-sticky-note-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-note-sticky }\""); }
1116
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-jcb {
1117
+ font-family: 'Font Awesome 6 Brands';
1118
+ font-weight: 400;
1119
+ }
1120
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-cc-diners-club {
1121
+ font-family: 'Font Awesome 6 Brands';
1122
+ font-weight: 400;
1123
+ }
1124
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-clone {
1125
+ font-family: 'Font Awesome 6 Free';
1126
+ font-weight: 400;
1127
+ }
1128
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-hourglass }\""); }
1129
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-1 { #{$fa-icon-property}: unquote("\"#{ $fa-var-hourglass-start }\""); }
1130
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-2 { #{$fa-icon-property}: unquote("\"#{ $fa-var-hourglass-half }\""); }
1131
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-3 { #{$fa-icon-property}: unquote("\"#{ $fa-var-hourglass-end }\""); }
1132
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-rock-o {
1133
+ font-family: 'Font Awesome 6 Free';
1134
+ font-weight: 400;
1135
+ }
1136
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-rock-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-hand-back-fist }\""); }
1137
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-grab-o {
1138
+ font-family: 'Font Awesome 6 Free';
1139
+ font-weight: 400;
1140
+ }
1141
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-grab-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-hand-back-fist }\""); }
1142
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-paper-o {
1143
+ font-family: 'Font Awesome 6 Free';
1144
+ font-weight: 400;
1145
+ }
1146
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-paper-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-hand }\""); }
1147
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-stop-o {
1148
+ font-family: 'Font Awesome 6 Free';
1149
+ font-weight: 400;
1150
+ }
1151
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-stop-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-hand }\""); }
1152
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-scissors-o {
1153
+ font-family: 'Font Awesome 6 Free';
1154
+ font-weight: 400;
1155
+ }
1156
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-scissors-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-hand-scissors }\""); }
1157
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-lizard-o {
1158
+ font-family: 'Font Awesome 6 Free';
1159
+ font-weight: 400;
1160
+ }
1161
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-lizard-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-hand-lizard }\""); }
1162
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-spock-o {
1163
+ font-family: 'Font Awesome 6 Free';
1164
+ font-weight: 400;
1165
+ }
1166
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-spock-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-hand-spock }\""); }
1167
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-pointer-o {
1168
+ font-family: 'Font Awesome 6 Free';
1169
+ font-weight: 400;
1170
+ }
1171
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-pointer-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-hand-pointer }\""); }
1172
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-peace-o {
1173
+ font-family: 'Font Awesome 6 Free';
1174
+ font-weight: 400;
1175
+ }
1176
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hand-peace-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-hand-peace }\""); }
1177
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-registered {
1178
+ font-family: 'Font Awesome 6 Free';
1179
+ font-weight: 400;
1180
+ }
1181
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-creative-commons {
1182
+ font-family: 'Font Awesome 6 Brands';
1183
+ font-weight: 400;
1184
+ }
1185
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-gg {
1186
+ font-family: 'Font Awesome 6 Brands';
1187
+ font-weight: 400;
1188
+ }
1189
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-gg-circle {
1190
+ font-family: 'Font Awesome 6 Brands';
1191
+ font-weight: 400;
1192
+ }
1193
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-odnoklassniki {
1194
+ font-family: 'Font Awesome 6 Brands';
1195
+ font-weight: 400;
1196
+ }
1197
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-odnoklassniki-square {
1198
+ font-family: 'Font Awesome 6 Brands';
1199
+ font-weight: 400;
1200
+ }
1201
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-odnoklassniki-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-odnoklassniki }\""); }
1202
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-get-pocket {
1203
+ font-family: 'Font Awesome 6 Brands';
1204
+ font-weight: 400;
1205
+ }
1206
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-wikipedia-w {
1207
+ font-family: 'Font Awesome 6 Brands';
1208
+ font-weight: 400;
1209
+ }
1210
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-safari {
1211
+ font-family: 'Font Awesome 6 Brands';
1212
+ font-weight: 400;
1213
+ }
1214
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-chrome {
1215
+ font-family: 'Font Awesome 6 Brands';
1216
+ font-weight: 400;
1217
+ }
1218
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-firefox {
1219
+ font-family: 'Font Awesome 6 Brands';
1220
+ font-weight: 400;
1221
+ }
1222
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-opera {
1223
+ font-family: 'Font Awesome 6 Brands';
1224
+ font-weight: 400;
1225
+ }
1226
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-internet-explorer {
1227
+ font-family: 'Font Awesome 6 Brands';
1228
+ font-weight: 400;
1229
+ }
1230
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-television { #{$fa-icon-property}: unquote("\"#{ $fa-var-tv }\""); }
1231
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-contao {
1232
+ font-family: 'Font Awesome 6 Brands';
1233
+ font-weight: 400;
1234
+ }
1235
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-500px {
1236
+ font-family: 'Font Awesome 6 Brands';
1237
+ font-weight: 400;
1238
+ }
1239
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-amazon {
1240
+ font-family: 'Font Awesome 6 Brands';
1241
+ font-weight: 400;
1242
+ }
1243
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-plus-o {
1244
+ font-family: 'Font Awesome 6 Free';
1245
+ font-weight: 400;
1246
+ }
1247
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-plus-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-calendar-plus }\""); }
1248
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-minus-o {
1249
+ font-family: 'Font Awesome 6 Free';
1250
+ font-weight: 400;
1251
+ }
1252
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-minus-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-calendar-minus }\""); }
1253
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-times-o {
1254
+ font-family: 'Font Awesome 6 Free';
1255
+ font-weight: 400;
1256
+ }
1257
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-times-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-calendar-xmark }\""); }
1258
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-check-o {
1259
+ font-family: 'Font Awesome 6 Free';
1260
+ font-weight: 400;
1261
+ }
1262
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-check-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-calendar-check }\""); }
1263
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-map-o {
1264
+ font-family: 'Font Awesome 6 Free';
1265
+ font-weight: 400;
1266
+ }
1267
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-map-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-map }\""); }
1268
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-commenting { #{$fa-icon-property}: unquote("\"#{ $fa-var-comment-dots }\""); }
1269
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-commenting-o {
1270
+ font-family: 'Font Awesome 6 Free';
1271
+ font-weight: 400;
1272
+ }
1273
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-commenting-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-comment-dots }\""); }
1274
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-houzz {
1275
+ font-family: 'Font Awesome 6 Brands';
1276
+ font-weight: 400;
1277
+ }
1278
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo {
1279
+ font-family: 'Font Awesome 6 Brands';
1280
+ font-weight: 400;
1281
+ }
1282
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo { #{$fa-icon-property}: unquote("\"#{ $fa-var-vimeo-v }\""); }
1283
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-black-tie {
1284
+ font-family: 'Font Awesome 6 Brands';
1285
+ font-weight: 400;
1286
+ }
1287
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-fonticons {
1288
+ font-family: 'Font Awesome 6 Brands';
1289
+ font-weight: 400;
1290
+ }
1291
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-reddit-alien {
1292
+ font-family: 'Font Awesome 6 Brands';
1293
+ font-weight: 400;
1294
+ }
1295
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-edge {
1296
+ font-family: 'Font Awesome 6 Brands';
1297
+ font-weight: 400;
1298
+ }
1299
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-credit-card-alt { #{$fa-icon-property}: unquote("\"#{ $fa-var-credit-card }\""); }
1300
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-codiepie {
1301
+ font-family: 'Font Awesome 6 Brands';
1302
+ font-weight: 400;
1303
+ }
1304
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-modx {
1305
+ font-family: 'Font Awesome 6 Brands';
1306
+ font-weight: 400;
1307
+ }
1308
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-fort-awesome {
1309
+ font-family: 'Font Awesome 6 Brands';
1310
+ font-weight: 400;
1311
+ }
1312
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-usb {
1313
+ font-family: 'Font Awesome 6 Brands';
1314
+ font-weight: 400;
1315
+ }
1316
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-product-hunt {
1317
+ font-family: 'Font Awesome 6 Brands';
1318
+ font-weight: 400;
1319
+ }
1320
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-mixcloud {
1321
+ font-family: 'Font Awesome 6 Brands';
1322
+ font-weight: 400;
1323
+ }
1324
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-scribd {
1325
+ font-family: 'Font Awesome 6 Brands';
1326
+ font-weight: 400;
1327
+ }
1328
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-pause-circle-o {
1329
+ font-family: 'Font Awesome 6 Free';
1330
+ font-weight: 400;
1331
+ }
1332
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-pause-circle-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-circle-pause }\""); }
1333
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-stop-circle-o {
1334
+ font-family: 'Font Awesome 6 Free';
1335
+ font-weight: 400;
1336
+ }
1337
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-stop-circle-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-circle-stop }\""); }
1338
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bluetooth {
1339
+ font-family: 'Font Awesome 6 Brands';
1340
+ font-weight: 400;
1341
+ }
1342
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bluetooth-b {
1343
+ font-family: 'Font Awesome 6 Brands';
1344
+ font-weight: 400;
1345
+ }
1346
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-gitlab {
1347
+ font-family: 'Font Awesome 6 Brands';
1348
+ font-weight: 400;
1349
+ }
1350
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-wpbeginner {
1351
+ font-family: 'Font Awesome 6 Brands';
1352
+ font-weight: 400;
1353
+ }
1354
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-wpforms {
1355
+ font-family: 'Font Awesome 6 Brands';
1356
+ font-weight: 400;
1357
+ }
1358
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-envira {
1359
+ font-family: 'Font Awesome 6 Brands';
1360
+ font-weight: 400;
1361
+ }
1362
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-wheelchair-alt {
1363
+ font-family: 'Font Awesome 6 Brands';
1364
+ font-weight: 400;
1365
+ }
1366
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-wheelchair-alt { #{$fa-icon-property}: unquote("\"#{ $fa-var-accessible-icon }\""); }
1367
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-question-circle-o {
1368
+ font-family: 'Font Awesome 6 Free';
1369
+ font-weight: 400;
1370
+ }
1371
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-question-circle-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-circle-question }\""); }
1372
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-volume-control-phone { #{$fa-icon-property}: unquote("\"#{ $fa-var-phone-volume }\""); }
1373
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-asl-interpreting { #{$fa-icon-property}: unquote("\"#{ $fa-var-hands-asl-interpreting }\""); }
1374
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-deafness { #{$fa-icon-property}: unquote("\"#{ $fa-var-ear-deaf }\""); }
1375
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-hard-of-hearing { #{$fa-icon-property}: unquote("\"#{ $fa-var-ear-deaf }\""); }
1376
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-glide {
1377
+ font-family: 'Font Awesome 6 Brands';
1378
+ font-weight: 400;
1379
+ }
1380
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-glide-g {
1381
+ font-family: 'Font Awesome 6 Brands';
1382
+ font-weight: 400;
1383
+ }
1384
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-signing { #{$fa-icon-property}: unquote("\"#{ $fa-var-hands }\""); }
1385
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-viadeo {
1386
+ font-family: 'Font Awesome 6 Brands';
1387
+ font-weight: 400;
1388
+ }
1389
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-viadeo-square {
1390
+ font-family: 'Font Awesome 6 Brands';
1391
+ font-weight: 400;
1392
+ }
1393
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-viadeo-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-viadeo }\""); }
1394
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat {
1395
+ font-family: 'Font Awesome 6 Brands';
1396
+ font-weight: 400;
1397
+ }
1398
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat-ghost {
1399
+ font-family: 'Font Awesome 6 Brands';
1400
+ font-weight: 400;
1401
+ }
1402
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat-ghost { #{$fa-icon-property}: unquote("\"#{ $fa-var-snapchat }\""); }
1403
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat-square {
1404
+ font-family: 'Font Awesome 6 Brands';
1405
+ font-weight: 400;
1406
+ }
1407
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat-square { #{$fa-icon-property}: unquote("\"#{ $fa-var-square-snapchat }\""); }
1408
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-pied-piper {
1409
+ font-family: 'Font Awesome 6 Brands';
1410
+ font-weight: 400;
1411
+ }
1412
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-first-order {
1413
+ font-family: 'Font Awesome 6 Brands';
1414
+ font-weight: 400;
1415
+ }
1416
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-yoast {
1417
+ font-family: 'Font Awesome 6 Brands';
1418
+ font-weight: 400;
1419
+ }
1420
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-themeisle {
1421
+ font-family: 'Font Awesome 6 Brands';
1422
+ font-weight: 400;
1423
+ }
1424
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-official {
1425
+ font-family: 'Font Awesome 6 Brands';
1426
+ font-weight: 400;
1427
+ }
1428
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-official { #{$fa-icon-property}: unquote("\"#{ $fa-var-google-plus }\""); }
1429
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-circle {
1430
+ font-family: 'Font Awesome 6 Brands';
1431
+ font-weight: 400;
1432
+ }
1433
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-circle { #{$fa-icon-property}: unquote("\"#{ $fa-var-google-plus }\""); }
1434
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-font-awesome {
1435
+ font-family: 'Font Awesome 6 Brands';
1436
+ font-weight: 400;
1437
+ }
1438
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-fa {
1439
+ font-family: 'Font Awesome 6 Brands';
1440
+ font-weight: 400;
1441
+ }
1442
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-fa { #{$fa-icon-property}: unquote("\"#{ $fa-var-font-awesome }\""); }
1443
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-handshake-o {
1444
+ font-family: 'Font Awesome 6 Free';
1445
+ font-weight: 400;
1446
+ }
1447
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-handshake-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-handshake }\""); }
1448
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-open-o {
1449
+ font-family: 'Font Awesome 6 Free';
1450
+ font-weight: 400;
1451
+ }
1452
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-open-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-envelope-open }\""); }
1453
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-linode {
1454
+ font-family: 'Font Awesome 6 Brands';
1455
+ font-weight: 400;
1456
+ }
1457
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-address-book-o {
1458
+ font-family: 'Font Awesome 6 Free';
1459
+ font-weight: 400;
1460
+ }
1461
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-address-book-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-address-book }\""); }
1462
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-vcard { #{$fa-icon-property}: unquote("\"#{ $fa-var-address-card }\""); }
1463
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-address-card-o {
1464
+ font-family: 'Font Awesome 6 Free';
1465
+ font-weight: 400;
1466
+ }
1467
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-address-card-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-address-card }\""); }
1468
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-vcard-o {
1469
+ font-family: 'Font Awesome 6 Free';
1470
+ font-weight: 400;
1471
+ }
1472
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-vcard-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-address-card }\""); }
1473
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-user-circle-o {
1474
+ font-family: 'Font Awesome 6 Free';
1475
+ font-weight: 400;
1476
+ }
1477
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-user-circle-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-circle-user }\""); }
1478
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-user-o {
1479
+ font-family: 'Font Awesome 6 Free';
1480
+ font-weight: 400;
1481
+ }
1482
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-user-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-user }\""); }
1483
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-id-badge {
1484
+ font-family: 'Font Awesome 6 Free';
1485
+ font-weight: 400;
1486
+ }
1487
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license { #{$fa-icon-property}: unquote("\"#{ $fa-var-id-card }\""); }
1488
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-id-card-o {
1489
+ font-family: 'Font Awesome 6 Free';
1490
+ font-weight: 400;
1491
+ }
1492
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-id-card-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-id-card }\""); }
1493
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license-o {
1494
+ font-family: 'Font Awesome 6 Free';
1495
+ font-weight: 400;
1496
+ }
1497
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-id-card }\""); }
1498
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-quora {
1499
+ font-family: 'Font Awesome 6 Brands';
1500
+ font-weight: 400;
1501
+ }
1502
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-free-code-camp {
1503
+ font-family: 'Font Awesome 6 Brands';
1504
+ font-weight: 400;
1505
+ }
1506
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-telegram {
1507
+ font-family: 'Font Awesome 6 Brands';
1508
+ font-weight: 400;
1509
+ }
1510
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-4 { #{$fa-icon-property}: unquote("\"#{ $fa-var-temperature-full }\""); }
1511
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer { #{$fa-icon-property}: unquote("\"#{ $fa-var-temperature-full }\""); }
1512
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-3 { #{$fa-icon-property}: unquote("\"#{ $fa-var-temperature-three-quarters }\""); }
1513
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-2 { #{$fa-icon-property}: unquote("\"#{ $fa-var-temperature-half }\""); }
1514
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-1 { #{$fa-icon-property}: unquote("\"#{ $fa-var-temperature-quarter }\""); }
1515
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-0 { #{$fa-icon-property}: unquote("\"#{ $fa-var-temperature-empty }\""); }
1516
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bathtub { #{$fa-icon-property}: unquote("\"#{ $fa-var-bath }\""); }
1517
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-s15 { #{$fa-icon-property}: unquote("\"#{ $fa-var-bath }\""); }
1518
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-window-maximize {
1519
+ font-family: 'Font Awesome 6 Free';
1520
+ font-weight: 400;
1521
+ }
1522
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-window-restore {
1523
+ font-family: 'Font Awesome 6 Free';
1524
+ font-weight: 400;
1525
+ }
1526
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle { #{$fa-icon-property}: unquote("\"#{ $fa-var-rectangle-xmark }\""); }
1527
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-window-close-o {
1528
+ font-family: 'Font Awesome 6 Free';
1529
+ font-weight: 400;
1530
+ }
1531
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-window-close-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-rectangle-xmark }\""); }
1532
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle-o {
1533
+ font-family: 'Font Awesome 6 Free';
1534
+ font-weight: 400;
1535
+ }
1536
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-rectangle-xmark }\""); }
1537
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-bandcamp {
1538
+ font-family: 'Font Awesome 6 Brands';
1539
+ font-weight: 400;
1540
+ }
1541
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-grav {
1542
+ font-family: 'Font Awesome 6 Brands';
1543
+ font-weight: 400;
1544
+ }
1545
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-etsy {
1546
+ font-family: 'Font Awesome 6 Brands';
1547
+ font-weight: 400;
1548
+ }
1549
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-imdb {
1550
+ font-family: 'Font Awesome 6 Brands';
1551
+ font-weight: 400;
1552
+ }
1553
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-ravelry {
1554
+ font-family: 'Font Awesome 6 Brands';
1555
+ font-weight: 400;
1556
+ }
1557
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-eercast {
1558
+ font-family: 'Font Awesome 6 Brands';
1559
+ font-weight: 400;
1560
+ }
1561
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-eercast { #{$fa-icon-property}: unquote("\"#{ $fa-var-sellcast }\""); }
1562
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-snowflake-o {
1563
+ font-family: 'Font Awesome 6 Free';
1564
+ font-weight: 400;
1565
+ }
1566
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-snowflake-o { #{$fa-icon-property}: unquote("\"#{ $fa-var-snowflake }\""); }
1567
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-superpowers {
1568
+ font-family: 'Font Awesome 6 Brands';
1569
+ font-weight: 400;
1570
+ }
1571
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-wpexplorer {
1572
+ font-family: 'Font Awesome 6 Brands';
1573
+ font-weight: 400;
1574
+ }
1575
+ .#{$fa-css-prefix}.#{$fa-css-prefix}-meetup {
1576
+ font-family: 'Font Awesome 6 Brands';
1577
+ font-weight: 400;
1578
+ }