fork-awesome.css 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733
  1. /*!
  2. Fork Awesome 1.2.0
  3. License - https://forkaweso.me/Fork-Awesome/license
  4. Copyright 2018 Dave Gandy & Fork Awesome
  5. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
  6. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
  7. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  8. */
  9. /* FONT PATH
  10. * -------------------------- */
  11. @font-face {
  12. font-family: 'ForkAwesome';
  13. src: url('../fonts/forkawesome-webfont.eot?v=1.2.0');
  14. src: url('../fonts/forkawesome-webfont.eot?#iefix&v=1.2.0') format('embedded-opentype'), url('../fonts/forkawesome-webfont.woff2?v=1.2.0') format('woff2'), url('../fonts/forkawesome-webfont.woff?v=1.2.0') format('woff'), url('../fonts/forkawesome-webfont.ttf?v=1.2.0') format('truetype'), url('../fonts/forkawesome-webfont.svg?v=1.2.0#forkawesomeregular') format('svg');
  15. font-weight: normal;
  16. font-style: normal;
  17. font-display: block;
  18. }
  19. .fa {
  20. display: inline-block;
  21. font: normal normal normal 14px/1 ForkAwesome;
  22. font-size: inherit;
  23. text-rendering: auto;
  24. -webkit-font-smoothing: antialiased;
  25. -moz-osx-font-smoothing: grayscale;
  26. }
  27. /* makes the font 33% larger relative to the icon container */
  28. .fa-lg {
  29. font-size: 1.33333333em;
  30. line-height: 0.75em;
  31. vertical-align: -15%;
  32. }
  33. .fa-2x {
  34. font-size: 2em;
  35. }
  36. .fa-3x {
  37. font-size: 3em;
  38. }
  39. .fa-4x {
  40. font-size: 4em;
  41. }
  42. .fa-5x {
  43. font-size: 5em;
  44. }
  45. .fa-fw {
  46. width: 1.28571429em;
  47. text-align: center;
  48. }
  49. .fa-ul {
  50. padding-left: 0;
  51. margin-left: 2.14285714em;
  52. list-style-type: none;
  53. }
  54. .fa-ul > li {
  55. position: relative;
  56. }
  57. .fa-li {
  58. position: absolute;
  59. left: -2.14285714em;
  60. width: 2.14285714em;
  61. top: 0.14285714em;
  62. text-align: center;
  63. }
  64. .fa-li.fa-lg {
  65. left: -1.85714286em;
  66. }
  67. .fa-border {
  68. padding: .2em .25em .15em;
  69. border: solid 0.08em #eee;
  70. border-radius: .1em;
  71. }
  72. .fa-pull-left {
  73. float: left;
  74. }
  75. .fa-pull-right {
  76. float: right;
  77. }
  78. .fa.fa-pull-left {
  79. margin-right: .3em;
  80. }
  81. .fa.fa-pull-right {
  82. margin-left: .3em;
  83. }
  84. /* Deprecated as of 4.4.0 */
  85. .pull-right {
  86. float: right;
  87. }
  88. .pull-left {
  89. float: left;
  90. }
  91. .fa.pull-left {
  92. margin-right: .3em;
  93. }
  94. .fa.pull-right {
  95. margin-left: .3em;
  96. }
  97. .fa-spin {
  98. -webkit-animation: fa-spin 2s infinite linear;
  99. animation: fa-spin 2s infinite linear;
  100. }
  101. .fa-pulse {
  102. -webkit-animation: fa-spin 1s infinite steps(8);
  103. animation: fa-spin 1s infinite steps(8);
  104. }
  105. @-webkit-keyframes fa-spin {
  106. 0% {
  107. -webkit-transform: rotate(0deg);
  108. transform: rotate(0deg);
  109. }
  110. 100% {
  111. -webkit-transform: rotate(359deg);
  112. transform: rotate(359deg);
  113. }
  114. }
  115. @keyframes fa-spin {
  116. 0% {
  117. -webkit-transform: rotate(0deg);
  118. transform: rotate(0deg);
  119. }
  120. 100% {
  121. -webkit-transform: rotate(359deg);
  122. transform: rotate(359deg);
  123. }
  124. }
  125. .fa-rotate-90 {
  126. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  127. -webkit-transform: rotate(90deg);
  128. -ms-transform: rotate(90deg);
  129. transform: rotate(90deg);
  130. }
  131. .fa-rotate-180 {
  132. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  133. -webkit-transform: rotate(180deg);
  134. -ms-transform: rotate(180deg);
  135. transform: rotate(180deg);
  136. }
  137. .fa-rotate-270 {
  138. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  139. -webkit-transform: rotate(270deg);
  140. -ms-transform: rotate(270deg);
  141. transform: rotate(270deg);
  142. }
  143. .fa-flip-horizontal {
  144. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  145. -webkit-transform: scale(-1, 1);
  146. -ms-transform: scale(-1, 1);
  147. transform: scale(-1, 1);
  148. }
  149. .fa-flip-vertical {
  150. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  151. -webkit-transform: scale(1, -1);
  152. -ms-transform: scale(1, -1);
  153. transform: scale(1, -1);
  154. }
  155. :root .fa-rotate-90,
  156. :root .fa-rotate-180,
  157. :root .fa-rotate-270,
  158. :root .fa-flip-horizontal,
  159. :root .fa-flip-vertical {
  160. filter: none;
  161. }
  162. .fa-stack {
  163. position: relative;
  164. display: inline-block;
  165. width: 2em;
  166. height: 2em;
  167. line-height: 2em;
  168. vertical-align: middle;
  169. }
  170. .fa-stack-1x,
  171. .fa-stack-2x {
  172. position: absolute;
  173. left: 0;
  174. width: 100%;
  175. text-align: center;
  176. }
  177. .fa-stack-1x {
  178. line-height: inherit;
  179. }
  180. .fa-stack-2x {
  181. font-size: 2em;
  182. }
  183. .fa-inverse {
  184. color: #fff;
  185. }
  186. /* Fork Awesome uses the Unicode Private Use Area (PUA) to ensure screen
  187. readers do not read off random characters that represent icons */
  188. .fa-glass:before {
  189. content: "\f000";
  190. }
  191. .fa-music:before {
  192. content: "\f001";
  193. }
  194. .fa-search:before {
  195. content: "\f002";
  196. }
  197. .fa-envelope-o:before {
  198. content: "\f003";
  199. }
  200. .fa-heart:before {
  201. content: "\f004";
  202. }
  203. .fa-star:before {
  204. content: "\f005";
  205. }
  206. .fa-star-o:before {
  207. content: "\f006";
  208. }
  209. .fa-user:before {
  210. content: "\f007";
  211. }
  212. .fa-film:before {
  213. content: "\f008";
  214. }
  215. .fa-th-large:before {
  216. content: "\f009";
  217. }
  218. .fa-th:before {
  219. content: "\f00a";
  220. }
  221. .fa-th-list:before {
  222. content: "\f00b";
  223. }
  224. .fa-check:before {
  225. content: "\f00c";
  226. }
  227. .fa-remove:before,
  228. .fa-close:before,
  229. .fa-times:before {
  230. content: "\f00d";
  231. }
  232. .fa-search-plus:before {
  233. content: "\f00e";
  234. }
  235. .fa-search-minus:before {
  236. content: "\f010";
  237. }
  238. .fa-power-off:before {
  239. content: "\f011";
  240. }
  241. .fa-signal:before {
  242. content: "\f012";
  243. }
  244. .fa-gear:before,
  245. .fa-cog:before {
  246. content: "\f013";
  247. }
  248. .fa-trash-o:before {
  249. content: "\f014";
  250. }
  251. .fa-home:before {
  252. content: "\f015";
  253. }
  254. .fa-file-o:before {
  255. content: "\f016";
  256. }
  257. .fa-clock-o:before {
  258. content: "\f017";
  259. }
  260. .fa-road:before {
  261. content: "\f018";
  262. }
  263. .fa-download:before {
  264. content: "\f019";
  265. }
  266. .fa-arrow-circle-o-down:before {
  267. content: "\f01a";
  268. }
  269. .fa-arrow-circle-o-up:before {
  270. content: "\f01b";
  271. }
  272. .fa-inbox:before {
  273. content: "\f01c";
  274. }
  275. .fa-play-circle-o:before {
  276. content: "\f01d";
  277. }
  278. .fa-rotate-right:before,
  279. .fa-repeat:before {
  280. content: "\f01e";
  281. }
  282. .fa-sync:before,
  283. .fa-refresh:before {
  284. content: "\f021";
  285. }
  286. .fa-list-alt:before {
  287. content: "\f022";
  288. }
  289. .fa-lock:before {
  290. content: "\f023";
  291. }
  292. .fa-flag:before {
  293. content: "\f024";
  294. }
  295. .fa-headphones:before {
  296. content: "\f025";
  297. }
  298. .fa-volume-off:before {
  299. content: "\f026";
  300. }
  301. .fa-volume-down:before {
  302. content: "\f027";
  303. }
  304. .fa-volume-up:before {
  305. content: "\f028";
  306. }
  307. .fa-qrcode:before {
  308. content: "\f029";
  309. }
  310. .fa-barcode:before {
  311. content: "\f02a";
  312. }
  313. .fa-tag:before {
  314. content: "\f02b";
  315. }
  316. .fa-tags:before {
  317. content: "\f02c";
  318. }
  319. .fa-book:before {
  320. content: "\f02d";
  321. }
  322. .fa-bookmark:before {
  323. content: "\f02e";
  324. }
  325. .fa-print:before {
  326. content: "\f02f";
  327. }
  328. .fa-camera:before {
  329. content: "\f030";
  330. }
  331. .fa-font:before {
  332. content: "\f031";
  333. }
  334. .fa-bold:before {
  335. content: "\f032";
  336. }
  337. .fa-italic:before {
  338. content: "\f033";
  339. }
  340. .fa-text-height:before {
  341. content: "\f034";
  342. }
  343. .fa-text-width:before {
  344. content: "\f035";
  345. }
  346. .fa-align-left:before {
  347. content: "\f036";
  348. }
  349. .fa-align-center:before {
  350. content: "\f037";
  351. }
  352. .fa-align-right:before {
  353. content: "\f038";
  354. }
  355. .fa-align-justify:before {
  356. content: "\f039";
  357. }
  358. .fa-list:before {
  359. content: "\f03a";
  360. }
  361. .fa-dedent:before,
  362. .fa-outdent:before {
  363. content: "\f03b";
  364. }
  365. .fa-indent:before {
  366. content: "\f03c";
  367. }
  368. .fa-video:before,
  369. .fa-video-camera:before {
  370. content: "\f03d";
  371. }
  372. .fa-photo:before,
  373. .fa-image:before,
  374. .fa-picture-o:before {
  375. content: "\f03e";
  376. }
  377. .fa-pencil:before {
  378. content: "\f040";
  379. }
  380. .fa-map-marker:before {
  381. content: "\f041";
  382. }
  383. .fa-adjust:before {
  384. content: "\f042";
  385. }
  386. .fa-tint:before {
  387. content: "\f043";
  388. }
  389. .fa-edit:before,
  390. .fa-pencil-square-o:before {
  391. content: "\f044";
  392. }
  393. .fa-share-square-o:before {
  394. content: "\f045";
  395. }
  396. .fa-check-square-o:before {
  397. content: "\f046";
  398. }
  399. .fa-arrows:before {
  400. content: "\f047";
  401. }
  402. .fa-step-backward:before {
  403. content: "\f048";
  404. }
  405. .fa-fast-backward:before {
  406. content: "\f049";
  407. }
  408. .fa-backward:before {
  409. content: "\f04a";
  410. }
  411. .fa-play:before {
  412. content: "\f04b";
  413. }
  414. .fa-pause:before {
  415. content: "\f04c";
  416. }
  417. .fa-stop:before {
  418. content: "\f04d";
  419. }
  420. .fa-forward:before {
  421. content: "\f04e";
  422. }
  423. .fa-fast-forward:before {
  424. content: "\f050";
  425. }
  426. .fa-step-forward:before {
  427. content: "\f051";
  428. }
  429. .fa-eject:before {
  430. content: "\f052";
  431. }
  432. .fa-chevron-left:before {
  433. content: "\f053";
  434. }
  435. .fa-chevron-right:before {
  436. content: "\f054";
  437. }
  438. .fa-plus-circle:before {
  439. content: "\f055";
  440. }
  441. .fa-minus-circle:before {
  442. content: "\f056";
  443. }
  444. .fa-times-circle:before {
  445. content: "\f057";
  446. }
  447. .fa-check-circle:before {
  448. content: "\f058";
  449. }
  450. .fa-question-circle:before {
  451. content: "\f059";
  452. }
  453. .fa-info-circle:before {
  454. content: "\f05a";
  455. }
  456. .fa-crosshairs:before {
  457. content: "\f05b";
  458. }
  459. .fa-times-circle-o:before {
  460. content: "\f05c";
  461. }
  462. .fa-check-circle-o:before {
  463. content: "\f05d";
  464. }
  465. .fa-ban:before {
  466. content: "\f05e";
  467. }
  468. .fa-arrow-left:before {
  469. content: "\f060";
  470. }
  471. .fa-arrow-right:before {
  472. content: "\f061";
  473. }
  474. .fa-arrow-up:before {
  475. content: "\f062";
  476. }
  477. .fa-arrow-down:before {
  478. content: "\f063";
  479. }
  480. .fa-mail-forward:before,
  481. .fa-share:before {
  482. content: "\f064";
  483. }
  484. .fa-expand:before {
  485. content: "\f065";
  486. }
  487. .fa-compress:before {
  488. content: "\f066";
  489. }
  490. .fa-plus:before {
  491. content: "\f067";
  492. }
  493. .fa-minus:before {
  494. content: "\f068";
  495. }
  496. .fa-asterisk:before {
  497. content: "\f069";
  498. }
  499. .fa-exclamation-circle:before {
  500. content: "\f06a";
  501. }
  502. .fa-gift:before {
  503. content: "\f06b";
  504. }
  505. .fa-leaf:before {
  506. content: "\f06c";
  507. }
  508. .fa-fire:before {
  509. content: "\f06d";
  510. }
  511. .fa-eye:before {
  512. content: "\f06e";
  513. }
  514. .fa-eye-slash:before {
  515. content: "\f070";
  516. }
  517. .fa-warning:before,
  518. .fa-exclamation-triangle:before {
  519. content: "\f071";
  520. }
  521. .fa-plane:before {
  522. content: "\f072";
  523. }
  524. .fa-calendar:before {
  525. content: "\f073";
  526. }
  527. .fa-random:before {
  528. content: "\f074";
  529. }
  530. .fa-comment:before {
  531. content: "\f075";
  532. }
  533. .fa-magnet:before {
  534. content: "\f076";
  535. }
  536. .fa-chevron-up:before {
  537. content: "\f077";
  538. }
  539. .fa-chevron-down:before {
  540. content: "\f078";
  541. }
  542. .fa-retweet:before {
  543. content: "\f079";
  544. }
  545. .fa-shopping-cart:before {
  546. content: "\f07a";
  547. }
  548. .fa-folder:before {
  549. content: "\f07b";
  550. }
  551. .fa-folder-open:before {
  552. content: "\f07c";
  553. }
  554. .fa-arrows-v:before {
  555. content: "\f07d";
  556. }
  557. .fa-arrows-h:before {
  558. content: "\f07e";
  559. }
  560. .fa-bar-chart-o:before,
  561. .fa-bar-chart:before {
  562. content: "\f080";
  563. }
  564. .fa-twitter-square:before {
  565. content: "\f081";
  566. }
  567. .fa-facebook-square:before {
  568. content: "\f082";
  569. }
  570. .fa-camera-retro:before {
  571. content: "\f083";
  572. }
  573. .fa-key:before {
  574. content: "\f084";
  575. }
  576. .fa-gears:before,
  577. .fa-cogs:before {
  578. content: "\f085";
  579. }
  580. .fa-comments:before {
  581. content: "\f086";
  582. }
  583. .fa-thumbs-o-up:before {
  584. content: "\f087";
  585. }
  586. .fa-thumbs-o-down:before {
  587. content: "\f088";
  588. }
  589. .fa-star-half:before {
  590. content: "\f089";
  591. }
  592. .fa-heart-o:before {
  593. content: "\f08a";
  594. }
  595. .fa-sign-out:before {
  596. content: "\f08b";
  597. }
  598. .fa-linkedin-square:before {
  599. content: "\f08c";
  600. }
  601. .fa-thumb-tack:before {
  602. content: "\f08d";
  603. }
  604. .fa-external-link:before {
  605. content: "\f08e";
  606. }
  607. .fa-sign-in:before {
  608. content: "\f090";
  609. }
  610. .fa-trophy:before {
  611. content: "\f091";
  612. }
  613. .fa-github-square:before {
  614. content: "\f092";
  615. }
  616. .fa-upload:before {
  617. content: "\f093";
  618. }
  619. .fa-lemon-o:before {
  620. content: "\f094";
  621. }
  622. .fa-phone:before {
  623. content: "\f095";
  624. }
  625. .fa-square-o:before {
  626. content: "\f096";
  627. }
  628. .fa-bookmark-o:before {
  629. content: "\f097";
  630. }
  631. .fa-phone-square:before {
  632. content: "\f098";
  633. }
  634. .fa-twitter:before {
  635. content: "\f099";
  636. }
  637. .fa-facebook-f:before,
  638. .fa-facebook:before {
  639. content: "\f09a";
  640. }
  641. .fa-github:before {
  642. content: "\f09b";
  643. }
  644. .fa-unlock:before {
  645. content: "\f09c";
  646. }
  647. .fa-credit-card:before {
  648. content: "\f09d";
  649. }
  650. .fa-feed:before,
  651. .fa-rss:before {
  652. content: "\f09e";
  653. }
  654. .fa-hdd-o:before {
  655. content: "\f0a0";
  656. }
  657. .fa-bullhorn:before {
  658. content: "\f0a1";
  659. }
  660. .fa-bell-o:before {
  661. content: "\f0f3";
  662. }
  663. .fa-certificate:before {
  664. content: "\f0a3";
  665. }
  666. .fa-hand-o-right:before {
  667. content: "\f0a4";
  668. }
  669. .fa-hand-o-left:before {
  670. content: "\f0a5";
  671. }
  672. .fa-hand-o-up:before {
  673. content: "\f0a6";
  674. }
  675. .fa-hand-o-down:before {
  676. content: "\f0a7";
  677. }
  678. .fa-arrow-circle-left:before {
  679. content: "\f0a8";
  680. }
  681. .fa-arrow-circle-right:before {
  682. content: "\f0a9";
  683. }
  684. .fa-arrow-circle-up:before {
  685. content: "\f0aa";
  686. }
  687. .fa-arrow-circle-down:before {
  688. content: "\f0ab";
  689. }
  690. .fa-globe:before {
  691. content: "\f0ac";
  692. }
  693. .fa-globe-e:before {
  694. content: "\f304";
  695. }
  696. .fa-globe-w:before {
  697. content: "\f305";
  698. }
  699. .fa-wrench:before {
  700. content: "\f0ad";
  701. }
  702. .fa-tasks:before {
  703. content: "\f0ae";
  704. }
  705. .fa-filter:before {
  706. content: "\f0b0";
  707. }
  708. .fa-briefcase:before {
  709. content: "\f0b1";
  710. }
  711. .fa-arrows-alt:before {
  712. content: "\f0b2";
  713. }
  714. .fa-community:before,
  715. .fa-group:before,
  716. .fa-users:before {
  717. content: "\f0c0";
  718. }
  719. .fa-chain:before,
  720. .fa-link:before {
  721. content: "\f0c1";
  722. }
  723. .fa-cloud:before {
  724. content: "\f0c2";
  725. }
  726. .fa-flask:before {
  727. content: "\f0c3";
  728. }
  729. .fa-cut:before,
  730. .fa-scissors:before {
  731. content: "\f0c4";
  732. }
  733. .fa-copy:before,
  734. .fa-files-o:before {
  735. content: "\f0c5";
  736. }
  737. .fa-paperclip:before {
  738. content: "\f0c6";
  739. }
  740. .fa-save:before,
  741. .fa-floppy-o:before {
  742. content: "\f0c7";
  743. }
  744. .fa-square:before {
  745. content: "\f0c8";
  746. }
  747. .fa-navicon:before,
  748. .fa-reorder:before,
  749. .fa-bars:before {
  750. content: "\f0c9";
  751. }
  752. .fa-list-ul:before {
  753. content: "\f0ca";
  754. }
  755. .fa-list-ol:before {
  756. content: "\f0cb";
  757. }
  758. .fa-strikethrough:before {
  759. content: "\f0cc";
  760. }
  761. .fa-underline:before {
  762. content: "\f0cd";
  763. }
  764. .fa-table:before {
  765. content: "\f0ce";
  766. }
  767. .fa-magic:before {
  768. content: "\f0d0";
  769. }
  770. .fa-truck:before {
  771. content: "\f0d1";
  772. }
  773. .fa-pinterest:before {
  774. content: "\f0d2";
  775. }
  776. .fa-pinterest-square:before {
  777. content: "\f0d3";
  778. }
  779. .fa-google-plus-square:before {
  780. content: "\f0d4";
  781. }
  782. .fa-google-plus-g:before,
  783. .fa-google-plus:before {
  784. content: "\f0d5";
  785. }
  786. .fa-money:before {
  787. content: "\f0d6";
  788. }
  789. .fa-caret-down:before {
  790. content: "\f0d7";
  791. }
  792. .fa-caret-up:before {
  793. content: "\f0d8";
  794. }
  795. .fa-caret-left:before {
  796. content: "\f0d9";
  797. }
  798. .fa-caret-right:before {
  799. content: "\f0da";
  800. }
  801. .fa-columns:before {
  802. content: "\f0db";
  803. }
  804. .fa-unsorted:before,
  805. .fa-sort:before {
  806. content: "\f0dc";
  807. }
  808. .fa-sort-down:before,
  809. .fa-sort-desc:before {
  810. content: "\f0dd";
  811. }
  812. .fa-sort-up:before,
  813. .fa-sort-asc:before {
  814. content: "\f0de";
  815. }
  816. .fa-envelope:before {
  817. content: "\f0e0";
  818. }
  819. .fa-linkedin:before {
  820. content: "\f0e1";
  821. }
  822. .fa-rotate-left:before,
  823. .fa-undo:before {
  824. content: "\f0e2";
  825. }
  826. .fa-legal:before,
  827. .fa-gavel:before {
  828. content: "\f0e3";
  829. }
  830. .fa-dashboard:before,
  831. .fa-tachometer:before {
  832. content: "\f0e4";
  833. }
  834. .fa-comment-o:before {
  835. content: "\f0e5";
  836. }
  837. .fa-comments-o:before {
  838. content: "\f0e6";
  839. }
  840. .fa-flash:before,
  841. .fa-bolt:before {
  842. content: "\f0e7";
  843. }
  844. .fa-sitemap:before {
  845. content: "\f0e8";
  846. }
  847. .fa-umbrella:before {
  848. content: "\f0e9";
  849. }
  850. .fa-paste:before,
  851. .fa-clipboard:before {
  852. content: "\f0ea";
  853. }
  854. .fa-lightbulb-o:before {
  855. content: "\f0eb";
  856. }
  857. .fa-exchange:before {
  858. content: "\f0ec";
  859. }
  860. .fa-cloud-download:before {
  861. content: "\f0ed";
  862. }
  863. .fa-cloud-upload:before {
  864. content: "\f0ee";
  865. }
  866. .fa-user-md:before {
  867. content: "\f0f0";
  868. }
  869. .fa-stethoscope:before {
  870. content: "\f0f1";
  871. }
  872. .fa-suitcase:before {
  873. content: "\f0f2";
  874. }
  875. .fa-bell:before {
  876. content: "\f0a2";
  877. }
  878. .fa-coffee:before {
  879. content: "\f0f4";
  880. }
  881. .fa-utensils:before,
  882. .fa-cutlery:before {
  883. content: "\f0f5";
  884. }
  885. .fa-file-text-o:before {
  886. content: "\f0f6";
  887. }
  888. .fa-building-o:before {
  889. content: "\f0f7";
  890. }
  891. .fa-hospital-o:before {
  892. content: "\f0f8";
  893. }
  894. .fa-ambulance:before {
  895. content: "\f0f9";
  896. }
  897. .fa-medkit:before {
  898. content: "\f0fa";
  899. }
  900. .fa-fighter-jet:before {
  901. content: "\f0fb";
  902. }
  903. .fa-beer:before {
  904. content: "\f0fc";
  905. }
  906. .fa-h-square:before {
  907. content: "\f0fd";
  908. }
  909. .fa-plus-square:before {
  910. content: "\f0fe";
  911. }
  912. .fa-angle-double-left:before {
  913. content: "\f100";
  914. }
  915. .fa-angle-double-right:before {
  916. content: "\f101";
  917. }
  918. .fa-angle-double-up:before {
  919. content: "\f102";
  920. }
  921. .fa-angle-double-down:before {
  922. content: "\f103";
  923. }
  924. .fa-angle-left:before {
  925. content: "\f104";
  926. }
  927. .fa-angle-right:before {
  928. content: "\f105";
  929. }
  930. .fa-angle-up:before {
  931. content: "\f106";
  932. }
  933. .fa-angle-down:before {
  934. content: "\f107";
  935. }
  936. .fa-desktop:before {
  937. content: "\f108";
  938. }
  939. .fa-laptop:before {
  940. content: "\f109";
  941. }
  942. .fa-tablet:before {
  943. content: "\f10a";
  944. }
  945. .fa-mobile-phone:before,
  946. .fa-mobile:before {
  947. content: "\f10b";
  948. }
  949. .fa-circle-o:before {
  950. content: "\f10c";
  951. }
  952. .fa-quote-left:before {
  953. content: "\f10d";
  954. }
  955. .fa-quote-right:before {
  956. content: "\f10e";
  957. }
  958. .fa-spinner:before {
  959. content: "\f110";
  960. }
  961. .fa-circle:before {
  962. content: "\f111";
  963. }
  964. .fa-mail-reply:before,
  965. .fa-reply:before {
  966. content: "\f112";
  967. }
  968. .fa-github-alt:before {
  969. content: "\f113";
  970. }
  971. .fa-folder-o:before {
  972. content: "\f114";
  973. }
  974. .fa-folder-open-o:before {
  975. content: "\f115";
  976. }
  977. .fa-smile-o:before {
  978. content: "\f118";
  979. }
  980. .fa-frown-o:before {
  981. content: "\f119";
  982. }
  983. .fa-meh-o:before {
  984. content: "\f11a";
  985. }
  986. .fa-gamepad:before {
  987. content: "\f11b";
  988. }
  989. .fa-keyboard-o:before {
  990. content: "\f11c";
  991. }
  992. .fa-flag-o:before {
  993. content: "\f11d";
  994. }
  995. .fa-flag-checkered:before {
  996. content: "\f11e";
  997. }
  998. .fa-terminal:before {
  999. content: "\f120";
  1000. }
  1001. .fa-code:before {
  1002. content: "\f121";
  1003. }
  1004. .fa-mail-reply-all:before,
  1005. .fa-reply-all:before {
  1006. content: "\f122";
  1007. }
  1008. .fa-star-half-empty:before,
  1009. .fa-star-half-full:before,
  1010. .fa-star-half-o:before {
  1011. content: "\f123";
  1012. }
  1013. .fa-location-arrow:before {
  1014. content: "\f124";
  1015. }
  1016. .fa-crop:before {
  1017. content: "\f125";
  1018. }
  1019. .fa-code-fork:before {
  1020. content: "\f126";
  1021. }
  1022. .fa-unlink:before,
  1023. .fa-chain-broken:before {
  1024. content: "\f127";
  1025. }
  1026. .fa-question:before {
  1027. content: "\f128";
  1028. }
  1029. .fa-info:before {
  1030. content: "\f129";
  1031. }
  1032. .fa-exclamation:before {
  1033. content: "\f12a";
  1034. }
  1035. .fa-superscript:before {
  1036. content: "\f12b";
  1037. }
  1038. .fa-subscript:before {
  1039. content: "\f12c";
  1040. }
  1041. .fa-eraser:before {
  1042. content: "\f12d";
  1043. }
  1044. .fa-puzzle-piece:before {
  1045. content: "\f12e";
  1046. }
  1047. .fa-microphone:before {
  1048. content: "\f130";
  1049. }
  1050. .fa-microphone-slash:before {
  1051. content: "\f131";
  1052. }
  1053. .fa-shield:before {
  1054. content: "\f132";
  1055. }
  1056. .fa-calendar-o:before {
  1057. content: "\f133";
  1058. }
  1059. .fa-fire-extinguisher:before {
  1060. content: "\f134";
  1061. }
  1062. .fa-rocket:before {
  1063. content: "\f135";
  1064. }
  1065. .fa-maxcdn:before {
  1066. content: "\f136";
  1067. }
  1068. .fa-chevron-circle-left:before {
  1069. content: "\f137";
  1070. }
  1071. .fa-chevron-circle-right:before {
  1072. content: "\f138";
  1073. }
  1074. .fa-chevron-circle-up:before {
  1075. content: "\f139";
  1076. }
  1077. .fa-chevron-circle-down:before {
  1078. content: "\f13a";
  1079. }
  1080. .fa-html5:before {
  1081. content: "\f13b";
  1082. }
  1083. .fa-css3:before {
  1084. content: "\f13c";
  1085. }
  1086. .fa-anchor:before {
  1087. content: "\f13d";
  1088. }
  1089. .fa-unlock-alt:before {
  1090. content: "\f13e";
  1091. }
  1092. .fa-bullseye:before {
  1093. content: "\f140";
  1094. }
  1095. .fa-ellipsis-h:before {
  1096. content: "\f141";
  1097. }
  1098. .fa-ellipsis-v:before {
  1099. content: "\f142";
  1100. }
  1101. .fa-rss-square:before {
  1102. content: "\f143";
  1103. }
  1104. .fa-play-circle:before {
  1105. content: "\f144";
  1106. }
  1107. .fa-ticket:before {
  1108. content: "\f145";
  1109. }
  1110. .fa-minus-square:before {
  1111. content: "\f146";
  1112. }
  1113. .fa-minus-square-o:before {
  1114. content: "\f147";
  1115. }
  1116. .fa-level-up:before {
  1117. content: "\f148";
  1118. }
  1119. .fa-level-down:before {
  1120. content: "\f149";
  1121. }
  1122. .fa-check-square:before {
  1123. content: "\f14a";
  1124. }
  1125. .fa-pencil-square:before {
  1126. content: "\f14b";
  1127. }
  1128. .fa-external-link-square:before {
  1129. content: "\f14c";
  1130. }
  1131. .fa-share-square:before {
  1132. content: "\f14d";
  1133. }
  1134. .fa-compass:before {
  1135. content: "\f14e";
  1136. }
  1137. .fa-toggle-down:before,
  1138. .fa-caret-square-o-down:before {
  1139. content: "\f150";
  1140. }
  1141. .fa-toggle-up:before,
  1142. .fa-caret-square-o-up:before {
  1143. content: "\f151";
  1144. }
  1145. .fa-toggle-right:before,
  1146. .fa-caret-square-o-right:before {
  1147. content: "\f152";
  1148. }
  1149. .fa-euro:before,
  1150. .fa-eur:before {
  1151. content: "\f153";
  1152. }
  1153. .fa-pound:before,
  1154. .fa-gbp:before {
  1155. content: "\f154";
  1156. }
  1157. .fa-dollar:before,
  1158. .fa-usd:before {
  1159. content: "\f155";
  1160. }
  1161. .fa-rupee:before,
  1162. .fa-inr:before {
  1163. content: "\f156";
  1164. }
  1165. .fa-cny:before,
  1166. .fa-rmb:before,
  1167. .fa-yen:before,
  1168. .fa-jpy:before {
  1169. content: "\f157";
  1170. }
  1171. .fa-ruble:before,
  1172. .fa-rouble:before,
  1173. .fa-rub:before {
  1174. content: "\f158";
  1175. }
  1176. .fa-won:before,
  1177. .fa-krw:before {
  1178. content: "\f159";
  1179. }
  1180. .fa-bitcoin:before,
  1181. .fa-btc:before {
  1182. content: "\f15a";
  1183. }
  1184. .fa-file:before {
  1185. content: "\f15b";
  1186. }
  1187. .fa-file-text:before {
  1188. content: "\f15c";
  1189. }
  1190. .fa-sort-alpha-down:before,
  1191. .fa-sort-alpha-asc:before {
  1192. content: "\f15d";
  1193. }
  1194. .fa-sort-alpha-up:before,
  1195. .fa-sort-alpha-desc:before {
  1196. content: "\f15e";
  1197. }
  1198. .fa-sort-amount-down:before,
  1199. .fa-sort-amount-asc:before {
  1200. content: "\f160";
  1201. }
  1202. .fa-sort-amount-up:before,
  1203. .fa-sort-amount-desc:before {
  1204. content: "\f161";
  1205. }
  1206. .fa-sort-numeric-down:before,
  1207. .fa-sort-numeric-asc:before {
  1208. content: "\f162";
  1209. }
  1210. .fa-sort-numeric-up:before,
  1211. .fa-sort-numeric-desc:before {
  1212. content: "\f163";
  1213. }
  1214. .fa-thumbs-up:before {
  1215. content: "\f164";
  1216. }
  1217. .fa-thumbs-down:before {
  1218. content: "\f165";
  1219. }
  1220. .fa-youtube-square:before {
  1221. content: "\f166";
  1222. }
  1223. .fa-youtube:before {
  1224. content: "\f167";
  1225. }
  1226. .fa-xing:before {
  1227. content: "\f168";
  1228. }
  1229. .fa-xing-square:before {
  1230. content: "\f169";
  1231. }
  1232. .fa-youtube-play:before {
  1233. content: "\f16a";
  1234. }
  1235. .fa-dropbox:before {
  1236. content: "\f16b";
  1237. }
  1238. .fa-stack-overflow:before {
  1239. content: "\f16c";
  1240. }
  1241. .fa-instagram:before {
  1242. content: "\f16d";
  1243. }
  1244. .fa-flickr:before {
  1245. content: "\f16e";
  1246. }
  1247. .fa-adn:before {
  1248. content: "\f170";
  1249. }
  1250. .fa-bitbucket:before {
  1251. content: "\f171";
  1252. }
  1253. .fa-bitbucket-square:before {
  1254. content: "\f172";
  1255. }
  1256. .fa-tumblr:before {
  1257. content: "\f173";
  1258. }
  1259. .fa-tumblr-square:before {
  1260. content: "\f174";
  1261. }
  1262. .fa-long-arrow-down:before {
  1263. content: "\f175";
  1264. }
  1265. .fa-long-arrow-up:before {
  1266. content: "\f176";
  1267. }
  1268. .fa-long-arrow-left:before {
  1269. content: "\f177";
  1270. }
  1271. .fa-long-arrow-right:before {
  1272. content: "\f178";
  1273. }
  1274. .fa-apple:before {
  1275. content: "\f179";
  1276. }
  1277. .fa-windows:before {
  1278. content: "\f17a";
  1279. }
  1280. .fa-android:before {
  1281. content: "\f17b";
  1282. }
  1283. .fa-linux:before {
  1284. content: "\f17c";
  1285. }
  1286. .fa-dribbble:before {
  1287. content: "\f17d";
  1288. }
  1289. .fa-skype:before {
  1290. content: "\f17e";
  1291. }
  1292. .fa-foursquare:before {
  1293. content: "\f180";
  1294. }
  1295. .fa-trello:before {
  1296. content: "\f181";
  1297. }
  1298. .fa-female:before {
  1299. content: "\f182";
  1300. }
  1301. .fa-male:before {
  1302. content: "\f183";
  1303. }
  1304. .fa-gittip:before,
  1305. .fa-gratipay:before {
  1306. content: "\f184";
  1307. }
  1308. .fa-sun-o:before {
  1309. content: "\f185";
  1310. }
  1311. .fa-moon-o:before {
  1312. content: "\f186";
  1313. }
  1314. .fa-archive:before {
  1315. content: "\f187";
  1316. }
  1317. .fa-bug:before {
  1318. content: "\f188";
  1319. }
  1320. .fa-vk:before {
  1321. content: "\f189";
  1322. }
  1323. .fa-weibo:before {
  1324. content: "\f18a";
  1325. }
  1326. .fa-renren:before {
  1327. content: "\f18b";
  1328. }
  1329. .fa-pagelines:before {
  1330. content: "\f18c";
  1331. }
  1332. .fa-stack-exchange:before {
  1333. content: "\f18d";
  1334. }
  1335. .fa-arrow-circle-o-right:before {
  1336. content: "\f18e";
  1337. }
  1338. .fa-arrow-circle-o-left:before {
  1339. content: "\f190";
  1340. }
  1341. .fa-toggle-left:before,
  1342. .fa-caret-square-o-left:before {
  1343. content: "\f191";
  1344. }
  1345. .fa-dot-circle-o:before {
  1346. content: "\f192";
  1347. }
  1348. .fa-wheelchair:before {
  1349. content: "\f193";
  1350. }
  1351. .fa-vimeo-square:before {
  1352. content: "\f194";
  1353. }
  1354. .fa-turkish-lira:before,
  1355. .fa-try:before {
  1356. content: "\f195";
  1357. }
  1358. .fa-plus-square-o:before {
  1359. content: "\f196";
  1360. }
  1361. .fa-space-shuttle:before {
  1362. content: "\f197";
  1363. }
  1364. .fa-slack:before {
  1365. content: "\f198";
  1366. }
  1367. .fa-envelope-square:before {
  1368. content: "\f199";
  1369. }
  1370. .fa-wordpress:before {
  1371. content: "\f19a";
  1372. }
  1373. .fa-openid:before {
  1374. content: "\f19b";
  1375. }
  1376. .fa-institution:before,
  1377. .fa-bank:before,
  1378. .fa-university:before {
  1379. content: "\f19c";
  1380. }
  1381. .fa-mortar-board:before,
  1382. .fa-graduation-cap:before {
  1383. content: "\f19d";
  1384. }
  1385. .fa-yahoo:before {
  1386. content: "\f19e";
  1387. }
  1388. .fa-google:before {
  1389. content: "\f1a0";
  1390. }
  1391. .fa-reddit:before {
  1392. content: "\f1a1";
  1393. }
  1394. .fa-reddit-square:before {
  1395. content: "\f1a2";
  1396. }
  1397. .fa-stumbleupon-circle:before {
  1398. content: "\f1a3";
  1399. }
  1400. .fa-stumbleupon:before {
  1401. content: "\f1a4";
  1402. }
  1403. .fa-delicious:before {
  1404. content: "\f1a5";
  1405. }
  1406. .fa-digg:before {
  1407. content: "\f1a6";
  1408. }
  1409. .fa-drupal:before {
  1410. content: "\f1a9";
  1411. }
  1412. .fa-joomla:before {
  1413. content: "\f1aa";
  1414. }
  1415. .fa-language:before {
  1416. content: "\f1ab";
  1417. }
  1418. .fa-fax:before {
  1419. content: "\f1ac";
  1420. }
  1421. .fa-building:before {
  1422. content: "\f1ad";
  1423. }
  1424. .fa-child:before {
  1425. content: "\f1ae";
  1426. }
  1427. .fa-paw:before {
  1428. content: "\f1b0";
  1429. }
  1430. .fa-utensil-spoon:before,
  1431. .fa-spoon:before {
  1432. content: "\f1b1";
  1433. }
  1434. .fa-cube:before {
  1435. content: "\f1b2";
  1436. }
  1437. .fa-cubes:before {
  1438. content: "\f1b3";
  1439. }
  1440. .fa-behance:before {
  1441. content: "\f1b4";
  1442. }
  1443. .fa-behance-square:before {
  1444. content: "\f1b5";
  1445. }
  1446. .fa-steam:before {
  1447. content: "\f1b6";
  1448. }
  1449. .fa-steam-square:before {
  1450. content: "\f1b7";
  1451. }
  1452. .fa-recycle:before {
  1453. content: "\f1b8";
  1454. }
  1455. .fa-automobile:before,
  1456. .fa-car:before {
  1457. content: "\f1b9";
  1458. }
  1459. .fa-cab:before,
  1460. .fa-taxi:before {
  1461. content: "\f1ba";
  1462. }
  1463. .fa-tree:before {
  1464. content: "\f1bb";
  1465. }
  1466. .fa-spotify:before {
  1467. content: "\f1bc";
  1468. }
  1469. .fa-deviantart:before {
  1470. content: "\f1bd";
  1471. }
  1472. .fa-soundcloud:before {
  1473. content: "\f1be";
  1474. }
  1475. .fa-database:before {
  1476. content: "\f1c0";
  1477. }
  1478. .fa-file-pdf-o:before {
  1479. content: "\f1c1";
  1480. }
  1481. .fa-file-word-o:before {
  1482. content: "\f1c2";
  1483. }
  1484. .fa-file-excel-o:before {
  1485. content: "\f1c3";
  1486. }
  1487. .fa-file-powerpoint-o:before {
  1488. content: "\f1c4";
  1489. }
  1490. .fa-file-photo-o:before,
  1491. .fa-file-picture-o:before,
  1492. .fa-file-image-o:before {
  1493. content: "\f1c5";
  1494. }
  1495. .fa-file-zip-o:before,
  1496. .fa-file-archive-o:before {
  1497. content: "\f1c6";
  1498. }
  1499. .fa-file-sound-o:before,
  1500. .fa-file-audio-o:before {
  1501. content: "\f1c7";
  1502. }
  1503. .fa-file-movie-o:before,
  1504. .fa-file-video-o:before {
  1505. content: "\f1c8";
  1506. }
  1507. .fa-file-code-o:before {
  1508. content: "\f1c9";
  1509. }
  1510. .fa-vine:before {
  1511. content: "\f1ca";
  1512. }
  1513. .fa-codepen:before {
  1514. content: "\f1cb";
  1515. }
  1516. .fa-jsfiddle:before {
  1517. content: "\f1cc";
  1518. }
  1519. .fa-life-bouy:before,
  1520. .fa-life-buoy:before,
  1521. .fa-life-saver:before,
  1522. .fa-support:before,
  1523. .fa-life-ring:before {
  1524. content: "\f1cd";
  1525. }
  1526. .fa-circle-o-notch:before {
  1527. content: "\f1ce";
  1528. }
  1529. .fa-ra:before,
  1530. .fa-resistance:before,
  1531. .fa-rebel:before {
  1532. content: "\f1d0";
  1533. }
  1534. .fa-ge:before,
  1535. .fa-empire:before {
  1536. content: "\f1d1";
  1537. }
  1538. .fa-git-square:before {
  1539. content: "\f1d2";
  1540. }
  1541. .fa-git:before {
  1542. content: "\f1d3";
  1543. }
  1544. .fa-y-combinator-square:before,
  1545. .fa-yc-square:before,
  1546. .fa-hacker-news:before {
  1547. content: "\f1d4";
  1548. }
  1549. .fa-tencent-weibo:before {
  1550. content: "\f1d5";
  1551. }
  1552. .fa-qq:before {
  1553. content: "\f1d6";
  1554. }
  1555. .fa-wechat:before,
  1556. .fa-weixin:before {
  1557. content: "\f1d7";
  1558. }
  1559. .fa-send:before,
  1560. .fa-paper-plane:before {
  1561. content: "\f1d8";
  1562. }
  1563. .fa-send-o:before,
  1564. .fa-paper-plane-o:before {
  1565. content: "\f1d9";
  1566. }
  1567. .fa-history:before {
  1568. content: "\f1da";
  1569. }
  1570. .fa-circle-thin:before {
  1571. content: "\f1db";
  1572. }
  1573. .fa-heading:before,
  1574. .fa-header:before {
  1575. content: "\f1dc";
  1576. }
  1577. .fa-paragraph:before {
  1578. content: "\f1dd";
  1579. }
  1580. .fa-sliders:before {
  1581. content: "\f1de";
  1582. }
  1583. .fa-share-alt:before {
  1584. content: "\f1e0";
  1585. }
  1586. .fa-share-alt-square:before {
  1587. content: "\f1e1";
  1588. }
  1589. .fa-bomb:before {
  1590. content: "\f1e2";
  1591. }
  1592. .fa-soccer-ball-o:before,
  1593. .fa-futbol-o:before {
  1594. content: "\f1e3";
  1595. }
  1596. .fa-tty:before {
  1597. content: "\f1e4";
  1598. }
  1599. .fa-binoculars:before {
  1600. content: "\f1e5";
  1601. }
  1602. .fa-plug:before {
  1603. content: "\f1e6";
  1604. }
  1605. .fa-slideshare:before {
  1606. content: "\f1e7";
  1607. }
  1608. .fa-twitch:before {
  1609. content: "\f1e8";
  1610. }
  1611. .fa-yelp:before {
  1612. content: "\f1e9";
  1613. }
  1614. .fa-newspaper-o:before {
  1615. content: "\f1ea";
  1616. }
  1617. .fa-wifi:before {
  1618. content: "\f1eb";
  1619. }
  1620. .fa-calculator:before {
  1621. content: "\f1ec";
  1622. }
  1623. .fa-paypal:before {
  1624. content: "\f1ed";
  1625. }
  1626. .fa-google-wallet:before {
  1627. content: "\f1ee";
  1628. }
  1629. .fa-cc-visa:before {
  1630. content: "\f1f0";
  1631. }
  1632. .fa-cc-mastercard:before {
  1633. content: "\f1f1";
  1634. }
  1635. .fa-cc-discover:before {
  1636. content: "\f1f2";
  1637. }
  1638. .fa-cc-amex:before {
  1639. content: "\f1f3";
  1640. }
  1641. .fa-cc-paypal:before {
  1642. content: "\f1f4";
  1643. }
  1644. .fa-cc-stripe:before {
  1645. content: "\f1f5";
  1646. }
  1647. .fa-bell-slash:before {
  1648. content: "\f1f6";
  1649. }
  1650. .fa-bell-slash-o:before {
  1651. content: "\f1f7";
  1652. }
  1653. .fa-trash:before {
  1654. content: "\f1f8";
  1655. }
  1656. .fa-copyright:before {
  1657. content: "\f1f9";
  1658. }
  1659. .fa-at:before {
  1660. content: "\f1fa";
  1661. }
  1662. .fa-eyedropper:before {
  1663. content: "\f1fb";
  1664. }
  1665. .fa-paint-brush:before {
  1666. content: "\f1fc";
  1667. }
  1668. .fa-birthday-cake:before {
  1669. content: "\f1fd";
  1670. }
  1671. .fa-area-chart:before {
  1672. content: "\f1fe";
  1673. }
  1674. .fa-pie-chart:before {
  1675. content: "\f200";
  1676. }
  1677. .fa-line-chart:before {
  1678. content: "\f201";
  1679. }
  1680. .fa-lastfm:before {
  1681. content: "\f202";
  1682. }
  1683. .fa-lastfm-square:before {
  1684. content: "\f203";
  1685. }
  1686. .fa-toggle-off:before {
  1687. content: "\f204";
  1688. }
  1689. .fa-toggle-on:before {
  1690. content: "\f205";
  1691. }
  1692. .fa-bicycle:before {
  1693. content: "\f206";
  1694. }
  1695. .fa-bus:before {
  1696. content: "\f207";
  1697. }
  1698. .fa-ioxhost:before {
  1699. content: "\f208";
  1700. }
  1701. .fa-angellist:before {
  1702. content: "\f209";
  1703. }
  1704. .fa-closed-captioning:before,
  1705. .fa-cc:before {
  1706. content: "\f20a";
  1707. }
  1708. .fa-shekel:before,
  1709. .fa-sheqel:before,
  1710. .fa-ils:before {
  1711. content: "\f20b";
  1712. }
  1713. .fa-meanpath:before {
  1714. content: "\f20c";
  1715. }
  1716. .fa-buysellads:before {
  1717. content: "\f20d";
  1718. }
  1719. .fa-connectdevelop:before {
  1720. content: "\f20e";
  1721. }
  1722. .fa-dashcube:before {
  1723. content: "\f210";
  1724. }
  1725. .fa-forumbee:before {
  1726. content: "\f211";
  1727. }
  1728. .fa-leanpub:before {
  1729. content: "\f212";
  1730. }
  1731. .fa-sellsy:before {
  1732. content: "\f213";
  1733. }
  1734. .fa-shirtsinbulk:before {
  1735. content: "\f214";
  1736. }
  1737. .fa-simplybuilt:before {
  1738. content: "\f215";
  1739. }
  1740. .fa-skyatlas:before {
  1741. content: "\f216";
  1742. }
  1743. .fa-cart-plus:before {
  1744. content: "\f217";
  1745. }
  1746. .fa-cart-arrow-down:before {
  1747. content: "\f218";
  1748. }
  1749. .fa-gem:before,
  1750. .fa-diamond:before {
  1751. content: "\f219";
  1752. }
  1753. .fa-ship:before {
  1754. content: "\f21a";
  1755. }
  1756. .fa-user-secret:before {
  1757. content: "\f21b";
  1758. }
  1759. .fa-motorcycle:before {
  1760. content: "\f21c";
  1761. }
  1762. .fa-street-view:before {
  1763. content: "\f21d";
  1764. }
  1765. .fa-heartbeat:before {
  1766. content: "\f21e";
  1767. }
  1768. .fa-venus:before {
  1769. content: "\f221";
  1770. }
  1771. .fa-mars:before {
  1772. content: "\f222";
  1773. }
  1774. .fa-mercury:before {
  1775. content: "\f223";
  1776. }
  1777. .fa-intersex:before,
  1778. .fa-transgender:before {
  1779. content: "\f224";
  1780. }
  1781. .fa-transgender-alt:before {
  1782. content: "\f225";
  1783. }
  1784. .fa-venus-double:before {
  1785. content: "\f226";
  1786. }
  1787. .fa-mars-double:before {
  1788. content: "\f227";
  1789. }
  1790. .fa-venus-mars:before {
  1791. content: "\f228";
  1792. }
  1793. .fa-mars-stroke:before {
  1794. content: "\f229";
  1795. }
  1796. .fa-mars-stroke-v:before {
  1797. content: "\f22a";
  1798. }
  1799. .fa-mars-stroke-h:before {
  1800. content: "\f22b";
  1801. }
  1802. .fa-neuter:before {
  1803. content: "\f22c";
  1804. }
  1805. .fa-genderless:before {
  1806. content: "\f22d";
  1807. }
  1808. .fa-facebook-official:before {
  1809. content: "\f230";
  1810. }
  1811. .fa-pinterest-p:before {
  1812. content: "\f231";
  1813. }
  1814. .fa-whatsapp:before {
  1815. content: "\f232";
  1816. }
  1817. .fa-server:before {
  1818. content: "\f233";
  1819. }
  1820. .fa-user-plus:before {
  1821. content: "\f234";
  1822. }
  1823. .fa-user-times:before {
  1824. content: "\f235";
  1825. }
  1826. .fa-hotel:before,
  1827. .fa-bed:before {
  1828. content: "\f236";
  1829. }
  1830. .fa-viacoin:before {
  1831. content: "\f237";
  1832. }
  1833. .fa-train:before {
  1834. content: "\f238";
  1835. }
  1836. .fa-subway:before {
  1837. content: "\f239";
  1838. }
  1839. .fa-medium:before {
  1840. content: "\f23a";
  1841. }
  1842. .fa-medium-square:before {
  1843. content: "\f2f8";
  1844. }
  1845. .fa-yc:before,
  1846. .fa-y-combinator:before {
  1847. content: "\f23b";
  1848. }
  1849. .fa-optin-monster:before {
  1850. content: "\f23c";
  1851. }
  1852. .fa-opencart:before {
  1853. content: "\f23d";
  1854. }
  1855. .fa-expeditedssl:before {
  1856. content: "\f23e";
  1857. }
  1858. .fa-battery-4:before,
  1859. .fa-battery:before,
  1860. .fa-battery-full:before {
  1861. content: "\f240";
  1862. }
  1863. .fa-battery-3:before,
  1864. .fa-battery-three-quarters:before {
  1865. content: "\f241";
  1866. }
  1867. .fa-battery-2:before,
  1868. .fa-battery-half:before {
  1869. content: "\f242";
  1870. }
  1871. .fa-battery-1:before,
  1872. .fa-battery-quarter:before {
  1873. content: "\f243";
  1874. }
  1875. .fa-battery-0:before,
  1876. .fa-battery-empty:before {
  1877. content: "\f244";
  1878. }
  1879. .fa-mouse-pointer:before {
  1880. content: "\f245";
  1881. }
  1882. .fa-i-cursor:before {
  1883. content: "\f246";
  1884. }
  1885. .fa-object-group:before {
  1886. content: "\f247";
  1887. }
  1888. .fa-object-ungroup:before {
  1889. content: "\f248";
  1890. }
  1891. .fa-sticky-note:before {
  1892. content: "\f249";
  1893. }
  1894. .fa-sticky-note-o:before {
  1895. content: "\f24a";
  1896. }
  1897. .fa-cc-jcb:before {
  1898. content: "\f24b";
  1899. }
  1900. .fa-cc-diners-club:before {
  1901. content: "\f24c";
  1902. }
  1903. .fa-clone:before {
  1904. content: "\f24d";
  1905. }
  1906. .fa-balance-scale:before {
  1907. content: "\f24e";
  1908. }
  1909. .fa-hourglass-o:before {
  1910. content: "\f250";
  1911. }
  1912. .fa-hourglass-1:before,
  1913. .fa-hourglass-start:before {
  1914. content: "\f251";
  1915. }
  1916. .fa-hourglass-2:before,
  1917. .fa-hourglass-half:before {
  1918. content: "\f252";
  1919. }
  1920. .fa-hourglass-3:before,
  1921. .fa-hourglass-end:before {
  1922. content: "\f253";
  1923. }
  1924. .fa-hourglass:before {
  1925. content: "\f254";
  1926. }
  1927. .fa-hand-grab-o:before,
  1928. .fa-hand-rock-o:before {
  1929. content: "\f255";
  1930. }
  1931. .fa-hand-stop-o:before,
  1932. .fa-hand-paper-o:before {
  1933. content: "\f256";
  1934. }
  1935. .fa-hand-scissors-o:before {
  1936. content: "\f257";
  1937. }
  1938. .fa-hand-lizard-o:before {
  1939. content: "\f258";
  1940. }
  1941. .fa-hand-spock-o:before {
  1942. content: "\f259";
  1943. }
  1944. .fa-hand-pointer-o:before {
  1945. content: "\f25a";
  1946. }
  1947. .fa-hand-peace-o:before {
  1948. content: "\f25b";
  1949. }
  1950. .fa-trademark:before {
  1951. content: "\f25c";
  1952. }
  1953. .fa-registered:before {
  1954. content: "\f25d";
  1955. }
  1956. .fa-creative-commons:before {
  1957. content: "\f25e";
  1958. }
  1959. .fa-gg:before {
  1960. content: "\f260";
  1961. }
  1962. .fa-gg-circle:before {
  1963. content: "\f261";
  1964. }
  1965. .fa-tripadvisor:before {
  1966. content: "\f262";
  1967. }
  1968. .fa-odnoklassniki:before {
  1969. content: "\f263";
  1970. }
  1971. .fa-odnoklassniki-square:before {
  1972. content: "\f264";
  1973. }
  1974. .fa-get-pocket:before {
  1975. content: "\f265";
  1976. }
  1977. .fa-wikipedia-w:before {
  1978. content: "\f266";
  1979. }
  1980. .fa-safari:before {
  1981. content: "\f267";
  1982. }
  1983. .fa-chrome:before {
  1984. content: "\f268";
  1985. }
  1986. .fa-firefox:before {
  1987. content: "\f269";
  1988. }
  1989. .fa-opera:before {
  1990. content: "\f26a";
  1991. }
  1992. .fa-internet-explorer:before {
  1993. content: "\f26b";
  1994. }
  1995. .fa-tv:before,
  1996. .fa-television:before {
  1997. content: "\f26c";
  1998. }
  1999. .fa-contao:before {
  2000. content: "\f26d";
  2001. }
  2002. .fa-500px:before {
  2003. content: "\f26e";
  2004. }
  2005. .fa-amazon:before {
  2006. content: "\f270";
  2007. }
  2008. .fa-calendar-plus-o:before {
  2009. content: "\f271";
  2010. }
  2011. .fa-calendar-minus-o:before {
  2012. content: "\f272";
  2013. }
  2014. .fa-calendar-times-o:before {
  2015. content: "\f273";
  2016. }
  2017. .fa-calendar-check-o:before {
  2018. content: "\f274";
  2019. }
  2020. .fa-industry:before {
  2021. content: "\f275";
  2022. }
  2023. .fa-map-pin:before {
  2024. content: "\f276";
  2025. }
  2026. .fa-map-signs:before {
  2027. content: "\f277";
  2028. }
  2029. .fa-map-o:before {
  2030. content: "\f278";
  2031. }
  2032. .fa-map:before {
  2033. content: "\f279";
  2034. }
  2035. .fa-commenting:before {
  2036. content: "\f27a";
  2037. }
  2038. .fa-commenting-o:before {
  2039. content: "\f27b";
  2040. }
  2041. .fa-houzz:before {
  2042. content: "\f27c";
  2043. }
  2044. .fa-vimeo-v:before,
  2045. .fa-vimeo:before {
  2046. content: "\f27d";
  2047. }
  2048. .fa-black-tie:before {
  2049. content: "\f27e";
  2050. }
  2051. .fa-fonticons:before {
  2052. content: "\f280";
  2053. }
  2054. .fa-reddit-alien:before {
  2055. content: "\f281";
  2056. }
  2057. .fa-edge:before {
  2058. content: "\f282";
  2059. }
  2060. .fa-credit-card-alt:before {
  2061. content: "\f283";
  2062. }
  2063. .fa-codiepie:before {
  2064. content: "\f284";
  2065. }
  2066. .fa-modx:before {
  2067. content: "\f285";
  2068. }
  2069. .fa-fort-awesome:before {
  2070. content: "\f286";
  2071. }
  2072. .fa-usb:before {
  2073. content: "\f287";
  2074. }
  2075. .fa-product-hunt:before {
  2076. content: "\f288";
  2077. }
  2078. .fa-mixcloud:before {
  2079. content: "\f289";
  2080. }
  2081. .fa-scribd:before {
  2082. content: "\f28a";
  2083. }
  2084. .fa-pause-circle:before {
  2085. content: "\f28b";
  2086. }
  2087. .fa-pause-circle-o:before {
  2088. content: "\f28c";
  2089. }
  2090. .fa-stop-circle:before {
  2091. content: "\f28d";
  2092. }
  2093. .fa-stop-circle-o:before {
  2094. content: "\f28e";
  2095. }
  2096. .fa-shopping-bag:before {
  2097. content: "\f290";
  2098. }
  2099. .fa-shopping-basket:before {
  2100. content: "\f291";
  2101. }
  2102. .fa-hashtag:before {
  2103. content: "\f292";
  2104. }
  2105. .fa-bluetooth:before {
  2106. content: "\f293";
  2107. }
  2108. .fa-bluetooth-b:before {
  2109. content: "\f294";
  2110. }
  2111. .fa-percent:before {
  2112. content: "\f295";
  2113. }
  2114. .fa-gitlab:before {
  2115. content: "\f296";
  2116. }
  2117. .fa-wpbeginner:before {
  2118. content: "\f297";
  2119. }
  2120. .fa-wpforms:before {
  2121. content: "\f298";
  2122. }
  2123. .fa-envira:before {
  2124. content: "\f299";
  2125. }
  2126. .fa-universal-access:before {
  2127. content: "\f29a";
  2128. }
  2129. .fa-wheelchair-alt:before {
  2130. content: "\f29b";
  2131. }
  2132. .fa-question-circle-o:before {
  2133. content: "\f29c";
  2134. }
  2135. .fa-blind:before {
  2136. content: "\f29d";
  2137. }
  2138. .fa-audio-description:before {
  2139. content: "\f29e";
  2140. }
  2141. .fa-phone-volume:before,
  2142. .fa-volume-control-phone:before {
  2143. content: "\f2a0";
  2144. }
  2145. .fa-braille:before {
  2146. content: "\f2a1";
  2147. }
  2148. .fa-assistive-listening-systems:before {
  2149. content: "\f2a2";
  2150. }
  2151. .fa-asl-interpreting:before,
  2152. .fa-american-sign-language-interpreting:before {
  2153. content: "\f2a3";
  2154. }
  2155. .fa-deafness:before,
  2156. .fa-hard-of-hearing:before,
  2157. .fa-deaf:before {
  2158. content: "\f2a4";
  2159. }
  2160. .fa-glide:before {
  2161. content: "\f2a5";
  2162. }
  2163. .fa-glide-g:before {
  2164. content: "\f2a6";
  2165. }
  2166. .fa-signing:before,
  2167. .fa-sign-language:before {
  2168. content: "\f2a7";
  2169. }
  2170. .fa-low-vision:before {
  2171. content: "\f2a8";
  2172. }
  2173. .fa-viadeo:before {
  2174. content: "\f2a9";
  2175. }
  2176. .fa-viadeo-square:before {
  2177. content: "\f2aa";
  2178. }
  2179. .fa-snapchat:before {
  2180. content: "\f2ab";
  2181. }
  2182. .fa-snapchat-ghost:before {
  2183. content: "\f2ac";
  2184. }
  2185. .fa-snapchat-square:before {
  2186. content: "\f2ad";
  2187. }
  2188. .fa-first-order:before {
  2189. content: "\f2b0";
  2190. }
  2191. .fa-yoast:before {
  2192. content: "\f2b1";
  2193. }
  2194. .fa-themeisle:before {
  2195. content: "\f2b2";
  2196. }
  2197. .fa-google-plus-circle:before,
  2198. .fa-google-plus-official:before {
  2199. content: "\f2b3";
  2200. }
  2201. .fa-fa:before,
  2202. .fa-font-awesome:before {
  2203. content: "\f2b4";
  2204. }
  2205. .fa-handshake-o:before {
  2206. content: "\f2b5";
  2207. }
  2208. .fa-envelope-open:before {
  2209. content: "\f2b6";
  2210. }
  2211. .fa-envelope-open-o:before {
  2212. content: "\f2b7";
  2213. }
  2214. .fa-linode:before {
  2215. content: "\f2b8";
  2216. }
  2217. .fa-address-book:before {
  2218. content: "\f2b9";
  2219. }
  2220. .fa-address-book-o:before {
  2221. content: "\f2ba";
  2222. }
  2223. .fa-vcard:before,
  2224. .fa-address-card:before {
  2225. content: "\f2bb";
  2226. }
  2227. .fa-vcard-o:before,
  2228. .fa-address-card-o:before {
  2229. content: "\f2bc";
  2230. }
  2231. .fa-user-circle:before {
  2232. content: "\f2bd";
  2233. }
  2234. .fa-user-circle-o:before {
  2235. content: "\f2be";
  2236. }
  2237. .fa-user-o:before {
  2238. content: "\f2c0";
  2239. }
  2240. .fa-id-badge:before {
  2241. content: "\f2c1";
  2242. }
  2243. .fa-drivers-license:before,
  2244. .fa-id-card:before {
  2245. content: "\f2c2";
  2246. }
  2247. .fa-drivers-license-o:before,
  2248. .fa-id-card-o:before {
  2249. content: "\f2c3";
  2250. }
  2251. .fa-quora:before {
  2252. content: "\f2c4";
  2253. }
  2254. .fa-free-code-camp:before {
  2255. content: "\f2c5";
  2256. }
  2257. .fa-telegram:before {
  2258. content: "\f2c6";
  2259. }
  2260. .fa-thermometer-4:before,
  2261. .fa-thermometer:before,
  2262. .fa-thermometer-full:before {
  2263. content: "\f2c7";
  2264. }
  2265. .fa-thermometer-3:before,
  2266. .fa-thermometer-three-quarters:before {
  2267. content: "\f2c8";
  2268. }
  2269. .fa-thermometer-2:before,
  2270. .fa-thermometer-half:before {
  2271. content: "\f2c9";
  2272. }
  2273. .fa-thermometer-1:before,
  2274. .fa-thermometer-quarter:before {
  2275. content: "\f2ca";
  2276. }
  2277. .fa-thermometer-0:before,
  2278. .fa-thermometer-empty:before {
  2279. content: "\f2cb";
  2280. }
  2281. .fa-shower:before {
  2282. content: "\f2cc";
  2283. }
  2284. .fa-bathtub:before,
  2285. .fa-s15:before,
  2286. .fa-bath:before {
  2287. content: "\f2cd";
  2288. }
  2289. .fa-podcast:before {
  2290. content: "\f2ce";
  2291. }
  2292. .fa-window-maximize:before {
  2293. content: "\f2d0";
  2294. }
  2295. .fa-window-minimize:before {
  2296. content: "\f2d1";
  2297. }
  2298. .fa-window-restore:before {
  2299. content: "\f2d2";
  2300. }
  2301. .fa-times-rectangle:before,
  2302. .fa-window-close:before {
  2303. content: "\f2d3";
  2304. }
  2305. .fa-times-rectangle-o:before,
  2306. .fa-window-close-o:before {
  2307. content: "\f2d4";
  2308. }
  2309. .fa-bandcamp:before {
  2310. content: "\f2d5";
  2311. }
  2312. .fa-grav:before {
  2313. content: "\f2d6";
  2314. }
  2315. .fa-etsy:before {
  2316. content: "\f2d7";
  2317. }
  2318. .fa-imdb:before {
  2319. content: "\f2d8";
  2320. }
  2321. .fa-ravelry:before {
  2322. content: "\f2d9";
  2323. }
  2324. .fa-eercast:before {
  2325. content: "\f2da";
  2326. }
  2327. .fa-microchip:before {
  2328. content: "\f2db";
  2329. }
  2330. .fa-snowflake-o:before {
  2331. content: "\f2dc";
  2332. }
  2333. .fa-superpowers:before {
  2334. content: "\f2dd";
  2335. }
  2336. .fa-wpexplorer:before {
  2337. content: "\f2de";
  2338. }
  2339. .fa-meetup:before {
  2340. content: "\f2e0";
  2341. }
  2342. .fa-mastodon:before {
  2343. content: "\f2e1";
  2344. }
  2345. .fa-mastodon-alt:before {
  2346. content: "\f2e2";
  2347. }
  2348. .fa-fork-circle:before,
  2349. .fa-fork-awesome:before {
  2350. content: "\f2e3";
  2351. }
  2352. .fa-peertube:before {
  2353. content: "\f2e4";
  2354. }
  2355. .fa-diaspora:before {
  2356. content: "\f2e5";
  2357. }
  2358. .fa-friendica:before {
  2359. content: "\f2e6";
  2360. }
  2361. .fa-gnu-social:before {
  2362. content: "\f2e7";
  2363. }
  2364. .fa-liberapay-square:before {
  2365. content: "\f2e8";
  2366. }
  2367. .fa-liberapay:before {
  2368. content: "\f2e9";
  2369. }
  2370. .fa-ssb:before,
  2371. .fa-scuttlebutt:before {
  2372. content: "\f2ea";
  2373. }
  2374. .fa-hubzilla:before {
  2375. content: "\f2eb";
  2376. }
  2377. .fa-social-home:before {
  2378. content: "\f2ec";
  2379. }
  2380. .fa-artstation:before {
  2381. content: "\f2ed";
  2382. }
  2383. .fa-discord:before {
  2384. content: "\f2ee";
  2385. }
  2386. .fa-discord-alt:before {
  2387. content: "\f2ef";
  2388. }
  2389. .fa-patreon:before {
  2390. content: "\f2f0";
  2391. }
  2392. .fa-snowdrift:before {
  2393. content: "\f2f1";
  2394. }
  2395. .fa-activitypub:before {
  2396. content: "\f2f2";
  2397. }
  2398. .fa-ethereum:before {
  2399. content: "\f2f3";
  2400. }
  2401. .fa-keybase:before {
  2402. content: "\f2f4";
  2403. }
  2404. .fa-shaarli:before {
  2405. content: "\f2f5";
  2406. }
  2407. .fa-shaarli-o:before {
  2408. content: "\f2f6";
  2409. }
  2410. .fa-cut-key:before,
  2411. .fa-key-modern:before {
  2412. content: "\f2f7";
  2413. }
  2414. .fa-xmpp:before {
  2415. content: "\f2f9";
  2416. }
  2417. .fa-archive-org:before {
  2418. content: "\f2fc";
  2419. }
  2420. .fa-freedombox:before {
  2421. content: "\f2fd";
  2422. }
  2423. .fa-facebook-messenger:before {
  2424. content: "\f2fe";
  2425. }
  2426. .fa-debian:before {
  2427. content: "\f2ff";
  2428. }
  2429. .fa-mastodon-square:before {
  2430. content: "\f300";
  2431. }
  2432. .fa-tipeee:before {
  2433. content: "\f301";
  2434. }
  2435. .fa-react:before {
  2436. content: "\f302";
  2437. }
  2438. .fa-dogmazic:before {
  2439. content: "\f303";
  2440. }
  2441. .fa-zotero:before {
  2442. content: "\f309";
  2443. }
  2444. .fa-nodejs:before {
  2445. content: "\f308";
  2446. }
  2447. .fa-nextcloud:before {
  2448. content: "\f306";
  2449. }
  2450. .fa-nextcloud-square:before {
  2451. content: "\f307";
  2452. }
  2453. .fa-hackaday:before {
  2454. content: "\f30a";
  2455. }
  2456. .fa-laravel:before {
  2457. content: "\f30b";
  2458. }
  2459. .fa-signalapp:before {
  2460. content: "\f30c";
  2461. }
  2462. .fa-gnupg:before {
  2463. content: "\f30d";
  2464. }
  2465. .fa-php:before {
  2466. content: "\f30e";
  2467. }
  2468. .fa-ffmpeg:before {
  2469. content: "\f30f";
  2470. }
  2471. .fa-joplin:before {
  2472. content: "\f310";
  2473. }
  2474. .fa-syncthing:before {
  2475. content: "\f311";
  2476. }
  2477. .fa-inkscape:before {
  2478. content: "\f312";
  2479. }
  2480. .fa-matrix-org:before {
  2481. content: "\f313";
  2482. }
  2483. .fa-pixelfed:before {
  2484. content: "\f314";
  2485. }
  2486. .fa-bootstrap:before {
  2487. content: "\f315";
  2488. }
  2489. .fa-dev-to:before {
  2490. content: "\f316";
  2491. }
  2492. .fa-hashnode:before {
  2493. content: "\f317";
  2494. }
  2495. .fa-jirafeau:before {
  2496. content: "\f318";
  2497. }
  2498. .fa-emby:before {
  2499. content: "\f319";
  2500. }
  2501. .fa-wikidata:before {
  2502. content: "\f31a";
  2503. }
  2504. .fa-gimp:before {
  2505. content: "\f31b";
  2506. }
  2507. .fa-c:before {
  2508. content: "\f31c";
  2509. }
  2510. .fa-digitalocean:before {
  2511. content: "\f31d";
  2512. }
  2513. .fa-att:before {
  2514. content: "\f31e";
  2515. }
  2516. .fa-gitea:before {
  2517. content: "\f31f";
  2518. }
  2519. .fa-file-epub:before {
  2520. content: "\f321";
  2521. }
  2522. .fa-python:before {
  2523. content: "\f322";
  2524. }
  2525. .fa-archlinux:before {
  2526. content: "\f323";
  2527. }
  2528. .fa-pleroma:before {
  2529. content: "\f324";
  2530. }
  2531. .fa-unsplash:before {
  2532. content: "\f325";
  2533. }
  2534. .fa-hackster:before {
  2535. content: "\f326";
  2536. }
  2537. .fa-spell-check:before {
  2538. content: "\f327";
  2539. }
  2540. .fa-moon:before {
  2541. content: "\f328";
  2542. }
  2543. .fa-sun:before {
  2544. content: "\f329";
  2545. }
  2546. .fa-f-droid:before {
  2547. content: "\f32a";
  2548. }
  2549. .fa-biometric:before {
  2550. content: "\f32b";
  2551. }
  2552. .fa-wire:before {
  2553. content: "\f32c";
  2554. }
  2555. .fa-tor-onion:before {
  2556. content: "\f32e";
  2557. }
  2558. .fa-volume-mute:before {
  2559. content: "\f32f";
  2560. }
  2561. .fa-bell-ringing:before {
  2562. content: "\f32d";
  2563. }
  2564. .fa-bell-ringing-o:before {
  2565. content: "\f330";
  2566. }
  2567. .fa-hal:before {
  2568. content: "\f333";
  2569. }
  2570. .fa-jupyter:before {
  2571. content: "\f335";
  2572. }
  2573. .fa-julia:before {
  2574. content: "\f334";
  2575. }
  2576. .fa-classicpress:before {
  2577. content: "\f331";
  2578. }
  2579. .fa-classicpress-circle:before {
  2580. content: "\f332";
  2581. }
  2582. .fa-open-collective:before {
  2583. content: "\f336";
  2584. }
  2585. .fa-orcid:before {
  2586. content: "\f337";
  2587. }
  2588. .fa-researchgate:before {
  2589. content: "\f338";
  2590. }
  2591. .fa-funkwhale:before {
  2592. content: "\f339";
  2593. }
  2594. .fa-askfm:before {
  2595. content: "\f33a";
  2596. }
  2597. .fa-blockstack:before {
  2598. content: "\f33b";
  2599. }
  2600. .fa-boardgamegeek:before {
  2601. content: "\f33c";
  2602. }
  2603. .fa-bunny:before {
  2604. content: "\f35f";
  2605. }
  2606. .fa-buymeacoffee:before {
  2607. content: "\f33d";
  2608. }
  2609. .fa-cc-by:before {
  2610. content: "\f33e";
  2611. }
  2612. .fa-creative-commons-alt:before,
  2613. .fa-cc-cc:before {
  2614. content: "\f33f";
  2615. }
  2616. .fa-cc-nc-eu:before {
  2617. content: "\f341";
  2618. }
  2619. .fa-cc-nc-jp:before {
  2620. content: "\f342";
  2621. }
  2622. .fa-cc-nc:before {
  2623. content: "\f340";
  2624. }
  2625. .fa-cc-nd:before {
  2626. content: "\f343";
  2627. }
  2628. .fa-cc-pd:before {
  2629. content: "\f344";
  2630. }
  2631. .fa-cc-remix:before {
  2632. content: "\f345";
  2633. }
  2634. .fa-cc-sa:before {
  2635. content: "\f346";
  2636. }
  2637. .fa-cc-share:before {
  2638. content: "\f347";
  2639. }
  2640. .fa-cc-zero:before {
  2641. content: "\f348";
  2642. }
  2643. .fa-conway-hacker:before,
  2644. .fa-conway-glider:before {
  2645. content: "\f349";
  2646. }
  2647. .fa-csharp:before {
  2648. content: "\f34a";
  2649. }
  2650. .fa-email-bulk:before {
  2651. content: "\f34b";
  2652. }
  2653. .fa-email-bulk-o:before {
  2654. content: "\f34c";
  2655. }
  2656. .fa-gnu:before {
  2657. content: "\f34d";
  2658. }
  2659. .fa-google-play:before {
  2660. content: "\f34e";
  2661. }
  2662. .fa-heroku:before {
  2663. content: "\f34f";
  2664. }
  2665. .fa-hassio:before,
  2666. .fa-home-assistant:before {
  2667. content: "\f350";
  2668. }
  2669. .fa-java:before {
  2670. content: "\f351";
  2671. }
  2672. .fa-mariadb:before {
  2673. content: "\f352";
  2674. }
  2675. .fa-markdown:before {
  2676. content: "\f353";
  2677. }
  2678. .fa-mysql:before {
  2679. content: "\f354";
  2680. }
  2681. .fa-nordcast:before {
  2682. content: "\f355";
  2683. }
  2684. .fa-plume:before {
  2685. content: "\f356";
  2686. }
  2687. .fa-postgresql:before {
  2688. content: "\f357";
  2689. }
  2690. .fa-sass-alt:before {
  2691. content: "\f359";
  2692. }
  2693. .fa-sass:before {
  2694. content: "\f358";
  2695. }
  2696. .fa-skate:before {
  2697. content: "\f35a";
  2698. }
  2699. .fa-sketchfab:before {
  2700. content: "\f35b";
  2701. }
  2702. .fa-tex:before {
  2703. content: "\f35c";
  2704. }
  2705. .fa-textpattern:before {
  2706. content: "\f35d";
  2707. }
  2708. .fa-unity:before {
  2709. content: "\f35e";
  2710. }
  2711. .sr-only {
  2712. position: absolute;
  2713. width: 1px;
  2714. height: 1px;
  2715. padding: 0;
  2716. margin: -1px;
  2717. overflow: hidden;
  2718. clip: rect(0, 0, 0, 0);
  2719. border: 0;
  2720. }
  2721. .sr-only-focusable:active,
  2722. .sr-only-focusable:focus {
  2723. position: static;
  2724. width: auto;
  2725. height: auto;
  2726. margin: 0;
  2727. overflow: visible;
  2728. clip: auto;
  2729. }