tabler-icons.css 166 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701
  1. /*!
  2. * Tabler Icons 2.5.0 by tabler - https://tabler.io
  3. * License - https://github.com/tabler/tabler-icons/blob/master/LICENSE
  4. */
  5. @font-face {
  6. font-family: "tabler-icons";
  7. font-style: normal;
  8. font-weight: 400;
  9. src: url("./fonts/tabler-icons.eot?v2.5.0");
  10. src: url("./fonts/tabler-icons.eot?#iefix-v2.5.0") format("embedded-opentype"), url("./fonts/tabler-icons.woff2?v2.5.0") format("woff2"), url("./fonts/tabler-icons.woff?") format("woff"), url("./fonts/tabler-icons.ttf?v2.5.0") format("truetype");
  11. }
  12. .ti {
  13. font-family: "tabler-icons" !important;
  14. speak: none;
  15. font-style: normal;
  16. font-weight: normal;
  17. font-variant: normal;
  18. text-transform: none;
  19. line-height: 1;
  20. /* Better Font Rendering */
  21. -webkit-font-smoothing: antialiased;
  22. -moz-osx-font-smoothing: grayscale;
  23. }
  24. .ti-123:before {
  25. content: "\f554";
  26. }
  27. .ti-24-hours:before {
  28. content: "\f5e7";
  29. }
  30. .ti-2fa:before {
  31. content: "\eca0";
  32. }
  33. .ti-360:before {
  34. content: "\f62f";
  35. }
  36. .ti-360-view:before {
  37. content: "\f566";
  38. }
  39. .ti-3d-cube-sphere:before {
  40. content: "\ecd7";
  41. }
  42. .ti-3d-cube-sphere-off:before {
  43. content: "\f3b5";
  44. }
  45. .ti-3d-rotate:before {
  46. content: "\f020";
  47. }
  48. .ti-a-b:before {
  49. content: "\ec36";
  50. }
  51. .ti-a-b-2:before {
  52. content: "\f25f";
  53. }
  54. .ti-a-b-off:before {
  55. content: "\f0a6";
  56. }
  57. .ti-abacus:before {
  58. content: "\f05c";
  59. }
  60. .ti-abacus-off:before {
  61. content: "\f3b6";
  62. }
  63. .ti-abc:before {
  64. content: "\f567";
  65. }
  66. .ti-access-point:before {
  67. content: "\ed1b";
  68. }
  69. .ti-access-point-off:before {
  70. content: "\ed1a";
  71. }
  72. .ti-accessible:before {
  73. content: "\eba9";
  74. }
  75. .ti-accessible-off:before {
  76. content: "\f0a7";
  77. }
  78. .ti-accessible-off-filled:before {
  79. content: "\f6ea";
  80. }
  81. .ti-activity:before {
  82. content: "\ed23";
  83. }
  84. .ti-activity-heartbeat:before {
  85. content: "\f0db";
  86. }
  87. .ti-ad:before {
  88. content: "\ea02";
  89. }
  90. .ti-ad-2:before {
  91. content: "\ef1f";
  92. }
  93. .ti-ad-filled:before {
  94. content: "\f6eb";
  95. }
  96. .ti-ad-off:before {
  97. content: "\f3b7";
  98. }
  99. .ti-address-book:before {
  100. content: "\f021";
  101. }
  102. .ti-address-book-off:before {
  103. content: "\f3b8";
  104. }
  105. .ti-adjustments:before {
  106. content: "\ea03";
  107. }
  108. .ti-adjustments-alt:before {
  109. content: "\ec37";
  110. }
  111. .ti-adjustments-filled:before {
  112. content: "\f6ec";
  113. }
  114. .ti-adjustments-horizontal:before {
  115. content: "\ec38";
  116. }
  117. .ti-adjustments-off:before {
  118. content: "\f0a8";
  119. }
  120. .ti-aerial-lift:before {
  121. content: "\edfe";
  122. }
  123. .ti-affiliate:before {
  124. content: "\edff";
  125. }
  126. .ti-affiliate-filled:before {
  127. content: "\f6ed";
  128. }
  129. .ti-air-balloon:before {
  130. content: "\f4a6";
  131. }
  132. .ti-air-conditioning:before {
  133. content: "\f3a2";
  134. }
  135. .ti-air-conditioning-disabled:before {
  136. content: "\f542";
  137. }
  138. .ti-alarm:before {
  139. content: "\ea04";
  140. }
  141. .ti-alarm-filled:before {
  142. content: "\f709";
  143. }
  144. .ti-alarm-minus:before {
  145. content: "\f630";
  146. }
  147. .ti-alarm-minus-filled:before {
  148. content: "\f70a";
  149. }
  150. .ti-alarm-off:before {
  151. content: "\f0a9";
  152. }
  153. .ti-alarm-plus:before {
  154. content: "\f631";
  155. }
  156. .ti-alarm-plus-filled:before {
  157. content: "\f70b";
  158. }
  159. .ti-alarm-snooze:before {
  160. content: "\f632";
  161. }
  162. .ti-alarm-snooze-filled:before {
  163. content: "\f70c";
  164. }
  165. .ti-album:before {
  166. content: "\f022";
  167. }
  168. .ti-album-off:before {
  169. content: "\f3b9";
  170. }
  171. .ti-alert-circle:before {
  172. content: "\ea05";
  173. }
  174. .ti-alert-circle-filled:before {
  175. content: "\f6ee";
  176. }
  177. .ti-alert-octagon:before {
  178. content: "\ecc6";
  179. }
  180. .ti-alert-octagon-filled:before {
  181. content: "\f6ef";
  182. }
  183. .ti-alert-triangle:before {
  184. content: "\ea06";
  185. }
  186. .ti-alert-triangle-filled:before {
  187. content: "\f6f0";
  188. }
  189. .ti-alien:before {
  190. content: "\ebde";
  191. }
  192. .ti-alien-filled:before {
  193. content: "\f70d";
  194. }
  195. .ti-align-box-bottom-center:before {
  196. content: "\f530";
  197. }
  198. .ti-align-box-bottom-center-filled:before {
  199. content: "\f70e";
  200. }
  201. .ti-align-box-bottom-left:before {
  202. content: "\f531";
  203. }
  204. .ti-align-box-bottom-left-filled:before {
  205. content: "\f70f";
  206. }
  207. .ti-align-box-bottom-right:before {
  208. content: "\f532";
  209. }
  210. .ti-align-box-bottom-right-filled:before {
  211. content: "\f710";
  212. }
  213. .ti-align-box-left-bottom:before {
  214. content: "\f533";
  215. }
  216. .ti-align-box-left-bottom-filled:before {
  217. content: "\f711";
  218. }
  219. .ti-align-box-left-middle:before {
  220. content: "\f534";
  221. }
  222. .ti-align-box-left-middle-filled:before {
  223. content: "\f712";
  224. }
  225. .ti-align-box-left-top:before {
  226. content: "\f535";
  227. }
  228. .ti-align-box-left-top-filled:before {
  229. content: "\f713";
  230. }
  231. .ti-align-box-right-bottom:before {
  232. content: "\f536";
  233. }
  234. .ti-align-box-right-bottom-filled:before {
  235. content: "\f714";
  236. }
  237. .ti-align-box-right-middle:before {
  238. content: "\f537";
  239. }
  240. .ti-align-box-right-top:before {
  241. content: "\f538";
  242. }
  243. .ti-align-box-right-top-filled:before {
  244. content: "\f715";
  245. }
  246. .ti-align-box-top-center:before {
  247. content: "\f539";
  248. }
  249. .ti-align-box-top-center-filled:before {
  250. content: "\f716";
  251. }
  252. .ti-align-box-top-left:before {
  253. content: "\f53a";
  254. }
  255. .ti-align-box-top-left-filled:before {
  256. content: "\f717";
  257. }
  258. .ti-align-box-top-right:before {
  259. content: "\f53b";
  260. }
  261. .ti-align-box-top-right-filled:before {
  262. content: "\f718";
  263. }
  264. .ti-align-center:before {
  265. content: "\ea07";
  266. }
  267. .ti-align-justified:before {
  268. content: "\ea08";
  269. }
  270. .ti-align-left:before {
  271. content: "\ea09";
  272. }
  273. .ti-align-right:before {
  274. content: "\ea0a";
  275. }
  276. .ti-alpha:before {
  277. content: "\f543";
  278. }
  279. .ti-alphabet-cyrillic:before {
  280. content: "\f1df";
  281. }
  282. .ti-alphabet-greek:before {
  283. content: "\f1e0";
  284. }
  285. .ti-alphabet-latin:before {
  286. content: "\f1e1";
  287. }
  288. .ti-ambulance:before {
  289. content: "\ebf5";
  290. }
  291. .ti-ampersand:before {
  292. content: "\f229";
  293. }
  294. .ti-analyze:before {
  295. content: "\f3a3";
  296. }
  297. .ti-analyze-filled:before {
  298. content: "\f719";
  299. }
  300. .ti-analyze-off:before {
  301. content: "\f3ba";
  302. }
  303. .ti-anchor:before {
  304. content: "\eb76";
  305. }
  306. .ti-anchor-off:before {
  307. content: "\f0f7";
  308. }
  309. .ti-angle:before {
  310. content: "\ef20";
  311. }
  312. .ti-ankh:before {
  313. content: "\f1cd";
  314. }
  315. .ti-antenna:before {
  316. content: "\f094";
  317. }
  318. .ti-antenna-bars-1:before {
  319. content: "\ecc7";
  320. }
  321. .ti-antenna-bars-2:before {
  322. content: "\ecc8";
  323. }
  324. .ti-antenna-bars-3:before {
  325. content: "\ecc9";
  326. }
  327. .ti-antenna-bars-4:before {
  328. content: "\ecca";
  329. }
  330. .ti-antenna-bars-5:before {
  331. content: "\eccb";
  332. }
  333. .ti-antenna-bars-off:before {
  334. content: "\f0aa";
  335. }
  336. .ti-antenna-off:before {
  337. content: "\f3bb";
  338. }
  339. .ti-aperture:before {
  340. content: "\eb58";
  341. }
  342. .ti-aperture-off:before {
  343. content: "\f3bc";
  344. }
  345. .ti-api:before {
  346. content: "\effd";
  347. }
  348. .ti-api-app:before {
  349. content: "\effc";
  350. }
  351. .ti-api-app-off:before {
  352. content: "\f0ab";
  353. }
  354. .ti-api-off:before {
  355. content: "\f0f8";
  356. }
  357. .ti-app-window:before {
  358. content: "\efe6";
  359. }
  360. .ti-app-window-filled:before {
  361. content: "\f71a";
  362. }
  363. .ti-apple:before {
  364. content: "\ef21";
  365. }
  366. .ti-apps:before {
  367. content: "\ebb6";
  368. }
  369. .ti-apps-filled:before {
  370. content: "\f6f1";
  371. }
  372. .ti-apps-off:before {
  373. content: "\f0ac";
  374. }
  375. .ti-archive:before {
  376. content: "\ea0b";
  377. }
  378. .ti-archive-off:before {
  379. content: "\f0ad";
  380. }
  381. .ti-armchair:before {
  382. content: "\ef9e";
  383. }
  384. .ti-armchair-2:before {
  385. content: "\efe7";
  386. }
  387. .ti-armchair-2-off:before {
  388. content: "\f3bd";
  389. }
  390. .ti-armchair-off:before {
  391. content: "\f3be";
  392. }
  393. .ti-arrow-autofit-content:before {
  394. content: "\ef31";
  395. }
  396. .ti-arrow-autofit-content-filled:before {
  397. content: "\f6f2";
  398. }
  399. .ti-arrow-autofit-down:before {
  400. content: "\ef32";
  401. }
  402. .ti-arrow-autofit-height:before {
  403. content: "\ef33";
  404. }
  405. .ti-arrow-autofit-left:before {
  406. content: "\ef34";
  407. }
  408. .ti-arrow-autofit-right:before {
  409. content: "\ef35";
  410. }
  411. .ti-arrow-autofit-up:before {
  412. content: "\ef36";
  413. }
  414. .ti-arrow-autofit-width:before {
  415. content: "\ef37";
  416. }
  417. .ti-arrow-back:before {
  418. content: "\ea0c";
  419. }
  420. .ti-arrow-back-up:before {
  421. content: "\eb77";
  422. }
  423. .ti-arrow-badge-down:before {
  424. content: "\f60b";
  425. }
  426. .ti-arrow-badge-left:before {
  427. content: "\f60c";
  428. }
  429. .ti-arrow-badge-right:before {
  430. content: "\f60d";
  431. }
  432. .ti-arrow-badge-up:before {
  433. content: "\f60e";
  434. }
  435. .ti-arrow-bar-down:before {
  436. content: "\ea0d";
  437. }
  438. .ti-arrow-bar-left:before {
  439. content: "\ea0e";
  440. }
  441. .ti-arrow-bar-right:before {
  442. content: "\ea0f";
  443. }
  444. .ti-arrow-bar-to-down:before {
  445. content: "\ec88";
  446. }
  447. .ti-arrow-bar-to-left:before {
  448. content: "\ec89";
  449. }
  450. .ti-arrow-bar-to-right:before {
  451. content: "\ec8a";
  452. }
  453. .ti-arrow-bar-to-up:before {
  454. content: "\ec8b";
  455. }
  456. .ti-arrow-bar-up:before {
  457. content: "\ea10";
  458. }
  459. .ti-arrow-bear-left:before {
  460. content: "\f045";
  461. }
  462. .ti-arrow-bear-left-2:before {
  463. content: "\f044";
  464. }
  465. .ti-arrow-bear-right:before {
  466. content: "\f047";
  467. }
  468. .ti-arrow-bear-right-2:before {
  469. content: "\f046";
  470. }
  471. .ti-arrow-big-down:before {
  472. content: "\edda";
  473. }
  474. .ti-arrow-big-down-filled:before {
  475. content: "\f6c6";
  476. }
  477. .ti-arrow-big-down-line:before {
  478. content: "\efe8";
  479. }
  480. .ti-arrow-big-down-line-filled:before {
  481. content: "\f6c7";
  482. }
  483. .ti-arrow-big-down-lines:before {
  484. content: "\efe9";
  485. }
  486. .ti-arrow-big-down-lines-filled:before {
  487. content: "\f6c8";
  488. }
  489. .ti-arrow-big-left:before {
  490. content: "\eddb";
  491. }
  492. .ti-arrow-big-left-filled:before {
  493. content: "\f6c9";
  494. }
  495. .ti-arrow-big-left-line:before {
  496. content: "\efea";
  497. }
  498. .ti-arrow-big-left-line-filled:before {
  499. content: "\f6ca";
  500. }
  501. .ti-arrow-big-left-lines:before {
  502. content: "\efeb";
  503. }
  504. .ti-arrow-big-left-lines-filled:before {
  505. content: "\f6cb";
  506. }
  507. .ti-arrow-big-right:before {
  508. content: "\eddc";
  509. }
  510. .ti-arrow-big-right-filled:before {
  511. content: "\f6cc";
  512. }
  513. .ti-arrow-big-right-line:before {
  514. content: "\efec";
  515. }
  516. .ti-arrow-big-right-line-filled:before {
  517. content: "\f6cd";
  518. }
  519. .ti-arrow-big-right-lines:before {
  520. content: "\efed";
  521. }
  522. .ti-arrow-big-right-lines-filled:before {
  523. content: "\f6ce";
  524. }
  525. .ti-arrow-big-up:before {
  526. content: "\eddd";
  527. }
  528. .ti-arrow-big-up-filled:before {
  529. content: "\f6cf";
  530. }
  531. .ti-arrow-big-up-line:before {
  532. content: "\efee";
  533. }
  534. .ti-arrow-big-up-line-filled:before {
  535. content: "\f6d0";
  536. }
  537. .ti-arrow-big-up-lines:before {
  538. content: "\efef";
  539. }
  540. .ti-arrow-big-up-lines-filled:before {
  541. content: "\f6d1";
  542. }
  543. .ti-arrow-bounce:before {
  544. content: "\f3a4";
  545. }
  546. .ti-arrow-curve-left:before {
  547. content: "\f048";
  548. }
  549. .ti-arrow-curve-right:before {
  550. content: "\f049";
  551. }
  552. .ti-arrow-down:before {
  553. content: "\ea16";
  554. }
  555. .ti-arrow-down-bar:before {
  556. content: "\ed98";
  557. }
  558. .ti-arrow-down-circle:before {
  559. content: "\ea11";
  560. }
  561. .ti-arrow-down-left:before {
  562. content: "\ea13";
  563. }
  564. .ti-arrow-down-left-circle:before {
  565. content: "\ea12";
  566. }
  567. .ti-arrow-down-rhombus:before {
  568. content: "\f61d";
  569. }
  570. .ti-arrow-down-right:before {
  571. content: "\ea15";
  572. }
  573. .ti-arrow-down-right-circle:before {
  574. content: "\ea14";
  575. }
  576. .ti-arrow-down-square:before {
  577. content: "\ed9a";
  578. }
  579. .ti-arrow-down-tail:before {
  580. content: "\ed9b";
  581. }
  582. .ti-arrow-fork:before {
  583. content: "\f04a";
  584. }
  585. .ti-arrow-forward:before {
  586. content: "\ea17";
  587. }
  588. .ti-arrow-forward-up:before {
  589. content: "\eb78";
  590. }
  591. .ti-arrow-guide:before {
  592. content: "\f22a";
  593. }
  594. .ti-arrow-iteration:before {
  595. content: "\f578";
  596. }
  597. .ti-arrow-left:before {
  598. content: "\ea19";
  599. }
  600. .ti-arrow-left-bar:before {
  601. content: "\ed9c";
  602. }
  603. .ti-arrow-left-circle:before {
  604. content: "\ea18";
  605. }
  606. .ti-arrow-left-rhombus:before {
  607. content: "\f61e";
  608. }
  609. .ti-arrow-left-right:before {
  610. content: "\f04b";
  611. }
  612. .ti-arrow-left-square:before {
  613. content: "\ed9d";
  614. }
  615. .ti-arrow-left-tail:before {
  616. content: "\ed9e";
  617. }
  618. .ti-arrow-loop-left:before {
  619. content: "\ed9f";
  620. }
  621. .ti-arrow-loop-left-2:before {
  622. content: "\f04c";
  623. }
  624. .ti-arrow-loop-right:before {
  625. content: "\eda0";
  626. }
  627. .ti-arrow-loop-right-2:before {
  628. content: "\f04d";
  629. }
  630. .ti-arrow-merge:before {
  631. content: "\f04e";
  632. }
  633. .ti-arrow-merge-both:before {
  634. content: "\f23b";
  635. }
  636. .ti-arrow-merge-left:before {
  637. content: "\f23c";
  638. }
  639. .ti-arrow-merge-right:before {
  640. content: "\f23d";
  641. }
  642. .ti-arrow-move-down:before {
  643. content: "\f2ba";
  644. }
  645. .ti-arrow-move-left:before {
  646. content: "\f2bb";
  647. }
  648. .ti-arrow-move-right:before {
  649. content: "\f2bc";
  650. }
  651. .ti-arrow-move-up:before {
  652. content: "\f2bd";
  653. }
  654. .ti-arrow-narrow-down:before {
  655. content: "\ea1a";
  656. }
  657. .ti-arrow-narrow-left:before {
  658. content: "\ea1b";
  659. }
  660. .ti-arrow-narrow-right:before {
  661. content: "\ea1c";
  662. }
  663. .ti-arrow-narrow-up:before {
  664. content: "\ea1d";
  665. }
  666. .ti-arrow-ramp-left:before {
  667. content: "\ed3c";
  668. }
  669. .ti-arrow-ramp-left-2:before {
  670. content: "\f04f";
  671. }
  672. .ti-arrow-ramp-left-3:before {
  673. content: "\f050";
  674. }
  675. .ti-arrow-ramp-right:before {
  676. content: "\ed3d";
  677. }
  678. .ti-arrow-ramp-right-2:before {
  679. content: "\f051";
  680. }
  681. .ti-arrow-ramp-right-3:before {
  682. content: "\f052";
  683. }
  684. .ti-arrow-right:before {
  685. content: "\ea1f";
  686. }
  687. .ti-arrow-right-bar:before {
  688. content: "\eda1";
  689. }
  690. .ti-arrow-right-circle:before {
  691. content: "\ea1e";
  692. }
  693. .ti-arrow-right-rhombus:before {
  694. content: "\f61f";
  695. }
  696. .ti-arrow-right-square:before {
  697. content: "\eda2";
  698. }
  699. .ti-arrow-right-tail:before {
  700. content: "\eda3";
  701. }
  702. .ti-arrow-rotary-first-left:before {
  703. content: "\f053";
  704. }
  705. .ti-arrow-rotary-first-right:before {
  706. content: "\f054";
  707. }
  708. .ti-arrow-rotary-last-left:before {
  709. content: "\f055";
  710. }
  711. .ti-arrow-rotary-last-right:before {
  712. content: "\f056";
  713. }
  714. .ti-arrow-rotary-left:before {
  715. content: "\f057";
  716. }
  717. .ti-arrow-rotary-right:before {
  718. content: "\f058";
  719. }
  720. .ti-arrow-rotary-straight:before {
  721. content: "\f059";
  722. }
  723. .ti-arrow-roundabout-left:before {
  724. content: "\f22b";
  725. }
  726. .ti-arrow-roundabout-right:before {
  727. content: "\f22c";
  728. }
  729. .ti-arrow-sharp-turn-left:before {
  730. content: "\f05a";
  731. }
  732. .ti-arrow-sharp-turn-right:before {
  733. content: "\f05b";
  734. }
  735. .ti-arrow-top-circle:before {
  736. content: "\f6f3";
  737. }
  738. .ti-arrow-up:before {
  739. content: "\ea25";
  740. }
  741. .ti-arrow-up-bar:before {
  742. content: "\eda4";
  743. }
  744. .ti-arrow-up-circle:before {
  745. content: "\ea20";
  746. }
  747. .ti-arrow-up-left:before {
  748. content: "\ea22";
  749. }
  750. .ti-arrow-up-left-circle:before {
  751. content: "\ea21";
  752. }
  753. .ti-arrow-up-rhombus:before {
  754. content: "\f620";
  755. }
  756. .ti-arrow-up-right:before {
  757. content: "\ea24";
  758. }
  759. .ti-arrow-up-right-circle:before {
  760. content: "\ea23";
  761. }
  762. .ti-arrow-up-square:before {
  763. content: "\eda6";
  764. }
  765. .ti-arrow-up-tail:before {
  766. content: "\eda7";
  767. }
  768. .ti-arrow-wave-left-down:before {
  769. content: "\eda8";
  770. }
  771. .ti-arrow-wave-left-up:before {
  772. content: "\eda9";
  773. }
  774. .ti-arrow-wave-right-down:before {
  775. content: "\edaa";
  776. }
  777. .ti-arrow-wave-right-up:before {
  778. content: "\edab";
  779. }
  780. .ti-arrow-zig-zag:before {
  781. content: "\f4a7";
  782. }
  783. .ti-arrows-cross:before {
  784. content: "\effe";
  785. }
  786. .ti-arrows-diagonal:before {
  787. content: "\ea27";
  788. }
  789. .ti-arrows-diagonal-2:before {
  790. content: "\ea26";
  791. }
  792. .ti-arrows-diagonal-minimize:before {
  793. content: "\ef39";
  794. }
  795. .ti-arrows-diagonal-minimize-2:before {
  796. content: "\ef38";
  797. }
  798. .ti-arrows-diff:before {
  799. content: "\f296";
  800. }
  801. .ti-arrows-double-ne-sw:before {
  802. content: "\edde";
  803. }
  804. .ti-arrows-double-nw-se:before {
  805. content: "\eddf";
  806. }
  807. .ti-arrows-double-se-nw:before {
  808. content: "\ede0";
  809. }
  810. .ti-arrows-double-sw-ne:before {
  811. content: "\ede1";
  812. }
  813. .ti-arrows-down:before {
  814. content: "\edad";
  815. }
  816. .ti-arrows-down-up:before {
  817. content: "\edac";
  818. }
  819. .ti-arrows-exchange:before {
  820. content: "\f1f4";
  821. }
  822. .ti-arrows-exchange-2:before {
  823. content: "\f1f3";
  824. }
  825. .ti-arrows-horizontal:before {
  826. content: "\eb59";
  827. }
  828. .ti-arrows-join:before {
  829. content: "\edaf";
  830. }
  831. .ti-arrows-join-2:before {
  832. content: "\edae";
  833. }
  834. .ti-arrows-left:before {
  835. content: "\edb1";
  836. }
  837. .ti-arrows-left-down:before {
  838. content: "\ee00";
  839. }
  840. .ti-arrows-left-right:before {
  841. content: "\edb0";
  842. }
  843. .ti-arrows-maximize:before {
  844. content: "\ea28";
  845. }
  846. .ti-arrows-minimize:before {
  847. content: "\ea29";
  848. }
  849. .ti-arrows-move:before {
  850. content: "\f22f";
  851. }
  852. .ti-arrows-move-horizontal:before {
  853. content: "\f22d";
  854. }
  855. .ti-arrows-move-vertical:before {
  856. content: "\f22e";
  857. }
  858. .ti-arrows-random:before {
  859. content: "\f095";
  860. }
  861. .ti-arrows-right:before {
  862. content: "\edb3";
  863. }
  864. .ti-arrows-right-down:before {
  865. content: "\ee01";
  866. }
  867. .ti-arrows-right-left:before {
  868. content: "\edb2";
  869. }
  870. .ti-arrows-shuffle:before {
  871. content: "\f000";
  872. }
  873. .ti-arrows-shuffle-2:before {
  874. content: "\efff";
  875. }
  876. .ti-arrows-sort:before {
  877. content: "\eb5a";
  878. }
  879. .ti-arrows-split:before {
  880. content: "\edb5";
  881. }
  882. .ti-arrows-split-2:before {
  883. content: "\edb4";
  884. }
  885. .ti-arrows-transfer-down:before {
  886. content: "\f2cc";
  887. }
  888. .ti-arrows-transfer-up:before {
  889. content: "\f2cd";
  890. }
  891. .ti-arrows-up:before {
  892. content: "\edb7";
  893. }
  894. .ti-arrows-up-down:before {
  895. content: "\edb6";
  896. }
  897. .ti-arrows-up-left:before {
  898. content: "\ee02";
  899. }
  900. .ti-arrows-up-right:before {
  901. content: "\ee03";
  902. }
  903. .ti-arrows-vertical:before {
  904. content: "\eb5b";
  905. }
  906. .ti-artboard:before {
  907. content: "\ea2a";
  908. }
  909. .ti-artboard-off:before {
  910. content: "\f0ae";
  911. }
  912. .ti-article:before {
  913. content: "\f1e2";
  914. }
  915. .ti-article-off:before {
  916. content: "\f3bf";
  917. }
  918. .ti-aspect-ratio:before {
  919. content: "\ed30";
  920. }
  921. .ti-aspect-ratio-off:before {
  922. content: "\f0af";
  923. }
  924. .ti-assembly:before {
  925. content: "\f24d";
  926. }
  927. .ti-assembly-off:before {
  928. content: "\f3c0";
  929. }
  930. .ti-asset:before {
  931. content: "\f1ce";
  932. }
  933. .ti-asterisk:before {
  934. content: "\efd5";
  935. }
  936. .ti-asterisk-simple:before {
  937. content: "\efd4";
  938. }
  939. .ti-at:before {
  940. content: "\ea2b";
  941. }
  942. .ti-at-off:before {
  943. content: "\f0b0";
  944. }
  945. .ti-atom:before {
  946. content: "\eb79";
  947. }
  948. .ti-atom-2:before {
  949. content: "\ebdf";
  950. }
  951. .ti-atom-2-filled:before {
  952. content: "\f71b";
  953. }
  954. .ti-atom-off:before {
  955. content: "\f0f9";
  956. }
  957. .ti-augmented-reality:before {
  958. content: "\f023";
  959. }
  960. .ti-augmented-reality-2:before {
  961. content: "\f37e";
  962. }
  963. .ti-augmented-reality-off:before {
  964. content: "\f3c1";
  965. }
  966. .ti-award:before {
  967. content: "\ea2c";
  968. }
  969. .ti-award-filled:before {
  970. content: "\f71c";
  971. }
  972. .ti-award-off:before {
  973. content: "\f0fa";
  974. }
  975. .ti-axe:before {
  976. content: "\ef9f";
  977. }
  978. .ti-axis-x:before {
  979. content: "\ef45";
  980. }
  981. .ti-axis-y:before {
  982. content: "\ef46";
  983. }
  984. .ti-baby-bottle:before {
  985. content: "\f5d2";
  986. }
  987. .ti-baby-carriage:before {
  988. content: "\f05d";
  989. }
  990. .ti-backhoe:before {
  991. content: "\ed86";
  992. }
  993. .ti-backpack:before {
  994. content: "\ef47";
  995. }
  996. .ti-backpack-off:before {
  997. content: "\f3c2";
  998. }
  999. .ti-backspace:before {
  1000. content: "\ea2d";
  1001. }
  1002. .ti-badge:before {
  1003. content: "\efc2";
  1004. }
  1005. .ti-badge-3d:before {
  1006. content: "\f555";
  1007. }
  1008. .ti-badge-4k:before {
  1009. content: "\f556";
  1010. }
  1011. .ti-badge-8k:before {
  1012. content: "\f557";
  1013. }
  1014. .ti-badge-ad:before {
  1015. content: "\f558";
  1016. }
  1017. .ti-badge-ar:before {
  1018. content: "\f559";
  1019. }
  1020. .ti-badge-cc:before {
  1021. content: "\f55a";
  1022. }
  1023. .ti-badge-filled:before {
  1024. content: "\f667";
  1025. }
  1026. .ti-badge-hd:before {
  1027. content: "\f55b";
  1028. }
  1029. .ti-badge-off:before {
  1030. content: "\f0fb";
  1031. }
  1032. .ti-badge-sd:before {
  1033. content: "\f55c";
  1034. }
  1035. .ti-badge-tm:before {
  1036. content: "\f55d";
  1037. }
  1038. .ti-badge-vo:before {
  1039. content: "\f55e";
  1040. }
  1041. .ti-badge-vr:before {
  1042. content: "\f55f";
  1043. }
  1044. .ti-badge-wc:before {
  1045. content: "\f560";
  1046. }
  1047. .ti-badges:before {
  1048. content: "\efc3";
  1049. }
  1050. .ti-badges-off:before {
  1051. content: "\f0fc";
  1052. }
  1053. .ti-baguette:before {
  1054. content: "\f3a5";
  1055. }
  1056. .ti-ball-american-football:before {
  1057. content: "\ee04";
  1058. }
  1059. .ti-ball-american-football-off:before {
  1060. content: "\f3c3";
  1061. }
  1062. .ti-ball-baseball:before {
  1063. content: "\efa0";
  1064. }
  1065. .ti-ball-basketball:before {
  1066. content: "\ec28";
  1067. }
  1068. .ti-ball-bowling:before {
  1069. content: "\ec29";
  1070. }
  1071. .ti-ball-football:before {
  1072. content: "\ee06";
  1073. }
  1074. .ti-ball-football-off:before {
  1075. content: "\ee05";
  1076. }
  1077. .ti-ball-tennis:before {
  1078. content: "\ec2a";
  1079. }
  1080. .ti-ball-volleyball:before {
  1081. content: "\ec2b";
  1082. }
  1083. .ti-balloon:before {
  1084. content: "\ef3a";
  1085. }
  1086. .ti-balloon-off:before {
  1087. content: "\f0fd";
  1088. }
  1089. .ti-ballpen:before {
  1090. content: "\f06e";
  1091. }
  1092. .ti-ballpen-off:before {
  1093. content: "\f0b1";
  1094. }
  1095. .ti-ban:before {
  1096. content: "\ea2e";
  1097. }
  1098. .ti-bandage:before {
  1099. content: "\eb7a";
  1100. }
  1101. .ti-bandage-off:before {
  1102. content: "\f3c4";
  1103. }
  1104. .ti-barbell:before {
  1105. content: "\eff0";
  1106. }
  1107. .ti-barbell-off:before {
  1108. content: "\f0b2";
  1109. }
  1110. .ti-barcode:before {
  1111. content: "\ebc6";
  1112. }
  1113. .ti-barcode-off:before {
  1114. content: "\f0b3";
  1115. }
  1116. .ti-barrel:before {
  1117. content: "\f0b4";
  1118. }
  1119. .ti-barrel-off:before {
  1120. content: "\f0fe";
  1121. }
  1122. .ti-barrier-block:before {
  1123. content: "\f00e";
  1124. }
  1125. .ti-barrier-block-off:before {
  1126. content: "\f0b5";
  1127. }
  1128. .ti-baseline:before {
  1129. content: "\f024";
  1130. }
  1131. .ti-basket:before {
  1132. content: "\ebe1";
  1133. }
  1134. .ti-basket-off:before {
  1135. content: "\f0b6";
  1136. }
  1137. .ti-bat:before {
  1138. content: "\f284";
  1139. }
  1140. .ti-bath:before {
  1141. content: "\ef48";
  1142. }
  1143. .ti-bath-filled:before {
  1144. content: "\f71d";
  1145. }
  1146. .ti-bath-off:before {
  1147. content: "\f0ff";
  1148. }
  1149. .ti-battery:before {
  1150. content: "\ea34";
  1151. }
  1152. .ti-battery-1:before {
  1153. content: "\ea2f";
  1154. }
  1155. .ti-battery-1-filled:before {
  1156. content: "\f71e";
  1157. }
  1158. .ti-battery-2:before {
  1159. content: "\ea30";
  1160. }
  1161. .ti-battery-2-filled:before {
  1162. content: "\f71f";
  1163. }
  1164. .ti-battery-3:before {
  1165. content: "\ea31";
  1166. }
  1167. .ti-battery-3-filled:before {
  1168. content: "\f720";
  1169. }
  1170. .ti-battery-4:before {
  1171. content: "\ea32";
  1172. }
  1173. .ti-battery-4-filled:before {
  1174. content: "\f721";
  1175. }
  1176. .ti-battery-automotive:before {
  1177. content: "\ee07";
  1178. }
  1179. .ti-battery-charging:before {
  1180. content: "\ea33";
  1181. }
  1182. .ti-battery-charging-2:before {
  1183. content: "\ef3b";
  1184. }
  1185. .ti-battery-eco:before {
  1186. content: "\ef3c";
  1187. }
  1188. .ti-battery-filled:before {
  1189. content: "\f668";
  1190. }
  1191. .ti-battery-off:before {
  1192. content: "\ed1c";
  1193. }
  1194. .ti-beach:before {
  1195. content: "\ef3d";
  1196. }
  1197. .ti-beach-off:before {
  1198. content: "\f0b7";
  1199. }
  1200. .ti-bed:before {
  1201. content: "\eb5c";
  1202. }
  1203. .ti-bed-off:before {
  1204. content: "\f100";
  1205. }
  1206. .ti-beer:before {
  1207. content: "\efa1";
  1208. }
  1209. .ti-beer-off:before {
  1210. content: "\f101";
  1211. }
  1212. .ti-bell:before {
  1213. content: "\ea35";
  1214. }
  1215. .ti-bell-filled:before {
  1216. content: "\f669";
  1217. }
  1218. .ti-bell-minus:before {
  1219. content: "\ede2";
  1220. }
  1221. .ti-bell-minus-filled:before {
  1222. content: "\f722";
  1223. }
  1224. .ti-bell-off:before {
  1225. content: "\ece9";
  1226. }
  1227. .ti-bell-plus:before {
  1228. content: "\ede3";
  1229. }
  1230. .ti-bell-plus-filled:before {
  1231. content: "\f723";
  1232. }
  1233. .ti-bell-ringing:before {
  1234. content: "\ed07";
  1235. }
  1236. .ti-bell-ringing-2:before {
  1237. content: "\ede4";
  1238. }
  1239. .ti-bell-ringing-2-filled:before {
  1240. content: "\f724";
  1241. }
  1242. .ti-bell-ringing-filled:before {
  1243. content: "\f725";
  1244. }
  1245. .ti-bell-school:before {
  1246. content: "\f05e";
  1247. }
  1248. .ti-bell-x:before {
  1249. content: "\ede5";
  1250. }
  1251. .ti-bell-x-filled:before {
  1252. content: "\f726";
  1253. }
  1254. .ti-bell-z:before {
  1255. content: "\eff1";
  1256. }
  1257. .ti-bell-z-filled:before {
  1258. content: "\f727";
  1259. }
  1260. .ti-beta:before {
  1261. content: "\f544";
  1262. }
  1263. .ti-bible:before {
  1264. content: "\efc4";
  1265. }
  1266. .ti-bike:before {
  1267. content: "\ea36";
  1268. }
  1269. .ti-bike-off:before {
  1270. content: "\f0b8";
  1271. }
  1272. .ti-binary:before {
  1273. content: "\ee08";
  1274. }
  1275. .ti-binary-off:before {
  1276. content: "\f3c5";
  1277. }
  1278. .ti-binary-tree:before {
  1279. content: "\f5d4";
  1280. }
  1281. .ti-binary-tree-2:before {
  1282. content: "\f5d3";
  1283. }
  1284. .ti-biohazard:before {
  1285. content: "\ecb8";
  1286. }
  1287. .ti-biohazard-off:before {
  1288. content: "\f0b9";
  1289. }
  1290. .ti-blade:before {
  1291. content: "\f4bd";
  1292. }
  1293. .ti-bleach:before {
  1294. content: "\f2f3";
  1295. }
  1296. .ti-bleach-chlorine:before {
  1297. content: "\f2f0";
  1298. }
  1299. .ti-bleach-no-chlorine:before {
  1300. content: "\f2f1";
  1301. }
  1302. .ti-bleach-off:before {
  1303. content: "\f2f2";
  1304. }
  1305. .ti-blockquote:before {
  1306. content: "\ee09";
  1307. }
  1308. .ti-bluetooth:before {
  1309. content: "\ea37";
  1310. }
  1311. .ti-bluetooth-connected:before {
  1312. content: "\ecea";
  1313. }
  1314. .ti-bluetooth-off:before {
  1315. content: "\eceb";
  1316. }
  1317. .ti-bluetooth-x:before {
  1318. content: "\f081";
  1319. }
  1320. .ti-blur:before {
  1321. content: "\ef8c";
  1322. }
  1323. .ti-blur-off:before {
  1324. content: "\f3c6";
  1325. }
  1326. .ti-bmp:before {
  1327. content: "\f3a6";
  1328. }
  1329. .ti-bold:before {
  1330. content: "\eb7b";
  1331. }
  1332. .ti-bold-off:before {
  1333. content: "\f0ba";
  1334. }
  1335. .ti-bolt:before {
  1336. content: "\ea38";
  1337. }
  1338. .ti-bolt-off:before {
  1339. content: "\ecec";
  1340. }
  1341. .ti-bomb:before {
  1342. content: "\f59c";
  1343. }
  1344. .ti-bone:before {
  1345. content: "\edb8";
  1346. }
  1347. .ti-bone-off:before {
  1348. content: "\f0bb";
  1349. }
  1350. .ti-bong:before {
  1351. content: "\f3a7";
  1352. }
  1353. .ti-bong-off:before {
  1354. content: "\f3c7";
  1355. }
  1356. .ti-book:before {
  1357. content: "\ea39";
  1358. }
  1359. .ti-book-2:before {
  1360. content: "\efc5";
  1361. }
  1362. .ti-book-download:before {
  1363. content: "\f070";
  1364. }
  1365. .ti-book-off:before {
  1366. content: "\f0bc";
  1367. }
  1368. .ti-book-upload:before {
  1369. content: "\f071";
  1370. }
  1371. .ti-bookmark:before {
  1372. content: "\ea3a";
  1373. }
  1374. .ti-bookmark-off:before {
  1375. content: "\eced";
  1376. }
  1377. .ti-bookmarks:before {
  1378. content: "\ed08";
  1379. }
  1380. .ti-bookmarks-off:before {
  1381. content: "\f0bd";
  1382. }
  1383. .ti-books:before {
  1384. content: "\eff2";
  1385. }
  1386. .ti-books-off:before {
  1387. content: "\f0be";
  1388. }
  1389. .ti-border-all:before {
  1390. content: "\ea3b";
  1391. }
  1392. .ti-border-bottom:before {
  1393. content: "\ea3c";
  1394. }
  1395. .ti-border-horizontal:before {
  1396. content: "\ea3d";
  1397. }
  1398. .ti-border-inner:before {
  1399. content: "\ea3e";
  1400. }
  1401. .ti-border-left:before {
  1402. content: "\ea3f";
  1403. }
  1404. .ti-border-none:before {
  1405. content: "\ea40";
  1406. }
  1407. .ti-border-outer:before {
  1408. content: "\ea41";
  1409. }
  1410. .ti-border-radius:before {
  1411. content: "\eb7c";
  1412. }
  1413. .ti-border-right:before {
  1414. content: "\ea42";
  1415. }
  1416. .ti-border-style:before {
  1417. content: "\ee0a";
  1418. }
  1419. .ti-border-style-2:before {
  1420. content: "\ef22";
  1421. }
  1422. .ti-border-top:before {
  1423. content: "\ea43";
  1424. }
  1425. .ti-border-vertical:before {
  1426. content: "\ea44";
  1427. }
  1428. .ti-bottle:before {
  1429. content: "\ef0b";
  1430. }
  1431. .ti-bottle-off:before {
  1432. content: "\f3c8";
  1433. }
  1434. .ti-bounce-left:before {
  1435. content: "\f59d";
  1436. }
  1437. .ti-bounce-right:before {
  1438. content: "\f59e";
  1439. }
  1440. .ti-bow:before {
  1441. content: "\f096";
  1442. }
  1443. .ti-bowl:before {
  1444. content: "\f4fa";
  1445. }
  1446. .ti-box:before {
  1447. content: "\ea45";
  1448. }
  1449. .ti-box-align-bottom:before {
  1450. content: "\f2a8";
  1451. }
  1452. .ti-box-align-bottom-left:before {
  1453. content: "\f2ce";
  1454. }
  1455. .ti-box-align-bottom-right:before {
  1456. content: "\f2cf";
  1457. }
  1458. .ti-box-align-left:before {
  1459. content: "\f2a9";
  1460. }
  1461. .ti-box-align-right:before {
  1462. content: "\f2aa";
  1463. }
  1464. .ti-box-align-top:before {
  1465. content: "\f2ab";
  1466. }
  1467. .ti-box-align-top-left:before {
  1468. content: "\f2d0";
  1469. }
  1470. .ti-box-align-top-right:before {
  1471. content: "\f2d1";
  1472. }
  1473. .ti-box-margin:before {
  1474. content: "\ee0b";
  1475. }
  1476. .ti-box-model:before {
  1477. content: "\ee0c";
  1478. }
  1479. .ti-box-model-2:before {
  1480. content: "\ef23";
  1481. }
  1482. .ti-box-model-2-off:before {
  1483. content: "\f3c9";
  1484. }
  1485. .ti-box-model-off:before {
  1486. content: "\f3ca";
  1487. }
  1488. .ti-box-multiple:before {
  1489. content: "\ee17";
  1490. }
  1491. .ti-box-multiple-0:before {
  1492. content: "\ee0d";
  1493. }
  1494. .ti-box-multiple-1:before {
  1495. content: "\ee0e";
  1496. }
  1497. .ti-box-multiple-2:before {
  1498. content: "\ee0f";
  1499. }
  1500. .ti-box-multiple-3:before {
  1501. content: "\ee10";
  1502. }
  1503. .ti-box-multiple-4:before {
  1504. content: "\ee11";
  1505. }
  1506. .ti-box-multiple-5:before {
  1507. content: "\ee12";
  1508. }
  1509. .ti-box-multiple-6:before {
  1510. content: "\ee13";
  1511. }
  1512. .ti-box-multiple-7:before {
  1513. content: "\ee14";
  1514. }
  1515. .ti-box-multiple-8:before {
  1516. content: "\ee15";
  1517. }
  1518. .ti-box-multiple-9:before {
  1519. content: "\ee16";
  1520. }
  1521. .ti-box-off:before {
  1522. content: "\f102";
  1523. }
  1524. .ti-box-padding:before {
  1525. content: "\ee18";
  1526. }
  1527. .ti-box-seam:before {
  1528. content: "\f561";
  1529. }
  1530. .ti-braces:before {
  1531. content: "\ebcc";
  1532. }
  1533. .ti-braces-off:before {
  1534. content: "\f0bf";
  1535. }
  1536. .ti-brackets:before {
  1537. content: "\ebcd";
  1538. }
  1539. .ti-brackets-contain:before {
  1540. content: "\f1e5";
  1541. }
  1542. .ti-brackets-contain-end:before {
  1543. content: "\f1e3";
  1544. }
  1545. .ti-brackets-contain-start:before {
  1546. content: "\f1e4";
  1547. }
  1548. .ti-brackets-off:before {
  1549. content: "\f0c0";
  1550. }
  1551. .ti-braille:before {
  1552. content: "\f545";
  1553. }
  1554. .ti-brain:before {
  1555. content: "\f59f";
  1556. }
  1557. .ti-brand-4chan:before {
  1558. content: "\f494";
  1559. }
  1560. .ti-brand-abstract:before {
  1561. content: "\f495";
  1562. }
  1563. .ti-brand-adobe:before {
  1564. content: "\f0dc";
  1565. }
  1566. .ti-brand-adonis-js:before {
  1567. content: "\f496";
  1568. }
  1569. .ti-brand-airbnb:before {
  1570. content: "\ed68";
  1571. }
  1572. .ti-brand-airtable:before {
  1573. content: "\ef6a";
  1574. }
  1575. .ti-brand-algolia:before {
  1576. content: "\f390";
  1577. }
  1578. .ti-brand-alpine-js:before {
  1579. content: "\f324";
  1580. }
  1581. .ti-brand-amazon:before {
  1582. content: "\f230";
  1583. }
  1584. .ti-brand-amd:before {
  1585. content: "\f653";
  1586. }
  1587. .ti-brand-amigo:before {
  1588. content: "\f5f9";
  1589. }
  1590. .ti-brand-among-us:before {
  1591. content: "\f205";
  1592. }
  1593. .ti-brand-android:before {
  1594. content: "\ec16";
  1595. }
  1596. .ti-brand-angular:before {
  1597. content: "\ef6b";
  1598. }
  1599. .ti-brand-ao3:before {
  1600. content: "\f5e8";
  1601. }
  1602. .ti-brand-appgallery:before {
  1603. content: "\f231";
  1604. }
  1605. .ti-brand-apple:before {
  1606. content: "\ec17";
  1607. }
  1608. .ti-brand-apple-arcade:before {
  1609. content: "\ed69";
  1610. }
  1611. .ti-brand-apple-podcast:before {
  1612. content: "\f1e6";
  1613. }
  1614. .ti-brand-appstore:before {
  1615. content: "\ed24";
  1616. }
  1617. .ti-brand-asana:before {
  1618. content: "\edc5";
  1619. }
  1620. .ti-brand-backbone:before {
  1621. content: "\f325";
  1622. }
  1623. .ti-brand-badoo:before {
  1624. content: "\f206";
  1625. }
  1626. .ti-brand-baidu:before {
  1627. content: "\f5e9";
  1628. }
  1629. .ti-brand-bandcamp:before {
  1630. content: "\f207";
  1631. }
  1632. .ti-brand-bandlab:before {
  1633. content: "\f5fa";
  1634. }
  1635. .ti-brand-beats:before {
  1636. content: "\f208";
  1637. }
  1638. .ti-brand-behance:before {
  1639. content: "\ec6e";
  1640. }
  1641. .ti-brand-bilibili:before {
  1642. content: "\f6d2";
  1643. }
  1644. .ti-brand-binance:before {
  1645. content: "\f5a0";
  1646. }
  1647. .ti-brand-bing:before {
  1648. content: "\edc6";
  1649. }
  1650. .ti-brand-bitbucket:before {
  1651. content: "\edc7";
  1652. }
  1653. .ti-brand-blackberry:before {
  1654. content: "\f568";
  1655. }
  1656. .ti-brand-blender:before {
  1657. content: "\f326";
  1658. }
  1659. .ti-brand-blogger:before {
  1660. content: "\f35a";
  1661. }
  1662. .ti-brand-booking:before {
  1663. content: "\edc8";
  1664. }
  1665. .ti-brand-bootstrap:before {
  1666. content: "\ef3e";
  1667. }
  1668. .ti-brand-bulma:before {
  1669. content: "\f327";
  1670. }
  1671. .ti-brand-bumble:before {
  1672. content: "\f5fb";
  1673. }
  1674. .ti-brand-bunpo:before {
  1675. content: "\f4cf";
  1676. }
  1677. .ti-brand-c-sharp:before {
  1678. content: "\f003";
  1679. }
  1680. .ti-brand-campaignmonitor:before {
  1681. content: "\f328";
  1682. }
  1683. .ti-brand-carbon:before {
  1684. content: "\f348";
  1685. }
  1686. .ti-brand-cashapp:before {
  1687. content: "\f391";
  1688. }
  1689. .ti-brand-chrome:before {
  1690. content: "\ec18";
  1691. }
  1692. .ti-brand-citymapper:before {
  1693. content: "\f5fc";
  1694. }
  1695. .ti-brand-codecov:before {
  1696. content: "\f329";
  1697. }
  1698. .ti-brand-codepen:before {
  1699. content: "\ec6f";
  1700. }
  1701. .ti-brand-codesandbox:before {
  1702. content: "\ed6a";
  1703. }
  1704. .ti-brand-cohost:before {
  1705. content: "\f5d5";
  1706. }
  1707. .ti-brand-coinbase:before {
  1708. content: "\f209";
  1709. }
  1710. .ti-brand-comedy-central:before {
  1711. content: "\f217";
  1712. }
  1713. .ti-brand-coreos:before {
  1714. content: "\f5fd";
  1715. }
  1716. .ti-brand-couchdb:before {
  1717. content: "\f60f";
  1718. }
  1719. .ti-brand-couchsurfing:before {
  1720. content: "\f392";
  1721. }
  1722. .ti-brand-cpp:before {
  1723. content: "\f5fe";
  1724. }
  1725. .ti-brand-css3:before {
  1726. content: "\ed6b";
  1727. }
  1728. .ti-brand-ctemplar:before {
  1729. content: "\f4d0";
  1730. }
  1731. .ti-brand-cucumber:before {
  1732. content: "\ef6c";
  1733. }
  1734. .ti-brand-cupra:before {
  1735. content: "\f4d1";
  1736. }
  1737. .ti-brand-cypress:before {
  1738. content: "\f333";
  1739. }
  1740. .ti-brand-d3:before {
  1741. content: "\f24e";
  1742. }
  1743. .ti-brand-days-counter:before {
  1744. content: "\f4d2";
  1745. }
  1746. .ti-brand-dcos:before {
  1747. content: "\f32a";
  1748. }
  1749. .ti-brand-debian:before {
  1750. content: "\ef57";
  1751. }
  1752. .ti-brand-deezer:before {
  1753. content: "\f78b";
  1754. }
  1755. .ti-brand-deliveroo:before {
  1756. content: "\f4d3";
  1757. }
  1758. .ti-brand-deno:before {
  1759. content: "\f24f";
  1760. }
  1761. .ti-brand-denodo:before {
  1762. content: "\f610";
  1763. }
  1764. .ti-brand-deviantart:before {
  1765. content: "\ecfb";
  1766. }
  1767. .ti-brand-dingtalk:before {
  1768. content: "\f5ea";
  1769. }
  1770. .ti-brand-discord:before {
  1771. content: "\ece3";
  1772. }
  1773. .ti-brand-disney:before {
  1774. content: "\f20a";
  1775. }
  1776. .ti-brand-disqus:before {
  1777. content: "\edc9";
  1778. }
  1779. .ti-brand-django:before {
  1780. content: "\f349";
  1781. }
  1782. .ti-brand-docker:before {
  1783. content: "\edca";
  1784. }
  1785. .ti-brand-doctrine:before {
  1786. content: "\ef6d";
  1787. }
  1788. .ti-brand-dolby-digital:before {
  1789. content: "\f4d4";
  1790. }
  1791. .ti-brand-douban:before {
  1792. content: "\f5ff";
  1793. }
  1794. .ti-brand-dribbble:before {
  1795. content: "\ec19";
  1796. }
  1797. .ti-brand-drops:before {
  1798. content: "\f4d5";
  1799. }
  1800. .ti-brand-drupal:before {
  1801. content: "\f393";
  1802. }
  1803. .ti-brand-edge:before {
  1804. content: "\ecfc";
  1805. }
  1806. .ti-brand-elastic:before {
  1807. content: "\f611";
  1808. }
  1809. .ti-brand-ember:before {
  1810. content: "\f497";
  1811. }
  1812. .ti-brand-envato:before {
  1813. content: "\f394";
  1814. }
  1815. .ti-brand-etsy:before {
  1816. content: "\f654";
  1817. }
  1818. .ti-brand-evernote:before {
  1819. content: "\f600";
  1820. }
  1821. .ti-brand-facebook:before {
  1822. content: "\ec1a";
  1823. }
  1824. .ti-brand-figma:before {
  1825. content: "\ec93";
  1826. }
  1827. .ti-brand-finder:before {
  1828. content: "\f218";
  1829. }
  1830. .ti-brand-firebase:before {
  1831. content: "\ef6e";
  1832. }
  1833. .ti-brand-firefox:before {
  1834. content: "\ecfd";
  1835. }
  1836. .ti-brand-flickr:before {
  1837. content: "\ecfe";
  1838. }
  1839. .ti-brand-flightradar24:before {
  1840. content: "\f4d6";
  1841. }
  1842. .ti-brand-flipboard:before {
  1843. content: "\f20b";
  1844. }
  1845. .ti-brand-flutter:before {
  1846. content: "\f395";
  1847. }
  1848. .ti-brand-fortnite:before {
  1849. content: "\f260";
  1850. }
  1851. .ti-brand-foursquare:before {
  1852. content: "\ecff";
  1853. }
  1854. .ti-brand-framer:before {
  1855. content: "\ec1b";
  1856. }
  1857. .ti-brand-framer-motion:before {
  1858. content: "\f78c";
  1859. }
  1860. .ti-brand-funimation:before {
  1861. content: "\f655";
  1862. }
  1863. .ti-brand-gatsby:before {
  1864. content: "\f396";
  1865. }
  1866. .ti-brand-git:before {
  1867. content: "\ef6f";
  1868. }
  1869. .ti-brand-github:before {
  1870. content: "\ec1c";
  1871. }
  1872. .ti-brand-github-copilot:before {
  1873. content: "\f4a8";
  1874. }
  1875. .ti-brand-gitlab:before {
  1876. content: "\ec1d";
  1877. }
  1878. .ti-brand-gmail:before {
  1879. content: "\efa2";
  1880. }
  1881. .ti-brand-golang:before {
  1882. content: "\f78d";
  1883. }
  1884. .ti-brand-google:before {
  1885. content: "\ec1f";
  1886. }
  1887. .ti-brand-google-analytics:before {
  1888. content: "\edcb";
  1889. }
  1890. .ti-brand-google-big-query:before {
  1891. content: "\f612";
  1892. }
  1893. .ti-brand-google-drive:before {
  1894. content: "\ec1e";
  1895. }
  1896. .ti-brand-google-fit:before {
  1897. content: "\f297";
  1898. }
  1899. .ti-brand-google-home:before {
  1900. content: "\f601";
  1901. }
  1902. .ti-brand-google-one:before {
  1903. content: "\f232";
  1904. }
  1905. .ti-brand-google-photos:before {
  1906. content: "\f20c";
  1907. }
  1908. .ti-brand-google-play:before {
  1909. content: "\ed25";
  1910. }
  1911. .ti-brand-google-podcasts:before {
  1912. content: "\f656";
  1913. }
  1914. .ti-brand-grammarly:before {
  1915. content: "\f32b";
  1916. }
  1917. .ti-brand-graphql:before {
  1918. content: "\f32c";
  1919. }
  1920. .ti-brand-gravatar:before {
  1921. content: "\edcc";
  1922. }
  1923. .ti-brand-grindr:before {
  1924. content: "\f20d";
  1925. }
  1926. .ti-brand-guardian:before {
  1927. content: "\f4fb";
  1928. }
  1929. .ti-brand-gumroad:before {
  1930. content: "\f5d6";
  1931. }
  1932. .ti-brand-hbo:before {
  1933. content: "\f657";
  1934. }
  1935. .ti-brand-headlessui:before {
  1936. content: "\f32d";
  1937. }
  1938. .ti-brand-hipchat:before {
  1939. content: "\edcd";
  1940. }
  1941. .ti-brand-html5:before {
  1942. content: "\ed6c";
  1943. }
  1944. .ti-brand-inertia:before {
  1945. content: "\f34a";
  1946. }
  1947. .ti-brand-instagram:before {
  1948. content: "\ec20";
  1949. }
  1950. .ti-brand-intercom:before {
  1951. content: "\f1cf";
  1952. }
  1953. .ti-brand-javascript:before {
  1954. content: "\ef0c";
  1955. }
  1956. .ti-brand-kickstarter:before {
  1957. content: "\edce";
  1958. }
  1959. .ti-brand-kotlin:before {
  1960. content: "\ed6d";
  1961. }
  1962. .ti-brand-laravel:before {
  1963. content: "\f34b";
  1964. }
  1965. .ti-brand-lastfm:before {
  1966. content: "\f001";
  1967. }
  1968. .ti-brand-linkedin:before {
  1969. content: "\ec8c";
  1970. }
  1971. .ti-brand-linktree:before {
  1972. content: "\f1e7";
  1973. }
  1974. .ti-brand-linqpad:before {
  1975. content: "\f562";
  1976. }
  1977. .ti-brand-loom:before {
  1978. content: "\ef70";
  1979. }
  1980. .ti-brand-mailgun:before {
  1981. content: "\f32e";
  1982. }
  1983. .ti-brand-mantine:before {
  1984. content: "\f32f";
  1985. }
  1986. .ti-brand-mastercard:before {
  1987. content: "\ef49";
  1988. }
  1989. .ti-brand-mastodon:before {
  1990. content: "\f250";
  1991. }
  1992. .ti-brand-matrix:before {
  1993. content: "\f5eb";
  1994. }
  1995. .ti-brand-mcdonalds:before {
  1996. content: "\f251";
  1997. }
  1998. .ti-brand-medium:before {
  1999. content: "\ec70";
  2000. }
  2001. .ti-brand-mercedes:before {
  2002. content: "\f072";
  2003. }
  2004. .ti-brand-messenger:before {
  2005. content: "\ec71";
  2006. }
  2007. .ti-brand-meta:before {
  2008. content: "\efb0";
  2009. }
  2010. .ti-brand-miniprogram:before {
  2011. content: "\f602";
  2012. }
  2013. .ti-brand-mixpanel:before {
  2014. content: "\f397";
  2015. }
  2016. .ti-brand-monday:before {
  2017. content: "\f219";
  2018. }
  2019. .ti-brand-mongodb:before {
  2020. content: "\f613";
  2021. }
  2022. .ti-brand-my-oppo:before {
  2023. content: "\f4d7";
  2024. }
  2025. .ti-brand-mysql:before {
  2026. content: "\f614";
  2027. }
  2028. .ti-brand-national-geographic:before {
  2029. content: "\f603";
  2030. }
  2031. .ti-brand-nem:before {
  2032. content: "\f5a1";
  2033. }
  2034. .ti-brand-netbeans:before {
  2035. content: "\ef71";
  2036. }
  2037. .ti-brand-netease-music:before {
  2038. content: "\f604";
  2039. }
  2040. .ti-brand-netflix:before {
  2041. content: "\edcf";
  2042. }
  2043. .ti-brand-nexo:before {
  2044. content: "\f5a2";
  2045. }
  2046. .ti-brand-nextcloud:before {
  2047. content: "\f4d8";
  2048. }
  2049. .ti-brand-nextjs:before {
  2050. content: "\f0dd";
  2051. }
  2052. .ti-brand-nord-vpn:before {
  2053. content: "\f37f";
  2054. }
  2055. .ti-brand-notion:before {
  2056. content: "\ef7b";
  2057. }
  2058. .ti-brand-npm:before {
  2059. content: "\f569";
  2060. }
  2061. .ti-brand-nuxt:before {
  2062. content: "\f0de";
  2063. }
  2064. .ti-brand-nytimes:before {
  2065. content: "\ef8d";
  2066. }
  2067. .ti-brand-office:before {
  2068. content: "\f398";
  2069. }
  2070. .ti-brand-ok-ru:before {
  2071. content: "\f399";
  2072. }
  2073. .ti-brand-onedrive:before {
  2074. content: "\f5d7";
  2075. }
  2076. .ti-brand-onlyfans:before {
  2077. content: "\f605";
  2078. }
  2079. .ti-brand-open-source:before {
  2080. content: "\edd0";
  2081. }
  2082. .ti-brand-openai:before {
  2083. content: "\f78e";
  2084. }
  2085. .ti-brand-openvpn:before {
  2086. content: "\f39a";
  2087. }
  2088. .ti-brand-opera:before {
  2089. content: "\ec21";
  2090. }
  2091. .ti-brand-pagekit:before {
  2092. content: "\edd1";
  2093. }
  2094. .ti-brand-patreon:before {
  2095. content: "\edd2";
  2096. }
  2097. .ti-brand-paypal:before {
  2098. content: "\ec22";
  2099. }
  2100. .ti-brand-paypay:before {
  2101. content: "\f5ec";
  2102. }
  2103. .ti-brand-peanut:before {
  2104. content: "\f39b";
  2105. }
  2106. .ti-brand-pepsi:before {
  2107. content: "\f261";
  2108. }
  2109. .ti-brand-php:before {
  2110. content: "\ef72";
  2111. }
  2112. .ti-brand-picsart:before {
  2113. content: "\f4d9";
  2114. }
  2115. .ti-brand-pinterest:before {
  2116. content: "\ec8d";
  2117. }
  2118. .ti-brand-planetscale:before {
  2119. content: "\f78f";
  2120. }
  2121. .ti-brand-pocket:before {
  2122. content: "\ed00";
  2123. }
  2124. .ti-brand-polymer:before {
  2125. content: "\f498";
  2126. }
  2127. .ti-brand-powershell:before {
  2128. content: "\f5ed";
  2129. }
  2130. .ti-brand-prisma:before {
  2131. content: "\f499";
  2132. }
  2133. .ti-brand-producthunt:before {
  2134. content: "\edd3";
  2135. }
  2136. .ti-brand-pushbullet:before {
  2137. content: "\f330";
  2138. }
  2139. .ti-brand-pushover:before {
  2140. content: "\f20e";
  2141. }
  2142. .ti-brand-python:before {
  2143. content: "\ed01";
  2144. }
  2145. .ti-brand-qq:before {
  2146. content: "\f606";
  2147. }
  2148. .ti-brand-radix-ui:before {
  2149. content: "\f790";
  2150. }
  2151. .ti-brand-react:before {
  2152. content: "\f34c";
  2153. }
  2154. .ti-brand-react-native:before {
  2155. content: "\ef73";
  2156. }
  2157. .ti-brand-reason:before {
  2158. content: "\f49a";
  2159. }
  2160. .ti-brand-reddit:before {
  2161. content: "\ec8e";
  2162. }
  2163. .ti-brand-redhat:before {
  2164. content: "\f331";
  2165. }
  2166. .ti-brand-redux:before {
  2167. content: "\f3a8";
  2168. }
  2169. .ti-brand-revolut:before {
  2170. content: "\f4da";
  2171. }
  2172. .ti-brand-safari:before {
  2173. content: "\ec23";
  2174. }
  2175. .ti-brand-samsungpass:before {
  2176. content: "\f4db";
  2177. }
  2178. .ti-brand-sass:before {
  2179. content: "\edd4";
  2180. }
  2181. .ti-brand-sentry:before {
  2182. content: "\edd5";
  2183. }
  2184. .ti-brand-sharik:before {
  2185. content: "\f4dc";
  2186. }
  2187. .ti-brand-shazam:before {
  2188. content: "\edd6";
  2189. }
  2190. .ti-brand-shopee:before {
  2191. content: "\f252";
  2192. }
  2193. .ti-brand-sketch:before {
  2194. content: "\ec24";
  2195. }
  2196. .ti-brand-skype:before {
  2197. content: "\ed02";
  2198. }
  2199. .ti-brand-slack:before {
  2200. content: "\ec72";
  2201. }
  2202. .ti-brand-snapchat:before {
  2203. content: "\ec25";
  2204. }
  2205. .ti-brand-snapseed:before {
  2206. content: "\f253";
  2207. }
  2208. .ti-brand-snowflake:before {
  2209. content: "\f615";
  2210. }
  2211. .ti-brand-socket-io:before {
  2212. content: "\f49b";
  2213. }
  2214. .ti-brand-solidjs:before {
  2215. content: "\f5ee";
  2216. }
  2217. .ti-brand-soundcloud:before {
  2218. content: "\ed6e";
  2219. }
  2220. .ti-brand-spacehey:before {
  2221. content: "\f4fc";
  2222. }
  2223. .ti-brand-spotify:before {
  2224. content: "\ed03";
  2225. }
  2226. .ti-brand-stackoverflow:before {
  2227. content: "\ef58";
  2228. }
  2229. .ti-brand-stackshare:before {
  2230. content: "\f607";
  2231. }
  2232. .ti-brand-steam:before {
  2233. content: "\ed6f";
  2234. }
  2235. .ti-brand-storybook:before {
  2236. content: "\f332";
  2237. }
  2238. .ti-brand-storytel:before {
  2239. content: "\f608";
  2240. }
  2241. .ti-brand-strava:before {
  2242. content: "\f254";
  2243. }
  2244. .ti-brand-stripe:before {
  2245. content: "\edd7";
  2246. }
  2247. .ti-brand-sublime-text:before {
  2248. content: "\ef74";
  2249. }
  2250. .ti-brand-supabase:before {
  2251. content: "\f6d3";
  2252. }
  2253. .ti-brand-superhuman:before {
  2254. content: "\f50c";
  2255. }
  2256. .ti-brand-supernova:before {
  2257. content: "\f49c";
  2258. }
  2259. .ti-brand-surfshark:before {
  2260. content: "\f255";
  2261. }
  2262. .ti-brand-svelte:before {
  2263. content: "\f0df";
  2264. }
  2265. .ti-brand-symfony:before {
  2266. content: "\f616";
  2267. }
  2268. .ti-brand-tabler:before {
  2269. content: "\ec8f";
  2270. }
  2271. .ti-brand-tailwind:before {
  2272. content: "\eca1";
  2273. }
  2274. .ti-brand-taobao:before {
  2275. content: "\f5ef";
  2276. }
  2277. .ti-brand-ted:before {
  2278. content: "\f658";
  2279. }
  2280. .ti-brand-telegram:before {
  2281. content: "\ec26";
  2282. }
  2283. .ti-brand-tether:before {
  2284. content: "\f5a3";
  2285. }
  2286. .ti-brand-threejs:before {
  2287. content: "\f5f0";
  2288. }
  2289. .ti-brand-tidal:before {
  2290. content: "\ed70";
  2291. }
  2292. .ti-brand-tiktok:before {
  2293. content: "\ec73";
  2294. }
  2295. .ti-brand-tinder:before {
  2296. content: "\ed71";
  2297. }
  2298. .ti-brand-topbuzz:before {
  2299. content: "\f50d";
  2300. }
  2301. .ti-brand-torchain:before {
  2302. content: "\f5a4";
  2303. }
  2304. .ti-brand-toyota:before {
  2305. content: "\f262";
  2306. }
  2307. .ti-brand-trello:before {
  2308. content: "\f39d";
  2309. }
  2310. .ti-brand-tripadvisor:before {
  2311. content: "\f002";
  2312. }
  2313. .ti-brand-tumblr:before {
  2314. content: "\ed04";
  2315. }
  2316. .ti-brand-twilio:before {
  2317. content: "\f617";
  2318. }
  2319. .ti-brand-twitch:before {
  2320. content: "\ed05";
  2321. }
  2322. .ti-brand-twitter:before {
  2323. content: "\ec27";
  2324. }
  2325. .ti-brand-typescript:before {
  2326. content: "\f5f1";
  2327. }
  2328. .ti-brand-uber:before {
  2329. content: "\ef75";
  2330. }
  2331. .ti-brand-ubuntu:before {
  2332. content: "\ef59";
  2333. }
  2334. .ti-brand-unity:before {
  2335. content: "\f49d";
  2336. }
  2337. .ti-brand-unsplash:before {
  2338. content: "\edd8";
  2339. }
  2340. .ti-brand-upwork:before {
  2341. content: "\f39e";
  2342. }
  2343. .ti-brand-valorant:before {
  2344. content: "\f39f";
  2345. }
  2346. .ti-brand-vercel:before {
  2347. content: "\ef24";
  2348. }
  2349. .ti-brand-vimeo:before {
  2350. content: "\ed06";
  2351. }
  2352. .ti-brand-vinted:before {
  2353. content: "\f20f";
  2354. }
  2355. .ti-brand-visa:before {
  2356. content: "\f380";
  2357. }
  2358. .ti-brand-visual-studio:before {
  2359. content: "\ef76";
  2360. }
  2361. .ti-brand-vite:before {
  2362. content: "\f5f2";
  2363. }
  2364. .ti-brand-vivaldi:before {
  2365. content: "\f210";
  2366. }
  2367. .ti-brand-vk:before {
  2368. content: "\ed72";
  2369. }
  2370. .ti-brand-volkswagen:before {
  2371. content: "\f50e";
  2372. }
  2373. .ti-brand-vsco:before {
  2374. content: "\f334";
  2375. }
  2376. .ti-brand-vscode:before {
  2377. content: "\f3a0";
  2378. }
  2379. .ti-brand-vue:before {
  2380. content: "\f0e0";
  2381. }
  2382. .ti-brand-walmart:before {
  2383. content: "\f211";
  2384. }
  2385. .ti-brand-waze:before {
  2386. content: "\f5d8";
  2387. }
  2388. .ti-brand-webflow:before {
  2389. content: "\f2d2";
  2390. }
  2391. .ti-brand-wechat:before {
  2392. content: "\f5f3";
  2393. }
  2394. .ti-brand-weibo:before {
  2395. content: "\f609";
  2396. }
  2397. .ti-brand-whatsapp:before {
  2398. content: "\ec74";
  2399. }
  2400. .ti-brand-windows:before {
  2401. content: "\ecd8";
  2402. }
  2403. .ti-brand-windy:before {
  2404. content: "\f4dd";
  2405. }
  2406. .ti-brand-wish:before {
  2407. content: "\f212";
  2408. }
  2409. .ti-brand-wix:before {
  2410. content: "\f3a1";
  2411. }
  2412. .ti-brand-wordpress:before {
  2413. content: "\f2d3";
  2414. }
  2415. .ti-brand-xbox:before {
  2416. content: "\f298";
  2417. }
  2418. .ti-brand-xing:before {
  2419. content: "\f21a";
  2420. }
  2421. .ti-brand-yahoo:before {
  2422. content: "\ed73";
  2423. }
  2424. .ti-brand-yatse:before {
  2425. content: "\f213";
  2426. }
  2427. .ti-brand-ycombinator:before {
  2428. content: "\edd9";
  2429. }
  2430. .ti-brand-youtube:before {
  2431. content: "\ec90";
  2432. }
  2433. .ti-brand-youtube-kids:before {
  2434. content: "\f214";
  2435. }
  2436. .ti-brand-zalando:before {
  2437. content: "\f49e";
  2438. }
  2439. .ti-brand-zapier:before {
  2440. content: "\f49f";
  2441. }
  2442. .ti-brand-zeit:before {
  2443. content: "\f335";
  2444. }
  2445. .ti-brand-zhihu:before {
  2446. content: "\f60a";
  2447. }
  2448. .ti-brand-zoom:before {
  2449. content: "\f215";
  2450. }
  2451. .ti-brand-zulip:before {
  2452. content: "\f4de";
  2453. }
  2454. .ti-brand-zwift:before {
  2455. content: "\f216";
  2456. }
  2457. .ti-bread:before {
  2458. content: "\efa3";
  2459. }
  2460. .ti-bread-off:before {
  2461. content: "\f3cb";
  2462. }
  2463. .ti-briefcase:before {
  2464. content: "\ea46";
  2465. }
  2466. .ti-briefcase-off:before {
  2467. content: "\f3cc";
  2468. }
  2469. .ti-brightness:before {
  2470. content: "\eb7f";
  2471. }
  2472. .ti-brightness-2:before {
  2473. content: "\ee19";
  2474. }
  2475. .ti-brightness-down:before {
  2476. content: "\eb7d";
  2477. }
  2478. .ti-brightness-half:before {
  2479. content: "\ee1a";
  2480. }
  2481. .ti-brightness-off:before {
  2482. content: "\f3cd";
  2483. }
  2484. .ti-brightness-up:before {
  2485. content: "\eb7e";
  2486. }
  2487. .ti-broadcast:before {
  2488. content: "\f1e9";
  2489. }
  2490. .ti-broadcast-off:before {
  2491. content: "\f1e8";
  2492. }
  2493. .ti-browser:before {
  2494. content: "\ebb7";
  2495. }
  2496. .ti-browser-check:before {
  2497. content: "\efd6";
  2498. }
  2499. .ti-browser-off:before {
  2500. content: "\f0c1";
  2501. }
  2502. .ti-browser-plus:before {
  2503. content: "\efd7";
  2504. }
  2505. .ti-browser-x:before {
  2506. content: "\efd8";
  2507. }
  2508. .ti-brush:before {
  2509. content: "\ebb8";
  2510. }
  2511. .ti-brush-off:before {
  2512. content: "\f0c2";
  2513. }
  2514. .ti-bucket:before {
  2515. content: "\ea47";
  2516. }
  2517. .ti-bucket-droplet:before {
  2518. content: "\f56a";
  2519. }
  2520. .ti-bucket-off:before {
  2521. content: "\f103";
  2522. }
  2523. .ti-bug:before {
  2524. content: "\ea48";
  2525. }
  2526. .ti-bug-off:before {
  2527. content: "\f0c3";
  2528. }
  2529. .ti-building:before {
  2530. content: "\ea4f";
  2531. }
  2532. .ti-building-arch:before {
  2533. content: "\ea49";
  2534. }
  2535. .ti-building-bank:before {
  2536. content: "\ebe2";
  2537. }
  2538. .ti-building-bridge:before {
  2539. content: "\ea4b";
  2540. }
  2541. .ti-building-bridge-2:before {
  2542. content: "\ea4a";
  2543. }
  2544. .ti-building-broadcast-tower:before {
  2545. content: "\f4be";
  2546. }
  2547. .ti-building-carousel:before {
  2548. content: "\ed87";
  2549. }
  2550. .ti-building-castle:before {
  2551. content: "\ed88";
  2552. }
  2553. .ti-building-church:before {
  2554. content: "\ea4c";
  2555. }
  2556. .ti-building-circus:before {
  2557. content: "\f4bf";
  2558. }
  2559. .ti-building-community:before {
  2560. content: "\ebf6";
  2561. }
  2562. .ti-building-cottage:before {
  2563. content: "\ee1b";
  2564. }
  2565. .ti-building-estate:before {
  2566. content: "\f5a5";
  2567. }
  2568. .ti-building-factory:before {
  2569. content: "\ee1c";
  2570. }
  2571. .ti-building-factory-2:before {
  2572. content: "\f082";
  2573. }
  2574. .ti-building-fortress:before {
  2575. content: "\ed89";
  2576. }
  2577. .ti-building-hospital:before {
  2578. content: "\ea4d";
  2579. }
  2580. .ti-building-lighthouse:before {
  2581. content: "\ed8a";
  2582. }
  2583. .ti-building-monument:before {
  2584. content: "\ed26";
  2585. }
  2586. .ti-building-pavilion:before {
  2587. content: "\ebf7";
  2588. }
  2589. .ti-building-skyscraper:before {
  2590. content: "\ec39";
  2591. }
  2592. .ti-building-stadium:before {
  2593. content: "\f641";
  2594. }
  2595. .ti-building-store:before {
  2596. content: "\ea4e";
  2597. }
  2598. .ti-building-tunnel:before {
  2599. content: "\f5a6";
  2600. }
  2601. .ti-building-warehouse:before {
  2602. content: "\ebe3";
  2603. }
  2604. .ti-building-wind-turbine:before {
  2605. content: "\f4c0";
  2606. }
  2607. .ti-bulb:before {
  2608. content: "\ea51";
  2609. }
  2610. .ti-bulb-filled:before {
  2611. content: "\f66a";
  2612. }
  2613. .ti-bulb-off:before {
  2614. content: "\ea50";
  2615. }
  2616. .ti-bulldozer:before {
  2617. content: "\ee1d";
  2618. }
  2619. .ti-bus:before {
  2620. content: "\ebe4";
  2621. }
  2622. .ti-bus-off:before {
  2623. content: "\f3ce";
  2624. }
  2625. .ti-bus-stop:before {
  2626. content: "\f2d4";
  2627. }
  2628. .ti-businessplan:before {
  2629. content: "\ee1e";
  2630. }
  2631. .ti-butterfly:before {
  2632. content: "\efd9";
  2633. }
  2634. .ti-cactus:before {
  2635. content: "\f21b";
  2636. }
  2637. .ti-cactus-off:before {
  2638. content: "\f3cf";
  2639. }
  2640. .ti-cake:before {
  2641. content: "\f00f";
  2642. }
  2643. .ti-cake-off:before {
  2644. content: "\f104";
  2645. }
  2646. .ti-calculator:before {
  2647. content: "\eb80";
  2648. }
  2649. .ti-calculator-off:before {
  2650. content: "\f0c4";
  2651. }
  2652. .ti-calendar:before {
  2653. content: "\ea53";
  2654. }
  2655. .ti-calendar-due:before {
  2656. content: "\f621";
  2657. }
  2658. .ti-calendar-event:before {
  2659. content: "\ea52";
  2660. }
  2661. .ti-calendar-minus:before {
  2662. content: "\ebb9";
  2663. }
  2664. .ti-calendar-off:before {
  2665. content: "\ee1f";
  2666. }
  2667. .ti-calendar-plus:before {
  2668. content: "\ebba";
  2669. }
  2670. .ti-calendar-stats:before {
  2671. content: "\ee20";
  2672. }
  2673. .ti-calendar-time:before {
  2674. content: "\ee21";
  2675. }
  2676. .ti-camera:before {
  2677. content: "\ea54";
  2678. }
  2679. .ti-camera-minus:before {
  2680. content: "\ec3a";
  2681. }
  2682. .ti-camera-off:before {
  2683. content: "\ecee";
  2684. }
  2685. .ti-camera-plus:before {
  2686. content: "\ec3b";
  2687. }
  2688. .ti-camera-rotate:before {
  2689. content: "\ee22";
  2690. }
  2691. .ti-camera-selfie:before {
  2692. content: "\ee23";
  2693. }
  2694. .ti-campfire:before {
  2695. content: "\f5a7";
  2696. }
  2697. .ti-candle:before {
  2698. content: "\efc6";
  2699. }
  2700. .ti-candy:before {
  2701. content: "\ef0d";
  2702. }
  2703. .ti-candy-off:before {
  2704. content: "\f0c5";
  2705. }
  2706. .ti-cane:before {
  2707. content: "\f50f";
  2708. }
  2709. .ti-cannabis:before {
  2710. content: "\f4c1";
  2711. }
  2712. .ti-capture:before {
  2713. content: "\ec3c";
  2714. }
  2715. .ti-capture-off:before {
  2716. content: "\f0c6";
  2717. }
  2718. .ti-car:before {
  2719. content: "\ebbb";
  2720. }
  2721. .ti-car-crane:before {
  2722. content: "\ef25";
  2723. }
  2724. .ti-car-crash:before {
  2725. content: "\efa4";
  2726. }
  2727. .ti-car-off:before {
  2728. content: "\f0c7";
  2729. }
  2730. .ti-car-turbine:before {
  2731. content: "\f4fd";
  2732. }
  2733. .ti-caravan:before {
  2734. content: "\ec7c";
  2735. }
  2736. .ti-cardboards:before {
  2737. content: "\ed74";
  2738. }
  2739. .ti-cardboards-off:before {
  2740. content: "\f0c8";
  2741. }
  2742. .ti-cards:before {
  2743. content: "\f510";
  2744. }
  2745. .ti-caret-down:before {
  2746. content: "\eb5d";
  2747. }
  2748. .ti-caret-left:before {
  2749. content: "\eb5e";
  2750. }
  2751. .ti-caret-right:before {
  2752. content: "\eb5f";
  2753. }
  2754. .ti-caret-up:before {
  2755. content: "\eb60";
  2756. }
  2757. .ti-carousel-horizontal:before {
  2758. content: "\f659";
  2759. }
  2760. .ti-carousel-vertical:before {
  2761. content: "\f65a";
  2762. }
  2763. .ti-carrot:before {
  2764. content: "\f21c";
  2765. }
  2766. .ti-carrot-off:before {
  2767. content: "\f3d0";
  2768. }
  2769. .ti-cash:before {
  2770. content: "\ea55";
  2771. }
  2772. .ti-cash-banknote:before {
  2773. content: "\ee25";
  2774. }
  2775. .ti-cash-banknote-off:before {
  2776. content: "\ee24";
  2777. }
  2778. .ti-cash-off:before {
  2779. content: "\f105";
  2780. }
  2781. .ti-cast:before {
  2782. content: "\ea56";
  2783. }
  2784. .ti-cast-off:before {
  2785. content: "\f0c9";
  2786. }
  2787. .ti-cat:before {
  2788. content: "\f65b";
  2789. }
  2790. .ti-category:before {
  2791. content: "\f1f6";
  2792. }
  2793. .ti-category-2:before {
  2794. content: "\f1f5";
  2795. }
  2796. .ti-ce:before {
  2797. content: "\ed75";
  2798. }
  2799. .ti-ce-off:before {
  2800. content: "\f0ca";
  2801. }
  2802. .ti-cell:before {
  2803. content: "\f05f";
  2804. }
  2805. .ti-cell-signal-1:before {
  2806. content: "\f083";
  2807. }
  2808. .ti-cell-signal-2:before {
  2809. content: "\f084";
  2810. }
  2811. .ti-cell-signal-3:before {
  2812. content: "\f085";
  2813. }
  2814. .ti-cell-signal-4:before {
  2815. content: "\f086";
  2816. }
  2817. .ti-cell-signal-5:before {
  2818. content: "\f087";
  2819. }
  2820. .ti-cell-signal-off:before {
  2821. content: "\f088";
  2822. }
  2823. .ti-certificate:before {
  2824. content: "\ed76";
  2825. }
  2826. .ti-certificate-2:before {
  2827. content: "\f073";
  2828. }
  2829. .ti-certificate-2-off:before {
  2830. content: "\f0cb";
  2831. }
  2832. .ti-certificate-off:before {
  2833. content: "\f0cc";
  2834. }
  2835. .ti-chair-director:before {
  2836. content: "\f2d5";
  2837. }
  2838. .ti-chalkboard:before {
  2839. content: "\f34d";
  2840. }
  2841. .ti-chalkboard-off:before {
  2842. content: "\f3d1";
  2843. }
  2844. .ti-charging-pile:before {
  2845. content: "\ee26";
  2846. }
  2847. .ti-chart-arcs:before {
  2848. content: "\ee28";
  2849. }
  2850. .ti-chart-arcs-3:before {
  2851. content: "\ee27";
  2852. }
  2853. .ti-chart-area:before {
  2854. content: "\ea58";
  2855. }
  2856. .ti-chart-area-filled:before {
  2857. content: "\f66b";
  2858. }
  2859. .ti-chart-area-line:before {
  2860. content: "\ea57";
  2861. }
  2862. .ti-chart-area-line-filled:before {
  2863. content: "\f66c";
  2864. }
  2865. .ti-chart-arrows:before {
  2866. content: "\ee2a";
  2867. }
  2868. .ti-chart-arrows-vertical:before {
  2869. content: "\ee29";
  2870. }
  2871. .ti-chart-bar:before {
  2872. content: "\ea59";
  2873. }
  2874. .ti-chart-bar-off:before {
  2875. content: "\f3d2";
  2876. }
  2877. .ti-chart-bubble:before {
  2878. content: "\ec75";
  2879. }
  2880. .ti-chart-bubble-filled:before {
  2881. content: "\f66d";
  2882. }
  2883. .ti-chart-candle:before {
  2884. content: "\ea5a";
  2885. }
  2886. .ti-chart-candle-filled:before {
  2887. content: "\f66e";
  2888. }
  2889. .ti-chart-circles:before {
  2890. content: "\ee2b";
  2891. }
  2892. .ti-chart-donut:before {
  2893. content: "\ea5b";
  2894. }
  2895. .ti-chart-donut-2:before {
  2896. content: "\ee2c";
  2897. }
  2898. .ti-chart-donut-3:before {
  2899. content: "\ee2d";
  2900. }
  2901. .ti-chart-donut-4:before {
  2902. content: "\ee2e";
  2903. }
  2904. .ti-chart-donut-filled:before {
  2905. content: "\f66f";
  2906. }
  2907. .ti-chart-dots:before {
  2908. content: "\ee2f";
  2909. }
  2910. .ti-chart-dots-2:before {
  2911. content: "\f097";
  2912. }
  2913. .ti-chart-dots-3:before {
  2914. content: "\f098";
  2915. }
  2916. .ti-chart-grid-dots:before {
  2917. content: "\f4c2";
  2918. }
  2919. .ti-chart-histogram:before {
  2920. content: "\f65c";
  2921. }
  2922. .ti-chart-infographic:before {
  2923. content: "\ee30";
  2924. }
  2925. .ti-chart-line:before {
  2926. content: "\ea5c";
  2927. }
  2928. .ti-chart-pie:before {
  2929. content: "\ea5d";
  2930. }
  2931. .ti-chart-pie-2:before {
  2932. content: "\ee31";
  2933. }
  2934. .ti-chart-pie-3:before {
  2935. content: "\ee32";
  2936. }
  2937. .ti-chart-pie-4:before {
  2938. content: "\ee33";
  2939. }
  2940. .ti-chart-pie-filled:before {
  2941. content: "\f670";
  2942. }
  2943. .ti-chart-pie-off:before {
  2944. content: "\f3d3";
  2945. }
  2946. .ti-chart-ppf:before {
  2947. content: "\f618";
  2948. }
  2949. .ti-chart-radar:before {
  2950. content: "\ed77";
  2951. }
  2952. .ti-chart-sankey:before {
  2953. content: "\f619";
  2954. }
  2955. .ti-chart-treemap:before {
  2956. content: "\f381";
  2957. }
  2958. .ti-check:before {
  2959. content: "\ea5e";
  2960. }
  2961. .ti-checkbox:before {
  2962. content: "\eba6";
  2963. }
  2964. .ti-checklist:before {
  2965. content: "\f074";
  2966. }
  2967. .ti-checks:before {
  2968. content: "\ebaa";
  2969. }
  2970. .ti-checkup-list:before {
  2971. content: "\ef5a";
  2972. }
  2973. .ti-cheese:before {
  2974. content: "\ef26";
  2975. }
  2976. .ti-chef-hat:before {
  2977. content: "\f21d";
  2978. }
  2979. .ti-chef-hat-off:before {
  2980. content: "\f3d4";
  2981. }
  2982. .ti-cherry:before {
  2983. content: "\f511";
  2984. }
  2985. .ti-cherry-filled:before {
  2986. content: "\f728";
  2987. }
  2988. .ti-chess:before {
  2989. content: "\f382";
  2990. }
  2991. .ti-chess-bishop:before {
  2992. content: "\f56b";
  2993. }
  2994. .ti-chess-bishop-filled:before {
  2995. content: "\f729";
  2996. }
  2997. .ti-chess-filled:before {
  2998. content: "\f72a";
  2999. }
  3000. .ti-chess-king:before {
  3001. content: "\f56c";
  3002. }
  3003. .ti-chess-king-filled:before {
  3004. content: "\f72b";
  3005. }
  3006. .ti-chess-knight:before {
  3007. content: "\f56d";
  3008. }
  3009. .ti-chess-knight-filled:before {
  3010. content: "\f72c";
  3011. }
  3012. .ti-chess-queen:before {
  3013. content: "\f56e";
  3014. }
  3015. .ti-chess-queen-filled:before {
  3016. content: "\f72d";
  3017. }
  3018. .ti-chess-rook:before {
  3019. content: "\f56f";
  3020. }
  3021. .ti-chess-rook-filled:before {
  3022. content: "\f72e";
  3023. }
  3024. .ti-chevron-down:before {
  3025. content: "\ea5f";
  3026. }
  3027. .ti-chevron-down-left:before {
  3028. content: "\ed09";
  3029. }
  3030. .ti-chevron-down-right:before {
  3031. content: "\ed0a";
  3032. }
  3033. .ti-chevron-left:before {
  3034. content: "\ea60";
  3035. }
  3036. .ti-chevron-right:before {
  3037. content: "\ea61";
  3038. }
  3039. .ti-chevron-up:before {
  3040. content: "\ea62";
  3041. }
  3042. .ti-chevron-up-left:before {
  3043. content: "\ed0b";
  3044. }
  3045. .ti-chevron-up-right:before {
  3046. content: "\ed0c";
  3047. }
  3048. .ti-chevrons-down:before {
  3049. content: "\ea63";
  3050. }
  3051. .ti-chevrons-down-left:before {
  3052. content: "\ed0d";
  3053. }
  3054. .ti-chevrons-down-right:before {
  3055. content: "\ed0e";
  3056. }
  3057. .ti-chevrons-left:before {
  3058. content: "\ea64";
  3059. }
  3060. .ti-chevrons-right:before {
  3061. content: "\ea65";
  3062. }
  3063. .ti-chevrons-up:before {
  3064. content: "\ea66";
  3065. }
  3066. .ti-chevrons-up-left:before {
  3067. content: "\ed0f";
  3068. }
  3069. .ti-chevrons-up-right:before {
  3070. content: "\ed10";
  3071. }
  3072. .ti-chisel:before {
  3073. content: "\f383";
  3074. }
  3075. .ti-christmas-tree:before {
  3076. content: "\ed78";
  3077. }
  3078. .ti-christmas-tree-off:before {
  3079. content: "\f3d5";
  3080. }
  3081. .ti-circle:before {
  3082. content: "\ea6b";
  3083. }
  3084. .ti-circle-0-filled:before {
  3085. content: "\f72f";
  3086. }
  3087. .ti-circle-1-filled:before {
  3088. content: "\f730";
  3089. }
  3090. .ti-circle-2-filled:before {
  3091. content: "\f731";
  3092. }
  3093. .ti-circle-3-filled:before {
  3094. content: "\f732";
  3095. }
  3096. .ti-circle-4-filled:before {
  3097. content: "\f733";
  3098. }
  3099. .ti-circle-5-filled:before {
  3100. content: "\f734";
  3101. }
  3102. .ti-circle-6-filled:before {
  3103. content: "\f735";
  3104. }
  3105. .ti-circle-7-filled:before {
  3106. content: "\f736";
  3107. }
  3108. .ti-circle-8-filled:before {
  3109. content: "\f737";
  3110. }
  3111. .ti-circle-9-filled:before {
  3112. content: "\f738";
  3113. }
  3114. .ti-circle-arrow-down:before {
  3115. content: "\f6f9";
  3116. }
  3117. .ti-circle-arrow-down-filled:before {
  3118. content: "\f6f4";
  3119. }
  3120. .ti-circle-arrow-down-left:before {
  3121. content: "\f6f6";
  3122. }
  3123. .ti-circle-arrow-down-left-filled:before {
  3124. content: "\f6f5";
  3125. }
  3126. .ti-circle-arrow-down-right:before {
  3127. content: "\f6f8";
  3128. }
  3129. .ti-circle-arrow-down-right-filled:before {
  3130. content: "\f6f7";
  3131. }
  3132. .ti-circle-arrow-left:before {
  3133. content: "\f6fb";
  3134. }
  3135. .ti-circle-arrow-left-filled:before {
  3136. content: "\f6fa";
  3137. }
  3138. .ti-circle-arrow-right:before {
  3139. content: "\f6fd";
  3140. }
  3141. .ti-circle-arrow-right-filled:before {
  3142. content: "\f6fc";
  3143. }
  3144. .ti-circle-arrow-up:before {
  3145. content: "\f703";
  3146. }
  3147. .ti-circle-arrow-up-filled:before {
  3148. content: "\f6fe";
  3149. }
  3150. .ti-circle-arrow-up-left:before {
  3151. content: "\f700";
  3152. }
  3153. .ti-circle-arrow-up-left-filled:before {
  3154. content: "\f6ff";
  3155. }
  3156. .ti-circle-arrow-up-right:before {
  3157. content: "\f702";
  3158. }
  3159. .ti-circle-arrow-up-right-filled:before {
  3160. content: "\f701";
  3161. }
  3162. .ti-circle-caret-down:before {
  3163. content: "\f4a9";
  3164. }
  3165. .ti-circle-caret-left:before {
  3166. content: "\f4aa";
  3167. }
  3168. .ti-circle-caret-right:before {
  3169. content: "\f4ab";
  3170. }
  3171. .ti-circle-caret-up:before {
  3172. content: "\f4ac";
  3173. }
  3174. .ti-circle-check:before {
  3175. content: "\ea67";
  3176. }
  3177. .ti-circle-check-filled:before {
  3178. content: "\f704";
  3179. }
  3180. .ti-circle-chevron-down:before {
  3181. content: "\f622";
  3182. }
  3183. .ti-circle-chevron-left:before {
  3184. content: "\f623";
  3185. }
  3186. .ti-circle-chevron-right:before {
  3187. content: "\f624";
  3188. }
  3189. .ti-circle-chevron-up:before {
  3190. content: "\f625";
  3191. }
  3192. .ti-circle-chevrons-down:before {
  3193. content: "\f642";
  3194. }
  3195. .ti-circle-chevrons-left:before {
  3196. content: "\f643";
  3197. }
  3198. .ti-circle-chevrons-right:before {
  3199. content: "\f644";
  3200. }
  3201. .ti-circle-chevrons-up:before {
  3202. content: "\f645";
  3203. }
  3204. .ti-circle-dashed:before {
  3205. content: "\ed27";
  3206. }
  3207. .ti-circle-dot:before {
  3208. content: "\efb1";
  3209. }
  3210. .ti-circle-dot-filled:before {
  3211. content: "\f705";
  3212. }
  3213. .ti-circle-dotted:before {
  3214. content: "\ed28";
  3215. }
  3216. .ti-circle-filled:before {
  3217. content: "\f671";
  3218. }
  3219. .ti-circle-half:before {
  3220. content: "\ee3f";
  3221. }
  3222. .ti-circle-half-2:before {
  3223. content: "\eff3";
  3224. }
  3225. .ti-circle-half-vertical:before {
  3226. content: "\ee3e";
  3227. }
  3228. .ti-circle-key:before {
  3229. content: "\f633";
  3230. }
  3231. .ti-circle-key-filled:before {
  3232. content: "\f706";
  3233. }
  3234. .ti-circle-letter-a:before {
  3235. content: "\f441";
  3236. }
  3237. .ti-circle-letter-b:before {
  3238. content: "\f442";
  3239. }
  3240. .ti-circle-letter-c:before {
  3241. content: "\f443";
  3242. }
  3243. .ti-circle-letter-d:before {
  3244. content: "\f444";
  3245. }
  3246. .ti-circle-letter-e:before {
  3247. content: "\f445";
  3248. }
  3249. .ti-circle-letter-f:before {
  3250. content: "\f446";
  3251. }
  3252. .ti-circle-letter-g:before {
  3253. content: "\f447";
  3254. }
  3255. .ti-circle-letter-h:before {
  3256. content: "\f448";
  3257. }
  3258. .ti-circle-letter-i:before {
  3259. content: "\f449";
  3260. }
  3261. .ti-circle-letter-j:before {
  3262. content: "\f44a";
  3263. }
  3264. .ti-circle-letter-k:before {
  3265. content: "\f44b";
  3266. }
  3267. .ti-circle-letter-l:before {
  3268. content: "\f44c";
  3269. }
  3270. .ti-circle-letter-m:before {
  3271. content: "\f44d";
  3272. }
  3273. .ti-circle-letter-n:before {
  3274. content: "\f44e";
  3275. }
  3276. .ti-circle-letter-o:before {
  3277. content: "\f44f";
  3278. }
  3279. .ti-circle-letter-p:before {
  3280. content: "\f450";
  3281. }
  3282. .ti-circle-letter-q:before {
  3283. content: "\f451";
  3284. }
  3285. .ti-circle-letter-r:before {
  3286. content: "\f452";
  3287. }
  3288. .ti-circle-letter-s:before {
  3289. content: "\f453";
  3290. }
  3291. .ti-circle-letter-t:before {
  3292. content: "\f454";
  3293. }
  3294. .ti-circle-letter-u:before {
  3295. content: "\f455";
  3296. }
  3297. .ti-circle-letter-v:before {
  3298. content: "\f4ad";
  3299. }
  3300. .ti-circle-letter-w:before {
  3301. content: "\f456";
  3302. }
  3303. .ti-circle-letter-x:before {
  3304. content: "\f4ae";
  3305. }
  3306. .ti-circle-letter-y:before {
  3307. content: "\f457";
  3308. }
  3309. .ti-circle-letter-z:before {
  3310. content: "\f458";
  3311. }
  3312. .ti-circle-minus:before {
  3313. content: "\ea68";
  3314. }
  3315. .ti-circle-number-0:before {
  3316. content: "\ee34";
  3317. }
  3318. .ti-circle-number-1:before {
  3319. content: "\ee35";
  3320. }
  3321. .ti-circle-number-2:before {
  3322. content: "\ee36";
  3323. }
  3324. .ti-circle-number-3:before {
  3325. content: "\ee37";
  3326. }
  3327. .ti-circle-number-4:before {
  3328. content: "\ee38";
  3329. }
  3330. .ti-circle-number-5:before {
  3331. content: "\ee39";
  3332. }
  3333. .ti-circle-number-6:before {
  3334. content: "\ee3a";
  3335. }
  3336. .ti-circle-number-7:before {
  3337. content: "\ee3b";
  3338. }
  3339. .ti-circle-number-8:before {
  3340. content: "\ee3c";
  3341. }
  3342. .ti-circle-number-9:before {
  3343. content: "\ee3d";
  3344. }
  3345. .ti-circle-off:before {
  3346. content: "\ee40";
  3347. }
  3348. .ti-circle-plus:before {
  3349. content: "\ea69";
  3350. }
  3351. .ti-circle-rectangle:before {
  3352. content: "\f010";
  3353. }
  3354. .ti-circle-rectangle-off:before {
  3355. content: "\f0cd";
  3356. }
  3357. .ti-circle-square:before {
  3358. content: "\ece4";
  3359. }
  3360. .ti-circle-triangle:before {
  3361. content: "\f011";
  3362. }
  3363. .ti-circle-x:before {
  3364. content: "\ea6a";
  3365. }
  3366. .ti-circle-x-filled:before {
  3367. content: "\f739";
  3368. }
  3369. .ti-circles:before {
  3370. content: "\ece5";
  3371. }
  3372. .ti-circles-filled:before {
  3373. content: "\f672";
  3374. }
  3375. .ti-circles-relation:before {
  3376. content: "\f4c3";
  3377. }
  3378. .ti-circuit-ammeter:before {
  3379. content: "\f271";
  3380. }
  3381. .ti-circuit-battery:before {
  3382. content: "\f272";
  3383. }
  3384. .ti-circuit-bulb:before {
  3385. content: "\f273";
  3386. }
  3387. .ti-circuit-capacitor:before {
  3388. content: "\f275";
  3389. }
  3390. .ti-circuit-capacitor-polarized:before {
  3391. content: "\f274";
  3392. }
  3393. .ti-circuit-cell:before {
  3394. content: "\f277";
  3395. }
  3396. .ti-circuit-cell-plus:before {
  3397. content: "\f276";
  3398. }
  3399. .ti-circuit-changeover:before {
  3400. content: "\f278";
  3401. }
  3402. .ti-circuit-diode:before {
  3403. content: "\f27a";
  3404. }
  3405. .ti-circuit-diode-zener:before {
  3406. content: "\f279";
  3407. }
  3408. .ti-circuit-ground:before {
  3409. content: "\f27c";
  3410. }
  3411. .ti-circuit-ground-digital:before {
  3412. content: "\f27b";
  3413. }
  3414. .ti-circuit-inductor:before {
  3415. content: "\f27d";
  3416. }
  3417. .ti-circuit-motor:before {
  3418. content: "\f27e";
  3419. }
  3420. .ti-circuit-pushbutton:before {
  3421. content: "\f27f";
  3422. }
  3423. .ti-circuit-resistor:before {
  3424. content: "\f280";
  3425. }
  3426. .ti-circuit-switch-closed:before {
  3427. content: "\f281";
  3428. }
  3429. .ti-circuit-switch-open:before {
  3430. content: "\f282";
  3431. }
  3432. .ti-circuit-voltmeter:before {
  3433. content: "\f283";
  3434. }
  3435. .ti-clear-all:before {
  3436. content: "\ee41";
  3437. }
  3438. .ti-clear-formatting:before {
  3439. content: "\ebe5";
  3440. }
  3441. .ti-click:before {
  3442. content: "\ebbc";
  3443. }
  3444. .ti-clipboard:before {
  3445. content: "\ea6f";
  3446. }
  3447. .ti-clipboard-check:before {
  3448. content: "\ea6c";
  3449. }
  3450. .ti-clipboard-copy:before {
  3451. content: "\f299";
  3452. }
  3453. .ti-clipboard-data:before {
  3454. content: "\f563";
  3455. }
  3456. .ti-clipboard-heart:before {
  3457. content: "\f34e";
  3458. }
  3459. .ti-clipboard-list:before {
  3460. content: "\ea6d";
  3461. }
  3462. .ti-clipboard-off:before {
  3463. content: "\f0ce";
  3464. }
  3465. .ti-clipboard-plus:before {
  3466. content: "\efb2";
  3467. }
  3468. .ti-clipboard-text:before {
  3469. content: "\f089";
  3470. }
  3471. .ti-clipboard-typography:before {
  3472. content: "\f34f";
  3473. }
  3474. .ti-clipboard-x:before {
  3475. content: "\ea6e";
  3476. }
  3477. .ti-clock:before {
  3478. content: "\ea70";
  3479. }
  3480. .ti-clock-2:before {
  3481. content: "\f099";
  3482. }
  3483. .ti-clock-cancel:before {
  3484. content: "\f546";
  3485. }
  3486. .ti-clock-edit:before {
  3487. content: "\f547";
  3488. }
  3489. .ti-clock-filled:before {
  3490. content: "\f73a";
  3491. }
  3492. .ti-clock-hour-1:before {
  3493. content: "\f313";
  3494. }
  3495. .ti-clock-hour-10:before {
  3496. content: "\f314";
  3497. }
  3498. .ti-clock-hour-11:before {
  3499. content: "\f315";
  3500. }
  3501. .ti-clock-hour-12:before {
  3502. content: "\f316";
  3503. }
  3504. .ti-clock-hour-2:before {
  3505. content: "\f317";
  3506. }
  3507. .ti-clock-hour-3:before {
  3508. content: "\f318";
  3509. }
  3510. .ti-clock-hour-4:before {
  3511. content: "\f319";
  3512. }
  3513. .ti-clock-hour-5:before {
  3514. content: "\f31a";
  3515. }
  3516. .ti-clock-hour-6:before {
  3517. content: "\f31b";
  3518. }
  3519. .ti-clock-hour-7:before {
  3520. content: "\f31c";
  3521. }
  3522. .ti-clock-hour-8:before {
  3523. content: "\f31d";
  3524. }
  3525. .ti-clock-hour-9:before {
  3526. content: "\f31e";
  3527. }
  3528. .ti-clock-off:before {
  3529. content: "\f0cf";
  3530. }
  3531. .ti-clock-pause:before {
  3532. content: "\f548";
  3533. }
  3534. .ti-clock-play:before {
  3535. content: "\f549";
  3536. }
  3537. .ti-clock-record:before {
  3538. content: "\f54a";
  3539. }
  3540. .ti-clock-stop:before {
  3541. content: "\f54b";
  3542. }
  3543. .ti-clothes-rack:before {
  3544. content: "\f285";
  3545. }
  3546. .ti-clothes-rack-off:before {
  3547. content: "\f3d6";
  3548. }
  3549. .ti-cloud:before {
  3550. content: "\ea76";
  3551. }
  3552. .ti-cloud-computing:before {
  3553. content: "\f1d0";
  3554. }
  3555. .ti-cloud-data-connection:before {
  3556. content: "\f1d1";
  3557. }
  3558. .ti-cloud-download:before {
  3559. content: "\ea71";
  3560. }
  3561. .ti-cloud-filled:before {
  3562. content: "\f673";
  3563. }
  3564. .ti-cloud-fog:before {
  3565. content: "\ecd9";
  3566. }
  3567. .ti-cloud-lock:before {
  3568. content: "\efdb";
  3569. }
  3570. .ti-cloud-lock-open:before {
  3571. content: "\efda";
  3572. }
  3573. .ti-cloud-off:before {
  3574. content: "\ed3e";
  3575. }
  3576. .ti-cloud-rain:before {
  3577. content: "\ea72";
  3578. }
  3579. .ti-cloud-snow:before {
  3580. content: "\ea73";
  3581. }
  3582. .ti-cloud-storm:before {
  3583. content: "\ea74";
  3584. }
  3585. .ti-cloud-upload:before {
  3586. content: "\ea75";
  3587. }
  3588. .ti-clover:before {
  3589. content: "\f1ea";
  3590. }
  3591. .ti-clover-2:before {
  3592. content: "\f21e";
  3593. }
  3594. .ti-clubs:before {
  3595. content: "\eff4";
  3596. }
  3597. .ti-clubs-filled:before {
  3598. content: "\f674";
  3599. }
  3600. .ti-code:before {
  3601. content: "\ea77";
  3602. }
  3603. .ti-code-asterix:before {
  3604. content: "\f312";
  3605. }
  3606. .ti-code-circle:before {
  3607. content: "\f4ff";
  3608. }
  3609. .ti-code-circle-2:before {
  3610. content: "\f4fe";
  3611. }
  3612. .ti-code-dots:before {
  3613. content: "\f61a";
  3614. }
  3615. .ti-code-minus:before {
  3616. content: "\ee42";
  3617. }
  3618. .ti-code-off:before {
  3619. content: "\f0d0";
  3620. }
  3621. .ti-code-plus:before {
  3622. content: "\ee43";
  3623. }
  3624. .ti-coffee:before {
  3625. content: "\ef0e";
  3626. }
  3627. .ti-coffee-off:before {
  3628. content: "\f106";
  3629. }
  3630. .ti-coffin:before {
  3631. content: "\f579";
  3632. }
  3633. .ti-coin:before {
  3634. content: "\eb82";
  3635. }
  3636. .ti-coin-bitcoin:before {
  3637. content: "\f2be";
  3638. }
  3639. .ti-coin-euro:before {
  3640. content: "\f2bf";
  3641. }
  3642. .ti-coin-monero:before {
  3643. content: "\f4a0";
  3644. }
  3645. .ti-coin-off:before {
  3646. content: "\f0d1";
  3647. }
  3648. .ti-coin-pound:before {
  3649. content: "\f2c0";
  3650. }
  3651. .ti-coin-rupee:before {
  3652. content: "\f2c1";
  3653. }
  3654. .ti-coin-yen:before {
  3655. content: "\f2c2";
  3656. }
  3657. .ti-coin-yuan:before {
  3658. content: "\f2c3";
  3659. }
  3660. .ti-coins:before {
  3661. content: "\f65d";
  3662. }
  3663. .ti-color-filter:before {
  3664. content: "\f5a8";
  3665. }
  3666. .ti-color-picker:before {
  3667. content: "\ebe6";
  3668. }
  3669. .ti-color-picker-off:before {
  3670. content: "\f0d2";
  3671. }
  3672. .ti-color-swatch:before {
  3673. content: "\eb61";
  3674. }
  3675. .ti-color-swatch-off:before {
  3676. content: "\f0d3";
  3677. }
  3678. .ti-column-insert-left:before {
  3679. content: "\ee44";
  3680. }
  3681. .ti-column-insert-right:before {
  3682. content: "\ee45";
  3683. }
  3684. .ti-columns:before {
  3685. content: "\eb83";
  3686. }
  3687. .ti-columns-1:before {
  3688. content: "\f6d4";
  3689. }
  3690. .ti-columns-2:before {
  3691. content: "\f6d5";
  3692. }
  3693. .ti-columns-3:before {
  3694. content: "\f6d6";
  3695. }
  3696. .ti-columns-off:before {
  3697. content: "\f0d4";
  3698. }
  3699. .ti-comet:before {
  3700. content: "\ec76";
  3701. }
  3702. .ti-command:before {
  3703. content: "\ea78";
  3704. }
  3705. .ti-command-off:before {
  3706. content: "\f3d7";
  3707. }
  3708. .ti-compass:before {
  3709. content: "\ea79";
  3710. }
  3711. .ti-compass-off:before {
  3712. content: "\f0d5";
  3713. }
  3714. .ti-components:before {
  3715. content: "\efa5";
  3716. }
  3717. .ti-components-off:before {
  3718. content: "\f0d6";
  3719. }
  3720. .ti-cone:before {
  3721. content: "\efdd";
  3722. }
  3723. .ti-cone-2:before {
  3724. content: "\efdc";
  3725. }
  3726. .ti-cone-off:before {
  3727. content: "\f3d8";
  3728. }
  3729. .ti-confetti:before {
  3730. content: "\ee46";
  3731. }
  3732. .ti-confetti-off:before {
  3733. content: "\f3d9";
  3734. }
  3735. .ti-confucius:before {
  3736. content: "\f58a";
  3737. }
  3738. .ti-container:before {
  3739. content: "\ee47";
  3740. }
  3741. .ti-container-off:before {
  3742. content: "\f107";
  3743. }
  3744. .ti-contrast:before {
  3745. content: "\ec4e";
  3746. }
  3747. .ti-contrast-2:before {
  3748. content: "\efc7";
  3749. }
  3750. .ti-contrast-2-off:before {
  3751. content: "\f3da";
  3752. }
  3753. .ti-contrast-off:before {
  3754. content: "\f3db";
  3755. }
  3756. .ti-cooker:before {
  3757. content: "\f57a";
  3758. }
  3759. .ti-cookie:before {
  3760. content: "\ef0f";
  3761. }
  3762. .ti-cookie-man:before {
  3763. content: "\f4c4";
  3764. }
  3765. .ti-cookie-off:before {
  3766. content: "\f0d7";
  3767. }
  3768. .ti-copy:before {
  3769. content: "\ea7a";
  3770. }
  3771. .ti-copy-off:before {
  3772. content: "\f0d8";
  3773. }
  3774. .ti-copyleft:before {
  3775. content: "\ec3d";
  3776. }
  3777. .ti-copyleft-filled:before {
  3778. content: "\f73b";
  3779. }
  3780. .ti-copyleft-off:before {
  3781. content: "\f0d9";
  3782. }
  3783. .ti-copyright:before {
  3784. content: "\ea7b";
  3785. }
  3786. .ti-copyright-filled:before {
  3787. content: "\f73c";
  3788. }
  3789. .ti-copyright-off:before {
  3790. content: "\f0da";
  3791. }
  3792. .ti-corner-down-left:before {
  3793. content: "\ea7c";
  3794. }
  3795. .ti-corner-down-left-double:before {
  3796. content: "\ee48";
  3797. }
  3798. .ti-corner-down-right:before {
  3799. content: "\ea7d";
  3800. }
  3801. .ti-corner-down-right-double:before {
  3802. content: "\ee49";
  3803. }
  3804. .ti-corner-left-down:before {
  3805. content: "\ea7e";
  3806. }
  3807. .ti-corner-left-down-double:before {
  3808. content: "\ee4a";
  3809. }
  3810. .ti-corner-left-up:before {
  3811. content: "\ea7f";
  3812. }
  3813. .ti-corner-left-up-double:before {
  3814. content: "\ee4b";
  3815. }
  3816. .ti-corner-right-down:before {
  3817. content: "\ea80";
  3818. }
  3819. .ti-corner-right-down-double:before {
  3820. content: "\ee4c";
  3821. }
  3822. .ti-corner-right-up:before {
  3823. content: "\ea81";
  3824. }
  3825. .ti-corner-right-up-double:before {
  3826. content: "\ee4d";
  3827. }
  3828. .ti-corner-up-left:before {
  3829. content: "\ea82";
  3830. }
  3831. .ti-corner-up-left-double:before {
  3832. content: "\ee4e";
  3833. }
  3834. .ti-corner-up-right:before {
  3835. content: "\ea83";
  3836. }
  3837. .ti-corner-up-right-double:before {
  3838. content: "\ee4f";
  3839. }
  3840. .ti-cpu:before {
  3841. content: "\ef8e";
  3842. }
  3843. .ti-cpu-2:before {
  3844. content: "\f075";
  3845. }
  3846. .ti-cpu-off:before {
  3847. content: "\f108";
  3848. }
  3849. .ti-crane:before {
  3850. content: "\ef27";
  3851. }
  3852. .ti-crane-off:before {
  3853. content: "\f109";
  3854. }
  3855. .ti-creative-commons:before {
  3856. content: "\efb3";
  3857. }
  3858. .ti-creative-commons-by:before {
  3859. content: "\f21f";
  3860. }
  3861. .ti-creative-commons-nc:before {
  3862. content: "\f220";
  3863. }
  3864. .ti-creative-commons-nd:before {
  3865. content: "\f221";
  3866. }
  3867. .ti-creative-commons-off:before {
  3868. content: "\f10a";
  3869. }
  3870. .ti-creative-commons-sa:before {
  3871. content: "\f222";
  3872. }
  3873. .ti-creative-commons-zero:before {
  3874. content: "\f223";
  3875. }
  3876. .ti-credit-card:before {
  3877. content: "\ea84";
  3878. }
  3879. .ti-credit-card-off:before {
  3880. content: "\ed11";
  3881. }
  3882. .ti-cricket:before {
  3883. content: "\f09a";
  3884. }
  3885. .ti-crop:before {
  3886. content: "\ea85";
  3887. }
  3888. .ti-cross:before {
  3889. content: "\ef8f";
  3890. }
  3891. .ti-cross-filled:before {
  3892. content: "\f675";
  3893. }
  3894. .ti-cross-off:before {
  3895. content: "\f10b";
  3896. }
  3897. .ti-crosshair:before {
  3898. content: "\ec3e";
  3899. }
  3900. .ti-crown:before {
  3901. content: "\ed12";
  3902. }
  3903. .ti-crown-off:before {
  3904. content: "\ee50";
  3905. }
  3906. .ti-crutches:before {
  3907. content: "\ef5b";
  3908. }
  3909. .ti-crutches-off:before {
  3910. content: "\f10c";
  3911. }
  3912. .ti-crystal-ball:before {
  3913. content: "\f57b";
  3914. }
  3915. .ti-csv:before {
  3916. content: "\f791";
  3917. }
  3918. .ti-cube-send:before {
  3919. content: "\f61b";
  3920. }
  3921. .ti-cube-unfolded:before {
  3922. content: "\f61c";
  3923. }
  3924. .ti-cup:before {
  3925. content: "\ef28";
  3926. }
  3927. .ti-cup-off:before {
  3928. content: "\f10d";
  3929. }
  3930. .ti-curling:before {
  3931. content: "\efc8";
  3932. }
  3933. .ti-curly-loop:before {
  3934. content: "\ecda";
  3935. }
  3936. .ti-currency:before {
  3937. content: "\efa6";
  3938. }
  3939. .ti-currency-afghani:before {
  3940. content: "\f65e";
  3941. }
  3942. .ti-currency-bahraini:before {
  3943. content: "\ee51";
  3944. }
  3945. .ti-currency-baht:before {
  3946. content: "\f08a";
  3947. }
  3948. .ti-currency-bitcoin:before {
  3949. content: "\ebab";
  3950. }
  3951. .ti-currency-cent:before {
  3952. content: "\ee53";
  3953. }
  3954. .ti-currency-dinar:before {
  3955. content: "\ee54";
  3956. }
  3957. .ti-currency-dirham:before {
  3958. content: "\ee55";
  3959. }
  3960. .ti-currency-dogecoin:before {
  3961. content: "\ef4b";
  3962. }
  3963. .ti-currency-dollar:before {
  3964. content: "\eb84";
  3965. }
  3966. .ti-currency-dollar-australian:before {
  3967. content: "\ee56";
  3968. }
  3969. .ti-currency-dollar-brunei:before {
  3970. content: "\f36c";
  3971. }
  3972. .ti-currency-dollar-canadian:before {
  3973. content: "\ee57";
  3974. }
  3975. .ti-currency-dollar-guyanese:before {
  3976. content: "\f36d";
  3977. }
  3978. .ti-currency-dollar-off:before {
  3979. content: "\f3dc";
  3980. }
  3981. .ti-currency-dollar-singapore:before {
  3982. content: "\ee58";
  3983. }
  3984. .ti-currency-dollar-zimbabwean:before {
  3985. content: "\f36e";
  3986. }
  3987. .ti-currency-dong:before {
  3988. content: "\f36f";
  3989. }
  3990. .ti-currency-dram:before {
  3991. content: "\f370";
  3992. }
  3993. .ti-currency-ethereum:before {
  3994. content: "\ee59";
  3995. }
  3996. .ti-currency-euro:before {
  3997. content: "\eb85";
  3998. }
  3999. .ti-currency-euro-off:before {
  4000. content: "\f3dd";
  4001. }
  4002. .ti-currency-forint:before {
  4003. content: "\ee5a";
  4004. }
  4005. .ti-currency-frank:before {
  4006. content: "\ee5b";
  4007. }
  4008. .ti-currency-guarani:before {
  4009. content: "\f371";
  4010. }
  4011. .ti-currency-hryvnia:before {
  4012. content: "\f372";
  4013. }
  4014. .ti-currency-kip:before {
  4015. content: "\f373";
  4016. }
  4017. .ti-currency-krone-czech:before {
  4018. content: "\ee5c";
  4019. }
  4020. .ti-currency-krone-danish:before {
  4021. content: "\ee5d";
  4022. }
  4023. .ti-currency-krone-swedish:before {
  4024. content: "\ee5e";
  4025. }
  4026. .ti-currency-lari:before {
  4027. content: "\f374";
  4028. }
  4029. .ti-currency-leu:before {
  4030. content: "\ee5f";
  4031. }
  4032. .ti-currency-lira:before {
  4033. content: "\ee60";
  4034. }
  4035. .ti-currency-litecoin:before {
  4036. content: "\ee61";
  4037. }
  4038. .ti-currency-lyd:before {
  4039. content: "\f375";
  4040. }
  4041. .ti-currency-manat:before {
  4042. content: "\f376";
  4043. }
  4044. .ti-currency-monero:before {
  4045. content: "\f377";
  4046. }
  4047. .ti-currency-naira:before {
  4048. content: "\ee62";
  4049. }
  4050. .ti-currency-off:before {
  4051. content: "\f3de";
  4052. }
  4053. .ti-currency-paanga:before {
  4054. content: "\f378";
  4055. }
  4056. .ti-currency-peso:before {
  4057. content: "\f65f";
  4058. }
  4059. .ti-currency-pound:before {
  4060. content: "\ebac";
  4061. }
  4062. .ti-currency-pound-off:before {
  4063. content: "\f3df";
  4064. }
  4065. .ti-currency-quetzal:before {
  4066. content: "\f379";
  4067. }
  4068. .ti-currency-real:before {
  4069. content: "\ee63";
  4070. }
  4071. .ti-currency-renminbi:before {
  4072. content: "\ee64";
  4073. }
  4074. .ti-currency-ripple:before {
  4075. content: "\ee65";
  4076. }
  4077. .ti-currency-riyal:before {
  4078. content: "\ee66";
  4079. }
  4080. .ti-currency-rubel:before {
  4081. content: "\ee67";
  4082. }
  4083. .ti-currency-rufiyaa:before {
  4084. content: "\f37a";
  4085. }
  4086. .ti-currency-rupee:before {
  4087. content: "\ebad";
  4088. }
  4089. .ti-currency-rupee-nepalese:before {
  4090. content: "\f37b";
  4091. }
  4092. .ti-currency-shekel:before {
  4093. content: "\ee68";
  4094. }
  4095. .ti-currency-solana:before {
  4096. content: "\f4a1";
  4097. }
  4098. .ti-currency-som:before {
  4099. content: "\f37c";
  4100. }
  4101. .ti-currency-taka:before {
  4102. content: "\ee69";
  4103. }
  4104. .ti-currency-tenge:before {
  4105. content: "\f37d";
  4106. }
  4107. .ti-currency-tugrik:before {
  4108. content: "\ee6a";
  4109. }
  4110. .ti-currency-won:before {
  4111. content: "\ee6b";
  4112. }
  4113. .ti-currency-yen:before {
  4114. content: "\ebae";
  4115. }
  4116. .ti-currency-yen-off:before {
  4117. content: "\f3e0";
  4118. }
  4119. .ti-currency-yuan:before {
  4120. content: "\f29a";
  4121. }
  4122. .ti-currency-zloty:before {
  4123. content: "\ee6c";
  4124. }
  4125. .ti-current-location:before {
  4126. content: "\ecef";
  4127. }
  4128. .ti-current-location-off:before {
  4129. content: "\f10e";
  4130. }
  4131. .ti-cursor-off:before {
  4132. content: "\f10f";
  4133. }
  4134. .ti-cursor-text:before {
  4135. content: "\ee6d";
  4136. }
  4137. .ti-cut:before {
  4138. content: "\ea86";
  4139. }
  4140. .ti-cylinder:before {
  4141. content: "\f54c";
  4142. }
  4143. .ti-dashboard:before {
  4144. content: "\ea87";
  4145. }
  4146. .ti-dashboard-off:before {
  4147. content: "\f3e1";
  4148. }
  4149. .ti-database:before {
  4150. content: "\ea88";
  4151. }
  4152. .ti-database-export:before {
  4153. content: "\ee6e";
  4154. }
  4155. .ti-database-import:before {
  4156. content: "\ee6f";
  4157. }
  4158. .ti-database-off:before {
  4159. content: "\ee70";
  4160. }
  4161. .ti-deer:before {
  4162. content: "\f4c5";
  4163. }
  4164. .ti-delta:before {
  4165. content: "\f53c";
  4166. }
  4167. .ti-dental:before {
  4168. content: "\f025";
  4169. }
  4170. .ti-dental-broken:before {
  4171. content: "\f286";
  4172. }
  4173. .ti-dental-off:before {
  4174. content: "\f110";
  4175. }
  4176. .ti-details:before {
  4177. content: "\ee71";
  4178. }
  4179. .ti-details-off:before {
  4180. content: "\f3e2";
  4181. }
  4182. .ti-device-airpods:before {
  4183. content: "\f5a9";
  4184. }
  4185. .ti-device-airpods-case:before {
  4186. content: "\f646";
  4187. }
  4188. .ti-device-analytics:before {
  4189. content: "\ee72";
  4190. }
  4191. .ti-device-audio-tape:before {
  4192. content: "\ee73";
  4193. }
  4194. .ti-device-camera-phone:before {
  4195. content: "\f233";
  4196. }
  4197. .ti-device-cctv:before {
  4198. content: "\ee74";
  4199. }
  4200. .ti-device-cctv-off:before {
  4201. content: "\f3e3";
  4202. }
  4203. .ti-device-computer-camera:before {
  4204. content: "\ee76";
  4205. }
  4206. .ti-device-computer-camera-off:before {
  4207. content: "\ee75";
  4208. }
  4209. .ti-device-desktop:before {
  4210. content: "\ea89";
  4211. }
  4212. .ti-device-desktop-analytics:before {
  4213. content: "\ee77";
  4214. }
  4215. .ti-device-desktop-off:before {
  4216. content: "\ee78";
  4217. }
  4218. .ti-device-floppy:before {
  4219. content: "\eb62";
  4220. }
  4221. .ti-device-gamepad:before {
  4222. content: "\eb63";
  4223. }
  4224. .ti-device-gamepad-2:before {
  4225. content: "\f1d2";
  4226. }
  4227. .ti-device-heart-monitor:before {
  4228. content: "\f060";
  4229. }
  4230. .ti-device-ipad:before {
  4231. content: "\f648";
  4232. }
  4233. .ti-device-ipad-horizontal:before {
  4234. content: "\f647";
  4235. }
  4236. .ti-device-landline-phone:before {
  4237. content: "\f649";
  4238. }
  4239. .ti-device-laptop:before {
  4240. content: "\eb64";
  4241. }
  4242. .ti-device-laptop-off:before {
  4243. content: "\f061";
  4244. }
  4245. .ti-device-mobile:before {
  4246. content: "\ea8a";
  4247. }
  4248. .ti-device-mobile-charging:before {
  4249. content: "\f224";
  4250. }
  4251. .ti-device-mobile-message:before {
  4252. content: "\ee79";
  4253. }
  4254. .ti-device-mobile-off:before {
  4255. content: "\f062";
  4256. }
  4257. .ti-device-mobile-rotated:before {
  4258. content: "\ecdb";
  4259. }
  4260. .ti-device-mobile-vibration:before {
  4261. content: "\eb86";
  4262. }
  4263. .ti-device-nintendo:before {
  4264. content: "\f026";
  4265. }
  4266. .ti-device-nintendo-off:before {
  4267. content: "\f111";
  4268. }
  4269. .ti-device-remote:before {
  4270. content: "\f792";
  4271. }
  4272. .ti-device-sd-card:before {
  4273. content: "\f384";
  4274. }
  4275. .ti-device-sim:before {
  4276. content: "\f4b2";
  4277. }
  4278. .ti-device-sim-1:before {
  4279. content: "\f4af";
  4280. }
  4281. .ti-device-sim-2:before {
  4282. content: "\f4b0";
  4283. }
  4284. .ti-device-sim-3:before {
  4285. content: "\f4b1";
  4286. }
  4287. .ti-device-speaker:before {
  4288. content: "\ea8b";
  4289. }
  4290. .ti-device-speaker-off:before {
  4291. content: "\f112";
  4292. }
  4293. .ti-device-tablet:before {
  4294. content: "\ea8c";
  4295. }
  4296. .ti-device-tablet-off:before {
  4297. content: "\f063";
  4298. }
  4299. .ti-device-tv:before {
  4300. content: "\ea8d";
  4301. }
  4302. .ti-device-tv-off:before {
  4303. content: "\f064";
  4304. }
  4305. .ti-device-tv-old:before {
  4306. content: "\f1d3";
  4307. }
  4308. .ti-device-watch:before {
  4309. content: "\ebf9";
  4310. }
  4311. .ti-device-watch-off:before {
  4312. content: "\f065";
  4313. }
  4314. .ti-device-watch-stats:before {
  4315. content: "\ef7d";
  4316. }
  4317. .ti-device-watch-stats-2:before {
  4318. content: "\ef7c";
  4319. }
  4320. .ti-devices:before {
  4321. content: "\eb87";
  4322. }
  4323. .ti-devices-2:before {
  4324. content: "\ed29";
  4325. }
  4326. .ti-devices-off:before {
  4327. content: "\f3e4";
  4328. }
  4329. .ti-devices-pc:before {
  4330. content: "\ee7a";
  4331. }
  4332. .ti-devices-pc-off:before {
  4333. content: "\f113";
  4334. }
  4335. .ti-dialpad:before {
  4336. content: "\f067";
  4337. }
  4338. .ti-dialpad-off:before {
  4339. content: "\f114";
  4340. }
  4341. .ti-diamond:before {
  4342. content: "\eb65";
  4343. }
  4344. .ti-diamond-filled:before {
  4345. content: "\f73d";
  4346. }
  4347. .ti-diamond-off:before {
  4348. content: "\f115";
  4349. }
  4350. .ti-diamonds:before {
  4351. content: "\eff5";
  4352. }
  4353. .ti-diamonds-filled:before {
  4354. content: "\f676";
  4355. }
  4356. .ti-dice:before {
  4357. content: "\eb66";
  4358. }
  4359. .ti-dice-1:before {
  4360. content: "\f08b";
  4361. }
  4362. .ti-dice-1-filled:before {
  4363. content: "\f73e";
  4364. }
  4365. .ti-dice-2:before {
  4366. content: "\f08c";
  4367. }
  4368. .ti-dice-2-filled:before {
  4369. content: "\f73f";
  4370. }
  4371. .ti-dice-3:before {
  4372. content: "\f08d";
  4373. }
  4374. .ti-dice-3-filled:before {
  4375. content: "\f740";
  4376. }
  4377. .ti-dice-4:before {
  4378. content: "\f08e";
  4379. }
  4380. .ti-dice-4-filled:before {
  4381. content: "\f741";
  4382. }
  4383. .ti-dice-5:before {
  4384. content: "\f08f";
  4385. }
  4386. .ti-dice-5-filled:before {
  4387. content: "\f742";
  4388. }
  4389. .ti-dice-6:before {
  4390. content: "\f090";
  4391. }
  4392. .ti-dice-6-filled:before {
  4393. content: "\f743";
  4394. }
  4395. .ti-dice-filled:before {
  4396. content: "\f744";
  4397. }
  4398. .ti-dimensions:before {
  4399. content: "\ee7b";
  4400. }
  4401. .ti-direction:before {
  4402. content: "\ebfb";
  4403. }
  4404. .ti-direction-horizontal:before {
  4405. content: "\ebfa";
  4406. }
  4407. .ti-direction-sign:before {
  4408. content: "\f1f7";
  4409. }
  4410. .ti-direction-sign-filled:before {
  4411. content: "\f745";
  4412. }
  4413. .ti-direction-sign-off:before {
  4414. content: "\f3e5";
  4415. }
  4416. .ti-directions:before {
  4417. content: "\ea8e";
  4418. }
  4419. .ti-directions-off:before {
  4420. content: "\f116";
  4421. }
  4422. .ti-disabled:before {
  4423. content: "\ea8f";
  4424. }
  4425. .ti-disabled-2:before {
  4426. content: "\ebaf";
  4427. }
  4428. .ti-disabled-off:before {
  4429. content: "\f117";
  4430. }
  4431. .ti-disc:before {
  4432. content: "\ea90";
  4433. }
  4434. .ti-disc-golf:before {
  4435. content: "\f385";
  4436. }
  4437. .ti-disc-off:before {
  4438. content: "\f118";
  4439. }
  4440. .ti-discount:before {
  4441. content: "\ebbd";
  4442. }
  4443. .ti-discount-2:before {
  4444. content: "\ee7c";
  4445. }
  4446. .ti-discount-2-off:before {
  4447. content: "\f3e6";
  4448. }
  4449. .ti-discount-check:before {
  4450. content: "\f1f8";
  4451. }
  4452. .ti-discount-check-filled:before {
  4453. content: "\f746";
  4454. }
  4455. .ti-discount-off:before {
  4456. content: "\f3e7";
  4457. }
  4458. .ti-divide:before {
  4459. content: "\ed5c";
  4460. }
  4461. .ti-dna:before {
  4462. content: "\ee7d";
  4463. }
  4464. .ti-dna-2:before {
  4465. content: "\ef5c";
  4466. }
  4467. .ti-dna-2-off:before {
  4468. content: "\f119";
  4469. }
  4470. .ti-dna-off:before {
  4471. content: "\f11a";
  4472. }
  4473. .ti-dog:before {
  4474. content: "\f660";
  4475. }
  4476. .ti-dog-bowl:before {
  4477. content: "\ef29";
  4478. }
  4479. .ti-door:before {
  4480. content: "\ef4e";
  4481. }
  4482. .ti-door-enter:before {
  4483. content: "\ef4c";
  4484. }
  4485. .ti-door-exit:before {
  4486. content: "\ef4d";
  4487. }
  4488. .ti-door-off:before {
  4489. content: "\f11b";
  4490. }
  4491. .ti-dots:before {
  4492. content: "\ea95";
  4493. }
  4494. .ti-dots-circle-horizontal:before {
  4495. content: "\ea91";
  4496. }
  4497. .ti-dots-diagonal:before {
  4498. content: "\ea93";
  4499. }
  4500. .ti-dots-diagonal-2:before {
  4501. content: "\ea92";
  4502. }
  4503. .ti-dots-vertical:before {
  4504. content: "\ea94";
  4505. }
  4506. .ti-download:before {
  4507. content: "\ea96";
  4508. }
  4509. .ti-download-off:before {
  4510. content: "\f11c";
  4511. }
  4512. .ti-drag-drop:before {
  4513. content: "\eb89";
  4514. }
  4515. .ti-drag-drop-2:before {
  4516. content: "\eb88";
  4517. }
  4518. .ti-drone:before {
  4519. content: "\ed79";
  4520. }
  4521. .ti-drone-off:before {
  4522. content: "\ee7e";
  4523. }
  4524. .ti-drop-circle:before {
  4525. content: "\efde";
  4526. }
  4527. .ti-droplet:before {
  4528. content: "\ea97";
  4529. }
  4530. .ti-droplet-filled:before {
  4531. content: "\ee80";
  4532. }
  4533. .ti-droplet-filled-2:before {
  4534. content: "\ee7f";
  4535. }
  4536. .ti-droplet-half:before {
  4537. content: "\ee82";
  4538. }
  4539. .ti-droplet-half-2:before {
  4540. content: "\ee81";
  4541. }
  4542. .ti-droplet-half-filled:before {
  4543. content: "\f6c5";
  4544. }
  4545. .ti-droplet-off:before {
  4546. content: "\ee83";
  4547. }
  4548. .ti-e-passport:before {
  4549. content: "\f4df";
  4550. }
  4551. .ti-ear:before {
  4552. content: "\ebce";
  4553. }
  4554. .ti-ear-off:before {
  4555. content: "\ee84";
  4556. }
  4557. .ti-ease-in:before {
  4558. content: "\f573";
  4559. }
  4560. .ti-ease-in-control-point:before {
  4561. content: "\f570";
  4562. }
  4563. .ti-ease-in-out:before {
  4564. content: "\f572";
  4565. }
  4566. .ti-ease-in-out-control-points:before {
  4567. content: "\f571";
  4568. }
  4569. .ti-ease-out:before {
  4570. content: "\f575";
  4571. }
  4572. .ti-ease-out-control-point:before {
  4573. content: "\f574";
  4574. }
  4575. .ti-edit:before {
  4576. content: "\ea98";
  4577. }
  4578. .ti-edit-circle:before {
  4579. content: "\ee85";
  4580. }
  4581. .ti-edit-circle-off:before {
  4582. content: "\f11d";
  4583. }
  4584. .ti-edit-off:before {
  4585. content: "\f11e";
  4586. }
  4587. .ti-egg:before {
  4588. content: "\eb8a";
  4589. }
  4590. .ti-egg-cracked:before {
  4591. content: "\f2d6";
  4592. }
  4593. .ti-egg-filled:before {
  4594. content: "\f678";
  4595. }
  4596. .ti-egg-fried:before {
  4597. content: "\f386";
  4598. }
  4599. .ti-egg-off:before {
  4600. content: "\f11f";
  4601. }
  4602. .ti-eggs:before {
  4603. content: "\f500";
  4604. }
  4605. .ti-elevator:before {
  4606. content: "\efdf";
  4607. }
  4608. .ti-elevator-off:before {
  4609. content: "\f3e8";
  4610. }
  4611. .ti-emergency-bed:before {
  4612. content: "\ef5d";
  4613. }
  4614. .ti-empathize:before {
  4615. content: "\f29b";
  4616. }
  4617. .ti-empathize-off:before {
  4618. content: "\f3e9";
  4619. }
  4620. .ti-emphasis:before {
  4621. content: "\ebcf";
  4622. }
  4623. .ti-engine:before {
  4624. content: "\ef7e";
  4625. }
  4626. .ti-engine-off:before {
  4627. content: "\f120";
  4628. }
  4629. .ti-equal:before {
  4630. content: "\ee87";
  4631. }
  4632. .ti-equal-double:before {
  4633. content: "\f4e1";
  4634. }
  4635. .ti-equal-not:before {
  4636. content: "\ee86";
  4637. }
  4638. .ti-eraser:before {
  4639. content: "\eb8b";
  4640. }
  4641. .ti-eraser-off:before {
  4642. content: "\f121";
  4643. }
  4644. .ti-error-404:before {
  4645. content: "\f027";
  4646. }
  4647. .ti-error-404-off:before {
  4648. content: "\f122";
  4649. }
  4650. .ti-exchange:before {
  4651. content: "\ebe7";
  4652. }
  4653. .ti-exchange-off:before {
  4654. content: "\f123";
  4655. }
  4656. .ti-exclamation-circle:before {
  4657. content: "\f634";
  4658. }
  4659. .ti-exclamation-mark:before {
  4660. content: "\efb4";
  4661. }
  4662. .ti-exclamation-mark-off:before {
  4663. content: "\f124";
  4664. }
  4665. .ti-explicit:before {
  4666. content: "\f256";
  4667. }
  4668. .ti-explicit-off:before {
  4669. content: "\f3ea";
  4670. }
  4671. .ti-exposure:before {
  4672. content: "\eb8c";
  4673. }
  4674. .ti-exposure-0:before {
  4675. content: "\f29c";
  4676. }
  4677. .ti-exposure-minus-1:before {
  4678. content: "\f29d";
  4679. }
  4680. .ti-exposure-minus-2:before {
  4681. content: "\f29e";
  4682. }
  4683. .ti-exposure-off:before {
  4684. content: "\f3eb";
  4685. }
  4686. .ti-exposure-plus-1:before {
  4687. content: "\f29f";
  4688. }
  4689. .ti-exposure-plus-2:before {
  4690. content: "\f2a0";
  4691. }
  4692. .ti-external-link:before {
  4693. content: "\ea99";
  4694. }
  4695. .ti-external-link-off:before {
  4696. content: "\f125";
  4697. }
  4698. .ti-eye:before {
  4699. content: "\ea9a";
  4700. }
  4701. .ti-eye-check:before {
  4702. content: "\ee88";
  4703. }
  4704. .ti-eye-filled:before {
  4705. content: "\f679";
  4706. }
  4707. .ti-eye-off:before {
  4708. content: "\ecf0";
  4709. }
  4710. .ti-eye-table:before {
  4711. content: "\ef5e";
  4712. }
  4713. .ti-eyeglass:before {
  4714. content: "\ee8a";
  4715. }
  4716. .ti-eyeglass-2:before {
  4717. content: "\ee89";
  4718. }
  4719. .ti-eyeglass-off:before {
  4720. content: "\f126";
  4721. }
  4722. .ti-face-id:before {
  4723. content: "\ea9b";
  4724. }
  4725. .ti-face-id-error:before {
  4726. content: "\efa7";
  4727. }
  4728. .ti-face-mask:before {
  4729. content: "\efb5";
  4730. }
  4731. .ti-face-mask-off:before {
  4732. content: "\f127";
  4733. }
  4734. .ti-fall:before {
  4735. content: "\ecb9";
  4736. }
  4737. .ti-feather:before {
  4738. content: "\ee8b";
  4739. }
  4740. .ti-feather-off:before {
  4741. content: "\f128";
  4742. }
  4743. .ti-fence:before {
  4744. content: "\ef2a";
  4745. }
  4746. .ti-fence-off:before {
  4747. content: "\f129";
  4748. }
  4749. .ti-fidget-spinner:before {
  4750. content: "\f068";
  4751. }
  4752. .ti-file:before {
  4753. content: "\eaa4";
  4754. }
  4755. .ti-file-3d:before {
  4756. content: "\f032";
  4757. }
  4758. .ti-file-alert:before {
  4759. content: "\ede6";
  4760. }
  4761. .ti-file-analytics:before {
  4762. content: "\ede7";
  4763. }
  4764. .ti-file-arrow-left:before {
  4765. content: "\f033";
  4766. }
  4767. .ti-file-arrow-right:before {
  4768. content: "\f034";
  4769. }
  4770. .ti-file-barcode:before {
  4771. content: "\f035";
  4772. }
  4773. .ti-file-broken:before {
  4774. content: "\f501";
  4775. }
  4776. .ti-file-certificate:before {
  4777. content: "\ed4d";
  4778. }
  4779. .ti-file-chart:before {
  4780. content: "\f036";
  4781. }
  4782. .ti-file-check:before {
  4783. content: "\ea9c";
  4784. }
  4785. .ti-file-code:before {
  4786. content: "\ebd0";
  4787. }
  4788. .ti-file-code-2:before {
  4789. content: "\ede8";
  4790. }
  4791. .ti-file-database:before {
  4792. content: "\f037";
  4793. }
  4794. .ti-file-delta:before {
  4795. content: "\f53d";
  4796. }
  4797. .ti-file-description:before {
  4798. content: "\f028";
  4799. }
  4800. .ti-file-diff:before {
  4801. content: "\ecf1";
  4802. }
  4803. .ti-file-digit:before {
  4804. content: "\efa8";
  4805. }
  4806. .ti-file-dislike:before {
  4807. content: "\ed2a";
  4808. }
  4809. .ti-file-dollar:before {
  4810. content: "\efe0";
  4811. }
  4812. .ti-file-dots:before {
  4813. content: "\f038";
  4814. }
  4815. .ti-file-download:before {
  4816. content: "\ea9d";
  4817. }
  4818. .ti-file-euro:before {
  4819. content: "\efe1";
  4820. }
  4821. .ti-file-export:before {
  4822. content: "\ede9";
  4823. }
  4824. .ti-file-filled:before {
  4825. content: "\f747";
  4826. }
  4827. .ti-file-function:before {
  4828. content: "\f53e";
  4829. }
  4830. .ti-file-horizontal:before {
  4831. content: "\ebb0";
  4832. }
  4833. .ti-file-import:before {
  4834. content: "\edea";
  4835. }
  4836. .ti-file-infinity:before {
  4837. content: "\f502";
  4838. }
  4839. .ti-file-info:before {
  4840. content: "\edec";
  4841. }
  4842. .ti-file-invoice:before {
  4843. content: "\eb67";
  4844. }
  4845. .ti-file-lambda:before {
  4846. content: "\f53f";
  4847. }
  4848. .ti-file-like:before {
  4849. content: "\ed2b";
  4850. }
  4851. .ti-file-minus:before {
  4852. content: "\ea9e";
  4853. }
  4854. .ti-file-music:before {
  4855. content: "\ea9f";
  4856. }
  4857. .ti-file-off:before {
  4858. content: "\ecf2";
  4859. }
  4860. .ti-file-orientation:before {
  4861. content: "\f2a1";
  4862. }
  4863. .ti-file-pencil:before {
  4864. content: "\f039";
  4865. }
  4866. .ti-file-percent:before {
  4867. content: "\f540";
  4868. }
  4869. .ti-file-phone:before {
  4870. content: "\ecdc";
  4871. }
  4872. .ti-file-plus:before {
  4873. content: "\eaa0";
  4874. }
  4875. .ti-file-power:before {
  4876. content: "\f03a";
  4877. }
  4878. .ti-file-report:before {
  4879. content: "\eded";
  4880. }
  4881. .ti-file-rss:before {
  4882. content: "\f03b";
  4883. }
  4884. .ti-file-scissors:before {
  4885. content: "\f03c";
  4886. }
  4887. .ti-file-search:before {
  4888. content: "\ed5d";
  4889. }
  4890. .ti-file-settings:before {
  4891. content: "\f029";
  4892. }
  4893. .ti-file-shredder:before {
  4894. content: "\eaa1";
  4895. }
  4896. .ti-file-signal:before {
  4897. content: "\f03d";
  4898. }
  4899. .ti-file-spreadsheet:before {
  4900. content: "\f03e";
  4901. }
  4902. .ti-file-stack:before {
  4903. content: "\f503";
  4904. }
  4905. .ti-file-star:before {
  4906. content: "\f03f";
  4907. }
  4908. .ti-file-symlink:before {
  4909. content: "\ed53";
  4910. }
  4911. .ti-file-text:before {
  4912. content: "\eaa2";
  4913. }
  4914. .ti-file-time:before {
  4915. content: "\f040";
  4916. }
  4917. .ti-file-typography:before {
  4918. content: "\f041";
  4919. }
  4920. .ti-file-unknown:before {
  4921. content: "\f042";
  4922. }
  4923. .ti-file-upload:before {
  4924. content: "\ec91";
  4925. }
  4926. .ti-file-vector:before {
  4927. content: "\f043";
  4928. }
  4929. .ti-file-x:before {
  4930. content: "\eaa3";
  4931. }
  4932. .ti-file-x-filled:before {
  4933. content: "\f748";
  4934. }
  4935. .ti-file-zip:before {
  4936. content: "\ed4e";
  4937. }
  4938. .ti-files:before {
  4939. content: "\edef";
  4940. }
  4941. .ti-files-off:before {
  4942. content: "\edee";
  4943. }
  4944. .ti-filter:before {
  4945. content: "\eaa5";
  4946. }
  4947. .ti-filter-off:before {
  4948. content: "\ed2c";
  4949. }
  4950. .ti-filters:before {
  4951. content: "\f793";
  4952. }
  4953. .ti-fingerprint:before {
  4954. content: "\ebd1";
  4955. }
  4956. .ti-fingerprint-off:before {
  4957. content: "\f12a";
  4958. }
  4959. .ti-fire-hydrant:before {
  4960. content: "\f3a9";
  4961. }
  4962. .ti-fire-hydrant-off:before {
  4963. content: "\f3ec";
  4964. }
  4965. .ti-firetruck:before {
  4966. content: "\ebe8";
  4967. }
  4968. .ti-first-aid-kit:before {
  4969. content: "\ef5f";
  4970. }
  4971. .ti-first-aid-kit-off:before {
  4972. content: "\f3ed";
  4973. }
  4974. .ti-fish:before {
  4975. content: "\ef2b";
  4976. }
  4977. .ti-fish-bone:before {
  4978. content: "\f287";
  4979. }
  4980. .ti-fish-christianity:before {
  4981. content: "\f58b";
  4982. }
  4983. .ti-fish-hook:before {
  4984. content: "\f1f9";
  4985. }
  4986. .ti-fish-hook-off:before {
  4987. content: "\f3ee";
  4988. }
  4989. .ti-fish-off:before {
  4990. content: "\f12b";
  4991. }
  4992. .ti-flag:before {
  4993. content: "\eaa6";
  4994. }
  4995. .ti-flag-2:before {
  4996. content: "\ee8c";
  4997. }
  4998. .ti-flag-2-filled:before {
  4999. content: "\f707";
  5000. }
  5001. .ti-flag-2-off:before {
  5002. content: "\f12c";
  5003. }
  5004. .ti-flag-3:before {
  5005. content: "\ee8d";
  5006. }
  5007. .ti-flag-3-filled:before {
  5008. content: "\f708";
  5009. }
  5010. .ti-flag-filled:before {
  5011. content: "\f67a";
  5012. }
  5013. .ti-flag-off:before {
  5014. content: "\f12d";
  5015. }
  5016. .ti-flame:before {
  5017. content: "\ec2c";
  5018. }
  5019. .ti-flame-off:before {
  5020. content: "\f12e";
  5021. }
  5022. .ti-flare:before {
  5023. content: "\ee8e";
  5024. }
  5025. .ti-flask:before {
  5026. content: "\ebd2";
  5027. }
  5028. .ti-flask-2:before {
  5029. content: "\ef60";
  5030. }
  5031. .ti-flask-2-off:before {
  5032. content: "\f12f";
  5033. }
  5034. .ti-flask-off:before {
  5035. content: "\f130";
  5036. }
  5037. .ti-flip-flops:before {
  5038. content: "\f564";
  5039. }
  5040. .ti-flip-horizontal:before {
  5041. content: "\eaa7";
  5042. }
  5043. .ti-flip-vertical:before {
  5044. content: "\eaa8";
  5045. }
  5046. .ti-float-center:before {
  5047. content: "\ebb1";
  5048. }
  5049. .ti-float-left:before {
  5050. content: "\ebb2";
  5051. }
  5052. .ti-float-none:before {
  5053. content: "\ed13";
  5054. }
  5055. .ti-float-right:before {
  5056. content: "\ebb3";
  5057. }
  5058. .ti-flower:before {
  5059. content: "\eff6";
  5060. }
  5061. .ti-flower-off:before {
  5062. content: "\f131";
  5063. }
  5064. .ti-focus:before {
  5065. content: "\eb8d";
  5066. }
  5067. .ti-focus-2:before {
  5068. content: "\ebd3";
  5069. }
  5070. .ti-focus-centered:before {
  5071. content: "\f02a";
  5072. }
  5073. .ti-fold:before {
  5074. content: "\ed56";
  5075. }
  5076. .ti-fold-down:before {
  5077. content: "\ed54";
  5078. }
  5079. .ti-fold-up:before {
  5080. content: "\ed55";
  5081. }
  5082. .ti-folder:before {
  5083. content: "\eaad";
  5084. }
  5085. .ti-folder-filled:before {
  5086. content: "\f749";
  5087. }
  5088. .ti-folder-minus:before {
  5089. content: "\eaaa";
  5090. }
  5091. .ti-folder-off:before {
  5092. content: "\ed14";
  5093. }
  5094. .ti-folder-plus:before {
  5095. content: "\eaab";
  5096. }
  5097. .ti-folder-x:before {
  5098. content: "\eaac";
  5099. }
  5100. .ti-folders:before {
  5101. content: "\eaae";
  5102. }
  5103. .ti-folders-off:before {
  5104. content: "\f133";
  5105. }
  5106. .ti-forbid:before {
  5107. content: "\ebd5";
  5108. }
  5109. .ti-forbid-2:before {
  5110. content: "\ebd4";
  5111. }
  5112. .ti-forklift:before {
  5113. content: "\ebe9";
  5114. }
  5115. .ti-forms:before {
  5116. content: "\ee8f";
  5117. }
  5118. .ti-fountain:before {
  5119. content: "\f09b";
  5120. }
  5121. .ti-fountain-off:before {
  5122. content: "\f134";
  5123. }
  5124. .ti-frame:before {
  5125. content: "\eaaf";
  5126. }
  5127. .ti-frame-off:before {
  5128. content: "\f135";
  5129. }
  5130. .ti-free-rights:before {
  5131. content: "\efb6";
  5132. }
  5133. .ti-fridge:before {
  5134. content: "\f1fa";
  5135. }
  5136. .ti-fridge-off:before {
  5137. content: "\f3ef";
  5138. }
  5139. .ti-friends:before {
  5140. content: "\eab0";
  5141. }
  5142. .ti-friends-off:before {
  5143. content: "\f136";
  5144. }
  5145. .ti-function:before {
  5146. content: "\f225";
  5147. }
  5148. .ti-function-off:before {
  5149. content: "\f3f0";
  5150. }
  5151. .ti-garden-cart:before {
  5152. content: "\f23e";
  5153. }
  5154. .ti-garden-cart-off:before {
  5155. content: "\f3f1";
  5156. }
  5157. .ti-gas-station:before {
  5158. content: "\ec7d";
  5159. }
  5160. .ti-gas-station-off:before {
  5161. content: "\f137";
  5162. }
  5163. .ti-gauge:before {
  5164. content: "\eab1";
  5165. }
  5166. .ti-gauge-off:before {
  5167. content: "\f138";
  5168. }
  5169. .ti-gavel:before {
  5170. content: "\ef90";
  5171. }
  5172. .ti-gender-agender:before {
  5173. content: "\f0e1";
  5174. }
  5175. .ti-gender-androgyne:before {
  5176. content: "\f0e2";
  5177. }
  5178. .ti-gender-bigender:before {
  5179. content: "\f0e3";
  5180. }
  5181. .ti-gender-demiboy:before {
  5182. content: "\f0e4";
  5183. }
  5184. .ti-gender-demigirl:before {
  5185. content: "\f0e5";
  5186. }
  5187. .ti-gender-epicene:before {
  5188. content: "\f0e6";
  5189. }
  5190. .ti-gender-female:before {
  5191. content: "\f0e7";
  5192. }
  5193. .ti-gender-femme:before {
  5194. content: "\f0e8";
  5195. }
  5196. .ti-gender-genderfluid:before {
  5197. content: "\f0e9";
  5198. }
  5199. .ti-gender-genderless:before {
  5200. content: "\f0ea";
  5201. }
  5202. .ti-gender-genderqueer:before {
  5203. content: "\f0eb";
  5204. }
  5205. .ti-gender-hermaphrodite:before {
  5206. content: "\f0ec";
  5207. }
  5208. .ti-gender-intergender:before {
  5209. content: "\f0ed";
  5210. }
  5211. .ti-gender-male:before {
  5212. content: "\f0ee";
  5213. }
  5214. .ti-gender-neutrois:before {
  5215. content: "\f0ef";
  5216. }
  5217. .ti-gender-third:before {
  5218. content: "\f0f0";
  5219. }
  5220. .ti-gender-transgender:before {
  5221. content: "\f0f1";
  5222. }
  5223. .ti-gender-trasvesti:before {
  5224. content: "\f0f2";
  5225. }
  5226. .ti-geometry:before {
  5227. content: "\ee90";
  5228. }
  5229. .ti-ghost:before {
  5230. content: "\eb8e";
  5231. }
  5232. .ti-ghost-2:before {
  5233. content: "\f57c";
  5234. }
  5235. .ti-ghost-2-filled:before {
  5236. content: "\f74a";
  5237. }
  5238. .ti-ghost-filled:before {
  5239. content: "\f74b";
  5240. }
  5241. .ti-ghost-off:before {
  5242. content: "\f3f2";
  5243. }
  5244. .ti-gif:before {
  5245. content: "\f257";
  5246. }
  5247. .ti-gift:before {
  5248. content: "\eb68";
  5249. }
  5250. .ti-gift-card:before {
  5251. content: "\f3aa";
  5252. }
  5253. .ti-gift-off:before {
  5254. content: "\f3f3";
  5255. }
  5256. .ti-git-branch:before {
  5257. content: "\eab2";
  5258. }
  5259. .ti-git-branch-deleted:before {
  5260. content: "\f57d";
  5261. }
  5262. .ti-git-cherry-pick:before {
  5263. content: "\f57e";
  5264. }
  5265. .ti-git-commit:before {
  5266. content: "\eab3";
  5267. }
  5268. .ti-git-compare:before {
  5269. content: "\eab4";
  5270. }
  5271. .ti-git-fork:before {
  5272. content: "\eb8f";
  5273. }
  5274. .ti-git-merge:before {
  5275. content: "\eab5";
  5276. }
  5277. .ti-git-pull-request:before {
  5278. content: "\eab6";
  5279. }
  5280. .ti-git-pull-request-closed:before {
  5281. content: "\ef7f";
  5282. }
  5283. .ti-git-pull-request-draft:before {
  5284. content: "\efb7";
  5285. }
  5286. .ti-gizmo:before {
  5287. content: "\f02b";
  5288. }
  5289. .ti-glass:before {
  5290. content: "\eab8";
  5291. }
  5292. .ti-glass-full:before {
  5293. content: "\eab7";
  5294. }
  5295. .ti-glass-off:before {
  5296. content: "\ee91";
  5297. }
  5298. .ti-globe:before {
  5299. content: "\eab9";
  5300. }
  5301. .ti-globe-off:before {
  5302. content: "\f139";
  5303. }
  5304. .ti-go-game:before {
  5305. content: "\f512";
  5306. }
  5307. .ti-golf:before {
  5308. content: "\ed8c";
  5309. }
  5310. .ti-golf-off:before {
  5311. content: "\f13a";
  5312. }
  5313. .ti-gps:before {
  5314. content: "\ed7a";
  5315. }
  5316. .ti-gradienter:before {
  5317. content: "\f3ab";
  5318. }
  5319. .ti-grain:before {
  5320. content: "\ee92";
  5321. }
  5322. .ti-graph:before {
  5323. content: "\f288";
  5324. }
  5325. .ti-graph-off:before {
  5326. content: "\f3f4";
  5327. }
  5328. .ti-grave:before {
  5329. content: "\f580";
  5330. }
  5331. .ti-grave-2:before {
  5332. content: "\f57f";
  5333. }
  5334. .ti-grid-dots:before {
  5335. content: "\eaba";
  5336. }
  5337. .ti-grid-pattern:before {
  5338. content: "\efc9";
  5339. }
  5340. .ti-grill:before {
  5341. content: "\efa9";
  5342. }
  5343. .ti-grill-fork:before {
  5344. content: "\f35b";
  5345. }
  5346. .ti-grill-off:before {
  5347. content: "\f3f5";
  5348. }
  5349. .ti-grill-spatula:before {
  5350. content: "\f35c";
  5351. }
  5352. .ti-grip-horizontal:before {
  5353. content: "\ec00";
  5354. }
  5355. .ti-grip-vertical:before {
  5356. content: "\ec01";
  5357. }
  5358. .ti-growth:before {
  5359. content: "\ee93";
  5360. }
  5361. .ti-guitar-pick:before {
  5362. content: "\f4c6";
  5363. }
  5364. .ti-guitar-pick-filled:before {
  5365. content: "\f67b";
  5366. }
  5367. .ti-h-1:before {
  5368. content: "\ec94";
  5369. }
  5370. .ti-h-2:before {
  5371. content: "\ec95";
  5372. }
  5373. .ti-h-3:before {
  5374. content: "\ec96";
  5375. }
  5376. .ti-h-4:before {
  5377. content: "\ec97";
  5378. }
  5379. .ti-h-5:before {
  5380. content: "\ec98";
  5381. }
  5382. .ti-h-6:before {
  5383. content: "\ec99";
  5384. }
  5385. .ti-hammer:before {
  5386. content: "\ef91";
  5387. }
  5388. .ti-hammer-off:before {
  5389. content: "\f13c";
  5390. }
  5391. .ti-hand-click:before {
  5392. content: "\ef4f";
  5393. }
  5394. .ti-hand-finger:before {
  5395. content: "\ee94";
  5396. }
  5397. .ti-hand-finger-off:before {
  5398. content: "\f13d";
  5399. }
  5400. .ti-hand-grab:before {
  5401. content: "\f091";
  5402. }
  5403. .ti-hand-little-finger:before {
  5404. content: "\ee95";
  5405. }
  5406. .ti-hand-middle-finger:before {
  5407. content: "\ec2d";
  5408. }
  5409. .ti-hand-move:before {
  5410. content: "\ef50";
  5411. }
  5412. .ti-hand-off:before {
  5413. content: "\ed15";
  5414. }
  5415. .ti-hand-ring-finger:before {
  5416. content: "\ee96";
  5417. }
  5418. .ti-hand-rock:before {
  5419. content: "\ee97";
  5420. }
  5421. .ti-hand-sanitizer:before {
  5422. content: "\f5f4";
  5423. }
  5424. .ti-hand-stop:before {
  5425. content: "\ec2e";
  5426. }
  5427. .ti-hand-three-fingers:before {
  5428. content: "\ee98";
  5429. }
  5430. .ti-hand-two-fingers:before {
  5431. content: "\ee99";
  5432. }
  5433. .ti-hanger:before {
  5434. content: "\ee9a";
  5435. }
  5436. .ti-hanger-2:before {
  5437. content: "\f09c";
  5438. }
  5439. .ti-hanger-off:before {
  5440. content: "\f13e";
  5441. }
  5442. .ti-hash:before {
  5443. content: "\eabc";
  5444. }
  5445. .ti-haze:before {
  5446. content: "\efaa";
  5447. }
  5448. .ti-heading:before {
  5449. content: "\ee9b";
  5450. }
  5451. .ti-heading-off:before {
  5452. content: "\f13f";
  5453. }
  5454. .ti-headphones:before {
  5455. content: "\eabd";
  5456. }
  5457. .ti-headphones-off:before {
  5458. content: "\ed1d";
  5459. }
  5460. .ti-headset:before {
  5461. content: "\eb90";
  5462. }
  5463. .ti-headset-off:before {
  5464. content: "\f3f6";
  5465. }
  5466. .ti-health-recognition:before {
  5467. content: "\f1fb";
  5468. }
  5469. .ti-heart:before {
  5470. content: "\eabe";
  5471. }
  5472. .ti-heart-broken:before {
  5473. content: "\ecba";
  5474. }
  5475. .ti-heart-filled:before {
  5476. content: "\f67c";
  5477. }
  5478. .ti-heart-handshake:before {
  5479. content: "\f0f3";
  5480. }
  5481. .ti-heart-minus:before {
  5482. content: "\f140";
  5483. }
  5484. .ti-heart-off:before {
  5485. content: "\f141";
  5486. }
  5487. .ti-heart-plus:before {
  5488. content: "\f142";
  5489. }
  5490. .ti-heart-rate-monitor:before {
  5491. content: "\ef61";
  5492. }
  5493. .ti-heartbeat:before {
  5494. content: "\ef92";
  5495. }
  5496. .ti-hearts:before {
  5497. content: "\f387";
  5498. }
  5499. .ti-hearts-off:before {
  5500. content: "\f3f7";
  5501. }
  5502. .ti-helicopter:before {
  5503. content: "\ed8e";
  5504. }
  5505. .ti-helicopter-landing:before {
  5506. content: "\ed8d";
  5507. }
  5508. .ti-helmet:before {
  5509. content: "\efca";
  5510. }
  5511. .ti-helmet-off:before {
  5512. content: "\f143";
  5513. }
  5514. .ti-help:before {
  5515. content: "\eabf";
  5516. }
  5517. .ti-help-off:before {
  5518. content: "\f3f8";
  5519. }
  5520. .ti-hexagon:before {
  5521. content: "\ec02";
  5522. }
  5523. .ti-hexagon-0-filled:before {
  5524. content: "\f74c";
  5525. }
  5526. .ti-hexagon-1-filled:before {
  5527. content: "\f74d";
  5528. }
  5529. .ti-hexagon-2-filled:before {
  5530. content: "\f74e";
  5531. }
  5532. .ti-hexagon-3-filled:before {
  5533. content: "\f74f";
  5534. }
  5535. .ti-hexagon-3d:before {
  5536. content: "\f4c7";
  5537. }
  5538. .ti-hexagon-4-filled:before {
  5539. content: "\f750";
  5540. }
  5541. .ti-hexagon-5-filled:before {
  5542. content: "\f751";
  5543. }
  5544. .ti-hexagon-6-filled:before {
  5545. content: "\f752";
  5546. }
  5547. .ti-hexagon-7-filled:before {
  5548. content: "\f753";
  5549. }
  5550. .ti-hexagon-8-filled:before {
  5551. content: "\f754";
  5552. }
  5553. .ti-hexagon-9-filled:before {
  5554. content: "\f755";
  5555. }
  5556. .ti-hexagon-filled:before {
  5557. content: "\f67d";
  5558. }
  5559. .ti-hexagon-letter-a:before {
  5560. content: "\f463";
  5561. }
  5562. .ti-hexagon-letter-b:before {
  5563. content: "\f464";
  5564. }
  5565. .ti-hexagon-letter-c:before {
  5566. content: "\f465";
  5567. }
  5568. .ti-hexagon-letter-d:before {
  5569. content: "\f466";
  5570. }
  5571. .ti-hexagon-letter-e:before {
  5572. content: "\f467";
  5573. }
  5574. .ti-hexagon-letter-f:before {
  5575. content: "\f468";
  5576. }
  5577. .ti-hexagon-letter-g:before {
  5578. content: "\f469";
  5579. }
  5580. .ti-hexagon-letter-h:before {
  5581. content: "\f46a";
  5582. }
  5583. .ti-hexagon-letter-i:before {
  5584. content: "\f46b";
  5585. }
  5586. .ti-hexagon-letter-j:before {
  5587. content: "\f46c";
  5588. }
  5589. .ti-hexagon-letter-k:before {
  5590. content: "\f46d";
  5591. }
  5592. .ti-hexagon-letter-l:before {
  5593. content: "\f46e";
  5594. }
  5595. .ti-hexagon-letter-m:before {
  5596. content: "\f46f";
  5597. }
  5598. .ti-hexagon-letter-n:before {
  5599. content: "\f470";
  5600. }
  5601. .ti-hexagon-letter-o:before {
  5602. content: "\f471";
  5603. }
  5604. .ti-hexagon-letter-p:before {
  5605. content: "\f472";
  5606. }
  5607. .ti-hexagon-letter-q:before {
  5608. content: "\f473";
  5609. }
  5610. .ti-hexagon-letter-r:before {
  5611. content: "\f474";
  5612. }
  5613. .ti-hexagon-letter-s:before {
  5614. content: "\f475";
  5615. }
  5616. .ti-hexagon-letter-t:before {
  5617. content: "\f476";
  5618. }
  5619. .ti-hexagon-letter-u:before {
  5620. content: "\f477";
  5621. }
  5622. .ti-hexagon-letter-v:before {
  5623. content: "\f4b3";
  5624. }
  5625. .ti-hexagon-letter-w:before {
  5626. content: "\f478";
  5627. }
  5628. .ti-hexagon-letter-x:before {
  5629. content: "\f479";
  5630. }
  5631. .ti-hexagon-letter-y:before {
  5632. content: "\f47a";
  5633. }
  5634. .ti-hexagon-letter-z:before {
  5635. content: "\f47b";
  5636. }
  5637. .ti-hexagon-number-0:before {
  5638. content: "\f459";
  5639. }
  5640. .ti-hexagon-number-1:before {
  5641. content: "\f45a";
  5642. }
  5643. .ti-hexagon-number-2:before {
  5644. content: "\f45b";
  5645. }
  5646. .ti-hexagon-number-3:before {
  5647. content: "\f45c";
  5648. }
  5649. .ti-hexagon-number-4:before {
  5650. content: "\f45d";
  5651. }
  5652. .ti-hexagon-number-5:before {
  5653. content: "\f45e";
  5654. }
  5655. .ti-hexagon-number-6:before {
  5656. content: "\f45f";
  5657. }
  5658. .ti-hexagon-number-7:before {
  5659. content: "\f460";
  5660. }
  5661. .ti-hexagon-number-8:before {
  5662. content: "\f461";
  5663. }
  5664. .ti-hexagon-number-9:before {
  5665. content: "\f462";
  5666. }
  5667. .ti-hexagon-off:before {
  5668. content: "\ee9c";
  5669. }
  5670. .ti-hexagons:before {
  5671. content: "\f09d";
  5672. }
  5673. .ti-hexagons-off:before {
  5674. content: "\f3f9";
  5675. }
  5676. .ti-hierarchy:before {
  5677. content: "\ee9e";
  5678. }
  5679. .ti-hierarchy-2:before {
  5680. content: "\ee9d";
  5681. }
  5682. .ti-hierarchy-3:before {
  5683. content: "\f289";
  5684. }
  5685. .ti-hierarchy-off:before {
  5686. content: "\f3fa";
  5687. }
  5688. .ti-highlight:before {
  5689. content: "\ef3f";
  5690. }
  5691. .ti-highlight-off:before {
  5692. content: "\f144";
  5693. }
  5694. .ti-history:before {
  5695. content: "\ebea";
  5696. }
  5697. .ti-history-off:before {
  5698. content: "\f3fb";
  5699. }
  5700. .ti-history-toggle:before {
  5701. content: "\f1fc";
  5702. }
  5703. .ti-home:before {
  5704. content: "\eac1";
  5705. }
  5706. .ti-home-2:before {
  5707. content: "\eac0";
  5708. }
  5709. .ti-home-bolt:before {
  5710. content: "\f336";
  5711. }
  5712. .ti-home-cancel:before {
  5713. content: "\f350";
  5714. }
  5715. .ti-home-check:before {
  5716. content: "\f337";
  5717. }
  5718. .ti-home-cog:before {
  5719. content: "\f338";
  5720. }
  5721. .ti-home-dollar:before {
  5722. content: "\f339";
  5723. }
  5724. .ti-home-dot:before {
  5725. content: "\f33a";
  5726. }
  5727. .ti-home-down:before {
  5728. content: "\f33b";
  5729. }
  5730. .ti-home-eco:before {
  5731. content: "\f351";
  5732. }
  5733. .ti-home-edit:before {
  5734. content: "\f352";
  5735. }
  5736. .ti-home-exclamation:before {
  5737. content: "\f33c";
  5738. }
  5739. .ti-home-hand:before {
  5740. content: "\f504";
  5741. }
  5742. .ti-home-heart:before {
  5743. content: "\f353";
  5744. }
  5745. .ti-home-infinity:before {
  5746. content: "\f505";
  5747. }
  5748. .ti-home-link:before {
  5749. content: "\f354";
  5750. }
  5751. .ti-home-minus:before {
  5752. content: "\f33d";
  5753. }
  5754. .ti-home-move:before {
  5755. content: "\f33e";
  5756. }
  5757. .ti-home-off:before {
  5758. content: "\f145";
  5759. }
  5760. .ti-home-plus:before {
  5761. content: "\f33f";
  5762. }
  5763. .ti-home-question:before {
  5764. content: "\f340";
  5765. }
  5766. .ti-home-ribbon:before {
  5767. content: "\f355";
  5768. }
  5769. .ti-home-search:before {
  5770. content: "\f341";
  5771. }
  5772. .ti-home-share:before {
  5773. content: "\f342";
  5774. }
  5775. .ti-home-shield:before {
  5776. content: "\f343";
  5777. }
  5778. .ti-home-signal:before {
  5779. content: "\f356";
  5780. }
  5781. .ti-home-star:before {
  5782. content: "\f344";
  5783. }
  5784. .ti-home-stats:before {
  5785. content: "\f345";
  5786. }
  5787. .ti-home-up:before {
  5788. content: "\f346";
  5789. }
  5790. .ti-home-x:before {
  5791. content: "\f347";
  5792. }
  5793. .ti-horse-toy:before {
  5794. content: "\f28a";
  5795. }
  5796. .ti-hotel-service:before {
  5797. content: "\ef80";
  5798. }
  5799. .ti-hourglass:before {
  5800. content: "\ef93";
  5801. }
  5802. .ti-hourglass-empty:before {
  5803. content: "\f146";
  5804. }
  5805. .ti-hourglass-filled:before {
  5806. content: "\f756";
  5807. }
  5808. .ti-hourglass-high:before {
  5809. content: "\f092";
  5810. }
  5811. .ti-hourglass-low:before {
  5812. content: "\f093";
  5813. }
  5814. .ti-hourglass-off:before {
  5815. content: "\f147";
  5816. }
  5817. .ti-ice-cream:before {
  5818. content: "\eac2";
  5819. }
  5820. .ti-ice-cream-2:before {
  5821. content: "\ee9f";
  5822. }
  5823. .ti-ice-cream-off:before {
  5824. content: "\f148";
  5825. }
  5826. .ti-ice-skating:before {
  5827. content: "\efcb";
  5828. }
  5829. .ti-icons:before {
  5830. content: "\f1d4";
  5831. }
  5832. .ti-icons-off:before {
  5833. content: "\f3fc";
  5834. }
  5835. .ti-id:before {
  5836. content: "\eac3";
  5837. }
  5838. .ti-id-badge:before {
  5839. content: "\eff7";
  5840. }
  5841. .ti-id-badge-2:before {
  5842. content: "\f076";
  5843. }
  5844. .ti-id-badge-off:before {
  5845. content: "\f3fd";
  5846. }
  5847. .ti-id-off:before {
  5848. content: "\f149";
  5849. }
  5850. .ti-inbox:before {
  5851. content: "\eac4";
  5852. }
  5853. .ti-inbox-off:before {
  5854. content: "\f14a";
  5855. }
  5856. .ti-indent-decrease:before {
  5857. content: "\eb91";
  5858. }
  5859. .ti-indent-increase:before {
  5860. content: "\eb92";
  5861. }
  5862. .ti-infinity:before {
  5863. content: "\eb69";
  5864. }
  5865. .ti-infinity-off:before {
  5866. content: "\f3fe";
  5867. }
  5868. .ti-info-circle:before {
  5869. content: "\eac5";
  5870. }
  5871. .ti-info-circle-filled:before {
  5872. content: "\f6d8";
  5873. }
  5874. .ti-info-square:before {
  5875. content: "\eac6";
  5876. }
  5877. .ti-info-square-rounded:before {
  5878. content: "\f635";
  5879. }
  5880. .ti-info-square-rounded-filled:before {
  5881. content: "\f6d9";
  5882. }
  5883. .ti-inner-shadow-bottom:before {
  5884. content: "\f520";
  5885. }
  5886. .ti-inner-shadow-bottom-filled:before {
  5887. content: "\f757";
  5888. }
  5889. .ti-inner-shadow-bottom-left:before {
  5890. content: "\f51e";
  5891. }
  5892. .ti-inner-shadow-bottom-left-filled:before {
  5893. content: "\f758";
  5894. }
  5895. .ti-inner-shadow-bottom-right:before {
  5896. content: "\f51f";
  5897. }
  5898. .ti-inner-shadow-bottom-right-filled:before {
  5899. content: "\f759";
  5900. }
  5901. .ti-inner-shadow-left:before {
  5902. content: "\f521";
  5903. }
  5904. .ti-inner-shadow-left-filled:before {
  5905. content: "\f75a";
  5906. }
  5907. .ti-inner-shadow-right:before {
  5908. content: "\f522";
  5909. }
  5910. .ti-inner-shadow-right-filled:before {
  5911. content: "\f75b";
  5912. }
  5913. .ti-inner-shadow-top:before {
  5914. content: "\f525";
  5915. }
  5916. .ti-inner-shadow-top-filled:before {
  5917. content: "\f75c";
  5918. }
  5919. .ti-inner-shadow-top-left:before {
  5920. content: "\f523";
  5921. }
  5922. .ti-inner-shadow-top-left-filled:before {
  5923. content: "\f75d";
  5924. }
  5925. .ti-inner-shadow-top-right:before {
  5926. content: "\f524";
  5927. }
  5928. .ti-inner-shadow-top-right-filled:before {
  5929. content: "\f75e";
  5930. }
  5931. .ti-input-search:before {
  5932. content: "\f2a2";
  5933. }
  5934. .ti-ironing-1:before {
  5935. content: "\f2f4";
  5936. }
  5937. .ti-ironing-2:before {
  5938. content: "\f2f5";
  5939. }
  5940. .ti-ironing-3:before {
  5941. content: "\f2f6";
  5942. }
  5943. .ti-ironing-off:before {
  5944. content: "\f2f7";
  5945. }
  5946. .ti-ironing-steam:before {
  5947. content: "\f2f9";
  5948. }
  5949. .ti-ironing-steam-off:before {
  5950. content: "\f2f8";
  5951. }
  5952. .ti-italic:before {
  5953. content: "\eb93";
  5954. }
  5955. .ti-jacket:before {
  5956. content: "\f661";
  5957. }
  5958. .ti-jetpack:before {
  5959. content: "\f581";
  5960. }
  5961. .ti-jewish-star:before {
  5962. content: "\f3ff";
  5963. }
  5964. .ti-jewish-star-filled:before {
  5965. content: "\f67e";
  5966. }
  5967. .ti-jpg:before {
  5968. content: "\f3ac";
  5969. }
  5970. .ti-jump-rope:before {
  5971. content: "\ed8f";
  5972. }
  5973. .ti-karate:before {
  5974. content: "\ed32";
  5975. }
  5976. .ti-kayak:before {
  5977. content: "\f1d6";
  5978. }
  5979. .ti-kering:before {
  5980. content: "\efb8";
  5981. }
  5982. .ti-key:before {
  5983. content: "\eac7";
  5984. }
  5985. .ti-key-off:before {
  5986. content: "\f14b";
  5987. }
  5988. .ti-keyboard:before {
  5989. content: "\ebd6";
  5990. }
  5991. .ti-keyboard-hide:before {
  5992. content: "\ec7e";
  5993. }
  5994. .ti-keyboard-off:before {
  5995. content: "\eea0";
  5996. }
  5997. .ti-keyboard-show:before {
  5998. content: "\ec7f";
  5999. }
  6000. .ti-keyframe:before {
  6001. content: "\f576";
  6002. }
  6003. .ti-keyframe-align-center:before {
  6004. content: "\f582";
  6005. }
  6006. .ti-keyframe-align-horizontal:before {
  6007. content: "\f583";
  6008. }
  6009. .ti-keyframe-align-vertical:before {
  6010. content: "\f584";
  6011. }
  6012. .ti-keyframes:before {
  6013. content: "\f585";
  6014. }
  6015. .ti-ladder:before {
  6016. content: "\efe2";
  6017. }
  6018. .ti-ladder-off:before {
  6019. content: "\f14c";
  6020. }
  6021. .ti-lambda:before {
  6022. content: "\f541";
  6023. }
  6024. .ti-lamp:before {
  6025. content: "\efab";
  6026. }
  6027. .ti-lamp-2:before {
  6028. content: "\f09e";
  6029. }
  6030. .ti-lamp-off:before {
  6031. content: "\f14d";
  6032. }
  6033. .ti-language:before {
  6034. content: "\ebbe";
  6035. }
  6036. .ti-language-hiragana:before {
  6037. content: "\ef77";
  6038. }
  6039. .ti-language-katakana:before {
  6040. content: "\ef78";
  6041. }
  6042. .ti-language-off:before {
  6043. content: "\f14e";
  6044. }
  6045. .ti-lasso:before {
  6046. content: "\efac";
  6047. }
  6048. .ti-lasso-off:before {
  6049. content: "\f14f";
  6050. }
  6051. .ti-lasso-polygon:before {
  6052. content: "\f388";
  6053. }
  6054. .ti-layers-difference:before {
  6055. content: "\eac8";
  6056. }
  6057. .ti-layers-intersect:before {
  6058. content: "\eac9";
  6059. }
  6060. .ti-layers-intersect-2:before {
  6061. content: "\eff8";
  6062. }
  6063. .ti-layers-linked:before {
  6064. content: "\eea1";
  6065. }
  6066. .ti-layers-off:before {
  6067. content: "\f150";
  6068. }
  6069. .ti-layers-subtract:before {
  6070. content: "\eaca";
  6071. }
  6072. .ti-layers-union:before {
  6073. content: "\eacb";
  6074. }
  6075. .ti-layout:before {
  6076. content: "\eadb";
  6077. }
  6078. .ti-layout-2:before {
  6079. content: "\eacc";
  6080. }
  6081. .ti-layout-align-bottom:before {
  6082. content: "\eacd";
  6083. }
  6084. .ti-layout-align-center:before {
  6085. content: "\eace";
  6086. }
  6087. .ti-layout-align-left:before {
  6088. content: "\eacf";
  6089. }
  6090. .ti-layout-align-middle:before {
  6091. content: "\ead0";
  6092. }
  6093. .ti-layout-align-right:before {
  6094. content: "\ead1";
  6095. }
  6096. .ti-layout-align-top:before {
  6097. content: "\ead2";
  6098. }
  6099. .ti-layout-board:before {
  6100. content: "\ef95";
  6101. }
  6102. .ti-layout-board-split:before {
  6103. content: "\ef94";
  6104. }
  6105. .ti-layout-bottombar:before {
  6106. content: "\ead3";
  6107. }
  6108. .ti-layout-bottombar-collapse:before {
  6109. content: "\f28b";
  6110. }
  6111. .ti-layout-bottombar-expand:before {
  6112. content: "\f28c";
  6113. }
  6114. .ti-layout-cards:before {
  6115. content: "\ec13";
  6116. }
  6117. .ti-layout-collage:before {
  6118. content: "\f389";
  6119. }
  6120. .ti-layout-columns:before {
  6121. content: "\ead4";
  6122. }
  6123. .ti-layout-dashboard:before {
  6124. content: "\f02c";
  6125. }
  6126. .ti-layout-distribute-horizontal:before {
  6127. content: "\ead5";
  6128. }
  6129. .ti-layout-distribute-vertical:before {
  6130. content: "\ead6";
  6131. }
  6132. .ti-layout-grid:before {
  6133. content: "\edba";
  6134. }
  6135. .ti-layout-grid-add:before {
  6136. content: "\edb9";
  6137. }
  6138. .ti-layout-kanban:before {
  6139. content: "\ec3f";
  6140. }
  6141. .ti-layout-list:before {
  6142. content: "\ec14";
  6143. }
  6144. .ti-layout-navbar:before {
  6145. content: "\ead7";
  6146. }
  6147. .ti-layout-navbar-collapse:before {
  6148. content: "\f28d";
  6149. }
  6150. .ti-layout-navbar-expand:before {
  6151. content: "\f28e";
  6152. }
  6153. .ti-layout-off:before {
  6154. content: "\f151";
  6155. }
  6156. .ti-layout-rows:before {
  6157. content: "\ead8";
  6158. }
  6159. .ti-layout-sidebar:before {
  6160. content: "\eada";
  6161. }
  6162. .ti-layout-sidebar-left-collapse:before {
  6163. content: "\f004";
  6164. }
  6165. .ti-layout-sidebar-left-expand:before {
  6166. content: "\f005";
  6167. }
  6168. .ti-layout-sidebar-right:before {
  6169. content: "\ead9";
  6170. }
  6171. .ti-layout-sidebar-right-collapse:before {
  6172. content: "\f006";
  6173. }
  6174. .ti-layout-sidebar-right-expand:before {
  6175. content: "\f007";
  6176. }
  6177. .ti-leaf:before {
  6178. content: "\ed4f";
  6179. }
  6180. .ti-leaf-off:before {
  6181. content: "\f400";
  6182. }
  6183. .ti-lego:before {
  6184. content: "\eadc";
  6185. }
  6186. .ti-lego-off:before {
  6187. content: "\f401";
  6188. }
  6189. .ti-lemon:before {
  6190. content: "\ef10";
  6191. }
  6192. .ti-lemon-2:before {
  6193. content: "\ef81";
  6194. }
  6195. .ti-letter-a:before {
  6196. content: "\ec50";
  6197. }
  6198. .ti-letter-b:before {
  6199. content: "\ec51";
  6200. }
  6201. .ti-letter-c:before {
  6202. content: "\ec52";
  6203. }
  6204. .ti-letter-case:before {
  6205. content: "\eea5";
  6206. }
  6207. .ti-letter-case-lower:before {
  6208. content: "\eea2";
  6209. }
  6210. .ti-letter-case-toggle:before {
  6211. content: "\eea3";
  6212. }
  6213. .ti-letter-case-upper:before {
  6214. content: "\eea4";
  6215. }
  6216. .ti-letter-d:before {
  6217. content: "\ec53";
  6218. }
  6219. .ti-letter-e:before {
  6220. content: "\ec54";
  6221. }
  6222. .ti-letter-f:before {
  6223. content: "\ec55";
  6224. }
  6225. .ti-letter-g:before {
  6226. content: "\ec56";
  6227. }
  6228. .ti-letter-h:before {
  6229. content: "\ec57";
  6230. }
  6231. .ti-letter-i:before {
  6232. content: "\ec58";
  6233. }
  6234. .ti-letter-j:before {
  6235. content: "\ec59";
  6236. }
  6237. .ti-letter-k:before {
  6238. content: "\ec5a";
  6239. }
  6240. .ti-letter-l:before {
  6241. content: "\ec5b";
  6242. }
  6243. .ti-letter-m:before {
  6244. content: "\ec5c";
  6245. }
  6246. .ti-letter-n:before {
  6247. content: "\ec5d";
  6248. }
  6249. .ti-letter-o:before {
  6250. content: "\ec5e";
  6251. }
  6252. .ti-letter-p:before {
  6253. content: "\ec5f";
  6254. }
  6255. .ti-letter-q:before {
  6256. content: "\ec60";
  6257. }
  6258. .ti-letter-r:before {
  6259. content: "\ec61";
  6260. }
  6261. .ti-letter-s:before {
  6262. content: "\ec62";
  6263. }
  6264. .ti-letter-spacing:before {
  6265. content: "\eea6";
  6266. }
  6267. .ti-letter-t:before {
  6268. content: "\ec63";
  6269. }
  6270. .ti-letter-u:before {
  6271. content: "\ec64";
  6272. }
  6273. .ti-letter-v:before {
  6274. content: "\ec65";
  6275. }
  6276. .ti-letter-w:before {
  6277. content: "\ec66";
  6278. }
  6279. .ti-letter-x:before {
  6280. content: "\ec67";
  6281. }
  6282. .ti-letter-y:before {
  6283. content: "\ec68";
  6284. }
  6285. .ti-letter-z:before {
  6286. content: "\ec69";
  6287. }
  6288. .ti-license:before {
  6289. content: "\ebc0";
  6290. }
  6291. .ti-license-off:before {
  6292. content: "\f153";
  6293. }
  6294. .ti-lifebuoy:before {
  6295. content: "\eadd";
  6296. }
  6297. .ti-lifebuoy-off:before {
  6298. content: "\f154";
  6299. }
  6300. .ti-lighter:before {
  6301. content: "\f794";
  6302. }
  6303. .ti-line:before {
  6304. content: "\ec40";
  6305. }
  6306. .ti-line-dashed:before {
  6307. content: "\eea7";
  6308. }
  6309. .ti-line-dotted:before {
  6310. content: "\eea8";
  6311. }
  6312. .ti-line-height:before {
  6313. content: "\eb94";
  6314. }
  6315. .ti-link:before {
  6316. content: "\eade";
  6317. }
  6318. .ti-link-off:before {
  6319. content: "\f402";
  6320. }
  6321. .ti-list:before {
  6322. content: "\eb6b";
  6323. }
  6324. .ti-list-check:before {
  6325. content: "\eb6a";
  6326. }
  6327. .ti-list-details:before {
  6328. content: "\ef40";
  6329. }
  6330. .ti-list-numbers:before {
  6331. content: "\ef11";
  6332. }
  6333. .ti-list-search:before {
  6334. content: "\eea9";
  6335. }
  6336. .ti-live-photo:before {
  6337. content: "\eadf";
  6338. }
  6339. .ti-live-photo-off:before {
  6340. content: "\f403";
  6341. }
  6342. .ti-live-view:before {
  6343. content: "\ec6b";
  6344. }
  6345. .ti-loader:before {
  6346. content: "\eca3";
  6347. }
  6348. .ti-loader-2:before {
  6349. content: "\f226";
  6350. }
  6351. .ti-loader-3:before {
  6352. content: "\f513";
  6353. }
  6354. .ti-loader-quarter:before {
  6355. content: "\eca2";
  6356. }
  6357. .ti-location:before {
  6358. content: "\eae0";
  6359. }
  6360. .ti-location-broken:before {
  6361. content: "\f2c4";
  6362. }
  6363. .ti-location-filled:before {
  6364. content: "\f67f";
  6365. }
  6366. .ti-location-off:before {
  6367. content: "\f155";
  6368. }
  6369. .ti-lock:before {
  6370. content: "\eae2";
  6371. }
  6372. .ti-lock-access:before {
  6373. content: "\eeaa";
  6374. }
  6375. .ti-lock-access-off:before {
  6376. content: "\f404";
  6377. }
  6378. .ti-lock-off:before {
  6379. content: "\ed1e";
  6380. }
  6381. .ti-lock-open:before {
  6382. content: "\eae1";
  6383. }
  6384. .ti-lock-open-off:before {
  6385. content: "\f156";
  6386. }
  6387. .ti-lock-square:before {
  6388. content: "\ef51";
  6389. }
  6390. .ti-lock-square-rounded:before {
  6391. content: "\f636";
  6392. }
  6393. .ti-lock-square-rounded-filled:before {
  6394. content: "\f6da";
  6395. }
  6396. .ti-logic-and:before {
  6397. content: "\f240";
  6398. }
  6399. .ti-logic-buffer:before {
  6400. content: "\f241";
  6401. }
  6402. .ti-logic-nand:before {
  6403. content: "\f242";
  6404. }
  6405. .ti-logic-nor:before {
  6406. content: "\f243";
  6407. }
  6408. .ti-logic-not:before {
  6409. content: "\f244";
  6410. }
  6411. .ti-logic-or:before {
  6412. content: "\f245";
  6413. }
  6414. .ti-logic-xnor:before {
  6415. content: "\f246";
  6416. }
  6417. .ti-logic-xor:before {
  6418. content: "\f247";
  6419. }
  6420. .ti-login:before {
  6421. content: "\eba7";
  6422. }
  6423. .ti-logout:before {
  6424. content: "\eba8";
  6425. }
  6426. .ti-lollipop:before {
  6427. content: "\efcc";
  6428. }
  6429. .ti-lollipop-off:before {
  6430. content: "\f157";
  6431. }
  6432. .ti-luggage:before {
  6433. content: "\efad";
  6434. }
  6435. .ti-luggage-off:before {
  6436. content: "\f158";
  6437. }
  6438. .ti-lungs:before {
  6439. content: "\ef62";
  6440. }
  6441. .ti-lungs-off:before {
  6442. content: "\f405";
  6443. }
  6444. .ti-macro:before {
  6445. content: "\eeab";
  6446. }
  6447. .ti-macro-off:before {
  6448. content: "\f406";
  6449. }
  6450. .ti-magnet:before {
  6451. content: "\eae3";
  6452. }
  6453. .ti-magnet-off:before {
  6454. content: "\f159";
  6455. }
  6456. .ti-mail:before {
  6457. content: "\eae5";
  6458. }
  6459. .ti-mail-fast:before {
  6460. content: "\f069";
  6461. }
  6462. .ti-mail-forward:before {
  6463. content: "\eeac";
  6464. }
  6465. .ti-mail-off:before {
  6466. content: "\f15a";
  6467. }
  6468. .ti-mail-opened:before {
  6469. content: "\eae4";
  6470. }
  6471. .ti-mailbox:before {
  6472. content: "\eead";
  6473. }
  6474. .ti-mailbox-off:before {
  6475. content: "\f15b";
  6476. }
  6477. .ti-man:before {
  6478. content: "\eae6";
  6479. }
  6480. .ti-manual-gearbox:before {
  6481. content: "\ed7b";
  6482. }
  6483. .ti-map:before {
  6484. content: "\eae9";
  6485. }
  6486. .ti-map-2:before {
  6487. content: "\eae7";
  6488. }
  6489. .ti-map-off:before {
  6490. content: "\f15c";
  6491. }
  6492. .ti-map-pin:before {
  6493. content: "\eae8";
  6494. }
  6495. .ti-map-pin-filled:before {
  6496. content: "\f680";
  6497. }
  6498. .ti-map-pin-off:before {
  6499. content: "\ecf3";
  6500. }
  6501. .ti-map-pin-share:before {
  6502. content: "\f795";
  6503. }
  6504. .ti-map-pins:before {
  6505. content: "\ed5e";
  6506. }
  6507. .ti-map-search:before {
  6508. content: "\ef82";
  6509. }
  6510. .ti-markdown:before {
  6511. content: "\ec41";
  6512. }
  6513. .ti-markdown-off:before {
  6514. content: "\f407";
  6515. }
  6516. .ti-marquee:before {
  6517. content: "\ec77";
  6518. }
  6519. .ti-marquee-2:before {
  6520. content: "\eeae";
  6521. }
  6522. .ti-marquee-off:before {
  6523. content: "\f15d";
  6524. }
  6525. .ti-mars:before {
  6526. content: "\ec80";
  6527. }
  6528. .ti-mask:before {
  6529. content: "\eeb0";
  6530. }
  6531. .ti-mask-off:before {
  6532. content: "\eeaf";
  6533. }
  6534. .ti-masks-theater:before {
  6535. content: "\f263";
  6536. }
  6537. .ti-masks-theater-off:before {
  6538. content: "\f408";
  6539. }
  6540. .ti-massage:before {
  6541. content: "\eeb1";
  6542. }
  6543. .ti-matchstick:before {
  6544. content: "\f577";
  6545. }
  6546. .ti-math:before {
  6547. content: "\ebeb";
  6548. }
  6549. .ti-math-1-divide-2:before {
  6550. content: "\f4e2";
  6551. }
  6552. .ti-math-1-divide-3:before {
  6553. content: "\f4e3";
  6554. }
  6555. .ti-math-avg:before {
  6556. content: "\f0f4";
  6557. }
  6558. .ti-math-equal-greater:before {
  6559. content: "\f4e4";
  6560. }
  6561. .ti-math-equal-lower:before {
  6562. content: "\f4e5";
  6563. }
  6564. .ti-math-function:before {
  6565. content: "\eeb2";
  6566. }
  6567. .ti-math-function-off:before {
  6568. content: "\f15e";
  6569. }
  6570. .ti-math-function-y:before {
  6571. content: "\f4e6";
  6572. }
  6573. .ti-math-greater:before {
  6574. content: "\f4e7";
  6575. }
  6576. .ti-math-integral:before {
  6577. content: "\f4e9";
  6578. }
  6579. .ti-math-integral-x:before {
  6580. content: "\f4e8";
  6581. }
  6582. .ti-math-integrals:before {
  6583. content: "\f4ea";
  6584. }
  6585. .ti-math-lower:before {
  6586. content: "\f4eb";
  6587. }
  6588. .ti-math-max:before {
  6589. content: "\f0f5";
  6590. }
  6591. .ti-math-min:before {
  6592. content: "\f0f6";
  6593. }
  6594. .ti-math-not:before {
  6595. content: "\f4ec";
  6596. }
  6597. .ti-math-off:before {
  6598. content: "\f409";
  6599. }
  6600. .ti-math-pi:before {
  6601. content: "\f4ee";
  6602. }
  6603. .ti-math-pi-divide-2:before {
  6604. content: "\f4ed";
  6605. }
  6606. .ti-math-symbols:before {
  6607. content: "\eeb3";
  6608. }
  6609. .ti-math-x-divide-2:before {
  6610. content: "\f4ef";
  6611. }
  6612. .ti-math-x-divide-y:before {
  6613. content: "\f4f1";
  6614. }
  6615. .ti-math-x-divide-y-2:before {
  6616. content: "\f4f0";
  6617. }
  6618. .ti-math-x-minus-x:before {
  6619. content: "\f4f2";
  6620. }
  6621. .ti-math-x-minus-y:before {
  6622. content: "\f4f3";
  6623. }
  6624. .ti-math-x-plus-x:before {
  6625. content: "\f4f4";
  6626. }
  6627. .ti-math-x-plus-y:before {
  6628. content: "\f4f5";
  6629. }
  6630. .ti-math-xy:before {
  6631. content: "\f4f6";
  6632. }
  6633. .ti-math-y-minus-y:before {
  6634. content: "\f4f7";
  6635. }
  6636. .ti-math-y-plus-y:before {
  6637. content: "\f4f8";
  6638. }
  6639. .ti-maximize:before {
  6640. content: "\eaea";
  6641. }
  6642. .ti-maximize-off:before {
  6643. content: "\f15f";
  6644. }
  6645. .ti-meat:before {
  6646. content: "\ef12";
  6647. }
  6648. .ti-meat-off:before {
  6649. content: "\f40a";
  6650. }
  6651. .ti-medal:before {
  6652. content: "\ec78";
  6653. }
  6654. .ti-medal-2:before {
  6655. content: "\efcd";
  6656. }
  6657. .ti-medical-cross:before {
  6658. content: "\ec2f";
  6659. }
  6660. .ti-medical-cross-filled:before {
  6661. content: "\f681";
  6662. }
  6663. .ti-medical-cross-off:before {
  6664. content: "\f160";
  6665. }
  6666. .ti-medicine-syrup:before {
  6667. content: "\ef63";
  6668. }
  6669. .ti-meeple:before {
  6670. content: "\f514";
  6671. }
  6672. .ti-menorah:before {
  6673. content: "\f58c";
  6674. }
  6675. .ti-menu:before {
  6676. content: "\eaeb";
  6677. }
  6678. .ti-menu-2:before {
  6679. content: "\ec42";
  6680. }
  6681. .ti-menu-order:before {
  6682. content: "\f5f5";
  6683. }
  6684. .ti-message:before {
  6685. content: "\eaef";
  6686. }
  6687. .ti-message-2:before {
  6688. content: "\eaec";
  6689. }
  6690. .ti-message-2-code:before {
  6691. content: "\f012";
  6692. }
  6693. .ti-message-2-off:before {
  6694. content: "\f40b";
  6695. }
  6696. .ti-message-2-share:before {
  6697. content: "\f077";
  6698. }
  6699. .ti-message-chatbot:before {
  6700. content: "\f38a";
  6701. }
  6702. .ti-message-circle:before {
  6703. content: "\eaed";
  6704. }
  6705. .ti-message-circle-2:before {
  6706. content: "\ed3f";
  6707. }
  6708. .ti-message-circle-2-filled:before {
  6709. content: "\f682";
  6710. }
  6711. .ti-message-circle-off:before {
  6712. content: "\ed40";
  6713. }
  6714. .ti-message-code:before {
  6715. content: "\f013";
  6716. }
  6717. .ti-message-dots:before {
  6718. content: "\eaee";
  6719. }
  6720. .ti-message-forward:before {
  6721. content: "\f28f";
  6722. }
  6723. .ti-message-language:before {
  6724. content: "\efae";
  6725. }
  6726. .ti-message-off:before {
  6727. content: "\ed41";
  6728. }
  6729. .ti-message-plus:before {
  6730. content: "\ec9a";
  6731. }
  6732. .ti-message-report:before {
  6733. content: "\ec9b";
  6734. }
  6735. .ti-message-share:before {
  6736. content: "\f078";
  6737. }
  6738. .ti-messages:before {
  6739. content: "\eb6c";
  6740. }
  6741. .ti-messages-off:before {
  6742. content: "\ed42";
  6743. }
  6744. .ti-meteor:before {
  6745. content: "\f1fd";
  6746. }
  6747. .ti-meteor-off:before {
  6748. content: "\f40c";
  6749. }
  6750. .ti-mickey:before {
  6751. content: "\f2a3";
  6752. }
  6753. .ti-mickey-filled:before {
  6754. content: "\f683";
  6755. }
  6756. .ti-microphone:before {
  6757. content: "\eaf0";
  6758. }
  6759. .ti-microphone-2:before {
  6760. content: "\ef2c";
  6761. }
  6762. .ti-microphone-2-off:before {
  6763. content: "\f40d";
  6764. }
  6765. .ti-microphone-off:before {
  6766. content: "\ed16";
  6767. }
  6768. .ti-microscope:before {
  6769. content: "\ef64";
  6770. }
  6771. .ti-microscope-off:before {
  6772. content: "\f40e";
  6773. }
  6774. .ti-microwave:before {
  6775. content: "\f248";
  6776. }
  6777. .ti-microwave-off:before {
  6778. content: "\f264";
  6779. }
  6780. .ti-military-award:before {
  6781. content: "\f079";
  6782. }
  6783. .ti-military-rank:before {
  6784. content: "\efcf";
  6785. }
  6786. .ti-milk:before {
  6787. content: "\ef13";
  6788. }
  6789. .ti-milk-off:before {
  6790. content: "\f40f";
  6791. }
  6792. .ti-milkshake:before {
  6793. content: "\f4c8";
  6794. }
  6795. .ti-minimize:before {
  6796. content: "\eaf1";
  6797. }
  6798. .ti-minus:before {
  6799. content: "\eaf2";
  6800. }
  6801. .ti-minus-vertical:before {
  6802. content: "\eeb4";
  6803. }
  6804. .ti-mist:before {
  6805. content: "\ec30";
  6806. }
  6807. .ti-mist-off:before {
  6808. content: "\f410";
  6809. }
  6810. .ti-moneybag:before {
  6811. content: "\f506";
  6812. }
  6813. .ti-mood-angry:before {
  6814. content: "\f2de";
  6815. }
  6816. .ti-mood-annoyed:before {
  6817. content: "\f2e0";
  6818. }
  6819. .ti-mood-annoyed-2:before {
  6820. content: "\f2df";
  6821. }
  6822. .ti-mood-boy:before {
  6823. content: "\ed2d";
  6824. }
  6825. .ti-mood-confuzed:before {
  6826. content: "\eaf3";
  6827. }
  6828. .ti-mood-crazy-happy:before {
  6829. content: "\ed90";
  6830. }
  6831. .ti-mood-cry:before {
  6832. content: "\ecbb";
  6833. }
  6834. .ti-mood-empty:before {
  6835. content: "\eeb5";
  6836. }
  6837. .ti-mood-happy:before {
  6838. content: "\eaf4";
  6839. }
  6840. .ti-mood-kid:before {
  6841. content: "\ec03";
  6842. }
  6843. .ti-mood-look-left:before {
  6844. content: "\f2c5";
  6845. }
  6846. .ti-mood-look-right:before {
  6847. content: "\f2c6";
  6848. }
  6849. .ti-mood-nerd:before {
  6850. content: "\f2e1";
  6851. }
  6852. .ti-mood-nervous:before {
  6853. content: "\ef96";
  6854. }
  6855. .ti-mood-neutral:before {
  6856. content: "\eaf5";
  6857. }
  6858. .ti-mood-off:before {
  6859. content: "\f161";
  6860. }
  6861. .ti-mood-sad:before {
  6862. content: "\eaf6";
  6863. }
  6864. .ti-mood-sad-2:before {
  6865. content: "\f2e2";
  6866. }
  6867. .ti-mood-sad-dizzy:before {
  6868. content: "\f2e3";
  6869. }
  6870. .ti-mood-sad-squint:before {
  6871. content: "\f2e4";
  6872. }
  6873. .ti-mood-sick:before {
  6874. content: "\f2e5";
  6875. }
  6876. .ti-mood-silence:before {
  6877. content: "\f2e6";
  6878. }
  6879. .ti-mood-sing:before {
  6880. content: "\f2c7";
  6881. }
  6882. .ti-mood-smile:before {
  6883. content: "\eaf7";
  6884. }
  6885. .ti-mood-smile-beam:before {
  6886. content: "\f2e7";
  6887. }
  6888. .ti-mood-smile-dizzy:before {
  6889. content: "\f2e8";
  6890. }
  6891. .ti-mood-suprised:before {
  6892. content: "\ec04";
  6893. }
  6894. .ti-mood-tongue:before {
  6895. content: "\eb95";
  6896. }
  6897. .ti-mood-tongue-wink:before {
  6898. content: "\f2ea";
  6899. }
  6900. .ti-mood-tongue-wink-2:before {
  6901. content: "\f2e9";
  6902. }
  6903. .ti-mood-unamused:before {
  6904. content: "\f2eb";
  6905. }
  6906. .ti-mood-wink:before {
  6907. content: "\f2ed";
  6908. }
  6909. .ti-mood-wink-2:before {
  6910. content: "\f2ec";
  6911. }
  6912. .ti-mood-wrrr:before {
  6913. content: "\f2ee";
  6914. }
  6915. .ti-mood-xd:before {
  6916. content: "\f2ef";
  6917. }
  6918. .ti-moon:before {
  6919. content: "\eaf8";
  6920. }
  6921. .ti-moon-2:before {
  6922. content: "\ece6";
  6923. }
  6924. .ti-moon-filled:before {
  6925. content: "\f684";
  6926. }
  6927. .ti-moon-off:before {
  6928. content: "\f162";
  6929. }
  6930. .ti-moon-stars:before {
  6931. content: "\ece7";
  6932. }
  6933. .ti-moped:before {
  6934. content: "\ecbc";
  6935. }
  6936. .ti-motorbike:before {
  6937. content: "\eeb6";
  6938. }
  6939. .ti-mountain:before {
  6940. content: "\ef97";
  6941. }
  6942. .ti-mountain-off:before {
  6943. content: "\f411";
  6944. }
  6945. .ti-mouse:before {
  6946. content: "\eaf9";
  6947. }
  6948. .ti-mouse-2:before {
  6949. content: "\f1d7";
  6950. }
  6951. .ti-mouse-off:before {
  6952. content: "\f163";
  6953. }
  6954. .ti-moustache:before {
  6955. content: "\f4c9";
  6956. }
  6957. .ti-movie:before {
  6958. content: "\eafa";
  6959. }
  6960. .ti-movie-off:before {
  6961. content: "\f164";
  6962. }
  6963. .ti-mug:before {
  6964. content: "\eafb";
  6965. }
  6966. .ti-mug-off:before {
  6967. content: "\f165";
  6968. }
  6969. .ti-multiplier-0-5x:before {
  6970. content: "\ef41";
  6971. }
  6972. .ti-multiplier-1-5x:before {
  6973. content: "\ef42";
  6974. }
  6975. .ti-multiplier-1x:before {
  6976. content: "\ef43";
  6977. }
  6978. .ti-multiplier-2x:before {
  6979. content: "\ef44";
  6980. }
  6981. .ti-mushroom:before {
  6982. content: "\ef14";
  6983. }
  6984. .ti-mushroom-off:before {
  6985. content: "\f412";
  6986. }
  6987. .ti-music:before {
  6988. content: "\eafc";
  6989. }
  6990. .ti-music-off:before {
  6991. content: "\f166";
  6992. }
  6993. .ti-navigation:before {
  6994. content: "\f2c8";
  6995. }
  6996. .ti-navigation-filled:before {
  6997. content: "\f685";
  6998. }
  6999. .ti-navigation-off:before {
  7000. content: "\f413";
  7001. }
  7002. .ti-needle:before {
  7003. content: "\f508";
  7004. }
  7005. .ti-needle-thread:before {
  7006. content: "\f507";
  7007. }
  7008. .ti-network:before {
  7009. content: "\f09f";
  7010. }
  7011. .ti-network-off:before {
  7012. content: "\f414";
  7013. }
  7014. .ti-new-section:before {
  7015. content: "\ebc1";
  7016. }
  7017. .ti-news:before {
  7018. content: "\eafd";
  7019. }
  7020. .ti-news-off:before {
  7021. content: "\f167";
  7022. }
  7023. .ti-nfc:before {
  7024. content: "\eeb7";
  7025. }
  7026. .ti-nfc-off:before {
  7027. content: "\f168";
  7028. }
  7029. .ti-no-copyright:before {
  7030. content: "\efb9";
  7031. }
  7032. .ti-no-creative-commons:before {
  7033. content: "\efba";
  7034. }
  7035. .ti-no-derivatives:before {
  7036. content: "\efbb";
  7037. }
  7038. .ti-north-star:before {
  7039. content: "\f014";
  7040. }
  7041. .ti-note:before {
  7042. content: "\eb6d";
  7043. }
  7044. .ti-note-off:before {
  7045. content: "\f169";
  7046. }
  7047. .ti-notebook:before {
  7048. content: "\eb96";
  7049. }
  7050. .ti-notebook-off:before {
  7051. content: "\f415";
  7052. }
  7053. .ti-notes:before {
  7054. content: "\eb6e";
  7055. }
  7056. .ti-notes-off:before {
  7057. content: "\f16a";
  7058. }
  7059. .ti-notification:before {
  7060. content: "\eafe";
  7061. }
  7062. .ti-notification-off:before {
  7063. content: "\f16b";
  7064. }
  7065. .ti-number:before {
  7066. content: "\f1fe";
  7067. }
  7068. .ti-number-0:before {
  7069. content: "\edf0";
  7070. }
  7071. .ti-number-1:before {
  7072. content: "\edf1";
  7073. }
  7074. .ti-number-2:before {
  7075. content: "\edf2";
  7076. }
  7077. .ti-number-3:before {
  7078. content: "\edf3";
  7079. }
  7080. .ti-number-4:before {
  7081. content: "\edf4";
  7082. }
  7083. .ti-number-5:before {
  7084. content: "\edf5";
  7085. }
  7086. .ti-number-6:before {
  7087. content: "\edf6";
  7088. }
  7089. .ti-number-7:before {
  7090. content: "\edf7";
  7091. }
  7092. .ti-number-8:before {
  7093. content: "\edf8";
  7094. }
  7095. .ti-number-9:before {
  7096. content: "\edf9";
  7097. }
  7098. .ti-numbers:before {
  7099. content: "\f015";
  7100. }
  7101. .ti-nurse:before {
  7102. content: "\ef65";
  7103. }
  7104. .ti-octagon:before {
  7105. content: "\ecbd";
  7106. }
  7107. .ti-octagon-filled:before {
  7108. content: "\f686";
  7109. }
  7110. .ti-octagon-off:before {
  7111. content: "\eeb8";
  7112. }
  7113. .ti-old:before {
  7114. content: "\eeb9";
  7115. }
  7116. .ti-olympics:before {
  7117. content: "\eeba";
  7118. }
  7119. .ti-olympics-off:before {
  7120. content: "\f416";
  7121. }
  7122. .ti-om:before {
  7123. content: "\f58d";
  7124. }
  7125. .ti-omega:before {
  7126. content: "\eb97";
  7127. }
  7128. .ti-outbound:before {
  7129. content: "\f249";
  7130. }
  7131. .ti-outlet:before {
  7132. content: "\ebd7";
  7133. }
  7134. .ti-oval:before {
  7135. content: "\f02e";
  7136. }
  7137. .ti-oval-filled:before {
  7138. content: "\f687";
  7139. }
  7140. .ti-oval-vertical:before {
  7141. content: "\f02d";
  7142. }
  7143. .ti-oval-vertical-filled:before {
  7144. content: "\f688";
  7145. }
  7146. .ti-overline:before {
  7147. content: "\eebb";
  7148. }
  7149. .ti-package:before {
  7150. content: "\eaff";
  7151. }
  7152. .ti-package-export:before {
  7153. content: "\f07a";
  7154. }
  7155. .ti-package-import:before {
  7156. content: "\f07b";
  7157. }
  7158. .ti-package-off:before {
  7159. content: "\f16c";
  7160. }
  7161. .ti-packages:before {
  7162. content: "\f2c9";
  7163. }
  7164. .ti-pacman:before {
  7165. content: "\eebc";
  7166. }
  7167. .ti-page-break:before {
  7168. content: "\ec81";
  7169. }
  7170. .ti-paint:before {
  7171. content: "\eb00";
  7172. }
  7173. .ti-paint-filled:before {
  7174. content: "\f75f";
  7175. }
  7176. .ti-paint-off:before {
  7177. content: "\f16d";
  7178. }
  7179. .ti-palette:before {
  7180. content: "\eb01";
  7181. }
  7182. .ti-palette-off:before {
  7183. content: "\f16e";
  7184. }
  7185. .ti-panorama-horizontal:before {
  7186. content: "\ed33";
  7187. }
  7188. .ti-panorama-horizontal-off:before {
  7189. content: "\f417";
  7190. }
  7191. .ti-panorama-vertical:before {
  7192. content: "\ed34";
  7193. }
  7194. .ti-panorama-vertical-off:before {
  7195. content: "\f418";
  7196. }
  7197. .ti-paper-bag:before {
  7198. content: "\f02f";
  7199. }
  7200. .ti-paper-bag-off:before {
  7201. content: "\f16f";
  7202. }
  7203. .ti-paperclip:before {
  7204. content: "\eb02";
  7205. }
  7206. .ti-parachute:before {
  7207. content: "\ed7c";
  7208. }
  7209. .ti-parachute-off:before {
  7210. content: "\f170";
  7211. }
  7212. .ti-parentheses:before {
  7213. content: "\ebd8";
  7214. }
  7215. .ti-parentheses-off:before {
  7216. content: "\f171";
  7217. }
  7218. .ti-parking:before {
  7219. content: "\eb03";
  7220. }
  7221. .ti-parking-off:before {
  7222. content: "\f172";
  7223. }
  7224. .ti-password:before {
  7225. content: "\f4ca";
  7226. }
  7227. .ti-paw:before {
  7228. content: "\eff9";
  7229. }
  7230. .ti-paw-filled:before {
  7231. content: "\f689";
  7232. }
  7233. .ti-paw-off:before {
  7234. content: "\f419";
  7235. }
  7236. .ti-peace:before {
  7237. content: "\ecbe";
  7238. }
  7239. .ti-pencil:before {
  7240. content: "\eb04";
  7241. }
  7242. .ti-pencil-minus:before {
  7243. content: "\f1eb";
  7244. }
  7245. .ti-pencil-off:before {
  7246. content: "\f173";
  7247. }
  7248. .ti-pencil-plus:before {
  7249. content: "\f1ec";
  7250. }
  7251. .ti-pennant:before {
  7252. content: "\ed7d";
  7253. }
  7254. .ti-pennant-2:before {
  7255. content: "\f06a";
  7256. }
  7257. .ti-pennant-2-filled:before {
  7258. content: "\f68a";
  7259. }
  7260. .ti-pennant-filled:before {
  7261. content: "\f68b";
  7262. }
  7263. .ti-pennant-off:before {
  7264. content: "\f174";
  7265. }
  7266. .ti-pentagon:before {
  7267. content: "\efe3";
  7268. }
  7269. .ti-pentagon-filled:before {
  7270. content: "\f68c";
  7271. }
  7272. .ti-pentagon-off:before {
  7273. content: "\f41a";
  7274. }
  7275. .ti-pentagram:before {
  7276. content: "\f586";
  7277. }
  7278. .ti-pepper:before {
  7279. content: "\ef15";
  7280. }
  7281. .ti-pepper-off:before {
  7282. content: "\f175";
  7283. }
  7284. .ti-percentage:before {
  7285. content: "\ecf4";
  7286. }
  7287. .ti-perfume:before {
  7288. content: "\f509";
  7289. }
  7290. .ti-perspective:before {
  7291. content: "\eebd";
  7292. }
  7293. .ti-perspective-off:before {
  7294. content: "\f176";
  7295. }
  7296. .ti-phone:before {
  7297. content: "\eb09";
  7298. }
  7299. .ti-phone-call:before {
  7300. content: "\eb05";
  7301. }
  7302. .ti-phone-calling:before {
  7303. content: "\ec43";
  7304. }
  7305. .ti-phone-check:before {
  7306. content: "\ec05";
  7307. }
  7308. .ti-phone-incoming:before {
  7309. content: "\eb06";
  7310. }
  7311. .ti-phone-off:before {
  7312. content: "\ecf5";
  7313. }
  7314. .ti-phone-outgoing:before {
  7315. content: "\eb07";
  7316. }
  7317. .ti-phone-pause:before {
  7318. content: "\eb08";
  7319. }
  7320. .ti-phone-plus:before {
  7321. content: "\ec06";
  7322. }
  7323. .ti-phone-x:before {
  7324. content: "\ec07";
  7325. }
  7326. .ti-photo:before {
  7327. content: "\eb0a";
  7328. }
  7329. .ti-photo-cancel:before {
  7330. content: "\f35d";
  7331. }
  7332. .ti-photo-check:before {
  7333. content: "\f35e";
  7334. }
  7335. .ti-photo-down:before {
  7336. content: "\f35f";
  7337. }
  7338. .ti-photo-edit:before {
  7339. content: "\f360";
  7340. }
  7341. .ti-photo-heart:before {
  7342. content: "\f361";
  7343. }
  7344. .ti-photo-minus:before {
  7345. content: "\f362";
  7346. }
  7347. .ti-photo-off:before {
  7348. content: "\ecf6";
  7349. }
  7350. .ti-photo-plus:before {
  7351. content: "\f363";
  7352. }
  7353. .ti-photo-search:before {
  7354. content: "\f364";
  7355. }
  7356. .ti-photo-sensor:before {
  7357. content: "\f798";
  7358. }
  7359. .ti-photo-sensor-2:before {
  7360. content: "\f796";
  7361. }
  7362. .ti-photo-sensor-3:before {
  7363. content: "\f797";
  7364. }
  7365. .ti-photo-shield:before {
  7366. content: "\f365";
  7367. }
  7368. .ti-photo-star:before {
  7369. content: "\f366";
  7370. }
  7371. .ti-photo-up:before {
  7372. content: "\f38b";
  7373. }
  7374. .ti-photo-x:before {
  7375. content: "\f367";
  7376. }
  7377. .ti-physotherapist:before {
  7378. content: "\eebe";
  7379. }
  7380. .ti-picture-in-picture:before {
  7381. content: "\ed35";
  7382. }
  7383. .ti-picture-in-picture-off:before {
  7384. content: "\ed43";
  7385. }
  7386. .ti-picture-in-picture-on:before {
  7387. content: "\ed44";
  7388. }
  7389. .ti-picture-in-picture-top:before {
  7390. content: "\efe4";
  7391. }
  7392. .ti-pig:before {
  7393. content: "\ef52";
  7394. }
  7395. .ti-pig-money:before {
  7396. content: "\f38c";
  7397. }
  7398. .ti-pig-off:before {
  7399. content: "\f177";
  7400. }
  7401. .ti-pilcrow:before {
  7402. content: "\f5f6";
  7403. }
  7404. .ti-pill:before {
  7405. content: "\ec44";
  7406. }
  7407. .ti-pill-off:before {
  7408. content: "\f178";
  7409. }
  7410. .ti-pills:before {
  7411. content: "\ef66";
  7412. }
  7413. .ti-pin:before {
  7414. content: "\ec9c";
  7415. }
  7416. .ti-pin-filled:before {
  7417. content: "\f68d";
  7418. }
  7419. .ti-ping-pong:before {
  7420. content: "\f38d";
  7421. }
  7422. .ti-pinned:before {
  7423. content: "\ed60";
  7424. }
  7425. .ti-pinned-filled:before {
  7426. content: "\f68e";
  7427. }
  7428. .ti-pinned-off:before {
  7429. content: "\ed5f";
  7430. }
  7431. .ti-pizza:before {
  7432. content: "\edbb";
  7433. }
  7434. .ti-pizza-off:before {
  7435. content: "\f179";
  7436. }
  7437. .ti-placeholder:before {
  7438. content: "\f626";
  7439. }
  7440. .ti-plane:before {
  7441. content: "\eb6f";
  7442. }
  7443. .ti-plane-arrival:before {
  7444. content: "\eb99";
  7445. }
  7446. .ti-plane-departure:before {
  7447. content: "\eb9a";
  7448. }
  7449. .ti-plane-inflight:before {
  7450. content: "\ef98";
  7451. }
  7452. .ti-plane-off:before {
  7453. content: "\f17a";
  7454. }
  7455. .ti-plane-tilt:before {
  7456. content: "\f1ed";
  7457. }
  7458. .ti-planet:before {
  7459. content: "\ec08";
  7460. }
  7461. .ti-planet-off:before {
  7462. content: "\f17b";
  7463. }
  7464. .ti-plant:before {
  7465. content: "\ed50";
  7466. }
  7467. .ti-plant-2:before {
  7468. content: "\ed7e";
  7469. }
  7470. .ti-plant-2-off:before {
  7471. content: "\f17c";
  7472. }
  7473. .ti-plant-off:before {
  7474. content: "\f17d";
  7475. }
  7476. .ti-play-card:before {
  7477. content: "\eebf";
  7478. }
  7479. .ti-play-card-off:before {
  7480. content: "\f17e";
  7481. }
  7482. .ti-player-eject:before {
  7483. content: "\efbc";
  7484. }
  7485. .ti-player-eject-filled:before {
  7486. content: "\f68f";
  7487. }
  7488. .ti-player-pause:before {
  7489. content: "\ed45";
  7490. }
  7491. .ti-player-pause-filled:before {
  7492. content: "\f690";
  7493. }
  7494. .ti-player-play:before {
  7495. content: "\ed46";
  7496. }
  7497. .ti-player-play-filled:before {
  7498. content: "\f691";
  7499. }
  7500. .ti-player-record:before {
  7501. content: "\ed47";
  7502. }
  7503. .ti-player-record-filled:before {
  7504. content: "\f692";
  7505. }
  7506. .ti-player-skip-back:before {
  7507. content: "\ed48";
  7508. }
  7509. .ti-player-skip-back-filled:before {
  7510. content: "\f693";
  7511. }
  7512. .ti-player-skip-forward:before {
  7513. content: "\ed49";
  7514. }
  7515. .ti-player-skip-forward-filled:before {
  7516. content: "\f694";
  7517. }
  7518. .ti-player-stop:before {
  7519. content: "\ed4a";
  7520. }
  7521. .ti-player-stop-filled:before {
  7522. content: "\f695";
  7523. }
  7524. .ti-player-track-next:before {
  7525. content: "\ed4b";
  7526. }
  7527. .ti-player-track-next-filled:before {
  7528. content: "\f696";
  7529. }
  7530. .ti-player-track-prev:before {
  7531. content: "\ed4c";
  7532. }
  7533. .ti-player-track-prev-filled:before {
  7534. content: "\f697";
  7535. }
  7536. .ti-playlist:before {
  7537. content: "\eec0";
  7538. }
  7539. .ti-playlist-add:before {
  7540. content: "\f008";
  7541. }
  7542. .ti-playlist-off:before {
  7543. content: "\f17f";
  7544. }
  7545. .ti-playlist-x:before {
  7546. content: "\f009";
  7547. }
  7548. .ti-playstation-circle:before {
  7549. content: "\f2ad";
  7550. }
  7551. .ti-playstation-square:before {
  7552. content: "\f2ae";
  7553. }
  7554. .ti-playstation-triangle:before {
  7555. content: "\f2af";
  7556. }
  7557. .ti-playstation-x:before {
  7558. content: "\f2b0";
  7559. }
  7560. .ti-plug:before {
  7561. content: "\ebd9";
  7562. }
  7563. .ti-plug-connected:before {
  7564. content: "\f00a";
  7565. }
  7566. .ti-plug-connected-x:before {
  7567. content: "\f0a0";
  7568. }
  7569. .ti-plug-off:before {
  7570. content: "\f180";
  7571. }
  7572. .ti-plug-x:before {
  7573. content: "\f0a1";
  7574. }
  7575. .ti-plus:before {
  7576. content: "\eb0b";
  7577. }
  7578. .ti-png:before {
  7579. content: "\f3ad";
  7580. }
  7581. .ti-podium:before {
  7582. content: "\f1d8";
  7583. }
  7584. .ti-podium-off:before {
  7585. content: "\f41b";
  7586. }
  7587. .ti-point:before {
  7588. content: "\eb0c";
  7589. }
  7590. .ti-point-filled:before {
  7591. content: "\f698";
  7592. }
  7593. .ti-point-off:before {
  7594. content: "\f181";
  7595. }
  7596. .ti-pointer:before {
  7597. content: "\f265";
  7598. }
  7599. .ti-pokeball:before {
  7600. content: "\eec1";
  7601. }
  7602. .ti-pokeball-off:before {
  7603. content: "\f41c";
  7604. }
  7605. .ti-poker-chip:before {
  7606. content: "\f515";
  7607. }
  7608. .ti-polaroid:before {
  7609. content: "\eec2";
  7610. }
  7611. .ti-polygon:before {
  7612. content: "\efd0";
  7613. }
  7614. .ti-polygon-off:before {
  7615. content: "\f182";
  7616. }
  7617. .ti-poo:before {
  7618. content: "\f258";
  7619. }
  7620. .ti-pool:before {
  7621. content: "\ed91";
  7622. }
  7623. .ti-pool-off:before {
  7624. content: "\f41d";
  7625. }
  7626. .ti-power:before {
  7627. content: "\eb0d";
  7628. }
  7629. .ti-pray:before {
  7630. content: "\ecbf";
  7631. }
  7632. .ti-premium-rights:before {
  7633. content: "\efbd";
  7634. }
  7635. .ti-prescription:before {
  7636. content: "\ef99";
  7637. }
  7638. .ti-presentation:before {
  7639. content: "\eb70";
  7640. }
  7641. .ti-presentation-analytics:before {
  7642. content: "\eec3";
  7643. }
  7644. .ti-presentation-off:before {
  7645. content: "\f183";
  7646. }
  7647. .ti-printer:before {
  7648. content: "\eb0e";
  7649. }
  7650. .ti-printer-off:before {
  7651. content: "\f184";
  7652. }
  7653. .ti-prison:before {
  7654. content: "\ef79";
  7655. }
  7656. .ti-prompt:before {
  7657. content: "\eb0f";
  7658. }
  7659. .ti-propeller:before {
  7660. content: "\eec4";
  7661. }
  7662. .ti-propeller-off:before {
  7663. content: "\f185";
  7664. }
  7665. .ti-pumpkin-scary:before {
  7666. content: "\f587";
  7667. }
  7668. .ti-puzzle:before {
  7669. content: "\eb10";
  7670. }
  7671. .ti-puzzle-2:before {
  7672. content: "\ef83";
  7673. }
  7674. .ti-puzzle-filled:before {
  7675. content: "\f699";
  7676. }
  7677. .ti-puzzle-off:before {
  7678. content: "\f186";
  7679. }
  7680. .ti-pyramid:before {
  7681. content: "\eec5";
  7682. }
  7683. .ti-pyramid-off:before {
  7684. content: "\f187";
  7685. }
  7686. .ti-qrcode:before {
  7687. content: "\eb11";
  7688. }
  7689. .ti-qrcode-off:before {
  7690. content: "\f41e";
  7691. }
  7692. .ti-question-circle:before {
  7693. content: "\f637";
  7694. }
  7695. .ti-question-mark:before {
  7696. content: "\ec9d";
  7697. }
  7698. .ti-quote:before {
  7699. content: "\efbe";
  7700. }
  7701. .ti-quote-off:before {
  7702. content: "\f188";
  7703. }
  7704. .ti-radar:before {
  7705. content: "\f017";
  7706. }
  7707. .ti-radar-2:before {
  7708. content: "\f016";
  7709. }
  7710. .ti-radar-off:before {
  7711. content: "\f41f";
  7712. }
  7713. .ti-radio:before {
  7714. content: "\ef2d";
  7715. }
  7716. .ti-radio-off:before {
  7717. content: "\f420";
  7718. }
  7719. .ti-radioactive:before {
  7720. content: "\ecc0";
  7721. }
  7722. .ti-radioactive-filled:before {
  7723. content: "\f760";
  7724. }
  7725. .ti-radioactive-off:before {
  7726. content: "\f189";
  7727. }
  7728. .ti-radius-bottom-left:before {
  7729. content: "\eec6";
  7730. }
  7731. .ti-radius-bottom-right:before {
  7732. content: "\eec7";
  7733. }
  7734. .ti-radius-top-left:before {
  7735. content: "\eec8";
  7736. }
  7737. .ti-radius-top-right:before {
  7738. content: "\eec9";
  7739. }
  7740. .ti-rainbow:before {
  7741. content: "\edbc";
  7742. }
  7743. .ti-rainbow-off:before {
  7744. content: "\f18a";
  7745. }
  7746. .ti-rating-12-plus:before {
  7747. content: "\f266";
  7748. }
  7749. .ti-rating-14-plus:before {
  7750. content: "\f267";
  7751. }
  7752. .ti-rating-16-plus:before {
  7753. content: "\f268";
  7754. }
  7755. .ti-rating-18-plus:before {
  7756. content: "\f269";
  7757. }
  7758. .ti-rating-21-plus:before {
  7759. content: "\f26a";
  7760. }
  7761. .ti-razor:before {
  7762. content: "\f4b5";
  7763. }
  7764. .ti-razor-electric:before {
  7765. content: "\f4b4";
  7766. }
  7767. .ti-receipt:before {
  7768. content: "\edfd";
  7769. }
  7770. .ti-receipt-2:before {
  7771. content: "\edfa";
  7772. }
  7773. .ti-receipt-off:before {
  7774. content: "\edfb";
  7775. }
  7776. .ti-receipt-refund:before {
  7777. content: "\edfc";
  7778. }
  7779. .ti-receipt-tax:before {
  7780. content: "\edbd";
  7781. }
  7782. .ti-recharging:before {
  7783. content: "\eeca";
  7784. }
  7785. .ti-record-mail:before {
  7786. content: "\eb12";
  7787. }
  7788. .ti-record-mail-off:before {
  7789. content: "\f18b";
  7790. }
  7791. .ti-rectangle:before {
  7792. content: "\ed37";
  7793. }
  7794. .ti-rectangle-filled:before {
  7795. content: "\f69a";
  7796. }
  7797. .ti-rectangle-vertical:before {
  7798. content: "\ed36";
  7799. }
  7800. .ti-rectangle-vertical-filled:before {
  7801. content: "\f69b";
  7802. }
  7803. .ti-recycle:before {
  7804. content: "\eb9b";
  7805. }
  7806. .ti-recycle-off:before {
  7807. content: "\f18c";
  7808. }
  7809. .ti-refresh:before {
  7810. content: "\eb13";
  7811. }
  7812. .ti-refresh-alert:before {
  7813. content: "\ed57";
  7814. }
  7815. .ti-refresh-dot:before {
  7816. content: "\efbf";
  7817. }
  7818. .ti-refresh-off:before {
  7819. content: "\f18d";
  7820. }
  7821. .ti-regex:before {
  7822. content: "\f31f";
  7823. }
  7824. .ti-regex-off:before {
  7825. content: "\f421";
  7826. }
  7827. .ti-registered:before {
  7828. content: "\eb14";
  7829. }
  7830. .ti-relation-many-to-many:before {
  7831. content: "\ed7f";
  7832. }
  7833. .ti-relation-one-to-many:before {
  7834. content: "\ed80";
  7835. }
  7836. .ti-relation-one-to-one:before {
  7837. content: "\ed81";
  7838. }
  7839. .ti-reload:before {
  7840. content: "\f3ae";
  7841. }
  7842. .ti-repeat:before {
  7843. content: "\eb72";
  7844. }
  7845. .ti-repeat-off:before {
  7846. content: "\f18e";
  7847. }
  7848. .ti-repeat-once:before {
  7849. content: "\eb71";
  7850. }
  7851. .ti-replace:before {
  7852. content: "\ebc7";
  7853. }
  7854. .ti-replace-filled:before {
  7855. content: "\f69c";
  7856. }
  7857. .ti-replace-off:before {
  7858. content: "\f422";
  7859. }
  7860. .ti-report:before {
  7861. content: "\eece";
  7862. }
  7863. .ti-report-analytics:before {
  7864. content: "\eecb";
  7865. }
  7866. .ti-report-medical:before {
  7867. content: "\eecc";
  7868. }
  7869. .ti-report-money:before {
  7870. content: "\eecd";
  7871. }
  7872. .ti-report-off:before {
  7873. content: "\f18f";
  7874. }
  7875. .ti-report-search:before {
  7876. content: "\ef84";
  7877. }
  7878. .ti-resize:before {
  7879. content: "\eecf";
  7880. }
  7881. .ti-ribbon-health:before {
  7882. content: "\f58e";
  7883. }
  7884. .ti-ripple:before {
  7885. content: "\ed82";
  7886. }
  7887. .ti-ripple-off:before {
  7888. content: "\f190";
  7889. }
  7890. .ti-road:before {
  7891. content: "\f018";
  7892. }
  7893. .ti-road-off:before {
  7894. content: "\f191";
  7895. }
  7896. .ti-road-sign:before {
  7897. content: "\ecdd";
  7898. }
  7899. .ti-robot:before {
  7900. content: "\f00b";
  7901. }
  7902. .ti-robot-off:before {
  7903. content: "\f192";
  7904. }
  7905. .ti-rocket:before {
  7906. content: "\ec45";
  7907. }
  7908. .ti-rocket-off:before {
  7909. content: "\f193";
  7910. }
  7911. .ti-roller-skating:before {
  7912. content: "\efd1";
  7913. }
  7914. .ti-rollercoaster:before {
  7915. content: "\f0a2";
  7916. }
  7917. .ti-rollercoaster-off:before {
  7918. content: "\f423";
  7919. }
  7920. .ti-rosette:before {
  7921. content: "\f599";
  7922. }
  7923. .ti-rosette-filled:before {
  7924. content: "\f69d";
  7925. }
  7926. .ti-rosette-number-0:before {
  7927. content: "\f58f";
  7928. }
  7929. .ti-rosette-number-1:before {
  7930. content: "\f590";
  7931. }
  7932. .ti-rosette-number-2:before {
  7933. content: "\f591";
  7934. }
  7935. .ti-rosette-number-3:before {
  7936. content: "\f592";
  7937. }
  7938. .ti-rosette-number-4:before {
  7939. content: "\f593";
  7940. }
  7941. .ti-rosette-number-5:before {
  7942. content: "\f594";
  7943. }
  7944. .ti-rosette-number-6:before {
  7945. content: "\f595";
  7946. }
  7947. .ti-rosette-number-7:before {
  7948. content: "\f596";
  7949. }
  7950. .ti-rosette-number-8:before {
  7951. content: "\f597";
  7952. }
  7953. .ti-rosette-number-9:before {
  7954. content: "\f598";
  7955. }
  7956. .ti-rotate:before {
  7957. content: "\eb16";
  7958. }
  7959. .ti-rotate-2:before {
  7960. content: "\ebb4";
  7961. }
  7962. .ti-rotate-360:before {
  7963. content: "\ef85";
  7964. }
  7965. .ti-rotate-clockwise:before {
  7966. content: "\eb15";
  7967. }
  7968. .ti-rotate-clockwise-2:before {
  7969. content: "\ebb5";
  7970. }
  7971. .ti-rotate-dot:before {
  7972. content: "\efe5";
  7973. }
  7974. .ti-rotate-rectangle:before {
  7975. content: "\ec15";
  7976. }
  7977. .ti-route:before {
  7978. content: "\eb17";
  7979. }
  7980. .ti-route-2:before {
  7981. content: "\f4b6";
  7982. }
  7983. .ti-route-off:before {
  7984. content: "\f194";
  7985. }
  7986. .ti-router:before {
  7987. content: "\eb18";
  7988. }
  7989. .ti-router-off:before {
  7990. content: "\f424";
  7991. }
  7992. .ti-row-insert-bottom:before {
  7993. content: "\eed0";
  7994. }
  7995. .ti-row-insert-top:before {
  7996. content: "\eed1";
  7997. }
  7998. .ti-rss:before {
  7999. content: "\eb19";
  8000. }
  8001. .ti-rubber-stamp:before {
  8002. content: "\f5ab";
  8003. }
  8004. .ti-rubber-stamp-off:before {
  8005. content: "\f5aa";
  8006. }
  8007. .ti-ruler:before {
  8008. content: "\eb1a";
  8009. }
  8010. .ti-ruler-2:before {
  8011. content: "\eed2";
  8012. }
  8013. .ti-ruler-2-off:before {
  8014. content: "\f195";
  8015. }
  8016. .ti-ruler-3:before {
  8017. content: "\f290";
  8018. }
  8019. .ti-ruler-measure:before {
  8020. content: "\f291";
  8021. }
  8022. .ti-ruler-off:before {
  8023. content: "\f196";
  8024. }
  8025. .ti-run:before {
  8026. content: "\ec82";
  8027. }
  8028. .ti-s-turn-down:before {
  8029. content: "\f516";
  8030. }
  8031. .ti-s-turn-left:before {
  8032. content: "\f517";
  8033. }
  8034. .ti-s-turn-right:before {
  8035. content: "\f518";
  8036. }
  8037. .ti-s-turn-up:before {
  8038. content: "\f519";
  8039. }
  8040. .ti-sailboat:before {
  8041. content: "\ec83";
  8042. }
  8043. .ti-sailboat-2:before {
  8044. content: "\f5f7";
  8045. }
  8046. .ti-sailboat-off:before {
  8047. content: "\f425";
  8048. }
  8049. .ti-salad:before {
  8050. content: "\f50a";
  8051. }
  8052. .ti-salt:before {
  8053. content: "\ef16";
  8054. }
  8055. .ti-satellite:before {
  8056. content: "\eed3";
  8057. }
  8058. .ti-satellite-off:before {
  8059. content: "\f197";
  8060. }
  8061. .ti-sausage:before {
  8062. content: "\ef17";
  8063. }
  8064. .ti-scale:before {
  8065. content: "\ebc2";
  8066. }
  8067. .ti-scale-off:before {
  8068. content: "\f198";
  8069. }
  8070. .ti-scale-outline:before {
  8071. content: "\ef53";
  8072. }
  8073. .ti-scale-outline-off:before {
  8074. content: "\f199";
  8075. }
  8076. .ti-scan:before {
  8077. content: "\ebc8";
  8078. }
  8079. .ti-scan-eye:before {
  8080. content: "\f1ff";
  8081. }
  8082. .ti-schema:before {
  8083. content: "\f200";
  8084. }
  8085. .ti-schema-off:before {
  8086. content: "\f426";
  8087. }
  8088. .ti-school:before {
  8089. content: "\ecf7";
  8090. }
  8091. .ti-school-bell:before {
  8092. content: "\f64a";
  8093. }
  8094. .ti-school-off:before {
  8095. content: "\f19a";
  8096. }
  8097. .ti-scissors:before {
  8098. content: "\eb1b";
  8099. }
  8100. .ti-scissors-off:before {
  8101. content: "\f19b";
  8102. }
  8103. .ti-scooter:before {
  8104. content: "\ec6c";
  8105. }
  8106. .ti-scooter-electric:before {
  8107. content: "\ecc1";
  8108. }
  8109. .ti-screen-share:before {
  8110. content: "\ed18";
  8111. }
  8112. .ti-screen-share-off:before {
  8113. content: "\ed17";
  8114. }
  8115. .ti-screenshot:before {
  8116. content: "\f201";
  8117. }
  8118. .ti-scribble:before {
  8119. content: "\f0a3";
  8120. }
  8121. .ti-scribble-off:before {
  8122. content: "\f427";
  8123. }
  8124. .ti-script:before {
  8125. content: "\f2da";
  8126. }
  8127. .ti-script-minus:before {
  8128. content: "\f2d7";
  8129. }
  8130. .ti-script-plus:before {
  8131. content: "\f2d8";
  8132. }
  8133. .ti-script-x:before {
  8134. content: "\f2d9";
  8135. }
  8136. .ti-scuba-mask:before {
  8137. content: "\eed4";
  8138. }
  8139. .ti-scuba-mask-off:before {
  8140. content: "\f428";
  8141. }
  8142. .ti-sdk:before {
  8143. content: "\f3af";
  8144. }
  8145. .ti-search:before {
  8146. content: "\eb1c";
  8147. }
  8148. .ti-search-off:before {
  8149. content: "\f19c";
  8150. }
  8151. .ti-section:before {
  8152. content: "\eed5";
  8153. }
  8154. .ti-section-sign:before {
  8155. content: "\f019";
  8156. }
  8157. .ti-seeding:before {
  8158. content: "\ed51";
  8159. }
  8160. .ti-seeding-off:before {
  8161. content: "\f19d";
  8162. }
  8163. .ti-select:before {
  8164. content: "\ec9e";
  8165. }
  8166. .ti-selector:before {
  8167. content: "\eb1d";
  8168. }
  8169. .ti-send:before {
  8170. content: "\eb1e";
  8171. }
  8172. .ti-send-off:before {
  8173. content: "\f429";
  8174. }
  8175. .ti-seo:before {
  8176. content: "\f26b";
  8177. }
  8178. .ti-separator:before {
  8179. content: "\ebda";
  8180. }
  8181. .ti-separator-horizontal:before {
  8182. content: "\ec79";
  8183. }
  8184. .ti-separator-vertical:before {
  8185. content: "\ec7a";
  8186. }
  8187. .ti-server:before {
  8188. content: "\eb1f";
  8189. }
  8190. .ti-server-2:before {
  8191. content: "\f07c";
  8192. }
  8193. .ti-server-bolt:before {
  8194. content: "\f320";
  8195. }
  8196. .ti-server-cog:before {
  8197. content: "\f321";
  8198. }
  8199. .ti-server-off:before {
  8200. content: "\f19e";
  8201. }
  8202. .ti-servicemark:before {
  8203. content: "\ec09";
  8204. }
  8205. .ti-settings:before {
  8206. content: "\eb20";
  8207. }
  8208. .ti-settings-2:before {
  8209. content: "\f5ac";
  8210. }
  8211. .ti-settings-automation:before {
  8212. content: "\eed6";
  8213. }
  8214. .ti-settings-filled:before {
  8215. content: "\f69e";
  8216. }
  8217. .ti-settings-off:before {
  8218. content: "\f19f";
  8219. }
  8220. .ti-shadow:before {
  8221. content: "\eed8";
  8222. }
  8223. .ti-shadow-off:before {
  8224. content: "\eed7";
  8225. }
  8226. .ti-shape:before {
  8227. content: "\eb9c";
  8228. }
  8229. .ti-shape-2:before {
  8230. content: "\eed9";
  8231. }
  8232. .ti-shape-3:before {
  8233. content: "\eeda";
  8234. }
  8235. .ti-shape-off:before {
  8236. content: "\f1a0";
  8237. }
  8238. .ti-share:before {
  8239. content: "\eb21";
  8240. }
  8241. .ti-share-2:before {
  8242. content: "\f799";
  8243. }
  8244. .ti-share-off:before {
  8245. content: "\f1a1";
  8246. }
  8247. .ti-shield:before {
  8248. content: "\eb24";
  8249. }
  8250. .ti-shield-check:before {
  8251. content: "\eb22";
  8252. }
  8253. .ti-shield-check-filled:before {
  8254. content: "\f761";
  8255. }
  8256. .ti-shield-checkered:before {
  8257. content: "\ef9a";
  8258. }
  8259. .ti-shield-checkered-filled:before {
  8260. content: "\f762";
  8261. }
  8262. .ti-shield-chevron:before {
  8263. content: "\ef9b";
  8264. }
  8265. .ti-shield-filled:before {
  8266. content: "\f69f";
  8267. }
  8268. .ti-shield-half:before {
  8269. content: "\f358";
  8270. }
  8271. .ti-shield-half-filled:before {
  8272. content: "\f357";
  8273. }
  8274. .ti-shield-lock:before {
  8275. content: "\ed58";
  8276. }
  8277. .ti-shield-lock-filled:before {
  8278. content: "\f763";
  8279. }
  8280. .ti-shield-off:before {
  8281. content: "\ecf8";
  8282. }
  8283. .ti-shield-x:before {
  8284. content: "\eb23";
  8285. }
  8286. .ti-ship:before {
  8287. content: "\ec84";
  8288. }
  8289. .ti-ship-off:before {
  8290. content: "\f42a";
  8291. }
  8292. .ti-shirt:before {
  8293. content: "\ec0a";
  8294. }
  8295. .ti-shirt-filled:before {
  8296. content: "\f6a0";
  8297. }
  8298. .ti-shirt-off:before {
  8299. content: "\f1a2";
  8300. }
  8301. .ti-shirt-sport:before {
  8302. content: "\f26c";
  8303. }
  8304. .ti-shoe:before {
  8305. content: "\efd2";
  8306. }
  8307. .ti-shoe-off:before {
  8308. content: "\f1a4";
  8309. }
  8310. .ti-shopping-bag:before {
  8311. content: "\f5f8";
  8312. }
  8313. .ti-shopping-cart:before {
  8314. content: "\eb25";
  8315. }
  8316. .ti-shopping-cart-discount:before {
  8317. content: "\eedb";
  8318. }
  8319. .ti-shopping-cart-off:before {
  8320. content: "\eedc";
  8321. }
  8322. .ti-shopping-cart-plus:before {
  8323. content: "\eedd";
  8324. }
  8325. .ti-shopping-cart-x:before {
  8326. content: "\eede";
  8327. }
  8328. .ti-shovel:before {
  8329. content: "\f1d9";
  8330. }
  8331. .ti-shredder:before {
  8332. content: "\eedf";
  8333. }
  8334. .ti-sign-left:before {
  8335. content: "\f06b";
  8336. }
  8337. .ti-sign-left-filled:before {
  8338. content: "\f6a1";
  8339. }
  8340. .ti-sign-right:before {
  8341. content: "\f06c";
  8342. }
  8343. .ti-sign-right-filled:before {
  8344. content: "\f6a2";
  8345. }
  8346. .ti-signal-2g:before {
  8347. content: "\f79a";
  8348. }
  8349. .ti-signal-3g:before {
  8350. content: "\f1ee";
  8351. }
  8352. .ti-signal-4g:before {
  8353. content: "\f1ef";
  8354. }
  8355. .ti-signal-4g-plus:before {
  8356. content: "\f259";
  8357. }
  8358. .ti-signal-5g:before {
  8359. content: "\f1f0";
  8360. }
  8361. .ti-signature:before {
  8362. content: "\eee0";
  8363. }
  8364. .ti-signature-off:before {
  8365. content: "\f1a5";
  8366. }
  8367. .ti-sitemap:before {
  8368. content: "\eb9d";
  8369. }
  8370. .ti-sitemap-off:before {
  8371. content: "\f1a6";
  8372. }
  8373. .ti-skateboard:before {
  8374. content: "\ecc2";
  8375. }
  8376. .ti-skateboard-off:before {
  8377. content: "\f42b";
  8378. }
  8379. .ti-skull:before {
  8380. content: "\f292";
  8381. }
  8382. .ti-slash:before {
  8383. content: "\f4f9";
  8384. }
  8385. .ti-slashes:before {
  8386. content: "\f588";
  8387. }
  8388. .ti-sleigh:before {
  8389. content: "\ef9c";
  8390. }
  8391. .ti-slice:before {
  8392. content: "\ebdb";
  8393. }
  8394. .ti-slideshow:before {
  8395. content: "\ebc9";
  8396. }
  8397. .ti-smart-home:before {
  8398. content: "\ecde";
  8399. }
  8400. .ti-smart-home-off:before {
  8401. content: "\f1a7";
  8402. }
  8403. .ti-smoking:before {
  8404. content: "\ecc4";
  8405. }
  8406. .ti-smoking-no:before {
  8407. content: "\ecc3";
  8408. }
  8409. .ti-snowflake:before {
  8410. content: "\ec0b";
  8411. }
  8412. .ti-snowflake-off:before {
  8413. content: "\f1a8";
  8414. }
  8415. .ti-snowman:before {
  8416. content: "\f26d";
  8417. }
  8418. .ti-soccer-field:before {
  8419. content: "\ed92";
  8420. }
  8421. .ti-social:before {
  8422. content: "\ebec";
  8423. }
  8424. .ti-social-off:before {
  8425. content: "\f1a9";
  8426. }
  8427. .ti-sock:before {
  8428. content: "\eee1";
  8429. }
  8430. .ti-sofa:before {
  8431. content: "\efaf";
  8432. }
  8433. .ti-sofa-off:before {
  8434. content: "\f42c";
  8435. }
  8436. .ti-sort-0-9:before {
  8437. content: "\f54d";
  8438. }
  8439. .ti-sort-9-0:before {
  8440. content: "\f54e";
  8441. }
  8442. .ti-sort-a-z:before {
  8443. content: "\f54f";
  8444. }
  8445. .ti-sort-ascending:before {
  8446. content: "\eb26";
  8447. }
  8448. .ti-sort-ascending-2:before {
  8449. content: "\eee2";
  8450. }
  8451. .ti-sort-ascending-letters:before {
  8452. content: "\ef18";
  8453. }
  8454. .ti-sort-ascending-numbers:before {
  8455. content: "\ef19";
  8456. }
  8457. .ti-sort-descending:before {
  8458. content: "\eb27";
  8459. }
  8460. .ti-sort-descending-2:before {
  8461. content: "\eee3";
  8462. }
  8463. .ti-sort-descending-letters:before {
  8464. content: "\ef1a";
  8465. }
  8466. .ti-sort-descending-numbers:before {
  8467. content: "\ef1b";
  8468. }
  8469. .ti-sort-z-a:before {
  8470. content: "\f550";
  8471. }
  8472. .ti-sos:before {
  8473. content: "\f24a";
  8474. }
  8475. .ti-soup:before {
  8476. content: "\ef2e";
  8477. }
  8478. .ti-soup-off:before {
  8479. content: "\f42d";
  8480. }
  8481. .ti-source-code:before {
  8482. content: "\f4a2";
  8483. }
  8484. .ti-space:before {
  8485. content: "\ec0c";
  8486. }
  8487. .ti-space-off:before {
  8488. content: "\f1aa";
  8489. }
  8490. .ti-spacing-horizontal:before {
  8491. content: "\ef54";
  8492. }
  8493. .ti-spacing-vertical:before {
  8494. content: "\ef55";
  8495. }
  8496. .ti-spade:before {
  8497. content: "\effa";
  8498. }
  8499. .ti-spade-filled:before {
  8500. content: "\f6a3";
  8501. }
  8502. .ti-sparkles:before {
  8503. content: "\f6d7";
  8504. }
  8505. .ti-speakerphone:before {
  8506. content: "\ed61";
  8507. }
  8508. .ti-speedboat:before {
  8509. content: "\ed93";
  8510. }
  8511. .ti-spider:before {
  8512. content: "\f293";
  8513. }
  8514. .ti-spiral:before {
  8515. content: "\f294";
  8516. }
  8517. .ti-spiral-off:before {
  8518. content: "\f42e";
  8519. }
  8520. .ti-sport-billard:before {
  8521. content: "\eee4";
  8522. }
  8523. .ti-spray:before {
  8524. content: "\f50b";
  8525. }
  8526. .ti-spy:before {
  8527. content: "\f227";
  8528. }
  8529. .ti-spy-off:before {
  8530. content: "\f42f";
  8531. }
  8532. .ti-square:before {
  8533. content: "\eb2c";
  8534. }
  8535. .ti-square-0-filled:before {
  8536. content: "\f764";
  8537. }
  8538. .ti-square-1-filled:before {
  8539. content: "\f765";
  8540. }
  8541. .ti-square-3-filled:before {
  8542. content: "\f766";
  8543. }
  8544. .ti-square-4-filled:before {
  8545. content: "\f767";
  8546. }
  8547. .ti-square-5-filled:before {
  8548. content: "\f768";
  8549. }
  8550. .ti-square-6-filled:before {
  8551. content: "\f769";
  8552. }
  8553. .ti-square-7-filled:before {
  8554. content: "\f76a";
  8555. }
  8556. .ti-square-8-filled:before {
  8557. content: "\f76b";
  8558. }
  8559. .ti-square-9-filled:before {
  8560. content: "\f76c";
  8561. }
  8562. .ti-square-arrow-down:before {
  8563. content: "\f4b7";
  8564. }
  8565. .ti-square-arrow-left:before {
  8566. content: "\f4b8";
  8567. }
  8568. .ti-square-arrow-right:before {
  8569. content: "\f4b9";
  8570. }
  8571. .ti-square-arrow-up:before {
  8572. content: "\f4ba";
  8573. }
  8574. .ti-square-asterisk:before {
  8575. content: "\f01a";
  8576. }
  8577. .ti-square-check:before {
  8578. content: "\eb28";
  8579. }
  8580. .ti-square-check-filled:before {
  8581. content: "\f76d";
  8582. }
  8583. .ti-square-chevron-down:before {
  8584. content: "\f627";
  8585. }
  8586. .ti-square-chevron-left:before {
  8587. content: "\f628";
  8588. }
  8589. .ti-square-chevron-right:before {
  8590. content: "\f629";
  8591. }
  8592. .ti-square-chevron-up:before {
  8593. content: "\f62a";
  8594. }
  8595. .ti-square-chevrons-down:before {
  8596. content: "\f64b";
  8597. }
  8598. .ti-square-chevrons-left:before {
  8599. content: "\f64c";
  8600. }
  8601. .ti-square-chevrons-right:before {
  8602. content: "\f64d";
  8603. }
  8604. .ti-square-chevrons-up:before {
  8605. content: "\f64e";
  8606. }
  8607. .ti-square-dot:before {
  8608. content: "\ed59";
  8609. }
  8610. .ti-square-f0:before {
  8611. content: "\f526";
  8612. }
  8613. .ti-square-f0-filled:before {
  8614. content: "\f76e";
  8615. }
  8616. .ti-square-f1:before {
  8617. content: "\f527";
  8618. }
  8619. .ti-square-f1-filled:before {
  8620. content: "\f76f";
  8621. }
  8622. .ti-square-f2:before {
  8623. content: "\f528";
  8624. }
  8625. .ti-square-f2-filled:before {
  8626. content: "\f770";
  8627. }
  8628. .ti-square-f3:before {
  8629. content: "\f529";
  8630. }
  8631. .ti-square-f3-filled:before {
  8632. content: "\f771";
  8633. }
  8634. .ti-square-f4:before {
  8635. content: "\f52a";
  8636. }
  8637. .ti-square-f4-filled:before {
  8638. content: "\f772";
  8639. }
  8640. .ti-square-f5:before {
  8641. content: "\f52b";
  8642. }
  8643. .ti-square-f5-filled:before {
  8644. content: "\f773";
  8645. }
  8646. .ti-square-f6:before {
  8647. content: "\f52c";
  8648. }
  8649. .ti-square-f6-filled:before {
  8650. content: "\f774";
  8651. }
  8652. .ti-square-f7:before {
  8653. content: "\f52d";
  8654. }
  8655. .ti-square-f7-filled:before {
  8656. content: "\f775";
  8657. }
  8658. .ti-square-f8:before {
  8659. content: "\f52e";
  8660. }
  8661. .ti-square-f8-filled:before {
  8662. content: "\f776";
  8663. }
  8664. .ti-square-f9:before {
  8665. content: "\f52f";
  8666. }
  8667. .ti-square-f9-filled:before {
  8668. content: "\f777";
  8669. }
  8670. .ti-square-forbid:before {
  8671. content: "\ed5b";
  8672. }
  8673. .ti-square-forbid-2:before {
  8674. content: "\ed5a";
  8675. }
  8676. .ti-square-half:before {
  8677. content: "\effb";
  8678. }
  8679. .ti-square-key:before {
  8680. content: "\f638";
  8681. }
  8682. .ti-square-letter-a:before {
  8683. content: "\f47c";
  8684. }
  8685. .ti-square-letter-b:before {
  8686. content: "\f47d";
  8687. }
  8688. .ti-square-letter-c:before {
  8689. content: "\f47e";
  8690. }
  8691. .ti-square-letter-d:before {
  8692. content: "\f47f";
  8693. }
  8694. .ti-square-letter-e:before {
  8695. content: "\f480";
  8696. }
  8697. .ti-square-letter-f:before {
  8698. content: "\f481";
  8699. }
  8700. .ti-square-letter-g:before {
  8701. content: "\f482";
  8702. }
  8703. .ti-square-letter-h:before {
  8704. content: "\f483";
  8705. }
  8706. .ti-square-letter-i:before {
  8707. content: "\f484";
  8708. }
  8709. .ti-square-letter-j:before {
  8710. content: "\f485";
  8711. }
  8712. .ti-square-letter-k:before {
  8713. content: "\f486";
  8714. }
  8715. .ti-square-letter-l:before {
  8716. content: "\f487";
  8717. }
  8718. .ti-square-letter-m:before {
  8719. content: "\f488";
  8720. }
  8721. .ti-square-letter-n:before {
  8722. content: "\f489";
  8723. }
  8724. .ti-square-letter-o:before {
  8725. content: "\f48a";
  8726. }
  8727. .ti-square-letter-p:before {
  8728. content: "\f48b";
  8729. }
  8730. .ti-square-letter-q:before {
  8731. content: "\f48c";
  8732. }
  8733. .ti-square-letter-r:before {
  8734. content: "\f48d";
  8735. }
  8736. .ti-square-letter-s:before {
  8737. content: "\f48e";
  8738. }
  8739. .ti-square-letter-t:before {
  8740. content: "\f48f";
  8741. }
  8742. .ti-square-letter-u:before {
  8743. content: "\f490";
  8744. }
  8745. .ti-square-letter-v:before {
  8746. content: "\f4bb";
  8747. }
  8748. .ti-square-letter-w:before {
  8749. content: "\f491";
  8750. }
  8751. .ti-square-letter-x:before {
  8752. content: "\f4bc";
  8753. }
  8754. .ti-square-letter-y:before {
  8755. content: "\f492";
  8756. }
  8757. .ti-square-letter-z:before {
  8758. content: "\f493";
  8759. }
  8760. .ti-square-minus:before {
  8761. content: "\eb29";
  8762. }
  8763. .ti-square-number-0:before {
  8764. content: "\eee5";
  8765. }
  8766. .ti-square-number-1:before {
  8767. content: "\eee6";
  8768. }
  8769. .ti-square-number-2:before {
  8770. content: "\eee7";
  8771. }
  8772. .ti-square-number-3:before {
  8773. content: "\eee8";
  8774. }
  8775. .ti-square-number-4:before {
  8776. content: "\eee9";
  8777. }
  8778. .ti-square-number-5:before {
  8779. content: "\eeea";
  8780. }
  8781. .ti-square-number-6:before {
  8782. content: "\eeeb";
  8783. }
  8784. .ti-square-number-7:before {
  8785. content: "\eeec";
  8786. }
  8787. .ti-square-number-8:before {
  8788. content: "\eeed";
  8789. }
  8790. .ti-square-number-9:before {
  8791. content: "\eeee";
  8792. }
  8793. .ti-square-off:before {
  8794. content: "\eeef";
  8795. }
  8796. .ti-square-plus:before {
  8797. content: "\eb2a";
  8798. }
  8799. .ti-square-root:before {
  8800. content: "\eef1";
  8801. }
  8802. .ti-square-root-2:before {
  8803. content: "\eef0";
  8804. }
  8805. .ti-square-rotated:before {
  8806. content: "\ecdf";
  8807. }
  8808. .ti-square-rotated-filled:before {
  8809. content: "\f6a4";
  8810. }
  8811. .ti-square-rotated-forbid:before {
  8812. content: "\f01c";
  8813. }
  8814. .ti-square-rotated-forbid-2:before {
  8815. content: "\f01b";
  8816. }
  8817. .ti-square-rotated-off:before {
  8818. content: "\eef2";
  8819. }
  8820. .ti-square-rounded:before {
  8821. content: "\f59a";
  8822. }
  8823. .ti-square-rounded-arrow-down:before {
  8824. content: "\f639";
  8825. }
  8826. .ti-square-rounded-arrow-down-filled:before {
  8827. content: "\f6db";
  8828. }
  8829. .ti-square-rounded-arrow-left:before {
  8830. content: "\f63a";
  8831. }
  8832. .ti-square-rounded-arrow-left-filled:before {
  8833. content: "\f6dc";
  8834. }
  8835. .ti-square-rounded-arrow-right:before {
  8836. content: "\f63b";
  8837. }
  8838. .ti-square-rounded-arrow-right-filled:before {
  8839. content: "\f6dd";
  8840. }
  8841. .ti-square-rounded-arrow-up:before {
  8842. content: "\f63c";
  8843. }
  8844. .ti-square-rounded-arrow-up-filled:before {
  8845. content: "\f6de";
  8846. }
  8847. .ti-square-rounded-check:before {
  8848. content: "\f63d";
  8849. }
  8850. .ti-square-rounded-check-filled:before {
  8851. content: "\f6df";
  8852. }
  8853. .ti-square-rounded-chevron-down:before {
  8854. content: "\f62b";
  8855. }
  8856. .ti-square-rounded-chevron-down-filled:before {
  8857. content: "\f6e0";
  8858. }
  8859. .ti-square-rounded-chevron-left:before {
  8860. content: "\f62c";
  8861. }
  8862. .ti-square-rounded-chevron-left-filled:before {
  8863. content: "\f6e1";
  8864. }
  8865. .ti-square-rounded-chevron-right:before {
  8866. content: "\f62d";
  8867. }
  8868. .ti-square-rounded-chevron-right-filled:before {
  8869. content: "\f6e2";
  8870. }
  8871. .ti-square-rounded-chevron-up:before {
  8872. content: "\f62e";
  8873. }
  8874. .ti-square-rounded-chevron-up-filled:before {
  8875. content: "\f6e3";
  8876. }
  8877. .ti-square-rounded-chevrons-down:before {
  8878. content: "\f64f";
  8879. }
  8880. .ti-square-rounded-chevrons-down-filled:before {
  8881. content: "\f6e4";
  8882. }
  8883. .ti-square-rounded-chevrons-left:before {
  8884. content: "\f650";
  8885. }
  8886. .ti-square-rounded-chevrons-left-filled:before {
  8887. content: "\f6e5";
  8888. }
  8889. .ti-square-rounded-chevrons-right:before {
  8890. content: "\f651";
  8891. }
  8892. .ti-square-rounded-chevrons-right-filled:before {
  8893. content: "\f6e6";
  8894. }
  8895. .ti-square-rounded-chevrons-up:before {
  8896. content: "\f652";
  8897. }
  8898. .ti-square-rounded-chevrons-up-filled:before {
  8899. content: "\f6e7";
  8900. }
  8901. .ti-square-rounded-filled:before {
  8902. content: "\f6a5";
  8903. }
  8904. .ti-square-rounded-letter-a:before {
  8905. content: "\f5ae";
  8906. }
  8907. .ti-square-rounded-letter-b:before {
  8908. content: "\f5af";
  8909. }
  8910. .ti-square-rounded-letter-c:before {
  8911. content: "\f5b0";
  8912. }
  8913. .ti-square-rounded-letter-d:before {
  8914. content: "\f5b1";
  8915. }
  8916. .ti-square-rounded-letter-e:before {
  8917. content: "\f5b2";
  8918. }
  8919. .ti-square-rounded-letter-f:before {
  8920. content: "\f5b3";
  8921. }
  8922. .ti-square-rounded-letter-g:before {
  8923. content: "\f5b4";
  8924. }
  8925. .ti-square-rounded-letter-h:before {
  8926. content: "\f5b5";
  8927. }
  8928. .ti-square-rounded-letter-i:before {
  8929. content: "\f5b6";
  8930. }
  8931. .ti-square-rounded-letter-j:before {
  8932. content: "\f5b7";
  8933. }
  8934. .ti-square-rounded-letter-k:before {
  8935. content: "\f5b8";
  8936. }
  8937. .ti-square-rounded-letter-l:before {
  8938. content: "\f5b9";
  8939. }
  8940. .ti-square-rounded-letter-m:before {
  8941. content: "\f5ba";
  8942. }
  8943. .ti-square-rounded-letter-n:before {
  8944. content: "\f5bb";
  8945. }
  8946. .ti-square-rounded-letter-o:before {
  8947. content: "\f5bc";
  8948. }
  8949. .ti-square-rounded-letter-p:before {
  8950. content: "\f5bd";
  8951. }
  8952. .ti-square-rounded-letter-q:before {
  8953. content: "\f5be";
  8954. }
  8955. .ti-square-rounded-letter-r:before {
  8956. content: "\f5bf";
  8957. }
  8958. .ti-square-rounded-letter-s:before {
  8959. content: "\f5c0";
  8960. }
  8961. .ti-square-rounded-letter-t:before {
  8962. content: "\f5c1";
  8963. }
  8964. .ti-square-rounded-letter-u:before {
  8965. content: "\f5c2";
  8966. }
  8967. .ti-square-rounded-letter-v:before {
  8968. content: "\f5c3";
  8969. }
  8970. .ti-square-rounded-letter-w:before {
  8971. content: "\f5c4";
  8972. }
  8973. .ti-square-rounded-letter-x:before {
  8974. content: "\f5c5";
  8975. }
  8976. .ti-square-rounded-letter-y:before {
  8977. content: "\f5c6";
  8978. }
  8979. .ti-square-rounded-letter-z:before {
  8980. content: "\f5c7";
  8981. }
  8982. .ti-square-rounded-minus:before {
  8983. content: "\f63e";
  8984. }
  8985. .ti-square-rounded-number-0:before {
  8986. content: "\f5c8";
  8987. }
  8988. .ti-square-rounded-number-0-filled:before {
  8989. content: "\f778";
  8990. }
  8991. .ti-square-rounded-number-1:before {
  8992. content: "\f5c9";
  8993. }
  8994. .ti-square-rounded-number-1-filled:before {
  8995. content: "\f779";
  8996. }
  8997. .ti-square-rounded-number-2:before {
  8998. content: "\f5ca";
  8999. }
  9000. .ti-square-rounded-number-2-filled:before {
  9001. content: "\f77a";
  9002. }
  9003. .ti-square-rounded-number-3:before {
  9004. content: "\f5cb";
  9005. }
  9006. .ti-square-rounded-number-3-filled:before {
  9007. content: "\f77b";
  9008. }
  9009. .ti-square-rounded-number-4:before {
  9010. content: "\f5cc";
  9011. }
  9012. .ti-square-rounded-number-4-filled:before {
  9013. content: "\f77c";
  9014. }
  9015. .ti-square-rounded-number-5:before {
  9016. content: "\f5cd";
  9017. }
  9018. .ti-square-rounded-number-5-filled:before {
  9019. content: "\f77d";
  9020. }
  9021. .ti-square-rounded-number-6:before {
  9022. content: "\f5ce";
  9023. }
  9024. .ti-square-rounded-number-6-filled:before {
  9025. content: "\f77e";
  9026. }
  9027. .ti-square-rounded-number-7:before {
  9028. content: "\f5cf";
  9029. }
  9030. .ti-square-rounded-number-7-filled:before {
  9031. content: "\f77f";
  9032. }
  9033. .ti-square-rounded-number-8:before {
  9034. content: "\f5d0";
  9035. }
  9036. .ti-square-rounded-number-8-filled:before {
  9037. content: "\f780";
  9038. }
  9039. .ti-square-rounded-number-9:before {
  9040. content: "\f5d1";
  9041. }
  9042. .ti-square-rounded-number-9-filled:before {
  9043. content: "\f781";
  9044. }
  9045. .ti-square-rounded-plus:before {
  9046. content: "\f63f";
  9047. }
  9048. .ti-square-rounded-plus-filled:before {
  9049. content: "\f6e8";
  9050. }
  9051. .ti-square-rounded-x:before {
  9052. content: "\f640";
  9053. }
  9054. .ti-square-rounded-x-filled:before {
  9055. content: "\f6e9";
  9056. }
  9057. .ti-square-toggle:before {
  9058. content: "\eef4";
  9059. }
  9060. .ti-square-toggle-horizontal:before {
  9061. content: "\eef3";
  9062. }
  9063. .ti-square-x:before {
  9064. content: "\eb2b";
  9065. }
  9066. .ti-squares-diagonal:before {
  9067. content: "\eef5";
  9068. }
  9069. .ti-squares-filled:before {
  9070. content: "\eef6";
  9071. }
  9072. .ti-stack:before {
  9073. content: "\eb2d";
  9074. }
  9075. .ti-stack-2:before {
  9076. content: "\eef7";
  9077. }
  9078. .ti-stack-3:before {
  9079. content: "\ef9d";
  9080. }
  9081. .ti-stack-pop:before {
  9082. content: "\f234";
  9083. }
  9084. .ti-stack-push:before {
  9085. content: "\f235";
  9086. }
  9087. .ti-stairs:before {
  9088. content: "\eca6";
  9089. }
  9090. .ti-stairs-down:before {
  9091. content: "\eca4";
  9092. }
  9093. .ti-stairs-up:before {
  9094. content: "\eca5";
  9095. }
  9096. .ti-star:before {
  9097. content: "\eb2e";
  9098. }
  9099. .ti-star-filled:before {
  9100. content: "\f6a6";
  9101. }
  9102. .ti-star-half:before {
  9103. content: "\ed19";
  9104. }
  9105. .ti-star-half-filled:before {
  9106. content: "\f6a7";
  9107. }
  9108. .ti-star-off:before {
  9109. content: "\ed62";
  9110. }
  9111. .ti-stars:before {
  9112. content: "\ed38";
  9113. }
  9114. .ti-stars-filled:before {
  9115. content: "\f6a8";
  9116. }
  9117. .ti-stars-off:before {
  9118. content: "\f430";
  9119. }
  9120. .ti-status-change:before {
  9121. content: "\f3b0";
  9122. }
  9123. .ti-steam:before {
  9124. content: "\f24b";
  9125. }
  9126. .ti-steering-wheel:before {
  9127. content: "\ec7b";
  9128. }
  9129. .ti-steering-wheel-off:before {
  9130. content: "\f431";
  9131. }
  9132. .ti-step-into:before {
  9133. content: "\ece0";
  9134. }
  9135. .ti-step-out:before {
  9136. content: "\ece1";
  9137. }
  9138. .ti-stereo-glasses:before {
  9139. content: "\f4cb";
  9140. }
  9141. .ti-stethoscope:before {
  9142. content: "\edbe";
  9143. }
  9144. .ti-stethoscope-off:before {
  9145. content: "\f432";
  9146. }
  9147. .ti-sticker:before {
  9148. content: "\eb2f";
  9149. }
  9150. .ti-storm:before {
  9151. content: "\f24c";
  9152. }
  9153. .ti-storm-off:before {
  9154. content: "\f433";
  9155. }
  9156. .ti-stretching:before {
  9157. content: "\f2db";
  9158. }
  9159. .ti-strikethrough:before {
  9160. content: "\eb9e";
  9161. }
  9162. .ti-submarine:before {
  9163. content: "\ed94";
  9164. }
  9165. .ti-subscript:before {
  9166. content: "\eb9f";
  9167. }
  9168. .ti-subtask:before {
  9169. content: "\ec9f";
  9170. }
  9171. .ti-sum:before {
  9172. content: "\eb73";
  9173. }
  9174. .ti-sum-off:before {
  9175. content: "\f1ab";
  9176. }
  9177. .ti-sun:before {
  9178. content: "\eb30";
  9179. }
  9180. .ti-sun-filled:before {
  9181. content: "\f6a9";
  9182. }
  9183. .ti-sun-high:before {
  9184. content: "\f236";
  9185. }
  9186. .ti-sun-low:before {
  9187. content: "\f237";
  9188. }
  9189. .ti-sun-moon:before {
  9190. content: "\f4a3";
  9191. }
  9192. .ti-sun-off:before {
  9193. content: "\ed63";
  9194. }
  9195. .ti-sun-wind:before {
  9196. content: "\f238";
  9197. }
  9198. .ti-sunglasses:before {
  9199. content: "\f239";
  9200. }
  9201. .ti-sunrise:before {
  9202. content: "\ef1c";
  9203. }
  9204. .ti-sunset:before {
  9205. content: "\ec31";
  9206. }
  9207. .ti-sunset-2:before {
  9208. content: "\f23a";
  9209. }
  9210. .ti-superscript:before {
  9211. content: "\eba0";
  9212. }
  9213. .ti-svg:before {
  9214. content: "\f25a";
  9215. }
  9216. .ti-swimming:before {
  9217. content: "\ec92";
  9218. }
  9219. .ti-swipe:before {
  9220. content: "\f551";
  9221. }
  9222. .ti-switch:before {
  9223. content: "\eb33";
  9224. }
  9225. .ti-switch-2:before {
  9226. content: "\edbf";
  9227. }
  9228. .ti-switch-3:before {
  9229. content: "\edc0";
  9230. }
  9231. .ti-switch-horizontal:before {
  9232. content: "\eb31";
  9233. }
  9234. .ti-switch-vertical:before {
  9235. content: "\eb32";
  9236. }
  9237. .ti-sword:before {
  9238. content: "\f030";
  9239. }
  9240. .ti-sword-off:before {
  9241. content: "\f434";
  9242. }
  9243. .ti-swords:before {
  9244. content: "\f132";
  9245. }
  9246. .ti-table:before {
  9247. content: "\eba1";
  9248. }
  9249. .ti-table-alias:before {
  9250. content: "\f25b";
  9251. }
  9252. .ti-table-export:before {
  9253. content: "\eef8";
  9254. }
  9255. .ti-table-filled:before {
  9256. content: "\f782";
  9257. }
  9258. .ti-table-import:before {
  9259. content: "\eef9";
  9260. }
  9261. .ti-table-off:before {
  9262. content: "\eefa";
  9263. }
  9264. .ti-table-options:before {
  9265. content: "\f25c";
  9266. }
  9267. .ti-table-shortcut:before {
  9268. content: "\f25d";
  9269. }
  9270. .ti-tag:before {
  9271. content: "\eb34";
  9272. }
  9273. .ti-tag-off:before {
  9274. content: "\efc0";
  9275. }
  9276. .ti-tags:before {
  9277. content: "\ef86";
  9278. }
  9279. .ti-tags-off:before {
  9280. content: "\efc1";
  9281. }
  9282. .ti-tallymark-1:before {
  9283. content: "\ec46";
  9284. }
  9285. .ti-tallymark-2:before {
  9286. content: "\ec47";
  9287. }
  9288. .ti-tallymark-3:before {
  9289. content: "\ec48";
  9290. }
  9291. .ti-tallymark-4:before {
  9292. content: "\ec49";
  9293. }
  9294. .ti-tallymarks:before {
  9295. content: "\ec4a";
  9296. }
  9297. .ti-tank:before {
  9298. content: "\ed95";
  9299. }
  9300. .ti-target:before {
  9301. content: "\eb35";
  9302. }
  9303. .ti-target-arrow:before {
  9304. content: "\f51a";
  9305. }
  9306. .ti-target-off:before {
  9307. content: "\f1ad";
  9308. }
  9309. .ti-teapot:before {
  9310. content: "\f552";
  9311. }
  9312. .ti-telescope:before {
  9313. content: "\f07d";
  9314. }
  9315. .ti-telescope-off:before {
  9316. content: "\f1ae";
  9317. }
  9318. .ti-temperature:before {
  9319. content: "\eb38";
  9320. }
  9321. .ti-temperature-celsius:before {
  9322. content: "\eb36";
  9323. }
  9324. .ti-temperature-fahrenheit:before {
  9325. content: "\eb37";
  9326. }
  9327. .ti-temperature-minus:before {
  9328. content: "\ebed";
  9329. }
  9330. .ti-temperature-off:before {
  9331. content: "\f1af";
  9332. }
  9333. .ti-temperature-plus:before {
  9334. content: "\ebee";
  9335. }
  9336. .ti-template:before {
  9337. content: "\eb39";
  9338. }
  9339. .ti-template-off:before {
  9340. content: "\f1b0";
  9341. }
  9342. .ti-tent:before {
  9343. content: "\eefb";
  9344. }
  9345. .ti-tent-off:before {
  9346. content: "\f435";
  9347. }
  9348. .ti-terminal:before {
  9349. content: "\ebdc";
  9350. }
  9351. .ti-terminal-2:before {
  9352. content: "\ebef";
  9353. }
  9354. .ti-test-pipe:before {
  9355. content: "\eb3a";
  9356. }
  9357. .ti-test-pipe-2:before {
  9358. content: "\f0a4";
  9359. }
  9360. .ti-test-pipe-off:before {
  9361. content: "\f1b1";
  9362. }
  9363. .ti-tex:before {
  9364. content: "\f4e0";
  9365. }
  9366. .ti-text-caption:before {
  9367. content: "\f4a4";
  9368. }
  9369. .ti-text-color:before {
  9370. content: "\f2dc";
  9371. }
  9372. .ti-text-decrease:before {
  9373. content: "\f202";
  9374. }
  9375. .ti-text-direction-ltr:before {
  9376. content: "\eefc";
  9377. }
  9378. .ti-text-direction-rtl:before {
  9379. content: "\eefd";
  9380. }
  9381. .ti-text-increase:before {
  9382. content: "\f203";
  9383. }
  9384. .ti-text-orientation:before {
  9385. content: "\f2a4";
  9386. }
  9387. .ti-text-plus:before {
  9388. content: "\f2a5";
  9389. }
  9390. .ti-text-recognition:before {
  9391. content: "\f204";
  9392. }
  9393. .ti-text-resize:before {
  9394. content: "\ef87";
  9395. }
  9396. .ti-text-size:before {
  9397. content: "\f2b1";
  9398. }
  9399. .ti-text-spellcheck:before {
  9400. content: "\f2a6";
  9401. }
  9402. .ti-text-wrap:before {
  9403. content: "\ebdd";
  9404. }
  9405. .ti-text-wrap-disabled:before {
  9406. content: "\eca7";
  9407. }
  9408. .ti-texture:before {
  9409. content: "\f51b";
  9410. }
  9411. .ti-theater:before {
  9412. content: "\f79b";
  9413. }
  9414. .ti-thermometer:before {
  9415. content: "\ef67";
  9416. }
  9417. .ti-thumb-down:before {
  9418. content: "\eb3b";
  9419. }
  9420. .ti-thumb-down-filled:before {
  9421. content: "\f6aa";
  9422. }
  9423. .ti-thumb-down-off:before {
  9424. content: "\f436";
  9425. }
  9426. .ti-thumb-up:before {
  9427. content: "\eb3c";
  9428. }
  9429. .ti-thumb-up-filled:before {
  9430. content: "\f6ab";
  9431. }
  9432. .ti-thumb-up-off:before {
  9433. content: "\f437";
  9434. }
  9435. .ti-tic-tac:before {
  9436. content: "\f51c";
  9437. }
  9438. .ti-ticket:before {
  9439. content: "\eb3d";
  9440. }
  9441. .ti-ticket-off:before {
  9442. content: "\f1b2";
  9443. }
  9444. .ti-tie:before {
  9445. content: "\f07e";
  9446. }
  9447. .ti-tilde:before {
  9448. content: "\f4a5";
  9449. }
  9450. .ti-tilt-shift:before {
  9451. content: "\eefe";
  9452. }
  9453. .ti-tilt-shift-off:before {
  9454. content: "\f1b3";
  9455. }
  9456. .ti-timeline:before {
  9457. content: "\f031";
  9458. }
  9459. .ti-timeline-event:before {
  9460. content: "\f553";
  9461. }
  9462. .ti-timeline-event-exclamation:before {
  9463. content: "\f662";
  9464. }
  9465. .ti-timeline-event-minus:before {
  9466. content: "\f663";
  9467. }
  9468. .ti-timeline-event-plus:before {
  9469. content: "\f664";
  9470. }
  9471. .ti-timeline-event-text:before {
  9472. content: "\f665";
  9473. }
  9474. .ti-timeline-event-x:before {
  9475. content: "\f666";
  9476. }
  9477. .ti-tir:before {
  9478. content: "\ebf0";
  9479. }
  9480. .ti-toggle-left:before {
  9481. content: "\eb3e";
  9482. }
  9483. .ti-toggle-right:before {
  9484. content: "\eb3f";
  9485. }
  9486. .ti-toilet-paper:before {
  9487. content: "\efd3";
  9488. }
  9489. .ti-toilet-paper-off:before {
  9490. content: "\f1b4";
  9491. }
  9492. .ti-tool:before {
  9493. content: "\eb40";
  9494. }
  9495. .ti-tools:before {
  9496. content: "\ebca";
  9497. }
  9498. .ti-tools-kitchen:before {
  9499. content: "\ed64";
  9500. }
  9501. .ti-tools-kitchen-2:before {
  9502. content: "\eeff";
  9503. }
  9504. .ti-tools-kitchen-2-off:before {
  9505. content: "\f1b5";
  9506. }
  9507. .ti-tools-kitchen-off:before {
  9508. content: "\f1b6";
  9509. }
  9510. .ti-tools-off:before {
  9511. content: "\f1b7";
  9512. }
  9513. .ti-tooltip:before {
  9514. content: "\f2dd";
  9515. }
  9516. .ti-topology-bus:before {
  9517. content: "\f5d9";
  9518. }
  9519. .ti-topology-complex:before {
  9520. content: "\f5da";
  9521. }
  9522. .ti-topology-full:before {
  9523. content: "\f5dc";
  9524. }
  9525. .ti-topology-full-hierarchy:before {
  9526. content: "\f5db";
  9527. }
  9528. .ti-topology-ring:before {
  9529. content: "\f5df";
  9530. }
  9531. .ti-topology-ring-2:before {
  9532. content: "\f5dd";
  9533. }
  9534. .ti-topology-ring-3:before {
  9535. content: "\f5de";
  9536. }
  9537. .ti-topology-star:before {
  9538. content: "\f5e5";
  9539. }
  9540. .ti-topology-star-2:before {
  9541. content: "\f5e0";
  9542. }
  9543. .ti-topology-star-3:before {
  9544. content: "\f5e1";
  9545. }
  9546. .ti-topology-star-ring:before {
  9547. content: "\f5e4";
  9548. }
  9549. .ti-topology-star-ring-2:before {
  9550. content: "\f5e2";
  9551. }
  9552. .ti-topology-star-ring-3:before {
  9553. content: "\f5e3";
  9554. }
  9555. .ti-torii:before {
  9556. content: "\f59b";
  9557. }
  9558. .ti-tornado:before {
  9559. content: "\ece2";
  9560. }
  9561. .ti-tournament:before {
  9562. content: "\ecd0";
  9563. }
  9564. .ti-tower:before {
  9565. content: "\f2cb";
  9566. }
  9567. .ti-tower-off:before {
  9568. content: "\f2ca";
  9569. }
  9570. .ti-track:before {
  9571. content: "\ef00";
  9572. }
  9573. .ti-tractor:before {
  9574. content: "\ec0d";
  9575. }
  9576. .ti-trademark:before {
  9577. content: "\ec0e";
  9578. }
  9579. .ti-traffic-cone:before {
  9580. content: "\ec0f";
  9581. }
  9582. .ti-traffic-cone-off:before {
  9583. content: "\f1b8";
  9584. }
  9585. .ti-traffic-lights:before {
  9586. content: "\ed39";
  9587. }
  9588. .ti-traffic-lights-off:before {
  9589. content: "\f1b9";
  9590. }
  9591. .ti-train:before {
  9592. content: "\ed96";
  9593. }
  9594. .ti-transfer-in:before {
  9595. content: "\ef2f";
  9596. }
  9597. .ti-transfer-out:before {
  9598. content: "\ef30";
  9599. }
  9600. .ti-transform:before {
  9601. content: "\f38e";
  9602. }
  9603. .ti-transform-filled:before {
  9604. content: "\f6ac";
  9605. }
  9606. .ti-transition-bottom:before {
  9607. content: "\f2b2";
  9608. }
  9609. .ti-transition-left:before {
  9610. content: "\f2b3";
  9611. }
  9612. .ti-transition-right:before {
  9613. content: "\f2b4";
  9614. }
  9615. .ti-transition-top:before {
  9616. content: "\f2b5";
  9617. }
  9618. .ti-trash:before {
  9619. content: "\eb41";
  9620. }
  9621. .ti-trash-filled:before {
  9622. content: "\f783";
  9623. }
  9624. .ti-trash-off:before {
  9625. content: "\ed65";
  9626. }
  9627. .ti-trash-x:before {
  9628. content: "\ef88";
  9629. }
  9630. .ti-trash-x-filled:before {
  9631. content: "\f784";
  9632. }
  9633. .ti-tree:before {
  9634. content: "\ef01";
  9635. }
  9636. .ti-trees:before {
  9637. content: "\ec10";
  9638. }
  9639. .ti-trekking:before {
  9640. content: "\f5ad";
  9641. }
  9642. .ti-trending-down:before {
  9643. content: "\eb42";
  9644. }
  9645. .ti-trending-down-2:before {
  9646. content: "\edc1";
  9647. }
  9648. .ti-trending-down-3:before {
  9649. content: "\edc2";
  9650. }
  9651. .ti-trending-up:before {
  9652. content: "\eb43";
  9653. }
  9654. .ti-trending-up-2:before {
  9655. content: "\edc3";
  9656. }
  9657. .ti-trending-up-3:before {
  9658. content: "\edc4";
  9659. }
  9660. .ti-triangle:before {
  9661. content: "\eb44";
  9662. }
  9663. .ti-triangle-filled:before {
  9664. content: "\f6ad";
  9665. }
  9666. .ti-triangle-inverted:before {
  9667. content: "\f01d";
  9668. }
  9669. .ti-triangle-inverted-filled:before {
  9670. content: "\f6ae";
  9671. }
  9672. .ti-triangle-off:before {
  9673. content: "\ef02";
  9674. }
  9675. .ti-triangle-square-circle:before {
  9676. content: "\ece8";
  9677. }
  9678. .ti-triangles:before {
  9679. content: "\f0a5";
  9680. }
  9681. .ti-trident:before {
  9682. content: "\ecc5";
  9683. }
  9684. .ti-trolley:before {
  9685. content: "\f4cc";
  9686. }
  9687. .ti-trophy:before {
  9688. content: "\eb45";
  9689. }
  9690. .ti-trophy-filled:before {
  9691. content: "\f6af";
  9692. }
  9693. .ti-trophy-off:before {
  9694. content: "\f438";
  9695. }
  9696. .ti-trowel:before {
  9697. content: "\f368";
  9698. }
  9699. .ti-truck:before {
  9700. content: "\ebc4";
  9701. }
  9702. .ti-truck-delivery:before {
  9703. content: "\ec4b";
  9704. }
  9705. .ti-truck-loading:before {
  9706. content: "\f1da";
  9707. }
  9708. .ti-truck-off:before {
  9709. content: "\ef03";
  9710. }
  9711. .ti-truck-return:before {
  9712. content: "\ec4c";
  9713. }
  9714. .ti-txt:before {
  9715. content: "\f3b1";
  9716. }
  9717. .ti-typography:before {
  9718. content: "\ebc5";
  9719. }
  9720. .ti-typography-off:before {
  9721. content: "\f1ba";
  9722. }
  9723. .ti-ufo:before {
  9724. content: "\f26f";
  9725. }
  9726. .ti-ufo-off:before {
  9727. content: "\f26e";
  9728. }
  9729. .ti-umbrella:before {
  9730. content: "\ebf1";
  9731. }
  9732. .ti-umbrella-filled:before {
  9733. content: "\f6b0";
  9734. }
  9735. .ti-umbrella-off:before {
  9736. content: "\f1bb";
  9737. }
  9738. .ti-underline:before {
  9739. content: "\eba2";
  9740. }
  9741. .ti-unlink:before {
  9742. content: "\eb46";
  9743. }
  9744. .ti-upload:before {
  9745. content: "\eb47";
  9746. }
  9747. .ti-urgent:before {
  9748. content: "\eb48";
  9749. }
  9750. .ti-usb:before {
  9751. content: "\f00c";
  9752. }
  9753. .ti-user:before {
  9754. content: "\eb4d";
  9755. }
  9756. .ti-user-check:before {
  9757. content: "\eb49";
  9758. }
  9759. .ti-user-circle:before {
  9760. content: "\ef68";
  9761. }
  9762. .ti-user-exclamation:before {
  9763. content: "\ec12";
  9764. }
  9765. .ti-user-minus:before {
  9766. content: "\eb4a";
  9767. }
  9768. .ti-user-off:before {
  9769. content: "\ecf9";
  9770. }
  9771. .ti-user-plus:before {
  9772. content: "\eb4b";
  9773. }
  9774. .ti-user-search:before {
  9775. content: "\ef89";
  9776. }
  9777. .ti-user-x:before {
  9778. content: "\eb4c";
  9779. }
  9780. .ti-users:before {
  9781. content: "\ebf2";
  9782. }
  9783. .ti-uv-index:before {
  9784. content: "\f3b2";
  9785. }
  9786. .ti-ux-circle:before {
  9787. content: "\f369";
  9788. }
  9789. .ti-vaccine:before {
  9790. content: "\ef04";
  9791. }
  9792. .ti-vaccine-bottle:before {
  9793. content: "\ef69";
  9794. }
  9795. .ti-vaccine-bottle-off:before {
  9796. content: "\f439";
  9797. }
  9798. .ti-vaccine-off:before {
  9799. content: "\f1bc";
  9800. }
  9801. .ti-vacuum-cleaner:before {
  9802. content: "\f5e6";
  9803. }
  9804. .ti-variable:before {
  9805. content: "\ef05";
  9806. }
  9807. .ti-variable-minus:before {
  9808. content: "\f36a";
  9809. }
  9810. .ti-variable-off:before {
  9811. content: "\f1bd";
  9812. }
  9813. .ti-variable-plus:before {
  9814. content: "\f36b";
  9815. }
  9816. .ti-vector:before {
  9817. content: "\eca9";
  9818. }
  9819. .ti-vector-bezier:before {
  9820. content: "\ef1d";
  9821. }
  9822. .ti-vector-bezier-2:before {
  9823. content: "\f1a3";
  9824. }
  9825. .ti-vector-bezier-arc:before {
  9826. content: "\f4cd";
  9827. }
  9828. .ti-vector-bezier-circle:before {
  9829. content: "\f4ce";
  9830. }
  9831. .ti-vector-off:before {
  9832. content: "\f1be";
  9833. }
  9834. .ti-vector-spline:before {
  9835. content: "\f565";
  9836. }
  9837. .ti-vector-triangle:before {
  9838. content: "\eca8";
  9839. }
  9840. .ti-vector-triangle-off:before {
  9841. content: "\f1bf";
  9842. }
  9843. .ti-venus:before {
  9844. content: "\ec86";
  9845. }
  9846. .ti-versions:before {
  9847. content: "\ed52";
  9848. }
  9849. .ti-versions-filled:before {
  9850. content: "\f6b1";
  9851. }
  9852. .ti-versions-off:before {
  9853. content: "\f1c0";
  9854. }
  9855. .ti-video:before {
  9856. content: "\ed22";
  9857. }
  9858. .ti-video-minus:before {
  9859. content: "\ed1f";
  9860. }
  9861. .ti-video-off:before {
  9862. content: "\ed20";
  9863. }
  9864. .ti-video-plus:before {
  9865. content: "\ed21";
  9866. }
  9867. .ti-view-360:before {
  9868. content: "\ed84";
  9869. }
  9870. .ti-view-360-off:before {
  9871. content: "\f1c1";
  9872. }
  9873. .ti-viewfinder:before {
  9874. content: "\eb4e";
  9875. }
  9876. .ti-viewfinder-off:before {
  9877. content: "\f1c2";
  9878. }
  9879. .ti-viewport-narrow:before {
  9880. content: "\ebf3";
  9881. }
  9882. .ti-viewport-wide:before {
  9883. content: "\ebf4";
  9884. }
  9885. .ti-vinyl:before {
  9886. content: "\f00d";
  9887. }
  9888. .ti-vip:before {
  9889. content: "\f3b3";
  9890. }
  9891. .ti-vip-off:before {
  9892. content: "\f43a";
  9893. }
  9894. .ti-virus:before {
  9895. content: "\eb74";
  9896. }
  9897. .ti-virus-off:before {
  9898. content: "\ed66";
  9899. }
  9900. .ti-virus-search:before {
  9901. content: "\ed67";
  9902. }
  9903. .ti-vocabulary:before {
  9904. content: "\ef1e";
  9905. }
  9906. .ti-vocabulary-off:before {
  9907. content: "\f43b";
  9908. }
  9909. .ti-volcano:before {
  9910. content: "\f79c";
  9911. }
  9912. .ti-volume:before {
  9913. content: "\eb51";
  9914. }
  9915. .ti-volume-2:before {
  9916. content: "\eb4f";
  9917. }
  9918. .ti-volume-3:before {
  9919. content: "\eb50";
  9920. }
  9921. .ti-volume-off:before {
  9922. content: "\f1c3";
  9923. }
  9924. .ti-walk:before {
  9925. content: "\ec87";
  9926. }
  9927. .ti-wall:before {
  9928. content: "\ef7a";
  9929. }
  9930. .ti-wall-off:before {
  9931. content: "\f43c";
  9932. }
  9933. .ti-wallet:before {
  9934. content: "\eb75";
  9935. }
  9936. .ti-wallet-off:before {
  9937. content: "\f1c4";
  9938. }
  9939. .ti-wallpaper:before {
  9940. content: "\ef56";
  9941. }
  9942. .ti-wallpaper-off:before {
  9943. content: "\f1c5";
  9944. }
  9945. .ti-wand:before {
  9946. content: "\ebcb";
  9947. }
  9948. .ti-wand-off:before {
  9949. content: "\f1c6";
  9950. }
  9951. .ti-wash:before {
  9952. content: "\f311";
  9953. }
  9954. .ti-wash-dry:before {
  9955. content: "\f304";
  9956. }
  9957. .ti-wash-dry-1:before {
  9958. content: "\f2fa";
  9959. }
  9960. .ti-wash-dry-2:before {
  9961. content: "\f2fb";
  9962. }
  9963. .ti-wash-dry-3:before {
  9964. content: "\f2fc";
  9965. }
  9966. .ti-wash-dry-a:before {
  9967. content: "\f2fd";
  9968. }
  9969. .ti-wash-dry-dip:before {
  9970. content: "\f2fe";
  9971. }
  9972. .ti-wash-dry-f:before {
  9973. content: "\f2ff";
  9974. }
  9975. .ti-wash-dry-hang:before {
  9976. content: "\f300";
  9977. }
  9978. .ti-wash-dry-off:before {
  9979. content: "\f301";
  9980. }
  9981. .ti-wash-dry-p:before {
  9982. content: "\f302";
  9983. }
  9984. .ti-wash-dry-shade:before {
  9985. content: "\f303";
  9986. }
  9987. .ti-wash-dry-w:before {
  9988. content: "\f322";
  9989. }
  9990. .ti-wash-dryclean:before {
  9991. content: "\f305";
  9992. }
  9993. .ti-wash-dryclean-off:before {
  9994. content: "\f323";
  9995. }
  9996. .ti-wash-gentle:before {
  9997. content: "\f306";
  9998. }
  9999. .ti-wash-machine:before {
  10000. content: "\f25e";
  10001. }
  10002. .ti-wash-off:before {
  10003. content: "\f307";
  10004. }
  10005. .ti-wash-press:before {
  10006. content: "\f308";
  10007. }
  10008. .ti-wash-temperature-1:before {
  10009. content: "\f309";
  10010. }
  10011. .ti-wash-temperature-2:before {
  10012. content: "\f30a";
  10013. }
  10014. .ti-wash-temperature-3:before {
  10015. content: "\f30b";
  10016. }
  10017. .ti-wash-temperature-4:before {
  10018. content: "\f30c";
  10019. }
  10020. .ti-wash-temperature-5:before {
  10021. content: "\f30d";
  10022. }
  10023. .ti-wash-temperature-6:before {
  10024. content: "\f30e";
  10025. }
  10026. .ti-wash-tumble-dry:before {
  10027. content: "\f30f";
  10028. }
  10029. .ti-wash-tumble-off:before {
  10030. content: "\f310";
  10031. }
  10032. .ti-wave-saw-tool:before {
  10033. content: "\ecd3";
  10034. }
  10035. .ti-wave-sine:before {
  10036. content: "\ecd4";
  10037. }
  10038. .ti-wave-square:before {
  10039. content: "\ecd5";
  10040. }
  10041. .ti-webhook:before {
  10042. content: "\f01e";
  10043. }
  10044. .ti-webhook-off:before {
  10045. content: "\f43d";
  10046. }
  10047. .ti-weight:before {
  10048. content: "\f589";
  10049. }
  10050. .ti-wheelchair:before {
  10051. content: "\f1db";
  10052. }
  10053. .ti-wheelchair-off:before {
  10054. content: "\f43e";
  10055. }
  10056. .ti-whirl:before {
  10057. content: "\f51d";
  10058. }
  10059. .ti-wifi:before {
  10060. content: "\eb52";
  10061. }
  10062. .ti-wifi-0:before {
  10063. content: "\eba3";
  10064. }
  10065. .ti-wifi-1:before {
  10066. content: "\eba4";
  10067. }
  10068. .ti-wifi-2:before {
  10069. content: "\eba5";
  10070. }
  10071. .ti-wifi-off:before {
  10072. content: "\ecfa";
  10073. }
  10074. .ti-wind:before {
  10075. content: "\ec34";
  10076. }
  10077. .ti-wind-off:before {
  10078. content: "\f1c7";
  10079. }
  10080. .ti-windmill:before {
  10081. content: "\ed85";
  10082. }
  10083. .ti-windmill-filled:before {
  10084. content: "\f6b2";
  10085. }
  10086. .ti-windmill-off:before {
  10087. content: "\f1c8";
  10088. }
  10089. .ti-window:before {
  10090. content: "\ef06";
  10091. }
  10092. .ti-window-maximize:before {
  10093. content: "\f1f1";
  10094. }
  10095. .ti-window-minimize:before {
  10096. content: "\f1f2";
  10097. }
  10098. .ti-window-off:before {
  10099. content: "\f1c9";
  10100. }
  10101. .ti-windsock:before {
  10102. content: "\f06d";
  10103. }
  10104. .ti-wiper:before {
  10105. content: "\ecab";
  10106. }
  10107. .ti-wiper-wash:before {
  10108. content: "\ecaa";
  10109. }
  10110. .ti-woman:before {
  10111. content: "\eb53";
  10112. }
  10113. .ti-wood:before {
  10114. content: "\f359";
  10115. }
  10116. .ti-world:before {
  10117. content: "\eb54";
  10118. }
  10119. .ti-world-download:before {
  10120. content: "\ef8a";
  10121. }
  10122. .ti-world-latitude:before {
  10123. content: "\ed2e";
  10124. }
  10125. .ti-world-longitude:before {
  10126. content: "\ed2f";
  10127. }
  10128. .ti-world-off:before {
  10129. content: "\f1ca";
  10130. }
  10131. .ti-world-upload:before {
  10132. content: "\ef8b";
  10133. }
  10134. .ti-world-www:before {
  10135. content: "\f38f";
  10136. }
  10137. .ti-wrecking-ball:before {
  10138. content: "\ed97";
  10139. }
  10140. .ti-writing:before {
  10141. content: "\ef08";
  10142. }
  10143. .ti-writing-off:before {
  10144. content: "\f1cb";
  10145. }
  10146. .ti-writing-sign:before {
  10147. content: "\ef07";
  10148. }
  10149. .ti-writing-sign-off:before {
  10150. content: "\f1cc";
  10151. }
  10152. .ti-x:before {
  10153. content: "\eb55";
  10154. }
  10155. .ti-xbox-a:before {
  10156. content: "\f2b6";
  10157. }
  10158. .ti-xbox-b:before {
  10159. content: "\f2b7";
  10160. }
  10161. .ti-xbox-x:before {
  10162. content: "\f2b8";
  10163. }
  10164. .ti-xbox-y:before {
  10165. content: "\f2b9";
  10166. }
  10167. .ti-yin-yang:before {
  10168. content: "\ec35";
  10169. }
  10170. .ti-yin-yang-filled:before {
  10171. content: "\f785";
  10172. }
  10173. .ti-yoga:before {
  10174. content: "\f01f";
  10175. }
  10176. .ti-zeppelin:before {
  10177. content: "\f270";
  10178. }
  10179. .ti-zeppelin-off:before {
  10180. content: "\f43f";
  10181. }
  10182. .ti-zip:before {
  10183. content: "\f3b4";
  10184. }
  10185. .ti-zodiac-aquarius:before {
  10186. content: "\ecac";
  10187. }
  10188. .ti-zodiac-aries:before {
  10189. content: "\ecad";
  10190. }
  10191. .ti-zodiac-cancer:before {
  10192. content: "\ecae";
  10193. }
  10194. .ti-zodiac-capricorn:before {
  10195. content: "\ecaf";
  10196. }
  10197. .ti-zodiac-gemini:before {
  10198. content: "\ecb0";
  10199. }
  10200. .ti-zodiac-leo:before {
  10201. content: "\ecb1";
  10202. }
  10203. .ti-zodiac-libra:before {
  10204. content: "\ecb2";
  10205. }
  10206. .ti-zodiac-pisces:before {
  10207. content: "\ecb3";
  10208. }
  10209. .ti-zodiac-sagittarius:before {
  10210. content: "\ecb4";
  10211. }
  10212. .ti-zodiac-scorpio:before {
  10213. content: "\ecb5";
  10214. }
  10215. .ti-zodiac-taurus:before {
  10216. content: "\ecb6";
  10217. }
  10218. .ti-zodiac-virgo:before {
  10219. content: "\ecb7";
  10220. }
  10221. .ti-zoom-cancel:before {
  10222. content: "\ec4d";
  10223. }
  10224. .ti-zoom-check:before {
  10225. content: "\ef09";
  10226. }
  10227. .ti-zoom-check-filled:before {
  10228. content: "\f786";
  10229. }
  10230. .ti-zoom-code:before {
  10231. content: "\f07f";
  10232. }
  10233. .ti-zoom-exclamation:before {
  10234. content: "\f080";
  10235. }
  10236. .ti-zoom-filled:before {
  10237. content: "\f787";
  10238. }
  10239. .ti-zoom-in:before {
  10240. content: "\eb56";
  10241. }
  10242. .ti-zoom-in-area:before {
  10243. content: "\f1dc";
  10244. }
  10245. .ti-zoom-in-area-filled:before {
  10246. content: "\f788";
  10247. }
  10248. .ti-zoom-in-filled:before {
  10249. content: "\f789";
  10250. }
  10251. .ti-zoom-money:before {
  10252. content: "\ef0a";
  10253. }
  10254. .ti-zoom-out:before {
  10255. content: "\eb57";
  10256. }
  10257. .ti-zoom-out-area:before {
  10258. content: "\f1dd";
  10259. }
  10260. .ti-zoom-out-filled:before {
  10261. content: "\f78a";
  10262. }
  10263. .ti-zoom-pan:before {
  10264. content: "\f1de";
  10265. }
  10266. .ti-zoom-question:before {
  10267. content: "\edeb";
  10268. }
  10269. .ti-zoom-replace:before {
  10270. content: "\f2a7";
  10271. }
  10272. .ti-zoom-reset:before {
  10273. content: "\f295";
  10274. }
  10275. .ti-zzz:before {
  10276. content: "\f228";
  10277. }
  10278. .ti-zzz-off:before {
  10279. content: "\f440";
  10280. }
  10281. /*# sourceMappingURL=tabler-icons.css.map */