_shims.scss 64 KB

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