@acorex/platform-generator 19.3.0-next.2 → 19.3.0-next.4

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 (219) hide show
  1. package/package.json +1 -1
  2. package/src/generators/app-module/files/src/app/app.component.ts.template +8 -1
  3. package/src/generators/app-module/files/src/app/app.config.api.ts.template +105 -0
  4. package/src/generators/app-module/files/src/app/app.config.ts.template +100 -0
  5. package/src/generators/app-module/files/src/app/app.routes.ts.template +2 -2
  6. package/src/generators/app-module/files/src/app/modules/auth/application.loader.ts.template +2 -2
  7. package/src/generators/app-module/files/src/app/modules/auth/auth-root.module.ts.template +21 -15
  8. package/src/generators/app-module/files/src/app/modules/auth/auth.strategy.ts.template +21 -19
  9. package/src/generators/app-module/files/src/app/modules/auth/feature.loader.ts.template +1 -1
  10. package/src/generators/app-module/files/src/app/modules/auth/permission.loader.ts.template +3 -4
  11. package/src/generators/app-module/files/src/app/modules/auth/tenant.loader.ts.template +11 -17
  12. package/src/generators/app-module/files/src/app/modules/common/translation-root.module.ts.template +3 -6
  13. package/src/generators/app-module/files/src/app/modules/layout/layout-root.module.ts.template +1 -18
  14. package/src/generators/app-module/files/src/app/modules/layout/menu.provider.ts.template +2 -83
  15. package/src/generators/app-module/files/src/app/modules/root/home/home.page.ts.template +1 -1
  16. package/src/generators/app-module/files/src/app/modules/root/mock.data.ts.template +36 -0
  17. package/src/generators/app-module/files/src/app/modules/root/root.module.ts.template +19 -12
  18. package/src/generators/app-module/files/src/app/modules/root/sample/sample.component.html.template +15 -0
  19. package/src/generators/app-module/files/src/app/modules/root/sample/sample.component.scss.template +10 -0
  20. package/src/generators/app-module/files/src/app/modules/root/sample/sample.component.ts.template +20 -0
  21. package/src/generators/app-module/files/src/app/modules/root/sample/sample.entity.ts.template +13 -123
  22. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/all.css +19442 -0
  23. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/all.min.css +9 -0
  24. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/brands.css +1609 -0
  25. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/brands.min.css +3 -1454
  26. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/duotone-light.css +56 -0
  27. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/duotone-light.min.css +6 -0
  28. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/duotone-regular.css +56 -0
  29. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/duotone-regular.min.css +6 -0
  30. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/duotone-thin.css +56 -0
  31. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/duotone-thin.min.css +6 -0
  32. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/duotone.css +52 -0
  33. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/duotone.min.css +6 -0
  34. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/fontawesome.css +17685 -0
  35. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/fontawesome.min.css +5 -11287
  36. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/light.css +19 -0
  37. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/light.min.css +3 -19
  38. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/regular.css +19 -0
  39. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/regular.min.css +3 -19
  40. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/sharp-duotone-light.css +56 -0
  41. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/sharp-duotone-light.min.css +6 -0
  42. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/sharp-duotone-regular.css +56 -0
  43. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/sharp-duotone-regular.min.css +6 -0
  44. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/sharp-duotone-solid.css +64 -0
  45. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/sharp-duotone-solid.min.css +6 -0
  46. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/sharp-duotone-thin.css +56 -0
  47. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/sharp-duotone-thin.min.css +6 -0
  48. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/sharp-light.css +19 -0
  49. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/sharp-light.min.css +6 -0
  50. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/sharp-regular.css +19 -0
  51. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/sharp-regular.min.css +6 -0
  52. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/sharp-solid.css +19 -0
  53. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/sharp-solid.min.css +6 -0
  54. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/sharp-thin.css +19 -0
  55. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/sharp-thin.min.css +6 -0
  56. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/solid.css +19 -0
  57. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/solid.min.css +2 -2
  58. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/svg-with-js.css +461 -0
  59. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/svg-with-js.min.css +6 -0
  60. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/thin.css +19 -0
  61. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/thin.min.css +6 -0
  62. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/v4-font-face.css +26 -0
  63. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/v4-font-face.min.css +6 -0
  64. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/v4-shims.css +2194 -0
  65. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/v4-shims.min.css +6 -0
  66. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/v5-font-face.css +34 -0
  67. package/src/generators/app-module/files/src/assets/fonts/font-awesome/css/v5-font-face.min.css +6 -0
  68. package/src/generators/app-module/files/src/assets/fonts/font-awesome/webfonts/fa-brands-400.ttf +0 -0
  69. package/src/generators/app-module/files/src/assets/fonts/font-awesome/webfonts/fa-brands-400.woff2 +0 -0
  70. package/src/generators/app-module/files/src/assets/fonts/font-awesome/webfonts/fa-duotone-900.ttf +0 -0
  71. package/src/generators/app-module/files/src/assets/fonts/font-awesome/webfonts/fa-duotone-900.woff2 +0 -0
  72. package/src/generators/app-module/files/src/assets/fonts/font-awesome/webfonts/fa-duotone-light-300.ttf +0 -0
  73. package/src/generators/app-module/files/src/assets/fonts/font-awesome/webfonts/fa-duotone-light-300.woff2 +0 -0
  74. package/src/generators/app-module/files/src/assets/fonts/font-awesome/webfonts/fa-duotone-regular-400.ttf +0 -0
  75. package/src/generators/app-module/files/src/assets/fonts/font-awesome/webfonts/fa-duotone-regular-400.woff2 +0 -0
  76. package/src/generators/app-module/files/src/assets/fonts/font-awesome/webfonts/fa-duotone-thin-100.ttf +0 -0
  77. package/src/generators/app-module/files/src/assets/fonts/font-awesome/webfonts/fa-duotone-thin-100.woff2 +0 -0
  78. package/src/generators/app-module/files/src/assets/fonts/font-awesome/webfonts/fa-light-300.ttf +0 -0
  79. package/src/generators/app-module/files/src/assets/fonts/font-awesome/webfonts/fa-light-300.woff2 +0 -0
  80. package/src/generators/app-module/files/src/assets/fonts/font-awesome/webfonts/fa-regular-400.ttf +0 -0
  81. package/src/generators/app-module/files/src/assets/fonts/font-awesome/webfonts/fa-regular-400.woff2 +0 -0
  82. package/src/generators/app-module/files/src/assets/fonts/font-awesome/webfonts/fa-sharp-duotone-light-300.ttf +0 -0
  83. package/src/generators/app-module/files/src/assets/fonts/font-awesome/webfonts/fa-sharp-duotone-light-300.woff2 +0 -0
  84. package/src/generators/app-module/files/src/assets/fonts/font-awesome/webfonts/fa-sharp-duotone-regular-400.ttf +0 -0
  85. package/src/generators/app-module/files/src/assets/fonts/font-awesome/webfonts/fa-sharp-duotone-regular-400.woff2 +0 -0
  86. package/src/generators/app-module/files/src/assets/fonts/font-awesome/webfonts/fa-sharp-duotone-solid-900.ttf +0 -0
  87. package/src/generators/app-module/files/src/assets/fonts/font-awesome/webfonts/fa-sharp-duotone-solid-900.woff2 +0 -0
  88. package/src/generators/app-module/files/src/assets/fonts/font-awesome/webfonts/fa-sharp-duotone-thin-100.ttf +0 -0
  89. package/src/generators/app-module/files/src/assets/fonts/font-awesome/webfonts/fa-sharp-duotone-thin-100.woff2 +0 -0
  90. package/src/generators/app-module/files/src/assets/fonts/font-awesome/webfonts/fa-sharp-light-300.ttf +0 -0
  91. package/src/generators/app-module/files/src/assets/fonts/font-awesome/webfonts/fa-sharp-light-300.woff2 +0 -0
  92. package/src/generators/app-module/files/src/assets/fonts/font-awesome/webfonts/fa-sharp-regular-400.ttf +0 -0
  93. package/src/generators/app-module/files/src/assets/fonts/font-awesome/webfonts/fa-sharp-regular-400.woff2 +0 -0
  94. package/src/generators/app-module/files/src/assets/fonts/font-awesome/webfonts/fa-sharp-solid-900.ttf +0 -0
  95. package/src/generators/app-module/files/src/assets/fonts/font-awesome/webfonts/fa-sharp-solid-900.woff2 +0 -0
  96. package/src/generators/app-module/files/src/assets/fonts/font-awesome/webfonts/fa-sharp-thin-100.ttf +0 -0
  97. package/src/generators/app-module/files/src/assets/fonts/font-awesome/webfonts/fa-sharp-thin-100.woff2 +0 -0
  98. package/src/generators/app-module/files/src/assets/fonts/font-awesome/webfonts/fa-solid-900.ttf +0 -0
  99. package/src/generators/app-module/files/src/assets/fonts/font-awesome/webfonts/fa-solid-900.woff2 +0 -0
  100. package/src/generators/app-module/files/src/assets/fonts/font-awesome/webfonts/fa-thin-100.ttf +0 -0
  101. package/src/generators/app-module/files/src/assets/fonts/font-awesome/webfonts/fa-thin-100.woff2 +0 -0
  102. package/src/generators/app-module/files/src/assets/fonts/font-awesome/webfonts/fa-v4compatibility.ttf +0 -0
  103. package/src/generators/app-module/files/src/assets/fonts/font-awesome/webfonts/fa-v4compatibility.woff2 +0 -0
  104. package/src/generators/app-module/files/src/assets/i18n/en-US/auth.json +154 -0
  105. package/src/generators/app-module/files/src/assets/i18n/{en → en-US}/common.json +129 -11
  106. package/src/generators/app-module/files/src/assets/i18n/en-US/dashboard.json +12 -0
  107. package/src/generators/app-module/files/src/assets/i18n/en-US/document-management.json +72 -0
  108. package/src/generators/app-module/files/src/assets/i18n/en-US/form-template-management.json +48 -0
  109. package/src/generators/app-module/files/src/assets/i18n/en-US/general.json +23 -0
  110. package/src/generators/app-module/files/src/assets/i18n/en-US/global-search.json +16 -0
  111. package/src/generators/app-module/files/src/assets/i18n/en-US/layout.json +59 -0
  112. package/src/generators/app-module/files/src/assets/i18n/en-US/log-management.json +142 -0
  113. package/src/generators/app-module/files/src/assets/i18n/en-US/notification-management.json +91 -0
  114. package/src/generators/app-module/files/src/assets/i18n/en-US/organization-management.json +205 -0
  115. package/src/generators/app-module/files/src/assets/i18n/en-US/platform-management.json +126 -0
  116. package/src/generators/app-module/files/src/assets/i18n/en-US/regional.json +113 -0
  117. package/src/generators/app-module/files/src/assets/i18n/en-US/security-management.json +32 -0
  118. package/src/generators/app-module/files/src/assets/i18n/en-US/settings.json +48 -0
  119. package/src/generators/app-module/files/src/assets/i18n/en-US/text-template-management.json +11 -0
  120. package/src/generators/app-module/files/src/assets/i18n/en-US/vehicle-management.json +146 -0
  121. package/src/generators/app-module/files/src/assets/i18n/fa-IR/auth.json +153 -0
  122. package/src/generators/app-module/files/src/assets/i18n/{fa → fa-IR}/common.json +112 -8
  123. package/src/generators/app-module/files/src/assets/i18n/fa-IR/dashboard.json +12 -0
  124. package/src/generators/app-module/files/src/assets/i18n/fa-IR/document-management.json +67 -0
  125. package/src/generators/app-module/files/src/assets/i18n/fa-IR/form-template-management.json +48 -0
  126. package/src/generators/app-module/files/src/assets/i18n/fa-IR/general.json +23 -0
  127. package/src/generators/app-module/files/src/assets/i18n/fa-IR/global-search.json +16 -0
  128. package/src/generators/app-module/files/src/assets/i18n/fa-IR/layout.json +59 -0
  129. package/src/generators/app-module/files/src/assets/i18n/fa-IR/log-management.json +98 -0
  130. package/src/generators/app-module/files/src/assets/i18n/fa-IR/notification-management.json +91 -0
  131. package/src/generators/app-module/files/src/assets/i18n/fa-IR/organization-management.json +204 -0
  132. package/src/generators/app-module/files/src/assets/i18n/fa-IR/platform-management.json +121 -0
  133. package/src/generators/app-module/files/src/assets/i18n/fa-IR/regional.json +113 -0
  134. package/src/generators/app-module/files/src/assets/i18n/fa-IR/security-management.json +32 -0
  135. package/src/generators/app-module/files/src/assets/i18n/fa-IR/settings.json +48 -0
  136. package/src/generators/app-module/files/src/assets/i18n/fa-IR/text-template-management.json +10 -0
  137. package/src/generators/app-module/files/src/assets/i18n/fa-IR/vehicle-management.json +144 -0
  138. package/src/generators/app-module/files/src/assets/images/leaflet/layers-2x.png +0 -0
  139. package/src/generators/app-module/files/src/assets/images/leaflet/layers.png +0 -0
  140. package/src/generators/app-module/files/src/assets/images/leaflet/marker-icon-2x.png +0 -0
  141. package/src/generators/app-module/files/src/assets/images/leaflet/marker-icon.png +0 -0
  142. package/src/generators/app-module/files/src/assets/images/leaflet/marker-shadow.png +0 -0
  143. package/src/generators/app-module/files/src/assets/logos/acorex-logo-white.svg +8 -0
  144. package/src/generators/app-module/files/src/assets/logos/acorex-logo.svg +8 -0
  145. package/src/generators/app-module/files/src/assets/temp/docx/1.docx +0 -0
  146. package/src/generators/app-module/files/src/assets/temp/docx/2.docx +0 -0
  147. package/src/generators/app-module/files/src/assets/temp/docx/3.docx +0 -0
  148. package/src/generators/app-module/files/src/assets/temp/jpg/1.jpg +0 -0
  149. package/src/generators/app-module/files/src/assets/temp/jpg/2.jpg +0 -0
  150. package/src/generators/app-module/files/src/assets/temp/jpg/3.jpg +0 -0
  151. package/src/generators/app-module/files/src/assets/temp/jpg/4.jpg +0 -0
  152. package/src/generators/app-module/files/src/assets/temp/pdf/1.pdf +0 -0
  153. package/src/generators/app-module/files/src/assets/temp/pdf/2.pdf +0 -0
  154. package/src/generators/app-module/files/src/assets/temp/pdf/3.pdf +0 -0
  155. package/src/generators/app-module/files/src/assets/temp/png/1.png +0 -0
  156. package/src/generators/app-module/files/src/assets/temp/png/2.png +0 -0
  157. package/src/generators/app-module/files/src/assets/temp/png/3.png +0 -0
  158. package/src/generators/app-module/files/src/assets/temp/pptx/1.pptx +0 -0
  159. package/src/generators/app-module/files/src/assets/temp/pptx/2.pptx +0 -0
  160. package/src/generators/app-module/files/src/assets/temp/pptx/3.pptx +0 -0
  161. package/src/generators/app-module/files/src/assets/temp/xlsx/1.xlsx +0 -0
  162. package/src/generators/app-module/files/src/assets/temp/xlsx/2.xlsx +0 -0
  163. package/src/generators/app-module/files/src/assets/temp/xlsx/3.xlsx +0 -0
  164. package/src/generators/app-module/files/src/assets/themes/layouts/_variables.scss +4 -0
  165. package/src/generators/app-module/files/src/assets/themes/layouts/{base.scss.template → base.scss} +3 -1
  166. package/src/generators/app-module/files/src/assets/themes/palettes/css/arctic-aurora.css +570 -0
  167. package/src/generators/app-module/files/src/assets/themes/palettes/css/black-carbon.css +570 -0
  168. package/src/generators/app-module/files/src/assets/themes/palettes/css/coastal-twilight.css +570 -0
  169. package/src/generators/app-module/files/src/assets/themes/palettes/css/cosmic-horizon.css +570 -0
  170. package/src/generators/app-module/files/src/assets/themes/palettes/css/default.css +570 -0
  171. package/src/generators/app-module/files/src/assets/themes/palettes/css/emerald-forest.css +570 -0
  172. package/src/generators/app-module/files/src/assets/themes/palettes/css/golden-dusk.css +570 -0
  173. package/src/generators/app-module/files/src/assets/themes/palettes/css/nebula-dream.css +570 -0
  174. package/src/generators/app-module/files/src/assets/themes/palettes/css/ocean-breeze.css +570 -0
  175. package/src/generators/app-module/files/src/assets/themes/palettes/css/ocean-depths.css +570 -0
  176. package/src/generators/app-module/files/src/assets/themes/palettes/css/plum-elegance.css +570 -0
  177. package/src/generators/app-module/files/src/assets/themes/palettes/css/safetyminder.css +570 -0
  178. package/src/generators/app-module/files/src/assets/themes/palettes/css/solare-flare.css +570 -0
  179. package/src/generators/app-module/files/src/assets/themes/palettes/css/sunset-horizon.css +570 -0
  180. package/src/generators/app-module/files/src/assets/themes/palettes/css/twilight-orchid.css +570 -0
  181. package/src/generators/app-module/files/src/assets/themes/{palletes/palletes.scss.template → palettes/palettes.scss} +1 -1
  182. package/src/generators/app-module/files/src/assets/themes/palettes/scss/arctic-aurora.scss +51 -0
  183. package/src/generators/app-module/files/src/assets/themes/palettes/scss/black-carbon.scss +51 -0
  184. package/src/generators/app-module/files/src/assets/themes/palettes/scss/coastal-twilight.scss +51 -0
  185. package/src/generators/app-module/files/src/assets/themes/palettes/scss/cosmic-horizon.scss +51 -0
  186. package/src/generators/app-module/files/src/assets/themes/{palletes/scss/default.scss.template → palettes/scss/default.scss} +5 -5
  187. package/src/generators/app-module/files/src/assets/themes/palettes/scss/emerald-forest.scss +49 -0
  188. package/src/generators/app-module/files/src/assets/themes/palettes/scss/golden-dusk.scss +48 -0
  189. package/src/generators/app-module/files/src/assets/themes/palettes/scss/nebula-dream.scss +47 -0
  190. package/src/generators/app-module/files/src/assets/themes/palettes/scss/ocean-breeze.scss +55 -0
  191. package/src/generators/app-module/files/src/assets/themes/palettes/scss/ocean-depths.scss +52 -0
  192. package/src/generators/app-module/files/src/assets/themes/palettes/scss/plum-elegance.scss +51 -0
  193. package/src/generators/app-module/files/src/assets/themes/palettes/scss/safetyminder.scss +48 -0
  194. package/src/generators/app-module/files/src/assets/themes/palettes/scss/solare-flare.scss +48 -0
  195. package/src/generators/app-module/files/src/assets/themes/palettes/scss/sunset-horizon.scss +51 -0
  196. package/src/generators/app-module/files/src/assets/themes/palettes/scss/twilight-orchid.scss +50 -0
  197. package/src/generators/app-module/files/src/index.html.template +3 -8
  198. package/src/generators/app-module/files/src/main.ts.template +4 -4
  199. package/src/generators/app-module/files/src/styles.scss.template +42 -31
  200. package/src/generators/app-module/files/tailwind.config.js.template +1 -70
  201. package/src/generators/app-module/generator.js +2 -3
  202. package/src/generators/app-module/generator.js.map +1 -1
  203. package/src/generators/create-app-module/files/__fileName__/src/lib/__fileName__.module.ts__tmpl__ +4 -4
  204. package/src/generators/create-app-module/files/__fileName__/src/lib/permission-definition.provider.ts__tmpl__ +13 -0
  205. package/src/generators/app-module/files/src/assets/i18n/en/auth.json +0 -61
  206. package/src/generators/app-module/files/src/assets/i18n/en/form-template-management.json +0 -19
  207. package/src/generators/app-module/files/src/assets/i18n/en/notification-management.json +0 -8
  208. package/src/generators/app-module/files/src/assets/i18n/en/platform-management.json +0 -30
  209. package/src/generators/app-module/files/src/assets/i18n/en/platform.json +0 -20
  210. package/src/generators/app-module/files/src/assets/i18n/en/text-template-management.json +0 -6
  211. package/src/generators/app-module/files/src/assets/i18n/fa/auth.json +0 -61
  212. package/src/generators/app-module/files/src/assets/i18n/fa/form-template-management.json +0 -19
  213. package/src/generators/app-module/files/src/assets/i18n/fa/notification-management.json +0 -8
  214. package/src/generators/app-module/files/src/assets/i18n/fa/platform-management.json +0 -33
  215. package/src/generators/app-module/files/src/assets/i18n/fa/platform.json +0 -20
  216. package/src/generators/app-module/files/src/assets/i18n/fa/text-template-management.json +0 -6
  217. package/src/generators/create-app-module/files/__fileName__/src/lib/permission.provider.ts__tmpl__ +0 -13
  218. /package/src/generators/app-module/files/src/assets/i18n/{en → en-US}/scheduler-job-management.json +0 -0
  219. /package/src/generators/app-module/files/src/assets/i18n/{fa → fa-IR}/scheduler-job-management.json +0 -0
