Bez popisu

_shims.less 59KB

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