all.css 130 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876
  1. /*!
  2. * Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com
  3. * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
  4. * Copyright 2024 Fonticons, Inc.
  5. */
  6. .fa {
  7. font-family: var(--fa-style-family, "Font Awesome 6 Free");
  8. font-weight: var(--fa-style, 900); }
  9. .fa-solid,
  10. .fa-regular,
  11. .fa-brands,
  12. .fas,
  13. .far,
  14. .fab,
  15. .fa-sharp-solid,
  16. .fa-classic,
  17. .fa {
  18. -moz-osx-font-smoothing: grayscale;
  19. -webkit-font-smoothing: antialiased;
  20. display: var(--fa-display, inline-block);
  21. font-style: normal;
  22. font-variant: normal;
  23. line-height: 1;
  24. text-rendering: auto; }
  25. .fas,
  26. .fa-classic,
  27. .fa-solid,
  28. .far,
  29. .fa-regular {
  30. font-family: 'Font Awesome 6 Free'; }
  31. .fab,
  32. .fa-brands {
  33. font-family: 'Font Awesome 6 Brands'; }
  34. .fa-1x {
  35. font-size: 1em; }
  36. .fa-2x {
  37. font-size: 2em; }
  38. .fa-3x {
  39. font-size: 3em; }
  40. .fa-4x {
  41. font-size: 4em; }
  42. .fa-5x {
  43. font-size: 5em; }
  44. .fa-6x {
  45. font-size: 6em; }
  46. .fa-7x {
  47. font-size: 7em; }
  48. .fa-8x {
  49. font-size: 8em; }
  50. .fa-9x {
  51. font-size: 9em; }
  52. .fa-10x {
  53. font-size: 10em; }
  54. .fa-2xs {
  55. font-size: 0.625em;
  56. line-height: 0.1em;
  57. vertical-align: 0.225em; }
  58. .fa-xs {
  59. font-size: 0.75em;
  60. line-height: 0.08333em;
  61. vertical-align: 0.125em; }
  62. .fa-sm {
  63. font-size: 0.875em;
  64. line-height: 0.07143em;
  65. vertical-align: 0.05357em; }
  66. .fa-lg {
  67. font-size: 1.25em;
  68. line-height: 0.05em;
  69. vertical-align: -0.075em; }
  70. .fa-xl {
  71. font-size: 1.5em;
  72. line-height: 0.04167em;
  73. vertical-align: -0.125em; }
  74. .fa-2xl {
  75. font-size: 2em;
  76. line-height: 0.03125em;
  77. vertical-align: -0.1875em; }
  78. .fa-fw {
  79. text-align: center;
  80. width: 1.25em; }
  81. .fa-ul {
  82. list-style-type: none;
  83. margin-left: var(--fa-li-margin, 2.5em);
  84. padding-left: 0; }
  85. .fa-ul > li {
  86. position: relative; }
  87. .fa-li {
  88. left: calc(-1 * var(--fa-li-width, 2em));
  89. position: absolute;
  90. text-align: center;
  91. width: var(--fa-li-width, 2em);
  92. line-height: inherit; }
  93. .fa-border {
  94. border-color: var(--fa-border-color, #eee);
  95. border-radius: var(--fa-border-radius, 0.1em);
  96. border-style: var(--fa-border-style, solid);
  97. border-width: var(--fa-border-width, 0.08em);
  98. padding: var(--fa-border-padding, 0.2em 0.25em 0.15em); }
  99. .fa-pull-left {
  100. float: left;
  101. margin-right: var(--fa-pull-margin, 0.3em); }
  102. .fa-pull-right {
  103. float: right;
  104. margin-left: var(--fa-pull-margin, 0.3em); }
  105. .fa-beat {
  106. animation-name: fa-beat;
  107. animation-delay: var(--fa-animation-delay, 0s);
  108. animation-direction: var(--fa-animation-direction, normal);
  109. animation-duration: var(--fa-animation-duration, 1s);
  110. animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  111. animation-timing-function: var(--fa-animation-timing, ease-in-out); }
  112. .fa-bounce {
  113. animation-name: fa-bounce;
  114. animation-delay: var(--fa-animation-delay, 0s);
  115. animation-direction: var(--fa-animation-direction, normal);
  116. animation-duration: var(--fa-animation-duration, 1s);
  117. animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  118. animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); }
  119. .fa-fade {
  120. animation-name: fa-fade;
  121. animation-delay: var(--fa-animation-delay, 0s);
  122. animation-direction: var(--fa-animation-direction, normal);
  123. animation-duration: var(--fa-animation-duration, 1s);
  124. animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  125. animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); }
  126. .fa-beat-fade {
  127. animation-name: fa-beat-fade;
  128. animation-delay: var(--fa-animation-delay, 0s);
  129. animation-direction: var(--fa-animation-direction, normal);
  130. animation-duration: var(--fa-animation-duration, 1s);
  131. animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  132. animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); }
  133. .fa-flip {
  134. animation-name: fa-flip;
  135. animation-delay: var(--fa-animation-delay, 0s);
  136. animation-direction: var(--fa-animation-direction, normal);
  137. animation-duration: var(--fa-animation-duration, 1s);
  138. animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  139. animation-timing-function: var(--fa-animation-timing, ease-in-out); }
  140. .fa-shake {
  141. animation-name: fa-shake;
  142. animation-delay: var(--fa-animation-delay, 0s);
  143. animation-direction: var(--fa-animation-direction, normal);
  144. animation-duration: var(--fa-animation-duration, 1s);
  145. animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  146. animation-timing-function: var(--fa-animation-timing, linear); }
  147. .fa-spin {
  148. animation-name: fa-spin;
  149. animation-delay: var(--fa-animation-delay, 0s);
  150. animation-direction: var(--fa-animation-direction, normal);
  151. animation-duration: var(--fa-animation-duration, 2s);
  152. animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  153. animation-timing-function: var(--fa-animation-timing, linear); }
  154. .fa-spin-reverse {
  155. --fa-animation-direction: reverse; }
  156. .fa-pulse,
  157. .fa-spin-pulse {
  158. animation-name: fa-spin;
  159. animation-direction: var(--fa-animation-direction, normal);
  160. animation-duration: var(--fa-animation-duration, 1s);
  161. animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  162. animation-timing-function: var(--fa-animation-timing, steps(8)); }
  163. @media (prefers-reduced-motion: reduce) {
  164. .fa-beat,
  165. .fa-bounce,
  166. .fa-fade,
  167. .fa-beat-fade,
  168. .fa-flip,
  169. .fa-pulse,
  170. .fa-shake,
  171. .fa-spin,
  172. .fa-spin-pulse {
  173. animation-delay: -1ms;
  174. animation-duration: 1ms;
  175. animation-iteration-count: 1;
  176. transition-delay: 0s;
  177. transition-duration: 0s; } }
  178. @keyframes fa-beat {
  179. 0%, 90% {
  180. transform: scale(1); }
  181. 45% {
  182. transform: scale(var(--fa-beat-scale, 1.25)); } }
  183. @keyframes fa-bounce {
  184. 0% {
  185. transform: scale(1, 1) translateY(0); }
  186. 10% {
  187. transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); }
  188. 30% {
  189. transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); }
  190. 50% {
  191. transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); }
  192. 57% {
  193. transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); }
  194. 64% {
  195. transform: scale(1, 1) translateY(0); }
  196. 100% {
  197. transform: scale(1, 1) translateY(0); } }
  198. @keyframes fa-fade {
  199. 50% {
  200. opacity: var(--fa-fade-opacity, 0.4); } }
  201. @keyframes fa-beat-fade {
  202. 0%, 100% {
  203. opacity: var(--fa-beat-fade-opacity, 0.4);
  204. transform: scale(1); }
  205. 50% {
  206. opacity: 1;
  207. transform: scale(var(--fa-beat-fade-scale, 1.125)); } }
  208. @keyframes fa-flip {
  209. 50% {
  210. transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } }
  211. @keyframes fa-shake {
  212. 0% {
  213. transform: rotate(-15deg); }
  214. 4% {
  215. transform: rotate(15deg); }
  216. 8%, 24% {
  217. transform: rotate(-18deg); }
  218. 12%, 28% {
  219. transform: rotate(18deg); }
  220. 16% {
  221. transform: rotate(-22deg); }
  222. 20% {
  223. transform: rotate(22deg); }
  224. 32% {
  225. transform: rotate(-12deg); }
  226. 36% {
  227. transform: rotate(12deg); }
  228. 40%, 100% {
  229. transform: rotate(0deg); } }
  230. @keyframes fa-spin {
  231. 0% {
  232. transform: rotate(0deg); }
  233. 100% {
  234. transform: rotate(360deg); } }
  235. .fa-rotate-90 {
  236. transform: rotate(90deg); }
  237. .fa-rotate-180 {
  238. transform: rotate(180deg); }
  239. .fa-rotate-270 {
  240. transform: rotate(270deg); }
  241. .fa-flip-horizontal {
  242. transform: scale(-1, 1); }
  243. .fa-flip-vertical {
  244. transform: scale(1, -1); }
  245. .fa-flip-both,
  246. .fa-flip-horizontal.fa-flip-vertical {
  247. transform: scale(-1, -1); }
  248. .fa-rotate-by {
  249. transform: rotate(var(--fa-rotate-angle, 0)); }
  250. .fa-stack {
  251. display: inline-block;
  252. height: 2em;
  253. line-height: 2em;
  254. position: relative;
  255. vertical-align: middle;
  256. width: 2.5em; }
  257. .fa-stack-1x,
  258. .fa-stack-2x {
  259. left: 0;
  260. position: absolute;
  261. text-align: center;
  262. width: 100%;
  263. z-index: var(--fa-stack-z-index, auto); }
  264. .fa-stack-1x {
  265. line-height: inherit; }
  266. .fa-stack-2x {
  267. font-size: 2em; }
  268. .fa-inverse {
  269. color: var(--fa-inverse, #fff); }
  270. /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
  271. readers do not read off random characters that represent icons */
  272. .fa-0::before {
  273. content: "\30"; }
  274. .fa-1::before {
  275. content: "\31"; }
  276. .fa-2::before {
  277. content: "\32"; }
  278. .fa-3::before {
  279. content: "\33"; }
  280. .fa-4::before {
  281. content: "\34"; }
  282. .fa-5::before {
  283. content: "\35"; }
  284. .fa-6::before {
  285. content: "\36"; }
  286. .fa-7::before {
  287. content: "\37"; }
  288. .fa-8::before {
  289. content: "\38"; }
  290. .fa-9::before {
  291. content: "\39"; }
  292. .fa-fill-drip::before {
  293. content: "\f576"; }
  294. .fa-arrows-to-circle::before {
  295. content: "\e4bd"; }
  296. .fa-circle-chevron-right::before {
  297. content: "\f138"; }
  298. .fa-chevron-circle-right::before {
  299. content: "\f138"; }
  300. .fa-at::before {
  301. content: "\40"; }
  302. .fa-trash-can::before {
  303. content: "\f2ed"; }
  304. .fa-trash-alt::before {
  305. content: "\f2ed"; }
  306. .fa-text-height::before {
  307. content: "\f034"; }
  308. .fa-user-xmark::before {
  309. content: "\f235"; }
  310. .fa-user-times::before {
  311. content: "\f235"; }
  312. .fa-stethoscope::before {
  313. content: "\f0f1"; }
  314. .fa-message::before {
  315. content: "\f27a"; }
  316. .fa-comment-alt::before {
  317. content: "\f27a"; }
  318. .fa-info::before {
  319. content: "\f129"; }
  320. .fa-down-left-and-up-right-to-center::before {
  321. content: "\f422"; }
  322. .fa-compress-alt::before {
  323. content: "\f422"; }
  324. .fa-explosion::before {
  325. content: "\e4e9"; }
  326. .fa-file-lines::before {
  327. content: "\f15c"; }
  328. .fa-file-alt::before {
  329. content: "\f15c"; }
  330. .fa-file-text::before {
  331. content: "\f15c"; }
  332. .fa-wave-square::before {
  333. content: "\f83e"; }
  334. .fa-ring::before {
  335. content: "\f70b"; }
  336. .fa-building-un::before {
  337. content: "\e4d9"; }
  338. .fa-dice-three::before {
  339. content: "\f527"; }
  340. .fa-calendar-days::before {
  341. content: "\f073"; }
  342. .fa-calendar-alt::before {
  343. content: "\f073"; }
  344. .fa-anchor-circle-check::before {
  345. content: "\e4aa"; }
  346. .fa-building-circle-arrow-right::before {
  347. content: "\e4d1"; }
  348. .fa-volleyball::before {
  349. content: "\f45f"; }
  350. .fa-volleyball-ball::before {
  351. content: "\f45f"; }
  352. .fa-arrows-up-to-line::before {
  353. content: "\e4c2"; }
  354. .fa-sort-down::before {
  355. content: "\f0dd"; }
  356. .fa-sort-desc::before {
  357. content: "\f0dd"; }
  358. .fa-circle-minus::before {
  359. content: "\f056"; }
  360. .fa-minus-circle::before {
  361. content: "\f056"; }
  362. .fa-door-open::before {
  363. content: "\f52b"; }
  364. .fa-right-from-bracket::before {
  365. content: "\f2f5"; }
  366. .fa-sign-out-alt::before {
  367. content: "\f2f5"; }
  368. .fa-atom::before {
  369. content: "\f5d2"; }
  370. .fa-soap::before {
  371. content: "\e06e"; }
  372. .fa-icons::before {
  373. content: "\f86d"; }
  374. .fa-heart-music-camera-bolt::before {
  375. content: "\f86d"; }
  376. .fa-microphone-lines-slash::before {
  377. content: "\f539"; }
  378. .fa-microphone-alt-slash::before {
  379. content: "\f539"; }
  380. .fa-bridge-circle-check::before {
  381. content: "\e4c9"; }
  382. .fa-pump-medical::before {
  383. content: "\e06a"; }
  384. .fa-fingerprint::before {
  385. content: "\f577"; }
  386. .fa-hand-point-right::before {
  387. content: "\f0a4"; }
  388. .fa-magnifying-glass-location::before {
  389. content: "\f689"; }
  390. .fa-search-location::before {
  391. content: "\f689"; }
  392. .fa-forward-step::before {
  393. content: "\f051"; }
  394. .fa-step-forward::before {
  395. content: "\f051"; }
  396. .fa-face-smile-beam::before {
  397. content: "\f5b8"; }
  398. .fa-smile-beam::before {
  399. content: "\f5b8"; }
  400. .fa-flag-checkered::before {
  401. content: "\f11e"; }
  402. .fa-football::before {
  403. content: "\f44e"; }
  404. .fa-football-ball::before {
  405. content: "\f44e"; }
  406. .fa-school-circle-exclamation::before {
  407. content: "\e56c"; }
  408. .fa-crop::before {
  409. content: "\f125"; }
  410. .fa-angles-down::before {
  411. content: "\f103"; }
  412. .fa-angle-double-down::before {
  413. content: "\f103"; }
  414. .fa-users-rectangle::before {
  415. content: "\e594"; }
  416. .fa-people-roof::before {
  417. content: "\e537"; }
  418. .fa-people-line::before {
  419. content: "\e534"; }
  420. .fa-beer-mug-empty::before {
  421. content: "\f0fc"; }
  422. .fa-beer::before {
  423. content: "\f0fc"; }
  424. .fa-diagram-predecessor::before {
  425. content: "\e477"; }
  426. .fa-arrow-up-long::before {
  427. content: "\f176"; }
  428. .fa-long-arrow-up::before {
  429. content: "\f176"; }
  430. .fa-fire-flame-simple::before {
  431. content: "\f46a"; }
  432. .fa-burn::before {
  433. content: "\f46a"; }
  434. .fa-person::before {
  435. content: "\f183"; }
  436. .fa-male::before {
  437. content: "\f183"; }
  438. .fa-laptop::before {
  439. content: "\f109"; }
  440. .fa-file-csv::before {
  441. content: "\f6dd"; }
  442. .fa-menorah::before {
  443. content: "\f676"; }
  444. .fa-truck-plane::before {
  445. content: "\e58f"; }
  446. .fa-record-vinyl::before {
  447. content: "\f8d9"; }
  448. .fa-face-grin-stars::before {
  449. content: "\f587"; }
  450. .fa-grin-stars::before {
  451. content: "\f587"; }
  452. .fa-bong::before {
  453. content: "\f55c"; }
  454. .fa-spaghetti-monster-flying::before {
  455. content: "\f67b"; }
  456. .fa-pastafarianism::before {
  457. content: "\f67b"; }
  458. .fa-arrow-down-up-across-line::before {
  459. content: "\e4af"; }
  460. .fa-spoon::before {
  461. content: "\f2e5"; }
  462. .fa-utensil-spoon::before {
  463. content: "\f2e5"; }
  464. .fa-jar-wheat::before {
  465. content: "\e517"; }
  466. .fa-envelopes-bulk::before {
  467. content: "\f674"; }
  468. .fa-mail-bulk::before {
  469. content: "\f674"; }
  470. .fa-file-circle-exclamation::before {
  471. content: "\e4eb"; }
  472. .fa-circle-h::before {
  473. content: "\f47e"; }
  474. .fa-hospital-symbol::before {
  475. content: "\f47e"; }
  476. .fa-pager::before {
  477. content: "\f815"; }
  478. .fa-address-book::before {
  479. content: "\f2b9"; }
  480. .fa-contact-book::before {
  481. content: "\f2b9"; }
  482. .fa-strikethrough::before {
  483. content: "\f0cc"; }
  484. .fa-k::before {
  485. content: "\4b"; }
  486. .fa-landmark-flag::before {
  487. content: "\e51c"; }
  488. .fa-pencil::before {
  489. content: "\f303"; }
  490. .fa-pencil-alt::before {
  491. content: "\f303"; }
  492. .fa-backward::before {
  493. content: "\f04a"; }
  494. .fa-caret-right::before {
  495. content: "\f0da"; }
  496. .fa-comments::before {
  497. content: "\f086"; }
  498. .fa-paste::before {
  499. content: "\f0ea"; }
  500. .fa-file-clipboard::before {
  501. content: "\f0ea"; }
  502. .fa-code-pull-request::before {
  503. content: "\e13c"; }
  504. .fa-clipboard-list::before {
  505. content: "\f46d"; }
  506. .fa-truck-ramp-box::before {
  507. content: "\f4de"; }
  508. .fa-truck-loading::before {
  509. content: "\f4de"; }
  510. .fa-user-check::before {
  511. content: "\f4fc"; }
  512. .fa-vial-virus::before {
  513. content: "\e597"; }
  514. .fa-sheet-plastic::before {
  515. content: "\e571"; }
  516. .fa-blog::before {
  517. content: "\f781"; }
  518. .fa-user-ninja::before {
  519. content: "\f504"; }
  520. .fa-person-arrow-up-from-line::before {
  521. content: "\e539"; }
  522. .fa-scroll-torah::before {
  523. content: "\f6a0"; }
  524. .fa-torah::before {
  525. content: "\f6a0"; }
  526. .fa-broom-ball::before {
  527. content: "\f458"; }
  528. .fa-quidditch::before {
  529. content: "\f458"; }
  530. .fa-quidditch-broom-ball::before {
  531. content: "\f458"; }
  532. .fa-toggle-off::before {
  533. content: "\f204"; }
  534. .fa-box-archive::before {
  535. content: "\f187"; }
  536. .fa-archive::before {
  537. content: "\f187"; }
  538. .fa-person-drowning::before {
  539. content: "\e545"; }
  540. .fa-arrow-down-9-1::before {
  541. content: "\f886"; }
  542. .fa-sort-numeric-desc::before {
  543. content: "\f886"; }
  544. .fa-sort-numeric-down-alt::before {
  545. content: "\f886"; }
  546. .fa-face-grin-tongue-squint::before {
  547. content: "\f58a"; }
  548. .fa-grin-tongue-squint::before {
  549. content: "\f58a"; }
  550. .fa-spray-can::before {
  551. content: "\f5bd"; }
  552. .fa-truck-monster::before {
  553. content: "\f63b"; }
  554. .fa-w::before {
  555. content: "\57"; }
  556. .fa-earth-africa::before {
  557. content: "\f57c"; }
  558. .fa-globe-africa::before {
  559. content: "\f57c"; }
  560. .fa-rainbow::before {
  561. content: "\f75b"; }
  562. .fa-circle-notch::before {
  563. content: "\f1ce"; }
  564. .fa-tablet-screen-button::before {
  565. content: "\f3fa"; }
  566. .fa-tablet-alt::before {
  567. content: "\f3fa"; }
  568. .fa-paw::before {
  569. content: "\f1b0"; }
  570. .fa-cloud::before {
  571. content: "\f0c2"; }
  572. .fa-trowel-bricks::before {
  573. content: "\e58a"; }
  574. .fa-face-flushed::before {
  575. content: "\f579"; }
  576. .fa-flushed::before {
  577. content: "\f579"; }
  578. .fa-hospital-user::before {
  579. content: "\f80d"; }
  580. .fa-tent-arrow-left-right::before {
  581. content: "\e57f"; }
  582. .fa-gavel::before {
  583. content: "\f0e3"; }
  584. .fa-legal::before {
  585. content: "\f0e3"; }
  586. .fa-binoculars::before {
  587. content: "\f1e5"; }
  588. .fa-microphone-slash::before {
  589. content: "\f131"; }
  590. .fa-box-tissue::before {
  591. content: "\e05b"; }
  592. .fa-motorcycle::before {
  593. content: "\f21c"; }
  594. .fa-bell-concierge::before {
  595. content: "\f562"; }
  596. .fa-concierge-bell::before {
  597. content: "\f562"; }
  598. .fa-pen-ruler::before {
  599. content: "\f5ae"; }
  600. .fa-pencil-ruler::before {
  601. content: "\f5ae"; }
  602. .fa-people-arrows::before {
  603. content: "\e068"; }
  604. .fa-people-arrows-left-right::before {
  605. content: "\e068"; }
  606. .fa-mars-and-venus-burst::before {
  607. content: "\e523"; }
  608. .fa-square-caret-right::before {
  609. content: "\f152"; }
  610. .fa-caret-square-right::before {
  611. content: "\f152"; }
  612. .fa-scissors::before {
  613. content: "\f0c4"; }
  614. .fa-cut::before {
  615. content: "\f0c4"; }
  616. .fa-sun-plant-wilt::before {
  617. content: "\e57a"; }
  618. .fa-toilets-portable::before {
  619. content: "\e584"; }
  620. .fa-hockey-puck::before {
  621. content: "\f453"; }
  622. .fa-table::before {
  623. content: "\f0ce"; }
  624. .fa-magnifying-glass-arrow-right::before {
  625. content: "\e521"; }
  626. .fa-tachograph-digital::before {
  627. content: "\f566"; }
  628. .fa-digital-tachograph::before {
  629. content: "\f566"; }
  630. .fa-users-slash::before {
  631. content: "\e073"; }
  632. .fa-clover::before {
  633. content: "\e139"; }
  634. .fa-reply::before {
  635. content: "\f3e5"; }
  636. .fa-mail-reply::before {
  637. content: "\f3e5"; }
  638. .fa-star-and-crescent::before {
  639. content: "\f699"; }
  640. .fa-house-fire::before {
  641. content: "\e50c"; }
  642. .fa-square-minus::before {
  643. content: "\f146"; }
  644. .fa-minus-square::before {
  645. content: "\f146"; }
  646. .fa-helicopter::before {
  647. content: "\f533"; }
  648. .fa-compass::before {
  649. content: "\f14e"; }
  650. .fa-square-caret-down::before {
  651. content: "\f150"; }
  652. .fa-caret-square-down::before {
  653. content: "\f150"; }
  654. .fa-file-circle-question::before {
  655. content: "\e4ef"; }
  656. .fa-laptop-code::before {
  657. content: "\f5fc"; }
  658. .fa-swatchbook::before {
  659. content: "\f5c3"; }
  660. .fa-prescription-bottle::before {
  661. content: "\f485"; }
  662. .fa-bars::before {
  663. content: "\f0c9"; }
  664. .fa-navicon::before {
  665. content: "\f0c9"; }
  666. .fa-people-group::before {
  667. content: "\e533"; }
  668. .fa-hourglass-end::before {
  669. content: "\f253"; }
  670. .fa-hourglass-3::before {
  671. content: "\f253"; }
  672. .fa-heart-crack::before {
  673. content: "\f7a9"; }
  674. .fa-heart-broken::before {
  675. content: "\f7a9"; }
  676. .fa-square-up-right::before {
  677. content: "\f360"; }
  678. .fa-external-link-square-alt::before {
  679. content: "\f360"; }
  680. .fa-face-kiss-beam::before {
  681. content: "\f597"; }
  682. .fa-kiss-beam::before {
  683. content: "\f597"; }
  684. .fa-film::before {
  685. content: "\f008"; }
  686. .fa-ruler-horizontal::before {
  687. content: "\f547"; }
  688. .fa-people-robbery::before {
  689. content: "\e536"; }
  690. .fa-lightbulb::before {
  691. content: "\f0eb"; }
  692. .fa-caret-left::before {
  693. content: "\f0d9"; }
  694. .fa-circle-exclamation::before {
  695. content: "\f06a"; }
  696. .fa-exclamation-circle::before {
  697. content: "\f06a"; }
  698. .fa-school-circle-xmark::before {
  699. content: "\e56d"; }
  700. .fa-arrow-right-from-bracket::before {
  701. content: "\f08b"; }
  702. .fa-sign-out::before {
  703. content: "\f08b"; }
  704. .fa-circle-chevron-down::before {
  705. content: "\f13a"; }
  706. .fa-chevron-circle-down::before {
  707. content: "\f13a"; }
  708. .fa-unlock-keyhole::before {
  709. content: "\f13e"; }
  710. .fa-unlock-alt::before {
  711. content: "\f13e"; }
  712. .fa-cloud-showers-heavy::before {
  713. content: "\f740"; }
  714. .fa-headphones-simple::before {
  715. content: "\f58f"; }
  716. .fa-headphones-alt::before {
  717. content: "\f58f"; }
  718. .fa-sitemap::before {
  719. content: "\f0e8"; }
  720. .fa-circle-dollar-to-slot::before {
  721. content: "\f4b9"; }
  722. .fa-donate::before {
  723. content: "\f4b9"; }
  724. .fa-memory::before {
  725. content: "\f538"; }
  726. .fa-road-spikes::before {
  727. content: "\e568"; }
  728. .fa-fire-burner::before {
  729. content: "\e4f1"; }
  730. .fa-flag::before {
  731. content: "\f024"; }
  732. .fa-hanukiah::before {
  733. content: "\f6e6"; }
  734. .fa-feather::before {
  735. content: "\f52d"; }
  736. .fa-volume-low::before {
  737. content: "\f027"; }
  738. .fa-volume-down::before {
  739. content: "\f027"; }
  740. .fa-comment-slash::before {
  741. content: "\f4b3"; }
  742. .fa-cloud-sun-rain::before {
  743. content: "\f743"; }
  744. .fa-compress::before {
  745. content: "\f066"; }
  746. .fa-wheat-awn::before {
  747. content: "\e2cd"; }
  748. .fa-wheat-alt::before {
  749. content: "\e2cd"; }
  750. .fa-ankh::before {
  751. content: "\f644"; }
  752. .fa-hands-holding-child::before {
  753. content: "\e4fa"; }
  754. .fa-asterisk::before {
  755. content: "\2a"; }
  756. .fa-square-check::before {
  757. content: "\f14a"; }
  758. .fa-check-square::before {
  759. content: "\f14a"; }
  760. .fa-peseta-sign::before {
  761. content: "\e221"; }
  762. .fa-heading::before {
  763. content: "\f1dc"; }
  764. .fa-header::before {
  765. content: "\f1dc"; }
  766. .fa-ghost::before {
  767. content: "\f6e2"; }
  768. .fa-list::before {
  769. content: "\f03a"; }
  770. .fa-list-squares::before {
  771. content: "\f03a"; }
  772. .fa-square-phone-flip::before {
  773. content: "\f87b"; }
  774. .fa-phone-square-alt::before {
  775. content: "\f87b"; }
  776. .fa-cart-plus::before {
  777. content: "\f217"; }
  778. .fa-gamepad::before {
  779. content: "\f11b"; }
  780. .fa-circle-dot::before {
  781. content: "\f192"; }
  782. .fa-dot-circle::before {
  783. content: "\f192"; }
  784. .fa-face-dizzy::before {
  785. content: "\f567"; }
  786. .fa-dizzy::before {
  787. content: "\f567"; }
  788. .fa-egg::before {
  789. content: "\f7fb"; }
  790. .fa-house-medical-circle-xmark::before {
  791. content: "\e513"; }
  792. .fa-campground::before {
  793. content: "\f6bb"; }
  794. .fa-folder-plus::before {
  795. content: "\f65e"; }
  796. .fa-futbol::before {
  797. content: "\f1e3"; }
  798. .fa-futbol-ball::before {
  799. content: "\f1e3"; }
  800. .fa-soccer-ball::before {
  801. content: "\f1e3"; }
  802. .fa-paintbrush::before {
  803. content: "\f1fc"; }
  804. .fa-paint-brush::before {
  805. content: "\f1fc"; }
  806. .fa-lock::before {
  807. content: "\f023"; }
  808. .fa-gas-pump::before {
  809. content: "\f52f"; }
  810. .fa-hot-tub-person::before {
  811. content: "\f593"; }
  812. .fa-hot-tub::before {
  813. content: "\f593"; }
  814. .fa-map-location::before {
  815. content: "\f59f"; }
  816. .fa-map-marked::before {
  817. content: "\f59f"; }
  818. .fa-house-flood-water::before {
  819. content: "\e50e"; }
  820. .fa-tree::before {
  821. content: "\f1bb"; }
  822. .fa-bridge-lock::before {
  823. content: "\e4cc"; }
  824. .fa-sack-dollar::before {
  825. content: "\f81d"; }
  826. .fa-pen-to-square::before {
  827. content: "\f044"; }
  828. .fa-edit::before {
  829. content: "\f044"; }
  830. .fa-car-side::before {
  831. content: "\f5e4"; }
  832. .fa-share-nodes::before {
  833. content: "\f1e0"; }
  834. .fa-share-alt::before {
  835. content: "\f1e0"; }
  836. .fa-heart-circle-minus::before {
  837. content: "\e4ff"; }
  838. .fa-hourglass-half::before {
  839. content: "\f252"; }
  840. .fa-hourglass-2::before {
  841. content: "\f252"; }
  842. .fa-microscope::before {
  843. content: "\f610"; }
  844. .fa-sink::before {
  845. content: "\e06d"; }
  846. .fa-bag-shopping::before {
  847. content: "\f290"; }
  848. .fa-shopping-bag::before {
  849. content: "\f290"; }
  850. .fa-arrow-down-z-a::before {
  851. content: "\f881"; }
  852. .fa-sort-alpha-desc::before {
  853. content: "\f881"; }
  854. .fa-sort-alpha-down-alt::before {
  855. content: "\f881"; }
  856. .fa-mitten::before {
  857. content: "\f7b5"; }
  858. .fa-person-rays::before {
  859. content: "\e54d"; }
  860. .fa-users::before {
  861. content: "\f0c0"; }
  862. .fa-eye-slash::before {
  863. content: "\f070"; }
  864. .fa-flask-vial::before {
  865. content: "\e4f3"; }
  866. .fa-hand::before {
  867. content: "\f256"; }
  868. .fa-hand-paper::before {
  869. content: "\f256"; }
  870. .fa-om::before {
  871. content: "\f679"; }
  872. .fa-worm::before {
  873. content: "\e599"; }
  874. .fa-house-circle-xmark::before {
  875. content: "\e50b"; }
  876. .fa-plug::before {
  877. content: "\f1e6"; }
  878. .fa-chevron-up::before {
  879. content: "\f077"; }
  880. .fa-hand-spock::before {
  881. content: "\f259"; }
  882. .fa-stopwatch::before {
  883. content: "\f2f2"; }
  884. .fa-face-kiss::before {
  885. content: "\f596"; }
  886. .fa-kiss::before {
  887. content: "\f596"; }
  888. .fa-bridge-circle-xmark::before {
  889. content: "\e4cb"; }
  890. .fa-face-grin-tongue::before {
  891. content: "\f589"; }
  892. .fa-grin-tongue::before {
  893. content: "\f589"; }
  894. .fa-chess-bishop::before {
  895. content: "\f43a"; }
  896. .fa-face-grin-wink::before {
  897. content: "\f58c"; }
  898. .fa-grin-wink::before {
  899. content: "\f58c"; }
  900. .fa-ear-deaf::before {
  901. content: "\f2a4"; }
  902. .fa-deaf::before {
  903. content: "\f2a4"; }
  904. .fa-deafness::before {
  905. content: "\f2a4"; }
  906. .fa-hard-of-hearing::before {
  907. content: "\f2a4"; }
  908. .fa-road-circle-check::before {
  909. content: "\e564"; }
  910. .fa-dice-five::before {
  911. content: "\f523"; }
  912. .fa-square-rss::before {
  913. content: "\f143"; }
  914. .fa-rss-square::before {
  915. content: "\f143"; }
  916. .fa-land-mine-on::before {
  917. content: "\e51b"; }
  918. .fa-i-cursor::before {
  919. content: "\f246"; }
  920. .fa-stamp::before {
  921. content: "\f5bf"; }
  922. .fa-stairs::before {
  923. content: "\e289"; }
  924. .fa-i::before {
  925. content: "\49"; }
  926. .fa-hryvnia-sign::before {
  927. content: "\f6f2"; }
  928. .fa-hryvnia::before {
  929. content: "\f6f2"; }
  930. .fa-pills::before {
  931. content: "\f484"; }
  932. .fa-face-grin-wide::before {
  933. content: "\f581"; }
  934. .fa-grin-alt::before {
  935. content: "\f581"; }
  936. .fa-tooth::before {
  937. content: "\f5c9"; }
  938. .fa-v::before {
  939. content: "\56"; }
  940. .fa-bangladeshi-taka-sign::before {
  941. content: "\e2e6"; }
  942. .fa-bicycle::before {
  943. content: "\f206"; }
  944. .fa-staff-snake::before {
  945. content: "\e579"; }
  946. .fa-rod-asclepius::before {
  947. content: "\e579"; }
  948. .fa-rod-snake::before {
  949. content: "\e579"; }
  950. .fa-staff-aesculapius::before {
  951. content: "\e579"; }
  952. .fa-head-side-cough-slash::before {
  953. content: "\e062"; }
  954. .fa-truck-medical::before {
  955. content: "\f0f9"; }
  956. .fa-ambulance::before {
  957. content: "\f0f9"; }
  958. .fa-wheat-awn-circle-exclamation::before {
  959. content: "\e598"; }
  960. .fa-snowman::before {
  961. content: "\f7d0"; }
  962. .fa-mortar-pestle::before {
  963. content: "\f5a7"; }
  964. .fa-road-barrier::before {
  965. content: "\e562"; }
  966. .fa-school::before {
  967. content: "\f549"; }
  968. .fa-igloo::before {
  969. content: "\f7ae"; }
  970. .fa-joint::before {
  971. content: "\f595"; }
  972. .fa-angle-right::before {
  973. content: "\f105"; }
  974. .fa-horse::before {
  975. content: "\f6f0"; }
  976. .fa-q::before {
  977. content: "\51"; }
  978. .fa-g::before {
  979. content: "\47"; }
  980. .fa-notes-medical::before {
  981. content: "\f481"; }
  982. .fa-temperature-half::before {
  983. content: "\f2c9"; }
  984. .fa-temperature-2::before {
  985. content: "\f2c9"; }
  986. .fa-thermometer-2::before {
  987. content: "\f2c9"; }
  988. .fa-thermometer-half::before {
  989. content: "\f2c9"; }
  990. .fa-dong-sign::before {
  991. content: "\e169"; }
  992. .fa-capsules::before {
  993. content: "\f46b"; }
  994. .fa-poo-storm::before {
  995. content: "\f75a"; }
  996. .fa-poo-bolt::before {
  997. content: "\f75a"; }
  998. .fa-face-frown-open::before {
  999. content: "\f57a"; }
  1000. .fa-frown-open::before {
  1001. content: "\f57a"; }
  1002. .fa-hand-point-up::before {
  1003. content: "\f0a6"; }
  1004. .fa-money-bill::before {
  1005. content: "\f0d6"; }
  1006. .fa-bookmark::before {
  1007. content: "\f02e"; }
  1008. .fa-align-justify::before {
  1009. content: "\f039"; }
  1010. .fa-umbrella-beach::before {
  1011. content: "\f5ca"; }
  1012. .fa-helmet-un::before {
  1013. content: "\e503"; }
  1014. .fa-bullseye::before {
  1015. content: "\f140"; }
  1016. .fa-bacon::before {
  1017. content: "\f7e5"; }
  1018. .fa-hand-point-down::before {
  1019. content: "\f0a7"; }
  1020. .fa-arrow-up-from-bracket::before {
  1021. content: "\e09a"; }
  1022. .fa-folder::before {
  1023. content: "\f07b"; }
  1024. .fa-folder-blank::before {
  1025. content: "\f07b"; }
  1026. .fa-file-waveform::before {
  1027. content: "\f478"; }
  1028. .fa-file-medical-alt::before {
  1029. content: "\f478"; }
  1030. .fa-radiation::before {
  1031. content: "\f7b9"; }
  1032. .fa-chart-simple::before {
  1033. content: "\e473"; }
  1034. .fa-mars-stroke::before {
  1035. content: "\f229"; }
  1036. .fa-vial::before {
  1037. content: "\f492"; }
  1038. .fa-gauge::before {
  1039. content: "\f624"; }
  1040. .fa-dashboard::before {
  1041. content: "\f624"; }
  1042. .fa-gauge-med::before {
  1043. content: "\f624"; }
  1044. .fa-tachometer-alt-average::before {
  1045. content: "\f624"; }
  1046. .fa-wand-magic-sparkles::before {
  1047. content: "\e2ca"; }
  1048. .fa-magic-wand-sparkles::before {
  1049. content: "\e2ca"; }
  1050. .fa-e::before {
  1051. content: "\45"; }
  1052. .fa-pen-clip::before {
  1053. content: "\f305"; }
  1054. .fa-pen-alt::before {
  1055. content: "\f305"; }
  1056. .fa-bridge-circle-exclamation::before {
  1057. content: "\e4ca"; }
  1058. .fa-user::before {
  1059. content: "\f007"; }
  1060. .fa-school-circle-check::before {
  1061. content: "\e56b"; }
  1062. .fa-dumpster::before {
  1063. content: "\f793"; }
  1064. .fa-van-shuttle::before {
  1065. content: "\f5b6"; }
  1066. .fa-shuttle-van::before {
  1067. content: "\f5b6"; }
  1068. .fa-building-user::before {
  1069. content: "\e4da"; }
  1070. .fa-square-caret-left::before {
  1071. content: "\f191"; }
  1072. .fa-caret-square-left::before {
  1073. content: "\f191"; }
  1074. .fa-highlighter::before {
  1075. content: "\f591"; }
  1076. .fa-key::before {
  1077. content: "\f084"; }
  1078. .fa-bullhorn::before {
  1079. content: "\f0a1"; }
  1080. .fa-globe::before {
  1081. content: "\f0ac"; }
  1082. .fa-synagogue::before {
  1083. content: "\f69b"; }
  1084. .fa-person-half-dress::before {
  1085. content: "\e548"; }
  1086. .fa-road-bridge::before {
  1087. content: "\e563"; }
  1088. .fa-location-arrow::before {
  1089. content: "\f124"; }
  1090. .fa-c::before {
  1091. content: "\43"; }
  1092. .fa-tablet-button::before {
  1093. content: "\f10a"; }
  1094. .fa-building-lock::before {
  1095. content: "\e4d6"; }
  1096. .fa-pizza-slice::before {
  1097. content: "\f818"; }
  1098. .fa-money-bill-wave::before {
  1099. content: "\f53a"; }
  1100. .fa-chart-area::before {
  1101. content: "\f1fe"; }
  1102. .fa-area-chart::before {
  1103. content: "\f1fe"; }
  1104. .fa-house-flag::before {
  1105. content: "\e50d"; }
  1106. .fa-person-circle-minus::before {
  1107. content: "\e540"; }
  1108. .fa-ban::before {
  1109. content: "\f05e"; }
  1110. .fa-cancel::before {
  1111. content: "\f05e"; }
  1112. .fa-camera-rotate::before {
  1113. content: "\e0d8"; }
  1114. .fa-spray-can-sparkles::before {
  1115. content: "\f5d0"; }
  1116. .fa-air-freshener::before {
  1117. content: "\f5d0"; }
  1118. .fa-star::before {
  1119. content: "\f005"; }
  1120. .fa-repeat::before {
  1121. content: "\f363"; }
  1122. .fa-cross::before {
  1123. content: "\f654"; }
  1124. .fa-box::before {
  1125. content: "\f466"; }
  1126. .fa-venus-mars::before {
  1127. content: "\f228"; }
  1128. .fa-arrow-pointer::before {
  1129. content: "\f245"; }
  1130. .fa-mouse-pointer::before {
  1131. content: "\f245"; }
  1132. .fa-maximize::before {
  1133. content: "\f31e"; }
  1134. .fa-expand-arrows-alt::before {
  1135. content: "\f31e"; }
  1136. .fa-charging-station::before {
  1137. content: "\f5e7"; }
  1138. .fa-shapes::before {
  1139. content: "\f61f"; }
  1140. .fa-triangle-circle-square::before {
  1141. content: "\f61f"; }
  1142. .fa-shuffle::before {
  1143. content: "\f074"; }
  1144. .fa-random::before {
  1145. content: "\f074"; }
  1146. .fa-person-running::before {
  1147. content: "\f70c"; }
  1148. .fa-running::before {
  1149. content: "\f70c"; }
  1150. .fa-mobile-retro::before {
  1151. content: "\e527"; }
  1152. .fa-grip-lines-vertical::before {
  1153. content: "\f7a5"; }
  1154. .fa-spider::before {
  1155. content: "\f717"; }
  1156. .fa-hands-bound::before {
  1157. content: "\e4f9"; }
  1158. .fa-file-invoice-dollar::before {
  1159. content: "\f571"; }
  1160. .fa-plane-circle-exclamation::before {
  1161. content: "\e556"; }
  1162. .fa-x-ray::before {
  1163. content: "\f497"; }
  1164. .fa-spell-check::before {
  1165. content: "\f891"; }
  1166. .fa-slash::before {
  1167. content: "\f715"; }
  1168. .fa-computer-mouse::before {
  1169. content: "\f8cc"; }
  1170. .fa-mouse::before {
  1171. content: "\f8cc"; }
  1172. .fa-arrow-right-to-bracket::before {
  1173. content: "\f090"; }
  1174. .fa-sign-in::before {
  1175. content: "\f090"; }
  1176. .fa-shop-slash::before {
  1177. content: "\e070"; }
  1178. .fa-store-alt-slash::before {
  1179. content: "\e070"; }
  1180. .fa-server::before {
  1181. content: "\f233"; }
  1182. .fa-virus-covid-slash::before {
  1183. content: "\e4a9"; }
  1184. .fa-shop-lock::before {
  1185. content: "\e4a5"; }
  1186. .fa-hourglass-start::before {
  1187. content: "\f251"; }
  1188. .fa-hourglass-1::before {
  1189. content: "\f251"; }
  1190. .fa-blender-phone::before {
  1191. content: "\f6b6"; }
  1192. .fa-building-wheat::before {
  1193. content: "\e4db"; }
  1194. .fa-person-breastfeeding::before {
  1195. content: "\e53a"; }
  1196. .fa-right-to-bracket::before {
  1197. content: "\f2f6"; }
  1198. .fa-sign-in-alt::before {
  1199. content: "\f2f6"; }
  1200. .fa-venus::before {
  1201. content: "\f221"; }
  1202. .fa-passport::before {
  1203. content: "\f5ab"; }
  1204. .fa-thumbtack-slash::before {
  1205. content: "\e68f"; }
  1206. .fa-thumb-tack-slash::before {
  1207. content: "\e68f"; }
  1208. .fa-heart-pulse::before {
  1209. content: "\f21e"; }
  1210. .fa-heartbeat::before {
  1211. content: "\f21e"; }
  1212. .fa-people-carry-box::before {
  1213. content: "\f4ce"; }
  1214. .fa-people-carry::before {
  1215. content: "\f4ce"; }
  1216. .fa-temperature-high::before {
  1217. content: "\f769"; }
  1218. .fa-microchip::before {
  1219. content: "\f2db"; }
  1220. .fa-crown::before {
  1221. content: "\f521"; }
  1222. .fa-weight-hanging::before {
  1223. content: "\f5cd"; }
  1224. .fa-xmarks-lines::before {
  1225. content: "\e59a"; }
  1226. .fa-file-prescription::before {
  1227. content: "\f572"; }
  1228. .fa-weight-scale::before {
  1229. content: "\f496"; }
  1230. .fa-weight::before {
  1231. content: "\f496"; }
  1232. .fa-user-group::before {
  1233. content: "\f500"; }
  1234. .fa-user-friends::before {
  1235. content: "\f500"; }
  1236. .fa-arrow-up-a-z::before {
  1237. content: "\f15e"; }
  1238. .fa-sort-alpha-up::before {
  1239. content: "\f15e"; }
  1240. .fa-chess-knight::before {
  1241. content: "\f441"; }
  1242. .fa-face-laugh-squint::before {
  1243. content: "\f59b"; }
  1244. .fa-laugh-squint::before {
  1245. content: "\f59b"; }
  1246. .fa-wheelchair::before {
  1247. content: "\f193"; }
  1248. .fa-circle-arrow-up::before {
  1249. content: "\f0aa"; }
  1250. .fa-arrow-circle-up::before {
  1251. content: "\f0aa"; }
  1252. .fa-toggle-on::before {
  1253. content: "\f205"; }
  1254. .fa-person-walking::before {
  1255. content: "\f554"; }
  1256. .fa-walking::before {
  1257. content: "\f554"; }
  1258. .fa-l::before {
  1259. content: "\4c"; }
  1260. .fa-fire::before {
  1261. content: "\f06d"; }
  1262. .fa-bed-pulse::before {
  1263. content: "\f487"; }
  1264. .fa-procedures::before {
  1265. content: "\f487"; }
  1266. .fa-shuttle-space::before {
  1267. content: "\f197"; }
  1268. .fa-space-shuttle::before {
  1269. content: "\f197"; }
  1270. .fa-face-laugh::before {
  1271. content: "\f599"; }
  1272. .fa-laugh::before {
  1273. content: "\f599"; }
  1274. .fa-folder-open::before {
  1275. content: "\f07c"; }
  1276. .fa-heart-circle-plus::before {
  1277. content: "\e500"; }
  1278. .fa-code-fork::before {
  1279. content: "\e13b"; }
  1280. .fa-city::before {
  1281. content: "\f64f"; }
  1282. .fa-microphone-lines::before {
  1283. content: "\f3c9"; }
  1284. .fa-microphone-alt::before {
  1285. content: "\f3c9"; }
  1286. .fa-pepper-hot::before {
  1287. content: "\f816"; }
  1288. .fa-unlock::before {
  1289. content: "\f09c"; }
  1290. .fa-colon-sign::before {
  1291. content: "\e140"; }
  1292. .fa-headset::before {
  1293. content: "\f590"; }
  1294. .fa-store-slash::before {
  1295. content: "\e071"; }
  1296. .fa-road-circle-xmark::before {
  1297. content: "\e566"; }
  1298. .fa-user-minus::before {
  1299. content: "\f503"; }
  1300. .fa-mars-stroke-up::before {
  1301. content: "\f22a"; }
  1302. .fa-mars-stroke-v::before {
  1303. content: "\f22a"; }
  1304. .fa-champagne-glasses::before {
  1305. content: "\f79f"; }
  1306. .fa-glass-cheers::before {
  1307. content: "\f79f"; }
  1308. .fa-clipboard::before {
  1309. content: "\f328"; }
  1310. .fa-house-circle-exclamation::before {
  1311. content: "\e50a"; }
  1312. .fa-file-arrow-up::before {
  1313. content: "\f574"; }
  1314. .fa-file-upload::before {
  1315. content: "\f574"; }
  1316. .fa-wifi::before {
  1317. content: "\f1eb"; }
  1318. .fa-wifi-3::before {
  1319. content: "\f1eb"; }
  1320. .fa-wifi-strong::before {
  1321. content: "\f1eb"; }
  1322. .fa-bath::before {
  1323. content: "\f2cd"; }
  1324. .fa-bathtub::before {
  1325. content: "\f2cd"; }
  1326. .fa-underline::before {
  1327. content: "\f0cd"; }
  1328. .fa-user-pen::before {
  1329. content: "\f4ff"; }
  1330. .fa-user-edit::before {
  1331. content: "\f4ff"; }
  1332. .fa-signature::before {
  1333. content: "\f5b7"; }
  1334. .fa-stroopwafel::before {
  1335. content: "\f551"; }
  1336. .fa-bold::before {
  1337. content: "\f032"; }
  1338. .fa-anchor-lock::before {
  1339. content: "\e4ad"; }
  1340. .fa-building-ngo::before {
  1341. content: "\e4d7"; }
  1342. .fa-manat-sign::before {
  1343. content: "\e1d5"; }
  1344. .fa-not-equal::before {
  1345. content: "\f53e"; }
  1346. .fa-border-top-left::before {
  1347. content: "\f853"; }
  1348. .fa-border-style::before {
  1349. content: "\f853"; }
  1350. .fa-map-location-dot::before {
  1351. content: "\f5a0"; }
  1352. .fa-map-marked-alt::before {
  1353. content: "\f5a0"; }
  1354. .fa-jedi::before {
  1355. content: "\f669"; }
  1356. .fa-square-poll-vertical::before {
  1357. content: "\f681"; }
  1358. .fa-poll::before {
  1359. content: "\f681"; }
  1360. .fa-mug-hot::before {
  1361. content: "\f7b6"; }
  1362. .fa-car-battery::before {
  1363. content: "\f5df"; }
  1364. .fa-battery-car::before {
  1365. content: "\f5df"; }
  1366. .fa-gift::before {
  1367. content: "\f06b"; }
  1368. .fa-dice-two::before {
  1369. content: "\f528"; }
  1370. .fa-chess-queen::before {
  1371. content: "\f445"; }
  1372. .fa-glasses::before {
  1373. content: "\f530"; }
  1374. .fa-chess-board::before {
  1375. content: "\f43c"; }
  1376. .fa-building-circle-check::before {
  1377. content: "\e4d2"; }
  1378. .fa-person-chalkboard::before {
  1379. content: "\e53d"; }
  1380. .fa-mars-stroke-right::before {
  1381. content: "\f22b"; }
  1382. .fa-mars-stroke-h::before {
  1383. content: "\f22b"; }
  1384. .fa-hand-back-fist::before {
  1385. content: "\f255"; }
  1386. .fa-hand-rock::before {
  1387. content: "\f255"; }
  1388. .fa-square-caret-up::before {
  1389. content: "\f151"; }
  1390. .fa-caret-square-up::before {
  1391. content: "\f151"; }
  1392. .fa-cloud-showers-water::before {
  1393. content: "\e4e4"; }
  1394. .fa-chart-bar::before {
  1395. content: "\f080"; }
  1396. .fa-bar-chart::before {
  1397. content: "\f080"; }
  1398. .fa-hands-bubbles::before {
  1399. content: "\e05e"; }
  1400. .fa-hands-wash::before {
  1401. content: "\e05e"; }
  1402. .fa-less-than-equal::before {
  1403. content: "\f537"; }
  1404. .fa-train::before {
  1405. content: "\f238"; }
  1406. .fa-eye-low-vision::before {
  1407. content: "\f2a8"; }
  1408. .fa-low-vision::before {
  1409. content: "\f2a8"; }
  1410. .fa-crow::before {
  1411. content: "\f520"; }
  1412. .fa-sailboat::before {
  1413. content: "\e445"; }
  1414. .fa-window-restore::before {
  1415. content: "\f2d2"; }
  1416. .fa-square-plus::before {
  1417. content: "\f0fe"; }
  1418. .fa-plus-square::before {
  1419. content: "\f0fe"; }
  1420. .fa-torii-gate::before {
  1421. content: "\f6a1"; }
  1422. .fa-frog::before {
  1423. content: "\f52e"; }
  1424. .fa-bucket::before {
  1425. content: "\e4cf"; }
  1426. .fa-image::before {
  1427. content: "\f03e"; }
  1428. .fa-microphone::before {
  1429. content: "\f130"; }
  1430. .fa-cow::before {
  1431. content: "\f6c8"; }
  1432. .fa-caret-up::before {
  1433. content: "\f0d8"; }
  1434. .fa-screwdriver::before {
  1435. content: "\f54a"; }
  1436. .fa-folder-closed::before {
  1437. content: "\e185"; }
  1438. .fa-house-tsunami::before {
  1439. content: "\e515"; }
  1440. .fa-square-nfi::before {
  1441. content: "\e576"; }
  1442. .fa-arrow-up-from-ground-water::before {
  1443. content: "\e4b5"; }
  1444. .fa-martini-glass::before {
  1445. content: "\f57b"; }
  1446. .fa-glass-martini-alt::before {
  1447. content: "\f57b"; }
  1448. .fa-rotate-left::before {
  1449. content: "\f2ea"; }
  1450. .fa-rotate-back::before {
  1451. content: "\f2ea"; }
  1452. .fa-rotate-backward::before {
  1453. content: "\f2ea"; }
  1454. .fa-undo-alt::before {
  1455. content: "\f2ea"; }
  1456. .fa-table-columns::before {
  1457. content: "\f0db"; }
  1458. .fa-columns::before {
  1459. content: "\f0db"; }
  1460. .fa-lemon::before {
  1461. content: "\f094"; }
  1462. .fa-head-side-mask::before {
  1463. content: "\e063"; }
  1464. .fa-handshake::before {
  1465. content: "\f2b5"; }
  1466. .fa-gem::before {
  1467. content: "\f3a5"; }
  1468. .fa-dolly::before {
  1469. content: "\f472"; }
  1470. .fa-dolly-box::before {
  1471. content: "\f472"; }
  1472. .fa-smoking::before {
  1473. content: "\f48d"; }
  1474. .fa-minimize::before {
  1475. content: "\f78c"; }
  1476. .fa-compress-arrows-alt::before {
  1477. content: "\f78c"; }
  1478. .fa-monument::before {
  1479. content: "\f5a6"; }
  1480. .fa-snowplow::before {
  1481. content: "\f7d2"; }
  1482. .fa-angles-right::before {
  1483. content: "\f101"; }
  1484. .fa-angle-double-right::before {
  1485. content: "\f101"; }
  1486. .fa-cannabis::before {
  1487. content: "\f55f"; }
  1488. .fa-circle-play::before {
  1489. content: "\f144"; }
  1490. .fa-play-circle::before {
  1491. content: "\f144"; }
  1492. .fa-tablets::before {
  1493. content: "\f490"; }
  1494. .fa-ethernet::before {
  1495. content: "\f796"; }
  1496. .fa-euro-sign::before {
  1497. content: "\f153"; }
  1498. .fa-eur::before {
  1499. content: "\f153"; }
  1500. .fa-euro::before {
  1501. content: "\f153"; }
  1502. .fa-chair::before {
  1503. content: "\f6c0"; }
  1504. .fa-circle-check::before {
  1505. content: "\f058"; }
  1506. .fa-check-circle::before {
  1507. content: "\f058"; }
  1508. .fa-circle-stop::before {
  1509. content: "\f28d"; }
  1510. .fa-stop-circle::before {
  1511. content: "\f28d"; }
  1512. .fa-compass-drafting::before {
  1513. content: "\f568"; }
  1514. .fa-drafting-compass::before {
  1515. content: "\f568"; }
  1516. .fa-plate-wheat::before {
  1517. content: "\e55a"; }
  1518. .fa-icicles::before {
  1519. content: "\f7ad"; }
  1520. .fa-person-shelter::before {
  1521. content: "\e54f"; }
  1522. .fa-neuter::before {
  1523. content: "\f22c"; }
  1524. .fa-id-badge::before {
  1525. content: "\f2c1"; }
  1526. .fa-marker::before {
  1527. content: "\f5a1"; }
  1528. .fa-face-laugh-beam::before {
  1529. content: "\f59a"; }
  1530. .fa-laugh-beam::before {
  1531. content: "\f59a"; }
  1532. .fa-helicopter-symbol::before {
  1533. content: "\e502"; }
  1534. .fa-universal-access::before {
  1535. content: "\f29a"; }
  1536. .fa-circle-chevron-up::before {
  1537. content: "\f139"; }
  1538. .fa-chevron-circle-up::before {
  1539. content: "\f139"; }
  1540. .fa-lari-sign::before {
  1541. content: "\e1c8"; }
  1542. .fa-volcano::before {
  1543. content: "\f770"; }
  1544. .fa-person-walking-dashed-line-arrow-right::before {
  1545. content: "\e553"; }
  1546. .fa-sterling-sign::before {
  1547. content: "\f154"; }
  1548. .fa-gbp::before {
  1549. content: "\f154"; }
  1550. .fa-pound-sign::before {
  1551. content: "\f154"; }
  1552. .fa-viruses::before {
  1553. content: "\e076"; }
  1554. .fa-square-person-confined::before {
  1555. content: "\e577"; }
  1556. .fa-user-tie::before {
  1557. content: "\f508"; }
  1558. .fa-arrow-down-long::before {
  1559. content: "\f175"; }
  1560. .fa-long-arrow-down::before {
  1561. content: "\f175"; }
  1562. .fa-tent-arrow-down-to-line::before {
  1563. content: "\e57e"; }
  1564. .fa-certificate::before {
  1565. content: "\f0a3"; }
  1566. .fa-reply-all::before {
  1567. content: "\f122"; }
  1568. .fa-mail-reply-all::before {
  1569. content: "\f122"; }
  1570. .fa-suitcase::before {
  1571. content: "\f0f2"; }
  1572. .fa-person-skating::before {
  1573. content: "\f7c5"; }
  1574. .fa-skating::before {
  1575. content: "\f7c5"; }
  1576. .fa-filter-circle-dollar::before {
  1577. content: "\f662"; }
  1578. .fa-funnel-dollar::before {
  1579. content: "\f662"; }
  1580. .fa-camera-retro::before {
  1581. content: "\f083"; }
  1582. .fa-circle-arrow-down::before {
  1583. content: "\f0ab"; }
  1584. .fa-arrow-circle-down::before {
  1585. content: "\f0ab"; }
  1586. .fa-file-import::before {
  1587. content: "\f56f"; }
  1588. .fa-arrow-right-to-file::before {
  1589. content: "\f56f"; }
  1590. .fa-square-arrow-up-right::before {
  1591. content: "\f14c"; }
  1592. .fa-external-link-square::before {
  1593. content: "\f14c"; }
  1594. .fa-box-open::before {
  1595. content: "\f49e"; }
  1596. .fa-scroll::before {
  1597. content: "\f70e"; }
  1598. .fa-spa::before {
  1599. content: "\f5bb"; }
  1600. .fa-location-pin-lock::before {
  1601. content: "\e51f"; }
  1602. .fa-pause::before {
  1603. content: "\f04c"; }
  1604. .fa-hill-avalanche::before {
  1605. content: "\e507"; }
  1606. .fa-temperature-empty::before {
  1607. content: "\f2cb"; }
  1608. .fa-temperature-0::before {
  1609. content: "\f2cb"; }
  1610. .fa-thermometer-0::before {
  1611. content: "\f2cb"; }
  1612. .fa-thermometer-empty::before {
  1613. content: "\f2cb"; }
  1614. .fa-bomb::before {
  1615. content: "\f1e2"; }
  1616. .fa-registered::before {
  1617. content: "\f25d"; }
  1618. .fa-address-card::before {
  1619. content: "\f2bb"; }
  1620. .fa-contact-card::before {
  1621. content: "\f2bb"; }
  1622. .fa-vcard::before {
  1623. content: "\f2bb"; }
  1624. .fa-scale-unbalanced-flip::before {
  1625. content: "\f516"; }
  1626. .fa-balance-scale-right::before {
  1627. content: "\f516"; }
  1628. .fa-subscript::before {
  1629. content: "\f12c"; }
  1630. .fa-diamond-turn-right::before {
  1631. content: "\f5eb"; }
  1632. .fa-directions::before {
  1633. content: "\f5eb"; }
  1634. .fa-burst::before {
  1635. content: "\e4dc"; }
  1636. .fa-house-laptop::before {
  1637. content: "\e066"; }
  1638. .fa-laptop-house::before {
  1639. content: "\e066"; }
  1640. .fa-face-tired::before {
  1641. content: "\f5c8"; }
  1642. .fa-tired::before {
  1643. content: "\f5c8"; }
  1644. .fa-money-bills::before {
  1645. content: "\e1f3"; }
  1646. .fa-smog::before {
  1647. content: "\f75f"; }
  1648. .fa-crutch::before {
  1649. content: "\f7f7"; }
  1650. .fa-cloud-arrow-up::before {
  1651. content: "\f0ee"; }
  1652. .fa-cloud-upload::before {
  1653. content: "\f0ee"; }
  1654. .fa-cloud-upload-alt::before {
  1655. content: "\f0ee"; }
  1656. .fa-palette::before {
  1657. content: "\f53f"; }
  1658. .fa-arrows-turn-right::before {
  1659. content: "\e4c0"; }
  1660. .fa-vest::before {
  1661. content: "\e085"; }
  1662. .fa-ferry::before {
  1663. content: "\e4ea"; }
  1664. .fa-arrows-down-to-people::before {
  1665. content: "\e4b9"; }
  1666. .fa-seedling::before {
  1667. content: "\f4d8"; }
  1668. .fa-sprout::before {
  1669. content: "\f4d8"; }
  1670. .fa-left-right::before {
  1671. content: "\f337"; }
  1672. .fa-arrows-alt-h::before {
  1673. content: "\f337"; }
  1674. .fa-boxes-packing::before {
  1675. content: "\e4c7"; }
  1676. .fa-circle-arrow-left::before {
  1677. content: "\f0a8"; }
  1678. .fa-arrow-circle-left::before {
  1679. content: "\f0a8"; }
  1680. .fa-group-arrows-rotate::before {
  1681. content: "\e4f6"; }
  1682. .fa-bowl-food::before {
  1683. content: "\e4c6"; }
  1684. .fa-candy-cane::before {
  1685. content: "\f786"; }
  1686. .fa-arrow-down-wide-short::before {
  1687. content: "\f160"; }
  1688. .fa-sort-amount-asc::before {
  1689. content: "\f160"; }
  1690. .fa-sort-amount-down::before {
  1691. content: "\f160"; }
  1692. .fa-cloud-bolt::before {
  1693. content: "\f76c"; }
  1694. .fa-thunderstorm::before {
  1695. content: "\f76c"; }
  1696. .fa-text-slash::before {
  1697. content: "\f87d"; }
  1698. .fa-remove-format::before {
  1699. content: "\f87d"; }
  1700. .fa-face-smile-wink::before {
  1701. content: "\f4da"; }
  1702. .fa-smile-wink::before {
  1703. content: "\f4da"; }
  1704. .fa-file-word::before {
  1705. content: "\f1c2"; }
  1706. .fa-file-powerpoint::before {
  1707. content: "\f1c4"; }
  1708. .fa-arrows-left-right::before {
  1709. content: "\f07e"; }
  1710. .fa-arrows-h::before {
  1711. content: "\f07e"; }
  1712. .fa-house-lock::before {
  1713. content: "\e510"; }
  1714. .fa-cloud-arrow-down::before {
  1715. content: "\f0ed"; }
  1716. .fa-cloud-download::before {
  1717. content: "\f0ed"; }
  1718. .fa-cloud-download-alt::before {
  1719. content: "\f0ed"; }
  1720. .fa-children::before {
  1721. content: "\e4e1"; }
  1722. .fa-chalkboard::before {
  1723. content: "\f51b"; }
  1724. .fa-blackboard::before {
  1725. content: "\f51b"; }
  1726. .fa-user-large-slash::before {
  1727. content: "\f4fa"; }
  1728. .fa-user-alt-slash::before {
  1729. content: "\f4fa"; }
  1730. .fa-envelope-open::before {
  1731. content: "\f2b6"; }
  1732. .fa-handshake-simple-slash::before {
  1733. content: "\e05f"; }
  1734. .fa-handshake-alt-slash::before {
  1735. content: "\e05f"; }
  1736. .fa-mattress-pillow::before {
  1737. content: "\e525"; }
  1738. .fa-guarani-sign::before {
  1739. content: "\e19a"; }
  1740. .fa-arrows-rotate::before {
  1741. content: "\f021"; }
  1742. .fa-refresh::before {
  1743. content: "\f021"; }
  1744. .fa-sync::before {
  1745. content: "\f021"; }
  1746. .fa-fire-extinguisher::before {
  1747. content: "\f134"; }
  1748. .fa-cruzeiro-sign::before {
  1749. content: "\e152"; }
  1750. .fa-greater-than-equal::before {
  1751. content: "\f532"; }
  1752. .fa-shield-halved::before {
  1753. content: "\f3ed"; }
  1754. .fa-shield-alt::before {
  1755. content: "\f3ed"; }
  1756. .fa-book-atlas::before {
  1757. content: "\f558"; }
  1758. .fa-atlas::before {
  1759. content: "\f558"; }
  1760. .fa-virus::before {
  1761. content: "\e074"; }
  1762. .fa-envelope-circle-check::before {
  1763. content: "\e4e8"; }
  1764. .fa-layer-group::before {
  1765. content: "\f5fd"; }
  1766. .fa-arrows-to-dot::before {
  1767. content: "\e4be"; }
  1768. .fa-archway::before {
  1769. content: "\f557"; }
  1770. .fa-heart-circle-check::before {
  1771. content: "\e4fd"; }
  1772. .fa-house-chimney-crack::before {
  1773. content: "\f6f1"; }
  1774. .fa-house-damage::before {
  1775. content: "\f6f1"; }
  1776. .fa-file-zipper::before {
  1777. content: "\f1c6"; }
  1778. .fa-file-archive::before {
  1779. content: "\f1c6"; }
  1780. .fa-square::before {
  1781. content: "\f0c8"; }
  1782. .fa-martini-glass-empty::before {
  1783. content: "\f000"; }
  1784. .fa-glass-martini::before {
  1785. content: "\f000"; }
  1786. .fa-couch::before {
  1787. content: "\f4b8"; }
  1788. .fa-cedi-sign::before {
  1789. content: "\e0df"; }
  1790. .fa-italic::before {
  1791. content: "\f033"; }
  1792. .fa-table-cells-column-lock::before {
  1793. content: "\e678"; }
  1794. .fa-church::before {
  1795. content: "\f51d"; }
  1796. .fa-comments-dollar::before {
  1797. content: "\f653"; }
  1798. .fa-democrat::before {
  1799. content: "\f747"; }
  1800. .fa-z::before {
  1801. content: "\5a"; }
  1802. .fa-person-skiing::before {
  1803. content: "\f7c9"; }
  1804. .fa-skiing::before {
  1805. content: "\f7c9"; }
  1806. .fa-road-lock::before {
  1807. content: "\e567"; }
  1808. .fa-a::before {
  1809. content: "\41"; }
  1810. .fa-temperature-arrow-down::before {
  1811. content: "\e03f"; }
  1812. .fa-temperature-down::before {
  1813. content: "\e03f"; }
  1814. .fa-feather-pointed::before {
  1815. content: "\f56b"; }
  1816. .fa-feather-alt::before {
  1817. content: "\f56b"; }
  1818. .fa-p::before {
  1819. content: "\50"; }
  1820. .fa-snowflake::before {
  1821. content: "\f2dc"; }
  1822. .fa-newspaper::before {
  1823. content: "\f1ea"; }
  1824. .fa-rectangle-ad::before {
  1825. content: "\f641"; }
  1826. .fa-ad::before {
  1827. content: "\f641"; }
  1828. .fa-circle-arrow-right::before {
  1829. content: "\f0a9"; }
  1830. .fa-arrow-circle-right::before {
  1831. content: "\f0a9"; }
  1832. .fa-filter-circle-xmark::before {
  1833. content: "\e17b"; }
  1834. .fa-locust::before {
  1835. content: "\e520"; }
  1836. .fa-sort::before {
  1837. content: "\f0dc"; }
  1838. .fa-unsorted::before {
  1839. content: "\f0dc"; }
  1840. .fa-list-ol::before {
  1841. content: "\f0cb"; }
  1842. .fa-list-1-2::before {
  1843. content: "\f0cb"; }
  1844. .fa-list-numeric::before {
  1845. content: "\f0cb"; }
  1846. .fa-person-dress-burst::before {
  1847. content: "\e544"; }
  1848. .fa-money-check-dollar::before {
  1849. content: "\f53d"; }
  1850. .fa-money-check-alt::before {
  1851. content: "\f53d"; }
  1852. .fa-vector-square::before {
  1853. content: "\f5cb"; }
  1854. .fa-bread-slice::before {
  1855. content: "\f7ec"; }
  1856. .fa-language::before {
  1857. content: "\f1ab"; }
  1858. .fa-face-kiss-wink-heart::before {
  1859. content: "\f598"; }
  1860. .fa-kiss-wink-heart::before {
  1861. content: "\f598"; }
  1862. .fa-filter::before {
  1863. content: "\f0b0"; }
  1864. .fa-question::before {
  1865. content: "\3f"; }
  1866. .fa-file-signature::before {
  1867. content: "\f573"; }
  1868. .fa-up-down-left-right::before {
  1869. content: "\f0b2"; }
  1870. .fa-arrows-alt::before {
  1871. content: "\f0b2"; }
  1872. .fa-house-chimney-user::before {
  1873. content: "\e065"; }
  1874. .fa-hand-holding-heart::before {
  1875. content: "\f4be"; }
  1876. .fa-puzzle-piece::before {
  1877. content: "\f12e"; }
  1878. .fa-money-check::before {
  1879. content: "\f53c"; }
  1880. .fa-star-half-stroke::before {
  1881. content: "\f5c0"; }
  1882. .fa-star-half-alt::before {
  1883. content: "\f5c0"; }
  1884. .fa-code::before {
  1885. content: "\f121"; }
  1886. .fa-whiskey-glass::before {
  1887. content: "\f7a0"; }
  1888. .fa-glass-whiskey::before {
  1889. content: "\f7a0"; }
  1890. .fa-building-circle-exclamation::before {
  1891. content: "\e4d3"; }
  1892. .fa-magnifying-glass-chart::before {
  1893. content: "\e522"; }
  1894. .fa-arrow-up-right-from-square::before {
  1895. content: "\f08e"; }
  1896. .fa-external-link::before {
  1897. content: "\f08e"; }
  1898. .fa-cubes-stacked::before {
  1899. content: "\e4e6"; }
  1900. .fa-won-sign::before {
  1901. content: "\f159"; }
  1902. .fa-krw::before {
  1903. content: "\f159"; }
  1904. .fa-won::before {
  1905. content: "\f159"; }
  1906. .fa-virus-covid::before {
  1907. content: "\e4a8"; }
  1908. .fa-austral-sign::before {
  1909. content: "\e0a9"; }
  1910. .fa-f::before {
  1911. content: "\46"; }
  1912. .fa-leaf::before {
  1913. content: "\f06c"; }
  1914. .fa-road::before {
  1915. content: "\f018"; }
  1916. .fa-taxi::before {
  1917. content: "\f1ba"; }
  1918. .fa-cab::before {
  1919. content: "\f1ba"; }
  1920. .fa-person-circle-plus::before {
  1921. content: "\e541"; }
  1922. .fa-chart-pie::before {
  1923. content: "\f200"; }
  1924. .fa-pie-chart::before {
  1925. content: "\f200"; }
  1926. .fa-bolt-lightning::before {
  1927. content: "\e0b7"; }
  1928. .fa-sack-xmark::before {
  1929. content: "\e56a"; }
  1930. .fa-file-excel::before {
  1931. content: "\f1c3"; }
  1932. .fa-file-contract::before {
  1933. content: "\f56c"; }
  1934. .fa-fish-fins::before {
  1935. content: "\e4f2"; }
  1936. .fa-building-flag::before {
  1937. content: "\e4d5"; }
  1938. .fa-face-grin-beam::before {
  1939. content: "\f582"; }
  1940. .fa-grin-beam::before {
  1941. content: "\f582"; }
  1942. .fa-object-ungroup::before {
  1943. content: "\f248"; }
  1944. .fa-poop::before {
  1945. content: "\f619"; }
  1946. .fa-location-pin::before {
  1947. content: "\f041"; }
  1948. .fa-map-marker::before {
  1949. content: "\f041"; }
  1950. .fa-kaaba::before {
  1951. content: "\f66b"; }
  1952. .fa-toilet-paper::before {
  1953. content: "\f71e"; }
  1954. .fa-helmet-safety::before {
  1955. content: "\f807"; }
  1956. .fa-hard-hat::before {
  1957. content: "\f807"; }
  1958. .fa-hat-hard::before {
  1959. content: "\f807"; }
  1960. .fa-eject::before {
  1961. content: "\f052"; }
  1962. .fa-circle-right::before {
  1963. content: "\f35a"; }
  1964. .fa-arrow-alt-circle-right::before {
  1965. content: "\f35a"; }
  1966. .fa-plane-circle-check::before {
  1967. content: "\e555"; }
  1968. .fa-face-rolling-eyes::before {
  1969. content: "\f5a5"; }
  1970. .fa-meh-rolling-eyes::before {
  1971. content: "\f5a5"; }
  1972. .fa-object-group::before {
  1973. content: "\f247"; }
  1974. .fa-chart-line::before {
  1975. content: "\f201"; }
  1976. .fa-line-chart::before {
  1977. content: "\f201"; }
  1978. .fa-mask-ventilator::before {
  1979. content: "\e524"; }
  1980. .fa-arrow-right::before {
  1981. content: "\f061"; }
  1982. .fa-signs-post::before {
  1983. content: "\f277"; }
  1984. .fa-map-signs::before {
  1985. content: "\f277"; }
  1986. .fa-cash-register::before {
  1987. content: "\f788"; }
  1988. .fa-person-circle-question::before {
  1989. content: "\e542"; }
  1990. .fa-h::before {
  1991. content: "\48"; }
  1992. .fa-tarp::before {
  1993. content: "\e57b"; }
  1994. .fa-screwdriver-wrench::before {
  1995. content: "\f7d9"; }
  1996. .fa-tools::before {
  1997. content: "\f7d9"; }
  1998. .fa-arrows-to-eye::before {
  1999. content: "\e4bf"; }
  2000. .fa-plug-circle-bolt::before {
  2001. content: "\e55b"; }
  2002. .fa-heart::before {
  2003. content: "\f004"; }
  2004. .fa-mars-and-venus::before {
  2005. content: "\f224"; }
  2006. .fa-house-user::before {
  2007. content: "\e1b0"; }
  2008. .fa-home-user::before {
  2009. content: "\e1b0"; }
  2010. .fa-dumpster-fire::before {
  2011. content: "\f794"; }
  2012. .fa-house-crack::before {
  2013. content: "\e3b1"; }
  2014. .fa-martini-glass-citrus::before {
  2015. content: "\f561"; }
  2016. .fa-cocktail::before {
  2017. content: "\f561"; }
  2018. .fa-face-surprise::before {
  2019. content: "\f5c2"; }
  2020. .fa-surprise::before {
  2021. content: "\f5c2"; }
  2022. .fa-bottle-water::before {
  2023. content: "\e4c5"; }
  2024. .fa-circle-pause::before {
  2025. content: "\f28b"; }
  2026. .fa-pause-circle::before {
  2027. content: "\f28b"; }
  2028. .fa-toilet-paper-slash::before {
  2029. content: "\e072"; }
  2030. .fa-apple-whole::before {
  2031. content: "\f5d1"; }
  2032. .fa-apple-alt::before {
  2033. content: "\f5d1"; }
  2034. .fa-kitchen-set::before {
  2035. content: "\e51a"; }
  2036. .fa-r::before {
  2037. content: "\52"; }
  2038. .fa-temperature-quarter::before {
  2039. content: "\f2ca"; }
  2040. .fa-temperature-1::before {
  2041. content: "\f2ca"; }
  2042. .fa-thermometer-1::before {
  2043. content: "\f2ca"; }
  2044. .fa-thermometer-quarter::before {
  2045. content: "\f2ca"; }
  2046. .fa-cube::before {
  2047. content: "\f1b2"; }
  2048. .fa-bitcoin-sign::before {
  2049. content: "\e0b4"; }
  2050. .fa-shield-dog::before {
  2051. content: "\e573"; }
  2052. .fa-solar-panel::before {
  2053. content: "\f5ba"; }
  2054. .fa-lock-open::before {
  2055. content: "\f3c1"; }
  2056. .fa-elevator::before {
  2057. content: "\e16d"; }
  2058. .fa-money-bill-transfer::before {
  2059. content: "\e528"; }
  2060. .fa-money-bill-trend-up::before {
  2061. content: "\e529"; }
  2062. .fa-house-flood-water-circle-arrow-right::before {
  2063. content: "\e50f"; }
  2064. .fa-square-poll-horizontal::before {
  2065. content: "\f682"; }
  2066. .fa-poll-h::before {
  2067. content: "\f682"; }
  2068. .fa-circle::before {
  2069. content: "\f111"; }
  2070. .fa-backward-fast::before {
  2071. content: "\f049"; }
  2072. .fa-fast-backward::before {
  2073. content: "\f049"; }
  2074. .fa-recycle::before {
  2075. content: "\f1b8"; }
  2076. .fa-user-astronaut::before {
  2077. content: "\f4fb"; }
  2078. .fa-plane-slash::before {
  2079. content: "\e069"; }
  2080. .fa-trademark::before {
  2081. content: "\f25c"; }
  2082. .fa-basketball::before {
  2083. content: "\f434"; }
  2084. .fa-basketball-ball::before {
  2085. content: "\f434"; }
  2086. .fa-satellite-dish::before {
  2087. content: "\f7c0"; }
  2088. .fa-circle-up::before {
  2089. content: "\f35b"; }
  2090. .fa-arrow-alt-circle-up::before {
  2091. content: "\f35b"; }
  2092. .fa-mobile-screen-button::before {
  2093. content: "\f3cd"; }
  2094. .fa-mobile-alt::before {
  2095. content: "\f3cd"; }
  2096. .fa-volume-high::before {
  2097. content: "\f028"; }
  2098. .fa-volume-up::before {
  2099. content: "\f028"; }
  2100. .fa-users-rays::before {
  2101. content: "\e593"; }
  2102. .fa-wallet::before {
  2103. content: "\f555"; }
  2104. .fa-clipboard-check::before {
  2105. content: "\f46c"; }
  2106. .fa-file-audio::before {
  2107. content: "\f1c7"; }
  2108. .fa-burger::before {
  2109. content: "\f805"; }
  2110. .fa-hamburger::before {
  2111. content: "\f805"; }
  2112. .fa-wrench::before {
  2113. content: "\f0ad"; }
  2114. .fa-bugs::before {
  2115. content: "\e4d0"; }
  2116. .fa-rupee-sign::before {
  2117. content: "\f156"; }
  2118. .fa-rupee::before {
  2119. content: "\f156"; }
  2120. .fa-file-image::before {
  2121. content: "\f1c5"; }
  2122. .fa-circle-question::before {
  2123. content: "\f059"; }
  2124. .fa-question-circle::before {
  2125. content: "\f059"; }
  2126. .fa-plane-departure::before {
  2127. content: "\f5b0"; }
  2128. .fa-handshake-slash::before {
  2129. content: "\e060"; }
  2130. .fa-book-bookmark::before {
  2131. content: "\e0bb"; }
  2132. .fa-code-branch::before {
  2133. content: "\f126"; }
  2134. .fa-hat-cowboy::before {
  2135. content: "\f8c0"; }
  2136. .fa-bridge::before {
  2137. content: "\e4c8"; }
  2138. .fa-phone-flip::before {
  2139. content: "\f879"; }
  2140. .fa-phone-alt::before {
  2141. content: "\f879"; }
  2142. .fa-truck-front::before {
  2143. content: "\e2b7"; }
  2144. .fa-cat::before {
  2145. content: "\f6be"; }
  2146. .fa-anchor-circle-exclamation::before {
  2147. content: "\e4ab"; }
  2148. .fa-truck-field::before {
  2149. content: "\e58d"; }
  2150. .fa-route::before {
  2151. content: "\f4d7"; }
  2152. .fa-clipboard-question::before {
  2153. content: "\e4e3"; }
  2154. .fa-panorama::before {
  2155. content: "\e209"; }
  2156. .fa-comment-medical::before {
  2157. content: "\f7f5"; }
  2158. .fa-teeth-open::before {
  2159. content: "\f62f"; }
  2160. .fa-file-circle-minus::before {
  2161. content: "\e4ed"; }
  2162. .fa-tags::before {
  2163. content: "\f02c"; }
  2164. .fa-wine-glass::before {
  2165. content: "\f4e3"; }
  2166. .fa-forward-fast::before {
  2167. content: "\f050"; }
  2168. .fa-fast-forward::before {
  2169. content: "\f050"; }
  2170. .fa-face-meh-blank::before {
  2171. content: "\f5a4"; }
  2172. .fa-meh-blank::before {
  2173. content: "\f5a4"; }
  2174. .fa-square-parking::before {
  2175. content: "\f540"; }
  2176. .fa-parking::before {
  2177. content: "\f540"; }
  2178. .fa-house-signal::before {
  2179. content: "\e012"; }
  2180. .fa-bars-progress::before {
  2181. content: "\f828"; }
  2182. .fa-tasks-alt::before {
  2183. content: "\f828"; }
  2184. .fa-faucet-drip::before {
  2185. content: "\e006"; }
  2186. .fa-cart-flatbed::before {
  2187. content: "\f474"; }
  2188. .fa-dolly-flatbed::before {
  2189. content: "\f474"; }
  2190. .fa-ban-smoking::before {
  2191. content: "\f54d"; }
  2192. .fa-smoking-ban::before {
  2193. content: "\f54d"; }
  2194. .fa-terminal::before {
  2195. content: "\f120"; }
  2196. .fa-mobile-button::before {
  2197. content: "\f10b"; }
  2198. .fa-house-medical-flag::before {
  2199. content: "\e514"; }
  2200. .fa-basket-shopping::before {
  2201. content: "\f291"; }
  2202. .fa-shopping-basket::before {
  2203. content: "\f291"; }
  2204. .fa-tape::before {
  2205. content: "\f4db"; }
  2206. .fa-bus-simple::before {
  2207. content: "\f55e"; }
  2208. .fa-bus-alt::before {
  2209. content: "\f55e"; }
  2210. .fa-eye::before {
  2211. content: "\f06e"; }
  2212. .fa-face-sad-cry::before {
  2213. content: "\f5b3"; }
  2214. .fa-sad-cry::before {
  2215. content: "\f5b3"; }
  2216. .fa-audio-description::before {
  2217. content: "\f29e"; }
  2218. .fa-person-military-to-person::before {
  2219. content: "\e54c"; }
  2220. .fa-file-shield::before {
  2221. content: "\e4f0"; }
  2222. .fa-user-slash::before {
  2223. content: "\f506"; }
  2224. .fa-pen::before {
  2225. content: "\f304"; }
  2226. .fa-tower-observation::before {
  2227. content: "\e586"; }
  2228. .fa-file-code::before {
  2229. content: "\f1c9"; }
  2230. .fa-signal::before {
  2231. content: "\f012"; }
  2232. .fa-signal-5::before {
  2233. content: "\f012"; }
  2234. .fa-signal-perfect::before {
  2235. content: "\f012"; }
  2236. .fa-bus::before {
  2237. content: "\f207"; }
  2238. .fa-heart-circle-xmark::before {
  2239. content: "\e501"; }
  2240. .fa-house-chimney::before {
  2241. content: "\e3af"; }
  2242. .fa-home-lg::before {
  2243. content: "\e3af"; }
  2244. .fa-window-maximize::before {
  2245. content: "\f2d0"; }
  2246. .fa-face-frown::before {
  2247. content: "\f119"; }
  2248. .fa-frown::before {
  2249. content: "\f119"; }
  2250. .fa-prescription::before {
  2251. content: "\f5b1"; }
  2252. .fa-shop::before {
  2253. content: "\f54f"; }
  2254. .fa-store-alt::before {
  2255. content: "\f54f"; }
  2256. .fa-floppy-disk::before {
  2257. content: "\f0c7"; }
  2258. .fa-save::before {
  2259. content: "\f0c7"; }
  2260. .fa-vihara::before {
  2261. content: "\f6a7"; }
  2262. .fa-scale-unbalanced::before {
  2263. content: "\f515"; }
  2264. .fa-balance-scale-left::before {
  2265. content: "\f515"; }
  2266. .fa-sort-up::before {
  2267. content: "\f0de"; }
  2268. .fa-sort-asc::before {
  2269. content: "\f0de"; }
  2270. .fa-comment-dots::before {
  2271. content: "\f4ad"; }
  2272. .fa-commenting::before {
  2273. content: "\f4ad"; }
  2274. .fa-plant-wilt::before {
  2275. content: "\e5aa"; }
  2276. .fa-diamond::before {
  2277. content: "\f219"; }
  2278. .fa-face-grin-squint::before {
  2279. content: "\f585"; }
  2280. .fa-grin-squint::before {
  2281. content: "\f585"; }
  2282. .fa-hand-holding-dollar::before {
  2283. content: "\f4c0"; }
  2284. .fa-hand-holding-usd::before {
  2285. content: "\f4c0"; }
  2286. .fa-bacterium::before {
  2287. content: "\e05a"; }
  2288. .fa-hand-pointer::before {
  2289. content: "\f25a"; }
  2290. .fa-drum-steelpan::before {
  2291. content: "\f56a"; }
  2292. .fa-hand-scissors::before {
  2293. content: "\f257"; }
  2294. .fa-hands-praying::before {
  2295. content: "\f684"; }
  2296. .fa-praying-hands::before {
  2297. content: "\f684"; }
  2298. .fa-arrow-rotate-right::before {
  2299. content: "\f01e"; }
  2300. .fa-arrow-right-rotate::before {
  2301. content: "\f01e"; }
  2302. .fa-arrow-rotate-forward::before {
  2303. content: "\f01e"; }
  2304. .fa-redo::before {
  2305. content: "\f01e"; }
  2306. .fa-biohazard::before {
  2307. content: "\f780"; }
  2308. .fa-location-crosshairs::before {
  2309. content: "\f601"; }
  2310. .fa-location::before {
  2311. content: "\f601"; }
  2312. .fa-mars-double::before {
  2313. content: "\f227"; }
  2314. .fa-child-dress::before {
  2315. content: "\e59c"; }
  2316. .fa-users-between-lines::before {
  2317. content: "\e591"; }
  2318. .fa-lungs-virus::before {
  2319. content: "\e067"; }
  2320. .fa-face-grin-tears::before {
  2321. content: "\f588"; }
  2322. .fa-grin-tears::before {
  2323. content: "\f588"; }
  2324. .fa-phone::before {
  2325. content: "\f095"; }
  2326. .fa-calendar-xmark::before {
  2327. content: "\f273"; }
  2328. .fa-calendar-times::before {
  2329. content: "\f273"; }
  2330. .fa-child-reaching::before {
  2331. content: "\e59d"; }
  2332. .fa-head-side-virus::before {
  2333. content: "\e064"; }
  2334. .fa-user-gear::before {
  2335. content: "\f4fe"; }
  2336. .fa-user-cog::before {
  2337. content: "\f4fe"; }
  2338. .fa-arrow-up-1-9::before {
  2339. content: "\f163"; }
  2340. .fa-sort-numeric-up::before {
  2341. content: "\f163"; }
  2342. .fa-door-closed::before {
  2343. content: "\f52a"; }
  2344. .fa-shield-virus::before {
  2345. content: "\e06c"; }
  2346. .fa-dice-six::before {
  2347. content: "\f526"; }
  2348. .fa-mosquito-net::before {
  2349. content: "\e52c"; }
  2350. .fa-bridge-water::before {
  2351. content: "\e4ce"; }
  2352. .fa-person-booth::before {
  2353. content: "\f756"; }
  2354. .fa-text-width::before {
  2355. content: "\f035"; }
  2356. .fa-hat-wizard::before {
  2357. content: "\f6e8"; }
  2358. .fa-pen-fancy::before {
  2359. content: "\f5ac"; }
  2360. .fa-person-digging::before {
  2361. content: "\f85e"; }
  2362. .fa-digging::before {
  2363. content: "\f85e"; }
  2364. .fa-trash::before {
  2365. content: "\f1f8"; }
  2366. .fa-gauge-simple::before {
  2367. content: "\f629"; }
  2368. .fa-gauge-simple-med::before {
  2369. content: "\f629"; }
  2370. .fa-tachometer-average::before {
  2371. content: "\f629"; }
  2372. .fa-book-medical::before {
  2373. content: "\f7e6"; }
  2374. .fa-poo::before {
  2375. content: "\f2fe"; }
  2376. .fa-quote-right::before {
  2377. content: "\f10e"; }
  2378. .fa-quote-right-alt::before {
  2379. content: "\f10e"; }
  2380. .fa-shirt::before {
  2381. content: "\f553"; }
  2382. .fa-t-shirt::before {
  2383. content: "\f553"; }
  2384. .fa-tshirt::before {
  2385. content: "\f553"; }
  2386. .fa-cubes::before {
  2387. content: "\f1b3"; }
  2388. .fa-divide::before {
  2389. content: "\f529"; }
  2390. .fa-tenge-sign::before {
  2391. content: "\f7d7"; }
  2392. .fa-tenge::before {
  2393. content: "\f7d7"; }
  2394. .fa-headphones::before {
  2395. content: "\f025"; }
  2396. .fa-hands-holding::before {
  2397. content: "\f4c2"; }
  2398. .fa-hands-clapping::before {
  2399. content: "\e1a8"; }
  2400. .fa-republican::before {
  2401. content: "\f75e"; }
  2402. .fa-arrow-left::before {
  2403. content: "\f060"; }
  2404. .fa-person-circle-xmark::before {
  2405. content: "\e543"; }
  2406. .fa-ruler::before {
  2407. content: "\f545"; }
  2408. .fa-align-left::before {
  2409. content: "\f036"; }
  2410. .fa-dice-d6::before {
  2411. content: "\f6d1"; }
  2412. .fa-restroom::before {
  2413. content: "\f7bd"; }
  2414. .fa-j::before {
  2415. content: "\4a"; }
  2416. .fa-users-viewfinder::before {
  2417. content: "\e595"; }
  2418. .fa-file-video::before {
  2419. content: "\f1c8"; }
  2420. .fa-up-right-from-square::before {
  2421. content: "\f35d"; }
  2422. .fa-external-link-alt::before {
  2423. content: "\f35d"; }
  2424. .fa-table-cells::before {
  2425. content: "\f00a"; }
  2426. .fa-th::before {
  2427. content: "\f00a"; }
  2428. .fa-file-pdf::before {
  2429. content: "\f1c1"; }
  2430. .fa-book-bible::before {
  2431. content: "\f647"; }
  2432. .fa-bible::before {
  2433. content: "\f647"; }
  2434. .fa-o::before {
  2435. content: "\4f"; }
  2436. .fa-suitcase-medical::before {
  2437. content: "\f0fa"; }
  2438. .fa-medkit::before {
  2439. content: "\f0fa"; }
  2440. .fa-user-secret::before {
  2441. content: "\f21b"; }
  2442. .fa-otter::before {
  2443. content: "\f700"; }
  2444. .fa-person-dress::before {
  2445. content: "\f182"; }
  2446. .fa-female::before {
  2447. content: "\f182"; }
  2448. .fa-comment-dollar::before {
  2449. content: "\f651"; }
  2450. .fa-business-time::before {
  2451. content: "\f64a"; }
  2452. .fa-briefcase-clock::before {
  2453. content: "\f64a"; }
  2454. .fa-table-cells-large::before {
  2455. content: "\f009"; }
  2456. .fa-th-large::before {
  2457. content: "\f009"; }
  2458. .fa-book-tanakh::before {
  2459. content: "\f827"; }
  2460. .fa-tanakh::before {
  2461. content: "\f827"; }
  2462. .fa-phone-volume::before {
  2463. content: "\f2a0"; }
  2464. .fa-volume-control-phone::before {
  2465. content: "\f2a0"; }
  2466. .fa-hat-cowboy-side::before {
  2467. content: "\f8c1"; }
  2468. .fa-clipboard-user::before {
  2469. content: "\f7f3"; }
  2470. .fa-child::before {
  2471. content: "\f1ae"; }
  2472. .fa-lira-sign::before {
  2473. content: "\f195"; }
  2474. .fa-satellite::before {
  2475. content: "\f7bf"; }
  2476. .fa-plane-lock::before {
  2477. content: "\e558"; }
  2478. .fa-tag::before {
  2479. content: "\f02b"; }
  2480. .fa-comment::before {
  2481. content: "\f075"; }
  2482. .fa-cake-candles::before {
  2483. content: "\f1fd"; }
  2484. .fa-birthday-cake::before {
  2485. content: "\f1fd"; }
  2486. .fa-cake::before {
  2487. content: "\f1fd"; }
  2488. .fa-envelope::before {
  2489. content: "\f0e0"; }
  2490. .fa-angles-up::before {
  2491. content: "\f102"; }
  2492. .fa-angle-double-up::before {
  2493. content: "\f102"; }
  2494. .fa-paperclip::before {
  2495. content: "\f0c6"; }
  2496. .fa-arrow-right-to-city::before {
  2497. content: "\e4b3"; }
  2498. .fa-ribbon::before {
  2499. content: "\f4d6"; }
  2500. .fa-lungs::before {
  2501. content: "\f604"; }
  2502. .fa-arrow-up-9-1::before {
  2503. content: "\f887"; }
  2504. .fa-sort-numeric-up-alt::before {
  2505. content: "\f887"; }
  2506. .fa-litecoin-sign::before {
  2507. content: "\e1d3"; }
  2508. .fa-border-none::before {
  2509. content: "\f850"; }
  2510. .fa-circle-nodes::before {
  2511. content: "\e4e2"; }
  2512. .fa-parachute-box::before {
  2513. content: "\f4cd"; }
  2514. .fa-indent::before {
  2515. content: "\f03c"; }
  2516. .fa-truck-field-un::before {
  2517. content: "\e58e"; }
  2518. .fa-hourglass::before {
  2519. content: "\f254"; }
  2520. .fa-hourglass-empty::before {
  2521. content: "\f254"; }
  2522. .fa-mountain::before {
  2523. content: "\f6fc"; }
  2524. .fa-user-doctor::before {
  2525. content: "\f0f0"; }
  2526. .fa-user-md::before {
  2527. content: "\f0f0"; }
  2528. .fa-circle-info::before {
  2529. content: "\f05a"; }
  2530. .fa-info-circle::before {
  2531. content: "\f05a"; }
  2532. .fa-cloud-meatball::before {
  2533. content: "\f73b"; }
  2534. .fa-camera::before {
  2535. content: "\f030"; }
  2536. .fa-camera-alt::before {
  2537. content: "\f030"; }
  2538. .fa-square-virus::before {
  2539. content: "\e578"; }
  2540. .fa-meteor::before {
  2541. content: "\f753"; }
  2542. .fa-car-on::before {
  2543. content: "\e4dd"; }
  2544. .fa-sleigh::before {
  2545. content: "\f7cc"; }
  2546. .fa-arrow-down-1-9::before {
  2547. content: "\f162"; }
  2548. .fa-sort-numeric-asc::before {
  2549. content: "\f162"; }
  2550. .fa-sort-numeric-down::before {
  2551. content: "\f162"; }
  2552. .fa-hand-holding-droplet::before {
  2553. content: "\f4c1"; }
  2554. .fa-hand-holding-water::before {
  2555. content: "\f4c1"; }
  2556. .fa-water::before {
  2557. content: "\f773"; }
  2558. .fa-calendar-check::before {
  2559. content: "\f274"; }
  2560. .fa-braille::before {
  2561. content: "\f2a1"; }
  2562. .fa-prescription-bottle-medical::before {
  2563. content: "\f486"; }
  2564. .fa-prescription-bottle-alt::before {
  2565. content: "\f486"; }
  2566. .fa-landmark::before {
  2567. content: "\f66f"; }
  2568. .fa-truck::before {
  2569. content: "\f0d1"; }
  2570. .fa-crosshairs::before {
  2571. content: "\f05b"; }
  2572. .fa-person-cane::before {
  2573. content: "\e53c"; }
  2574. .fa-tent::before {
  2575. content: "\e57d"; }
  2576. .fa-vest-patches::before {
  2577. content: "\e086"; }
  2578. .fa-check-double::before {
  2579. content: "\f560"; }
  2580. .fa-arrow-down-a-z::before {
  2581. content: "\f15d"; }
  2582. .fa-sort-alpha-asc::before {
  2583. content: "\f15d"; }
  2584. .fa-sort-alpha-down::before {
  2585. content: "\f15d"; }
  2586. .fa-money-bill-wheat::before {
  2587. content: "\e52a"; }
  2588. .fa-cookie::before {
  2589. content: "\f563"; }
  2590. .fa-arrow-rotate-left::before {
  2591. content: "\f0e2"; }
  2592. .fa-arrow-left-rotate::before {
  2593. content: "\f0e2"; }
  2594. .fa-arrow-rotate-back::before {
  2595. content: "\f0e2"; }
  2596. .fa-arrow-rotate-backward::before {
  2597. content: "\f0e2"; }
  2598. .fa-undo::before {
  2599. content: "\f0e2"; }
  2600. .fa-hard-drive::before {
  2601. content: "\f0a0"; }
  2602. .fa-hdd::before {
  2603. content: "\f0a0"; }
  2604. .fa-face-grin-squint-tears::before {
  2605. content: "\f586"; }
  2606. .fa-grin-squint-tears::before {
  2607. content: "\f586"; }
  2608. .fa-dumbbell::before {
  2609. content: "\f44b"; }
  2610. .fa-rectangle-list::before {
  2611. content: "\f022"; }
  2612. .fa-list-alt::before {
  2613. content: "\f022"; }
  2614. .fa-tarp-droplet::before {
  2615. content: "\e57c"; }
  2616. .fa-house-medical-circle-check::before {
  2617. content: "\e511"; }
  2618. .fa-person-skiing-nordic::before {
  2619. content: "\f7ca"; }
  2620. .fa-skiing-nordic::before {
  2621. content: "\f7ca"; }
  2622. .fa-calendar-plus::before {
  2623. content: "\f271"; }
  2624. .fa-plane-arrival::before {
  2625. content: "\f5af"; }
  2626. .fa-circle-left::before {
  2627. content: "\f359"; }
  2628. .fa-arrow-alt-circle-left::before {
  2629. content: "\f359"; }
  2630. .fa-train-subway::before {
  2631. content: "\f239"; }
  2632. .fa-subway::before {
  2633. content: "\f239"; }
  2634. .fa-chart-gantt::before {
  2635. content: "\e0e4"; }
  2636. .fa-indian-rupee-sign::before {
  2637. content: "\e1bc"; }
  2638. .fa-indian-rupee::before {
  2639. content: "\e1bc"; }
  2640. .fa-inr::before {
  2641. content: "\e1bc"; }
  2642. .fa-crop-simple::before {
  2643. content: "\f565"; }
  2644. .fa-crop-alt::before {
  2645. content: "\f565"; }
  2646. .fa-money-bill-1::before {
  2647. content: "\f3d1"; }
  2648. .fa-money-bill-alt::before {
  2649. content: "\f3d1"; }
  2650. .fa-left-long::before {
  2651. content: "\f30a"; }
  2652. .fa-long-arrow-alt-left::before {
  2653. content: "\f30a"; }
  2654. .fa-dna::before {
  2655. content: "\f471"; }
  2656. .fa-virus-slash::before {
  2657. content: "\e075"; }
  2658. .fa-minus::before {
  2659. content: "\f068"; }
  2660. .fa-subtract::before {
  2661. content: "\f068"; }
  2662. .fa-chess::before {
  2663. content: "\f439"; }
  2664. .fa-arrow-left-long::before {
  2665. content: "\f177"; }
  2666. .fa-long-arrow-left::before {
  2667. content: "\f177"; }
  2668. .fa-plug-circle-check::before {
  2669. content: "\e55c"; }
  2670. .fa-street-view::before {
  2671. content: "\f21d"; }
  2672. .fa-franc-sign::before {
  2673. content: "\e18f"; }
  2674. .fa-volume-off::before {
  2675. content: "\f026"; }
  2676. .fa-hands-asl-interpreting::before {
  2677. content: "\f2a3"; }
  2678. .fa-american-sign-language-interpreting::before {
  2679. content: "\f2a3"; }
  2680. .fa-asl-interpreting::before {
  2681. content: "\f2a3"; }
  2682. .fa-hands-american-sign-language-interpreting::before {
  2683. content: "\f2a3"; }
  2684. .fa-gear::before {
  2685. content: "\f013"; }
  2686. .fa-cog::before {
  2687. content: "\f013"; }
  2688. .fa-droplet-slash::before {
  2689. content: "\f5c7"; }
  2690. .fa-tint-slash::before {
  2691. content: "\f5c7"; }
  2692. .fa-mosque::before {
  2693. content: "\f678"; }
  2694. .fa-mosquito::before {
  2695. content: "\e52b"; }
  2696. .fa-star-of-david::before {
  2697. content: "\f69a"; }
  2698. .fa-person-military-rifle::before {
  2699. content: "\e54b"; }
  2700. .fa-cart-shopping::before {
  2701. content: "\f07a"; }
  2702. .fa-shopping-cart::before {
  2703. content: "\f07a"; }
  2704. .fa-vials::before {
  2705. content: "\f493"; }
  2706. .fa-plug-circle-plus::before {
  2707. content: "\e55f"; }
  2708. .fa-place-of-worship::before {
  2709. content: "\f67f"; }
  2710. .fa-grip-vertical::before {
  2711. content: "\f58e"; }
  2712. .fa-arrow-turn-up::before {
  2713. content: "\f148"; }
  2714. .fa-level-up::before {
  2715. content: "\f148"; }
  2716. .fa-u::before {
  2717. content: "\55"; }
  2718. .fa-square-root-variable::before {
  2719. content: "\f698"; }
  2720. .fa-square-root-alt::before {
  2721. content: "\f698"; }
  2722. .fa-clock::before {
  2723. content: "\f017"; }
  2724. .fa-clock-four::before {
  2725. content: "\f017"; }
  2726. .fa-backward-step::before {
  2727. content: "\f048"; }
  2728. .fa-step-backward::before {
  2729. content: "\f048"; }
  2730. .fa-pallet::before {
  2731. content: "\f482"; }
  2732. .fa-faucet::before {
  2733. content: "\e005"; }
  2734. .fa-baseball-bat-ball::before {
  2735. content: "\f432"; }
  2736. .fa-s::before {
  2737. content: "\53"; }
  2738. .fa-timeline::before {
  2739. content: "\e29c"; }
  2740. .fa-keyboard::before {
  2741. content: "\f11c"; }
  2742. .fa-caret-down::before {
  2743. content: "\f0d7"; }
  2744. .fa-house-chimney-medical::before {
  2745. content: "\f7f2"; }
  2746. .fa-clinic-medical::before {
  2747. content: "\f7f2"; }
  2748. .fa-temperature-three-quarters::before {
  2749. content: "\f2c8"; }
  2750. .fa-temperature-3::before {
  2751. content: "\f2c8"; }
  2752. .fa-thermometer-3::before {
  2753. content: "\f2c8"; }
  2754. .fa-thermometer-three-quarters::before {
  2755. content: "\f2c8"; }
  2756. .fa-mobile-screen::before {
  2757. content: "\f3cf"; }
  2758. .fa-mobile-android-alt::before {
  2759. content: "\f3cf"; }
  2760. .fa-plane-up::before {
  2761. content: "\e22d"; }
  2762. .fa-piggy-bank::before {
  2763. content: "\f4d3"; }
  2764. .fa-battery-half::before {
  2765. content: "\f242"; }
  2766. .fa-battery-3::before {
  2767. content: "\f242"; }
  2768. .fa-mountain-city::before {
  2769. content: "\e52e"; }
  2770. .fa-coins::before {
  2771. content: "\f51e"; }
  2772. .fa-khanda::before {
  2773. content: "\f66d"; }
  2774. .fa-sliders::before {
  2775. content: "\f1de"; }
  2776. .fa-sliders-h::before {
  2777. content: "\f1de"; }
  2778. .fa-folder-tree::before {
  2779. content: "\f802"; }
  2780. .fa-network-wired::before {
  2781. content: "\f6ff"; }
  2782. .fa-map-pin::before {
  2783. content: "\f276"; }
  2784. .fa-hamsa::before {
  2785. content: "\f665"; }
  2786. .fa-cent-sign::before {
  2787. content: "\e3f5"; }
  2788. .fa-flask::before {
  2789. content: "\f0c3"; }
  2790. .fa-person-pregnant::before {
  2791. content: "\e31e"; }
  2792. .fa-wand-sparkles::before {
  2793. content: "\f72b"; }
  2794. .fa-ellipsis-vertical::before {
  2795. content: "\f142"; }
  2796. .fa-ellipsis-v::before {
  2797. content: "\f142"; }
  2798. .fa-ticket::before {
  2799. content: "\f145"; }
  2800. .fa-power-off::before {
  2801. content: "\f011"; }
  2802. .fa-right-long::before {
  2803. content: "\f30b"; }
  2804. .fa-long-arrow-alt-right::before {
  2805. content: "\f30b"; }
  2806. .fa-flag-usa::before {
  2807. content: "\f74d"; }
  2808. .fa-laptop-file::before {
  2809. content: "\e51d"; }
  2810. .fa-tty::before {
  2811. content: "\f1e4"; }
  2812. .fa-teletype::before {
  2813. content: "\f1e4"; }
  2814. .fa-diagram-next::before {
  2815. content: "\e476"; }
  2816. .fa-person-rifle::before {
  2817. content: "\e54e"; }
  2818. .fa-house-medical-circle-exclamation::before {
  2819. content: "\e512"; }
  2820. .fa-closed-captioning::before {
  2821. content: "\f20a"; }
  2822. .fa-person-hiking::before {
  2823. content: "\f6ec"; }
  2824. .fa-hiking::before {
  2825. content: "\f6ec"; }
  2826. .fa-venus-double::before {
  2827. content: "\f226"; }
  2828. .fa-images::before {
  2829. content: "\f302"; }
  2830. .fa-calculator::before {
  2831. content: "\f1ec"; }
  2832. .fa-people-pulling::before {
  2833. content: "\e535"; }
  2834. .fa-n::before {
  2835. content: "\4e"; }
  2836. .fa-cable-car::before {
  2837. content: "\f7da"; }
  2838. .fa-tram::before {
  2839. content: "\f7da"; }
  2840. .fa-cloud-rain::before {
  2841. content: "\f73d"; }
  2842. .fa-building-circle-xmark::before {
  2843. content: "\e4d4"; }
  2844. .fa-ship::before {
  2845. content: "\f21a"; }
  2846. .fa-arrows-down-to-line::before {
  2847. content: "\e4b8"; }
  2848. .fa-download::before {
  2849. content: "\f019"; }
  2850. .fa-face-grin::before {
  2851. content: "\f580"; }
  2852. .fa-grin::before {
  2853. content: "\f580"; }
  2854. .fa-delete-left::before {
  2855. content: "\f55a"; }
  2856. .fa-backspace::before {
  2857. content: "\f55a"; }
  2858. .fa-eye-dropper::before {
  2859. content: "\f1fb"; }
  2860. .fa-eye-dropper-empty::before {
  2861. content: "\f1fb"; }
  2862. .fa-eyedropper::before {
  2863. content: "\f1fb"; }
  2864. .fa-file-circle-check::before {
  2865. content: "\e5a0"; }
  2866. .fa-forward::before {
  2867. content: "\f04e"; }
  2868. .fa-mobile::before {
  2869. content: "\f3ce"; }
  2870. .fa-mobile-android::before {
  2871. content: "\f3ce"; }
  2872. .fa-mobile-phone::before {
  2873. content: "\f3ce"; }
  2874. .fa-face-meh::before {
  2875. content: "\f11a"; }
  2876. .fa-meh::before {
  2877. content: "\f11a"; }
  2878. .fa-align-center::before {
  2879. content: "\f037"; }
  2880. .fa-book-skull::before {
  2881. content: "\f6b7"; }
  2882. .fa-book-dead::before {
  2883. content: "\f6b7"; }
  2884. .fa-id-card::before {
  2885. content: "\f2c2"; }
  2886. .fa-drivers-license::before {
  2887. content: "\f2c2"; }
  2888. .fa-outdent::before {
  2889. content: "\f03b"; }
  2890. .fa-dedent::before {
  2891. content: "\f03b"; }
  2892. .fa-heart-circle-exclamation::before {
  2893. content: "\e4fe"; }
  2894. .fa-house::before {
  2895. content: "\f015"; }
  2896. .fa-home::before {
  2897. content: "\f015"; }
  2898. .fa-home-alt::before {
  2899. content: "\f015"; }
  2900. .fa-home-lg-alt::before {
  2901. content: "\f015"; }
  2902. .fa-calendar-week::before {
  2903. content: "\f784"; }
  2904. .fa-laptop-medical::before {
  2905. content: "\f812"; }
  2906. .fa-b::before {
  2907. content: "\42"; }
  2908. .fa-file-medical::before {
  2909. content: "\f477"; }
  2910. .fa-dice-one::before {
  2911. content: "\f525"; }
  2912. .fa-kiwi-bird::before {
  2913. content: "\f535"; }
  2914. .fa-arrow-right-arrow-left::before {
  2915. content: "\f0ec"; }
  2916. .fa-exchange::before {
  2917. content: "\f0ec"; }
  2918. .fa-rotate-right::before {
  2919. content: "\f2f9"; }
  2920. .fa-redo-alt::before {
  2921. content: "\f2f9"; }
  2922. .fa-rotate-forward::before {
  2923. content: "\f2f9"; }
  2924. .fa-utensils::before {
  2925. content: "\f2e7"; }
  2926. .fa-cutlery::before {
  2927. content: "\f2e7"; }
  2928. .fa-arrow-up-wide-short::before {
  2929. content: "\f161"; }
  2930. .fa-sort-amount-up::before {
  2931. content: "\f161"; }
  2932. .fa-mill-sign::before {
  2933. content: "\e1ed"; }
  2934. .fa-bowl-rice::before {
  2935. content: "\e2eb"; }
  2936. .fa-skull::before {
  2937. content: "\f54c"; }
  2938. .fa-tower-broadcast::before {
  2939. content: "\f519"; }
  2940. .fa-broadcast-tower::before {
  2941. content: "\f519"; }
  2942. .fa-truck-pickup::before {
  2943. content: "\f63c"; }
  2944. .fa-up-long::before {
  2945. content: "\f30c"; }
  2946. .fa-long-arrow-alt-up::before {
  2947. content: "\f30c"; }
  2948. .fa-stop::before {
  2949. content: "\f04d"; }
  2950. .fa-code-merge::before {
  2951. content: "\f387"; }
  2952. .fa-upload::before {
  2953. content: "\f093"; }
  2954. .fa-hurricane::before {
  2955. content: "\f751"; }
  2956. .fa-mound::before {
  2957. content: "\e52d"; }
  2958. .fa-toilet-portable::before {
  2959. content: "\e583"; }
  2960. .fa-compact-disc::before {
  2961. content: "\f51f"; }
  2962. .fa-file-arrow-down::before {
  2963. content: "\f56d"; }
  2964. .fa-file-download::before {
  2965. content: "\f56d"; }
  2966. .fa-caravan::before {
  2967. content: "\f8ff"; }
  2968. .fa-shield-cat::before {
  2969. content: "\e572"; }
  2970. .fa-bolt::before {
  2971. content: "\f0e7"; }
  2972. .fa-zap::before {
  2973. content: "\f0e7"; }
  2974. .fa-glass-water::before {
  2975. content: "\e4f4"; }
  2976. .fa-oil-well::before {
  2977. content: "\e532"; }
  2978. .fa-vault::before {
  2979. content: "\e2c5"; }
  2980. .fa-mars::before {
  2981. content: "\f222"; }
  2982. .fa-toilet::before {
  2983. content: "\f7d8"; }
  2984. .fa-plane-circle-xmark::before {
  2985. content: "\e557"; }
  2986. .fa-yen-sign::before {
  2987. content: "\f157"; }
  2988. .fa-cny::before {
  2989. content: "\f157"; }
  2990. .fa-jpy::before {
  2991. content: "\f157"; }
  2992. .fa-rmb::before {
  2993. content: "\f157"; }
  2994. .fa-yen::before {
  2995. content: "\f157"; }
  2996. .fa-ruble-sign::before {
  2997. content: "\f158"; }
  2998. .fa-rouble::before {
  2999. content: "\f158"; }
  3000. .fa-rub::before {
  3001. content: "\f158"; }
  3002. .fa-ruble::before {
  3003. content: "\f158"; }
  3004. .fa-sun::before {
  3005. content: "\f185"; }
  3006. .fa-guitar::before {
  3007. content: "\f7a6"; }
  3008. .fa-face-laugh-wink::before {
  3009. content: "\f59c"; }
  3010. .fa-laugh-wink::before {
  3011. content: "\f59c"; }
  3012. .fa-horse-head::before {
  3013. content: "\f7ab"; }
  3014. .fa-bore-hole::before {
  3015. content: "\e4c3"; }
  3016. .fa-industry::before {
  3017. content: "\f275"; }
  3018. .fa-circle-down::before {
  3019. content: "\f358"; }
  3020. .fa-arrow-alt-circle-down::before {
  3021. content: "\f358"; }
  3022. .fa-arrows-turn-to-dots::before {
  3023. content: "\e4c1"; }
  3024. .fa-florin-sign::before {
  3025. content: "\e184"; }
  3026. .fa-arrow-down-short-wide::before {
  3027. content: "\f884"; }
  3028. .fa-sort-amount-desc::before {
  3029. content: "\f884"; }
  3030. .fa-sort-amount-down-alt::before {
  3031. content: "\f884"; }
  3032. .fa-less-than::before {
  3033. content: "\3c"; }
  3034. .fa-angle-down::before {
  3035. content: "\f107"; }
  3036. .fa-car-tunnel::before {
  3037. content: "\e4de"; }
  3038. .fa-head-side-cough::before {
  3039. content: "\e061"; }
  3040. .fa-grip-lines::before {
  3041. content: "\f7a4"; }
  3042. .fa-thumbs-down::before {
  3043. content: "\f165"; }
  3044. .fa-user-lock::before {
  3045. content: "\f502"; }
  3046. .fa-arrow-right-long::before {
  3047. content: "\f178"; }
  3048. .fa-long-arrow-right::before {
  3049. content: "\f178"; }
  3050. .fa-anchor-circle-xmark::before {
  3051. content: "\e4ac"; }
  3052. .fa-ellipsis::before {
  3053. content: "\f141"; }
  3054. .fa-ellipsis-h::before {
  3055. content: "\f141"; }
  3056. .fa-chess-pawn::before {
  3057. content: "\f443"; }
  3058. .fa-kit-medical::before {
  3059. content: "\f479"; }
  3060. .fa-first-aid::before {
  3061. content: "\f479"; }
  3062. .fa-person-through-window::before {
  3063. content: "\e5a9"; }
  3064. .fa-toolbox::before {
  3065. content: "\f552"; }
  3066. .fa-hands-holding-circle::before {
  3067. content: "\e4fb"; }
  3068. .fa-bug::before {
  3069. content: "\f188"; }
  3070. .fa-credit-card::before {
  3071. content: "\f09d"; }
  3072. .fa-credit-card-alt::before {
  3073. content: "\f09d"; }
  3074. .fa-car::before {
  3075. content: "\f1b9"; }
  3076. .fa-automobile::before {
  3077. content: "\f1b9"; }
  3078. .fa-hand-holding-hand::before {
  3079. content: "\e4f7"; }
  3080. .fa-book-open-reader::before {
  3081. content: "\f5da"; }
  3082. .fa-book-reader::before {
  3083. content: "\f5da"; }
  3084. .fa-mountain-sun::before {
  3085. content: "\e52f"; }
  3086. .fa-arrows-left-right-to-line::before {
  3087. content: "\e4ba"; }
  3088. .fa-dice-d20::before {
  3089. content: "\f6cf"; }
  3090. .fa-truck-droplet::before {
  3091. content: "\e58c"; }
  3092. .fa-file-circle-xmark::before {
  3093. content: "\e5a1"; }
  3094. .fa-temperature-arrow-up::before {
  3095. content: "\e040"; }
  3096. .fa-temperature-up::before {
  3097. content: "\e040"; }
  3098. .fa-medal::before {
  3099. content: "\f5a2"; }
  3100. .fa-bed::before {
  3101. content: "\f236"; }
  3102. .fa-square-h::before {
  3103. content: "\f0fd"; }
  3104. .fa-h-square::before {
  3105. content: "\f0fd"; }
  3106. .fa-podcast::before {
  3107. content: "\f2ce"; }
  3108. .fa-temperature-full::before {
  3109. content: "\f2c7"; }
  3110. .fa-temperature-4::before {
  3111. content: "\f2c7"; }
  3112. .fa-thermometer-4::before {
  3113. content: "\f2c7"; }
  3114. .fa-thermometer-full::before {
  3115. content: "\f2c7"; }
  3116. .fa-bell::before {
  3117. content: "\f0f3"; }
  3118. .fa-superscript::before {
  3119. content: "\f12b"; }
  3120. .fa-plug-circle-xmark::before {
  3121. content: "\e560"; }
  3122. .fa-star-of-life::before {
  3123. content: "\f621"; }
  3124. .fa-phone-slash::before {
  3125. content: "\f3dd"; }
  3126. .fa-paint-roller::before {
  3127. content: "\f5aa"; }
  3128. .fa-handshake-angle::before {
  3129. content: "\f4c4"; }
  3130. .fa-hands-helping::before {
  3131. content: "\f4c4"; }
  3132. .fa-location-dot::before {
  3133. content: "\f3c5"; }
  3134. .fa-map-marker-alt::before {
  3135. content: "\f3c5"; }
  3136. .fa-file::before {
  3137. content: "\f15b"; }
  3138. .fa-greater-than::before {
  3139. content: "\3e"; }
  3140. .fa-person-swimming::before {
  3141. content: "\f5c4"; }
  3142. .fa-swimmer::before {
  3143. content: "\f5c4"; }
  3144. .fa-arrow-down::before {
  3145. content: "\f063"; }
  3146. .fa-droplet::before {
  3147. content: "\f043"; }
  3148. .fa-tint::before {
  3149. content: "\f043"; }
  3150. .fa-eraser::before {
  3151. content: "\f12d"; }
  3152. .fa-earth-americas::before {
  3153. content: "\f57d"; }
  3154. .fa-earth::before {
  3155. content: "\f57d"; }
  3156. .fa-earth-america::before {
  3157. content: "\f57d"; }
  3158. .fa-globe-americas::before {
  3159. content: "\f57d"; }
  3160. .fa-person-burst::before {
  3161. content: "\e53b"; }
  3162. .fa-dove::before {
  3163. content: "\f4ba"; }
  3164. .fa-battery-empty::before {
  3165. content: "\f244"; }
  3166. .fa-battery-0::before {
  3167. content: "\f244"; }
  3168. .fa-socks::before {
  3169. content: "\f696"; }
  3170. .fa-inbox::before {
  3171. content: "\f01c"; }
  3172. .fa-section::before {
  3173. content: "\e447"; }
  3174. .fa-gauge-high::before {
  3175. content: "\f625"; }
  3176. .fa-tachometer-alt::before {
  3177. content: "\f625"; }
  3178. .fa-tachometer-alt-fast::before {
  3179. content: "\f625"; }
  3180. .fa-envelope-open-text::before {
  3181. content: "\f658"; }
  3182. .fa-hospital::before {
  3183. content: "\f0f8"; }
  3184. .fa-hospital-alt::before {
  3185. content: "\f0f8"; }
  3186. .fa-hospital-wide::before {
  3187. content: "\f0f8"; }
  3188. .fa-wine-bottle::before {
  3189. content: "\f72f"; }
  3190. .fa-chess-rook::before {
  3191. content: "\f447"; }
  3192. .fa-bars-staggered::before {
  3193. content: "\f550"; }
  3194. .fa-reorder::before {
  3195. content: "\f550"; }
  3196. .fa-stream::before {
  3197. content: "\f550"; }
  3198. .fa-dharmachakra::before {
  3199. content: "\f655"; }
  3200. .fa-hotdog::before {
  3201. content: "\f80f"; }
  3202. .fa-person-walking-with-cane::before {
  3203. content: "\f29d"; }
  3204. .fa-blind::before {
  3205. content: "\f29d"; }
  3206. .fa-drum::before {
  3207. content: "\f569"; }
  3208. .fa-ice-cream::before {
  3209. content: "\f810"; }
  3210. .fa-heart-circle-bolt::before {
  3211. content: "\e4fc"; }
  3212. .fa-fax::before {
  3213. content: "\f1ac"; }
  3214. .fa-paragraph::before {
  3215. content: "\f1dd"; }
  3216. .fa-check-to-slot::before {
  3217. content: "\f772"; }
  3218. .fa-vote-yea::before {
  3219. content: "\f772"; }
  3220. .fa-star-half::before {
  3221. content: "\f089"; }
  3222. .fa-boxes-stacked::before {
  3223. content: "\f468"; }
  3224. .fa-boxes::before {
  3225. content: "\f468"; }
  3226. .fa-boxes-alt::before {
  3227. content: "\f468"; }
  3228. .fa-link::before {
  3229. content: "\f0c1"; }
  3230. .fa-chain::before {
  3231. content: "\f0c1"; }
  3232. .fa-ear-listen::before {
  3233. content: "\f2a2"; }
  3234. .fa-assistive-listening-systems::before {
  3235. content: "\f2a2"; }
  3236. .fa-tree-city::before {
  3237. content: "\e587"; }
  3238. .fa-play::before {
  3239. content: "\f04b"; }
  3240. .fa-font::before {
  3241. content: "\f031"; }
  3242. .fa-table-cells-row-lock::before {
  3243. content: "\e67a"; }
  3244. .fa-rupiah-sign::before {
  3245. content: "\e23d"; }
  3246. .fa-magnifying-glass::before {
  3247. content: "\f002"; }
  3248. .fa-search::before {
  3249. content: "\f002"; }
  3250. .fa-table-tennis-paddle-ball::before {
  3251. content: "\f45d"; }
  3252. .fa-ping-pong-paddle-ball::before {
  3253. content: "\f45d"; }
  3254. .fa-table-tennis::before {
  3255. content: "\f45d"; }
  3256. .fa-person-dots-from-line::before {
  3257. content: "\f470"; }
  3258. .fa-diagnoses::before {
  3259. content: "\f470"; }
  3260. .fa-trash-can-arrow-up::before {
  3261. content: "\f82a"; }
  3262. .fa-trash-restore-alt::before {
  3263. content: "\f82a"; }
  3264. .fa-naira-sign::before {
  3265. content: "\e1f6"; }
  3266. .fa-cart-arrow-down::before {
  3267. content: "\f218"; }
  3268. .fa-walkie-talkie::before {
  3269. content: "\f8ef"; }
  3270. .fa-file-pen::before {
  3271. content: "\f31c"; }
  3272. .fa-file-edit::before {
  3273. content: "\f31c"; }
  3274. .fa-receipt::before {
  3275. content: "\f543"; }
  3276. .fa-square-pen::before {
  3277. content: "\f14b"; }
  3278. .fa-pen-square::before {
  3279. content: "\f14b"; }
  3280. .fa-pencil-square::before {
  3281. content: "\f14b"; }
  3282. .fa-suitcase-rolling::before {
  3283. content: "\f5c1"; }
  3284. .fa-person-circle-exclamation::before {
  3285. content: "\e53f"; }
  3286. .fa-chevron-down::before {
  3287. content: "\f078"; }
  3288. .fa-battery-full::before {
  3289. content: "\f240"; }
  3290. .fa-battery::before {
  3291. content: "\f240"; }
  3292. .fa-battery-5::before {
  3293. content: "\f240"; }
  3294. .fa-skull-crossbones::before {
  3295. content: "\f714"; }
  3296. .fa-code-compare::before {
  3297. content: "\e13a"; }
  3298. .fa-list-ul::before {
  3299. content: "\f0ca"; }
  3300. .fa-list-dots::before {
  3301. content: "\f0ca"; }
  3302. .fa-school-lock::before {
  3303. content: "\e56f"; }
  3304. .fa-tower-cell::before {
  3305. content: "\e585"; }
  3306. .fa-down-long::before {
  3307. content: "\f309"; }
  3308. .fa-long-arrow-alt-down::before {
  3309. content: "\f309"; }
  3310. .fa-ranking-star::before {
  3311. content: "\e561"; }
  3312. .fa-chess-king::before {
  3313. content: "\f43f"; }
  3314. .fa-person-harassing::before {
  3315. content: "\e549"; }
  3316. .fa-brazilian-real-sign::before {
  3317. content: "\e46c"; }
  3318. .fa-landmark-dome::before {
  3319. content: "\f752"; }
  3320. .fa-landmark-alt::before {
  3321. content: "\f752"; }
  3322. .fa-arrow-up::before {
  3323. content: "\f062"; }
  3324. .fa-tv::before {
  3325. content: "\f26c"; }
  3326. .fa-television::before {
  3327. content: "\f26c"; }
  3328. .fa-tv-alt::before {
  3329. content: "\f26c"; }
  3330. .fa-shrimp::before {
  3331. content: "\e448"; }
  3332. .fa-list-check::before {
  3333. content: "\f0ae"; }
  3334. .fa-tasks::before {
  3335. content: "\f0ae"; }
  3336. .fa-jug-detergent::before {
  3337. content: "\e519"; }
  3338. .fa-circle-user::before {
  3339. content: "\f2bd"; }
  3340. .fa-user-circle::before {
  3341. content: "\f2bd"; }
  3342. .fa-user-shield::before {
  3343. content: "\f505"; }
  3344. .fa-wind::before {
  3345. content: "\f72e"; }
  3346. .fa-car-burst::before {
  3347. content: "\f5e1"; }
  3348. .fa-car-crash::before {
  3349. content: "\f5e1"; }
  3350. .fa-y::before {
  3351. content: "\59"; }
  3352. .fa-person-snowboarding::before {
  3353. content: "\f7ce"; }
  3354. .fa-snowboarding::before {
  3355. content: "\f7ce"; }
  3356. .fa-truck-fast::before {
  3357. content: "\f48b"; }
  3358. .fa-shipping-fast::before {
  3359. content: "\f48b"; }
  3360. .fa-fish::before {
  3361. content: "\f578"; }
  3362. .fa-user-graduate::before {
  3363. content: "\f501"; }
  3364. .fa-circle-half-stroke::before {
  3365. content: "\f042"; }
  3366. .fa-adjust::before {
  3367. content: "\f042"; }
  3368. .fa-clapperboard::before {
  3369. content: "\e131"; }
  3370. .fa-circle-radiation::before {
  3371. content: "\f7ba"; }
  3372. .fa-radiation-alt::before {
  3373. content: "\f7ba"; }
  3374. .fa-baseball::before {
  3375. content: "\f433"; }
  3376. .fa-baseball-ball::before {
  3377. content: "\f433"; }
  3378. .fa-jet-fighter-up::before {
  3379. content: "\e518"; }
  3380. .fa-diagram-project::before {
  3381. content: "\f542"; }
  3382. .fa-project-diagram::before {
  3383. content: "\f542"; }
  3384. .fa-copy::before {
  3385. content: "\f0c5"; }
  3386. .fa-volume-xmark::before {
  3387. content: "\f6a9"; }
  3388. .fa-volume-mute::before {
  3389. content: "\f6a9"; }
  3390. .fa-volume-times::before {
  3391. content: "\f6a9"; }
  3392. .fa-hand-sparkles::before {
  3393. content: "\e05d"; }
  3394. .fa-grip::before {
  3395. content: "\f58d"; }
  3396. .fa-grip-horizontal::before {
  3397. content: "\f58d"; }
  3398. .fa-share-from-square::before {
  3399. content: "\f14d"; }
  3400. .fa-share-square::before {
  3401. content: "\f14d"; }
  3402. .fa-child-combatant::before {
  3403. content: "\e4e0"; }
  3404. .fa-child-rifle::before {
  3405. content: "\e4e0"; }
  3406. .fa-gun::before {
  3407. content: "\e19b"; }
  3408. .fa-square-phone::before {
  3409. content: "\f098"; }
  3410. .fa-phone-square::before {
  3411. content: "\f098"; }
  3412. .fa-plus::before {
  3413. content: "\2b"; }
  3414. .fa-add::before {
  3415. content: "\2b"; }
  3416. .fa-expand::before {
  3417. content: "\f065"; }
  3418. .fa-computer::before {
  3419. content: "\e4e5"; }
  3420. .fa-xmark::before {
  3421. content: "\f00d"; }
  3422. .fa-close::before {
  3423. content: "\f00d"; }
  3424. .fa-multiply::before {
  3425. content: "\f00d"; }
  3426. .fa-remove::before {
  3427. content: "\f00d"; }
  3428. .fa-times::before {
  3429. content: "\f00d"; }
  3430. .fa-arrows-up-down-left-right::before {
  3431. content: "\f047"; }
  3432. .fa-arrows::before {
  3433. content: "\f047"; }
  3434. .fa-chalkboard-user::before {
  3435. content: "\f51c"; }
  3436. .fa-chalkboard-teacher::before {
  3437. content: "\f51c"; }
  3438. .fa-peso-sign::before {
  3439. content: "\e222"; }
  3440. .fa-building-shield::before {
  3441. content: "\e4d8"; }
  3442. .fa-baby::before {
  3443. content: "\f77c"; }
  3444. .fa-users-line::before {
  3445. content: "\e592"; }
  3446. .fa-quote-left::before {
  3447. content: "\f10d"; }
  3448. .fa-quote-left-alt::before {
  3449. content: "\f10d"; }
  3450. .fa-tractor::before {
  3451. content: "\f722"; }
  3452. .fa-trash-arrow-up::before {
  3453. content: "\f829"; }
  3454. .fa-trash-restore::before {
  3455. content: "\f829"; }
  3456. .fa-arrow-down-up-lock::before {
  3457. content: "\e4b0"; }
  3458. .fa-lines-leaning::before {
  3459. content: "\e51e"; }
  3460. .fa-ruler-combined::before {
  3461. content: "\f546"; }
  3462. .fa-copyright::before {
  3463. content: "\f1f9"; }
  3464. .fa-equals::before {
  3465. content: "\3d"; }
  3466. .fa-blender::before {
  3467. content: "\f517"; }
  3468. .fa-teeth::before {
  3469. content: "\f62e"; }
  3470. .fa-shekel-sign::before {
  3471. content: "\f20b"; }
  3472. .fa-ils::before {
  3473. content: "\f20b"; }
  3474. .fa-shekel::before {
  3475. content: "\f20b"; }
  3476. .fa-sheqel::before {
  3477. content: "\f20b"; }
  3478. .fa-sheqel-sign::before {
  3479. content: "\f20b"; }
  3480. .fa-map::before {
  3481. content: "\f279"; }
  3482. .fa-rocket::before {
  3483. content: "\f135"; }
  3484. .fa-photo-film::before {
  3485. content: "\f87c"; }
  3486. .fa-photo-video::before {
  3487. content: "\f87c"; }
  3488. .fa-folder-minus::before {
  3489. content: "\f65d"; }
  3490. .fa-store::before {
  3491. content: "\f54e"; }
  3492. .fa-arrow-trend-up::before {
  3493. content: "\e098"; }
  3494. .fa-plug-circle-minus::before {
  3495. content: "\e55e"; }
  3496. .fa-sign-hanging::before {
  3497. content: "\f4d9"; }
  3498. .fa-sign::before {
  3499. content: "\f4d9"; }
  3500. .fa-bezier-curve::before {
  3501. content: "\f55b"; }
  3502. .fa-bell-slash::before {
  3503. content: "\f1f6"; }
  3504. .fa-tablet::before {
  3505. content: "\f3fb"; }
  3506. .fa-tablet-android::before {
  3507. content: "\f3fb"; }
  3508. .fa-school-flag::before {
  3509. content: "\e56e"; }
  3510. .fa-fill::before {
  3511. content: "\f575"; }
  3512. .fa-angle-up::before {
  3513. content: "\f106"; }
  3514. .fa-drumstick-bite::before {
  3515. content: "\f6d7"; }
  3516. .fa-holly-berry::before {
  3517. content: "\f7aa"; }
  3518. .fa-chevron-left::before {
  3519. content: "\f053"; }
  3520. .fa-bacteria::before {
  3521. content: "\e059"; }
  3522. .fa-hand-lizard::before {
  3523. content: "\f258"; }
  3524. .fa-notdef::before {
  3525. content: "\e1fe"; }
  3526. .fa-disease::before {
  3527. content: "\f7fa"; }
  3528. .fa-briefcase-medical::before {
  3529. content: "\f469"; }
  3530. .fa-genderless::before {
  3531. content: "\f22d"; }
  3532. .fa-chevron-right::before {
  3533. content: "\f054"; }
  3534. .fa-retweet::before {
  3535. content: "\f079"; }
  3536. .fa-car-rear::before {
  3537. content: "\f5de"; }
  3538. .fa-car-alt::before {
  3539. content: "\f5de"; }
  3540. .fa-pump-soap::before {
  3541. content: "\e06b"; }
  3542. .fa-video-slash::before {
  3543. content: "\f4e2"; }
  3544. .fa-battery-quarter::before {
  3545. content: "\f243"; }
  3546. .fa-battery-2::before {
  3547. content: "\f243"; }
  3548. .fa-radio::before {
  3549. content: "\f8d7"; }
  3550. .fa-baby-carriage::before {
  3551. content: "\f77d"; }
  3552. .fa-carriage-baby::before {
  3553. content: "\f77d"; }
  3554. .fa-traffic-light::before {
  3555. content: "\f637"; }
  3556. .fa-thermometer::before {
  3557. content: "\f491"; }
  3558. .fa-vr-cardboard::before {
  3559. content: "\f729"; }
  3560. .fa-hand-middle-finger::before {
  3561. content: "\f806"; }
  3562. .fa-percent::before {
  3563. content: "\25"; }
  3564. .fa-percentage::before {
  3565. content: "\25"; }
  3566. .fa-truck-moving::before {
  3567. content: "\f4df"; }
  3568. .fa-glass-water-droplet::before {
  3569. content: "\e4f5"; }
  3570. .fa-display::before {
  3571. content: "\e163"; }
  3572. .fa-face-smile::before {
  3573. content: "\f118"; }
  3574. .fa-smile::before {
  3575. content: "\f118"; }
  3576. .fa-thumbtack::before {
  3577. content: "\f08d"; }
  3578. .fa-thumb-tack::before {
  3579. content: "\f08d"; }
  3580. .fa-trophy::before {
  3581. content: "\f091"; }
  3582. .fa-person-praying::before {
  3583. content: "\f683"; }
  3584. .fa-pray::before {
  3585. content: "\f683"; }
  3586. .fa-hammer::before {
  3587. content: "\f6e3"; }
  3588. .fa-hand-peace::before {
  3589. content: "\f25b"; }
  3590. .fa-rotate::before {
  3591. content: "\f2f1"; }
  3592. .fa-sync-alt::before {
  3593. content: "\f2f1"; }
  3594. .fa-spinner::before {
  3595. content: "\f110"; }
  3596. .fa-robot::before {
  3597. content: "\f544"; }
  3598. .fa-peace::before {
  3599. content: "\f67c"; }
  3600. .fa-gears::before {
  3601. content: "\f085"; }
  3602. .fa-cogs::before {
  3603. content: "\f085"; }
  3604. .fa-warehouse::before {
  3605. content: "\f494"; }
  3606. .fa-arrow-up-right-dots::before {
  3607. content: "\e4b7"; }
  3608. .fa-splotch::before {
  3609. content: "\f5bc"; }
  3610. .fa-face-grin-hearts::before {
  3611. content: "\f584"; }
  3612. .fa-grin-hearts::before {
  3613. content: "\f584"; }
  3614. .fa-dice-four::before {
  3615. content: "\f524"; }
  3616. .fa-sim-card::before {
  3617. content: "\f7c4"; }
  3618. .fa-transgender::before {
  3619. content: "\f225"; }
  3620. .fa-transgender-alt::before {
  3621. content: "\f225"; }
  3622. .fa-mercury::before {
  3623. content: "\f223"; }
  3624. .fa-arrow-turn-down::before {
  3625. content: "\f149"; }
  3626. .fa-level-down::before {
  3627. content: "\f149"; }
  3628. .fa-person-falling-burst::before {
  3629. content: "\e547"; }
  3630. .fa-award::before {
  3631. content: "\f559"; }
  3632. .fa-ticket-simple::before {
  3633. content: "\f3ff"; }
  3634. .fa-ticket-alt::before {
  3635. content: "\f3ff"; }
  3636. .fa-building::before {
  3637. content: "\f1ad"; }
  3638. .fa-angles-left::before {
  3639. content: "\f100"; }
  3640. .fa-angle-double-left::before {
  3641. content: "\f100"; }
  3642. .fa-qrcode::before {
  3643. content: "\f029"; }
  3644. .fa-clock-rotate-left::before {
  3645. content: "\f1da"; }
  3646. .fa-history::before {
  3647. content: "\f1da"; }
  3648. .fa-face-grin-beam-sweat::before {
  3649. content: "\f583"; }
  3650. .fa-grin-beam-sweat::before {
  3651. content: "\f583"; }
  3652. .fa-file-export::before {
  3653. content: "\f56e"; }
  3654. .fa-arrow-right-from-file::before {
  3655. content: "\f56e"; }
  3656. .fa-shield::before {
  3657. content: "\f132"; }
  3658. .fa-shield-blank::before {
  3659. content: "\f132"; }
  3660. .fa-arrow-up-short-wide::before {
  3661. content: "\f885"; }
  3662. .fa-sort-amount-up-alt::before {
  3663. content: "\f885"; }
  3664. .fa-house-medical::before {
  3665. content: "\e3b2"; }
  3666. .fa-golf-ball-tee::before {
  3667. content: "\f450"; }
  3668. .fa-golf-ball::before {
  3669. content: "\f450"; }
  3670. .fa-circle-chevron-left::before {
  3671. content: "\f137"; }
  3672. .fa-chevron-circle-left::before {
  3673. content: "\f137"; }
  3674. .fa-house-chimney-window::before {
  3675. content: "\e00d"; }
  3676. .fa-pen-nib::before {
  3677. content: "\f5ad"; }
  3678. .fa-tent-arrow-turn-left::before {
  3679. content: "\e580"; }
  3680. .fa-tents::before {
  3681. content: "\e582"; }
  3682. .fa-wand-magic::before {
  3683. content: "\f0d0"; }
  3684. .fa-magic::before {
  3685. content: "\f0d0"; }
  3686. .fa-dog::before {
  3687. content: "\f6d3"; }
  3688. .fa-carrot::before {
  3689. content: "\f787"; }
  3690. .fa-moon::before {
  3691. content: "\f186"; }
  3692. .fa-wine-glass-empty::before {
  3693. content: "\f5ce"; }
  3694. .fa-wine-glass-alt::before {
  3695. content: "\f5ce"; }
  3696. .fa-cheese::before {
  3697. content: "\f7ef"; }
  3698. .fa-yin-yang::before {
  3699. content: "\f6ad"; }
  3700. .fa-music::before {
  3701. content: "\f001"; }
  3702. .fa-code-commit::before {
  3703. content: "\f386"; }
  3704. .fa-temperature-low::before {
  3705. content: "\f76b"; }
  3706. .fa-person-biking::before {
  3707. content: "\f84a"; }
  3708. .fa-biking::before {
  3709. content: "\f84a"; }
  3710. .fa-broom::before {
  3711. content: "\f51a"; }
  3712. .fa-shield-heart::before {
  3713. content: "\e574"; }
  3714. .fa-gopuram::before {
  3715. content: "\f664"; }
  3716. .fa-earth-oceania::before {
  3717. content: "\e47b"; }
  3718. .fa-globe-oceania::before {
  3719. content: "\e47b"; }
  3720. .fa-square-xmark::before {
  3721. content: "\f2d3"; }
  3722. .fa-times-square::before {
  3723. content: "\f2d3"; }
  3724. .fa-xmark-square::before {
  3725. content: "\f2d3"; }
  3726. .fa-hashtag::before {
  3727. content: "\23"; }
  3728. .fa-up-right-and-down-left-from-center::before {
  3729. content: "\f424"; }
  3730. .fa-expand-alt::before {
  3731. content: "\f424"; }
  3732. .fa-oil-can::before {
  3733. content: "\f613"; }
  3734. .fa-t::before {
  3735. content: "\54"; }
  3736. .fa-hippo::before {
  3737. content: "\f6ed"; }
  3738. .fa-chart-column::before {
  3739. content: "\e0e3"; }
  3740. .fa-infinity::before {
  3741. content: "\f534"; }
  3742. .fa-vial-circle-check::before {
  3743. content: "\e596"; }
  3744. .fa-person-arrow-down-to-line::before {
  3745. content: "\e538"; }
  3746. .fa-voicemail::before {
  3747. content: "\f897"; }
  3748. .fa-fan::before {
  3749. content: "\f863"; }
  3750. .fa-person-walking-luggage::before {
  3751. content: "\e554"; }
  3752. .fa-up-down::before {
  3753. content: "\f338"; }
  3754. .fa-arrows-alt-v::before {
  3755. content: "\f338"; }
  3756. .fa-cloud-moon-rain::before {
  3757. content: "\f73c"; }
  3758. .fa-calendar::before {
  3759. content: "\f133"; }
  3760. .fa-trailer::before {
  3761. content: "\e041"; }
  3762. .fa-bahai::before {
  3763. content: "\f666"; }
  3764. .fa-haykal::before {
  3765. content: "\f666"; }
  3766. .fa-sd-card::before {
  3767. content: "\f7c2"; }
  3768. .fa-dragon::before {
  3769. content: "\f6d5"; }
  3770. .fa-shoe-prints::before {
  3771. content: "\f54b"; }
  3772. .fa-circle-plus::before {
  3773. content: "\f055"; }
  3774. .fa-plus-circle::before {
  3775. content: "\f055"; }
  3776. .fa-face-grin-tongue-wink::before {
  3777. content: "\f58b"; }
  3778. .fa-grin-tongue-wink::before {
  3779. content: "\f58b"; }
  3780. .fa-hand-holding::before {
  3781. content: "\f4bd"; }
  3782. .fa-plug-circle-exclamation::before {
  3783. content: "\e55d"; }
  3784. .fa-link-slash::before {
  3785. content: "\f127"; }
  3786. .fa-chain-broken::before {
  3787. content: "\f127"; }
  3788. .fa-chain-slash::before {
  3789. content: "\f127"; }
  3790. .fa-unlink::before {
  3791. content: "\f127"; }
  3792. .fa-clone::before {
  3793. content: "\f24d"; }
  3794. .fa-person-walking-arrow-loop-left::before {
  3795. content: "\e551"; }
  3796. .fa-arrow-up-z-a::before {
  3797. content: "\f882"; }
  3798. .fa-sort-alpha-up-alt::before {
  3799. content: "\f882"; }
  3800. .fa-fire-flame-curved::before {
  3801. content: "\f7e4"; }
  3802. .fa-fire-alt::before {
  3803. content: "\f7e4"; }
  3804. .fa-tornado::before {
  3805. content: "\f76f"; }
  3806. .fa-file-circle-plus::before {
  3807. content: "\e494"; }
  3808. .fa-book-quran::before {
  3809. content: "\f687"; }
  3810. .fa-quran::before {
  3811. content: "\f687"; }
  3812. .fa-anchor::before {
  3813. content: "\f13d"; }
  3814. .fa-border-all::before {
  3815. content: "\f84c"; }
  3816. .fa-face-angry::before {
  3817. content: "\f556"; }
  3818. .fa-angry::before {
  3819. content: "\f556"; }
  3820. .fa-cookie-bite::before {
  3821. content: "\f564"; }
  3822. .fa-arrow-trend-down::before {
  3823. content: "\e097"; }
  3824. .fa-rss::before {
  3825. content: "\f09e"; }
  3826. .fa-feed::before {
  3827. content: "\f09e"; }
  3828. .fa-draw-polygon::before {
  3829. content: "\f5ee"; }
  3830. .fa-scale-balanced::before {
  3831. content: "\f24e"; }
  3832. .fa-balance-scale::before {
  3833. content: "\f24e"; }
  3834. .fa-gauge-simple-high::before {
  3835. content: "\f62a"; }
  3836. .fa-tachometer::before {
  3837. content: "\f62a"; }
  3838. .fa-tachometer-fast::before {
  3839. content: "\f62a"; }
  3840. .fa-shower::before {
  3841. content: "\f2cc"; }
  3842. .fa-desktop::before {
  3843. content: "\f390"; }
  3844. .fa-desktop-alt::before {
  3845. content: "\f390"; }
  3846. .fa-m::before {
  3847. content: "\4d"; }
  3848. .fa-table-list::before {
  3849. content: "\f00b"; }
  3850. .fa-th-list::before {
  3851. content: "\f00b"; }
  3852. .fa-comment-sms::before {
  3853. content: "\f7cd"; }
  3854. .fa-sms::before {
  3855. content: "\f7cd"; }
  3856. .fa-book::before {
  3857. content: "\f02d"; }
  3858. .fa-user-plus::before {
  3859. content: "\f234"; }
  3860. .fa-check::before {
  3861. content: "\f00c"; }
  3862. .fa-battery-three-quarters::before {
  3863. content: "\f241"; }
  3864. .fa-battery-4::before {
  3865. content: "\f241"; }
  3866. .fa-house-circle-check::before {
  3867. content: "\e509"; }
  3868. .fa-angle-left::before {
  3869. content: "\f104"; }
  3870. .fa-diagram-successor::before {
  3871. content: "\e47a"; }
  3872. .fa-truck-arrow-right::before {
  3873. content: "\e58b"; }
  3874. .fa-arrows-split-up-and-left::before {
  3875. content: "\e4bc"; }
  3876. .fa-hand-fist::before {
  3877. content: "\f6de"; }
  3878. .fa-fist-raised::before {
  3879. content: "\f6de"; }
  3880. .fa-cloud-moon::before {
  3881. content: "\f6c3"; }
  3882. .fa-briefcase::before {
  3883. content: "\f0b1"; }
  3884. .fa-person-falling::before {
  3885. content: "\e546"; }
  3886. .fa-image-portrait::before {
  3887. content: "\f3e0"; }
  3888. .fa-portrait::before {
  3889. content: "\f3e0"; }
  3890. .fa-user-tag::before {
  3891. content: "\f507"; }
  3892. .fa-rug::before {
  3893. content: "\e569"; }
  3894. .fa-earth-europe::before {
  3895. content: "\f7a2"; }
  3896. .fa-globe-europe::before {
  3897. content: "\f7a2"; }
  3898. .fa-cart-flatbed-suitcase::before {
  3899. content: "\f59d"; }
  3900. .fa-luggage-cart::before {
  3901. content: "\f59d"; }
  3902. .fa-rectangle-xmark::before {
  3903. content: "\f410"; }
  3904. .fa-rectangle-times::before {
  3905. content: "\f410"; }
  3906. .fa-times-rectangle::before {
  3907. content: "\f410"; }
  3908. .fa-window-close::before {
  3909. content: "\f410"; }
  3910. .fa-baht-sign::before {
  3911. content: "\e0ac"; }
  3912. .fa-book-open::before {
  3913. content: "\f518"; }
  3914. .fa-book-journal-whills::before {
  3915. content: "\f66a"; }
  3916. .fa-journal-whills::before {
  3917. content: "\f66a"; }
  3918. .fa-handcuffs::before {
  3919. content: "\e4f8"; }
  3920. .fa-triangle-exclamation::before {
  3921. content: "\f071"; }
  3922. .fa-exclamation-triangle::before {
  3923. content: "\f071"; }
  3924. .fa-warning::before {
  3925. content: "\f071"; }
  3926. .fa-database::before {
  3927. content: "\f1c0"; }
  3928. .fa-share::before {
  3929. content: "\f064"; }
  3930. .fa-mail-forward::before {
  3931. content: "\f064"; }
  3932. .fa-bottle-droplet::before {
  3933. content: "\e4c4"; }
  3934. .fa-mask-face::before {
  3935. content: "\e1d7"; }
  3936. .fa-hill-rockslide::before {
  3937. content: "\e508"; }
  3938. .fa-right-left::before {
  3939. content: "\f362"; }
  3940. .fa-exchange-alt::before {
  3941. content: "\f362"; }
  3942. .fa-paper-plane::before {
  3943. content: "\f1d8"; }
  3944. .fa-road-circle-exclamation::before {
  3945. content: "\e565"; }
  3946. .fa-dungeon::before {
  3947. content: "\f6d9"; }
  3948. .fa-align-right::before {
  3949. content: "\f038"; }
  3950. .fa-money-bill-1-wave::before {
  3951. content: "\f53b"; }
  3952. .fa-money-bill-wave-alt::before {
  3953. content: "\f53b"; }
  3954. .fa-life-ring::before {
  3955. content: "\f1cd"; }
  3956. .fa-hands::before {
  3957. content: "\f2a7"; }
  3958. .fa-sign-language::before {
  3959. content: "\f2a7"; }
  3960. .fa-signing::before {
  3961. content: "\f2a7"; }
  3962. .fa-calendar-day::before {
  3963. content: "\f783"; }
  3964. .fa-water-ladder::before {
  3965. content: "\f5c5"; }
  3966. .fa-ladder-water::before {
  3967. content: "\f5c5"; }
  3968. .fa-swimming-pool::before {
  3969. content: "\f5c5"; }
  3970. .fa-arrows-up-down::before {
  3971. content: "\f07d"; }
  3972. .fa-arrows-v::before {
  3973. content: "\f07d"; }
  3974. .fa-face-grimace::before {
  3975. content: "\f57f"; }
  3976. .fa-grimace::before {
  3977. content: "\f57f"; }
  3978. .fa-wheelchair-move::before {
  3979. content: "\e2ce"; }
  3980. .fa-wheelchair-alt::before {
  3981. content: "\e2ce"; }
  3982. .fa-turn-down::before {
  3983. content: "\f3be"; }
  3984. .fa-level-down-alt::before {
  3985. content: "\f3be"; }
  3986. .fa-person-walking-arrow-right::before {
  3987. content: "\e552"; }
  3988. .fa-square-envelope::before {
  3989. content: "\f199"; }
  3990. .fa-envelope-square::before {
  3991. content: "\f199"; }
  3992. .fa-dice::before {
  3993. content: "\f522"; }
  3994. .fa-bowling-ball::before {
  3995. content: "\f436"; }
  3996. .fa-brain::before {
  3997. content: "\f5dc"; }
  3998. .fa-bandage::before {
  3999. content: "\f462"; }
  4000. .fa-band-aid::before {
  4001. content: "\f462"; }
  4002. .fa-calendar-minus::before {
  4003. content: "\f272"; }
  4004. .fa-circle-xmark::before {
  4005. content: "\f057"; }
  4006. .fa-times-circle::before {
  4007. content: "\f057"; }
  4008. .fa-xmark-circle::before {
  4009. content: "\f057"; }
  4010. .fa-gifts::before {
  4011. content: "\f79c"; }
  4012. .fa-hotel::before {
  4013. content: "\f594"; }
  4014. .fa-earth-asia::before {
  4015. content: "\f57e"; }
  4016. .fa-globe-asia::before {
  4017. content: "\f57e"; }
  4018. .fa-id-card-clip::before {
  4019. content: "\f47f"; }
  4020. .fa-id-card-alt::before {
  4021. content: "\f47f"; }
  4022. .fa-magnifying-glass-plus::before {
  4023. content: "\f00e"; }
  4024. .fa-search-plus::before {
  4025. content: "\f00e"; }
  4026. .fa-thumbs-up::before {
  4027. content: "\f164"; }
  4028. .fa-user-clock::before {
  4029. content: "\f4fd"; }
  4030. .fa-hand-dots::before {
  4031. content: "\f461"; }
  4032. .fa-allergies::before {
  4033. content: "\f461"; }
  4034. .fa-file-invoice::before {
  4035. content: "\f570"; }
  4036. .fa-window-minimize::before {
  4037. content: "\f2d1"; }
  4038. .fa-mug-saucer::before {
  4039. content: "\f0f4"; }
  4040. .fa-coffee::before {
  4041. content: "\f0f4"; }
  4042. .fa-brush::before {
  4043. content: "\f55d"; }
  4044. .fa-mask::before {
  4045. content: "\f6fa"; }
  4046. .fa-magnifying-glass-minus::before {
  4047. content: "\f010"; }
  4048. .fa-search-minus::before {
  4049. content: "\f010"; }
  4050. .fa-ruler-vertical::before {
  4051. content: "\f548"; }
  4052. .fa-user-large::before {
  4053. content: "\f406"; }
  4054. .fa-user-alt::before {
  4055. content: "\f406"; }
  4056. .fa-train-tram::before {
  4057. content: "\e5b4"; }
  4058. .fa-user-nurse::before {
  4059. content: "\f82f"; }
  4060. .fa-syringe::before {
  4061. content: "\f48e"; }
  4062. .fa-cloud-sun::before {
  4063. content: "\f6c4"; }
  4064. .fa-stopwatch-20::before {
  4065. content: "\e06f"; }
  4066. .fa-square-full::before {
  4067. content: "\f45c"; }
  4068. .fa-magnet::before {
  4069. content: "\f076"; }
  4070. .fa-jar::before {
  4071. content: "\e516"; }
  4072. .fa-note-sticky::before {
  4073. content: "\f249"; }
  4074. .fa-sticky-note::before {
  4075. content: "\f249"; }
  4076. .fa-bug-slash::before {
  4077. content: "\e490"; }
  4078. .fa-arrow-up-from-water-pump::before {
  4079. content: "\e4b6"; }
  4080. .fa-bone::before {
  4081. content: "\f5d7"; }
  4082. .fa-table-cells-row-unlock::before {
  4083. content: "\e691"; }
  4084. .fa-user-injured::before {
  4085. content: "\f728"; }
  4086. .fa-face-sad-tear::before {
  4087. content: "\f5b4"; }
  4088. .fa-sad-tear::before {
  4089. content: "\f5b4"; }
  4090. .fa-plane::before {
  4091. content: "\f072"; }
  4092. .fa-tent-arrows-down::before {
  4093. content: "\e581"; }
  4094. .fa-exclamation::before {
  4095. content: "\21"; }
  4096. .fa-arrows-spin::before {
  4097. content: "\e4bb"; }
  4098. .fa-print::before {
  4099. content: "\f02f"; }
  4100. .fa-turkish-lira-sign::before {
  4101. content: "\e2bb"; }
  4102. .fa-try::before {
  4103. content: "\e2bb"; }
  4104. .fa-turkish-lira::before {
  4105. content: "\e2bb"; }
  4106. .fa-dollar-sign::before {
  4107. content: "\24"; }
  4108. .fa-dollar::before {
  4109. content: "\24"; }
  4110. .fa-usd::before {
  4111. content: "\24"; }
  4112. .fa-x::before {
  4113. content: "\58"; }
  4114. .fa-magnifying-glass-dollar::before {
  4115. content: "\f688"; }
  4116. .fa-search-dollar::before {
  4117. content: "\f688"; }
  4118. .fa-users-gear::before {
  4119. content: "\f509"; }
  4120. .fa-users-cog::before {
  4121. content: "\f509"; }
  4122. .fa-person-military-pointing::before {
  4123. content: "\e54a"; }
  4124. .fa-building-columns::before {
  4125. content: "\f19c"; }
  4126. .fa-bank::before {
  4127. content: "\f19c"; }
  4128. .fa-institution::before {
  4129. content: "\f19c"; }
  4130. .fa-museum::before {
  4131. content: "\f19c"; }
  4132. .fa-university::before {
  4133. content: "\f19c"; }
  4134. .fa-umbrella::before {
  4135. content: "\f0e9"; }
  4136. .fa-trowel::before {
  4137. content: "\e589"; }
  4138. .fa-d::before {
  4139. content: "\44"; }
  4140. .fa-stapler::before {
  4141. content: "\e5af"; }
  4142. .fa-masks-theater::before {
  4143. content: "\f630"; }
  4144. .fa-theater-masks::before {
  4145. content: "\f630"; }
  4146. .fa-kip-sign::before {
  4147. content: "\e1c4"; }
  4148. .fa-hand-point-left::before {
  4149. content: "\f0a5"; }
  4150. .fa-handshake-simple::before {
  4151. content: "\f4c6"; }
  4152. .fa-handshake-alt::before {
  4153. content: "\f4c6"; }
  4154. .fa-jet-fighter::before {
  4155. content: "\f0fb"; }
  4156. .fa-fighter-jet::before {
  4157. content: "\f0fb"; }
  4158. .fa-square-share-nodes::before {
  4159. content: "\f1e1"; }
  4160. .fa-share-alt-square::before {
  4161. content: "\f1e1"; }
  4162. .fa-barcode::before {
  4163. content: "\f02a"; }
  4164. .fa-plus-minus::before {
  4165. content: "\e43c"; }
  4166. .fa-video::before {
  4167. content: "\f03d"; }
  4168. .fa-video-camera::before {
  4169. content: "\f03d"; }
  4170. .fa-graduation-cap::before {
  4171. content: "\f19d"; }
  4172. .fa-mortar-board::before {
  4173. content: "\f19d"; }
  4174. .fa-hand-holding-medical::before {
  4175. content: "\e05c"; }
  4176. .fa-person-circle-check::before {
  4177. content: "\e53e"; }
  4178. .fa-turn-up::before {
  4179. content: "\f3bf"; }
  4180. .fa-level-up-alt::before {
  4181. content: "\f3bf"; }
  4182. .sr-only,
  4183. .fa-sr-only {
  4184. position: absolute;
  4185. width: 1px;
  4186. height: 1px;
  4187. padding: 0;
  4188. margin: -1px;
  4189. overflow: hidden;
  4190. clip: rect(0, 0, 0, 0);
  4191. white-space: nowrap;
  4192. border-width: 0; }
  4193. .sr-only-focusable:not(:focus),
  4194. .fa-sr-only-focusable:not(:focus) {
  4195. position: absolute;
  4196. width: 1px;
  4197. height: 1px;
  4198. padding: 0;
  4199. margin: -1px;
  4200. overflow: hidden;
  4201. clip: rect(0, 0, 0, 0);
  4202. white-space: nowrap;
  4203. border-width: 0; }
  4204. :root, :host {
  4205. --fa-style-family-brands: 'Font Awesome 6 Brands';
  4206. --fa-font-brands: normal 400 1em/1 'Font Awesome 6 Brands'; }
  4207. @font-face {
  4208. font-family: 'Font Awesome 6 Brands';
  4209. font-style: normal;
  4210. font-weight: 400;
  4211. font-display: block;
  4212. src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); }
  4213. .fab,
  4214. .fa-brands {
  4215. font-weight: 400; }
  4216. .fa-monero:before {
  4217. content: "\f3d0"; }
  4218. .fa-hooli:before {
  4219. content: "\f427"; }
  4220. .fa-yelp:before {
  4221. content: "\f1e9"; }
  4222. .fa-cc-visa:before {
  4223. content: "\f1f0"; }
  4224. .fa-lastfm:before {
  4225. content: "\f202"; }
  4226. .fa-shopware:before {
  4227. content: "\f5b5"; }
  4228. .fa-creative-commons-nc:before {
  4229. content: "\f4e8"; }
  4230. .fa-aws:before {
  4231. content: "\f375"; }
  4232. .fa-redhat:before {
  4233. content: "\f7bc"; }
  4234. .fa-yoast:before {
  4235. content: "\f2b1"; }
  4236. .fa-cloudflare:before {
  4237. content: "\e07d"; }
  4238. .fa-ups:before {
  4239. content: "\f7e0"; }
  4240. .fa-pixiv:before {
  4241. content: "\e640"; }
  4242. .fa-wpexplorer:before {
  4243. content: "\f2de"; }
  4244. .fa-dyalog:before {
  4245. content: "\f399"; }
  4246. .fa-bity:before {
  4247. content: "\f37a"; }
  4248. .fa-stackpath:before {
  4249. content: "\f842"; }
  4250. .fa-buysellads:before {
  4251. content: "\f20d"; }
  4252. .fa-first-order:before {
  4253. content: "\f2b0"; }
  4254. .fa-modx:before {
  4255. content: "\f285"; }
  4256. .fa-guilded:before {
  4257. content: "\e07e"; }
  4258. .fa-vnv:before {
  4259. content: "\f40b"; }
  4260. .fa-square-js:before {
  4261. content: "\f3b9"; }
  4262. .fa-js-square:before {
  4263. content: "\f3b9"; }
  4264. .fa-microsoft:before {
  4265. content: "\f3ca"; }
  4266. .fa-qq:before {
  4267. content: "\f1d6"; }
  4268. .fa-orcid:before {
  4269. content: "\f8d2"; }
  4270. .fa-java:before {
  4271. content: "\f4e4"; }
  4272. .fa-invision:before {
  4273. content: "\f7b0"; }
  4274. .fa-creative-commons-pd-alt:before {
  4275. content: "\f4ed"; }
  4276. .fa-centercode:before {
  4277. content: "\f380"; }
  4278. .fa-glide-g:before {
  4279. content: "\f2a6"; }
  4280. .fa-drupal:before {
  4281. content: "\f1a9"; }
  4282. .fa-jxl:before {
  4283. content: "\e67b"; }
  4284. .fa-dart-lang:before {
  4285. content: "\e693"; }
  4286. .fa-hire-a-helper:before {
  4287. content: "\f3b0"; }
  4288. .fa-creative-commons-by:before {
  4289. content: "\f4e7"; }
  4290. .fa-unity:before {
  4291. content: "\e049"; }
  4292. .fa-whmcs:before {
  4293. content: "\f40d"; }
  4294. .fa-rocketchat:before {
  4295. content: "\f3e8"; }
  4296. .fa-vk:before {
  4297. content: "\f189"; }
  4298. .fa-untappd:before {
  4299. content: "\f405"; }
  4300. .fa-mailchimp:before {
  4301. content: "\f59e"; }
  4302. .fa-css3-alt:before {
  4303. content: "\f38b"; }
  4304. .fa-square-reddit:before {
  4305. content: "\f1a2"; }
  4306. .fa-reddit-square:before {
  4307. content: "\f1a2"; }
  4308. .fa-vimeo-v:before {
  4309. content: "\f27d"; }
  4310. .fa-contao:before {
  4311. content: "\f26d"; }
  4312. .fa-square-font-awesome:before {
  4313. content: "\e5ad"; }
  4314. .fa-deskpro:before {
  4315. content: "\f38f"; }
  4316. .fa-brave:before {
  4317. content: "\e63c"; }
  4318. .fa-sistrix:before {
  4319. content: "\f3ee"; }
  4320. .fa-square-instagram:before {
  4321. content: "\e055"; }
  4322. .fa-instagram-square:before {
  4323. content: "\e055"; }
  4324. .fa-battle-net:before {
  4325. content: "\f835"; }
  4326. .fa-the-red-yeti:before {
  4327. content: "\f69d"; }
  4328. .fa-square-hacker-news:before {
  4329. content: "\f3af"; }
  4330. .fa-hacker-news-square:before {
  4331. content: "\f3af"; }
  4332. .fa-edge:before {
  4333. content: "\f282"; }
  4334. .fa-threads:before {
  4335. content: "\e618"; }
  4336. .fa-napster:before {
  4337. content: "\f3d2"; }
  4338. .fa-square-snapchat:before {
  4339. content: "\f2ad"; }
  4340. .fa-snapchat-square:before {
  4341. content: "\f2ad"; }
  4342. .fa-google-plus-g:before {
  4343. content: "\f0d5"; }
  4344. .fa-artstation:before {
  4345. content: "\f77a"; }
  4346. .fa-markdown:before {
  4347. content: "\f60f"; }
  4348. .fa-sourcetree:before {
  4349. content: "\f7d3"; }
  4350. .fa-google-plus:before {
  4351. content: "\f2b3"; }
  4352. .fa-diaspora:before {
  4353. content: "\f791"; }
  4354. .fa-foursquare:before {
  4355. content: "\f180"; }
  4356. .fa-stack-overflow:before {
  4357. content: "\f16c"; }
  4358. .fa-github-alt:before {
  4359. content: "\f113"; }
  4360. .fa-phoenix-squadron:before {
  4361. content: "\f511"; }
  4362. .fa-pagelines:before {
  4363. content: "\f18c"; }
  4364. .fa-algolia:before {
  4365. content: "\f36c"; }
  4366. .fa-red-river:before {
  4367. content: "\f3e3"; }
  4368. .fa-creative-commons-sa:before {
  4369. content: "\f4ef"; }
  4370. .fa-safari:before {
  4371. content: "\f267"; }
  4372. .fa-google:before {
  4373. content: "\f1a0"; }
  4374. .fa-square-font-awesome-stroke:before {
  4375. content: "\f35c"; }
  4376. .fa-font-awesome-alt:before {
  4377. content: "\f35c"; }
  4378. .fa-atlassian:before {
  4379. content: "\f77b"; }
  4380. .fa-linkedin-in:before {
  4381. content: "\f0e1"; }
  4382. .fa-digital-ocean:before {
  4383. content: "\f391"; }
  4384. .fa-nimblr:before {
  4385. content: "\f5a8"; }
  4386. .fa-chromecast:before {
  4387. content: "\f838"; }
  4388. .fa-evernote:before {
  4389. content: "\f839"; }
  4390. .fa-hacker-news:before {
  4391. content: "\f1d4"; }
  4392. .fa-creative-commons-sampling:before {
  4393. content: "\f4f0"; }
  4394. .fa-adversal:before {
  4395. content: "\f36a"; }
  4396. .fa-creative-commons:before {
  4397. content: "\f25e"; }
  4398. .fa-watchman-monitoring:before {
  4399. content: "\e087"; }
  4400. .fa-fonticons:before {
  4401. content: "\f280"; }
  4402. .fa-weixin:before {
  4403. content: "\f1d7"; }
  4404. .fa-shirtsinbulk:before {
  4405. content: "\f214"; }
  4406. .fa-codepen:before {
  4407. content: "\f1cb"; }
  4408. .fa-git-alt:before {
  4409. content: "\f841"; }
  4410. .fa-lyft:before {
  4411. content: "\f3c3"; }
  4412. .fa-rev:before {
  4413. content: "\f5b2"; }
  4414. .fa-windows:before {
  4415. content: "\f17a"; }
  4416. .fa-wizards-of-the-coast:before {
  4417. content: "\f730"; }
  4418. .fa-square-viadeo:before {
  4419. content: "\f2aa"; }
  4420. .fa-viadeo-square:before {
  4421. content: "\f2aa"; }
  4422. .fa-meetup:before {
  4423. content: "\f2e0"; }
  4424. .fa-centos:before {
  4425. content: "\f789"; }
  4426. .fa-adn:before {
  4427. content: "\f170"; }
  4428. .fa-cloudsmith:before {
  4429. content: "\f384"; }
  4430. .fa-opensuse:before {
  4431. content: "\e62b"; }
  4432. .fa-pied-piper-alt:before {
  4433. content: "\f1a8"; }
  4434. .fa-square-dribbble:before {
  4435. content: "\f397"; }
  4436. .fa-dribbble-square:before {
  4437. content: "\f397"; }
  4438. .fa-codiepie:before {
  4439. content: "\f284"; }
  4440. .fa-node:before {
  4441. content: "\f419"; }
  4442. .fa-mix:before {
  4443. content: "\f3cb"; }
  4444. .fa-steam:before {
  4445. content: "\f1b6"; }
  4446. .fa-cc-apple-pay:before {
  4447. content: "\f416"; }
  4448. .fa-scribd:before {
  4449. content: "\f28a"; }
  4450. .fa-debian:before {
  4451. content: "\e60b"; }
  4452. .fa-openid:before {
  4453. content: "\f19b"; }
  4454. .fa-instalod:before {
  4455. content: "\e081"; }
  4456. .fa-expeditedssl:before {
  4457. content: "\f23e"; }
  4458. .fa-sellcast:before {
  4459. content: "\f2da"; }
  4460. .fa-square-twitter:before {
  4461. content: "\f081"; }
  4462. .fa-twitter-square:before {
  4463. content: "\f081"; }
  4464. .fa-r-project:before {
  4465. content: "\f4f7"; }
  4466. .fa-delicious:before {
  4467. content: "\f1a5"; }
  4468. .fa-freebsd:before {
  4469. content: "\f3a4"; }
  4470. .fa-vuejs:before {
  4471. content: "\f41f"; }
  4472. .fa-accusoft:before {
  4473. content: "\f369"; }
  4474. .fa-ioxhost:before {
  4475. content: "\f208"; }
  4476. .fa-fonticons-fi:before {
  4477. content: "\f3a2"; }
  4478. .fa-app-store:before {
  4479. content: "\f36f"; }
  4480. .fa-cc-mastercard:before {
  4481. content: "\f1f1"; }
  4482. .fa-itunes-note:before {
  4483. content: "\f3b5"; }
  4484. .fa-golang:before {
  4485. content: "\e40f"; }
  4486. .fa-kickstarter:before {
  4487. content: "\f3bb"; }
  4488. .fa-square-kickstarter:before {
  4489. content: "\f3bb"; }
  4490. .fa-grav:before {
  4491. content: "\f2d6"; }
  4492. .fa-weibo:before {
  4493. content: "\f18a"; }
  4494. .fa-uncharted:before {
  4495. content: "\e084"; }
  4496. .fa-firstdraft:before {
  4497. content: "\f3a1"; }
  4498. .fa-square-youtube:before {
  4499. content: "\f431"; }
  4500. .fa-youtube-square:before {
  4501. content: "\f431"; }
  4502. .fa-wikipedia-w:before {
  4503. content: "\f266"; }
  4504. .fa-wpressr:before {
  4505. content: "\f3e4"; }
  4506. .fa-rendact:before {
  4507. content: "\f3e4"; }
  4508. .fa-angellist:before {
  4509. content: "\f209"; }
  4510. .fa-galactic-republic:before {
  4511. content: "\f50c"; }
  4512. .fa-nfc-directional:before {
  4513. content: "\e530"; }
  4514. .fa-skype:before {
  4515. content: "\f17e"; }
  4516. .fa-joget:before {
  4517. content: "\f3b7"; }
  4518. .fa-fedora:before {
  4519. content: "\f798"; }
  4520. .fa-stripe-s:before {
  4521. content: "\f42a"; }
  4522. .fa-meta:before {
  4523. content: "\e49b"; }
  4524. .fa-laravel:before {
  4525. content: "\f3bd"; }
  4526. .fa-hotjar:before {
  4527. content: "\f3b1"; }
  4528. .fa-bluetooth-b:before {
  4529. content: "\f294"; }
  4530. .fa-square-letterboxd:before {
  4531. content: "\e62e"; }
  4532. .fa-sticker-mule:before {
  4533. content: "\f3f7"; }
  4534. .fa-creative-commons-zero:before {
  4535. content: "\f4f3"; }
  4536. .fa-hips:before {
  4537. content: "\f452"; }
  4538. .fa-behance:before {
  4539. content: "\f1b4"; }
  4540. .fa-reddit:before {
  4541. content: "\f1a1"; }
  4542. .fa-discord:before {
  4543. content: "\f392"; }
  4544. .fa-chrome:before {
  4545. content: "\f268"; }
  4546. .fa-app-store-ios:before {
  4547. content: "\f370"; }
  4548. .fa-cc-discover:before {
  4549. content: "\f1f2"; }
  4550. .fa-wpbeginner:before {
  4551. content: "\f297"; }
  4552. .fa-confluence:before {
  4553. content: "\f78d"; }
  4554. .fa-shoelace:before {
  4555. content: "\e60c"; }
  4556. .fa-mdb:before {
  4557. content: "\f8ca"; }
  4558. .fa-dochub:before {
  4559. content: "\f394"; }
  4560. .fa-accessible-icon:before {
  4561. content: "\f368"; }
  4562. .fa-ebay:before {
  4563. content: "\f4f4"; }
  4564. .fa-amazon:before {
  4565. content: "\f270"; }
  4566. .fa-unsplash:before {
  4567. content: "\e07c"; }
  4568. .fa-yarn:before {
  4569. content: "\f7e3"; }
  4570. .fa-square-steam:before {
  4571. content: "\f1b7"; }
  4572. .fa-steam-square:before {
  4573. content: "\f1b7"; }
  4574. .fa-500px:before {
  4575. content: "\f26e"; }
  4576. .fa-square-vimeo:before {
  4577. content: "\f194"; }
  4578. .fa-vimeo-square:before {
  4579. content: "\f194"; }
  4580. .fa-asymmetrik:before {
  4581. content: "\f372"; }
  4582. .fa-font-awesome:before {
  4583. content: "\f2b4"; }
  4584. .fa-font-awesome-flag:before {
  4585. content: "\f2b4"; }
  4586. .fa-font-awesome-logo-full:before {
  4587. content: "\f2b4"; }
  4588. .fa-gratipay:before {
  4589. content: "\f184"; }
  4590. .fa-apple:before {
  4591. content: "\f179"; }
  4592. .fa-hive:before {
  4593. content: "\e07f"; }
  4594. .fa-gitkraken:before {
  4595. content: "\f3a6"; }
  4596. .fa-keybase:before {
  4597. content: "\f4f5"; }
  4598. .fa-apple-pay:before {
  4599. content: "\f415"; }
  4600. .fa-padlet:before {
  4601. content: "\e4a0"; }
  4602. .fa-amazon-pay:before {
  4603. content: "\f42c"; }
  4604. .fa-square-github:before {
  4605. content: "\f092"; }
  4606. .fa-github-square:before {
  4607. content: "\f092"; }
  4608. .fa-stumbleupon:before {
  4609. content: "\f1a4"; }
  4610. .fa-fedex:before {
  4611. content: "\f797"; }
  4612. .fa-phoenix-framework:before {
  4613. content: "\f3dc"; }
  4614. .fa-shopify:before {
  4615. content: "\e057"; }
  4616. .fa-neos:before {
  4617. content: "\f612"; }
  4618. .fa-square-threads:before {
  4619. content: "\e619"; }
  4620. .fa-hackerrank:before {
  4621. content: "\f5f7"; }
  4622. .fa-researchgate:before {
  4623. content: "\f4f8"; }
  4624. .fa-swift:before {
  4625. content: "\f8e1"; }
  4626. .fa-angular:before {
  4627. content: "\f420"; }
  4628. .fa-speakap:before {
  4629. content: "\f3f3"; }
  4630. .fa-angrycreative:before {
  4631. content: "\f36e"; }
  4632. .fa-y-combinator:before {
  4633. content: "\f23b"; }
  4634. .fa-empire:before {
  4635. content: "\f1d1"; }
  4636. .fa-envira:before {
  4637. content: "\f299"; }
  4638. .fa-google-scholar:before {
  4639. content: "\e63b"; }
  4640. .fa-square-gitlab:before {
  4641. content: "\e5ae"; }
  4642. .fa-gitlab-square:before {
  4643. content: "\e5ae"; }
  4644. .fa-studiovinari:before {
  4645. content: "\f3f8"; }
  4646. .fa-pied-piper:before {
  4647. content: "\f2ae"; }
  4648. .fa-wordpress:before {
  4649. content: "\f19a"; }
  4650. .fa-product-hunt:before {
  4651. content: "\f288"; }
  4652. .fa-firefox:before {
  4653. content: "\f269"; }
  4654. .fa-linode:before {
  4655. content: "\f2b8"; }
  4656. .fa-goodreads:before {
  4657. content: "\f3a8"; }
  4658. .fa-square-odnoklassniki:before {
  4659. content: "\f264"; }
  4660. .fa-odnoklassniki-square:before {
  4661. content: "\f264"; }
  4662. .fa-jsfiddle:before {
  4663. content: "\f1cc"; }
  4664. .fa-sith:before {
  4665. content: "\f512"; }
  4666. .fa-themeisle:before {
  4667. content: "\f2b2"; }
  4668. .fa-page4:before {
  4669. content: "\f3d7"; }
  4670. .fa-hashnode:before {
  4671. content: "\e499"; }
  4672. .fa-react:before {
  4673. content: "\f41b"; }
  4674. .fa-cc-paypal:before {
  4675. content: "\f1f4"; }
  4676. .fa-squarespace:before {
  4677. content: "\f5be"; }
  4678. .fa-cc-stripe:before {
  4679. content: "\f1f5"; }
  4680. .fa-creative-commons-share:before {
  4681. content: "\f4f2"; }
  4682. .fa-bitcoin:before {
  4683. content: "\f379"; }
  4684. .fa-keycdn:before {
  4685. content: "\f3ba"; }
  4686. .fa-opera:before {
  4687. content: "\f26a"; }
  4688. .fa-itch-io:before {
  4689. content: "\f83a"; }
  4690. .fa-umbraco:before {
  4691. content: "\f8e8"; }
  4692. .fa-galactic-senate:before {
  4693. content: "\f50d"; }
  4694. .fa-ubuntu:before {
  4695. content: "\f7df"; }
  4696. .fa-draft2digital:before {
  4697. content: "\f396"; }
  4698. .fa-stripe:before {
  4699. content: "\f429"; }
  4700. .fa-houzz:before {
  4701. content: "\f27c"; }
  4702. .fa-gg:before {
  4703. content: "\f260"; }
  4704. .fa-dhl:before {
  4705. content: "\f790"; }
  4706. .fa-square-pinterest:before {
  4707. content: "\f0d3"; }
  4708. .fa-pinterest-square:before {
  4709. content: "\f0d3"; }
  4710. .fa-xing:before {
  4711. content: "\f168"; }
  4712. .fa-blackberry:before {
  4713. content: "\f37b"; }
  4714. .fa-creative-commons-pd:before {
  4715. content: "\f4ec"; }
  4716. .fa-playstation:before {
  4717. content: "\f3df"; }
  4718. .fa-quinscape:before {
  4719. content: "\f459"; }
  4720. .fa-less:before {
  4721. content: "\f41d"; }
  4722. .fa-blogger-b:before {
  4723. content: "\f37d"; }
  4724. .fa-opencart:before {
  4725. content: "\f23d"; }
  4726. .fa-vine:before {
  4727. content: "\f1ca"; }
  4728. .fa-signal-messenger:before {
  4729. content: "\e663"; }
  4730. .fa-paypal:before {
  4731. content: "\f1ed"; }
  4732. .fa-gitlab:before {
  4733. content: "\f296"; }
  4734. .fa-typo3:before {
  4735. content: "\f42b"; }
  4736. .fa-reddit-alien:before {
  4737. content: "\f281"; }
  4738. .fa-yahoo:before {
  4739. content: "\f19e"; }
  4740. .fa-dailymotion:before {
  4741. content: "\e052"; }
  4742. .fa-affiliatetheme:before {
  4743. content: "\f36b"; }
  4744. .fa-pied-piper-pp:before {
  4745. content: "\f1a7"; }
  4746. .fa-bootstrap:before {
  4747. content: "\f836"; }
  4748. .fa-odnoklassniki:before {
  4749. content: "\f263"; }
  4750. .fa-nfc-symbol:before {
  4751. content: "\e531"; }
  4752. .fa-mintbit:before {
  4753. content: "\e62f"; }
  4754. .fa-ethereum:before {
  4755. content: "\f42e"; }
  4756. .fa-speaker-deck:before {
  4757. content: "\f83c"; }
  4758. .fa-creative-commons-nc-eu:before {
  4759. content: "\f4e9"; }
  4760. .fa-patreon:before {
  4761. content: "\f3d9"; }
  4762. .fa-avianex:before {
  4763. content: "\f374"; }
  4764. .fa-ello:before {
  4765. content: "\f5f1"; }
  4766. .fa-gofore:before {
  4767. content: "\f3a7"; }
  4768. .fa-bimobject:before {
  4769. content: "\f378"; }
  4770. .fa-brave-reverse:before {
  4771. content: "\e63d"; }
  4772. .fa-facebook-f:before {
  4773. content: "\f39e"; }
  4774. .fa-square-google-plus:before {
  4775. content: "\f0d4"; }
  4776. .fa-google-plus-square:before {
  4777. content: "\f0d4"; }
  4778. .fa-web-awesome:before {
  4779. content: "\e682"; }
  4780. .fa-mandalorian:before {
  4781. content: "\f50f"; }
  4782. .fa-first-order-alt:before {
  4783. content: "\f50a"; }
  4784. .fa-osi:before {
  4785. content: "\f41a"; }
  4786. .fa-google-wallet:before {
  4787. content: "\f1ee"; }
  4788. .fa-d-and-d-beyond:before {
  4789. content: "\f6ca"; }
  4790. .fa-periscope:before {
  4791. content: "\f3da"; }
  4792. .fa-fulcrum:before {
  4793. content: "\f50b"; }
  4794. .fa-cloudscale:before {
  4795. content: "\f383"; }
  4796. .fa-forumbee:before {
  4797. content: "\f211"; }
  4798. .fa-mizuni:before {
  4799. content: "\f3cc"; }
  4800. .fa-schlix:before {
  4801. content: "\f3ea"; }
  4802. .fa-square-xing:before {
  4803. content: "\f169"; }
  4804. .fa-xing-square:before {
  4805. content: "\f169"; }
  4806. .fa-bandcamp:before {
  4807. content: "\f2d5"; }
  4808. .fa-wpforms:before {
  4809. content: "\f298"; }
  4810. .fa-cloudversify:before {
  4811. content: "\f385"; }
  4812. .fa-usps:before {
  4813. content: "\f7e1"; }
  4814. .fa-megaport:before {
  4815. content: "\f5a3"; }
  4816. .fa-magento:before {
  4817. content: "\f3c4"; }
  4818. .fa-spotify:before {
  4819. content: "\f1bc"; }
  4820. .fa-optin-monster:before {
  4821. content: "\f23c"; }
  4822. .fa-fly:before {
  4823. content: "\f417"; }
  4824. .fa-aviato:before {
  4825. content: "\f421"; }
  4826. .fa-itunes:before {
  4827. content: "\f3b4"; }
  4828. .fa-cuttlefish:before {
  4829. content: "\f38c"; }
  4830. .fa-blogger:before {
  4831. content: "\f37c"; }
  4832. .fa-flickr:before {
  4833. content: "\f16e"; }
  4834. .fa-viber:before {
  4835. content: "\f409"; }
  4836. .fa-soundcloud:before {
  4837. content: "\f1be"; }
  4838. .fa-digg:before {
  4839. content: "\f1a6"; }
  4840. .fa-tencent-weibo:before {
  4841. content: "\f1d5"; }
  4842. .fa-letterboxd:before {
  4843. content: "\e62d"; }
  4844. .fa-symfony:before {
  4845. content: "\f83d"; }
  4846. .fa-maxcdn:before {
  4847. content: "\f136"; }
  4848. .fa-etsy:before {
  4849. content: "\f2d7"; }
  4850. .fa-facebook-messenger:before {
  4851. content: "\f39f"; }
  4852. .fa-audible:before {
  4853. content: "\f373"; }
  4854. .fa-think-peaks:before {
  4855. content: "\f731"; }
  4856. .fa-bilibili:before {
  4857. content: "\e3d9"; }
  4858. .fa-erlang:before {
  4859. content: "\f39d"; }
  4860. .fa-x-twitter:before {
  4861. content: "\e61b"; }
  4862. .fa-cotton-bureau:before {
  4863. content: "\f89e"; }
  4864. .fa-dashcube:before {
  4865. content: "\f210"; }
  4866. .fa-42-group:before {
  4867. content: "\e080"; }
  4868. .fa-innosoft:before {
  4869. content: "\e080"; }
  4870. .fa-stack-exchange:before {
  4871. content: "\f18d"; }
  4872. .fa-elementor:before {
  4873. content: "\f430"; }
  4874. .fa-square-pied-piper:before {
  4875. content: "\e01e"; }
  4876. .fa-pied-piper-square:before {
  4877. content: "\e01e"; }
  4878. .fa-creative-commons-nd:before {
  4879. content: "\f4eb"; }
  4880. .fa-palfed:before {
  4881. content: "\f3d8"; }
  4882. .fa-superpowers:before {
  4883. content: "\f2dd"; }
  4884. .fa-resolving:before {
  4885. content: "\f3e7"; }
  4886. .fa-xbox:before {
  4887. content: "\f412"; }
  4888. .fa-square-web-awesome-stroke:before {
  4889. content: "\e684"; }
  4890. .fa-searchengin:before {
  4891. content: "\f3eb"; }
  4892. .fa-tiktok:before {
  4893. content: "\e07b"; }
  4894. .fa-square-facebook:before {
  4895. content: "\f082"; }
  4896. .fa-facebook-square:before {
  4897. content: "\f082"; }
  4898. .fa-renren:before {
  4899. content: "\f18b"; }
  4900. .fa-linux:before {
  4901. content: "\f17c"; }
  4902. .fa-glide:before {
  4903. content: "\f2a5"; }
  4904. .fa-linkedin:before {
  4905. content: "\f08c"; }
  4906. .fa-hubspot:before {
  4907. content: "\f3b2"; }
  4908. .fa-deploydog:before {
  4909. content: "\f38e"; }
  4910. .fa-twitch:before {
  4911. content: "\f1e8"; }
  4912. .fa-flutter:before {
  4913. content: "\e694"; }
  4914. .fa-ravelry:before {
  4915. content: "\f2d9"; }
  4916. .fa-mixer:before {
  4917. content: "\e056"; }
  4918. .fa-square-lastfm:before {
  4919. content: "\f203"; }
  4920. .fa-lastfm-square:before {
  4921. content: "\f203"; }
  4922. .fa-vimeo:before {
  4923. content: "\f40a"; }
  4924. .fa-mendeley:before {
  4925. content: "\f7b3"; }
  4926. .fa-uniregistry:before {
  4927. content: "\f404"; }
  4928. .fa-figma:before {
  4929. content: "\f799"; }
  4930. .fa-creative-commons-remix:before {
  4931. content: "\f4ee"; }
  4932. .fa-cc-amazon-pay:before {
  4933. content: "\f42d"; }
  4934. .fa-dropbox:before {
  4935. content: "\f16b"; }
  4936. .fa-instagram:before {
  4937. content: "\f16d"; }
  4938. .fa-cmplid:before {
  4939. content: "\e360"; }
  4940. .fa-upwork:before {
  4941. content: "\e641"; }
  4942. .fa-facebook:before {
  4943. content: "\f09a"; }
  4944. .fa-gripfire:before {
  4945. content: "\f3ac"; }
  4946. .fa-jedi-order:before {
  4947. content: "\f50e"; }
  4948. .fa-uikit:before {
  4949. content: "\f403"; }
  4950. .fa-fort-awesome-alt:before {
  4951. content: "\f3a3"; }
  4952. .fa-phabricator:before {
  4953. content: "\f3db"; }
  4954. .fa-ussunnah:before {
  4955. content: "\f407"; }
  4956. .fa-earlybirds:before {
  4957. content: "\f39a"; }
  4958. .fa-trade-federation:before {
  4959. content: "\f513"; }
  4960. .fa-autoprefixer:before {
  4961. content: "\f41c"; }
  4962. .fa-whatsapp:before {
  4963. content: "\f232"; }
  4964. .fa-square-upwork:before {
  4965. content: "\e67c"; }
  4966. .fa-slideshare:before {
  4967. content: "\f1e7"; }
  4968. .fa-google-play:before {
  4969. content: "\f3ab"; }
  4970. .fa-viadeo:before {
  4971. content: "\f2a9"; }
  4972. .fa-line:before {
  4973. content: "\f3c0"; }
  4974. .fa-google-drive:before {
  4975. content: "\f3aa"; }
  4976. .fa-servicestack:before {
  4977. content: "\f3ec"; }
  4978. .fa-simplybuilt:before {
  4979. content: "\f215"; }
  4980. .fa-bitbucket:before {
  4981. content: "\f171"; }
  4982. .fa-imdb:before {
  4983. content: "\f2d8"; }
  4984. .fa-deezer:before {
  4985. content: "\e077"; }
  4986. .fa-raspberry-pi:before {
  4987. content: "\f7bb"; }
  4988. .fa-jira:before {
  4989. content: "\f7b1"; }
  4990. .fa-docker:before {
  4991. content: "\f395"; }
  4992. .fa-screenpal:before {
  4993. content: "\e570"; }
  4994. .fa-bluetooth:before {
  4995. content: "\f293"; }
  4996. .fa-gitter:before {
  4997. content: "\f426"; }
  4998. .fa-d-and-d:before {
  4999. content: "\f38d"; }
  5000. .fa-microblog:before {
  5001. content: "\e01a"; }
  5002. .fa-cc-diners-club:before {
  5003. content: "\f24c"; }
  5004. .fa-gg-circle:before {
  5005. content: "\f261"; }
  5006. .fa-pied-piper-hat:before {
  5007. content: "\f4e5"; }
  5008. .fa-kickstarter-k:before {
  5009. content: "\f3bc"; }
  5010. .fa-yandex:before {
  5011. content: "\f413"; }
  5012. .fa-readme:before {
  5013. content: "\f4d5"; }
  5014. .fa-html5:before {
  5015. content: "\f13b"; }
  5016. .fa-sellsy:before {
  5017. content: "\f213"; }
  5018. .fa-square-web-awesome:before {
  5019. content: "\e683"; }
  5020. .fa-sass:before {
  5021. content: "\f41e"; }
  5022. .fa-wirsindhandwerk:before {
  5023. content: "\e2d0"; }
  5024. .fa-wsh:before {
  5025. content: "\e2d0"; }
  5026. .fa-buromobelexperte:before {
  5027. content: "\f37f"; }
  5028. .fa-salesforce:before {
  5029. content: "\f83b"; }
  5030. .fa-octopus-deploy:before {
  5031. content: "\e082"; }
  5032. .fa-medapps:before {
  5033. content: "\f3c6"; }
  5034. .fa-ns8:before {
  5035. content: "\f3d5"; }
  5036. .fa-pinterest-p:before {
  5037. content: "\f231"; }
  5038. .fa-apper:before {
  5039. content: "\f371"; }
  5040. .fa-fort-awesome:before {
  5041. content: "\f286"; }
  5042. .fa-waze:before {
  5043. content: "\f83f"; }
  5044. .fa-bluesky:before {
  5045. content: "\e671"; }
  5046. .fa-cc-jcb:before {
  5047. content: "\f24b"; }
  5048. .fa-snapchat:before {
  5049. content: "\f2ab"; }
  5050. .fa-snapchat-ghost:before {
  5051. content: "\f2ab"; }
  5052. .fa-fantasy-flight-games:before {
  5053. content: "\f6dc"; }
  5054. .fa-rust:before {
  5055. content: "\e07a"; }
  5056. .fa-wix:before {
  5057. content: "\f5cf"; }
  5058. .fa-square-behance:before {
  5059. content: "\f1b5"; }
  5060. .fa-behance-square:before {
  5061. content: "\f1b5"; }
  5062. .fa-supple:before {
  5063. content: "\f3f9"; }
  5064. .fa-webflow:before {
  5065. content: "\e65c"; }
  5066. .fa-rebel:before {
  5067. content: "\f1d0"; }
  5068. .fa-css3:before {
  5069. content: "\f13c"; }
  5070. .fa-staylinked:before {
  5071. content: "\f3f5"; }
  5072. .fa-kaggle:before {
  5073. content: "\f5fa"; }
  5074. .fa-space-awesome:before {
  5075. content: "\e5ac"; }
  5076. .fa-deviantart:before {
  5077. content: "\f1bd"; }
  5078. .fa-cpanel:before {
  5079. content: "\f388"; }
  5080. .fa-goodreads-g:before {
  5081. content: "\f3a9"; }
  5082. .fa-square-git:before {
  5083. content: "\f1d2"; }
  5084. .fa-git-square:before {
  5085. content: "\f1d2"; }
  5086. .fa-square-tumblr:before {
  5087. content: "\f174"; }
  5088. .fa-tumblr-square:before {
  5089. content: "\f174"; }
  5090. .fa-trello:before {
  5091. content: "\f181"; }
  5092. .fa-creative-commons-nc-jp:before {
  5093. content: "\f4ea"; }
  5094. .fa-get-pocket:before {
  5095. content: "\f265"; }
  5096. .fa-perbyte:before {
  5097. content: "\e083"; }
  5098. .fa-grunt:before {
  5099. content: "\f3ad"; }
  5100. .fa-weebly:before {
  5101. content: "\f5cc"; }
  5102. .fa-connectdevelop:before {
  5103. content: "\f20e"; }
  5104. .fa-leanpub:before {
  5105. content: "\f212"; }
  5106. .fa-black-tie:before {
  5107. content: "\f27e"; }
  5108. .fa-themeco:before {
  5109. content: "\f5c6"; }
  5110. .fa-python:before {
  5111. content: "\f3e2"; }
  5112. .fa-android:before {
  5113. content: "\f17b"; }
  5114. .fa-bots:before {
  5115. content: "\e340"; }
  5116. .fa-free-code-camp:before {
  5117. content: "\f2c5"; }
  5118. .fa-hornbill:before {
  5119. content: "\f592"; }
  5120. .fa-js:before {
  5121. content: "\f3b8"; }
  5122. .fa-ideal:before {
  5123. content: "\e013"; }
  5124. .fa-git:before {
  5125. content: "\f1d3"; }
  5126. .fa-dev:before {
  5127. content: "\f6cc"; }
  5128. .fa-sketch:before {
  5129. content: "\f7c6"; }
  5130. .fa-yandex-international:before {
  5131. content: "\f414"; }
  5132. .fa-cc-amex:before {
  5133. content: "\f1f3"; }
  5134. .fa-uber:before {
  5135. content: "\f402"; }
  5136. .fa-github:before {
  5137. content: "\f09b"; }
  5138. .fa-php:before {
  5139. content: "\f457"; }
  5140. .fa-alipay:before {
  5141. content: "\f642"; }
  5142. .fa-youtube:before {
  5143. content: "\f167"; }
  5144. .fa-skyatlas:before {
  5145. content: "\f216"; }
  5146. .fa-firefox-browser:before {
  5147. content: "\e007"; }
  5148. .fa-replyd:before {
  5149. content: "\f3e6"; }
  5150. .fa-suse:before {
  5151. content: "\f7d6"; }
  5152. .fa-jenkins:before {
  5153. content: "\f3b6"; }
  5154. .fa-twitter:before {
  5155. content: "\f099"; }
  5156. .fa-rockrms:before {
  5157. content: "\f3e9"; }
  5158. .fa-pinterest:before {
  5159. content: "\f0d2"; }
  5160. .fa-buffer:before {
  5161. content: "\f837"; }
  5162. .fa-npm:before {
  5163. content: "\f3d4"; }
  5164. .fa-yammer:before {
  5165. content: "\f840"; }
  5166. .fa-btc:before {
  5167. content: "\f15a"; }
  5168. .fa-dribbble:before {
  5169. content: "\f17d"; }
  5170. .fa-stumbleupon-circle:before {
  5171. content: "\f1a3"; }
  5172. .fa-internet-explorer:before {
  5173. content: "\f26b"; }
  5174. .fa-stubber:before {
  5175. content: "\e5c7"; }
  5176. .fa-telegram:before {
  5177. content: "\f2c6"; }
  5178. .fa-telegram-plane:before {
  5179. content: "\f2c6"; }
  5180. .fa-old-republic:before {
  5181. content: "\f510"; }
  5182. .fa-odysee:before {
  5183. content: "\e5c6"; }
  5184. .fa-square-whatsapp:before {
  5185. content: "\f40c"; }
  5186. .fa-whatsapp-square:before {
  5187. content: "\f40c"; }
  5188. .fa-node-js:before {
  5189. content: "\f3d3"; }
  5190. .fa-edge-legacy:before {
  5191. content: "\e078"; }
  5192. .fa-slack:before {
  5193. content: "\f198"; }
  5194. .fa-slack-hash:before {
  5195. content: "\f198"; }
  5196. .fa-medrt:before {
  5197. content: "\f3c8"; }
  5198. .fa-usb:before {
  5199. content: "\f287"; }
  5200. .fa-tumblr:before {
  5201. content: "\f173"; }
  5202. .fa-vaadin:before {
  5203. content: "\f408"; }
  5204. .fa-quora:before {
  5205. content: "\f2c4"; }
  5206. .fa-square-x-twitter:before {
  5207. content: "\e61a"; }
  5208. .fa-reacteurope:before {
  5209. content: "\f75d"; }
  5210. .fa-medium:before {
  5211. content: "\f23a"; }
  5212. .fa-medium-m:before {
  5213. content: "\f23a"; }
  5214. .fa-amilia:before {
  5215. content: "\f36d"; }
  5216. .fa-mixcloud:before {
  5217. content: "\f289"; }
  5218. .fa-flipboard:before {
  5219. content: "\f44d"; }
  5220. .fa-viacoin:before {
  5221. content: "\f237"; }
  5222. .fa-critical-role:before {
  5223. content: "\f6c9"; }
  5224. .fa-sitrox:before {
  5225. content: "\e44a"; }
  5226. .fa-discourse:before {
  5227. content: "\f393"; }
  5228. .fa-joomla:before {
  5229. content: "\f1aa"; }
  5230. .fa-mastodon:before {
  5231. content: "\f4f6"; }
  5232. .fa-airbnb:before {
  5233. content: "\f834"; }
  5234. .fa-wolf-pack-battalion:before {
  5235. content: "\f514"; }
  5236. .fa-buy-n-large:before {
  5237. content: "\f8a6"; }
  5238. .fa-gulp:before {
  5239. content: "\f3ae"; }
  5240. .fa-creative-commons-sampling-plus:before {
  5241. content: "\f4f1"; }
  5242. .fa-strava:before {
  5243. content: "\f428"; }
  5244. .fa-ember:before {
  5245. content: "\f423"; }
  5246. .fa-canadian-maple-leaf:before {
  5247. content: "\f785"; }
  5248. .fa-teamspeak:before {
  5249. content: "\f4f9"; }
  5250. .fa-pushed:before {
  5251. content: "\f3e1"; }
  5252. .fa-wordpress-simple:before {
  5253. content: "\f411"; }
  5254. .fa-nutritionix:before {
  5255. content: "\f3d6"; }
  5256. .fa-wodu:before {
  5257. content: "\e088"; }
  5258. .fa-google-pay:before {
  5259. content: "\e079"; }
  5260. .fa-intercom:before {
  5261. content: "\f7af"; }
  5262. .fa-zhihu:before {
  5263. content: "\f63f"; }
  5264. .fa-korvue:before {
  5265. content: "\f42f"; }
  5266. .fa-pix:before {
  5267. content: "\e43a"; }
  5268. .fa-steam-symbol:before {
  5269. content: "\f3f6"; }
  5270. :root, :host {
  5271. --fa-style-family-classic: 'Font Awesome 6 Free';
  5272. --fa-font-regular: normal 400 1em/1 'Font Awesome 6 Free'; }
  5273. @font-face {
  5274. font-family: 'Font Awesome 6 Free';
  5275. font-style: normal;
  5276. font-weight: 400;
  5277. font-display: block;
  5278. src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); }
  5279. .far,
  5280. .fa-regular {
  5281. font-weight: 400; }
  5282. :root, :host {
  5283. --fa-style-family-classic: 'Font Awesome 6 Free';
  5284. --fa-font-solid: normal 900 1em/1 'Font Awesome 6 Free'; }
  5285. @font-face {
  5286. font-family: 'Font Awesome 6 Free';
  5287. font-style: normal;
  5288. font-weight: 900;
  5289. font-display: block;
  5290. src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); }
  5291. .fas,
  5292. .fa-solid {
  5293. font-weight: 900; }
  5294. @font-face {
  5295. font-family: 'Font Awesome 5 Brands';
  5296. font-display: block;
  5297. font-weight: 400;
  5298. src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); }
  5299. @font-face {
  5300. font-family: 'Font Awesome 5 Free';
  5301. font-display: block;
  5302. font-weight: 900;
  5303. src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); }
  5304. @font-face {
  5305. font-family: 'Font Awesome 5 Free';
  5306. font-display: block;
  5307. font-weight: 400;
  5308. src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); }
  5309. @font-face {
  5310. font-family: 'FontAwesome';
  5311. font-display: block;
  5312. src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); }
  5313. @font-face {
  5314. font-family: 'FontAwesome';
  5315. font-display: block;
  5316. src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); }
  5317. @font-face {
  5318. font-family: 'FontAwesome';
  5319. font-display: block;
  5320. src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype");
  5321. unicode-range: U+F003,U+F006,U+F014,U+F016-F017,U+F01A-F01B,U+F01D,U+F022,U+F03E,U+F044,U+F046,U+F05C-F05D,U+F06E,U+F070,U+F087-F088,U+F08A,U+F094,U+F096-F097,U+F09D,U+F0A0,U+F0A2,U+F0A4-F0A7,U+F0C5,U+F0C7,U+F0E5-F0E6,U+F0EB,U+F0F6-F0F8,U+F10C,U+F114-F115,U+F118-F11A,U+F11C-F11D,U+F133,U+F147,U+F14E,U+F150-F152,U+F185-F186,U+F18E,U+F190-F192,U+F196,U+F1C1-F1C9,U+F1D9,U+F1DB,U+F1E3,U+F1EA,U+F1F7,U+F1F9,U+F20A,U+F247-F248,U+F24A,U+F24D,U+F255-F25B,U+F25D,U+F271-F274,U+F278,U+F27B,U+F28C,U+F28E,U+F29C,U+F2B5,U+F2B7,U+F2BA,U+F2BC,U+F2BE,U+F2C0-F2C1,U+F2C3,U+F2D0,U+F2D2,U+F2D4,U+F2DC; }
  5322. @font-face {
  5323. font-family: 'FontAwesome';
  5324. font-display: block;
  5325. src: url("../webfonts/fa-v4compatibility.woff2") format("woff2"), url("../webfonts/fa-v4compatibility.ttf") format("truetype");
  5326. unicode-range: U+F041,U+F047,U+F065-F066,U+F07D-F07E,U+F080,U+F08B,U+F08E,U+F090,U+F09A,U+F0AC,U+F0AE,U+F0B2,U+F0D0,U+F0D6,U+F0E4,U+F0EC,U+F10A-F10B,U+F123,U+F13E,U+F148-F149,U+F14C,U+F156,U+F15E,U+F160-F161,U+F163,U+F175-F178,U+F195,U+F1F8,U+F219,U+F27A; }