@@ -0,0 +1,2194 @@
1
+ /*!
2
+ * Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license (Commercial License)
4
+ * Copyright 2024 Fonticons, Inc.
5
+ */
6
+ .fa.fa-glass {
7
+ --fa: "\f000"; }
8
+
9
+ .fa.fa-envelope-o {
10
+ font-family: 'Font Awesome 6 Pro';
11
+ font-weight: 400; }
12
+
13
+ .fa.fa-envelope-o {
14
+ --fa: "\f0e0"; }
15
+
16
+ .fa.fa-star-o {
17
+ font-family: 'Font Awesome 6 Pro';
18
+ font-weight: 400; }
19
+
20
+ .fa.fa-star-o {
21
+ --fa: "\f005"; }
22
+
23
+ .fa.fa-remove {
24
+ --fa: "\f00d"; }
25
+
26
+ .fa.fa-close {
27
+ --fa: "\f00d"; }
28
+
29
+ .fa.fa-gear {
30
+ --fa: "\f013"; }
31
+
32
+ .fa.fa-trash-o {
33
+ font-family: 'Font Awesome 6 Pro';
34
+ font-weight: 400; }
35
+
36
+ .fa.fa-trash-o {
37
+ --fa: "\f2ed"; }
38
+
39
+ .fa.fa-home {
40
+ --fa: "\f015"; }
41
+
42
+ .fa.fa-file-o {
43
+ font-family: 'Font Awesome 6 Pro';
44
+ font-weight: 400; }
45
+
46
+ .fa.fa-file-o {
47
+ --fa: "\f15b"; }
48
+
49
+ .fa.fa-clock-o {
50
+ font-family: 'Font Awesome 6 Pro';
51
+ font-weight: 400; }
52
+
53
+ .fa.fa-clock-o {
54
+ --fa: "\f017"; }
55
+
56
+ .fa.fa-arrow-circle-o-down {
57
+ font-family: 'Font Awesome 6 Pro';
58
+ font-weight: 400; }
59
+
60
+ .fa.fa-arrow-circle-o-down {
61
+ --fa: "\f358"; }
62
+
63
+ .fa.fa-arrow-circle-o-up {
64
+ font-family: 'Font Awesome 6 Pro';
65
+ font-weight: 400; }
66
+
67
+ .fa.fa-arrow-circle-o-up {
68
+ --fa: "\f35b"; }
69
+
70
+ .fa.fa-play-circle-o {
71
+ font-family: 'Font Awesome 6 Pro';
72
+ font-weight: 400; }
73
+
74
+ .fa.fa-play-circle-o {
75
+ --fa: "\f144"; }
76
+
77
+ .fa.fa-repeat {
78
+ --fa: "\f01e"; }
79
+
80
+ .fa.fa-rotate-right {
81
+ --fa: "\f01e"; }
82
+
83
+ .fa.fa-refresh {
84
+ --fa: "\f021"; }
85
+
86
+ .fa.fa-list-alt {
87
+ font-family: 'Font Awesome 6 Pro';
88
+ font-weight: 400; }
89
+
90
+ .fa.fa-list-alt {
91
+ --fa: "\f022"; }
92
+
93
+ .fa.fa-dedent {
94
+ --fa: "\f03b"; }
95
+
96
+ .fa.fa-video-camera {
97
+ --fa: "\f03d"; }
98
+
99
+ .fa.fa-picture-o {
100
+ font-family: 'Font Awesome 6 Pro';
101
+ font-weight: 400; }
102
+
103
+ .fa.fa-picture-o {
104
+ --fa: "\f03e"; }
105
+
106
+ .fa.fa-photo {
107
+ font-family: 'Font Awesome 6 Pro';
108
+ font-weight: 400; }
109
+
110
+ .fa.fa-photo {
111
+ --fa: "\f03e"; }
112
+
113
+ .fa.fa-image {
114
+ font-family: 'Font Awesome 6 Pro';
115
+ font-weight: 400; }
116
+
117
+ .fa.fa-image {
118
+ --fa: "\f03e"; }
119
+
120
+ .fa.fa-map-marker {
121
+ --fa: "\f3c5"; }
122
+
123
+ .fa.fa-pencil-square-o {
124
+ font-family: 'Font Awesome 6 Pro';
125
+ font-weight: 400; }
126
+
127
+ .fa.fa-pencil-square-o {
128
+ --fa: "\f044"; }
129
+
130
+ .fa.fa-edit {
131
+ font-family: 'Font Awesome 6 Pro';
132
+ font-weight: 400; }
133
+
134
+ .fa.fa-edit {
135
+ --fa: "\f044"; }
136
+
137
+ .fa.fa-share-square-o {
138
+ --fa: "\f14d"; }
139
+
140
+ .fa.fa-check-square-o {
141
+ font-family: 'Font Awesome 6 Pro';
142
+ font-weight: 400; }
143
+
144
+ .fa.fa-check-square-o {
145
+ --fa: "\f14a"; }
146
+
147
+ .fa.fa-arrows {
148
+ --fa: "\f0b2"; }
149
+
150
+ .fa.fa-times-circle-o {
151
+ font-family: 'Font Awesome 6 Pro';
152
+ font-weight: 400; }
153
+
154
+ .fa.fa-times-circle-o {
155
+ --fa: "\f057"; }
156
+
157
+ .fa.fa-check-circle-o {
158
+ font-family: 'Font Awesome 6 Pro';
159
+ font-weight: 400; }
160
+
161
+ .fa.fa-check-circle-o {
162
+ --fa: "\f058"; }
163
+
164
+ .fa.fa-mail-forward {
165
+ --fa: "\f064"; }
166
+
167
+ .fa.fa-expand {
168
+ --fa: "\f424"; }
169
+
170
+ .fa.fa-compress {
171
+ --fa: "\f422"; }
172
+
173
+ .fa.fa-eye {
174
+ font-family: 'Font Awesome 6 Pro';
175
+ font-weight: 400; }
176
+
177
+ .fa.fa-eye-slash {
178
+ font-family: 'Font Awesome 6 Pro';
179
+ font-weight: 400; }
180
+
181
+ .fa.fa-warning {
182
+ --fa: "\f071"; }
183
+
184
+ .fa.fa-calendar {
185
+ --fa: "\f073"; }
186
+
187
+ .fa.fa-arrows-v {
188
+ --fa: "\f338"; }
189
+
190
+ .fa.fa-arrows-h {
191
+ --fa: "\f337"; }
192
+
193
+ .fa.fa-bar-chart {
194
+ --fa: "\e0e3"; }
195
+
196
+ .fa.fa-bar-chart-o {
197
+ --fa: "\e0e3"; }
198
+
199
+ .fa.fa-twitter-square {
200
+ font-family: 'Font Awesome 6 Brands';
201
+ font-weight: 400; }
202
+
203
+ .fa.fa-twitter-square {
204
+ --fa: "\f081"; }
205
+
206
+ .fa.fa-facebook-square {
207
+ font-family: 'Font Awesome 6 Brands';
208
+ font-weight: 400; }
209
+
210
+ .fa.fa-facebook-square {
211
+ --fa: "\f082"; }
212
+
213
+ .fa.fa-gears {
214
+ --fa: "\f085"; }
215
+
216
+ .fa.fa-thumbs-o-up {
217
+ font-family: 'Font Awesome 6 Pro';
218
+ font-weight: 400; }
219
+
220
+ .fa.fa-thumbs-o-up {
221
+ --fa: "\f164"; }
222
+
223
+ .fa.fa-thumbs-o-down {
224
+ font-family: 'Font Awesome 6 Pro';
225
+ font-weight: 400; }
226
+
227
+ .fa.fa-thumbs-o-down {
228
+ --fa: "\f165"; }
229
+
230
+ .fa.fa-heart-o {
231
+ font-family: 'Font Awesome 6 Pro';
232
+ font-weight: 400; }
233
+
234
+ .fa.fa-heart-o {
235
+ --fa: "\f004"; }
236
+
237
+ .fa.fa-sign-out {
238
+ --fa: "\f2f5"; }
239
+
240
+ .fa.fa-linkedin-square {
241
+ font-family: 'Font Awesome 6 Brands';
242
+ font-weight: 400; }
243
+
244
+ .fa.fa-linkedin-square {
245
+ --fa: "\f08c"; }
246
+
247
+ .fa.fa-thumb-tack {
248
+ --fa: "\f08d"; }
249
+
250
+ .fa.fa-external-link {
251
+ --fa: "\f35d"; }
252
+
253
+ .fa.fa-sign-in {
254
+ --fa: "\f2f6"; }
255
+
256
+ .fa.fa-github-square {
257
+ font-family: 'Font Awesome 6 Brands';
258
+ font-weight: 400; }
259
+
260
+ .fa.fa-github-square {
261
+ --fa: "\f092"; }
262
+
263
+ .fa.fa-lemon-o {
264
+ font-family: 'Font Awesome 6 Pro';
265
+ font-weight: 400; }
266
+
267
+ .fa.fa-lemon-o {
268
+ --fa: "\f094"; }
269
+
270
+ .fa.fa-square-o {
271
+ font-family: 'Font Awesome 6 Pro';
272
+ font-weight: 400; }
273
+
274
+ .fa.fa-square-o {
275
+ --fa: "\f0c8"; }
276
+
277
+ .fa.fa-bookmark-o {
278
+ font-family: 'Font Awesome 6 Pro';
279
+ font-weight: 400; }
280
+
281
+ .fa.fa-bookmark-o {
282
+ --fa: "\f02e"; }
283
+
284
+ .fa.fa-twitter {
285
+ font-family: 'Font Awesome 6 Brands';
286
+ font-weight: 400; }
287
+
288
+ .fa.fa-facebook {
289
+ font-family: 'Font Awesome 6 Brands';
290
+ font-weight: 400; }
291
+
292
+ .fa.fa-facebook {
293
+ --fa: "\f39e"; }
294
+
295
+ .fa.fa-facebook-f {
296
+ font-family: 'Font Awesome 6 Brands';
297
+ font-weight: 400; }
298
+
299
+ .fa.fa-facebook-f {
300
+ --fa: "\f39e"; }
301
+
302
+ .fa.fa-github {
303
+ font-family: 'Font Awesome 6 Brands';
304
+ font-weight: 400; }
305
+
306
+ .fa.fa-credit-card {
307
+ font-family: 'Font Awesome 6 Pro';
308
+ font-weight: 400; }
309
+
310
+ .fa.fa-feed {
311
+ --fa: "\f09e"; }
312
+
313
+ .fa.fa-hdd-o {
314
+ font-family: 'Font Awesome 6 Pro';
315
+ font-weight: 400; }
316
+
317
+ .fa.fa-hdd-o {
318
+ --fa: "\f0a0"; }
319
+
320
+ .fa.fa-hand-o-right {
321
+ font-family: 'Font Awesome 6 Pro';
322
+ font-weight: 400; }
323
+
324
+ .fa.fa-hand-o-right {
325
+ --fa: "\f0a4"; }
326
+
327
+ .fa.fa-hand-o-left {
328
+ font-family: 'Font Awesome 6 Pro';
329
+ font-weight: 400; }
330
+
331
+ .fa.fa-hand-o-left {
332
+ --fa: "\f0a5"; }
333
+
334
+ .fa.fa-hand-o-up {
335
+ font-family: 'Font Awesome 6 Pro';
336
+ font-weight: 400; }
337
+
338
+ .fa.fa-hand-o-up {
339
+ --fa: "\f0a6"; }
340
+
341
+ .fa.fa-hand-o-down {
342
+ font-family: 'Font Awesome 6 Pro';
343
+ font-weight: 400; }
344
+
345
+ .fa.fa-hand-o-down {
346
+ --fa: "\f0a7"; }
347
+
348
+ .fa.fa-globe {
349
+ --fa: "\f57d"; }
350
+
351
+ .fa.fa-tasks {
352
+ --fa: "\f828"; }
353
+
354
+ .fa.fa-arrows-alt {
355
+ --fa: "\f31e"; }
356
+
357
+ .fa.fa-group {
358
+ --fa: "\f0c0"; }
359
+
360
+ .fa.fa-chain {
361
+ --fa: "\f0c1"; }
362
+
363
+ .fa.fa-cut {
364
+ --fa: "\f0c4"; }
365
+
366
+ .fa.fa-files-o {
367
+ font-family: 'Font Awesome 6 Pro';
368
+ font-weight: 400; }
369
+
370
+ .fa.fa-files-o {
371
+ --fa: "\f0c5"; }
372
+
373
+ .fa.fa-floppy-o {
374
+ font-family: 'Font Awesome 6 Pro';
375
+ font-weight: 400; }
376
+
377
+ .fa.fa-floppy-o {
378
+ --fa: "\f0c7"; }
379
+
380
+ .fa.fa-save {
381
+ font-family: 'Font Awesome 6 Pro';
382
+ font-weight: 400; }
383
+
384
+ .fa.fa-save {
385
+ --fa: "\f0c7"; }
386
+
387
+ .fa.fa-navicon {
388
+ --fa: "\f0c9"; }
389
+
390
+ .fa.fa-reorder {
391
+ --fa: "\f0c9"; }
392
+
393
+ .fa.fa-magic {
394
+ --fa: "\e2ca"; }
395
+
396
+ .fa.fa-pinterest {
397
+ font-family: 'Font Awesome 6 Brands';
398
+ font-weight: 400; }
399
+
400
+ .fa.fa-pinterest-square {
401
+ font-family: 'Font Awesome 6 Brands';
402
+ font-weight: 400; }
403
+
404
+ .fa.fa-pinterest-square {
405
+ --fa: "\f0d3"; }
406
+
407
+ .fa.fa-google-plus-square {
408
+ font-family: 'Font Awesome 6 Brands';
409
+ font-weight: 400; }
410
+
411
+ .fa.fa-google-plus-square {
412
+ --fa: "\f0d4"; }
413
+
414
+ .fa.fa-google-plus {
415
+ font-family: 'Font Awesome 6 Brands';
416
+ font-weight: 400; }
417
+
418
+ .fa.fa-google-plus {
419
+ --fa: "\f0d5"; }
420
+
421
+ .fa.fa-money {
422
+ --fa: "\f3d1"; }
423
+
424
+ .fa.fa-unsorted {
425
+ --fa: "\f0dc"; }
426
+
427
+ .fa.fa-sort-desc {
428
+ --fa: "\f0dd"; }
429
+
430
+ .fa.fa-sort-asc {
431
+ --fa: "\f0de"; }
432
+
433
+ .fa.fa-linkedin {
434
+ font-family: 'Font Awesome 6 Brands';
435
+ font-weight: 400; }
436
+
437
+ .fa.fa-linkedin {
438
+ --fa: "\f0e1"; }
439
+
440
+ .fa.fa-rotate-left {
441
+ --fa: "\f0e2"; }
442
+
443
+ .fa.fa-legal {
444
+ --fa: "\f0e3"; }
445
+
446
+ .fa.fa-tachometer {
447
+ --fa: "\f625"; }
448
+
449
+ .fa.fa-dashboard {
450
+ --fa: "\f625"; }
451
+
452
+ .fa.fa-comment-o {
453
+ font-family: 'Font Awesome 6 Pro';
454
+ font-weight: 400; }
455
+
456
+ .fa.fa-comment-o {
457
+ --fa: "\f075"; }
458
+
459
+ .fa.fa-comments-o {
460
+ font-family: 'Font Awesome 6 Pro';
461
+ font-weight: 400; }
462
+
463
+ .fa.fa-comments-o {
464
+ --fa: "\f086"; }
465
+
466
+ .fa.fa-flash {
467
+ --fa: "\f0e7"; }
468
+
469
+ .fa.fa-clipboard {
470
+ --fa: "\f0ea"; }
471
+
472
+ .fa.fa-lightbulb-o {
473
+ font-family: 'Font Awesome 6 Pro';
474
+ font-weight: 400; }
475
+
476
+ .fa.fa-lightbulb-o {
477
+ --fa: "\f0eb"; }
478
+
479
+ .fa.fa-exchange {
480
+ --fa: "\f362"; }
481
+
482
+ .fa.fa-cloud-download {
483
+ --fa: "\f0ed"; }
484
+
485
+ .fa.fa-cloud-upload {
486
+ --fa: "\f0ee"; }
487
+
488
+ .fa.fa-bell-o {
489
+ font-family: 'Font Awesome 6 Pro';
490
+ font-weight: 400; }
491
+
492
+ .fa.fa-bell-o {
493
+ --fa: "\f0f3"; }
494
+
495
+ .fa.fa-cutlery {
496
+ --fa: "\f2e7"; }
497
+
498
+ .fa.fa-file-text-o {
499
+ font-family: 'Font Awesome 6 Pro';
500
+ font-weight: 400; }
501
+
502
+ .fa.fa-file-text-o {
503
+ --fa: "\f15c"; }
504
+
505
+ .fa.fa-building-o {
506
+ font-family: 'Font Awesome 6 Pro';
507
+ font-weight: 400; }
508
+
509
+ .fa.fa-building-o {
510
+ --fa: "\f1ad"; }
511
+
512
+ .fa.fa-hospital-o {
513
+ font-family: 'Font Awesome 6 Pro';
514
+ font-weight: 400; }
515
+
516
+ .fa.fa-hospital-o {
517
+ --fa: "\f0f8"; }
518
+
519
+ .fa.fa-tablet {
520
+ --fa: "\f3fa"; }
521
+
522
+ .fa.fa-mobile {
523
+ --fa: "\f3cd"; }
524
+
525
+ .fa.fa-mobile-phone {
526
+ --fa: "\f3cd"; }
527
+
528
+ .fa.fa-circle-o {
529
+ font-family: 'Font Awesome 6 Pro';
530
+ font-weight: 400; }
531
+
532
+ .fa.fa-circle-o {
533
+ --fa: "\f111"; }
534
+
535
+ .fa.fa-mail-reply {
536
+ --fa: "\f3e5"; }
537
+
538
+ .fa.fa-github-alt {
539
+ font-family: 'Font Awesome 6 Brands';
540
+ font-weight: 400; }
541
+
542
+ .fa.fa-folder-o {
543
+ font-family: 'Font Awesome 6 Pro';
544
+ font-weight: 400; }
545
+
546
+ .fa.fa-folder-o {
547
+ --fa: "\f07b"; }
548
+
549
+ .fa.fa-folder-open-o {
550
+ font-family: 'Font Awesome 6 Pro';
551
+ font-weight: 400; }
552
+
553
+ .fa.fa-folder-open-o {
554
+ --fa: "\f07c"; }
555
+
556
+ .fa.fa-smile-o {
557
+ font-family: 'Font Awesome 6 Pro';
558
+ font-weight: 400; }
559
+
560
+ .fa.fa-smile-o {
561
+ --fa: "\f118"; }
562
+
563
+ .fa.fa-frown-o {
564
+ font-family: 'Font Awesome 6 Pro';
565
+ font-weight: 400; }
566
+
567
+ .fa.fa-frown-o {
568
+ --fa: "\f119"; }
569
+
570
+ .fa.fa-meh-o {
571
+ font-family: 'Font Awesome 6 Pro';
572
+ font-weight: 400; }
573
+
574
+ .fa.fa-meh-o {
575
+ --fa: "\f11a"; }
576
+
577
+ .fa.fa-keyboard-o {
578
+ font-family: 'Font Awesome 6 Pro';
579
+ font-weight: 400; }
580
+
581
+ .fa.fa-keyboard-o {
582
+ --fa: "\f11c"; }
583
+
584
+ .fa.fa-flag-o {
585
+ font-family: 'Font Awesome 6 Pro';
586
+ font-weight: 400; }
587
+
588
+ .fa.fa-flag-o {
589
+ --fa: "\f024"; }
590
+
591
+ .fa.fa-mail-reply-all {
592
+ --fa: "\f122"; }
593
+
594
+ .fa.fa-star-half-o {
595
+ font-family: 'Font Awesome 6 Pro';
596
+ font-weight: 400; }
597
+
598
+ .fa.fa-star-half-o {
599
+ --fa: "\f5c0"; }
600
+
601
+ .fa.fa-star-half-empty {
602
+ font-family: 'Font Awesome 6 Pro';
603
+ font-weight: 400; }
604
+
605
+ .fa.fa-star-half-empty {
606
+ --fa: "\f5c0"; }
607
+
608
+ .fa.fa-star-half-full {
609
+ font-family: 'Font Awesome 6 Pro';
610
+ font-weight: 400; }
611
+
612
+ .fa.fa-star-half-full {
613
+ --fa: "\f5c0"; }
614
+
615
+ .fa.fa-code-fork {
616
+ --fa: "\f126"; }
617
+
618
+ .fa.fa-chain-broken {
619
+ --fa: "\f127"; }
620
+
621
+ .fa.fa-unlink {
622
+ --fa: "\f127"; }
623
+
624
+ .fa.fa-calendar-o {
625
+ font-family: 'Font Awesome 6 Pro';
626
+ font-weight: 400; }
627
+
628
+ .fa.fa-calendar-o {
629
+ --fa: "\f133"; }
630
+
631
+ .fa.fa-maxcdn {
632
+ font-family: 'Font Awesome 6 Brands';
633
+ font-weight: 400; }
634
+
635
+ .fa.fa-html5 {
636
+ font-family: 'Font Awesome 6 Brands';
637
+ font-weight: 400; }
638
+
639
+ .fa.fa-css3 {
640
+ font-family: 'Font Awesome 6 Brands';
641
+ font-weight: 400; }
642
+
643
+ .fa.fa-unlock-alt {
644
+ --fa: "\f09c"; }
645
+
646
+ .fa.fa-minus-square-o {
647
+ font-family: 'Font Awesome 6 Pro';
648
+ font-weight: 400; }
649
+
650
+ .fa.fa-minus-square-o {
651
+ --fa: "\f146"; }
652
+
653
+ .fa.fa-level-up {
654
+ --fa: "\f3bf"; }
655
+
656
+ .fa.fa-level-down {
657
+ --fa: "\f3be"; }
658
+
659
+ .fa.fa-pencil-square {
660
+ --fa: "\f14b"; }
661
+
662
+ .fa.fa-external-link-square {
663
+ --fa: "\f360"; }
664
+
665
+ .fa.fa-compass {
666
+ font-family: 'Font Awesome 6 Pro';
667
+ font-weight: 400; }
668
+
669
+ .fa.fa-caret-square-o-down {
670
+ font-family: 'Font Awesome 6 Pro';
671
+ font-weight: 400; }
672
+
673
+ .fa.fa-caret-square-o-down {
674
+ --fa: "\f150"; }
675
+
676
+ .fa.fa-toggle-down {
677
+ font-family: 'Font Awesome 6 Pro';
678
+ font-weight: 400; }
679
+
680
+ .fa.fa-toggle-down {
681
+ --fa: "\f150"; }
682
+
683
+ .fa.fa-caret-square-o-up {
684
+ font-family: 'Font Awesome 6 Pro';
685
+ font-weight: 400; }
686
+
687
+ .fa.fa-caret-square-o-up {
688
+ --fa: "\f151"; }
689
+
690
+ .fa.fa-toggle-up {
691
+ font-family: 'Font Awesome 6 Pro';
692
+ font-weight: 400; }
693
+
694
+ .fa.fa-toggle-up {
695
+ --fa: "\f151"; }
696
+
697
+ .fa.fa-caret-square-o-right {
698
+ font-family: 'Font Awesome 6 Pro';
699
+ font-weight: 400; }
700
+
701
+ .fa.fa-caret-square-o-right {
702
+ --fa: "\f152"; }
703
+
704
+ .fa.fa-toggle-right {
705
+ font-family: 'Font Awesome 6 Pro';
706
+ font-weight: 400; }
707
+
708
+ .fa.fa-toggle-right {
709
+ --fa: "\f152"; }
710
+
711
+ .fa.fa-eur {
712
+ --fa: "\f153"; }
713
+
714
+ .fa.fa-euro {
715
+ --fa: "\f153"; }
716
+
717
+ .fa.fa-gbp {
718
+ --fa: "\f154"; }
719
+
720
+ .fa.fa-usd {
721
+ --fa: "\24"; }
722
+
723
+ .fa.fa-dollar {
724
+ --fa: "\24"; }
725
+
726
+ .fa.fa-inr {
727
+ --fa: "\e1bc"; }
728
+
729
+ .fa.fa-rupee {
730
+ --fa: "\e1bc"; }
731
+
732
+ .fa.fa-jpy {
733
+ --fa: "\f157"; }
734
+
735
+ .fa.fa-cny {
736
+ --fa: "\f157"; }
737
+
738
+ .fa.fa-rmb {
739
+ --fa: "\f157"; }
740
+
741
+ .fa.fa-yen {
742
+ --fa: "\f157"; }
743
+
744
+ .fa.fa-rub {
745
+ --fa: "\f158"; }
746
+
747
+ .fa.fa-ruble {
748
+ --fa: "\f158"; }
749
+
750
+ .fa.fa-rouble {
751
+ --fa: "\f158"; }
752
+
753
+ .fa.fa-krw {
754
+ --fa: "\f159"; }
755
+
756
+ .fa.fa-won {
757
+ --fa: "\f159"; }
758
+
759
+ .fa.fa-btc {
760
+ font-family: 'Font Awesome 6 Brands';
761
+ font-weight: 400; }
762
+
763
+ .fa.fa-bitcoin {
764
+ font-family: 'Font Awesome 6 Brands';
765
+ font-weight: 400; }
766
+
767
+ .fa.fa-bitcoin {
768
+ --fa: "\f15a"; }
769
+
770
+ .fa.fa-file-text {
771
+ --fa: "\f15c"; }
772
+
773
+ .fa.fa-sort-alpha-asc {
774
+ --fa: "\f15d"; }
775
+
776
+ .fa.fa-sort-alpha-desc {
777
+ --fa: "\f881"; }
778
+
779
+ .fa.fa-sort-amount-asc {
780
+ --fa: "\f884"; }
781
+
782
+ .fa.fa-sort-amount-desc {
783
+ --fa: "\f160"; }
784
+
785
+ .fa.fa-sort-numeric-asc {
786
+ --fa: "\f162"; }
787
+
788
+ .fa.fa-sort-numeric-desc {
789
+ --fa: "\f886"; }
790
+
791
+ .fa.fa-youtube-square {
792
+ font-family: 'Font Awesome 6 Brands';
793
+ font-weight: 400; }
794
+
795
+ .fa.fa-youtube-square {
796
+ --fa: "\f431"; }
797
+
798
+ .fa.fa-youtube {
799
+ font-family: 'Font Awesome 6 Brands';
800
+ font-weight: 400; }
801
+
802
+ .fa.fa-xing {
803
+ font-family: 'Font Awesome 6 Brands';
804
+ font-weight: 400; }
805
+
806
+ .fa.fa-xing-square {
807
+ font-family: 'Font Awesome 6 Brands';
808
+ font-weight: 400; }
809
+
810
+ .fa.fa-xing-square {
811
+ --fa: "\f169"; }
812
+
813
+ .fa.fa-youtube-play {
814
+ font-family: 'Font Awesome 6 Brands';
815
+ font-weight: 400; }
816
+
817
+ .fa.fa-youtube-play {
818
+ --fa: "\f167"; }
819
+
820
+ .fa.fa-dropbox {
821
+ font-family: 'Font Awesome 6 Brands';
822
+ font-weight: 400; }
823
+
824
+ .fa.fa-stack-overflow {
825
+ font-family: 'Font Awesome 6 Brands';
826
+ font-weight: 400; }
827
+
828
+ .fa.fa-instagram {
829
+ font-family: 'Font Awesome 6 Brands';
830
+ font-weight: 400; }
831
+
832
+ .fa.fa-flickr {
833
+ font-family: 'Font Awesome 6 Brands';
834
+ font-weight: 400; }
835
+
836
+ .fa.fa-adn {
837
+ font-family: 'Font Awesome 6 Brands';
838
+ font-weight: 400; }
839
+
840
+ .fa.fa-bitbucket {
841
+ font-family: 'Font Awesome 6 Brands';
842
+ font-weight: 400; }
843
+
844
+ .fa.fa-bitbucket-square {
845
+ font-family: 'Font Awesome 6 Brands';
846
+ font-weight: 400; }
847
+
848
+ .fa.fa-bitbucket-square {
849
+ --fa: "\f171"; }
850
+
851
+ .fa.fa-tumblr {
852
+ font-family: 'Font Awesome 6 Brands';
853
+ font-weight: 400; }
854
+
855
+ .fa.fa-tumblr-square {
856
+ font-family: 'Font Awesome 6 Brands';
857
+ font-weight: 400; }
858
+
859
+ .fa.fa-tumblr-square {
860
+ --fa: "\f174"; }
861
+
862
+ .fa.fa-long-arrow-down {
863
+ --fa: "\f309"; }
864
+
865
+ .fa.fa-long-arrow-up {
866
+ --fa: "\f30c"; }
867
+
868
+ .fa.fa-long-arrow-left {
869
+ --fa: "\f30a"; }
870
+
871
+ .fa.fa-long-arrow-right {
872
+ --fa: "\f30b"; }
873
+
874
+ .fa.fa-apple {
875
+ font-family: 'Font Awesome 6 Brands';
876
+ font-weight: 400; }
877
+
878
+ .fa.fa-windows {
879
+ font-family: 'Font Awesome 6 Brands';
880
+ font-weight: 400; }
881
+
882
+ .fa.fa-android {
883
+ font-family: 'Font Awesome 6 Brands';
884
+ font-weight: 400; }
885
+
886
+ .fa.fa-linux {
887
+ font-family: 'Font Awesome 6 Brands';
888
+ font-weight: 400; }
889
+
890
+ .fa.fa-dribbble {
891
+ font-family: 'Font Awesome 6 Brands';
892
+ font-weight: 400; }
893
+
894
+ .fa.fa-skype {
895
+ font-family: 'Font Awesome 6 Brands';
896
+ font-weight: 400; }
897
+
898
+ .fa.fa-foursquare {
899
+ font-family: 'Font Awesome 6 Brands';
900
+ font-weight: 400; }
901
+
902
+ .fa.fa-trello {
903
+ font-family: 'Font Awesome 6 Brands';
904
+ font-weight: 400; }
905
+
906
+ .fa.fa-gratipay {
907
+ font-family: 'Font Awesome 6 Brands';
908
+ font-weight: 400; }
909
+
910
+ .fa.fa-gittip {
911
+ font-family: 'Font Awesome 6 Brands';
912
+ font-weight: 400; }
913
+
914
+ .fa.fa-gittip {
915
+ --fa: "\f184"; }
916
+
917
+ .fa.fa-sun-o {
918
+ font-family: 'Font Awesome 6 Pro';
919
+ font-weight: 400; }
920
+
921
+ .fa.fa-sun-o {
922
+ --fa: "\f185"; }
923
+
924
+ .fa.fa-moon-o {
925
+ font-family: 'Font Awesome 6 Pro';
926
+ font-weight: 400; }
927
+
928
+ .fa.fa-moon-o {
929
+ --fa: "\f186"; }
930
+
931
+ .fa.fa-vk {
932
+ font-family: 'Font Awesome 6 Brands';
933
+ font-weight: 400; }
934
+
935
+ .fa.fa-weibo {
936
+ font-family: 'Font Awesome 6 Brands';
937
+ font-weight: 400; }
938
+
939
+ .fa.fa-renren {
940
+ font-family: 'Font Awesome 6 Brands';
941
+ font-weight: 400; }
942
+
943
+ .fa.fa-pagelines {
944
+ font-family: 'Font Awesome 6 Brands';
945
+ font-weight: 400; }
946
+
947
+ .fa.fa-stack-exchange {
948
+ font-family: 'Font Awesome 6 Brands';
949
+ font-weight: 400; }
950
+
951
+ .fa.fa-arrow-circle-o-right {
952
+ font-family: 'Font Awesome 6 Pro';
953
+ font-weight: 400; }
954
+
955
+ .fa.fa-arrow-circle-o-right {
956
+ --fa: "\f35a"; }
957
+
958
+ .fa.fa-arrow-circle-o-left {
959
+ font-family: 'Font Awesome 6 Pro';
960
+ font-weight: 400; }
961
+
962
+ .fa.fa-arrow-circle-o-left {
963
+ --fa: "\f359"; }
964
+
965
+ .fa.fa-caret-square-o-left {
966
+ font-family: 'Font Awesome 6 Pro';
967
+ font-weight: 400; }
968
+
969
+ .fa.fa-caret-square-o-left {
970
+ --fa: "\f191"; }
971
+
972
+ .fa.fa-toggle-left {
973
+ font-family: 'Font Awesome 6 Pro';
974
+ font-weight: 400; }
975
+
976
+ .fa.fa-toggle-left {
977
+ --fa: "\f191"; }
978
+
979
+ .fa.fa-dot-circle-o {
980
+ font-family: 'Font Awesome 6 Pro';
981
+ font-weight: 400; }
982
+
983
+ .fa.fa-dot-circle-o {
984
+ --fa: "\f192"; }
985
+
986
+ .fa.fa-vimeo-square {
987
+ font-family: 'Font Awesome 6 Brands';
988
+ font-weight: 400; }
989
+
990
+ .fa.fa-vimeo-square {
991
+ --fa: "\f194"; }
992
+
993
+ .fa.fa-try {
994
+ --fa: "\e2bb"; }
995
+
996
+ .fa.fa-turkish-lira {
997
+ --fa: "\e2bb"; }
998
+
999
+ .fa.fa-plus-square-o {
1000
+ font-family: 'Font Awesome 6 Pro';
1001
+ font-weight: 400; }
1002
+
1003
+ .fa.fa-plus-square-o {
1004
+ --fa: "\f0fe"; }
1005
+
1006
+ .fa.fa-slack {
1007
+ font-family: 'Font Awesome 6 Brands';
1008
+ font-weight: 400; }
1009
+
1010
+ .fa.fa-wordpress {
1011
+ font-family: 'Font Awesome 6 Brands';
1012
+ font-weight: 400; }
1013
+
1014
+ .fa.fa-openid {
1015
+ font-family: 'Font Awesome 6 Brands';
1016
+ font-weight: 400; }
1017
+
1018
+ .fa.fa-institution {
1019
+ --fa: "\f19c"; }
1020
+
1021
+ .fa.fa-bank {
1022
+ --fa: "\f19c"; }
1023
+
1024
+ .fa.fa-mortar-board {
1025
+ --fa: "\f19d"; }
1026
+
1027
+ .fa.fa-yahoo {
1028
+ font-family: 'Font Awesome 6 Brands';
1029
+ font-weight: 400; }
1030
+
1031
+ .fa.fa-google {
1032
+ font-family: 'Font Awesome 6 Brands';
1033
+ font-weight: 400; }
1034
+
1035
+ .fa.fa-reddit {
1036
+ font-family: 'Font Awesome 6 Brands';
1037
+ font-weight: 400; }
1038
+
1039
+ .fa.fa-reddit-square {
1040
+ font-family: 'Font Awesome 6 Brands';
1041
+ font-weight: 400; }
1042
+
1043
+ .fa.fa-reddit-square {
1044
+ --fa: "\f1a2"; }
1045
+
1046
+ .fa.fa-stumbleupon-circle {
1047
+ font-family: 'Font Awesome 6 Brands';
1048
+ font-weight: 400; }
1049
+
1050
+ .fa.fa-stumbleupon {
1051
+ font-family: 'Font Awesome 6 Brands';
1052
+ font-weight: 400; }
1053
+
1054
+ .fa.fa-delicious {
1055
+ font-family: 'Font Awesome 6 Brands';
1056
+ font-weight: 400; }
1057
+
1058
+ .fa.fa-digg {
1059
+ font-family: 'Font Awesome 6 Brands';
1060
+ font-weight: 400; }
1061
+
1062
+ .fa.fa-pied-piper-pp {
1063
+ font-family: 'Font Awesome 6 Brands';
1064
+ font-weight: 400; }
1065
+
1066
+ .fa.fa-pied-piper-alt {
1067
+ font-family: 'Font Awesome 6 Brands';
1068
+ font-weight: 400; }
1069
+
1070
+ .fa.fa-drupal {
1071
+ font-family: 'Font Awesome 6 Brands';
1072
+ font-weight: 400; }
1073
+
1074
+ .fa.fa-joomla {
1075
+ font-family: 'Font Awesome 6 Brands';
1076
+ font-weight: 400; }
1077
+
1078
+ .fa.fa-behance {
1079
+ font-family: 'Font Awesome 6 Brands';
1080
+ font-weight: 400; }
1081
+
1082
+ .fa.fa-behance-square {
1083
+ font-family: 'Font Awesome 6 Brands';
1084
+ font-weight: 400; }
1085
+
1086
+ .fa.fa-behance-square {
1087
+ --fa: "\f1b5"; }
1088
+
1089
+ .fa.fa-steam {
1090
+ font-family: 'Font Awesome 6 Brands';
1091
+ font-weight: 400; }
1092
+
1093
+ .fa.fa-steam-square {
1094
+ font-family: 'Font Awesome 6 Brands';
1095
+ font-weight: 400; }
1096
+
1097
+ .fa.fa-steam-square {
1098
+ --fa: "\f1b7"; }
1099
+
1100
+ .fa.fa-automobile {
1101
+ --fa: "\f1b9"; }
1102
+
1103
+ .fa.fa-cab {
1104
+ --fa: "\f1ba"; }
1105
+
1106
+ .fa.fa-spotify {
1107
+ font-family: 'Font Awesome 6 Brands';
1108
+ font-weight: 400; }
1109
+
1110
+ .fa.fa-deviantart {
1111
+ font-family: 'Font Awesome 6 Brands';
1112
+ font-weight: 400; }
1113
+
1114
+ .fa.fa-soundcloud {
1115
+ font-family: 'Font Awesome 6 Brands';
1116
+ font-weight: 400; }
1117
+
1118
+ .fa.fa-file-pdf-o {
1119
+ font-family: 'Font Awesome 6 Pro';
1120
+ font-weight: 400; }
1121
+
1122
+ .fa.fa-file-pdf-o {
1123
+ --fa: "\f1c1"; }
1124
+
1125
+ .fa.fa-file-word-o {
1126
+ font-family: 'Font Awesome 6 Pro';
1127
+ font-weight: 400; }
1128
+
1129
+ .fa.fa-file-word-o {
1130
+ --fa: "\f1c2"; }
1131
+
1132
+ .fa.fa-file-excel-o {
1133
+ font-family: 'Font Awesome 6 Pro';
1134
+ font-weight: 400; }
1135
+
1136
+ .fa.fa-file-excel-o {
1137
+ --fa: "\f1c3"; }
1138
+
1139
+ .fa.fa-file-powerpoint-o {
1140
+ font-family: 'Font Awesome 6 Pro';
1141
+ font-weight: 400; }
1142
+
1143
+ .fa.fa-file-powerpoint-o {
1144
+ --fa: "\f1c4"; }
1145
+
1146
+ .fa.fa-file-image-o {
1147
+ font-family: 'Font Awesome 6 Pro';
1148
+ font-weight: 400; }
1149
+
1150
+ .fa.fa-file-image-o {
1151
+ --fa: "\f1c5"; }
1152
+
1153
+ .fa.fa-file-photo-o {
1154
+ font-family: 'Font Awesome 6 Pro';
1155
+ font-weight: 400; }
1156
+
1157
+ .fa.fa-file-photo-o {
1158
+ --fa: "\f1c5"; }
1159
+
1160
+ .fa.fa-file-picture-o {
1161
+ font-family: 'Font Awesome 6 Pro';
1162
+ font-weight: 400; }
1163
+
1164
+ .fa.fa-file-picture-o {
1165
+ --fa: "\f1c5"; }
1166
+
1167
+ .fa.fa-file-archive-o {
1168
+ font-family: 'Font Awesome 6 Pro';
1169
+ font-weight: 400; }
1170
+
1171
+ .fa.fa-file-archive-o {
1172
+ --fa: "\f1c6"; }
1173
+
1174
+ .fa.fa-file-zip-o {
1175
+ font-family: 'Font Awesome 6 Pro';
1176
+ font-weight: 400; }
1177
+
1178
+ .fa.fa-file-zip-o {
1179
+ --fa: "\f1c6"; }
1180
+
1181
+ .fa.fa-file-audio-o {
1182
+ font-family: 'Font Awesome 6 Pro';
1183
+ font-weight: 400; }
1184
+
1185
+ .fa.fa-file-audio-o {
1186
+ --fa: "\f1c7"; }
1187
+
1188
+ .fa.fa-file-sound-o {
1189
+ font-family: 'Font Awesome 6 Pro';
1190
+ font-weight: 400; }
1191
+
1192
+ .fa.fa-file-sound-o {
1193
+ --fa: "\f1c7"; }
1194
+
1195
+ .fa.fa-file-video-o {
1196
+ font-family: 'Font Awesome 6 Pro';
1197
+ font-weight: 400; }
1198
+
1199
+ .fa.fa-file-video-o {
1200
+ --fa: "\f1c8"; }
1201
+
1202
+ .fa.fa-file-movie-o {
1203
+ font-family: 'Font Awesome 6 Pro';
1204
+ font-weight: 400; }
1205
+
1206
+ .fa.fa-file-movie-o {
1207
+ --fa: "\f1c8"; }
1208
+
1209
+ .fa.fa-file-code-o {
1210
+ font-family: 'Font Awesome 6 Pro';
1211
+ font-weight: 400; }
1212
+
1213
+ .fa.fa-file-code-o {
1214
+ --fa: "\f1c9"; }
1215
+
1216
+ .fa.fa-vine {
1217
+ font-family: 'Font Awesome 6 Brands';
1218
+ font-weight: 400; }
1219
+
1220
+ .fa.fa-codepen {
1221
+ font-family: 'Font Awesome 6 Brands';
1222
+ font-weight: 400; }
1223
+
1224
+ .fa.fa-jsfiddle {
1225
+ font-family: 'Font Awesome 6 Brands';
1226
+ font-weight: 400; }
1227
+
1228
+ .fa.fa-life-bouy {
1229
+ --fa: "\f1cd"; }
1230
+
1231
+ .fa.fa-life-buoy {
1232
+ --fa: "\f1cd"; }
1233
+
1234
+ .fa.fa-life-saver {
1235
+ --fa: "\f1cd"; }
1236
+
1237
+ .fa.fa-support {
1238
+ --fa: "\f1cd"; }
1239
+
1240
+ .fa.fa-circle-o-notch {
1241
+ --fa: "\f1ce"; }
1242
+
1243
+ .fa.fa-rebel {
1244
+ font-family: 'Font Awesome 6 Brands';
1245
+ font-weight: 400; }
1246
+
1247
+ .fa.fa-ra {
1248
+ font-family: 'Font Awesome 6 Brands';
1249
+ font-weight: 400; }
1250
+
1251
+ .fa.fa-ra {
1252
+ --fa: "\f1d0"; }
1253
+
1254
+ .fa.fa-resistance {
1255
+ font-family: 'Font Awesome 6 Brands';
1256
+ font-weight: 400; }
1257
+
1258
+ .fa.fa-resistance {
1259
+ --fa: "\f1d0"; }
1260
+
1261
+ .fa.fa-empire {
1262
+ font-family: 'Font Awesome 6 Brands';
1263
+ font-weight: 400; }
1264
+
1265
+ .fa.fa-ge {
1266
+ font-family: 'Font Awesome 6 Brands';
1267
+ font-weight: 400; }
1268
+
1269
+ .fa.fa-ge {
1270
+ --fa: "\f1d1"; }
1271
+
1272
+ .fa.fa-git-square {
1273
+ font-family: 'Font Awesome 6 Brands';
1274
+ font-weight: 400; }
1275
+
1276
+ .fa.fa-git-square {
1277
+ --fa: "\f1d2"; }
1278
+
1279
+ .fa.fa-git {
1280
+ font-family: 'Font Awesome 6 Brands';
1281
+ font-weight: 400; }
1282
+
1283
+ .fa.fa-hacker-news {
1284
+ font-family: 'Font Awesome 6 Brands';
1285
+ font-weight: 400; }
1286
+
1287
+ .fa.fa-y-combinator-square {
1288
+ font-family: 'Font Awesome 6 Brands';
1289
+ font-weight: 400; }
1290
+
1291
+ .fa.fa-y-combinator-square {
1292
+ --fa: "\f1d4"; }
1293
+
1294
+ .fa.fa-yc-square {
1295
+ font-family: 'Font Awesome 6 Brands';
1296
+ font-weight: 400; }
1297
+
1298
+ .fa.fa-yc-square {
1299
+ --fa: "\f1d4"; }
1300
+
1301
+ .fa.fa-tencent-weibo {
1302
+ font-family: 'Font Awesome 6 Brands';
1303
+ font-weight: 400; }
1304
+
1305
+ .fa.fa-qq {
1306
+ font-family: 'Font Awesome 6 Brands';
1307
+ font-weight: 400; }
1308
+
1309
+ .fa.fa-weixin {
1310
+ font-family: 'Font Awesome 6 Brands';
1311
+ font-weight: 400; }
1312
+
1313
+ .fa.fa-wechat {
1314
+ font-family: 'Font Awesome 6 Brands';
1315
+ font-weight: 400; }
1316
+
1317
+ .fa.fa-wechat {
1318
+ --fa: "\f1d7"; }
1319
+
1320
+ .fa.fa-send {
1321
+ --fa: "\f1d8"; }
1322
+
1323
+ .fa.fa-paper-plane-o {
1324
+ font-family: 'Font Awesome 6 Pro';
1325
+ font-weight: 400; }
1326
+
1327
+ .fa.fa-paper-plane-o {
1328
+ --fa: "\f1d8"; }
1329
+
1330
+ .fa.fa-send-o {
1331
+ font-family: 'Font Awesome 6 Pro';
1332
+ font-weight: 400; }
1333
+
1334
+ .fa.fa-send-o {
1335
+ --fa: "\f1d8"; }
1336
+
1337
+ .fa.fa-circle-thin {
1338
+ font-family: 'Font Awesome 6 Pro';
1339
+ font-weight: 400; }
1340
+
1341
+ .fa.fa-circle-thin {
1342
+ --fa: "\f111"; }
1343
+
1344
+ .fa.fa-header {
1345
+ --fa: "\f1dc"; }
1346
+
1347
+ .fa.fa-futbol-o {
1348
+ font-family: 'Font Awesome 6 Pro';
1349
+ font-weight: 400; }
1350
+
1351
+ .fa.fa-futbol-o {
1352
+ --fa: "\f1e3"; }
1353
+
1354
+ .fa.fa-soccer-ball-o {
1355
+ font-family: 'Font Awesome 6 Pro';
1356
+ font-weight: 400; }
1357
+
1358
+ .fa.fa-soccer-ball-o {
1359
+ --fa: "\f1e3"; }
1360
+
1361
+ .fa.fa-slideshare {
1362
+ font-family: 'Font Awesome 6 Brands';
1363
+ font-weight: 400; }
1364
+
1365
+ .fa.fa-twitch {
1366
+ font-family: 'Font Awesome 6 Brands';
1367
+ font-weight: 400; }
1368
+
1369
+ .fa.fa-yelp {
1370
+ font-family: 'Font Awesome 6 Brands';
1371
+ font-weight: 400; }
1372
+
1373
+ .fa.fa-newspaper-o {
1374
+ font-family: 'Font Awesome 6 Pro';
1375
+ font-weight: 400; }
1376
+
1377
+ .fa.fa-newspaper-o {
1378
+ --fa: "\f1ea"; }
1379
+
1380
+ .fa.fa-paypal {
1381
+ font-family: 'Font Awesome 6 Brands';
1382
+ font-weight: 400; }
1383
+
1384
+ .fa.fa-google-wallet {
1385
+ font-family: 'Font Awesome 6 Brands';
1386
+ font-weight: 400; }
1387
+
1388
+ .fa.fa-cc-visa {
1389
+ font-family: 'Font Awesome 6 Brands';
1390
+ font-weight: 400; }
1391
+
1392
+ .fa.fa-cc-mastercard {
1393
+ font-family: 'Font Awesome 6 Brands';
1394
+ font-weight: 400; }
1395
+
1396
+ .fa.fa-cc-discover {
1397
+ font-family: 'Font Awesome 6 Brands';
1398
+ font-weight: 400; }
1399
+
1400
+ .fa.fa-cc-amex {
1401
+ font-family: 'Font Awesome 6 Brands';
1402
+ font-weight: 400; }
1403
+
1404
+ .fa.fa-cc-paypal {
1405
+ font-family: 'Font Awesome 6 Brands';
1406
+ font-weight: 400; }
1407
+
1408
+ .fa.fa-cc-stripe {
1409
+ font-family: 'Font Awesome 6 Brands';
1410
+ font-weight: 400; }
1411
+
1412
+ .fa.fa-bell-slash-o {
1413
+ font-family: 'Font Awesome 6 Pro';
1414
+ font-weight: 400; }
1415
+
1416
+ .fa.fa-bell-slash-o {
1417
+ --fa: "\f1f6"; }
1418
+
1419
+ .fa.fa-trash {
1420
+ --fa: "\f2ed"; }
1421
+
1422
+ .fa.fa-copyright {
1423
+ font-family: 'Font Awesome 6 Pro';
1424
+ font-weight: 400; }
1425
+
1426
+ .fa.fa-eyedropper {
1427
+ --fa: "\f1fb"; }
1428
+
1429
+ .fa.fa-area-chart {
1430
+ --fa: "\f1fe"; }
1431
+
1432
+ .fa.fa-pie-chart {
1433
+ --fa: "\f200"; }
1434
+
1435
+ .fa.fa-line-chart {
1436
+ --fa: "\f201"; }
1437
+
1438
+ .fa.fa-lastfm {
1439
+ font-family: 'Font Awesome 6 Brands';
1440
+ font-weight: 400; }
1441
+
1442
+ .fa.fa-lastfm-square {
1443
+ font-family: 'Font Awesome 6 Brands';
1444
+ font-weight: 400; }
1445
+
1446
+ .fa.fa-lastfm-square {
1447
+ --fa: "\f203"; }
1448
+
1449
+ .fa.fa-ioxhost {
1450
+ font-family: 'Font Awesome 6 Brands';
1451
+ font-weight: 400; }
1452
+
1453
+ .fa.fa-angellist {
1454
+ font-family: 'Font Awesome 6 Brands';
1455
+ font-weight: 400; }
1456
+
1457
+ .fa.fa-cc {
1458
+ font-family: 'Font Awesome 6 Pro';
1459
+ font-weight: 400; }
1460
+
1461
+ .fa.fa-cc {
1462
+ --fa: "\f20a"; }
1463
+
1464
+ .fa.fa-ils {
1465
+ --fa: "\f20b"; }
1466
+
1467
+ .fa.fa-shekel {
1468
+ --fa: "\f20b"; }
1469
+
1470
+ .fa.fa-sheqel {
1471
+ --fa: "\f20b"; }
1472
+
1473
+ .fa.fa-buysellads {
1474
+ font-family: 'Font Awesome 6 Brands';
1475
+ font-weight: 400; }
1476
+
1477
+ .fa.fa-connectdevelop {
1478
+ font-family: 'Font Awesome 6 Brands';
1479
+ font-weight: 400; }
1480
+
1481
+ .fa.fa-dashcube {
1482
+ font-family: 'Font Awesome 6 Brands';
1483
+ font-weight: 400; }
1484
+
1485
+ .fa.fa-forumbee {
1486
+ font-family: 'Font Awesome 6 Brands';
1487
+ font-weight: 400; }
1488
+
1489
+ .fa.fa-leanpub {
1490
+ font-family: 'Font Awesome 6 Brands';
1491
+ font-weight: 400; }
1492
+
1493
+ .fa.fa-sellsy {
1494
+ font-family: 'Font Awesome 6 Brands';
1495
+ font-weight: 400; }
1496
+
1497
+ .fa.fa-shirtsinbulk {
1498
+ font-family: 'Font Awesome 6 Brands';
1499
+ font-weight: 400; }
1500
+
1501
+ .fa.fa-simplybuilt {
1502
+ font-family: 'Font Awesome 6 Brands';
1503
+ font-weight: 400; }
1504
+
1505
+ .fa.fa-skyatlas {
1506
+ font-family: 'Font Awesome 6 Brands';
1507
+ font-weight: 400; }
1508
+
1509
+ .fa.fa-diamond {
1510
+ font-family: 'Font Awesome 6 Pro';
1511
+ font-weight: 400; }
1512
+
1513
+ .fa.fa-diamond {
1514
+ --fa: "\f3a5"; }
1515
+
1516
+ .fa.fa-transgender {
1517
+ --fa: "\f224"; }
1518
+
1519
+ .fa.fa-intersex {
1520
+ --fa: "\f224"; }
1521
+
1522
+ .fa.fa-transgender-alt {
1523
+ --fa: "\f225"; }
1524
+
1525
+ .fa.fa-facebook-official {
1526
+ font-family: 'Font Awesome 6 Brands';
1527
+ font-weight: 400; }
1528
+
1529
+ .fa.fa-facebook-official {
1530
+ --fa: "\f09a"; }
1531
+
1532
+ .fa.fa-pinterest-p {
1533
+ font-family: 'Font Awesome 6 Brands';
1534
+ font-weight: 400; }
1535
+
1536
+ .fa.fa-whatsapp {
1537
+ font-family: 'Font Awesome 6 Brands';
1538
+ font-weight: 400; }
1539
+
1540
+ .fa.fa-hotel {
1541
+ --fa: "\f236"; }
1542
+
1543
+ .fa.fa-viacoin {
1544
+ font-family: 'Font Awesome 6 Brands';
1545
+ font-weight: 400; }
1546
+
1547
+ .fa.fa-medium {
1548
+ font-family: 'Font Awesome 6 Brands';
1549
+ font-weight: 400; }
1550
+
1551
+ .fa.fa-y-combinator {
1552
+ font-family: 'Font Awesome 6 Brands';
1553
+ font-weight: 400; }
1554
+
1555
+ .fa.fa-yc {
1556
+ font-family: 'Font Awesome 6 Brands';
1557
+ font-weight: 400; }
1558
+
1559
+ .fa.fa-yc {
1560
+ --fa: "\f23b"; }
1561
+
1562
+ .fa.fa-optin-monster {
1563
+ font-family: 'Font Awesome 6 Brands';
1564
+ font-weight: 400; }
1565
+
1566
+ .fa.fa-opencart {
1567
+ font-family: 'Font Awesome 6 Brands';
1568
+ font-weight: 400; }
1569
+
1570
+ .fa.fa-expeditedssl {
1571
+ font-family: 'Font Awesome 6 Brands';
1572
+ font-weight: 400; }
1573
+
1574
+ .fa.fa-battery-4 {
1575
+ --fa: "\f240"; }
1576
+
1577
+ .fa.fa-battery {
1578
+ --fa: "\f240"; }
1579
+
1580
+ .fa.fa-battery-3 {
1581
+ --fa: "\f241"; }
1582
+
1583
+ .fa.fa-battery-2 {
1584
+ --fa: "\f242"; }
1585
+
1586
+ .fa.fa-battery-1 {
1587
+ --fa: "\f243"; }
1588
+
1589
+ .fa.fa-battery-0 {
1590
+ --fa: "\f244"; }
1591
+
1592
+ .fa.fa-object-group {
1593
+ font-family: 'Font Awesome 6 Pro';
1594
+ font-weight: 400; }
1595
+
1596
+ .fa.fa-object-ungroup {
1597
+ font-family: 'Font Awesome 6 Pro';
1598
+ font-weight: 400; }
1599
+
1600
+ .fa.fa-sticky-note-o {
1601
+ font-family: 'Font Awesome 6 Pro';
1602
+ font-weight: 400; }
1603
+
1604
+ .fa.fa-sticky-note-o {
1605
+ --fa: "\f249"; }
1606
+
1607
+ .fa.fa-cc-jcb {
1608
+ font-family: 'Font Awesome 6 Brands';
1609
+ font-weight: 400; }
1610
+
1611
+ .fa.fa-cc-diners-club {
1612
+ font-family: 'Font Awesome 6 Brands';
1613
+ font-weight: 400; }
1614
+
1615
+ .fa.fa-clone {
1616
+ font-family: 'Font Awesome 6 Pro';
1617
+ font-weight: 400; }
1618
+
1619
+ .fa.fa-hourglass-o {
1620
+ --fa: "\f254"; }
1621
+
1622
+ .fa.fa-hourglass-1 {
1623
+ --fa: "\f251"; }
1624
+
1625
+ .fa.fa-hourglass-2 {
1626
+ --fa: "\f252"; }
1627
+
1628
+ .fa.fa-hourglass-3 {
1629
+ --fa: "\f253"; }
1630
+
1631
+ .fa.fa-hand-rock-o {
1632
+ font-family: 'Font Awesome 6 Pro';
1633
+ font-weight: 400; }
1634
+
1635
+ .fa.fa-hand-rock-o {
1636
+ --fa: "\f255"; }
1637
+
1638
+ .fa.fa-hand-grab-o {
1639
+ font-family: 'Font Awesome 6 Pro';
1640
+ font-weight: 400; }
1641
+
1642
+ .fa.fa-hand-grab-o {
1643
+ --fa: "\f255"; }
1644
+
1645
+ .fa.fa-hand-paper-o {
1646
+ font-family: 'Font Awesome 6 Pro';
1647
+ font-weight: 400; }
1648
+
1649
+ .fa.fa-hand-paper-o {
1650
+ --fa: "\f256"; }
1651
+
1652
+ .fa.fa-hand-stop-o {
1653
+ font-family: 'Font Awesome 6 Pro';
1654
+ font-weight: 400; }
1655
+
1656
+ .fa.fa-hand-stop-o {
1657
+ --fa: "\f256"; }
1658
+
1659
+ .fa.fa-hand-scissors-o {
1660
+ font-family: 'Font Awesome 6 Pro';
1661
+ font-weight: 400; }
1662
+
1663
+ .fa.fa-hand-scissors-o {
1664
+ --fa: "\f257"; }
1665
+
1666
+ .fa.fa-hand-lizard-o {
1667
+ font-family: 'Font Awesome 6 Pro';
1668
+ font-weight: 400; }
1669
+
1670
+ .fa.fa-hand-lizard-o {
1671
+ --fa: "\f258"; }
1672
+
1673
+ .fa.fa-hand-spock-o {
1674
+ font-family: 'Font Awesome 6 Pro';
1675
+ font-weight: 400; }
1676
+
1677
+ .fa.fa-hand-spock-o {
1678
+ --fa: "\f259"; }
1679
+
1680
+ .fa.fa-hand-pointer-o {
1681
+ font-family: 'Font Awesome 6 Pro';
1682
+ font-weight: 400; }
1683
+
1684
+ .fa.fa-hand-pointer-o {
1685
+ --fa: "\f25a"; }
1686
+
1687
+ .fa.fa-hand-peace-o {
1688
+ font-family: 'Font Awesome 6 Pro';
1689
+ font-weight: 400; }
1690
+
1691
+ .fa.fa-hand-peace-o {
1692
+ --fa: "\f25b"; }
1693
+
1694
+ .fa.fa-registered {
1695
+ font-family: 'Font Awesome 6 Pro';
1696
+ font-weight: 400; }
1697
+
1698
+ .fa.fa-creative-commons {
1699
+ font-family: 'Font Awesome 6 Brands';
1700
+ font-weight: 400; }
1701
+
1702
+ .fa.fa-gg {
1703
+ font-family: 'Font Awesome 6 Brands';
1704
+ font-weight: 400; }
1705
+
1706
+ .fa.fa-gg-circle {
1707
+ font-family: 'Font Awesome 6 Brands';
1708
+ font-weight: 400; }
1709
+
1710
+ .fa.fa-odnoklassniki {
1711
+ font-family: 'Font Awesome 6 Brands';
1712
+ font-weight: 400; }
1713
+
1714
+ .fa.fa-odnoklassniki-square {
1715
+ font-family: 'Font Awesome 6 Brands';
1716
+ font-weight: 400; }
1717
+
1718
+ .fa.fa-odnoklassniki-square {
1719
+ --fa: "\f264"; }
1720
+
1721
+ .fa.fa-get-pocket {
1722
+ font-family: 'Font Awesome 6 Brands';
1723
+ font-weight: 400; }
1724
+
1725
+ .fa.fa-wikipedia-w {
1726
+ font-family: 'Font Awesome 6 Brands';
1727
+ font-weight: 400; }
1728
+
1729
+ .fa.fa-safari {
1730
+ font-family: 'Font Awesome 6 Brands';
1731
+ font-weight: 400; }
1732
+
1733
+ .fa.fa-chrome {
1734
+ font-family: 'Font Awesome 6 Brands';
1735
+ font-weight: 400; }
1736
+
1737
+ .fa.fa-firefox {
1738
+ font-family: 'Font Awesome 6 Brands';
1739
+ font-weight: 400; }
1740
+
1741
+ .fa.fa-opera {
1742
+ font-family: 'Font Awesome 6 Brands';
1743
+ font-weight: 400; }
1744
+
1745
+ .fa.fa-internet-explorer {
1746
+ font-family: 'Font Awesome 6 Brands';
1747
+ font-weight: 400; }
1748
+
1749
+ .fa.fa-television {
1750
+ --fa: "\f26c"; }
1751
+
1752
+ .fa.fa-contao {
1753
+ font-family: 'Font Awesome 6 Brands';
1754
+ font-weight: 400; }
1755
+
1756
+ .fa.fa-500px {
1757
+ font-family: 'Font Awesome 6 Brands';
1758
+ font-weight: 400; }
1759
+
1760
+ .fa.fa-amazon {
1761
+ font-family: 'Font Awesome 6 Brands';
1762
+ font-weight: 400; }
1763
+
1764
+ .fa.fa-calendar-plus-o {
1765
+ font-family: 'Font Awesome 6 Pro';
1766
+ font-weight: 400; }
1767
+
1768
+ .fa.fa-calendar-plus-o {
1769
+ --fa: "\f271"; }
1770
+
1771
+ .fa.fa-calendar-minus-o {
1772
+ font-family: 'Font Awesome 6 Pro';
1773
+ font-weight: 400; }
1774
+
1775
+ .fa.fa-calendar-minus-o {
1776
+ --fa: "\f272"; }
1777
+
1778
+ .fa.fa-calendar-times-o {
1779
+ font-family: 'Font Awesome 6 Pro';
1780
+ font-weight: 400; }
1781
+
1782
+ .fa.fa-calendar-times-o {
1783
+ --fa: "\f273"; }
1784
+
1785
+ .fa.fa-calendar-check-o {
1786
+ font-family: 'Font Awesome 6 Pro';
1787
+ font-weight: 400; }
1788
+
1789
+ .fa.fa-calendar-check-o {
1790
+ --fa: "\f274"; }
1791
+
1792
+ .fa.fa-map-o {
1793
+ font-family: 'Font Awesome 6 Pro';
1794
+ font-weight: 400; }
1795
+
1796
+ .fa.fa-map-o {
1797
+ --fa: "\f279"; }
1798
+
1799
+ .fa.fa-commenting {
1800
+ --fa: "\f4ad"; }
1801
+
1802
+ .fa.fa-commenting-o {
1803
+ font-family: 'Font Awesome 6 Pro';
1804
+ font-weight: 400; }
1805
+
1806
+ .fa.fa-commenting-o {
1807
+ --fa: "\f4ad"; }
1808
+
1809
+ .fa.fa-houzz {
1810
+ font-family: 'Font Awesome 6 Brands';
1811
+ font-weight: 400; }
1812
+
1813
+ .fa.fa-vimeo {
1814
+ font-family: 'Font Awesome 6 Brands';
1815
+ font-weight: 400; }
1816
+
1817
+ .fa.fa-vimeo {
1818
+ --fa: "\f27d"; }
1819
+
1820
+ .fa.fa-black-tie {
1821
+ font-family: 'Font Awesome 6 Brands';
1822
+ font-weight: 400; }
1823
+
1824
+ .fa.fa-fonticons {
1825
+ font-family: 'Font Awesome 6 Brands';
1826
+ font-weight: 400; }
1827
+
1828
+ .fa.fa-reddit-alien {
1829
+ font-family: 'Font Awesome 6 Brands';
1830
+ font-weight: 400; }
1831
+
1832
+ .fa.fa-edge {
1833
+ font-family: 'Font Awesome 6 Brands';
1834
+ font-weight: 400; }
1835
+
1836
+ .fa.fa-credit-card-alt {
1837
+ --fa: "\f09d"; }
1838
+
1839
+ .fa.fa-codiepie {
1840
+ font-family: 'Font Awesome 6 Brands';
1841
+ font-weight: 400; }
1842
+
1843
+ .fa.fa-modx {
1844
+ font-family: 'Font Awesome 6 Brands';
1845
+ font-weight: 400; }
1846
+
1847
+ .fa.fa-fort-awesome {
1848
+ font-family: 'Font Awesome 6 Brands';
1849
+ font-weight: 400; }
1850
+
1851
+ .fa.fa-usb {
1852
+ font-family: 'Font Awesome 6 Brands';
1853
+ font-weight: 400; }
1854
+
1855
+ .fa.fa-product-hunt {
1856
+ font-family: 'Font Awesome 6 Brands';
1857
+ font-weight: 400; }
1858
+
1859
+ .fa.fa-mixcloud {
1860
+ font-family: 'Font Awesome 6 Brands';
1861
+ font-weight: 400; }
1862
+
1863
+ .fa.fa-scribd {
1864
+ font-family: 'Font Awesome 6 Brands';
1865
+ font-weight: 400; }
1866
+
1867
+ .fa.fa-pause-circle-o {
1868
+ font-family: 'Font Awesome 6 Pro';
1869
+ font-weight: 400; }
1870
+
1871
+ .fa.fa-pause-circle-o {
1872
+ --fa: "\f28b"; }
1873
+
1874
+ .fa.fa-stop-circle-o {
1875
+ font-family: 'Font Awesome 6 Pro';
1876
+ font-weight: 400; }
1877
+
1878
+ .fa.fa-stop-circle-o {
1879
+ --fa: "\f28d"; }
1880
+
1881
+ .fa.fa-bluetooth {
1882
+ font-family: 'Font Awesome 6 Brands';
1883
+ font-weight: 400; }
1884
+
1885
+ .fa.fa-bluetooth-b {
1886
+ font-family: 'Font Awesome 6 Brands';
1887
+ font-weight: 400; }
1888
+
1889
+ .fa.fa-gitlab {
1890
+ font-family: 'Font Awesome 6 Brands';
1891
+ font-weight: 400; }
1892
+
1893
+ .fa.fa-wpbeginner {
1894
+ font-family: 'Font Awesome 6 Brands';
1895
+ font-weight: 400; }
1896
+
1897
+ .fa.fa-wpforms {
1898
+ font-family: 'Font Awesome 6 Brands';
1899
+ font-weight: 400; }
1900
+
1901
+ .fa.fa-envira {
1902
+ font-family: 'Font Awesome 6 Brands';
1903
+ font-weight: 400; }
1904
+
1905
+ .fa.fa-wheelchair-alt {
1906
+ font-family: 'Font Awesome 6 Brands';
1907
+ font-weight: 400; }
1908
+
1909
+ .fa.fa-wheelchair-alt {
1910
+ --fa: "\f368"; }
1911
+
1912
+ .fa.fa-question-circle-o {
1913
+ font-family: 'Font Awesome 6 Pro';
1914
+ font-weight: 400; }
1915
+
1916
+ .fa.fa-question-circle-o {
1917
+ --fa: "\f059"; }
1918
+
1919
+ .fa.fa-volume-control-phone {
1920
+ --fa: "\f2a0"; }
1921
+
1922
+ .fa.fa-asl-interpreting {
1923
+ --fa: "\f2a3"; }
1924
+
1925
+ .fa.fa-deafness {
1926
+ --fa: "\f2a4"; }
1927
+
1928
+ .fa.fa-hard-of-hearing {
1929
+ --fa: "\f2a4"; }
1930
+
1931
+ .fa.fa-glide {
1932
+ font-family: 'Font Awesome 6 Brands';
1933
+ font-weight: 400; }
1934
+
1935
+ .fa.fa-glide-g {
1936
+ font-family: 'Font Awesome 6 Brands';
1937
+ font-weight: 400; }
1938
+
1939
+ .fa.fa-signing {
1940
+ --fa: "\f2a7"; }
1941
+
1942
+ .fa.fa-viadeo {
1943
+ font-family: 'Font Awesome 6 Brands';
1944
+ font-weight: 400; }
1945
+
1946
+ .fa.fa-viadeo-square {
1947
+ font-family: 'Font Awesome 6 Brands';
1948
+ font-weight: 400; }
1949
+
1950
+ .fa.fa-viadeo-square {
1951
+ --fa: "\f2aa"; }
1952
+
1953
+ .fa.fa-snapchat {
1954
+ font-family: 'Font Awesome 6 Brands';
1955
+ font-weight: 400; }
1956
+
1957
+ .fa.fa-snapchat-ghost {
1958
+ font-family: 'Font Awesome 6 Brands';
1959
+ font-weight: 400; }
1960
+
1961
+ .fa.fa-snapchat-ghost {
1962
+ --fa: "\f2ab"; }
1963
+
1964
+ .fa.fa-snapchat-square {
1965
+ font-family: 'Font Awesome 6 Brands';
1966
+ font-weight: 400; }
1967
+
1968
+ .fa.fa-snapchat-square {
1969
+ --fa: "\f2ad"; }
1970
+
1971
+ .fa.fa-pied-piper {
1972
+ font-family: 'Font Awesome 6 Brands';
1973
+ font-weight: 400; }
1974
+
1975
+ .fa.fa-first-order {
1976
+ font-family: 'Font Awesome 6 Brands';
1977
+ font-weight: 400; }
1978
+
1979
+ .fa.fa-yoast {
1980
+ font-family: 'Font Awesome 6 Brands';
1981
+ font-weight: 400; }
1982
+
1983
+ .fa.fa-themeisle {
1984
+ font-family: 'Font Awesome 6 Brands';
1985
+ font-weight: 400; }
1986
+
1987
+ .fa.fa-google-plus-official {
1988
+ font-family: 'Font Awesome 6 Brands';
1989
+ font-weight: 400; }
1990
+
1991
+ .fa.fa-google-plus-official {
1992
+ --fa: "\f2b3"; }
1993
+
1994
+ .fa.fa-google-plus-circle {
1995
+ font-family: 'Font Awesome 6 Brands';
1996
+ font-weight: 400; }
1997
+
1998
+ .fa.fa-google-plus-circle {
1999
+ --fa: "\f2b3"; }
2000
+
2001
+ .fa.fa-font-awesome {
2002
+ font-family: 'Font Awesome 6 Brands';
2003
+ font-weight: 400; }
2004
+
2005
+ .fa.fa-fa {
2006
+ font-family: 'Font Awesome 6 Brands';
2007
+ font-weight: 400; }
2008
+
2009
+ .fa.fa-fa {
2010
+ --fa: "\f2b4"; }
2011
+
2012
+ .fa.fa-handshake-o {
2013
+ font-family: 'Font Awesome 6 Pro';
2014
+ font-weight: 400; }
2015
+
2016
+ .fa.fa-handshake-o {
2017
+ --fa: "\f2b5"; }
2018
+
2019
+ .fa.fa-envelope-open-o {
2020
+ font-family: 'Font Awesome 6 Pro';
2021
+ font-weight: 400; }
2022
+
2023
+ .fa.fa-envelope-open-o {
2024
+ --fa: "\f2b6"; }
2025
+
2026
+ .fa.fa-linode {
2027
+ font-family: 'Font Awesome 6 Brands';
2028
+ font-weight: 400; }
2029
+
2030
+ .fa.fa-address-book-o {
2031
+ font-family: 'Font Awesome 6 Pro';
2032
+ font-weight: 400; }
2033
+
2034
+ .fa.fa-address-book-o {
2035
+ --fa: "\f2b9"; }
2036
+
2037
+ .fa.fa-vcard {
2038
+ --fa: "\f2bb"; }
2039
+
2040
+ .fa.fa-address-card-o {
2041
+ font-family: 'Font Awesome 6 Pro';
2042
+ font-weight: 400; }
2043
+
2044
+ .fa.fa-address-card-o {
2045
+ --fa: "\f2bb"; }
2046
+
2047
+ .fa.fa-vcard-o {
2048
+ font-family: 'Font Awesome 6 Pro';
2049
+ font-weight: 400; }
2050
+
2051
+ .fa.fa-vcard-o {
2052
+ --fa: "\f2bb"; }
2053
+
2054
+ .fa.fa-user-circle-o {
2055
+ font-family: 'Font Awesome 6 Pro';
2056
+ font-weight: 400; }
2057
+
2058
+ .fa.fa-user-circle-o {
2059
+ --fa: "\f2bd"; }
2060
+
2061
+ .fa.fa-user-o {
2062
+ font-family: 'Font Awesome 6 Pro';
2063
+ font-weight: 400; }
2064
+
2065
+ .fa.fa-user-o {
2066
+ --fa: "\f007"; }
2067
+
2068
+ .fa.fa-id-badge {
2069
+ font-family: 'Font Awesome 6 Pro';
2070
+ font-weight: 400; }
2071
+
2072
+ .fa.fa-drivers-license {
2073
+ --fa: "\f2c2"; }
2074
+
2075
+ .fa.fa-id-card-o {
2076
+ font-family: 'Font Awesome 6 Pro';
2077
+ font-weight: 400; }
2078
+
2079
+ .fa.fa-id-card-o {
2080
+ --fa: "\f2c2"; }
2081
+
2082
+ .fa.fa-drivers-license-o {
2083
+ font-family: 'Font Awesome 6 Pro';
2084
+ font-weight: 400; }
2085
+
2086
+ .fa.fa-drivers-license-o {
2087
+ --fa: "\f2c2"; }
2088
+
2089
+ .fa.fa-quora {
2090
+ font-family: 'Font Awesome 6 Brands';
2091
+ font-weight: 400; }
2092
+
2093
+ .fa.fa-free-code-camp {
2094
+ font-family: 'Font Awesome 6 Brands';
2095
+ font-weight: 400; }
2096
+
2097
+ .fa.fa-telegram {
2098
+ font-family: 'Font Awesome 6 Brands';
2099
+ font-weight: 400; }
2100
+
2101
+ .fa.fa-thermometer-4 {
2102
+ --fa: "\f2c7"; }
2103
+
2104
+ .fa.fa-thermometer {
2105
+ --fa: "\f2c7"; }
2106
+
2107
+ .fa.fa-thermometer-3 {
2108
+ --fa: "\f2c8"; }
2109
+
2110
+ .fa.fa-thermometer-2 {
2111
+ --fa: "\f2c9"; }
2112
+
2113
+ .fa.fa-thermometer-1 {
2114
+ --fa: "\f2ca"; }
2115
+
2116
+ .fa.fa-thermometer-0 {
2117
+ --fa: "\f2cb"; }
2118
+
2119
+ .fa.fa-bathtub {
2120
+ --fa: "\f2cd"; }
2121
+
2122
+ .fa.fa-s15 {
2123
+ --fa: "\f2cd"; }
2124
+
2125
+ .fa.fa-window-maximize {
2126
+ font-family: 'Font Awesome 6 Pro';
2127
+ font-weight: 400; }
2128
+
2129
+ .fa.fa-window-restore {
2130
+ font-family: 'Font Awesome 6 Pro';
2131
+ font-weight: 400; }
2132
+
2133
+ .fa.fa-times-rectangle {
2134
+ --fa: "\f410"; }
2135
+
2136
+ .fa.fa-window-close-o {
2137
+ font-family: 'Font Awesome 6 Pro';
2138
+ font-weight: 400; }
2139
+
2140
+ .fa.fa-window-close-o {
2141
+ --fa: "\f410"; }
2142
+
2143
+ .fa.fa-times-rectangle-o {
2144
+ font-family: 'Font Awesome 6 Pro';
2145
+ font-weight: 400; }
2146
+
2147
+ .fa.fa-times-rectangle-o {
2148
+ --fa: "\f410"; }
2149
+
2150
+ .fa.fa-bandcamp {
2151
+ font-family: 'Font Awesome 6 Brands';
2152
+ font-weight: 400; }
2153
+
2154
+ .fa.fa-grav {
2155
+ font-family: 'Font Awesome 6 Brands';
2156
+ font-weight: 400; }
2157
+
2158
+ .fa.fa-etsy {
2159
+ font-family: 'Font Awesome 6 Brands';
2160
+ font-weight: 400; }
2161
+
2162
+ .fa.fa-imdb {
2163
+ font-family: 'Font Awesome 6 Brands';
2164
+ font-weight: 400; }
2165
+
2166
+ .fa.fa-ravelry {
2167
+ font-family: 'Font Awesome 6 Brands';
2168
+ font-weight: 400; }
2169
+
2170
+ .fa.fa-eercast {
2171
+ font-family: 'Font Awesome 6 Brands';
2172
+ font-weight: 400; }
2173
+
2174
+ .fa.fa-eercast {
2175
+ --fa: "\f2da"; }
2176
+
2177
+ .fa.fa-snowflake-o {
2178
+ font-family: 'Font Awesome 6 Pro';
2179
+ font-weight: 400; }
2180
+
2181
+ .fa.fa-snowflake-o {
2182
+ --fa: "\f2dc"; }
2183
+
2184
+ .fa.fa-superpowers {
2185
+ font-family: 'Font Awesome 6 Brands';
2186
+ font-weight: 400; }
2187
+
2188
+ .fa.fa-wpexplorer {
2189
+ font-family: 'Font Awesome 6 Brands';
2190
+ font-weight: 400; }
2191
+
2192
+ .fa.fa-meetup {
2193
+ font-family: 'Font Awesome 6 Brands';
2194
+ font-weight: 400; }