_shims.scss 70 KB

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