fontawesome-min.css 132 KB

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