1
0

icon.css 119 KB

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