font-awesome-all.css 81 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577
  1. .fa-spin {
  2. animation: fa-spin 2s infinite linear
  3. }
  4. .fa-pulse {
  5. animation: fa-spin 1s infinite steps(8)
  6. }
  7. @keyframes fa-spin {
  8. 0% {
  9. transform: rotate(0deg)
  10. }
  11. 100% {
  12. transform: rotate(360deg)
  13. }
  14. }
  15. .fa-border {
  16. border: solid 0.08em #eee;
  17. border-radius: 0.1em;
  18. padding: 0.2em 0.25em 0.15em
  19. }
  20. .fa-pull-left {
  21. float: left
  22. }
  23. .fa-pull-right {
  24. float: right
  25. }
  26. .fa.fa-pull-left, .fas.fa-pull-left, .far.fa-pull-left, .fal.fa-pull-left, .fab.fa-pull-left {
  27. margin-right: 0.3em
  28. }
  29. .fa.fa-pull-right, .fas.fa-pull-right, .far.fa-pull-right, .fal.fa-pull-right, .fab.fa-pull-right {
  30. margin-left: 0.3em
  31. }
  32. .fa, .fas, .far, .fal, .fab {
  33. -moz-osx-font-smoothing: grayscale;
  34. -webkit-font-smoothing: antialiased;
  35. display: inline-block;
  36. font-style: normal;
  37. font-variant: normal;
  38. text-rendering: auto;
  39. line-height: 1
  40. }
  41. .fa-fw {
  42. text-align: center;
  43. width: 1.25em
  44. }
  45. .fa-500px:before {
  46. content: '\f26e' !important
  47. }
  48. .fa-accessible-icon:before {
  49. content: '\f368' !important
  50. }
  51. .fa-accusoft:before {
  52. content: '\f369' !important
  53. }
  54. .fa-acquisitions-incorporated:before {
  55. content: '\f6af' !important
  56. }
  57. .fa-ad:before {
  58. content: '\f641' !important
  59. }
  60. .fa-address-book:before {
  61. content: '\f2b9' !important
  62. }
  63. .fa-address-card:before {
  64. content: '\f2bb' !important
  65. }
  66. .fa-adjust:before {
  67. content: '\f042' !important
  68. }
  69. .fa-adn:before {
  70. content: '\f170' !important
  71. }
  72. .fa-adobe:before {
  73. content: '\f778' !important
  74. }
  75. .fa-adversal:before {
  76. content: '\f36a' !important
  77. }
  78. .fa-affiliatetheme:before {
  79. content: '\f36b' !important
  80. }
  81. .fa-air-freshener:before {
  82. content: '\f5d0' !important
  83. }
  84. .fa-algolia:before {
  85. content: '\f36c' !important
  86. }
  87. .fa-align-center:before {
  88. content: '\f037' !important
  89. }
  90. .fa-align-justify:before {
  91. content: '\f039' !important
  92. }
  93. .fa-align-left:before {
  94. content: '\f036' !important
  95. }
  96. .fa-align-right:before {
  97. content: '\f038' !important
  98. }
  99. .fa-alipay:before {
  100. content: '\f642' !important
  101. }
  102. .fa-allergies:before {
  103. content: '\f461' !important
  104. }
  105. .fa-amazon:before {
  106. content: '\f270' !important
  107. }
  108. .fa-amazon-pay:before {
  109. content: '\f42c' !important
  110. }
  111. .fa-ambulance:before {
  112. content: '\f0f9' !important
  113. }
  114. .fa-american-sign-language-interpreting:before {
  115. content: '\f2a3' !important
  116. }
  117. .fa-amilia:before {
  118. content: '\f36d' !important
  119. }
  120. .fa-anchor:before {
  121. content: '\f13d' !important
  122. }
  123. .fa-android:before {
  124. content: '\f17b' !important
  125. }
  126. .fa-angellist:before {
  127. content: '\f209' !important
  128. }
  129. .fa-angle-double-down:before {
  130. content: '\f103' !important
  131. }
  132. .fa-angle-double-left:before {
  133. content: '\f100' !important
  134. }
  135. .fa-angle-double-right:before {
  136. content: '\f101' !important
  137. }
  138. .fa-angle-double-up:before {
  139. content: '\f102' !important
  140. }
  141. .fa-angle-down:before {
  142. content: '\f107' !important
  143. }
  144. .fa-angle-left:before {
  145. content: '\f104' !important
  146. }
  147. .fa-angle-right:before {
  148. content: '\f105' !important
  149. }
  150. .fa-angle-up:before {
  151. content: '\f106' !important
  152. }
  153. .fa-angry:before {
  154. content: '\f556' !important
  155. }
  156. .fa-angrycreative:before {
  157. content: '\f36e' !important
  158. }
  159. .fa-angular:before {
  160. content: '\f420' !important
  161. }
  162. .fa-ankh:before {
  163. content: '\f644' !important
  164. }
  165. .fa-app-store:before {
  166. content: '\f36f' !important
  167. }
  168. .fa-app-store-ios:before {
  169. content: '\f370' !important
  170. }
  171. .fa-apper:before {
  172. content: '\f371' !important
  173. }
  174. .fa-apple:before {
  175. content: '\f179' !important
  176. }
  177. .fa-apple-alt:before {
  178. content: '\f5d1' !important
  179. }
  180. .fa-apple-pay:before {
  181. content: '\f415' !important
  182. }
  183. .fa-archive:before {
  184. content: '\f187' !important
  185. }
  186. .fa-archway:before {
  187. content: '\f557' !important
  188. }
  189. .fa-arrow-alt-circle-down:before {
  190. content: '\f358' !important
  191. }
  192. .fa-arrow-alt-circle-left:before {
  193. content: '\f359' !important
  194. }
  195. .fa-arrow-alt-circle-right:before {
  196. content: '\f35a' !important
  197. }
  198. .fa-arrow-alt-circle-up:before {
  199. content: '\f35b' !important
  200. }
  201. .fa-arrow-circle-down:before {
  202. content: '\f0ab' !important
  203. }
  204. .fa-arrow-circle-left:before {
  205. content: '\f0a8' !important
  206. }
  207. .fa-arrow-circle-right:before {
  208. content: '\f0a9' !important
  209. }
  210. .fa-arrow-circle-up:before {
  211. content: '\f0aa' !important
  212. }
  213. .fa-arrow-down:before {
  214. content: '\f063' !important
  215. }
  216. .fa-arrow-left:before {
  217. content: '\f060' !important
  218. }
  219. .fa-arrow-right:before {
  220. content: '\f061' !important
  221. }
  222. .fa-arrow-up:before {
  223. content: '\f062' !important
  224. }
  225. .fa-arrows-alt:before {
  226. content: '\f31e' !important
  227. }
  228. .fa-arrows-alt-h:before {
  229. content: '\f337' !important
  230. }
  231. .fa-arrows-alt-v:before {
  232. content: '\f338' !important
  233. }
  234. .fa-artstation:before {
  235. content: '\f77a' !important
  236. }
  237. .fa-assistive-listening-systems:before {
  238. content: '\f2a2' !important
  239. }
  240. .fa-asterisk:before {
  241. content: '\f069' !important
  242. }
  243. .fa-asymmetrik:before {
  244. content: '\f372' !important
  245. }
  246. .fa-at:before {
  247. content: '\f1fa' !important
  248. }
  249. .fa-atlas:before {
  250. content: '\f558' !important
  251. }
  252. .fa-atlassian:before {
  253. content: '\f77b' !important
  254. }
  255. .fa-atom:before {
  256. content: '\f5d2' !important
  257. }
  258. .fa-audible:before {
  259. content: '\f373' !important
  260. }
  261. .fa-audio-description:before {
  262. content: '\f29e' !important
  263. }
  264. .fa-autoprefixer:before {
  265. content: '\f41c' !important
  266. }
  267. .fa-avianex:before {
  268. content: '\f374' !important
  269. }
  270. .fa-aviato:before {
  271. content: '\f421' !important
  272. }
  273. .fa-award:before {
  274. content: '\f559' !important
  275. }
  276. .fa-aws:before {
  277. content: '\f375' !important
  278. }
  279. .fa-baby:before {
  280. content: '\f77c' !important
  281. }
  282. .fa-baby-carriage:before {
  283. content: '\f77d' !important
  284. }
  285. .fa-backspace:before {
  286. content: '\f55a' !important
  287. }
  288. .fa-backward:before {
  289. content: '\f04a' !important
  290. }
  291. .fa-balance-scale:before {
  292. content: '\f24e' !important
  293. }
  294. .fa-ban:before {
  295. content: '\f05e' !important
  296. }
  297. .fa-band-aid:before {
  298. content: '\f462' !important
  299. }
  300. .fa-bandcamp:before {
  301. content: '\f2d5' !important
  302. }
  303. .fa-barcode:before {
  304. content: '\f02a' !important
  305. }
  306. .fa-bars:before {
  307. content: '\f0c9' !important
  308. }
  309. .fa-baseball-ball:before {
  310. content: '\f433' !important
  311. }
  312. .fa-basketball-ball:before {
  313. content: '\f434' !important
  314. }
  315. .fa-bath:before {
  316. content: '\f2cd' !important
  317. }
  318. .fa-battery-empty:before {
  319. content: '\f244' !important
  320. }
  321. .fa-battery-full:before {
  322. content: '\f240' !important
  323. }
  324. .fa-battery-half:before {
  325. content: '\f242' !important
  326. }
  327. .fa-battery-quarter:before {
  328. content: '\f243' !important
  329. }
  330. .fa-battery-three-quarters:before {
  331. content: '\f241' !important
  332. }
  333. .fa-bed:before {
  334. content: '\f236' !important
  335. }
  336. .fa-beer:before {
  337. content: '\f0fc' !important
  338. }
  339. .fa-behance:before {
  340. content: '\f1b4' !important
  341. }
  342. .fa-behance-square:before {
  343. content: '\f1b5' !important
  344. }
  345. .fa-bell:before {
  346. content: '\f0f3' !important
  347. }
  348. .fa-bell-slash:before {
  349. content: '\f1f6' !important
  350. }
  351. .fa-bezier-curve:before {
  352. content: '\f55b' !important
  353. }
  354. .fa-bible:before {
  355. content: '\f647' !important
  356. }
  357. .fa-bicycle:before {
  358. content: '\f206' !important
  359. }
  360. .fa-bimobject:before {
  361. content: '\f378' !important
  362. }
  363. .fa-binoculars:before {
  364. content: '\f1e5' !important
  365. }
  366. .fa-biohazard:before {
  367. content: '\f780' !important
  368. }
  369. .fa-birthday-cake:before {
  370. content: '\f1fd' !important
  371. }
  372. .fa-bitbucket:before {
  373. content: '\f171' !important
  374. }
  375. .fa-bitcoin:before {
  376. content: '\f15a' !important
  377. }
  378. .fa-bity:before {
  379. content: '\f37a' !important
  380. }
  381. .fa-black-tie:before {
  382. content: '\f27e' !important
  383. }
  384. .fa-blackberry:before {
  385. content: '\f37b' !important
  386. }
  387. .fa-blender:before {
  388. content: '\f517' !important
  389. }
  390. .fa-blender-phone:before {
  391. content: '\f6b6' !important
  392. }
  393. .fa-blind:before {
  394. content: '\f29d' !important
  395. }
  396. .fa-blog:before {
  397. content: '\f781' !important
  398. }
  399. .fa-blogger:before {
  400. content: '\f37c' !important
  401. }
  402. .fa-blogger-b:before {
  403. content: '\f37d' !important
  404. }
  405. .fa-bluetooth:before {
  406. content: '\f293' !important
  407. }
  408. .fa-bluetooth-b:before {
  409. content: '\f294' !important
  410. }
  411. .fa-bold:before {
  412. content: '\f032' !important
  413. }
  414. .fa-bolt:before {
  415. content: '\f0e7' !important
  416. }
  417. .fa-bomb:before {
  418. content: '\f1e2' !important
  419. }
  420. .fa-bone:before {
  421. content: '\f5d7' !important
  422. }
  423. .fa-bong:before {
  424. content: '\f55c' !important
  425. }
  426. .fa-book:before {
  427. content: '\f02d' !important
  428. }
  429. .fa-book-dead:before {
  430. content: '\f6b7' !important
  431. }
  432. .fa-book-open:before {
  433. content: '\f518' !important
  434. }
  435. .fa-book-reader:before {
  436. content: '\f5da' !important
  437. }
  438. .fa-bookmark:before {
  439. content: '\f02e' !important
  440. }
  441. .fa-bowling-ball:before {
  442. content: '\f436' !important
  443. }
  444. .fa-box:before {
  445. content: '\f466' !important
  446. }
  447. .fa-box-open:before {
  448. content: '\f49e' !important
  449. }
  450. .fa-boxes:before {
  451. content: '\f468' !important
  452. }
  453. .fa-braille:before {
  454. content: '\f2a1' !important
  455. }
  456. .fa-brain:before {
  457. content: '\f5dc' !important
  458. }
  459. .fa-briefcase:before {
  460. content: '\f0b1' !important
  461. }
  462. .fa-briefcase-medical:before {
  463. content: '\f469' !important
  464. }
  465. .fa-broadcast-tower:before {
  466. content: '\f519' !important
  467. }
  468. .fa-broom:before {
  469. content: '\f51a' !important
  470. }
  471. .fa-brush:before {
  472. content: '\f55d' !important
  473. }
  474. .fa-btc:before {
  475. content: '\f15a' !important
  476. }
  477. .fa-bug:before {
  478. content: '\f188' !important
  479. }
  480. .fa-building:before {
  481. content: '\f1ad' !important
  482. }
  483. .fa-bullhorn:before {
  484. content: '\f0a1' !important
  485. }
  486. .fa-bullseye:before {
  487. content: '\f140' !important
  488. }
  489. .fa-burn:before {
  490. content: '\f46a' !important
  491. }
  492. .fa-buromobelexperte:before {
  493. content: '\f37f' !important
  494. }
  495. .fa-bus:before {
  496. content: '\f207' !important
  497. }
  498. .fa-bus-alt:before {
  499. content: '\f55e' !important
  500. }
  501. .fa-business-time:before {
  502. content: '\f64a' !important
  503. }
  504. .fa-buysellads:before {
  505. content: '\f20d' !important
  506. }
  507. .fa-calculator:before {
  508. content: '\f1ec' !important
  509. }
  510. .fa-calendar:before {
  511. content: '\f073' !important
  512. }
  513. .fa-calendar-alt:before {
  514. content: '\f073' !important
  515. }
  516. .fa-calendar-check:before {
  517. content: '\f274' !important
  518. }
  519. .fa-calendar-day:before {
  520. content: '\f783' !important
  521. }
  522. .fa-calendar-minus:before {
  523. content: '\f272' !important
  524. }
  525. .fa-calendar-plus:before {
  526. content: '\f271' !important
  527. }
  528. .fa-calendar-times:before {
  529. content: '\f273' !important
  530. }
  531. .fa-calendar-week:before {
  532. content: '\f784' !important
  533. }
  534. .fa-camera:before {
  535. content: '\f030' !important
  536. }
  537. .fa-camera-retro:before {
  538. content: '\f083' !important
  539. }
  540. .fa-campground:before {
  541. content: '\f6bb' !important
  542. }
  543. .fa-canadian-maple-leaf:before {
  544. content: '\f785' !important
  545. }
  546. .fa-candy-cane:before {
  547. content: '\f786' !important
  548. }
  549. .fa-cannabis:before {
  550. content: '\f55f' !important
  551. }
  552. .fa-capsules:before {
  553. content: '\f46b' !important
  554. }
  555. .fa-car:before {
  556. content: '\f1b9' !important
  557. }
  558. .fa-car-alt:before {
  559. content: '\f5de' !important
  560. }
  561. .fa-car-battery:before {
  562. content: '\f5df' !important
  563. }
  564. .fa-car-crash:before {
  565. content: '\f5e1' !important
  566. }
  567. .fa-car-side:before {
  568. content: '\f5e4' !important
  569. }
  570. .fa-caret-down:before {
  571. content: '\f0d7' !important
  572. }
  573. .fa-caret-left:before {
  574. content: '\f0d9' !important
  575. }
  576. .fa-caret-right:before {
  577. content: '\f0da' !important
  578. }
  579. .fa-caret-square-down:before {
  580. content: '\f150' !important
  581. }
  582. .fa-caret-square-left:before {
  583. content: '\f191' !important
  584. }
  585. .fa-caret-square-right:before {
  586. content: '\f152' !important
  587. }
  588. .fa-caret-square-up:before {
  589. content: '\f151' !important
  590. }
  591. .fa-caret-up:before {
  592. content: '\f0d8' !important
  593. }
  594. .fa-carrot:before {
  595. content: '\f787' !important
  596. }
  597. .fa-cart-arrow-down:before {
  598. content: '\f218' !important
  599. }
  600. .fa-cart-plus:before {
  601. content: '\f217' !important
  602. }
  603. .fa-cash-register:before {
  604. content: '\f788' !important
  605. }
  606. .fa-cat:before {
  607. content: '\f6be' !important
  608. }
  609. .fa-cc-amazon-pay:before {
  610. content: '\f42d' !important
  611. }
  612. .fa-cc-amex:before {
  613. content: '\f1f3' !important
  614. }
  615. .fa-cc-apple-pay:before {
  616. content: '\f416' !important
  617. }
  618. .fa-cc-diners-club:before {
  619. content: '\f24c' !important
  620. }
  621. .fa-cc-discover:before {
  622. content: '\f1f2' !important
  623. }
  624. .fa-cc-jcb:before {
  625. content: '\f24b' !important
  626. }
  627. .fa-cc-mastercard:before {
  628. content: '\f1f1' !important
  629. }
  630. .fa-cc-paypal:before {
  631. content: '\f1f4' !important
  632. }
  633. .fa-cc-stripe:before {
  634. content: '\f1f5' !important
  635. }
  636. .fa-cc-visa:before {
  637. content: '\f1f0' !important
  638. }
  639. .fa-centercode:before {
  640. content: '\f380' !important
  641. }
  642. .fa-centos:before {
  643. content: '\f789' !important
  644. }
  645. .fa-certificate:before {
  646. content: '\f0a3' !important
  647. }
  648. .fa-chair:before {
  649. content: '\f6c0' !important
  650. }
  651. .fa-chalkboard:before {
  652. content: '\f51b' !important
  653. }
  654. .fa-chalkboard-teacher:before {
  655. content: '\f51c' !important
  656. }
  657. .fa-charging-station:before {
  658. content: '\f5e7' !important
  659. }
  660. .fa-chart-area:before {
  661. content: '\f1fe' !important
  662. }
  663. .fa-chart-bar:before {
  664. content: '\f080' !important
  665. }
  666. .fa-chart-line:before {
  667. content: '\f201' !important
  668. }
  669. .fa-chart-pie:before {
  670. content: '\f200' !important
  671. }
  672. .fa-check:before {
  673. content: '\f00c' !important
  674. }
  675. .fa-check-circle:before {
  676. content: '\f058' !important
  677. }
  678. .fa-check-double:before {
  679. content: '\f560' !important
  680. }
  681. .fa-check-square:before {
  682. content: '\f14a' !important
  683. }
  684. .fa-chess:before {
  685. content: '\f439' !important
  686. }
  687. .fa-chess-bishop:before {
  688. content: '\f43a' !important
  689. }
  690. .fa-chess-board:before {
  691. content: '\f43c' !important
  692. }
  693. .fa-chess-king:before {
  694. content: '\f43f' !important
  695. }
  696. .fa-chess-knight:before {
  697. content: '\f441' !important
  698. }
  699. .fa-chess-pawn:before {
  700. content: '\f443' !important
  701. }
  702. .fa-chess-queen:before {
  703. content: '\f445' !important
  704. }
  705. .fa-chess-rook:before {
  706. content: '\f447' !important
  707. }
  708. .fa-chevron-circle-down:before {
  709. content: '\f13a' !important
  710. }
  711. .fa-chevron-circle-left:before {
  712. content: '\f137' !important
  713. }
  714. .fa-chevron-circle-right:before {
  715. content: '\f138' !important
  716. }
  717. .fa-chevron-circle-up:before {
  718. content: '\f139' !important
  719. }
  720. .fa-chevron-down:before {
  721. content: '\f078' !important
  722. }
  723. .fa-chevron-left:before {
  724. content: '\f053' !important
  725. }
  726. .fa-chevron-right:before {
  727. content: '\f054' !important
  728. }
  729. .fa-chevron-up:before {
  730. content: '\f077' !important
  731. }
  732. .fa-child:before {
  733. content: '\f1ae' !important
  734. }
  735. .fa-chrome:before {
  736. content: '\f268' !important
  737. }
  738. .fa-church:before {
  739. content: '\f51d' !important
  740. }
  741. .fa-circle:before {
  742. content: '\f111' !important
  743. }
  744. .fa-circle-notch:before {
  745. content: '\f1ce' !important
  746. }
  747. .fa-city:before {
  748. content: '\f64f' !important
  749. }
  750. .fa-clipboard:before {
  751. content: '\f328' !important
  752. }
  753. .fa-clipboard-check:before {
  754. content: '\f46c' !important
  755. }
  756. .fa-clipboard-list:before {
  757. content: '\f46d' !important
  758. }
  759. .fa-clock:before {
  760. content: '\f017' !important
  761. }
  762. .fa-clone:before {
  763. content: '\f24d' !important
  764. }
  765. .fa-closed-captioning:before {
  766. content: '\f20a' !important
  767. }
  768. .fa-cloud:before {
  769. content: '\f0c2' !important
  770. }
  771. .fa-cloud-download-alt:before {
  772. content: '\f381' !important
  773. }
  774. .fa-cloud-meatball:before {
  775. content: '\f73b' !important
  776. }
  777. .fa-cloud-moon:before {
  778. content: '\f6c3' !important
  779. }
  780. .fa-cloud-moon-rain:before {
  781. content: '\f73c' !important
  782. }
  783. .fa-cloud-rain:before {
  784. content: '\f73d' !important
  785. }
  786. .fa-cloud-showers-heavy:before {
  787. content: '\f740' !important
  788. }
  789. .fa-cloud-sun:before {
  790. content: '\f6c4' !important
  791. }
  792. .fa-cloud-sun-rain:before {
  793. content: '\f743' !important
  794. }
  795. .fa-cloud-upload-alt:before {
  796. content: '\f382' !important
  797. }
  798. .fa-cloudscale:before {
  799. content: '\f383' !important
  800. }
  801. .fa-cloudsmith:before {
  802. content: '\f384' !important
  803. }
  804. .fa-cloudversify:before {
  805. content: '\f385' !important
  806. }
  807. .fa-cocktail:before {
  808. content: '\f561' !important
  809. }
  810. .fa-code:before {
  811. content: '\f121' !important
  812. }
  813. .fa-code-branch:before {
  814. content: '\f126' !important
  815. }
  816. .fa-codepen:before {
  817. content: '\f1cb' !important
  818. }
  819. .fa-codiepie:before {
  820. content: '\f284' !important
  821. }
  822. .fa-coffee:before {
  823. content: '\f0f4' !important
  824. }
  825. .fa-cog:before {
  826. content: '\f013' !important
  827. }
  828. .fa-cogs:before {
  829. content: '\f085' !important
  830. }
  831. .fa-coins:before {
  832. content: '\f51e' !important
  833. }
  834. .fa-columns:before {
  835. content: '\f0db' !important
  836. }
  837. .fa-comment:before {
  838. content: '\f075' !important
  839. }
  840. .fa-comment-alt:before {
  841. content: '\f27a' !important
  842. }
  843. .fa-comment-dollar:before {
  844. content: '\f651' !important
  845. }
  846. .fa-comment-dots:before {
  847. content: '\f4ad' !important
  848. }
  849. .fa-comment-slash:before {
  850. content: '\f4b3' !important
  851. }
  852. .fa-comments:before {
  853. content: '\f086' !important
  854. }
  855. .fa-comments-dollar:before {
  856. content: '\f653' !important
  857. }
  858. .fa-compact-disc:before {
  859. content: '\f51f' !important
  860. }
  861. .fa-compass:before {
  862. content: '\f14e' !important
  863. }
  864. .fa-compress:before {
  865. content: '\f066' !important
  866. }
  867. .fa-compress-arrows-alt:before {
  868. content: '\f78c' !important
  869. }
  870. .fa-concierge-bell:before {
  871. content: '\f562' !important
  872. }
  873. .fa-confluence:before {
  874. content: '\f78d' !important
  875. }
  876. .fa-connectdevelop:before {
  877. content: '\f20e' !important
  878. }
  879. .fa-contao:before {
  880. content: '\f26d' !important
  881. }
  882. .fa-cookie:before {
  883. content: '\f563' !important
  884. }
  885. .fa-cookie-bite:before {
  886. content: '\f564' !important
  887. }
  888. .fa-copy:before {
  889. content: '\f0c5' !important
  890. }
  891. .fa-copyright:before {
  892. content: '\f1f9' !important
  893. }
  894. .fa-couch:before {
  895. content: '\f4b8' !important
  896. }
  897. .fa-cpanel:before {
  898. content: '\f388' !important
  899. }
  900. .fa-creative-commons:before {
  901. content: '\f25e' !important
  902. }
  903. .fa-creative-commons-by:before {
  904. content: '\f4e7' !important
  905. }
  906. .fa-creative-commons-nc:before {
  907. content: '\f4e8' !important
  908. }
  909. .fa-creative-commons-nc-eu:before {
  910. content: '\f4e9' !important
  911. }
  912. .fa-creative-commons-nc-jp:before {
  913. content: '\f4ea' !important
  914. }
  915. .fa-creative-commons-nd:before {
  916. content: '\f4eb' !important
  917. }
  918. .fa-creative-commons-pd:before {
  919. content: '\f4ec' !important
  920. }
  921. .fa-creative-commons-pd-alt:before {
  922. content: '\f4ed' !important
  923. }
  924. .fa-creative-commons-remix:before {
  925. content: '\f4ee' !important
  926. }
  927. .fa-creative-commons-sa:before {
  928. content: '\f4ef' !important
  929. }
  930. .fa-creative-commons-sampling:before {
  931. content: '\f4f0' !important
  932. }
  933. .fa-creative-commons-sampling-plus:before {
  934. content: '\f4f1' !important
  935. }
  936. .fa-creative-commons-share:before {
  937. content: '\f4f2' !important
  938. }
  939. .fa-creative-commons-zero:before {
  940. content: '\f4f3' !important
  941. }
  942. .fa-credit-card:before {
  943. content: '\f09d' !important
  944. }
  945. .fa-critical-role:before {
  946. content: '\f6c9' !important
  947. }
  948. .fa-crop:before {
  949. content: '\f125' !important
  950. }
  951. .fa-crop-alt:before {
  952. content: '\f565' !important
  953. }
  954. .fa-cross:before {
  955. content: '\f654' !important
  956. }
  957. .fa-crosshairs:before {
  958. content: '\f05b' !important
  959. }
  960. .fa-crow:before {
  961. content: '\f520' !important
  962. }
  963. .fa-crown:before {
  964. content: '\f521' !important
  965. }
  966. .fa-css3:before {
  967. content: '\f13c' !important
  968. }
  969. .fa-css3-alt:before {
  970. content: '\f38b' !important
  971. }
  972. .fa-cube:before {
  973. content: '\f1b2' !important
  974. }
  975. .fa-cubes:before {
  976. content: '\f1b3' !important
  977. }
  978. .fa-cut:before {
  979. content: '\f0c4' !important
  980. }
  981. .fa-cuttlefish:before {
  982. content: '\f38c' !important
  983. }
  984. .fa-d-and-d:before {
  985. content: '\f38d' !important
  986. }
  987. .fa-d-and-d-beyond:before {
  988. content: '\f6ca' !important
  989. }
  990. .fa-dashcube:before {
  991. content: '\f210' !important
  992. }
  993. .fa-database:before {
  994. content: '\f1c0' !important
  995. }
  996. .fa-deaf:before {
  997. content: '\f2a4' !important
  998. }
  999. .fa-delicious:before {
  1000. content: '\f1a5' !important
  1001. }
  1002. .fa-democrat:before {
  1003. content: '\f747' !important
  1004. }
  1005. .fa-deploydog:before {
  1006. content: '\f38e' !important
  1007. }
  1008. .fa-deskpro:before {
  1009. content: '\f38f' !important
  1010. }
  1011. .fa-desktop:before {
  1012. content: '\f108' !important
  1013. }
  1014. .fa-dev:before {
  1015. content: '\f6cc' !important
  1016. }
  1017. .fa-deviantart:before {
  1018. content: '\f1bd' !important
  1019. }
  1020. .fa-dharmachakra:before {
  1021. content: '\f655' !important
  1022. }
  1023. .fa-dhl:before {
  1024. content: '\f790' !important
  1025. }
  1026. .fa-diagnoses:before {
  1027. content: '\f470' !important
  1028. }
  1029. .fa-diaspora:before {
  1030. content: '\f791' !important
  1031. }
  1032. .fa-dice:before {
  1033. content: '\f522' !important
  1034. }
  1035. .fa-dice-d20:before {
  1036. content: '\f6cf' !important
  1037. }
  1038. .fa-dice-d6:before {
  1039. content: '\f6d1' !important
  1040. }
  1041. .fa-dice-five:before {
  1042. content: '\f523' !important
  1043. }
  1044. .fa-dice-four:before {
  1045. content: '\f524' !important
  1046. }
  1047. .fa-dice-one:before {
  1048. content: '\f525' !important
  1049. }
  1050. .fa-dice-six:before {
  1051. content: '\f526' !important
  1052. }
  1053. .fa-dice-three:before {
  1054. content: '\f527' !important
  1055. }
  1056. .fa-dice-two:before {
  1057. content: '\f528' !important
  1058. }
  1059. .fa-digg:before {
  1060. content: '\f1a6' !important
  1061. }
  1062. .fa-digital-ocean:before {
  1063. content: '\f391' !important
  1064. }
  1065. .fa-digital-tachograph:before {
  1066. content: '\f566' !important
  1067. }
  1068. .fa-directions:before {
  1069. content: '\f5eb' !important
  1070. }
  1071. .fa-discord:before {
  1072. content: '\f392' !important
  1073. }
  1074. .fa-discourse:before {
  1075. content: '\f393' !important
  1076. }
  1077. .fa-divide:before {
  1078. content: '\f529' !important
  1079. }
  1080. .fa-dizzy:before {
  1081. content: '\f567' !important
  1082. }
  1083. .fa-dna:before {
  1084. content: '\f471' !important
  1085. }
  1086. .fa-dochub:before {
  1087. content: '\f394' !important
  1088. }
  1089. .fa-docker:before {
  1090. content: '\f395' !important
  1091. }
  1092. .fa-dog:before {
  1093. content: '\f6d3' !important
  1094. }
  1095. .fa-dollar-sign:before {
  1096. content: '\f155' !important
  1097. }
  1098. .fa-dolly:before {
  1099. content: '\f472' !important
  1100. }
  1101. .fa-dolly-flatbed:before {
  1102. content: '\f474' !important
  1103. }
  1104. .fa-donate:before {
  1105. content: '\f4b9' !important
  1106. }
  1107. .fa-door-closed:before {
  1108. content: '\f52a' !important
  1109. }
  1110. .fa-door-open:before {
  1111. content: '\f52b' !important
  1112. }
  1113. .fa-dot-circle:before {
  1114. content: '\f192' !important
  1115. }
  1116. .fa-dove:before {
  1117. content: '\f4ba' !important
  1118. }
  1119. .fa-download:before {
  1120. content: '\f019' !important
  1121. }
  1122. .fa-draft2digital:before {
  1123. content: '\f396' !important
  1124. }
  1125. .fa-drafting-compass:before {
  1126. content: '\f568' !important
  1127. }
  1128. .fa-dragon:before {
  1129. content: '\f6d5' !important
  1130. }
  1131. .fa-draw-polygon:before {
  1132. content: '\f5ee' !important
  1133. }
  1134. .fa-dribbble:before {
  1135. content: '\f17d' !important
  1136. }
  1137. .fa-dribbble-square:before {
  1138. content: '\f397' !important
  1139. }
  1140. .fa-dropbox:before {
  1141. content: '\f16b' !important
  1142. }
  1143. .fa-drum:before {
  1144. content: '\f569' !important
  1145. }
  1146. .fa-drum-steelpan:before {
  1147. content: '\f56a' !important
  1148. }
  1149. .fa-drumstick-bite:before {
  1150. content: '\f6d7' !important
  1151. }
  1152. .fa-drupal:before {
  1153. content: '\f1a9' !important
  1154. }
  1155. .fa-dumbbell:before {
  1156. content: '\f44b' !important
  1157. }
  1158. .fa-dumpster:before {
  1159. content: '\f793' !important
  1160. }
  1161. .fa-dumpster-fire:before {
  1162. content: '\f794' !important
  1163. }
  1164. .fa-dungeon:before {
  1165. content: '\f6d9' !important
  1166. }
  1167. .fa-dyalog:before {
  1168. content: '\f399' !important
  1169. }
  1170. .fa-earlybirds:before {
  1171. content: '\f39a' !important
  1172. }
  1173. .fa-ebay:before {
  1174. content: '\f4f4' !important
  1175. }
  1176. .fa-edge:before {
  1177. content: '\f282' !important
  1178. }
  1179. .fa-edit:before {
  1180. content: '\f044' !important
  1181. }
  1182. .fa-eject:before {
  1183. content: '\f052' !important
  1184. }
  1185. .fa-elementor:before {
  1186. content: '\f430' !important
  1187. }
  1188. .fa-ellipsis-h:before {
  1189. content: '\f141' !important
  1190. }
  1191. .fa-ellipsis-v:before {
  1192. content: '\f142' !important
  1193. }
  1194. .fa-ello:before {
  1195. content: '\f5f1' !important
  1196. }
  1197. .fa-ember:before {
  1198. content: '\f423' !important
  1199. }
  1200. .fa-empire:before {
  1201. content: '\f1d1' !important
  1202. }
  1203. .fa-envelope:before {
  1204. content: '\f0e0' !important
  1205. }
  1206. .fa-envelope-open:before {
  1207. content: '\f2b6' !important
  1208. }
  1209. .fa-envelope-open-text:before {
  1210. content: '\f658' !important
  1211. }
  1212. .fa-envelope-square:before {
  1213. content: '\f199' !important
  1214. }
  1215. .fa-envira:before {
  1216. content: '\f299' !important
  1217. }
  1218. .fa-equals:before {
  1219. content: '\f52c' !important
  1220. }
  1221. .fa-eraser:before {
  1222. content: '\f12d' !important
  1223. }
  1224. .fa-erlang:before {
  1225. content: '\f39d' !important
  1226. }
  1227. .fa-ethereum:before {
  1228. content: '\f42e' !important
  1229. }
  1230. .fa-ethernet:before {
  1231. content: '\f796' !important
  1232. }
  1233. .fa-etsy:before {
  1234. content: '\f2d7' !important
  1235. }
  1236. .fa-euro-sign:before {
  1237. content: '\f153' !important
  1238. }
  1239. .fa-exchange-alt:before {
  1240. content: '\f362' !important
  1241. }
  1242. .fa-exclamation:before {
  1243. content: '\f12a' !important
  1244. }
  1245. .fa-exclamation-circle:before {
  1246. content: '\f06a' !important
  1247. }
  1248. .fa-exclamation-triangle:before {
  1249. content: '\f071' !important
  1250. }
  1251. .fa-expand:before {
  1252. content: '\f065' !important
  1253. }
  1254. .fa-expand-arrows-alt:before {
  1255. content: '\f31e' !important
  1256. }
  1257. .fa-expeditedssl:before {
  1258. content: '\f23e' !important
  1259. }
  1260. .fa-external-link-alt:before {
  1261. content: '\f35d' !important
  1262. }
  1263. .fa-external-link-square-alt:before {
  1264. content: '\f360' !important
  1265. }
  1266. .fa-eye:before {
  1267. content: '\f06e' !important
  1268. }
  1269. .fa-eye-dropper:before {
  1270. content: '\f1fb' !important
  1271. }
  1272. .fa-eye-slash:before {
  1273. content: '\f070' !important
  1274. }
  1275. .fa-facebook:before {
  1276. content: '\f39e' !important
  1277. }
  1278. .fa-facebook-f:before {
  1279. content: '\f39e' !important
  1280. }
  1281. .fa-facebook-messenger:before {
  1282. content: '\f39f' !important
  1283. }
  1284. .fa-facebook-square:before {
  1285. content: '\f082' !important
  1286. }
  1287. .fa-fantasy-flight-games:before {
  1288. content: '\f6dc' !important
  1289. }
  1290. .fa-fast-backward:before {
  1291. content: '\f049' !important
  1292. }
  1293. .fa-fast-forward:before {
  1294. content: '\f050' !important
  1295. }
  1296. .fa-fax:before {
  1297. content: '\f1ac' !important
  1298. }
  1299. .fa-feather:before {
  1300. content: '\f52d' !important
  1301. }
  1302. .fa-feather-alt:before {
  1303. content: '\f56b' !important
  1304. }
  1305. .fa-fedex:before {
  1306. content: '\f797' !important
  1307. }
  1308. .fa-fedora:before {
  1309. content: '\f798' !important
  1310. }
  1311. .fa-female:before {
  1312. content: '\f182' !important
  1313. }
  1314. .fa-fighter-jet:before {
  1315. content: '\f0fb' !important
  1316. }
  1317. .fa-figma:before {
  1318. content: '\f799' !important
  1319. }
  1320. .fa-file:before {
  1321. content: '\f15b' !important
  1322. }
  1323. .fa-file-alt:before {
  1324. content: '\f15c' !important
  1325. }
  1326. .fa-file-archive:before {
  1327. content: '\f1c6' !important
  1328. }
  1329. .fa-file-audio:before {
  1330. content: '\f1c7' !important
  1331. }
  1332. .fa-file-code:before {
  1333. content: '\f1c9' !important
  1334. }
  1335. .fa-file-contract:before {
  1336. content: '\f56c' !important
  1337. }
  1338. .fa-file-csv:before {
  1339. content: '\f6dd' !important
  1340. }
  1341. .fa-file-download:before {
  1342. content: '\f56d' !important
  1343. }
  1344. .fa-file-excel:before {
  1345. content: '\f1c3' !important
  1346. }
  1347. .fa-file-export:before {
  1348. content: '\f56e' !important
  1349. }
  1350. .fa-file-image:before {
  1351. content: '\f1c5' !important
  1352. }
  1353. .fa-file-import:before {
  1354. content: '\f56f' !important
  1355. }
  1356. .fa-file-invoice:before {
  1357. content: '\f570' !important
  1358. }
  1359. .fa-file-invoice-dollar:before {
  1360. content: '\f571' !important
  1361. }
  1362. .fa-file-medical:before {
  1363. content: '\f477' !important
  1364. }
  1365. .fa-file-medical-alt:before {
  1366. content: '\f478' !important
  1367. }
  1368. .fa-file-pdf:before {
  1369. content: '\f1c1' !important
  1370. }
  1371. .fa-file-powerpoint:before {
  1372. content: '\f1c4' !important
  1373. }
  1374. .fa-file-prescription:before {
  1375. content: '\f572' !important
  1376. }
  1377. .fa-file-signature:before {
  1378. content: '\f573' !important
  1379. }
  1380. .fa-file-upload:before {
  1381. content: '\f574' !important
  1382. }
  1383. .fa-file-video:before {
  1384. content: '\f1c8' !important
  1385. }
  1386. .fa-file-word:before {
  1387. content: '\f1c2' !important
  1388. }
  1389. .fa-fill:before {
  1390. content: '\f575' !important
  1391. }
  1392. .fa-fill-drip:before {
  1393. content: '\f576' !important
  1394. }
  1395. .fa-film:before {
  1396. content: '\f008' !important
  1397. }
  1398. .fa-filter:before {
  1399. content: '\f0b0' !important
  1400. }
  1401. .fa-fingerprint:before {
  1402. content: '\f577' !important
  1403. }
  1404. .fa-fire:before {
  1405. content: '\f06d' !important
  1406. }
  1407. .fa-fire-alt:before {
  1408. content: '\f7e4' !important
  1409. }
  1410. .fa-fire-extinguisher:before {
  1411. content: '\f134' !important
  1412. }
  1413. .fa-firefox:before {
  1414. content: '\f269' !important
  1415. }
  1416. .fa-first-aid:before {
  1417. content: '\f479' !important
  1418. }
  1419. .fa-first-order:before {
  1420. content: '\f2b0' !important
  1421. }
  1422. .fa-first-order-alt:before {
  1423. content: '\f50a' !important
  1424. }
  1425. .fa-firstdraft:before {
  1426. content: '\f3a1' !important
  1427. }
  1428. .fa-fish:before {
  1429. content: '\f578' !important
  1430. }
  1431. .fa-fist-raised:before {
  1432. content: '\f6de' !important
  1433. }
  1434. .fa-flag:before {
  1435. content: '\f024' !important
  1436. }
  1437. .fa-flag-checkered:before {
  1438. content: '\f11e' !important
  1439. }
  1440. .fa-flag-usa:before {
  1441. content: '\f74d' !important
  1442. }
  1443. .fa-flask:before {
  1444. content: '\f0c3' !important
  1445. }
  1446. .fa-flickr:before {
  1447. content: '\f16e' !important
  1448. }
  1449. .fa-flipboard:before {
  1450. content: '\f44d' !important
  1451. }
  1452. .fa-flushed:before {
  1453. content: '\f579' !important
  1454. }
  1455. .fa-fly:before {
  1456. content: '\f417' !important
  1457. }
  1458. .fa-folder:before {
  1459. content: '\f07b' !important
  1460. }
  1461. .fa-folder-minus:before {
  1462. content: '\f65d' !important
  1463. }
  1464. .fa-folder-open:before {
  1465. content: '\f07c' !important
  1466. }
  1467. .fa-folder-plus:before {
  1468. content: '\f65e' !important
  1469. }
  1470. .fa-font:before {
  1471. content: '\f031' !important
  1472. }
  1473. .fa-font-awesome:before {
  1474. content: '\f2b4' !important
  1475. }
  1476. .fa-font-awesome-alt:before {
  1477. content: '\f35c' !important
  1478. }
  1479. .fa-font-awesome-flag:before {
  1480. content: '\f425' !important
  1481. }
  1482. .fa-font-awesome-logo-full:before {
  1483. content: '\f4e6' !important
  1484. }
  1485. .fa-fonticons:before {
  1486. content: '\f280' !important
  1487. }
  1488. .fa-fonticons-fi:before {
  1489. content: '\f3a2' !important
  1490. }
  1491. .fa-football-ball:before {
  1492. content: '\f44e' !important
  1493. }
  1494. .fa-fort-awesome:before {
  1495. content: '\f286' !important
  1496. }
  1497. .fa-fort-awesome-alt:before {
  1498. content: '\f3a3' !important
  1499. }
  1500. .fa-forumbee:before {
  1501. content: '\f211' !important
  1502. }
  1503. .fa-forward:before {
  1504. content: '\f04e' !important
  1505. }
  1506. .fa-foursquare:before {
  1507. content: '\f180' !important
  1508. }
  1509. .fa-free-code-camp:before {
  1510. content: '\f2c5' !important
  1511. }
  1512. .fa-freebsd:before {
  1513. content: '\f3a4' !important
  1514. }
  1515. .fa-frog:before {
  1516. content: '\f52e' !important
  1517. }
  1518. .fa-frown:before {
  1519. content: '\f119' !important
  1520. }
  1521. .fa-frown-open:before {
  1522. content: '\f57a' !important
  1523. }
  1524. .fa-fulcrum:before {
  1525. content: '\f50b' !important
  1526. }
  1527. .fa-funnel-dollar:before {
  1528. content: '\f662' !important
  1529. }
  1530. .fa-futbol:before {
  1531. content: '\f1e3' !important
  1532. }
  1533. .fa-galactic-republic:before {
  1534. content: '\f50c' !important
  1535. }
  1536. .fa-galactic-senate:before {
  1537. content: '\f50d' !important
  1538. }
  1539. .fa-gamepad:before {
  1540. content: '\f11b' !important
  1541. }
  1542. .fa-gas-pump:before {
  1543. content: '\f52f' !important
  1544. }
  1545. .fa-gavel:before {
  1546. content: '\f0e3' !important
  1547. }
  1548. .fa-gem:before {
  1549. content: '\f3a5' !important
  1550. }
  1551. .fa-genderless:before {
  1552. content: '\f22d' !important
  1553. }
  1554. .fa-get-pocket:before {
  1555. content: '\f265' !important
  1556. }
  1557. .fa-gg:before {
  1558. content: '\f260' !important
  1559. }
  1560. .fa-gg-circle:before {
  1561. content: '\f261' !important
  1562. }
  1563. .fa-ghost:before {
  1564. content: '\f6e2' !important
  1565. }
  1566. .fa-gift:before {
  1567. content: '\f06b' !important
  1568. }
  1569. .fa-gifts:before {
  1570. content: '\f79c' !important
  1571. }
  1572. .fa-git:before {
  1573. content: '\f1d3' !important
  1574. }
  1575. .fa-git-square:before {
  1576. content: '\f1d2' !important
  1577. }
  1578. .fa-github:before {
  1579. content: '\f09b' !important
  1580. }
  1581. .fa-github-alt:before {
  1582. content: '\f113' !important
  1583. }
  1584. .fa-github-square:before {
  1585. content: '\f092' !important
  1586. }
  1587. .fa-gitkraken:before {
  1588. content: '\f3a6' !important
  1589. }
  1590. .fa-gitlab:before {
  1591. content: '\f296' !important
  1592. }
  1593. .fa-gitter:before {
  1594. content: '\f426' !important
  1595. }
  1596. .fa-glass-cheers:before {
  1597. content: '\f79f' !important
  1598. }
  1599. .fa-glass-martini:before {
  1600. content: '\f000' !important
  1601. }
  1602. .fa-glass-martini-alt:before {
  1603. content: '\f57b' !important
  1604. }
  1605. .fa-glass-whiskey:before {
  1606. content: '\f7a0' !important
  1607. }
  1608. .fa-glasses:before {
  1609. content: '\f530' !important
  1610. }
  1611. .fa-glide:before {
  1612. content: '\f2a5' !important
  1613. }
  1614. .fa-glide-g:before {
  1615. content: '\f2a6' !important
  1616. }
  1617. .fa-globe:before {
  1618. content: '\f0ac' !important
  1619. }
  1620. .fa-globe-africa:before {
  1621. content: '\f57c' !important
  1622. }
  1623. .fa-globe-americas:before {
  1624. content: '\f57d' !important
  1625. }
  1626. .fa-globe-asia:before {
  1627. content: '\f57e' !important
  1628. }
  1629. .fa-globe-europe:before {
  1630. content: '\f7a2' !important
  1631. }
  1632. .fa-gofore:before {
  1633. content: '\f3a7' !important
  1634. }
  1635. .fa-golf-ball:before {
  1636. content: '\f450' !important
  1637. }
  1638. .fa-goodreads:before {
  1639. content: '\f3a8' !important
  1640. }
  1641. .fa-goodreads-g:before {
  1642. content: '\f3a9' !important
  1643. }
  1644. .fa-google:before {
  1645. content: '\f1a0' !important
  1646. }
  1647. .fa-google-drive:before {
  1648. content: '\f3aa' !important
  1649. }
  1650. .fa-google-play:before {
  1651. content: '\f3ab' !important
  1652. }
  1653. .fa-google-plus:before {
  1654. content: '\f0d5' !important
  1655. }
  1656. .fa-google-plus-g:before {
  1657. content: '\f0d5' !important
  1658. }
  1659. .fa-google-plus-square:before {
  1660. content: '\f0d4' !important
  1661. }
  1662. .fa-google-wallet:before {
  1663. content: '\f1ee' !important
  1664. }
  1665. .fa-gopuram:before {
  1666. content: '\f664' !important
  1667. }
  1668. .fa-graduation-cap:before {
  1669. content: '\f19d' !important
  1670. }
  1671. .fa-gratipay:before {
  1672. content: '\f184' !important
  1673. }
  1674. .fa-grav:before {
  1675. content: '\f2d6' !important
  1676. }
  1677. .fa-greater-than:before {
  1678. content: '\f531' !important
  1679. }
  1680. .fa-greater-than-equal:before {
  1681. content: '\f532' !important
  1682. }
  1683. .fa-grimace:before {
  1684. content: '\f57f' !important
  1685. }
  1686. .fa-grin:before {
  1687. content: '\f580' !important
  1688. }
  1689. .fa-grin-alt:before {
  1690. content: '\f581' !important
  1691. }
  1692. .fa-grin-beam:before {
  1693. content: '\f582' !important
  1694. }
  1695. .fa-grin-beam-sweat:before {
  1696. content: '\f583' !important
  1697. }
  1698. .fa-grin-hearts:before {
  1699. content: '\f584' !important
  1700. }
  1701. .fa-grin-squint:before {
  1702. content: '\f585' !important
  1703. }
  1704. .fa-grin-squint-tears:before {
  1705. content: '\f586' !important
  1706. }
  1707. .fa-grin-stars:before {
  1708. content: '\f587' !important
  1709. }
  1710. .fa-grin-tears:before {
  1711. content: '\f588' !important
  1712. }
  1713. .fa-grin-tongue:before {
  1714. content: '\f589' !important
  1715. }
  1716. .fa-grin-tongue-squint:before {
  1717. content: '\f58a' !important
  1718. }
  1719. .fa-grin-tongue-wink:before {
  1720. content: '\f58b' !important
  1721. }
  1722. .fa-grin-wink:before {
  1723. content: '\f58c' !important
  1724. }
  1725. .fa-grip-horizontal:before {
  1726. content: '\f58d' !important
  1727. }
  1728. .fa-grip-lines:before {
  1729. content: '\f7a4' !important
  1730. }
  1731. .fa-grip-lines-vertical:before {
  1732. content: '\f7a5' !important
  1733. }
  1734. .fa-grip-vertical:before {
  1735. content: '\f58e' !important
  1736. }
  1737. .fa-gripfire:before {
  1738. content: '\f3ac' !important
  1739. }
  1740. .fa-grunt:before {
  1741. content: '\f3ad' !important
  1742. }
  1743. .fa-guitar:before {
  1744. content: '\f7a6' !important
  1745. }
  1746. .fa-gulp:before {
  1747. content: '\f3ae' !important
  1748. }
  1749. .fa-h-square:before {
  1750. content: '\f0fd' !important
  1751. }
  1752. .fa-hacker-news:before {
  1753. content: '\f1d4' !important
  1754. }
  1755. .fa-hacker-news-square:before {
  1756. content: '\f3af' !important
  1757. }
  1758. .fa-hackerrank:before {
  1759. content: '\f5f7' !important
  1760. }
  1761. .fa-hammer:before {
  1762. content: '\f6e3' !important
  1763. }
  1764. .fa-hamsa:before {
  1765. content: '\f665' !important
  1766. }
  1767. .fa-hand-holding:before {
  1768. content: '\f4bd' !important
  1769. }
  1770. .fa-hand-holding-heart:before {
  1771. content: '\f4be' !important
  1772. }
  1773. .fa-hand-holding-usd:before {
  1774. content: '\f4c0' !important
  1775. }
  1776. .fa-hand-lizard:before {
  1777. content: '\f258' !important
  1778. }
  1779. .fa-hand-paper:before {
  1780. content: '\f256' !important
  1781. }
  1782. .fa-hand-peace:before {
  1783. content: '\f25b' !important
  1784. }
  1785. .fa-hand-point-down:before {
  1786. content: '\f0a7' !important
  1787. }
  1788. .fa-hand-point-left:before {
  1789. content: '\f0a5' !important
  1790. }
  1791. .fa-hand-point-right:before {
  1792. content: '\f0a4' !important
  1793. }
  1794. .fa-hand-point-up:before {
  1795. content: '\f0a6' !important
  1796. }
  1797. .fa-hand-pointer:before {
  1798. content: '\f25a' !important
  1799. }
  1800. .fa-hand-rock:before {
  1801. content: '\f255' !important
  1802. }
  1803. .fa-hand-scissors:before {
  1804. content: '\f257' !important
  1805. }
  1806. .fa-hand-spock:before {
  1807. content: '\f259' !important
  1808. }
  1809. .fa-hands:before {
  1810. content: '\f4c2' !important
  1811. }
  1812. .fa-hands-helping:before {
  1813. content: '\f4c4' !important
  1814. }
  1815. .fa-handshake:before {
  1816. content: '\f2b5' !important
  1817. }
  1818. .fa-hanukiah:before {
  1819. content: '\f6e6' !important
  1820. }
  1821. .fa-hashtag:before {
  1822. content: '\f292' !important
  1823. }
  1824. .fa-hat-wizard:before {
  1825. content: '\f6e8' !important
  1826. }
  1827. .fa-haykal:before {
  1828. content: '\f666' !important
  1829. }
  1830. .fa-hdd:before {
  1831. content: '\f0a0' !important
  1832. }
  1833. .fa-heading:before {
  1834. content: '\f1dc' !important
  1835. }
  1836. .fa-headphones:before {
  1837. content: '\f025' !important
  1838. }
  1839. .fa-headphones-alt:before {
  1840. content: '\f58f' !important
  1841. }
  1842. .fa-headset:before {
  1843. content: '\f590' !important
  1844. }
  1845. .fa-heart:before {
  1846. content: '\f004' !important
  1847. }
  1848. .fa-heart-broken:before {
  1849. content: '\f7a9' !important
  1850. }
  1851. .fa-heartbeat:before {
  1852. content: '\f21e' !important
  1853. }
  1854. .fa-helicopter:before {
  1855. content: '\f533' !important
  1856. }
  1857. .fa-highlighter:before {
  1858. content: '\f591' !important
  1859. }
  1860. .fa-hiking:before {
  1861. content: '\f6ec' !important
  1862. }
  1863. .fa-hippo:before {
  1864. content: '\f6ed' !important
  1865. }
  1866. .fa-hips:before {
  1867. content: '\f452' !important
  1868. }
  1869. .fa-hire-a-helper:before {
  1870. content: '\f3b0' !important
  1871. }
  1872. .fa-history:before {
  1873. content: '\f1da' !important
  1874. }
  1875. .fa-hockey-puck:before {
  1876. content: '\f453' !important
  1877. }
  1878. .fa-holly-berry:before {
  1879. content: '\f7aa' !important
  1880. }
  1881. .fa-home:before {
  1882. content: '\f015' !important
  1883. }
  1884. .fa-hooli:before {
  1885. content: '\f427' !important
  1886. }
  1887. .fa-hornbill:before {
  1888. content: '\f592' !important
  1889. }
  1890. .fa-horse:before {
  1891. content: '\f6f0' !important
  1892. }
  1893. .fa-horse-head:before {
  1894. content: '\f7ab' !important
  1895. }
  1896. .fa-hospital:before {
  1897. content: '\f0f8' !important
  1898. }
  1899. .fa-hospital-alt:before {
  1900. content: '\f47d' !important
  1901. }
  1902. .fa-hospital-symbol:before {
  1903. content: '\f47e' !important
  1904. }
  1905. .fa-hot-tub:before {
  1906. content: '\f593' !important
  1907. }
  1908. .fa-hotel:before {
  1909. content: '\f236' !important
  1910. }
  1911. .fa-hotjar:before {
  1912. content: '\f3b1' !important
  1913. }
  1914. .fa-hourglass:before {
  1915. content: '\f254' !important
  1916. }
  1917. .fa-hourglass-end:before {
  1918. content: '\f253' !important
  1919. }
  1920. .fa-hourglass-half:before {
  1921. content: '\f252' !important
  1922. }
  1923. .fa-hourglass-start:before {
  1924. content: '\f251' !important
  1925. }
  1926. .fa-house-damage:before {
  1927. content: '\f6f1' !important
  1928. }
  1929. .fa-houzz:before {
  1930. content: '\f27c' !important
  1931. }
  1932. .fa-hryvnia:before {
  1933. content: '\f6f2' !important
  1934. }
  1935. .fa-html5:before {
  1936. content: '\f13b' !important
  1937. }
  1938. .fa-hubspot:before {
  1939. content: '\f3b2' !important
  1940. }
  1941. .fa-i-cursor:before {
  1942. content: '\f246' !important
  1943. }
  1944. .fa-icicles:before {
  1945. content: '\f7ad' !important
  1946. }
  1947. .fa-id-badge:before {
  1948. content: '\f2c1' !important
  1949. }
  1950. .fa-id-card:before {
  1951. content: '\f2c2' !important
  1952. }
  1953. .fa-id-card-alt:before {
  1954. content: '\f47f' !important
  1955. }
  1956. .fa-igloo:before {
  1957. content: '\f7ae' !important
  1958. }
  1959. .fa-image:before {
  1960. content: '\f03e' !important
  1961. }
  1962. .fa-images:before {
  1963. content: '\f302' !important
  1964. }
  1965. .fa-imdb:before {
  1966. content: '\f2d8' !important
  1967. }
  1968. .fa-inbox:before {
  1969. content: '\f01c' !important
  1970. }
  1971. .fa-indent:before {
  1972. content: '\f03c' !important
  1973. }
  1974. .fa-industry:before {
  1975. content: '\f275' !important
  1976. }
  1977. .fa-infinity:before {
  1978. content: '\f534' !important
  1979. }
  1980. .fa-info:before {
  1981. content: '\f129' !important
  1982. }
  1983. .fa-info-circle:before {
  1984. content: '\f05a' !important
  1985. }
  1986. .fa-instagram:before {
  1987. content: '\f16d' !important
  1988. }
  1989. .fa-intercom:before {
  1990. content: '\f7af' !important
  1991. }
  1992. .fa-internet-explorer:before {
  1993. content: '\f26b' !important
  1994. }
  1995. .fa-invision:before {
  1996. content: '\f7b0' !important
  1997. }
  1998. .fa-ioxhost:before {
  1999. content: '\f208' !important
  2000. }
  2001. .fa-italic:before {
  2002. content: '\f033' !important
  2003. }
  2004. .fa-itunes:before {
  2005. content: '\f3b4' !important
  2006. }
  2007. .fa-itunes-note:before {
  2008. content: '\f3b5' !important
  2009. }
  2010. .fa-java:before {
  2011. content: '\f4e4' !important
  2012. }
  2013. .fa-jedi:before {
  2014. content: '\f669' !important
  2015. }
  2016. .fa-jedi-order:before {
  2017. content: '\f50e' !important
  2018. }
  2019. .fa-jenkins:before {
  2020. content: '\f3b6' !important
  2021. }
  2022. .fa-jira:before {
  2023. content: '\f7b1' !important
  2024. }
  2025. .fa-joget:before {
  2026. content: '\f3b7' !important
  2027. }
  2028. .fa-joint:before {
  2029. content: '\f595' !important
  2030. }
  2031. .fa-joomla:before {
  2032. content: '\f1aa' !important
  2033. }
  2034. .fa-journal-whills:before {
  2035. content: '\f66a' !important
  2036. }
  2037. .fa-js:before {
  2038. content: '\f3b8' !important
  2039. }
  2040. .fa-js-square:before {
  2041. content: '\f3b9' !important
  2042. }
  2043. .fa-jsfiddle:before {
  2044. content: '\f1cc' !important
  2045. }
  2046. .fa-kaaba:before {
  2047. content: '\f66b' !important
  2048. }
  2049. .fa-kaggle:before {
  2050. content: '\f5fa' !important
  2051. }
  2052. .fa-key:before {
  2053. content: '\f084' !important
  2054. }
  2055. .fa-keybase:before {
  2056. content: '\f4f5' !important
  2057. }
  2058. .fa-keyboard:before {
  2059. content: '\f11c' !important
  2060. }
  2061. .fa-keycdn:before {
  2062. content: '\f3ba' !important
  2063. }
  2064. .fa-khanda:before {
  2065. content: '\f66d' !important
  2066. }
  2067. .fa-kickstarter:before {
  2068. content: '\f3bb' !important
  2069. }
  2070. .fa-kickstarter-k:before {
  2071. content: '\f3bc' !important
  2072. }
  2073. .fa-kiss:before {
  2074. content: '\f596' !important
  2075. }
  2076. .fa-kiss-beam:before {
  2077. content: '\f597' !important
  2078. }
  2079. .fa-kiss-wink-heart:before {
  2080. content: '\f598' !important
  2081. }
  2082. .fa-kiwi-bird:before {
  2083. content: '\f535' !important
  2084. }
  2085. .fa-korvue:before {
  2086. content: '\f42f' !important
  2087. }
  2088. .fa-landmark:before {
  2089. content: '\f66f' !important
  2090. }
  2091. .fa-language:before {
  2092. content: '\f1ab' !important
  2093. }
  2094. .fa-laptop:before {
  2095. content: '\f109' !important
  2096. }
  2097. .fa-laptop-code:before {
  2098. content: '\f5fc' !important
  2099. }
  2100. .fa-laravel:before {
  2101. content: '\f3bd' !important
  2102. }
  2103. .fa-lastfm:before {
  2104. content: '\f202' !important
  2105. }
  2106. .fa-lastfm-square:before {
  2107. content: '\f203' !important
  2108. }
  2109. .fa-laugh:before {
  2110. content: '\f599' !important
  2111. }
  2112. .fa-laugh-beam:before {
  2113. content: '\f59a' !important
  2114. }
  2115. .fa-laugh-squint:before {
  2116. content: '\f59b' !important
  2117. }
  2118. .fa-laugh-wink:before {
  2119. content: '\f59c' !important
  2120. }
  2121. .fa-layer-group:before {
  2122. content: '\f5fd' !important
  2123. }
  2124. .fa-leaf:before {
  2125. content: '\f06c' !important
  2126. }
  2127. .fa-leanpub:before {
  2128. content: '\f212' !important
  2129. }
  2130. .fa-lemon:before {
  2131. content: '\f094' !important
  2132. }
  2133. .fa-less:before {
  2134. content: '\f41d' !important
  2135. }
  2136. .fa-less-than:before {
  2137. content: '\f536' !important
  2138. }
  2139. .fa-less-than-equal:before {
  2140. content: '\f537' !important
  2141. }
  2142. .fa-level-down-alt:before {
  2143. content: '\f3be' !important
  2144. }
  2145. .fa-level-up-alt:before {
  2146. content: '\f3bf' !important
  2147. }
  2148. .fa-life-ring:before {
  2149. content: '\f1cd' !important
  2150. }
  2151. .fa-lightbulb:before {
  2152. content: '\f0eb' !important
  2153. }
  2154. .fa-line:before {
  2155. content: '\f3c0' !important
  2156. }
  2157. .fa-link:before {
  2158. content: '\f0c1' !important
  2159. }
  2160. .fa-linkedin:before {
  2161. content: '\f0e1' !important
  2162. }
  2163. .fa-linkedin-in:before {
  2164. content: '\f0e1' !important
  2165. }
  2166. .fa-linode:before {
  2167. content: '\f2b8' !important
  2168. }
  2169. .fa-linux:before {
  2170. content: '\f17c' !important
  2171. }
  2172. .fa-lira-sign:before {
  2173. content: '\f195' !important
  2174. }
  2175. .fa-list:before {
  2176. content: '\f03a' !important
  2177. }
  2178. .fa-list-alt:before {
  2179. content: '\f022' !important
  2180. }
  2181. .fa-list-ol:before {
  2182. content: '\f0cb' !important
  2183. }
  2184. .fa-list-ul:before {
  2185. content: '\f0ca' !important
  2186. }
  2187. .fa-location-arrow:before {
  2188. content: '\f124' !important
  2189. }
  2190. .fa-lock:before {
  2191. content: '\f023' !important
  2192. }
  2193. .fa-lock-open:before {
  2194. content: '\f3c1' !important
  2195. }
  2196. .fa-long-arrow-alt-down:before {
  2197. content: '\f309' !important
  2198. }
  2199. .fa-long-arrow-alt-left:before {
  2200. content: '\f30a' !important
  2201. }
  2202. .fa-long-arrow-alt-right:before {
  2203. content: '\f30b' !important
  2204. }
  2205. .fa-long-arrow-alt-up:before {
  2206. content: '\f30c' !important
  2207. }
  2208. .fa-low-vision:before {
  2209. content: '\f2a8' !important
  2210. }
  2211. .fa-luggage-cart:before {
  2212. content: '\f59d' !important
  2213. }
  2214. .fa-lyft:before {
  2215. content: '\f3c3' !important
  2216. }
  2217. .fa-magento:before {
  2218. content: '\f3c4' !important
  2219. }
  2220. .fa-magic:before {
  2221. content: '\f0d0' !important
  2222. }
  2223. .fa-magnet:before {
  2224. content: '\f076' !important
  2225. }
  2226. .fa-mail-bulk:before {
  2227. content: '\f674' !important
  2228. }
  2229. .fa-mailchimp:before {
  2230. content: '\f59e' !important
  2231. }
  2232. .fa-male:before {
  2233. content: '\f183' !important
  2234. }
  2235. .fa-mandalorian:before {
  2236. content: '\f50f' !important
  2237. }
  2238. .fa-map:before {
  2239. content: '\f279' !important
  2240. }
  2241. .fa-map-marked:before {
  2242. content: '\f59f' !important
  2243. }
  2244. .fa-map-marked-alt:before {
  2245. content: '\f5a0' !important
  2246. }
  2247. .fa-map-marker:before {
  2248. content: '\f3c5' !important
  2249. }
  2250. .fa-map-marker-alt:before {
  2251. content: '\f3c5' !important
  2252. }
  2253. .fa-map-pin:before {
  2254. content: '\f276' !important
  2255. }
  2256. .fa-map-signs:before {
  2257. content: '\f277' !important
  2258. }
  2259. .fa-markdown:before {
  2260. content: '\f60f' !important
  2261. }
  2262. .fa-marker:before {
  2263. content: '\f5a1' !important
  2264. }
  2265. .fa-mars:before {
  2266. content: '\f222' !important
  2267. }
  2268. .fa-mars-double:before {
  2269. content: '\f227' !important
  2270. }
  2271. .fa-mars-stroke:before {
  2272. content: '\f229' !important
  2273. }
  2274. .fa-mars-stroke-h:before {
  2275. content: '\f22b' !important
  2276. }
  2277. .fa-mars-stroke-v:before {
  2278. content: '\f22a' !important
  2279. }
  2280. .fa-mask:before {
  2281. content: '\f6fa' !important
  2282. }
  2283. .fa-mastodon:before {
  2284. content: '\f4f6' !important
  2285. }
  2286. .fa-maxcdn:before {
  2287. content: '\f136' !important
  2288. }
  2289. .fa-medal:before {
  2290. content: '\f5a2' !important
  2291. }
  2292. .fa-medapps:before {
  2293. content: '\f3c6' !important
  2294. }
  2295. .fa-medium:before {
  2296. content: '\f23a' !important
  2297. }
  2298. .fa-medium-m:before {
  2299. content: '\f3c7' !important
  2300. }
  2301. .fa-medkit:before {
  2302. content: '\f0fa' !important
  2303. }
  2304. .fa-medrt:before {
  2305. content: '\f3c8' !important
  2306. }
  2307. .fa-meetup:before {
  2308. content: '\f2e0' !important
  2309. }
  2310. .fa-megaport:before {
  2311. content: '\f5a3' !important
  2312. }
  2313. .fa-meh:before {
  2314. content: '\f11a' !important
  2315. }
  2316. .fa-meh-blank:before {
  2317. content: '\f5a4' !important
  2318. }
  2319. .fa-meh-rolling-eyes:before {
  2320. content: '\f5a5' !important
  2321. }
  2322. .fa-memory:before {
  2323. content: '\f538' !important
  2324. }
  2325. .fa-mendeley:before {
  2326. content: '\f7b3' !important
  2327. }
  2328. .fa-menorah:before {
  2329. content: '\f676' !important
  2330. }
  2331. .fa-mercury:before {
  2332. content: '\f223' !important
  2333. }
  2334. .fa-meteor:before {
  2335. content: '\f753' !important
  2336. }
  2337. .fa-microchip:before {
  2338. content: '\f2db' !important
  2339. }
  2340. .fa-microphone:before {
  2341. content: '\f130' !important
  2342. }
  2343. .fa-microphone-alt:before {
  2344. content: '\f3c9' !important
  2345. }
  2346. .fa-microphone-alt-slash:before {
  2347. content: '\f539' !important
  2348. }
  2349. .fa-microphone-slash:before {
  2350. content: '\f131' !important
  2351. }
  2352. .fa-microscope:before {
  2353. content: '\f610' !important
  2354. }
  2355. .fa-microsoft:before {
  2356. content: '\f3ca' !important
  2357. }
  2358. .fa-minus:before {
  2359. content: '\f068' !important
  2360. }
  2361. .fa-minus-circle:before {
  2362. content: '\f056' !important
  2363. }
  2364. .fa-minus-square:before {
  2365. content: '\f146' !important
  2366. }
  2367. .fa-mitten:before {
  2368. content: '\f7b5' !important
  2369. }
  2370. .fa-mix:before {
  2371. content: '\f3cb' !important
  2372. }
  2373. .fa-mixcloud:before {
  2374. content: '\f289' !important
  2375. }
  2376. .fa-mizuni:before {
  2377. content: '\f3cc' !important
  2378. }
  2379. .fa-mobile:before {
  2380. content: '\f3cd' !important
  2381. }
  2382. .fa-mobile-alt:before {
  2383. content: '\f3cd' !important
  2384. }
  2385. .fa-modx:before {
  2386. content: '\f285' !important
  2387. }
  2388. .fa-monero:before {
  2389. content: '\f3d0' !important
  2390. }
  2391. .fa-money-bill:before {
  2392. content: '\f0d6' !important
  2393. }
  2394. .fa-money-bill-alt:before {
  2395. content: '\f3d1' !important
  2396. }
  2397. .fa-money-bill-wave:before {
  2398. content: '\f53a' !important
  2399. }
  2400. .fa-money-bill-wave-alt:before {
  2401. content: '\f53b' !important
  2402. }
  2403. .fa-money-check:before {
  2404. content: '\f53c' !important
  2405. }
  2406. .fa-money-check-alt:before {
  2407. content: '\f53d' !important
  2408. }
  2409. .fa-monument:before {
  2410. content: '\f5a6' !important
  2411. }
  2412. .fa-moon:before {
  2413. content: '\f186' !important
  2414. }
  2415. .fa-mortar-pestle:before {
  2416. content: '\f5a7' !important
  2417. }
  2418. .fa-mosque:before {
  2419. content: '\f678' !important
  2420. }
  2421. .fa-motorcycle:before {
  2422. content: '\f21c' !important
  2423. }
  2424. .fa-mountain:before {
  2425. content: '\f6fc' !important
  2426. }
  2427. .fa-mouse-pointer:before {
  2428. content: '\f245' !important
  2429. }
  2430. .fa-mug-hot:before {
  2431. content: '\f7b6' !important
  2432. }
  2433. .fa-music:before {
  2434. content: '\f001' !important
  2435. }
  2436. .fa-napster:before {
  2437. content: '\f3d2' !important
  2438. }
  2439. .fa-neos:before {
  2440. content: '\f612' !important
  2441. }
  2442. .fa-network-wired:before {
  2443. content: '\f6ff' !important
  2444. }
  2445. .fa-neuter:before {
  2446. content: '\f22c' !important
  2447. }
  2448. .fa-newspaper:before {
  2449. content: '\f1ea' !important
  2450. }
  2451. .fa-nimblr:before {
  2452. content: '\f5a8' !important
  2453. }
  2454. .fa-nintendo-switch:before {
  2455. content: '\f418' !important
  2456. }
  2457. .fa-node:before {
  2458. content: '\f419' !important
  2459. }
  2460. .fa-node-js:before {
  2461. content: '\f3d3' !important
  2462. }
  2463. .fa-not-equal:before {
  2464. content: '\f53e' !important
  2465. }
  2466. .fa-notes-medical:before {
  2467. content: '\f481' !important
  2468. }
  2469. .fa-npm:before {
  2470. content: '\f3d4' !important
  2471. }
  2472. .fa-ns8:before {
  2473. content: '\f3d5' !important
  2474. }
  2475. .fa-nutritionix:before {
  2476. content: '\f3d6' !important
  2477. }
  2478. .fa-object-group:before {
  2479. content: '\f247' !important
  2480. }
  2481. .fa-object-ungroup:before {
  2482. content: '\f248' !important
  2483. }
  2484. .fa-odnoklassniki:before {
  2485. content: '\f263' !important
  2486. }
  2487. .fa-odnoklassniki-square:before {
  2488. content: '\f264' !important
  2489. }
  2490. .fa-oil-can:before {
  2491. content: '\f613' !important
  2492. }
  2493. .fa-old-republic:before {
  2494. content: '\f510' !important
  2495. }
  2496. .fa-om:before {
  2497. content: '\f679' !important
  2498. }
  2499. .fa-opencart:before {
  2500. content: '\f23d' !important
  2501. }
  2502. .fa-openid:before {
  2503. content: '\f19b' !important
  2504. }
  2505. .fa-opera:before {
  2506. content: '\f26a' !important
  2507. }
  2508. .fa-optin-monster:before {
  2509. content: '\f23c' !important
  2510. }
  2511. .fa-osi:before {
  2512. content: '\f41a' !important
  2513. }
  2514. .fa-otter:before {
  2515. content: '\f700' !important
  2516. }
  2517. .fa-outdent:before {
  2518. content: '\f03b' !important
  2519. }
  2520. .fa-page4:before {
  2521. content: '\f3d7' !important
  2522. }
  2523. .fa-pagelines:before {
  2524. content: '\f18c' !important
  2525. }
  2526. .fa-paint-brush:before {
  2527. content: '\f1fc' !important
  2528. }
  2529. .fa-paint-roller:before {
  2530. content: '\f5aa' !important
  2531. }
  2532. .fa-palette:before {
  2533. content: '\f53f' !important
  2534. }
  2535. .fa-palfed:before {
  2536. content: '\f3d8' !important
  2537. }
  2538. .fa-pallet:before {
  2539. content: '\f482' !important
  2540. }
  2541. .fa-paper-plane:before {
  2542. content: '\f1d8' !important
  2543. }
  2544. .fa-paperclip:before {
  2545. content: '\f0c6' !important
  2546. }
  2547. .fa-parachute-box:before {
  2548. content: '\f4cd' !important
  2549. }
  2550. .fa-paragraph:before {
  2551. content: '\f1dd' !important
  2552. }
  2553. .fa-parking:before {
  2554. content: '\f540' !important
  2555. }
  2556. .fa-passport:before {
  2557. content: '\f5ab' !important
  2558. }
  2559. .fa-pastafarianism:before {
  2560. content: '\f67b' !important
  2561. }
  2562. .fa-paste:before {
  2563. content: '\f328' !important
  2564. }
  2565. .fa-patreon:before {
  2566. content: '\f3d9' !important
  2567. }
  2568. .fa-pause:before {
  2569. content: '\f04c' !important
  2570. }
  2571. .fa-pause-circle:before {
  2572. content: '\f28b' !important
  2573. }
  2574. .fa-paw:before {
  2575. content: '\f1b0' !important
  2576. }
  2577. .fa-paypal:before {
  2578. content: '\f1ed' !important
  2579. }
  2580. .fa-peace:before {
  2581. content: '\f67c' !important
  2582. }
  2583. .fa-pen:before {
  2584. content: '\f304' !important
  2585. }
  2586. .fa-pen-alt:before {
  2587. content: '\f305' !important
  2588. }
  2589. .fa-pen-fancy:before {
  2590. content: '\f5ac' !important
  2591. }
  2592. .fa-pen-nib:before {
  2593. content: '\f5ad' !important
  2594. }
  2595. .fa-pen-square:before {
  2596. content: '\f14b' !important
  2597. }
  2598. .fa-pencil-alt:before {
  2599. content: '\f303' !important
  2600. }
  2601. .fa-pencil-ruler:before {
  2602. content: '\f5ae' !important
  2603. }
  2604. .fa-penny-arcade:before {
  2605. content: '\f704' !important
  2606. }
  2607. .fa-people-carry:before {
  2608. content: '\f4ce' !important
  2609. }
  2610. .fa-percent:before {
  2611. content: '\f295' !important
  2612. }
  2613. .fa-percentage:before {
  2614. content: '\f541' !important
  2615. }
  2616. .fa-periscope:before {
  2617. content: '\f3da' !important
  2618. }
  2619. .fa-person-booth:before {
  2620. content: '\f756' !important
  2621. }
  2622. .fa-phabricator:before {
  2623. content: '\f3db' !important
  2624. }
  2625. .fa-phoenix-framework:before {
  2626. content: '\f3dc' !important
  2627. }
  2628. .fa-phoenix-squadron:before {
  2629. content: '\f511' !important
  2630. }
  2631. .fa-phone:before {
  2632. content: '\f095' !important
  2633. }
  2634. .fa-phone-slash:before {
  2635. content: '\f3dd' !important
  2636. }
  2637. .fa-phone-square:before {
  2638. content: '\f098' !important
  2639. }
  2640. .fa-phone-volume:before {
  2641. content: '\f2a0' !important
  2642. }
  2643. .fa-php:before {
  2644. content: '\f457' !important
  2645. }
  2646. .fa-pied-piper:before {
  2647. content: '\f2ae' !important
  2648. }
  2649. .fa-pied-piper-alt:before {
  2650. content: '\f1a8' !important
  2651. }
  2652. .fa-pied-piper-hat:before {
  2653. content: '\f4e5' !important
  2654. }
  2655. .fa-pied-piper-pp:before {
  2656. content: '\f1a7' !important
  2657. }
  2658. .fa-piggy-bank:before {
  2659. content: '\f4d3' !important
  2660. }
  2661. .fa-pills:before {
  2662. content: '\f484' !important
  2663. }
  2664. .fa-pinterest:before {
  2665. content: '\f0d2' !important
  2666. }
  2667. .fa-pinterest-p:before {
  2668. content: '\f231' !important
  2669. }
  2670. .fa-pinterest-square:before {
  2671. content: '\f0d3' !important
  2672. }
  2673. .fa-place-of-worship:before {
  2674. content: '\f67f' !important
  2675. }
  2676. .fa-plane:before {
  2677. content: '\f072' !important
  2678. }
  2679. .fa-plane-arrival:before {
  2680. content: '\f5af' !important
  2681. }
  2682. .fa-plane-departure:before {
  2683. content: '\f5b0' !important
  2684. }
  2685. .fa-play:before {
  2686. content: '\f04b' !important
  2687. }
  2688. .fa-play-circle:before {
  2689. content: '\f144' !important
  2690. }
  2691. .fa-playstation:before {
  2692. content: '\f3df' !important
  2693. }
  2694. .fa-plug:before {
  2695. content: '\f1e6' !important
  2696. }
  2697. .fa-plus:before {
  2698. content: '\f067' !important
  2699. }
  2700. .fa-plus-circle:before {
  2701. content: '\f055' !important
  2702. }
  2703. .fa-plus-square:before {
  2704. content: '\f0fe' !important
  2705. }
  2706. .fa-podcast:before {
  2707. content: '\f2ce' !important
  2708. }
  2709. .fa-poll:before {
  2710. content: '\f681' !important
  2711. }
  2712. .fa-poll-h:before {
  2713. content: '\f682' !important
  2714. }
  2715. .fa-poo:before {
  2716. content: '\f2fe' !important
  2717. }
  2718. .fa-poo-storm:before {
  2719. content: '\f75a' !important
  2720. }
  2721. .fa-poop:before {
  2722. content: '\f619' !important
  2723. }
  2724. .fa-portrait:before {
  2725. content: '\f3e0' !important
  2726. }
  2727. .fa-pound-sign:before {
  2728. content: '\f154' !important
  2729. }
  2730. .fa-power-off:before {
  2731. content: '\f011' !important
  2732. }
  2733. .fa-pray:before {
  2734. content: '\f683' !important
  2735. }
  2736. .fa-praying-hands:before {
  2737. content: '\f684' !important
  2738. }
  2739. .fa-prescription:before {
  2740. content: '\f5b1' !important
  2741. }
  2742. .fa-prescription-bottle:before {
  2743. content: '\f485' !important
  2744. }
  2745. .fa-prescription-bottle-alt:before {
  2746. content: '\f486' !important
  2747. }
  2748. .fa-print:before {
  2749. content: '\f02f' !important
  2750. }
  2751. .fa-procedures:before {
  2752. content: '\f487' !important
  2753. }
  2754. .fa-product-hunt:before {
  2755. content: '\f288' !important
  2756. }
  2757. .fa-project-diagram:before {
  2758. content: '\f542' !important
  2759. }
  2760. .fa-pushed:before {
  2761. content: '\f3e1' !important
  2762. }
  2763. .fa-puzzle-piece:before {
  2764. content: '\f12e' !important
  2765. }
  2766. .fa-python:before {
  2767. content: '\f3e2' !important
  2768. }
  2769. .fa-qq:before {
  2770. content: '\f1d6' !important
  2771. }
  2772. .fa-qrcode:before {
  2773. content: '\f029' !important
  2774. }
  2775. .fa-question:before {
  2776. content: '\f128' !important
  2777. }
  2778. .fa-question-circle:before {
  2779. content: '\f059' !important
  2780. }
  2781. .fa-quidditch:before {
  2782. content: '\f458' !important
  2783. }
  2784. .fa-quinscape:before {
  2785. content: '\f459' !important
  2786. }
  2787. .fa-quora:before {
  2788. content: '\f2c4' !important
  2789. }
  2790. .fa-quote-left:before {
  2791. content: '\f10d' !important
  2792. }
  2793. .fa-quote-right:before {
  2794. content: '\f10e' !important
  2795. }
  2796. .fa-quran:before {
  2797. content: '\f687' !important
  2798. }
  2799. .fa-r-project:before {
  2800. content: '\f4f7' !important
  2801. }
  2802. .fa-radiation:before {
  2803. content: '\f7b9' !important
  2804. }
  2805. .fa-radiation-alt:before {
  2806. content: '\f7ba' !important
  2807. }
  2808. .fa-rainbow:before {
  2809. content: '\f75b' !important
  2810. }
  2811. .fa-random:before {
  2812. content: '\f074' !important
  2813. }
  2814. .fa-raspberry-pi:before {
  2815. content: '\f7bb' !important
  2816. }
  2817. .fa-ravelry:before {
  2818. content: '\f2d9' !important
  2819. }
  2820. .fa-react:before {
  2821. content: '\f41b' !important
  2822. }
  2823. .fa-reacteurope:before {
  2824. content: '\f75d' !important
  2825. }
  2826. .fa-readme:before {
  2827. content: '\f4d5' !important
  2828. }
  2829. .fa-rebel:before {
  2830. content: '\f1d0' !important
  2831. }
  2832. .fa-receipt:before {
  2833. content: '\f543' !important
  2834. }
  2835. .fa-recycle:before {
  2836. content: '\f1b8' !important
  2837. }
  2838. .fa-red-river:before {
  2839. content: '\f3e3' !important
  2840. }
  2841. .fa-reddit:before {
  2842. content: '\f1a1' !important
  2843. }
  2844. .fa-reddit-alien:before {
  2845. content: '\f281' !important
  2846. }
  2847. .fa-reddit-square:before {
  2848. content: '\f1a2' !important
  2849. }
  2850. .fa-redhat:before {
  2851. content: '\f7bc' !important
  2852. }
  2853. .fa-redo:before {
  2854. content: '\f01e' !important
  2855. }
  2856. .fa-redo-alt:before {
  2857. content: '\f2f9' !important
  2858. }
  2859. .fa-registered:before {
  2860. content: '\f25d' !important
  2861. }
  2862. .fa-renren:before {
  2863. content: '\f18b' !important
  2864. }
  2865. .fa-reply:before {
  2866. content: '\f3e5' !important
  2867. }
  2868. .fa-reply-all:before {
  2869. content: '\f122' !important
  2870. }
  2871. .fa-replyd:before {
  2872. content: '\f3e6' !important
  2873. }
  2874. .fa-republican:before {
  2875. content: '\f75e' !important
  2876. }
  2877. .fa-researchgate:before {
  2878. content: '\f4f8' !important
  2879. }
  2880. .fa-resolving:before {
  2881. content: '\f3e7' !important
  2882. }
  2883. .fa-restroom:before {
  2884. content: '\f7bd' !important
  2885. }
  2886. .fa-retweet:before {
  2887. content: '\f079' !important
  2888. }
  2889. .fa-rev:before {
  2890. content: '\f5b2' !important
  2891. }
  2892. .fa-ribbon:before {
  2893. content: '\f4d6' !important
  2894. }
  2895. .fa-ring:before {
  2896. content: '\f70b' !important
  2897. }
  2898. .fa-road:before {
  2899. content: '\f018' !important
  2900. }
  2901. .fa-robot:before {
  2902. content: '\f544' !important
  2903. }
  2904. .fa-rocket:before {
  2905. content: '\f135' !important
  2906. }
  2907. .fa-rocketchat:before {
  2908. content: '\f3e8' !important
  2909. }
  2910. .fa-rockrms:before {
  2911. content: '\f3e9' !important
  2912. }
  2913. .fa-route:before {
  2914. content: '\f4d7' !important
  2915. }
  2916. .fa-rss:before {
  2917. content: '\f09e' !important
  2918. }
  2919. .fa-rss-square:before {
  2920. content: '\f143' !important
  2921. }
  2922. .fa-ruble-sign:before {
  2923. content: '\f158' !important
  2924. }
  2925. .fa-ruler:before {
  2926. content: '\f545' !important
  2927. }
  2928. .fa-ruler-combined:before {
  2929. content: '\f546' !important
  2930. }
  2931. .fa-ruler-horizontal:before {
  2932. content: '\f547' !important
  2933. }
  2934. .fa-ruler-vertical:before {
  2935. content: '\f548' !important
  2936. }
  2937. .fa-running:before {
  2938. content: '\f70c' !important
  2939. }
  2940. .fa-rupee-sign:before {
  2941. content: '\f156' !important
  2942. }
  2943. .fa-sad-cry:before {
  2944. content: '\f5b3' !important
  2945. }
  2946. .fa-sad-tear:before {
  2947. content: '\f5b4' !important
  2948. }
  2949. .fa-safari:before {
  2950. content: '\f267' !important
  2951. }
  2952. .fa-sass:before {
  2953. content: '\f41e' !important
  2954. }
  2955. .fa-satellite:before {
  2956. content: '\f7bf' !important
  2957. }
  2958. .fa-satellite-dish:before {
  2959. content: '\f7c0' !important
  2960. }
  2961. .fa-save:before {
  2962. content: '\f0c7' !important
  2963. }
  2964. .fa-schlix:before {
  2965. content: '\f3ea' !important
  2966. }
  2967. .fa-school:before {
  2968. content: '\f549' !important
  2969. }
  2970. .fa-screwdriver:before {
  2971. content: '\f54a' !important
  2972. }
  2973. .fa-scribd:before {
  2974. content: '\f28a' !important
  2975. }
  2976. .fa-scroll:before {
  2977. content: '\f70e' !important
  2978. }
  2979. .fa-sd-card:before {
  2980. content: '\f7c2' !important
  2981. }
  2982. .fa-search:before {
  2983. content: '\f002' !important
  2984. }
  2985. .fa-search-dollar:before {
  2986. content: '\f688' !important
  2987. }
  2988. .fa-search-location:before {
  2989. content: '\f689' !important
  2990. }
  2991. .fa-search-minus:before {
  2992. content: '\f010' !important
  2993. }
  2994. .fa-search-plus:before {
  2995. content: '\f00e' !important
  2996. }
  2997. .fa-searchengin:before {
  2998. content: '\f3eb' !important
  2999. }
  3000. .fa-seedling:before {
  3001. content: '\f4d8' !important
  3002. }
  3003. .fa-sellcast:before {
  3004. content: '\f2da' !important
  3005. }
  3006. .fa-sellsy:before {
  3007. content: '\f213' !important
  3008. }
  3009. .fa-server:before {
  3010. content: '\f233' !important
  3011. }
  3012. .fa-servicestack:before {
  3013. content: '\f3ec' !important
  3014. }
  3015. .fa-shapes:before {
  3016. content: '\f61f' !important
  3017. }
  3018. .fa-share:before {
  3019. content: '\f064' !important
  3020. }
  3021. .fa-share-alt:before {
  3022. content: '\f1e0' !important
  3023. }
  3024. .fa-share-alt-square:before {
  3025. content: '\f1e1' !important
  3026. }
  3027. .fa-share-square:before {
  3028. content: '\f14d' !important
  3029. }
  3030. .fa-shekel-sign:before {
  3031. content: '\f20b' !important
  3032. }
  3033. .fa-shield-alt:before {
  3034. content: '\f3ed' !important
  3035. }
  3036. .fa-ship:before {
  3037. content: '\f21a' !important
  3038. }
  3039. .fa-shipping-fast:before {
  3040. content: '\f48b' !important
  3041. }
  3042. .fa-shirtsinbulk:before {
  3043. content: '\f214' !important
  3044. }
  3045. .fa-shoe-prints:before {
  3046. content: '\f54b' !important
  3047. }
  3048. .fa-shopping-bag:before {
  3049. content: '\f290' !important
  3050. }
  3051. .fa-shopping-basket:before {
  3052. content: '\f291' !important
  3053. }
  3054. .fa-shopping-cart:before {
  3055. content: '\f07a' !important
  3056. }
  3057. .fa-shopware:before {
  3058. content: '\f5b5' !important
  3059. }
  3060. .fa-shower:before {
  3061. content: '\f2cc' !important
  3062. }
  3063. .fa-shuttle-van:before {
  3064. content: '\f5b6' !important
  3065. }
  3066. .fa-sign:before {
  3067. content: '\f4d9' !important
  3068. }
  3069. .fa-sign-in-alt:before {
  3070. content: '\f2f6' !important
  3071. }
  3072. .fa-sign-language:before {
  3073. content: '\f2a7' !important
  3074. }
  3075. .fa-sign-out-alt:before {
  3076. content: '\f2f5' !important
  3077. }
  3078. .fa-signal:before {
  3079. content: '\f012' !important
  3080. }
  3081. .fa-signature:before {
  3082. content: '\f5b7' !important
  3083. }
  3084. .fa-sim-card:before {
  3085. content: '\f7c4' !important
  3086. }
  3087. .fa-simplybuilt:before {
  3088. content: '\f215' !important
  3089. }
  3090. .fa-sistrix:before {
  3091. content: '\f3ee' !important
  3092. }
  3093. .fa-sitemap:before {
  3094. content: '\f0e8' !important
  3095. }
  3096. .fa-sith:before {
  3097. content: '\f512' !important
  3098. }
  3099. .fa-skating:before {
  3100. content: '\f7c5' !important
  3101. }
  3102. .fa-sketch:before {
  3103. content: '\f7c6' !important
  3104. }
  3105. .fa-skiing:before {
  3106. content: '\f7c9' !important
  3107. }
  3108. .fa-skiing-nordic:before {
  3109. content: '\f7ca' !important
  3110. }
  3111. .fa-skull:before {
  3112. content: '\f54c' !important
  3113. }
  3114. .fa-skull-crossbones:before {
  3115. content: '\f714' !important
  3116. }
  3117. .fa-skyatlas:before {
  3118. content: '\f216' !important
  3119. }
  3120. .fa-skype:before {
  3121. content: '\f17e' !important
  3122. }
  3123. .fa-slack:before {
  3124. content: '\f198' !important
  3125. }
  3126. .fa-slack-hash:before {
  3127. content: '\f3ef' !important
  3128. }
  3129. .fa-slash:before {
  3130. content: '\f715' !important
  3131. }
  3132. .fa-sleigh:before {
  3133. content: '\f7cc' !important
  3134. }
  3135. .fa-sliders-h:before {
  3136. content: '\f1de' !important
  3137. }
  3138. .fa-slideshare:before {
  3139. content: '\f1e7' !important
  3140. }
  3141. .fa-smile:before {
  3142. content: '\f118' !important
  3143. }
  3144. .fa-smile-beam:before {
  3145. content: '\f5b8' !important
  3146. }
  3147. .fa-smile-wink:before {
  3148. content: '\f4da' !important
  3149. }
  3150. .fa-smog:before {
  3151. content: '\f75f' !important
  3152. }
  3153. .fa-smoking:before {
  3154. content: '\f48d' !important
  3155. }
  3156. .fa-smoking-ban:before {
  3157. content: '\f54d' !important
  3158. }
  3159. .fa-sms:before {
  3160. content: '\f7cd' !important
  3161. }
  3162. .fa-snapchat:before {
  3163. content: '\f2ab' !important
  3164. }
  3165. .fa-snapchat-ghost:before {
  3166. content: '\f2ac' !important
  3167. }
  3168. .fa-snapchat-square:before {
  3169. content: '\f2ad' !important
  3170. }
  3171. .fa-snowboarding:before {
  3172. content: '\f7ce' !important
  3173. }
  3174. .fa-snowflake:before {
  3175. content: '\f2dc' !important
  3176. }
  3177. .fa-snowman:before {
  3178. content: '\f7d0' !important
  3179. }
  3180. .fa-snowplow:before {
  3181. content: '\f7d2' !important
  3182. }
  3183. .fa-socks:before {
  3184. content: '\f696' !important
  3185. }
  3186. .fa-solar-panel:before {
  3187. content: '\f5ba' !important
  3188. }
  3189. .fa-sort:before {
  3190. content: '\f0dc' !important
  3191. }
  3192. .fa-sort-alpha-down:before {
  3193. content: '\f15d' !important
  3194. }
  3195. .fa-sort-alpha-up:before {
  3196. content: '\f15e' !important
  3197. }
  3198. .fa-sort-amount-down:before {
  3199. content: '\f160' !important
  3200. }
  3201. .fa-sort-amount-up:before {
  3202. content: '\f161' !important
  3203. }
  3204. .fa-sort-down:before {
  3205. content: '\f0dd' !important
  3206. }
  3207. .fa-sort-numeric-down:before {
  3208. content: '\f162' !important
  3209. }
  3210. .fa-sort-numeric-up:before {
  3211. content: '\f163' !important
  3212. }
  3213. .fa-sort-up:before {
  3214. content: '\f0de' !important
  3215. }
  3216. .fa-soundcloud:before {
  3217. content: '\f1be' !important
  3218. }
  3219. .fa-sourcetree:before {
  3220. content: '\f7d3' !important
  3221. }
  3222. .fa-spa:before {
  3223. content: '\f5bb' !important
  3224. }
  3225. .fa-space-shuttle:before {
  3226. content: '\f197' !important
  3227. }
  3228. .fa-speakap:before {
  3229. content: '\f3f3' !important
  3230. }
  3231. .fa-spider:before {
  3232. content: '\f717' !important
  3233. }
  3234. .fa-spinner:before {
  3235. content: '\f110' !important
  3236. }
  3237. .fa-splotch:before {
  3238. content: '\f5bc' !important
  3239. }
  3240. .fa-spotify:before {
  3241. content: '\f1bc' !important
  3242. }
  3243. .fa-spray-can:before {
  3244. content: '\f5bd' !important
  3245. }
  3246. .fa-square:before {
  3247. content: '\f0c8' !important
  3248. }
  3249. .fa-square-full:before {
  3250. content: '\f45c' !important
  3251. }
  3252. .fa-square-root-alt:before {
  3253. content: '\f698' !important
  3254. }
  3255. .fa-squarespace:before {
  3256. content: '\f5be' !important
  3257. }
  3258. .fa-stack-exchange:before {
  3259. content: '\f18d' !important
  3260. }
  3261. .fa-stack-overflow:before {
  3262. content: '\f16c' !important
  3263. }
  3264. .fa-stamp:before {
  3265. content: '\f5bf' !important
  3266. }
  3267. .fa-star:before {
  3268. content: '\f005' !important
  3269. }
  3270. .fa-star-and-crescent:before {
  3271. content: '\f699' !important
  3272. }
  3273. .fa-star-half:before {
  3274. content: '\f089' !important
  3275. }
  3276. .fa-star-half-alt:before {
  3277. content: '\f5c0' !important
  3278. }
  3279. .fa-star-of-david:before {
  3280. content: '\f69a' !important
  3281. }
  3282. .fa-star-of-life:before {
  3283. content: '\f621' !important
  3284. }
  3285. .fa-staylinked:before {
  3286. content: '\f3f5' !important
  3287. }
  3288. .fa-steam:before {
  3289. content: '\f1b6' !important
  3290. }
  3291. .fa-steam-square:before {
  3292. content: '\f1b7' !important
  3293. }
  3294. .fa-steam-symbol:before {
  3295. content: '\f3f6' !important
  3296. }
  3297. .fa-step-backward:before {
  3298. content: '\f048' !important
  3299. }
  3300. .fa-step-forward:before {
  3301. content: '\f051' !important
  3302. }
  3303. .fa-stethoscope:before {
  3304. content: '\f0f1' !important
  3305. }
  3306. .fa-sticker-mule:before {
  3307. content: '\f3f7' !important
  3308. }
  3309. .fa-sticky-note:before {
  3310. content: '\f249' !important
  3311. }
  3312. .fa-stop:before {
  3313. content: '\f04d' !important
  3314. }
  3315. .fa-stop-circle:before {
  3316. content: '\f28d' !important
  3317. }
  3318. .fa-stopwatch:before {
  3319. content: '\f2f2' !important
  3320. }
  3321. .fa-store:before {
  3322. content: '\f54e' !important
  3323. }
  3324. .fa-store-alt:before {
  3325. content: '\f54f' !important
  3326. }
  3327. .fa-strava:before {
  3328. content: '\f428' !important
  3329. }
  3330. .fa-stream:before {
  3331. content: '\f550' !important
  3332. }
  3333. .fa-street-view:before {
  3334. content: '\f21d' !important
  3335. }
  3336. .fa-strikethrough:before {
  3337. content: '\f0cc' !important
  3338. }
  3339. .fa-stripe:before {
  3340. content: '\f429' !important
  3341. }
  3342. .fa-stripe-s:before {
  3343. content: '\f42a' !important
  3344. }
  3345. .fa-stroopwafel:before {
  3346. content: '\f551' !important
  3347. }
  3348. .fa-studiovinari:before {
  3349. content: '\f3f8' !important
  3350. }
  3351. .fa-stumbleupon:before {
  3352. content: '\f1a4' !important
  3353. }
  3354. .fa-stumbleupon-circle:before {
  3355. content: '\f1a3' !important
  3356. }
  3357. .fa-subscript:before {
  3358. content: '\f12c' !important
  3359. }
  3360. .fa-subway:before {
  3361. content: '\f239' !important
  3362. }
  3363. .fa-suitcase:before {
  3364. content: '\f0f2' !important
  3365. }
  3366. .fa-suitcase-rolling:before {
  3367. content: '\f5c1' !important
  3368. }
  3369. .fa-sun:before {
  3370. content: '\f185' !important
  3371. }
  3372. .fa-superpowers:before {
  3373. content: '\f2dd' !important
  3374. }
  3375. .fa-superscript:before {
  3376. content: '\f12b' !important
  3377. }
  3378. .fa-supple:before {
  3379. content: '\f3f9' !important
  3380. }
  3381. .fa-surprise:before {
  3382. content: '\f5c2' !important
  3383. }
  3384. .fa-suse:before {
  3385. content: '\f7d6' !important
  3386. }
  3387. .fa-swatchbook:before {
  3388. content: '\f5c3' !important
  3389. }
  3390. .fa-swimmer:before {
  3391. content: '\f5c4' !important
  3392. }
  3393. .fa-swimming-pool:before {
  3394. content: '\f5c5' !important
  3395. }
  3396. .fa-synagogue:before {
  3397. content: '\f69b' !important
  3398. }
  3399. .fa-sync:before {
  3400. content: '\f021' !important
  3401. }
  3402. .fa-sync-alt:before {
  3403. content: '\f2f1' !important
  3404. }
  3405. .fa-syringe:before {
  3406. content: '\f48e' !important
  3407. }
  3408. .fa-table:before {
  3409. content: '\f0ce' !important
  3410. }
  3411. .fa-table-tennis:before {
  3412. content: '\f45d' !important
  3413. }
  3414. .fa-tablet:before {
  3415. content: '\f3fa' !important
  3416. }
  3417. .fa-tablet-alt:before {
  3418. content: '\f3fa' !important
  3419. }
  3420. .fa-tablets:before {
  3421. content: '\f490' !important
  3422. }
  3423. .fa-tachometer-alt:before {
  3424. content: '\f3fd' !important
  3425. }
  3426. .fa-tag:before {
  3427. content: '\f02b' !important
  3428. }
  3429. .fa-tags:before {
  3430. content: '\f02c' !important
  3431. }
  3432. .fa-tape:before {
  3433. content: '\f4db' !important
  3434. }
  3435. .fa-tasks:before {
  3436. content: '\f0ae' !important
  3437. }
  3438. .fa-taxi:before {
  3439. content: '\f1ba' !important
  3440. }
  3441. .fa-teamspeak:before {
  3442. content: '\f4f9' !important
  3443. }
  3444. .fa-teeth:before {
  3445. content: '\f62e' !important
  3446. }
  3447. .fa-teeth-open:before {
  3448. content: '\f62f' !important
  3449. }
  3450. .fa-telegram:before {
  3451. content: '\f2c6' !important
  3452. }
  3453. .fa-telegram-plane:before {
  3454. content: '\f3fe' !important
  3455. }
  3456. .fa-temperature-high:before {
  3457. content: '\f769' !important
  3458. }
  3459. .fa-temperature-low:before {
  3460. content: '\f76b' !important
  3461. }
  3462. .fa-tencent-weibo:before {
  3463. content: '\f1d5' !important
  3464. }
  3465. .fa-tenge:before {
  3466. content: '\f7d7' !important
  3467. }
  3468. .fa-terminal:before {
  3469. content: '\f120' !important
  3470. }
  3471. .fa-text-height:before {
  3472. content: '\f034' !important
  3473. }
  3474. .fa-text-width:before {
  3475. content: '\f035' !important
  3476. }
  3477. .fa-th:before {
  3478. content: '\f00a' !important
  3479. }
  3480. .fa-th-large:before {
  3481. content: '\f009' !important
  3482. }
  3483. .fa-th-list:before {
  3484. content: '\f00b' !important
  3485. }
  3486. .fa-the-red-yeti:before {
  3487. content: '\f69d' !important
  3488. }
  3489. .fa-theater-masks:before {
  3490. content: '\f630' !important
  3491. }
  3492. .fa-themeco:before {
  3493. content: '\f5c6' !important
  3494. }
  3495. .fa-themeisle:before {
  3496. content: '\f2b2' !important
  3497. }
  3498. .fa-thermometer:before {
  3499. content: '\f2c7' !important
  3500. }
  3501. .fa-thermometer-empty:before {
  3502. content: '\f2cb' !important
  3503. }
  3504. .fa-thermometer-full:before {
  3505. content: '\f2c7' !important
  3506. }
  3507. .fa-thermometer-half:before {
  3508. content: '\f2c9' !important
  3509. }
  3510. .fa-thermometer-quarter:before {
  3511. content: '\f2ca' !important
  3512. }
  3513. .fa-thermometer-three-quarters:before {
  3514. content: '\f2c8' !important
  3515. }
  3516. .fa-think-peaks:before {
  3517. content: '\f731' !important
  3518. }
  3519. .fa-thumbs-down:before {
  3520. content: '\f165' !important
  3521. }
  3522. .fa-thumbs-up:before {
  3523. content: '\f164' !important
  3524. }
  3525. .fa-thumbtack:before {
  3526. content: '\f08d' !important
  3527. }
  3528. .fa-ticket-alt:before {
  3529. content: '\f3ff' !important
  3530. }
  3531. .fa-times:before {
  3532. content: '\f00d' !important
  3533. }
  3534. .fa-times-circle:before {
  3535. content: '\f057' !important
  3536. }
  3537. .fa-tint:before {
  3538. content: '\f043' !important
  3539. }
  3540. .fa-tint-slash:before {
  3541. content: '\f5c7' !important
  3542. }
  3543. .fa-tired:before {
  3544. content: '\f5c8' !important
  3545. }
  3546. .fa-toggle-off:before {
  3547. content: '\f204' !important
  3548. }
  3549. .fa-toggle-on:before {
  3550. content: '\f205' !important
  3551. }
  3552. .fa-toilet:before {
  3553. content: '\f7d8' !important
  3554. }
  3555. .fa-toilet-paper:before {
  3556. content: '\f71e' !important
  3557. }
  3558. .fa-toolbox:before {
  3559. content: '\f552' !important
  3560. }
  3561. .fa-tools:before {
  3562. content: '\f7d9' !important
  3563. }
  3564. .fa-tooth:before {
  3565. content: '\f5c9' !important
  3566. }
  3567. .fa-torah:before {
  3568. content: '\f6a0' !important
  3569. }
  3570. .fa-torii-gate:before {
  3571. content: '\f6a1' !important
  3572. }
  3573. .fa-tractor:before {
  3574. content: '\f722' !important
  3575. }
  3576. .fa-trade-federation:before {
  3577. content: '\f513' !important
  3578. }
  3579. .fa-trademark:before {
  3580. content: '\f25c' !important
  3581. }
  3582. .fa-traffic-light:before {
  3583. content: '\f637' !important
  3584. }
  3585. .fa-train:before {
  3586. content: '\f238' !important
  3587. }
  3588. .fa-tram:before {
  3589. content: '\f7da' !important
  3590. }
  3591. .fa-transgender:before {
  3592. content: '\f224' !important
  3593. }
  3594. .fa-transgender-alt:before {
  3595. content: '\f225' !important
  3596. }
  3597. .fa-trash:before {
  3598. content: '\f2ed' !important
  3599. }
  3600. .fa-trash-alt:before {
  3601. content: '\f2ed' !important
  3602. }
  3603. .fa-tree:before {
  3604. content: '\f1bb' !important
  3605. }
  3606. .fa-trello:before {
  3607. content: '\f181' !important
  3608. }
  3609. .fa-tripadvisor:before {
  3610. content: '\f262' !important
  3611. }
  3612. .fa-trophy:before {
  3613. content: '\f091' !important
  3614. }
  3615. .fa-truck:before {
  3616. content: '\f0d1' !important
  3617. }
  3618. .fa-truck-loading:before {
  3619. content: '\f4de' !important
  3620. }
  3621. .fa-truck-monster:before {
  3622. content: '\f63b' !important
  3623. }
  3624. .fa-truck-moving:before {
  3625. content: '\f4df' !important
  3626. }
  3627. .fa-truck-pickup:before {
  3628. content: '\f63c' !important
  3629. }
  3630. .fa-tshirt:before {
  3631. content: '\f553' !important
  3632. }
  3633. .fa-tty:before {
  3634. content: '\f1e4' !important
  3635. }
  3636. .fa-tumblr:before {
  3637. content: '\f173' !important
  3638. }
  3639. .fa-tumblr-square:before {
  3640. content: '\f174' !important
  3641. }
  3642. .fa-tv:before {
  3643. content: '\f26c' !important
  3644. }
  3645. .fa-twitch:before {
  3646. content: '\f1e8' !important
  3647. }
  3648. .fa-twitter:before {
  3649. content: '\f099' !important
  3650. }
  3651. .fa-twitter-square:before {
  3652. content: '\f081' !important
  3653. }
  3654. .fa-typo3:before {
  3655. content: '\f42b' !important
  3656. }
  3657. .fa-uber:before {
  3658. content: '\f402' !important
  3659. }
  3660. .fa-ubuntu:before {
  3661. content: '\f7df' !important
  3662. }
  3663. .fa-uikit:before {
  3664. content: '\f403' !important
  3665. }
  3666. .fa-umbrella:before {
  3667. content: '\f0e9' !important
  3668. }
  3669. .fa-umbrella-beach:before {
  3670. content: '\f5ca' !important
  3671. }
  3672. .fa-underline:before {
  3673. content: '\f0cd' !important
  3674. }
  3675. .fa-undo:before {
  3676. content: '\f0e2' !important
  3677. }
  3678. .fa-undo-alt:before {
  3679. content: '\f2ea' !important
  3680. }
  3681. .fa-uniregistry:before {
  3682. content: '\f404' !important
  3683. }
  3684. .fa-universal-access:before {
  3685. content: '\f29a' !important
  3686. }
  3687. .fa-university:before {
  3688. content: '\f19c' !important
  3689. }
  3690. .fa-unlink:before {
  3691. content: '\f127' !important
  3692. }
  3693. .fa-unlock:before {
  3694. content: '\f09c' !important
  3695. }
  3696. .fa-unlock-alt:before {
  3697. content: '\f13e' !important
  3698. }
  3699. .fa-untappd:before {
  3700. content: '\f405' !important
  3701. }
  3702. .fa-upload:before {
  3703. content: '\f093' !important
  3704. }
  3705. .fa-ups:before {
  3706. content: '\f7e0' !important
  3707. }
  3708. .fa-usb:before {
  3709. content: '\f287' !important
  3710. }
  3711. .fa-user:before {
  3712. content: '\f007' !important
  3713. }
  3714. .fa-user-alt:before {
  3715. content: '\f406' !important
  3716. }
  3717. .fa-user-alt-slash:before {
  3718. content: '\f4fa' !important
  3719. }
  3720. .fa-user-astronaut:before {
  3721. content: '\f4fb' !important
  3722. }
  3723. .fa-user-check:before {
  3724. content: '\f4fc' !important
  3725. }
  3726. .fa-user-circle:before {
  3727. content: '\f2bd' !important
  3728. }
  3729. .fa-user-clock:before {
  3730. content: '\f4fd' !important
  3731. }
  3732. .fa-user-cog:before {
  3733. content: '\f4fe' !important
  3734. }
  3735. .fa-user-edit:before {
  3736. content: '\f4ff' !important
  3737. }
  3738. .fa-user-friends:before {
  3739. content: '\f500' !important
  3740. }
  3741. .fa-user-graduate:before {
  3742. content: '\f501' !important
  3743. }
  3744. .fa-user-injured:before {
  3745. content: '\f728' !important
  3746. }
  3747. .fa-user-lock:before {
  3748. content: '\f502' !important
  3749. }
  3750. .fa-user-md:before {
  3751. content: '\f0f0' !important
  3752. }
  3753. .fa-user-minus:before {
  3754. content: '\f503' !important
  3755. }
  3756. .fa-user-ninja:before {
  3757. content: '\f504' !important
  3758. }
  3759. .fa-user-plus:before {
  3760. content: '\f234' !important
  3761. }
  3762. .fa-user-secret:before {
  3763. content: '\f21b' !important
  3764. }
  3765. .fa-user-shield:before {
  3766. content: '\f505' !important
  3767. }
  3768. .fa-user-slash:before {
  3769. content: '\f506' !important
  3770. }
  3771. .fa-user-tag:before {
  3772. content: '\f507' !important
  3773. }
  3774. .fa-user-tie:before {
  3775. content: '\f508' !important
  3776. }
  3777. .fa-user-times:before {
  3778. content: '\f235' !important
  3779. }
  3780. .fa-users:before {
  3781. content: '\f0c0' !important
  3782. }
  3783. .fa-users-cog:before {
  3784. content: '\f509' !important
  3785. }
  3786. .fa-usps:before {
  3787. content: '\f7e1' !important
  3788. }
  3789. .fa-ussunnah:before {
  3790. content: '\f407' !important
  3791. }
  3792. .fa-utensil-spoon:before {
  3793. content: '\f2e5' !important
  3794. }
  3795. .fa-utensils:before {
  3796. content: '\f2e7' !important
  3797. }
  3798. .fa-vaadin:before {
  3799. content: '\f408' !important
  3800. }
  3801. .fa-vector-square:before {
  3802. content: '\f5cb' !important
  3803. }
  3804. .fa-venus:before {
  3805. content: '\f221' !important
  3806. }
  3807. .fa-venus-double:before {
  3808. content: '\f226' !important
  3809. }
  3810. .fa-venus-mars:before {
  3811. content: '\f228' !important
  3812. }
  3813. .fa-viacoin:before {
  3814. content: '\f237' !important
  3815. }
  3816. .fa-viadeo:before {
  3817. content: '\f2a9' !important
  3818. }
  3819. .fa-viadeo-square:before {
  3820. content: '\f2aa' !important
  3821. }
  3822. .fa-vial:before {
  3823. content: '\f492' !important
  3824. }
  3825. .fa-vials:before {
  3826. content: '\f493' !important
  3827. }
  3828. .fa-viber:before {
  3829. content: '\f409' !important
  3830. }
  3831. .fa-video:before {
  3832. content: '\f03d' !important
  3833. }
  3834. .fa-video-slash:before {
  3835. content: '\f4e2' !important
  3836. }
  3837. .fa-vihara:before {
  3838. content: '\f6a7' !important
  3839. }
  3840. .fa-vimeo:before {
  3841. content: '\f27d' !important
  3842. }
  3843. .fa-vimeo-square:before {
  3844. content: '\f194' !important
  3845. }
  3846. .fa-vimeo-v:before {
  3847. content: '\f27d' !important
  3848. }
  3849. .fa-vine:before {
  3850. content: '\f1ca' !important
  3851. }
  3852. .fa-vk:before {
  3853. content: '\f189' !important
  3854. }
  3855. .fa-vnv:before {
  3856. content: '\f40b' !important
  3857. }
  3858. .fa-volleyball-ball:before {
  3859. content: '\f45f' !important
  3860. }
  3861. .fa-volume-down:before {
  3862. content: '\f027' !important
  3863. }
  3864. .fa-volume-mute:before {
  3865. content: '\f6a9' !important
  3866. }
  3867. .fa-volume-off:before {
  3868. content: '\f026' !important
  3869. }
  3870. .fa-volume-up:before {
  3871. content: '\f028' !important
  3872. }
  3873. .fa-vote-yea:before {
  3874. content: '\f772' !important
  3875. }
  3876. .fa-vr-cardboard:before {
  3877. content: '\f729' !important
  3878. }
  3879. .fa-vuejs:before {
  3880. content: '\f41f' !important
  3881. }
  3882. .fa-walking:before {
  3883. content: '\f554' !important
  3884. }
  3885. .fa-wallet:before {
  3886. content: '\f555' !important
  3887. }
  3888. .fa-warehouse:before {
  3889. content: '\f494' !important
  3890. }
  3891. .fa-water:before {
  3892. content: '\f773' !important
  3893. }
  3894. .fa-weebly:before {
  3895. content: '\f5cc' !important
  3896. }
  3897. .fa-weibo:before {
  3898. content: '\f18a' !important
  3899. }
  3900. .fa-weight:before {
  3901. content: '\f496' !important
  3902. }
  3903. .fa-weight-hanging:before {
  3904. content: '\f5cd' !important
  3905. }
  3906. .fa-weixin:before {
  3907. content: '\f1d7' !important
  3908. }
  3909. .fa-whatsapp:before {
  3910. content: '\f232' !important
  3911. }
  3912. .fa-whatsapp-square:before {
  3913. content: '\f40c' !important
  3914. }
  3915. .fa-wheelchair:before {
  3916. content: '\f193' !important
  3917. }
  3918. .fa-whmcs:before {
  3919. content: '\f40d' !important
  3920. }
  3921. .fa-wifi:before {
  3922. content: '\f1eb' !important
  3923. }
  3924. .fa-wikipedia-w:before {
  3925. content: '\f266' !important
  3926. }
  3927. .fa-wind:before {
  3928. content: '\f72e' !important
  3929. }
  3930. .fa-window-close:before {
  3931. content: '\f410' !important
  3932. }
  3933. .fa-window-maximize:before {
  3934. content: '\f2d0' !important
  3935. }
  3936. .fa-window-minimize:before {
  3937. content: '\f2d1' !important
  3938. }
  3939. .fa-window-restore:before {
  3940. content: '\f2d2' !important
  3941. }
  3942. .fa-windows:before {
  3943. content: '\f17a' !important
  3944. }
  3945. .fa-wine-bottle:before {
  3946. content: '\f72f' !important
  3947. }
  3948. .fa-wine-glass:before {
  3949. content: '\f4e3' !important
  3950. }
  3951. .fa-wine-glass-alt:before {
  3952. content: '\f5ce' !important
  3953. }
  3954. .fa-wix:before {
  3955. content: '\f5cf' !important
  3956. }
  3957. .fa-wizards-of-the-coast:before {
  3958. content: '\f730' !important
  3959. }
  3960. .fa-wolf-pack-battalion:before {
  3961. content: '\f514' !important
  3962. }
  3963. .fa-won-sign:before {
  3964. content: '\f159' !important
  3965. }
  3966. .fa-wordpress:before {
  3967. content: '\f19a' !important
  3968. }
  3969. .fa-wordpress-simple:before {
  3970. content: '\f411' !important
  3971. }
  3972. .fa-wpbeginner:before {
  3973. content: '\f297' !important
  3974. }
  3975. .fa-wpexplorer:before {
  3976. content: '\f2de' !important
  3977. }
  3978. .fa-wpforms:before {
  3979. content: '\f298' !important
  3980. }
  3981. .fa-wpressr:before {
  3982. content: '\f3e4' !important
  3983. }
  3984. .fa-wrench:before {
  3985. content: '\f0ad' !important
  3986. }
  3987. .fa-x-ray:before {
  3988. content: '\f497' !important
  3989. }
  3990. .fa-xbox:before {
  3991. content: '\f412' !important
  3992. }
  3993. .fa-xing:before {
  3994. content: '\f168' !important
  3995. }
  3996. .fa-xing-square:before {
  3997. content: '\f169' !important
  3998. }
  3999. .fa-y-combinator:before {
  4000. content: '\f23b' !important
  4001. }
  4002. .fa-yahoo:before {
  4003. content: '\f19e' !important
  4004. }
  4005. .fa-yandex:before {
  4006. content: '\f413' !important
  4007. }
  4008. .fa-yandex-international:before {
  4009. content: '\f414' !important
  4010. }
  4011. .fa-yarn:before {
  4012. content: '\f7e3' !important
  4013. }
  4014. .fa-yelp:before {
  4015. content: '\f1e9' !important
  4016. }
  4017. .fa-yen-sign:before {
  4018. content: '\f157' !important
  4019. }
  4020. .fa-yin-yang:before {
  4021. content: '\f6ad' !important
  4022. }
  4023. .fa-yoast:before {
  4024. content: '\f2b1' !important
  4025. }
  4026. .fa-youtube:before {
  4027. content: '\f167' !important
  4028. }
  4029. .fa-youtube-square:before {
  4030. content: '\f167' !important
  4031. }
  4032. .fa-zhihu:before {
  4033. content: '\f63f' !important
  4034. }
  4035. .fa-lg {
  4036. font-size: 1.33333em;
  4037. line-height: 0.75em;
  4038. vertical-align: -0.0667em
  4039. }
  4040. .fa-xs {
  4041. font-size: 0.75em
  4042. }
  4043. .fa-sm {
  4044. font-size: 0.875em
  4045. }
  4046. .fa-1x {
  4047. font-size: 1em
  4048. }
  4049. .fa-2x {
  4050. font-size: 2em
  4051. }
  4052. .fa-3x {
  4053. font-size: 3em
  4054. }
  4055. .fa-4x {
  4056. font-size: 4em
  4057. }
  4058. .fa-5x {
  4059. font-size: 5em
  4060. }
  4061. .fa-6x {
  4062. font-size: 6em
  4063. }
  4064. .fa-7x {
  4065. font-size: 7em
  4066. }
  4067. .fa-8x {
  4068. font-size: 8em
  4069. }
  4070. .fa-9x {
  4071. font-size: 9em
  4072. }
  4073. .fa-10x {
  4074. font-size: 10em
  4075. }
  4076. .fa-ul {
  4077. list-style-type: none;
  4078. margin-left: 2.5em;
  4079. padding-left: 0
  4080. }
  4081. .fa-ul > li {
  4082. position: relative
  4083. }
  4084. .fa-li {
  4085. left: -2em;
  4086. position: absolute;
  4087. text-align: center;
  4088. width: 2em;
  4089. line-height: inherit
  4090. }
  4091. .fa-rotate-90 {
  4092. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  4093. transform: rotate(90deg)
  4094. }
  4095. .fa-rotate-180 {
  4096. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  4097. transform: rotate(180deg)
  4098. }
  4099. .fa-rotate-270 {
  4100. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  4101. transform: rotate(270deg)
  4102. }
  4103. .fa-flip-horizontal {
  4104. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  4105. transform: scale(-1, 1)
  4106. }
  4107. .fa-flip-vertical {
  4108. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  4109. transform: scale(1, -1)
  4110. }
  4111. .fa-flip-horizontal.fa-flip-vertical {
  4112. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  4113. transform: scale(-1, -1)
  4114. }
  4115. :root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-flip-horizontal, :root .fa-flip-vertical {
  4116. filter: none
  4117. }
  4118. .sr-only {
  4119. border: 0;
  4120. clip: rect(0, 0, 0, 0);
  4121. height: 1px;
  4122. margin: -1px;
  4123. overflow: hidden;
  4124. padding: 0;
  4125. position: absolute;
  4126. width: 1px
  4127. }
  4128. .sr-only-focusable:active, .sr-only-focusable:focus {
  4129. clip: auto;
  4130. height: auto;
  4131. margin: 0;
  4132. overflow: visible;
  4133. position: static;
  4134. width: auto
  4135. }
  4136. .fa-stack {
  4137. display: inline-block;
  4138. height: 2em;
  4139. line-height: 2em;
  4140. position: relative;
  4141. vertical-align: middle;
  4142. width: 2.5em
  4143. }
  4144. .fa-stack-1x, .fa-stack-2x {
  4145. left: 0;
  4146. position: absolute;
  4147. text-align: center;
  4148. width: 100%
  4149. }
  4150. .fa-stack-1x {
  4151. line-height: inherit
  4152. }
  4153. .fa-stack-2x {
  4154. font-size: 2em
  4155. }
  4156. .fa-inverse {
  4157. color: #fff
  4158. }
  4159. @font-face {
  4160. font-family: 'Font Awesome 5 Brands';
  4161. font-style: normal;
  4162. font-weight: normal;
  4163. src: url('fonts/fa-brands-400.eot');
  4164. src: url('fonts/fa-brands-400.eot?#iefix') format('embedded-opentype'), url('fonts/fa-brands-400.woff2') format('woff2'), url('fonts/fa-brands-400.woff') format('woff'), url('fonts/fa-brands-400.ttf') format('truetype'), url('fonts/fa-brands-400.svg#fontawesome') format('svg')
  4165. }
  4166. .fab {
  4167. font-family: 'Font Awesome 5 Brands'
  4168. }
  4169. @font-face {
  4170. font-family: 'Font Awesome 5 Free Regular';
  4171. font-style: normal;
  4172. font-weight: 400;
  4173. src: url('fonts/fa-regular-400.eot');
  4174. src: url('fonts/fa-regular-400.eot?#iefix') format('embedded-opentype'), url('fonts/fa-regular-400.woff2') format('woff2'), url('fonts/fa-regular-400.woff') format('woff'), url('fonts/fa-regular-400.ttf') format('truetype'), url('fonts/fa-regular-400.svg#fontawesome') format('svg')
  4175. }
  4176. .far {
  4177. font-family: 'Font Awesome 5 Free Regular';
  4178. font-weight: 400
  4179. }
  4180. @font-face {
  4181. font-family: 'Font Awesome 5 Free';
  4182. font-style: normal;
  4183. font-weight: 900;
  4184. src: url('fonts/fa-solid-900.eot');
  4185. src: url('fonts/fa-solid-900.eot?#iefix') format('embedded-opentype'), url('fonts/fa-solid-900.woff2') format('woff2'), url('fonts/fa-solid-900.woff') format('woff'), url('fonts/fa-solid-900.ttf') format('truetype'), url('fonts/fa-solid-900.svg#fontawesome') format('svg')
  4186. }
  4187. .fa, .fas {
  4188. font-family: 'Font Awesome 5 Free';
  4189. font-weight: 900
  4190. }
  4191. .x-fa:before, .x-fas:before {
  4192. font-family: 'Font Awesome 5 Free' !important
  4193. }
  4194. .x-far:before {
  4195. font-family: 'Font Awesome 5 Free Regular' !important
  4196. }
  4197. .x-fab:before {
  4198. font-family: 'Font Awesome 5 Brands' !important
  4199. }