style.css 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517
  1. @font-face {
  2. font-family: 'themefisher-font';
  3. src: url('themefisher-font.eot?ug5hnh');
  4. src: url('themefisher-font.eot?ug5hnh#iefix') format('embedded-opentype'),
  5. url('themefisher-font.ttf?ug5hnh') format('truetype'),
  6. url('themefisher-font.woff?ug5hnh') format('woff'),
  7. url('themefisher-font.svg?ug5hnh#themefisher-font') format('svg');
  8. font-weight: normal;
  9. font-style: normal;
  10. }
  11. [class^="tf-"], [class*=" tf-"] {
  12. /* use !important to prevent issues with browser extensions that change fonts */
  13. font-family: 'themefisher-font' !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. .tf-ion-alert-circled:before {
  25. content: "\f100";
  26. }
  27. .tf-ion-alert:before {
  28. content: "\f101";
  29. }
  30. .tf-ion-android-add-circle:before {
  31. content: "\f359";
  32. }
  33. .tf-ion-android-add:before {
  34. content: "\f2c7";
  35. }
  36. .tf-ion-android-alarm-clock:before {
  37. content: "\f35a";
  38. }
  39. .tf-ion-android-alert:before {
  40. content: "\f35b";
  41. }
  42. .tf-ion-android-apps:before {
  43. content: "\f35c";
  44. }
  45. .tf-ion-android-archive:before {
  46. content: "\f2c9";
  47. }
  48. .tf-ion-android-arrow-back:before {
  49. content: "\f2ca";
  50. }
  51. .tf-ion-android-arrow-down:before {
  52. content: "\f35d";
  53. }
  54. .tf-ion-android-arrow-dropdown-circle:before {
  55. content: "\f35e";
  56. }
  57. .tf-ion-android-arrow-dropdown:before {
  58. content: "\f35f";
  59. }
  60. .tf-ion-android-arrow-dropleft-circle:before {
  61. content: "\f360";
  62. }
  63. .tf-ion-android-arrow-dropleft:before {
  64. content: "\f361";
  65. }
  66. .tf-ion-android-arrow-dropright-circle:before {
  67. content: "\f362";
  68. }
  69. .tf-ion-android-arrow-dropright:before {
  70. content: "\f363";
  71. }
  72. .tf-ion-android-arrow-dropup-circle:before {
  73. content: "\f364";
  74. }
  75. .tf-ion-android-arrow-dropup:before {
  76. content: "\f365";
  77. }
  78. .tf-ion-android-arrow-forward:before {
  79. content: "\f30f";
  80. }
  81. .tf-ion-android-arrow-up:before {
  82. content: "\f366";
  83. }
  84. .tf-ion-android-attach:before {
  85. content: "\f367";
  86. }
  87. .tf-ion-android-bar:before {
  88. content: "\f368";
  89. }
  90. .tf-ion-android-bicycle:before {
  91. content: "\f369";
  92. }
  93. .tf-ion-android-boat:before {
  94. content: "\f36a";
  95. }
  96. .tf-ion-android-bookmark:before {
  97. content: "\f36b";
  98. }
  99. .tf-ion-android-bulb:before {
  100. content: "\f36c";
  101. }
  102. .tf-ion-android-bus:before {
  103. content: "\f36d";
  104. }
  105. .tf-ion-android-calendar:before {
  106. content: "\f2d1";
  107. }
  108. .tf-ion-android-call:before {
  109. content: "\f2d2";
  110. }
  111. .tf-ion-android-camera:before {
  112. content: "\f2d3";
  113. }
  114. .tf-ion-android-cancel:before {
  115. content: "\f36e";
  116. }
  117. .tf-ion-android-car:before {
  118. content: "\f36f";
  119. }
  120. .tf-ion-android-cart:before {
  121. content: "\f370";
  122. }
  123. .tf-ion-android-chat:before {
  124. content: "\f2d4";
  125. }
  126. .tf-ion-android-checkbox-blank:before {
  127. content: "\f371";
  128. }
  129. .tf-ion-android-checkbox-outline-blank:before {
  130. content: "\f372";
  131. }
  132. .tf-ion-android-checkbox-outline:before {
  133. content: "\f373";
  134. }
  135. .tf-ion-android-checkbox:before {
  136. content: "\f374";
  137. }
  138. .tf-ion-android-checkmark-circle:before {
  139. content: "\f375";
  140. }
  141. .tf-ion-android-clipboard:before {
  142. content: "\f376";
  143. }
  144. .tf-ion-android-close:before {
  145. content: "\f2d7";
  146. }
  147. .tf-ion-android-cloud-circle:before {
  148. content: "\f377";
  149. }
  150. .tf-ion-android-cloud-done:before {
  151. content: "\f378";
  152. }
  153. .tf-ion-android-cloud-outline:before {
  154. content: "\f379";
  155. }
  156. .tf-ion-android-cloud:before {
  157. content: "\f37a";
  158. }
  159. .tf-ion-android-color-palette:before {
  160. content: "\f37b";
  161. }
  162. .tf-ion-android-compass:before {
  163. content: "\f37c";
  164. }
  165. .tf-ion-android-contact:before {
  166. content: "\f2d8";
  167. }
  168. .tf-ion-android-contacts:before {
  169. content: "\f2d9";
  170. }
  171. .tf-ion-android-contract:before {
  172. content: "\f37d";
  173. }
  174. .tf-ion-android-create:before {
  175. content: "\f37e";
  176. }
  177. .tf-ion-android-delete:before {
  178. content: "\f37f";
  179. }
  180. .tf-ion-android-desktop:before {
  181. content: "\f380";
  182. }
  183. .tf-ion-android-document:before {
  184. content: "\f381";
  185. }
  186. .tf-ion-android-done-all:before {
  187. content: "\f382";
  188. }
  189. .tf-ion-android-done:before {
  190. content: "\f383";
  191. }
  192. .tf-ion-android-download:before {
  193. content: "\f2dd";
  194. }
  195. .tf-ion-android-drafts:before {
  196. content: "\f384";
  197. }
  198. .tf-ion-android-exit:before {
  199. content: "\f385";
  200. }
  201. .tf-ion-android-expand:before {
  202. content: "\f386";
  203. }
  204. .tf-ion-android-favorite-outline:before {
  205. content: "\f387";
  206. }
  207. .tf-ion-android-favorite:before {
  208. content: "\f388";
  209. }
  210. .tf-ion-android-film:before {
  211. content: "\f389";
  212. }
  213. .tf-ion-android-folder-open:before {
  214. content: "\f38a";
  215. }
  216. .tf-ion-android-folder:before {
  217. content: "\f2e0";
  218. }
  219. .tf-ion-android-funnel:before {
  220. content: "\f38b";
  221. }
  222. .tf-ion-android-globe:before {
  223. content: "\f38c";
  224. }
  225. .tf-ion-android-hand:before {
  226. content: "\f2e3";
  227. }
  228. .tf-ion-android-hangout:before {
  229. content: "\f38d";
  230. }
  231. .tf-ion-android-happy:before {
  232. content: "\f38e";
  233. }
  234. .tf-ion-android-home:before {
  235. content: "\f38f";
  236. }
  237. .tf-ion-android-image:before {
  238. content: "\f2e4";
  239. }
  240. .tf-ion-android-laptop:before {
  241. content: "\f390";
  242. }
  243. .tf-ion-android-list:before {
  244. content: "\f391";
  245. }
  246. .tf-ion-android-locate:before {
  247. content: "\f2e9";
  248. }
  249. .tf-ion-android-lock:before {
  250. content: "\f392";
  251. }
  252. .tf-ion-android-mail:before {
  253. content: "\f2eb";
  254. }
  255. .tf-ion-android-map:before {
  256. content: "\f393";
  257. }
  258. .tf-ion-android-menu:before {
  259. content: "\f394";
  260. }
  261. .tf-ion-android-microphone-off:before {
  262. content: "\f395";
  263. }
  264. .tf-ion-android-microphone:before {
  265. content: "\f2ec";
  266. }
  267. .tf-ion-android-more-horizontal:before {
  268. content: "\f396";
  269. }
  270. .tf-ion-android-more-vertical:before {
  271. content: "\f397";
  272. }
  273. .tf-ion-android-navigate:before {
  274. content: "\f398";
  275. }
  276. .tf-ion-android-notifications-none:before {
  277. content: "\f399";
  278. }
  279. .tf-ion-android-notifications-off:before {
  280. content: "\f39a";
  281. }
  282. .tf-ion-android-notifications:before {
  283. content: "\f39b";
  284. }
  285. .tf-ion-android-open:before {
  286. content: "\f39c";
  287. }
  288. .tf-ion-android-options:before {
  289. content: "\f39d";
  290. }
  291. .tf-ion-android-people:before {
  292. content: "\f39e";
  293. }
  294. .tf-ion-android-person-add:before {
  295. content: "\f39f";
  296. }
  297. .tf-ion-android-person:before {
  298. content: "\f3a0";
  299. }
  300. .tf-ion-android-phone-landscape:before {
  301. content: "\f3a1";
  302. }
  303. .tf-ion-android-phone-portrait:before {
  304. content: "\f3a2";
  305. }
  306. .tf-ion-android-pin:before {
  307. content: "\f3a3";
  308. }
  309. .tf-ion-android-plane:before {
  310. content: "\f3a4";
  311. }
  312. .tf-ion-android-playstore:before {
  313. content: "\f2f0";
  314. }
  315. .tf-ion-android-print:before {
  316. content: "\f3a5";
  317. }
  318. .tf-ion-android-radio-button-off:before {
  319. content: "\f3a6";
  320. }
  321. .tf-ion-android-radio-button-on:before {
  322. content: "\f3a7";
  323. }
  324. .tf-ion-android-refresh:before {
  325. content: "\f3a8";
  326. }
  327. .tf-ion-android-remove-circle:before {
  328. content: "\f3a9";
  329. }
  330. .tf-ion-android-remove:before {
  331. content: "\f2f4";
  332. }
  333. .tf-ion-android-restaurant:before {
  334. content: "\f3aa";
  335. }
  336. .tf-ion-android-sad:before {
  337. content: "\f3ab";
  338. }
  339. .tf-ion-android-search:before {
  340. content: "\f2f5";
  341. }
  342. .tf-ion-android-send:before {
  343. content: "\f2f6";
  344. }
  345. .tf-ion-android-settings:before {
  346. content: "\f2f7";
  347. }
  348. .tf-ion-android-share-alt:before {
  349. content: "\f3ac";
  350. }
  351. .tf-ion-android-share:before {
  352. content: "\f2f8";
  353. }
  354. .tf-ion-android-star-half:before {
  355. content: "\f3ad";
  356. }
  357. .tf-ion-android-star-outline:before {
  358. content: "\f3ae";
  359. }
  360. .tf-ion-android-star:before {
  361. content: "\f2fc";
  362. }
  363. .tf-ion-android-stopwatch:before {
  364. content: "\f2fd";
  365. }
  366. .tf-ion-android-subway:before {
  367. content: "\f3af";
  368. }
  369. .tf-ion-android-sunny:before {
  370. content: "\f3b0";
  371. }
  372. .tf-ion-android-sync:before {
  373. content: "\f3b1";
  374. }
  375. .tf-ion-android-textsms:before {
  376. content: "\f3b2";
  377. }
  378. .tf-ion-android-time:before {
  379. content: "\f3b3";
  380. }
  381. .tf-ion-android-train:before {
  382. content: "\f3b4";
  383. }
  384. .tf-ion-android-unlock:before {
  385. content: "\f3b5";
  386. }
  387. .tf-ion-android-upload:before {
  388. content: "\f3b6";
  389. }
  390. .tf-ion-android-volume-down:before {
  391. content: "\f3b7";
  392. }
  393. .tf-ion-android-volume-mute:before {
  394. content: "\f3b8";
  395. }
  396. .tf-ion-android-volume-off:before {
  397. content: "\f3b9";
  398. }
  399. .tf-ion-android-volume-up:before {
  400. content: "\f3ba";
  401. }
  402. .tf-ion-android-walk:before {
  403. content: "\f3bb";
  404. }
  405. .tf-ion-android-warning:before {
  406. content: "\f3bc";
  407. }
  408. .tf-ion-android-watch:before {
  409. content: "\f3bd";
  410. }
  411. .tf-ion-android-wifi:before {
  412. content: "\f305";
  413. }
  414. .tf-ion-aperture:before {
  415. content: "\f313";
  416. }
  417. .tf-ion-archive:before {
  418. content: "\f102";
  419. }
  420. .tf-ion-arrow-down-a:before {
  421. content: "\f103";
  422. }
  423. .tf-ion-arrow-down-b:before {
  424. content: "\f104";
  425. }
  426. .tf-ion-arrow-down-c:before {
  427. content: "\f105";
  428. }
  429. .tf-ion-arrow-expand:before {
  430. content: "\f25e";
  431. }
  432. .tf-ion-arrow-graph-down-left:before {
  433. content: "\f25f";
  434. }
  435. .tf-ion-arrow-graph-down-right:before {
  436. content: "\f260";
  437. }
  438. .tf-ion-arrow-graph-up-left:before {
  439. content: "\f261";
  440. }
  441. .tf-ion-arrow-graph-up-right:before {
  442. content: "\f262";
  443. }
  444. .tf-ion-arrow-left-a:before {
  445. content: "\f106";
  446. }
  447. .tf-ion-arrow-left-b:before {
  448. content: "\f107";
  449. }
  450. .tf-ion-arrow-left-c:before {
  451. content: "\f108";
  452. }
  453. .tf-ion-arrow-move:before {
  454. content: "\f263";
  455. }
  456. .tf-ion-arrow-resize:before {
  457. content: "\f264";
  458. }
  459. .tf-ion-arrow-return-left:before {
  460. content: "\f265";
  461. }
  462. .tf-ion-arrow-return-right:before {
  463. content: "\f266";
  464. }
  465. .tf-ion-arrow-right-a:before {
  466. content: "\f109";
  467. }
  468. .tf-ion-arrow-right-b:before {
  469. content: "\f10a";
  470. }
  471. .tf-ion-arrow-right-c:before {
  472. content: "\f10b";
  473. }
  474. .tf-ion-arrow-shrink:before {
  475. content: "\f267";
  476. }
  477. .tf-ion-arrow-swap:before {
  478. content: "\f268";
  479. }
  480. .tf-ion-arrow-up-a:before {
  481. content: "\f10c";
  482. }
  483. .tf-ion-arrow-up-b:before {
  484. content: "\f10d";
  485. }
  486. .tf-ion-arrow-up-c:before {
  487. content: "\f10e";
  488. }
  489. .tf-ion-asterisk:before {
  490. content: "\f314";
  491. }
  492. .tf-ion-at:before {
  493. content: "\f10f";
  494. }
  495. .tf-ion-backspace-outline:before {
  496. content: "\f3be";
  497. }
  498. .tf-ion-backspace:before {
  499. content: "\f3bf";
  500. }
  501. .tf-ion-bag:before {
  502. content: "\f110";
  503. }
  504. .tf-ion-battery-charging:before {
  505. content: "\f111";
  506. }
  507. .tf-ion-battery-empty:before {
  508. content: "\f112";
  509. }
  510. .tf-ion-battery-full:before {
  511. content: "\f113";
  512. }
  513. .tf-ion-battery-half:before {
  514. content: "\f114";
  515. }
  516. .tf-ion-battery-low:before {
  517. content: "\f115";
  518. }
  519. .tf-ion-beaker:before {
  520. content: "\f269";
  521. }
  522. .tf-ion-beer:before {
  523. content: "\f26a";
  524. }
  525. .tf-ion-bluetooth:before {
  526. content: "\f116";
  527. }
  528. .tf-ion-bonfire:before {
  529. content: "\f315";
  530. }
  531. .tf-ion-bookmark:before {
  532. content: "\f26b";
  533. }
  534. .tf-ion-bowtie:before {
  535. content: "\f3c0";
  536. }
  537. .tf-ion-briefcase:before {
  538. content: "\f26c";
  539. }
  540. .tf-ion-bug:before {
  541. content: "\f2be";
  542. }
  543. .tf-ion-calculator:before {
  544. content: "\f26d";
  545. }
  546. .tf-ion-calendar:before {
  547. content: "\f117";
  548. }
  549. .tf-ion-camera:before {
  550. content: "\f118";
  551. }
  552. .tf-ion-card:before {
  553. content: "\f119";
  554. }
  555. .tf-ion-cash:before {
  556. content: "\f316";
  557. }
  558. .tf-ion-chatbox-working:before {
  559. content: "\f11a";
  560. }
  561. .tf-ion-chatbox:before {
  562. content: "\f11b";
  563. }
  564. .tf-ion-chatboxes:before {
  565. content: "\f11c";
  566. }
  567. .tf-ion-chatbubble-working:before {
  568. content: "\f11d";
  569. }
  570. .tf-ion-chatbubble:before {
  571. content: "\f11e";
  572. }
  573. .tf-ion-chatbubbles:before {
  574. content: "\f11f";
  575. }
  576. .tf-ion-checkmark-circled:before {
  577. content: "\f120";
  578. }
  579. .tf-ion-checkmark-round:before {
  580. content: "\f121";
  581. }
  582. .tf-ion-checkmark:before {
  583. content: "\f122";
  584. }
  585. .tf-ion-chevron-down:before {
  586. content: "\f123";
  587. }
  588. .tf-ion-chevron-left:before {
  589. content: "\f124";
  590. }
  591. .tf-ion-chevron-right:before {
  592. content: "\f125";
  593. }
  594. .tf-ion-chevron-up:before {
  595. content: "\f126";
  596. }
  597. .tf-ion-clipboard:before {
  598. content: "\f127";
  599. }
  600. .tf-ion-clock:before {
  601. content: "\f26e";
  602. }
  603. .tf-ion-close-circled:before {
  604. content: "\f128";
  605. }
  606. .tf-ion-close-round:before {
  607. content: "\f129";
  608. }
  609. .tf-ion-close:before {
  610. content: "\f12a";
  611. }
  612. .tf-ion-closed-captioning:before {
  613. content: "\f317";
  614. }
  615. .tf-ion-cloud:before {
  616. content: "\f12b";
  617. }
  618. .tf-ion-code-download:before {
  619. content: "\f26f";
  620. }
  621. .tf-ion-code-working:before {
  622. content: "\f270";
  623. }
  624. .tf-ion-code:before {
  625. content: "\f271";
  626. }
  627. .tf-ion-coffee:before {
  628. content: "\f272";
  629. }
  630. .tf-ion-compass:before {
  631. content: "\f273";
  632. }
  633. .tf-ion-compose:before {
  634. content: "\f12c";
  635. }
  636. .tf-ion-connection-bars:before {
  637. content: "\f274";
  638. }
  639. .tf-ion-contrast:before {
  640. content: "\f275";
  641. }
  642. .tf-ion-crop:before {
  643. content: "\f3c1";
  644. }
  645. .tf-ion-cube:before {
  646. content: "\f318";
  647. }
  648. .tf-ion-disc:before {
  649. content: "\f12d";
  650. }
  651. .tf-ion-document-text:before {
  652. content: "\f12e";
  653. }
  654. .tf-ion-document:before {
  655. content: "\f12f";
  656. }
  657. .tf-ion-drag:before {
  658. content: "\f130";
  659. }
  660. .tf-ion-earth:before {
  661. content: "\f276";
  662. }
  663. .tf-ion-easel:before {
  664. content: "\f3c2";
  665. }
  666. .tf-ion-edit:before {
  667. content: "\f2bf";
  668. }
  669. .tf-ion-egg:before {
  670. content: "\f277";
  671. }
  672. .tf-ion-eject:before {
  673. content: "\f131";
  674. }
  675. .tf-ion-email-unread:before {
  676. content: "\f3c3";
  677. }
  678. .tf-ion-email:before {
  679. content: "\f132";
  680. }
  681. .tf-ion-erlenmeyer-flask-bubbles:before {
  682. content: "\f3c4";
  683. }
  684. .tf-ion-erlenmeyer-flask:before {
  685. content: "\f3c5";
  686. }
  687. .tf-ion-eye-disabled:before {
  688. content: "\f306";
  689. }
  690. .tf-ion-eye:before {
  691. content: "\f133";
  692. }
  693. .tf-ion-female:before {
  694. content: "\f278";
  695. }
  696. .tf-ion-filing:before {
  697. content: "\f134";
  698. }
  699. .tf-ion-film-marker:before {
  700. content: "\f135";
  701. }
  702. .tf-ion-fireball:before {
  703. content: "\f319";
  704. }
  705. .tf-ion-flag:before {
  706. content: "\f279";
  707. }
  708. .tf-ion-flame:before {
  709. content: "\f31a";
  710. }
  711. .tf-ion-flash-off:before {
  712. content: "\f136";
  713. }
  714. .tf-ion-flash:before {
  715. content: "\f137";
  716. }
  717. .tf-ion-folder:before {
  718. content: "\f139";
  719. }
  720. .tf-ion-fork-repo:before {
  721. content: "\f2c0";
  722. }
  723. .tf-ion-fork:before {
  724. content: "\f27a";
  725. }
  726. .tf-ion-forward:before {
  727. content: "\f13a";
  728. }
  729. .tf-ion-funnel:before {
  730. content: "\f31b";
  731. }
  732. .tf-ion-gear-a:before {
  733. content: "\f13d";
  734. }
  735. .tf-ion-gear-b:before {
  736. content: "\f13e";
  737. }
  738. .tf-ion-grid:before {
  739. content: "\f13f";
  740. }
  741. .tf-ion-hammer:before {
  742. content: "\f27b";
  743. }
  744. .tf-ion-happy-outline:before {
  745. content: "\f3c6";
  746. }
  747. .tf-ion-happy:before {
  748. content: "\f31c";
  749. }
  750. .tf-ion-headphone:before {
  751. content: "\f140";
  752. }
  753. .tf-ion-heart-broken:before {
  754. content: "\f31d";
  755. }
  756. .tf-ion-heart:before {
  757. content: "\f141";
  758. }
  759. .tf-ion-help-buoy:before {
  760. content: "\f27c";
  761. }
  762. .tf-ion-help-circled:before {
  763. content: "\f142";
  764. }
  765. .tf-ion-help:before {
  766. content: "\f143";
  767. }
  768. .tf-ion-home:before {
  769. content: "\f144";
  770. }
  771. .tf-ion-icecream:before {
  772. content: "\f27d";
  773. }
  774. .tf-ion-image:before {
  775. content: "\f147";
  776. }
  777. .tf-ion-images:before {
  778. content: "\f148";
  779. }
  780. .tf-ion-information-circled:before {
  781. content: "\f149";
  782. }
  783. .tf-ion-information:before {
  784. content: "\f14a";
  785. }
  786. .tf-ion-ionic:before {
  787. content: "\f14b";
  788. }
  789. .tf-ion-ios-alarm-outline:before {
  790. content: "\f3c7";
  791. }
  792. .tf-ion-ios-alarm:before {
  793. content: "\f3c8";
  794. }
  795. .tf-ion-ios-albums-outline:before {
  796. content: "\f3c9";
  797. }
  798. .tf-ion-ios-albums:before {
  799. content: "\f3ca";
  800. }
  801. .tf-ion-ios-americanfootball-outline:before {
  802. content: "\f3cb";
  803. }
  804. .tf-ion-ios-americanfootball:before {
  805. content: "\f3cc";
  806. }
  807. .tf-ion-ios-analytics-outline:before {
  808. content: "\f3cd";
  809. }
  810. .tf-ion-ios-analytics:before {
  811. content: "\f3ce";
  812. }
  813. .tf-ion-ios-arrow-back:before {
  814. content: "\f3cf";
  815. }
  816. .tf-ion-ios-arrow-down:before {
  817. content: "\f3d0";
  818. }
  819. .tf-ion-ios-arrow-forward:before {
  820. content: "\f3d1";
  821. }
  822. .tf-ion-ios-arrow-left:before {
  823. content: "\f3d2";
  824. }
  825. .tf-ion-ios-arrow-right:before {
  826. content: "\f3d3";
  827. }
  828. .tf-ion-ios-arrow-thin-down:before {
  829. content: "\f3d4";
  830. }
  831. .tf-ion-ios-arrow-thin-left:before {
  832. content: "\f3d5";
  833. }
  834. .tf-ion-ios-arrow-thin-right:before {
  835. content: "\f3d6";
  836. }
  837. .tf-ion-ios-arrow-thin-up:before {
  838. content: "\f3d7";
  839. }
  840. .tf-ion-ios-arrow-up:before {
  841. content: "\f3d8";
  842. }
  843. .tf-ion-ios-at-outline:before {
  844. content: "\f3d9";
  845. }
  846. .tf-ion-ios-at:before {
  847. content: "\f3da";
  848. }
  849. .tf-ion-ios-barcode-outline:before {
  850. content: "\f3db";
  851. }
  852. .tf-ion-ios-barcode:before {
  853. content: "\f3dc";
  854. }
  855. .tf-ion-ios-baseball-outline:before {
  856. content: "\f3dd";
  857. }
  858. .tf-ion-ios-baseball:before {
  859. content: "\f3de";
  860. }
  861. .tf-ion-ios-basketball-outline:before {
  862. content: "\f3df";
  863. }
  864. .tf-ion-ios-basketball:before {
  865. content: "\f3e0";
  866. }
  867. .tf-ion-ios-bell-outline:before {
  868. content: "\f3e1";
  869. }
  870. .tf-ion-ios-bell:before {
  871. content: "\f3e2";
  872. }
  873. .tf-ion-ios-body-outline:before {
  874. content: "\f3e3";
  875. }
  876. .tf-ion-ios-body:before {
  877. content: "\f3e4";
  878. }
  879. .tf-ion-ios-bolt-outline:before {
  880. content: "\f3e5";
  881. }
  882. .tf-ion-ios-bolt:before {
  883. content: "\f3e6";
  884. }
  885. .tf-ion-ios-book-outline:before {
  886. content: "\f3e7";
  887. }
  888. .tf-ion-ios-book:before {
  889. content: "\f3e8";
  890. }
  891. .tf-ion-ios-bookmarks-outline:before {
  892. content: "\f3e9";
  893. }
  894. .tf-ion-ios-bookmarks:before {
  895. content: "\f3ea";
  896. }
  897. .tf-ion-ios-box-outline:before {
  898. content: "\f3eb";
  899. }
  900. .tf-ion-ios-box:before {
  901. content: "\f3ec";
  902. }
  903. .tf-ion-ios-briefcase-outline:before {
  904. content: "\f3ed";
  905. }
  906. .tf-ion-ios-briefcase:before {
  907. content: "\f3ee";
  908. }
  909. .tf-ion-ios-browsers-outline:before {
  910. content: "\f3ef";
  911. }
  912. .tf-ion-ios-browsers:before {
  913. content: "\f3f0";
  914. }
  915. .tf-ion-ios-calculator-outline:before {
  916. content: "\f3f1";
  917. }
  918. .tf-ion-ios-calculator:before {
  919. content: "\f3f2";
  920. }
  921. .tf-ion-ios-calendar-outline:before {
  922. content: "\f3f3";
  923. }
  924. .tf-ion-ios-calendar:before {
  925. content: "\f3f4";
  926. }
  927. .tf-ion-ios-camera-outline:before {
  928. content: "\f3f5";
  929. }
  930. .tf-ion-ios-camera:before {
  931. content: "\f3f6";
  932. }
  933. .tf-ion-ios-cart-outline:before {
  934. content: "\f3f7";
  935. }
  936. .tf-ion-ios-cart:before {
  937. content: "\f3f8";
  938. }
  939. .tf-ion-ios-chatboxes-outline:before {
  940. content: "\f3f9";
  941. }
  942. .tf-ion-ios-chatboxes:before {
  943. content: "\f3fa";
  944. }
  945. .tf-ion-ios-chatbubble-outline:before {
  946. content: "\f3fb";
  947. }
  948. .tf-ion-ios-chatbubble:before {
  949. content: "\f3fc";
  950. }
  951. .tf-ion-ios-checkmark-empty:before {
  952. content: "\f3fd";
  953. }
  954. .tf-ion-ios-checkmark-outline:before {
  955. content: "\f3fe";
  956. }
  957. .tf-ion-ios-checkmark:before {
  958. content: "\f3ff";
  959. }
  960. .tf-ion-ios-circle-filled:before {
  961. content: "\f400";
  962. }
  963. .tf-ion-ios-circle-outline:before {
  964. content: "\f401";
  965. }
  966. .tf-ion-ios-clock-outline:before {
  967. content: "\f402";
  968. }
  969. .tf-ion-ios-clock:before {
  970. content: "\f403";
  971. }
  972. .tf-ion-ios-close-empty:before {
  973. content: "\f404";
  974. }
  975. .tf-ion-ios-close-outline:before {
  976. content: "\f405";
  977. }
  978. .tf-ion-ios-close:before {
  979. content: "\f406";
  980. }
  981. .tf-ion-ios-cloud-download-outline:before {
  982. content: "\f407";
  983. }
  984. .tf-ion-ios-cloud-download:before {
  985. content: "\f408";
  986. }
  987. .tf-ion-ios-cloud-outline:before {
  988. content: "\f409";
  989. }
  990. .tf-ion-ios-cloud-upload-outline:before {
  991. content: "\f40a";
  992. }
  993. .tf-ion-ios-cloud-upload:before {
  994. content: "\f40b";
  995. }
  996. .tf-ion-ios-cloud:before {
  997. content: "\f40c";
  998. }
  999. .tf-ion-ios-cloudy-night-outline:before {
  1000. content: "\f40d";
  1001. }
  1002. .tf-ion-ios-cloudy-night:before {
  1003. content: "\f40e";
  1004. }
  1005. .tf-ion-ios-cloudy-outline:before {
  1006. content: "\f40f";
  1007. }
  1008. .tf-ion-ios-cloudy:before {
  1009. content: "\f410";
  1010. }
  1011. .tf-ion-ios-cog-outline:before {
  1012. content: "\f411";
  1013. }
  1014. .tf-ion-ios-cog:before {
  1015. content: "\f412";
  1016. }
  1017. .tf-ion-ios-color-filter-outline:before {
  1018. content: "\f413";
  1019. }
  1020. .tf-ion-ios-color-filter:before {
  1021. content: "\f414";
  1022. }
  1023. .tf-ion-ios-color-wand-outline:before {
  1024. content: "\f415";
  1025. }
  1026. .tf-ion-ios-color-wand:before {
  1027. content: "\f416";
  1028. }
  1029. .tf-ion-ios-compose-outline:before {
  1030. content: "\f417";
  1031. }
  1032. .tf-ion-ios-compose:before {
  1033. content: "\f418";
  1034. }
  1035. .tf-ion-ios-contact-outline:before {
  1036. content: "\f419";
  1037. }
  1038. .tf-ion-ios-contact:before {
  1039. content: "\f41a";
  1040. }
  1041. .tf-ion-ios-copy-outline:before {
  1042. content: "\f41b";
  1043. }
  1044. .tf-ion-ios-copy:before {
  1045. content: "\f41c";
  1046. }
  1047. .tf-ion-ios-crop-strong:before {
  1048. content: "\f41d";
  1049. }
  1050. .tf-ion-ios-crop:before {
  1051. content: "\f41e";
  1052. }
  1053. .tf-ion-ios-download-outline:before {
  1054. content: "\f41f";
  1055. }
  1056. .tf-ion-ios-download:before {
  1057. content: "\f420";
  1058. }
  1059. .tf-ion-ios-drag:before {
  1060. content: "\f421";
  1061. }
  1062. .tf-ion-ios-email-outline:before {
  1063. content: "\f422";
  1064. }
  1065. .tf-ion-ios-email:before {
  1066. content: "\f423";
  1067. }
  1068. .tf-ion-ios-eye-outline:before {
  1069. content: "\f424";
  1070. }
  1071. .tf-ion-ios-eye:before {
  1072. content: "\f425";
  1073. }
  1074. .tf-ion-ios-fastforward-outline:before {
  1075. content: "\f426";
  1076. }
  1077. .tf-ion-ios-fastforward:before {
  1078. content: "\f427";
  1079. }
  1080. .tf-ion-ios-filing-outline:before {
  1081. content: "\f428";
  1082. }
  1083. .tf-ion-ios-filing:before {
  1084. content: "\f429";
  1085. }
  1086. .tf-ion-ios-film-outline:before {
  1087. content: "\f42a";
  1088. }
  1089. .tf-ion-ios-film:before {
  1090. content: "\f42b";
  1091. }
  1092. .tf-ion-ios-flag-outline:before {
  1093. content: "\f42c";
  1094. }
  1095. .tf-ion-ios-flag:before {
  1096. content: "\f42d";
  1097. }
  1098. .tf-ion-ios-flame-outline:before {
  1099. content: "\f42e";
  1100. }
  1101. .tf-ion-ios-flame:before {
  1102. content: "\f42f";
  1103. }
  1104. .tf-ion-ios-flask-outline:before {
  1105. content: "\f430";
  1106. }
  1107. .tf-ion-ios-flask:before {
  1108. content: "\f431";
  1109. }
  1110. .tf-ion-ios-flower-outline:before {
  1111. content: "\f432";
  1112. }
  1113. .tf-ion-ios-flower:before {
  1114. content: "\f433";
  1115. }
  1116. .tf-ion-ios-folder-outline:before {
  1117. content: "\f434";
  1118. }
  1119. .tf-ion-ios-folder:before {
  1120. content: "\f435";
  1121. }
  1122. .tf-ion-ios-football-outline:before {
  1123. content: "\f436";
  1124. }
  1125. .tf-ion-ios-football:before {
  1126. content: "\f437";
  1127. }
  1128. .tf-ion-ios-game-controller-a-outline:before {
  1129. content: "\f438";
  1130. }
  1131. .tf-ion-ios-game-controller-a:before {
  1132. content: "\f439";
  1133. }
  1134. .tf-ion-ios-game-controller-b-outline:before {
  1135. content: "\f43a";
  1136. }
  1137. .tf-ion-ios-game-controller-b:before {
  1138. content: "\f43b";
  1139. }
  1140. .tf-ion-ios-gear-outline:before {
  1141. content: "\f43c";
  1142. }
  1143. .tf-ion-ios-gear:before {
  1144. content: "\f43d";
  1145. }
  1146. .tf-ion-ios-glasses-outline:before {
  1147. content: "\f43e";
  1148. }
  1149. .tf-ion-ios-glasses:before {
  1150. content: "\f43f";
  1151. }
  1152. .tf-ion-ios-grid-view-outline:before {
  1153. content: "\f440";
  1154. }
  1155. .tf-ion-ios-grid-view:before {
  1156. content: "\f441";
  1157. }
  1158. .tf-ion-ios-heart-outline:before {
  1159. content: "\f442";
  1160. }
  1161. .tf-ion-ios-heart:before {
  1162. content: "\f443";
  1163. }
  1164. .tf-ion-ios-help-empty:before {
  1165. content: "\f444";
  1166. }
  1167. .tf-ion-ios-help-outline:before {
  1168. content: "\f445";
  1169. }
  1170. .tf-ion-ios-help:before {
  1171. content: "\f446";
  1172. }
  1173. .tf-ion-ios-home-outline:before {
  1174. content: "\f447";
  1175. }
  1176. .tf-ion-ios-home:before {
  1177. content: "\f448";
  1178. }
  1179. .tf-ion-ios-infinite-outline:before {
  1180. content: "\f449";
  1181. }
  1182. .tf-ion-ios-infinite:before {
  1183. content: "\f44a";
  1184. }
  1185. .tf-ion-ios-information-empty:before {
  1186. content: "\f44b";
  1187. }
  1188. .tf-ion-ios-information-outline:before {
  1189. content: "\f44c";
  1190. }
  1191. .tf-ion-ios-information:before {
  1192. content: "\f44d";
  1193. }
  1194. .tf-ion-ios-ionic-outline:before {
  1195. content: "\f44e";
  1196. }
  1197. .tf-ion-ios-keypad-outline:before {
  1198. content: "\f44f";
  1199. }
  1200. .tf-ion-ios-keypad:before {
  1201. content: "\f450";
  1202. }
  1203. .tf-ion-ios-lightbulb-outline:before {
  1204. content: "\f451";
  1205. }
  1206. .tf-ion-ios-lightbulb:before {
  1207. content: "\f452";
  1208. }
  1209. .tf-ion-ios-list-outline:before {
  1210. content: "\f453";
  1211. }
  1212. .tf-ion-ios-list:before {
  1213. content: "\f454";
  1214. }
  1215. .tf-ion-ios-location-outline:before {
  1216. content: "\f455";
  1217. }
  1218. .tf-ion-ios-location:before {
  1219. content: "\f456";
  1220. }
  1221. .tf-ion-ios-locked-outline:before {
  1222. content: "\f457";
  1223. }
  1224. .tf-ion-ios-locked:before {
  1225. content: "\f458";
  1226. }
  1227. .tf-ion-ios-loop-strong:before {
  1228. content: "\f459";
  1229. }
  1230. .tf-ion-ios-loop:before {
  1231. content: "\f45a";
  1232. }
  1233. .tf-ion-ios-medical-outline:before {
  1234. content: "\f45b";
  1235. }
  1236. .tf-ion-ios-medical:before {
  1237. content: "\f45c";
  1238. }
  1239. .tf-ion-ios-medkit-outline:before {
  1240. content: "\f45d";
  1241. }
  1242. .tf-ion-ios-medkit:before {
  1243. content: "\f45e";
  1244. }
  1245. .tf-ion-ios-mic-off:before {
  1246. content: "\f45f";
  1247. }
  1248. .tf-ion-ios-mic-outline:before {
  1249. content: "\f460";
  1250. }
  1251. .tf-ion-ios-mic:before {
  1252. content: "\f461";
  1253. }
  1254. .tf-ion-ios-minus-empty:before {
  1255. content: "\f462";
  1256. }
  1257. .tf-ion-ios-minus-outline:before {
  1258. content: "\f463";
  1259. }
  1260. .tf-ion-ios-minus:before {
  1261. content: "\f464";
  1262. }
  1263. .tf-ion-ios-monitor-outline:before {
  1264. content: "\f465";
  1265. }
  1266. .tf-ion-ios-monitor:before {
  1267. content: "\f466";
  1268. }
  1269. .tf-ion-ios-moon-outline:before {
  1270. content: "\f467";
  1271. }
  1272. .tf-ion-ios-moon:before {
  1273. content: "\f468";
  1274. }
  1275. .tf-ion-ios-more-outline:before {
  1276. content: "\f469";
  1277. }
  1278. .tf-ion-ios-more:before {
  1279. content: "\f46a";
  1280. }
  1281. .tf-ion-ios-musical-note:before {
  1282. content: "\f46b";
  1283. }
  1284. .tf-ion-ios-musical-notes:before {
  1285. content: "\f46c";
  1286. }
  1287. .tf-ion-ios-navigate-outline:before {
  1288. content: "\f46d";
  1289. }
  1290. .tf-ion-ios-navigate:before {
  1291. content: "\f46e";
  1292. }
  1293. .tf-ion-ios-nutrition-outline:before {
  1294. content: "\f46f";
  1295. }
  1296. .tf-ion-ios-nutrition:before {
  1297. content: "\f470";
  1298. }
  1299. .tf-ion-ios-paper-outline:before {
  1300. content: "\f471";
  1301. }
  1302. .tf-ion-ios-paper:before {
  1303. content: "\f472";
  1304. }
  1305. .tf-ion-ios-paperplane-outline:before {
  1306. content: "\f473";
  1307. }
  1308. .tf-ion-ios-paperplane:before {
  1309. content: "\f474";
  1310. }
  1311. .tf-ion-ios-partlysunny-outline:before {
  1312. content: "\f475";
  1313. }
  1314. .tf-ion-ios-partlysunny:before {
  1315. content: "\f476";
  1316. }
  1317. .tf-ion-ios-pause-outline:before {
  1318. content: "\f477";
  1319. }
  1320. .tf-ion-ios-pause:before {
  1321. content: "\f478";
  1322. }
  1323. .tf-ion-ios-paw-outline:before {
  1324. content: "\f479";
  1325. }
  1326. .tf-ion-ios-paw:before {
  1327. content: "\f47a";
  1328. }
  1329. .tf-ion-ios-people-outline:before {
  1330. content: "\f47b";
  1331. }
  1332. .tf-ion-ios-people:before {
  1333. content: "\f47c";
  1334. }
  1335. .tf-ion-ios-person-outline:before {
  1336. content: "\f47d";
  1337. }
  1338. .tf-ion-ios-person:before {
  1339. content: "\f47e";
  1340. }
  1341. .tf-ion-ios-personadd-outline:before {
  1342. content: "\f47f";
  1343. }
  1344. .tf-ion-ios-personadd:before {
  1345. content: "\f480";
  1346. }
  1347. .tf-ion-ios-photos-outline:before {
  1348. content: "\f481";
  1349. }
  1350. .tf-ion-ios-photos:before {
  1351. content: "\f482";
  1352. }
  1353. .tf-ion-ios-pie-outline:before {
  1354. content: "\f483";
  1355. }
  1356. .tf-ion-ios-pie:before {
  1357. content: "\f484";
  1358. }
  1359. .tf-ion-ios-pint-outline:before {
  1360. content: "\f485";
  1361. }
  1362. .tf-ion-ios-pint:before {
  1363. content: "\f486";
  1364. }
  1365. .tf-ion-ios-play-outline:before {
  1366. content: "\f487";
  1367. }
  1368. .tf-ion-ios-play:before {
  1369. content: "\f488";
  1370. }
  1371. .tf-ion-ios-plus-empty:before {
  1372. content: "\f489";
  1373. }
  1374. .tf-ion-ios-plus-outline:before {
  1375. content: "\f48a";
  1376. }
  1377. .tf-ion-ios-plus:before {
  1378. content: "\f48b";
  1379. }
  1380. .tf-ion-ios-pricetag-outline:before {
  1381. content: "\f48c";
  1382. }
  1383. .tf-ion-ios-pricetag:before {
  1384. content: "\f48d";
  1385. }
  1386. .tf-ion-ios-pricetags-outline:before {
  1387. content: "\f48e";
  1388. }
  1389. .tf-ion-ios-pricetags:before {
  1390. content: "\f48f";
  1391. }
  1392. .tf-ion-ios-printer-outline:before {
  1393. content: "\f490";
  1394. }
  1395. .tf-ion-ios-printer:before {
  1396. content: "\f491";
  1397. }
  1398. .tf-ion-ios-pulse-strong:before {
  1399. content: "\f492";
  1400. }
  1401. .tf-ion-ios-pulse:before {
  1402. content: "\f493";
  1403. }
  1404. .tf-ion-ios-rainy-outline:before {
  1405. content: "\f494";
  1406. }
  1407. .tf-ion-ios-rainy:before {
  1408. content: "\f495";
  1409. }
  1410. .tf-ion-ios-recording-outline:before {
  1411. content: "\f496";
  1412. }
  1413. .tf-ion-ios-recording:before {
  1414. content: "\f497";
  1415. }
  1416. .tf-ion-ios-redo-outline:before {
  1417. content: "\f498";
  1418. }
  1419. .tf-ion-ios-redo:before {
  1420. content: "\f499";
  1421. }
  1422. .tf-ion-ios-refresh-empty:before {
  1423. content: "\f49a";
  1424. }
  1425. .tf-ion-ios-refresh-outline:before {
  1426. content: "\f49b";
  1427. }
  1428. .tf-ion-ios-refresh:before {
  1429. content: "\f49c";
  1430. }
  1431. .tf-ion-ios-reload:before {
  1432. content: "\f49d";
  1433. }
  1434. .tf-ion-ios-reverse-camera-outline:before {
  1435. content: "\f49e";
  1436. }
  1437. .tf-ion-ios-reverse-camera:before {
  1438. content: "\f49f";
  1439. }
  1440. .tf-ion-ios-rewind-outline:before {
  1441. content: "\f4a0";
  1442. }
  1443. .tf-ion-ios-rewind:before {
  1444. content: "\f4a1";
  1445. }
  1446. .tf-ion-ios-rose-outline:before {
  1447. content: "\f4a2";
  1448. }
  1449. .tf-ion-ios-rose:before {
  1450. content: "\f4a3";
  1451. }
  1452. .tf-ion-ios-search-strong:before {
  1453. content: "\f4a4";
  1454. }
  1455. .tf-ion-ios-search:before {
  1456. content: "\f4a5";
  1457. }
  1458. .tf-ion-ios-settings-strong:before {
  1459. content: "\f4a6";
  1460. }
  1461. .tf-ion-ios-settings:before {
  1462. content: "\f4a7";
  1463. }
  1464. .tf-ion-ios-shuffle-strong:before {
  1465. content: "\f4a8";
  1466. }
  1467. .tf-ion-ios-shuffle:before {
  1468. content: "\f4a9";
  1469. }
  1470. .tf-ion-ios-skipbackward-outline:before {
  1471. content: "\f4aa";
  1472. }
  1473. .tf-ion-ios-skipbackward:before {
  1474. content: "\f4ab";
  1475. }
  1476. .tf-ion-ios-skipforward-outline:before {
  1477. content: "\f4ac";
  1478. }
  1479. .tf-ion-ios-skipforward:before {
  1480. content: "\f4ad";
  1481. }
  1482. .tf-ion-ios-snowy:before {
  1483. content: "\f4ae";
  1484. }
  1485. .tf-ion-ios-speedometer-outline:before {
  1486. content: "\f4af";
  1487. }
  1488. .tf-ion-ios-speedometer:before {
  1489. content: "\f4b0";
  1490. }
  1491. .tf-ion-ios-star-half:before {
  1492. content: "\f4b1";
  1493. }
  1494. .tf-ion-ios-star-outline:before {
  1495. content: "\f4b2";
  1496. }
  1497. .tf-ion-ios-star:before {
  1498. content: "\f4b3";
  1499. }
  1500. .tf-ion-ios-stopwatch-outline:before {
  1501. content: "\f4b4";
  1502. }
  1503. .tf-ion-ios-stopwatch:before {
  1504. content: "\f4b5";
  1505. }
  1506. .tf-ion-ios-sunny-outline:before {
  1507. content: "\f4b6";
  1508. }
  1509. .tf-ion-ios-sunny:before {
  1510. content: "\f4b7";
  1511. }
  1512. .tf-ion-ios-telephone-outline:before {
  1513. content: "\f4b8";
  1514. }
  1515. .tf-ion-ios-telephone:before {
  1516. content: "\f4b9";
  1517. }
  1518. .tf-ion-ios-tennisball-outline:before {
  1519. content: "\f4ba";
  1520. }
  1521. .tf-ion-ios-tennisball:before {
  1522. content: "\f4bb";
  1523. }
  1524. .tf-ion-ios-thunderstorm-outline:before {
  1525. content: "\f4bc";
  1526. }
  1527. .tf-ion-ios-thunderstorm:before {
  1528. content: "\f4bd";
  1529. }
  1530. .tf-ion-ios-time-outline:before {
  1531. content: "\f4be";
  1532. }
  1533. .tf-ion-ios-time:before {
  1534. content: "\f4bf";
  1535. }
  1536. .tf-ion-ios-timer-outline:before {
  1537. content: "\f4c0";
  1538. }
  1539. .tf-ion-ios-timer:before {
  1540. content: "\f4c1";
  1541. }
  1542. .tf-ion-ios-toggle-outline:before {
  1543. content: "\f4c2";
  1544. }
  1545. .tf-ion-ios-toggle:before {
  1546. content: "\f4c3";
  1547. }
  1548. .tf-ion-ios-trash-outline:before {
  1549. content: "\f4c4";
  1550. }
  1551. .tf-ion-ios-trash:before {
  1552. content: "\f4c5";
  1553. }
  1554. .tf-ion-ios-undo-outline:before {
  1555. content: "\f4c6";
  1556. }
  1557. .tf-ion-ios-undo:before {
  1558. content: "\f4c7";
  1559. }
  1560. .tf-ion-ios-unlocked-outline:before {
  1561. content: "\f4c8";
  1562. }
  1563. .tf-ion-ios-unlocked:before {
  1564. content: "\f4c9";
  1565. }
  1566. .tf-ion-ios-upload-outline:before {
  1567. content: "\f4ca";
  1568. }
  1569. .tf-ion-ios-upload:before {
  1570. content: "\f4cb";
  1571. }
  1572. .tf-ion-ios-videocam-outline:before {
  1573. content: "\f4cc";
  1574. }
  1575. .tf-ion-ios-videocam:before {
  1576. content: "\f4cd";
  1577. }
  1578. .tf-ion-ios-volume-high:before {
  1579. content: "\f4ce";
  1580. }
  1581. .tf-ion-ios-volume-low:before {
  1582. content: "\f4cf";
  1583. }
  1584. .tf-ion-ios-wineglass-outline:before {
  1585. content: "\f4d0";
  1586. }
  1587. .tf-ion-ios-wineglass:before {
  1588. content: "\f4d1";
  1589. }
  1590. .tf-ion-ios-world-outline:before {
  1591. content: "\f4d2";
  1592. }
  1593. .tf-ion-ios-world:before {
  1594. content: "\f4d3";
  1595. }
  1596. .tf-ion-ipad:before {
  1597. content: "\f1f9";
  1598. }
  1599. .tf-ion-iphone:before {
  1600. content: "\f1fa";
  1601. }
  1602. .tf-ion-ipod:before {
  1603. content: "\f1fb";
  1604. }
  1605. .tf-ion-jet:before {
  1606. content: "\f295";
  1607. }
  1608. .tf-ion-key:before {
  1609. content: "\f296";
  1610. }
  1611. .tf-ion-knife:before {
  1612. content: "\f297";
  1613. }
  1614. .tf-ion-laptop:before {
  1615. content: "\f1fc";
  1616. }
  1617. .tf-ion-leaf:before {
  1618. content: "\f1fd";
  1619. }
  1620. .tf-ion-levels:before {
  1621. content: "\f298";
  1622. }
  1623. .tf-ion-lightbulb:before {
  1624. content: "\f299";
  1625. }
  1626. .tf-ion-link:before {
  1627. content: "\f1fe";
  1628. }
  1629. .tf-ion-load-a:before {
  1630. content: "\f29a";
  1631. }
  1632. .tf-ion-load-b:before {
  1633. content: "\f29b";
  1634. }
  1635. .tf-ion-load-c:before {
  1636. content: "\f29c";
  1637. }
  1638. .tf-ion-load-d:before {
  1639. content: "\f29d";
  1640. }
  1641. .tf-ion-location:before {
  1642. content: "\f1ff";
  1643. }
  1644. .tf-ion-lock-combination:before {
  1645. content: "\f4d4";
  1646. }
  1647. .tf-ion-locked:before {
  1648. content: "\f200";
  1649. }
  1650. .tf-ion-log-in:before {
  1651. content: "\f29e";
  1652. }
  1653. .tf-ion-log-out:before {
  1654. content: "\f29f";
  1655. }
  1656. .tf-ion-loop:before {
  1657. content: "\f201";
  1658. }
  1659. .tf-ion-magnet:before {
  1660. content: "\f2a0";
  1661. }
  1662. .tf-ion-male:before {
  1663. content: "\f2a1";
  1664. }
  1665. .tf-ion-man:before {
  1666. content: "\f202";
  1667. }
  1668. .tf-ion-map:before {
  1669. content: "\f203";
  1670. }
  1671. .tf-ion-medkit:before {
  1672. content: "\f2a2";
  1673. }
  1674. .tf-ion-merge:before {
  1675. content: "\f33f";
  1676. }
  1677. .tf-ion-mic-a:before {
  1678. content: "\f204";
  1679. }
  1680. .tf-ion-mic-b:before {
  1681. content: "\f205";
  1682. }
  1683. .tf-ion-mic-c:before {
  1684. content: "\f206";
  1685. }
  1686. .tf-ion-minus-circled:before {
  1687. content: "\f207";
  1688. }
  1689. .tf-ion-minus-round:before {
  1690. content: "\f208";
  1691. }
  1692. .tf-ion-minus:before {
  1693. content: "\f209";
  1694. }
  1695. .tf-ion-model-s:before {
  1696. content: "\f2c1";
  1697. }
  1698. .tf-ion-monitor:before {
  1699. content: "\f20a";
  1700. }
  1701. .tf-ion-more:before {
  1702. content: "\f20b";
  1703. }
  1704. .tf-ion-mouse:before {
  1705. content: "\f340";
  1706. }
  1707. .tf-ion-music-note:before {
  1708. content: "\f20c";
  1709. }
  1710. .tf-ion-navicon-round:before {
  1711. content: "\f20d";
  1712. }
  1713. .tf-ion-navicon:before {
  1714. content: "\f20e";
  1715. }
  1716. .tf-ion-navigate:before {
  1717. content: "\f2a3";
  1718. }
  1719. .tf-ion-network:before {
  1720. content: "\f341";
  1721. }
  1722. .tf-ion-no-smoking:before {
  1723. content: "\f2c2";
  1724. }
  1725. .tf-ion-nuclear:before {
  1726. content: "\f2a4";
  1727. }
  1728. .tf-ion-outlet:before {
  1729. content: "\f342";
  1730. }
  1731. .tf-ion-paintbrush:before {
  1732. content: "\f4d5";
  1733. }
  1734. .tf-ion-paintbucket:before {
  1735. content: "\f4d6";
  1736. }
  1737. .tf-ion-paper-airplane:before {
  1738. content: "\f2c3";
  1739. }
  1740. .tf-ion-paperclip:before {
  1741. content: "\f20f";
  1742. }
  1743. .tf-ion-pause:before {
  1744. content: "\f210";
  1745. }
  1746. .tf-ion-person-add:before {
  1747. content: "\f211";
  1748. }
  1749. .tf-ion-person-stalker:before {
  1750. content: "\f212";
  1751. }
  1752. .tf-ion-person:before {
  1753. content: "\f213";
  1754. }
  1755. .tf-ion-pie-graph:before {
  1756. content: "\f2a5";
  1757. }
  1758. .tf-ion-pin:before {
  1759. content: "\f2a6";
  1760. }
  1761. .tf-ion-pinpoint:before {
  1762. content: "\f2a7";
  1763. }
  1764. .tf-ion-pizza:before {
  1765. content: "\f2a8";
  1766. }
  1767. .tf-ion-plane:before {
  1768. content: "\f214";
  1769. }
  1770. .tf-ion-planet:before {
  1771. content: "\f343";
  1772. }
  1773. .tf-ion-play:before {
  1774. content: "\f215";
  1775. }
  1776. .tf-ion-playstation:before {
  1777. content: "\f30a";
  1778. }
  1779. .tf-ion-plus-circled:before {
  1780. content: "\f216";
  1781. }
  1782. .tf-ion-plus-round:before {
  1783. content: "\f217";
  1784. }
  1785. .tf-ion-plus:before {
  1786. content: "\f218";
  1787. }
  1788. .tf-ion-podium:before {
  1789. content: "\f344";
  1790. }
  1791. .tf-ion-pound:before {
  1792. content: "\f219";
  1793. }
  1794. .tf-ion-power:before {
  1795. content: "\f2a9";
  1796. }
  1797. .tf-ion-pricetag:before {
  1798. content: "\f2aa";
  1799. }
  1800. .tf-ion-pricetags:before {
  1801. content: "\f2ab";
  1802. }
  1803. .tf-ion-printer:before {
  1804. content: "\f21a";
  1805. }
  1806. .tf-ion-pull-request:before {
  1807. content: "\f345";
  1808. }
  1809. .tf-ion-qr-scanner:before {
  1810. content: "\f346";
  1811. }
  1812. .tf-ion-quote:before {
  1813. content: "\f347";
  1814. }
  1815. .tf-ion-radio-waves:before {
  1816. content: "\f2ac";
  1817. }
  1818. .tf-ion-record:before {
  1819. content: "\f21b";
  1820. }
  1821. .tf-ion-refresh:before {
  1822. content: "\f21c";
  1823. }
  1824. .tf-ion-reply-all:before {
  1825. content: "\f21d";
  1826. }
  1827. .tf-ion-reply:before {
  1828. content: "\f21e";
  1829. }
  1830. .tf-ion-ribbon-a:before {
  1831. content: "\f348";
  1832. }
  1833. .tf-ion-ribbon-b:before {
  1834. content: "\f349";
  1835. }
  1836. .tf-ion-sad-outline:before {
  1837. content: "\f4d7";
  1838. }
  1839. .tf-ion-sad:before {
  1840. content: "\f34a";
  1841. }
  1842. .tf-ion-scissors:before {
  1843. content: "\f34b";
  1844. }
  1845. .tf-ion-search:before {
  1846. content: "\f21f";
  1847. }
  1848. .tf-ion-settings:before {
  1849. content: "\f2ad";
  1850. }
  1851. .tf-ion-share:before {
  1852. content: "\f220";
  1853. }
  1854. .tf-ion-shuffle:before {
  1855. content: "\f221";
  1856. }
  1857. .tf-ion-skip-backward:before {
  1858. content: "\f222";
  1859. }
  1860. .tf-ion-skip-forward:before {
  1861. content: "\f223";
  1862. }
  1863. .tf-ion-social-android-outline:before {
  1864. content: "\f224";
  1865. }
  1866. .tf-ion-social-android:before {
  1867. content: "\f225";
  1868. }
  1869. .tf-ion-social-angular-outline:before {
  1870. content: "\f4d8";
  1871. }
  1872. .tf-ion-social-angular:before {
  1873. content: "\f4d9";
  1874. }
  1875. .tf-ion-social-apple-outline:before {
  1876. content: "\f226";
  1877. }
  1878. .tf-ion-social-apple:before {
  1879. content: "\f227";
  1880. }
  1881. .tf-ion-social-bitcoin-outline:before {
  1882. content: "\f2ae";
  1883. }
  1884. .tf-ion-social-bitcoin:before {
  1885. content: "\f2af";
  1886. }
  1887. .tf-ion-social-buffer-outline:before {
  1888. content: "\f228";
  1889. }
  1890. .tf-ion-social-buffer:before {
  1891. content: "\f229";
  1892. }
  1893. .tf-ion-social-chrome-outline:before {
  1894. content: "\f4da";
  1895. }
  1896. .tf-ion-social-chrome:before {
  1897. content: "\f4db";
  1898. }
  1899. .tf-ion-social-codepen-outline:before {
  1900. content: "\f4dc";
  1901. }
  1902. .tf-ion-social-codepen:before {
  1903. content: "\f4dd";
  1904. }
  1905. .tf-ion-social-css3-outline:before {
  1906. content: "\f4de";
  1907. }
  1908. .tf-ion-social-css3:before {
  1909. content: "\f4df";
  1910. }
  1911. .tf-ion-social-designernews-outline:before {
  1912. content: "\f22a";
  1913. }
  1914. .tf-ion-social-designernews:before {
  1915. content: "\f22b";
  1916. }
  1917. .tf-ion-social-dribbble-outline:before {
  1918. content: "\f22c";
  1919. }
  1920. .tf-ion-social-dribbble:before {
  1921. content: "\f22d";
  1922. }
  1923. .tf-ion-social-dropbox-outline:before {
  1924. content: "\f22e";
  1925. }
  1926. .tf-ion-social-dropbox:before {
  1927. content: "\f22f";
  1928. }
  1929. .tf-ion-social-euro-outline:before {
  1930. content: "\f4e0";
  1931. }
  1932. .tf-ion-social-euro:before {
  1933. content: "\f4e1";
  1934. }
  1935. .tf-ion-social-facebook-outline:before {
  1936. content: "\f230";
  1937. }
  1938. .tf-ion-social-facebook:before {
  1939. content: "\f231";
  1940. }
  1941. .tf-ion-social-foursquare-outline:before {
  1942. content: "\f34c";
  1943. }
  1944. .tf-ion-social-foursquare:before {
  1945. content: "\f34d";
  1946. }
  1947. .tf-ion-social-freebsd-devil:before {
  1948. content: "\f2c4";
  1949. }
  1950. .tf-ion-social-github-outline:before {
  1951. content: "\f232";
  1952. }
  1953. .tf-ion-social-github:before {
  1954. content: "\f233";
  1955. }
  1956. .tf-ion-social-google-outline:before {
  1957. content: "\f34e";
  1958. }
  1959. .tf-ion-social-google:before {
  1960. content: "\f34f";
  1961. }
  1962. .tf-ion-social-googleplus-outline:before {
  1963. content: "\f234";
  1964. }
  1965. .tf-ion-social-googleplus:before {
  1966. content: "\f235";
  1967. }
  1968. .tf-ion-social-hackernews-outline:before {
  1969. content: "\f236";
  1970. }
  1971. .tf-ion-social-hackernews:before {
  1972. content: "\f237";
  1973. }
  1974. .tf-ion-social-html5-outline:before {
  1975. content: "\f4e2";
  1976. }
  1977. .tf-ion-social-html5:before {
  1978. content: "\f4e3";
  1979. }
  1980. .tf-ion-social-instagram-outline:before {
  1981. content: "\f350";
  1982. }
  1983. .tf-ion-social-instagram:before {
  1984. content: "\f351";
  1985. }
  1986. .tf-ion-social-javascript-outline:before {
  1987. content: "\f4e4";
  1988. }
  1989. .tf-ion-social-javascript:before {
  1990. content: "\f4e5";
  1991. }
  1992. .tf-ion-social-linkedin-outline:before {
  1993. content: "\f238";
  1994. }
  1995. .tf-ion-social-linkedin:before {
  1996. content: "\f239";
  1997. }
  1998. .tf-ion-social-markdown:before {
  1999. content: "\f4e6";
  2000. }
  2001. .tf-ion-social-nodejs:before {
  2002. content: "\f4e7";
  2003. }
  2004. .tf-ion-social-octocat:before {
  2005. content: "\f4e8";
  2006. }
  2007. .tf-ion-social-pinterest-outline:before {
  2008. content: "\f2b0";
  2009. }
  2010. .tf-ion-social-pinterest:before {
  2011. content: "\f2b1";
  2012. }
  2013. .tf-ion-social-python:before {
  2014. content: "\f4e9";
  2015. }
  2016. .tf-ion-social-reddit-outline:before {
  2017. content: "\f23a";
  2018. }
  2019. .tf-ion-social-reddit:before {
  2020. content: "\f23b";
  2021. }
  2022. .tf-ion-social-rss-outline:before {
  2023. content: "\f23c";
  2024. }
  2025. .tf-ion-social-rss:before {
  2026. content: "\f23d";
  2027. }
  2028. .tf-ion-social-sass:before {
  2029. content: "\f4ea";
  2030. }
  2031. .tf-ion-social-skype-outline:before {
  2032. content: "\f23e";
  2033. }
  2034. .tf-ion-social-skype:before {
  2035. content: "\f23f";
  2036. }
  2037. .tf-ion-social-snapchat-outline:before {
  2038. content: "\f4eb";
  2039. }
  2040. .tf-ion-social-snapchat:before {
  2041. content: "\f4ec";
  2042. }
  2043. .tf-ion-social-tumblr-outline:before {
  2044. content: "\f240";
  2045. }
  2046. .tf-ion-social-tumblr:before {
  2047. content: "\f241";
  2048. }
  2049. .tf-ion-social-tux:before {
  2050. content: "\f2c5";
  2051. }
  2052. .tf-ion-social-twitch-outline:before {
  2053. content: "\f4ed";
  2054. }
  2055. .tf-ion-social-twitch:before {
  2056. content: "\f4ee";
  2057. }
  2058. .tf-ion-social-twitter-outline:before {
  2059. content: "\f242";
  2060. }
  2061. .tf-ion-social-twitter:before {
  2062. content: "\f243";
  2063. }
  2064. .tf-ion-social-usd-outline:before {
  2065. content: "\f352";
  2066. }
  2067. .tf-ion-social-usd:before {
  2068. content: "\f353";
  2069. }
  2070. .tf-ion-social-vimeo-outline:before {
  2071. content: "\f244";
  2072. }
  2073. .tf-ion-social-vimeo:before {
  2074. content: "\f245";
  2075. }
  2076. .tf-ion-social-whatsapp-outline:before {
  2077. content: "\f4ef";
  2078. }
  2079. .tf-ion-social-whatsapp:before {
  2080. content: "\f4f0";
  2081. }
  2082. .tf-ion-social-windows-outline:before {
  2083. content: "\f246";
  2084. }
  2085. .tf-ion-social-windows:before {
  2086. content: "\f247";
  2087. }
  2088. .tf-ion-social-wordpress-outline:before {
  2089. content: "\f248";
  2090. }
  2091. .tf-ion-social-wordpress:before {
  2092. content: "\f249";
  2093. }
  2094. .tf-ion-social-yahoo-outline:before {
  2095. content: "\f24a";
  2096. }
  2097. .tf-ion-social-yahoo:before {
  2098. content: "\f24b";
  2099. }
  2100. .tf-ion-social-yen-outline:before {
  2101. content: "\f4f1";
  2102. }
  2103. .tf-ion-social-yen:before {
  2104. content: "\f4f2";
  2105. }
  2106. .tf-ion-social-youtube-outline:before {
  2107. content: "\f24c";
  2108. }
  2109. .tf-ion-social-youtube:before {
  2110. content: "\f24d";
  2111. }
  2112. .tf-ion-soup-can-outline:before {
  2113. content: "\f4f3";
  2114. }
  2115. .tf-ion-soup-can:before {
  2116. content: "\f4f4";
  2117. }
  2118. .tf-ion-speakerphone:before {
  2119. content: "\f2b2";
  2120. }
  2121. .tf-ion-speedometer:before {
  2122. content: "\f2b3";
  2123. }
  2124. .tf-ion-spoon:before {
  2125. content: "\f2b4";
  2126. }
  2127. .tf-ion-star:before {
  2128. content: "\f24e";
  2129. }
  2130. .tf-ion-stats-bars:before {
  2131. content: "\f2b5";
  2132. }
  2133. .tf-ion-steam:before {
  2134. content: "\f30b";
  2135. }
  2136. .tf-ion-stop:before {
  2137. content: "\f24f";
  2138. }
  2139. .tf-ion-thermometer:before {
  2140. content: "\f2b6";
  2141. }
  2142. .tf-ion-thumbsdown:before {
  2143. content: "\f250";
  2144. }
  2145. .tf-ion-thumbsup:before {
  2146. content: "\f251";
  2147. }
  2148. .tf-ion-toggle-filled:before {
  2149. content: "\f354";
  2150. }
  2151. .tf-ion-toggle:before {
  2152. content: "\f355";
  2153. }
  2154. .tf-ion-transgender:before {
  2155. content: "\f4f5";
  2156. }
  2157. .tf-ion-trash-a:before {
  2158. content: "\f252";
  2159. }
  2160. .tf-ion-trash-b:before {
  2161. content: "\f253";
  2162. }
  2163. .tf-ion-trophy:before {
  2164. content: "\f356";
  2165. }
  2166. .tf-ion-tshirt-outline:before {
  2167. content: "\f4f6";
  2168. }
  2169. .tf-ion-tshirt:before {
  2170. content: "\f4f7";
  2171. }
  2172. .tf-ion-umbrella:before {
  2173. content: "\f2b7";
  2174. }
  2175. .tf-ion-university:before {
  2176. content: "\f357";
  2177. }
  2178. .tf-ion-unlocked:before {
  2179. content: "\f254";
  2180. }
  2181. .tf-ion-upload:before {
  2182. content: "\f255";
  2183. }
  2184. .tf-ion-usb:before {
  2185. content: "\f2b8";
  2186. }
  2187. .tf-ion-videocamera:before {
  2188. content: "\f256";
  2189. }
  2190. .tf-ion-volume-high:before {
  2191. content: "\f257";
  2192. }
  2193. .tf-ion-volume-low:before {
  2194. content: "\f258";
  2195. }
  2196. .tf-ion-volume-medium:before {
  2197. content: "\f259";
  2198. }
  2199. .tf-ion-volume-mute:before {
  2200. content: "\f25a";
  2201. }
  2202. .tf-ion-wand:before {
  2203. content: "\f358";
  2204. }
  2205. .tf-ion-waterdrop:before {
  2206. content: "\f25b";
  2207. }
  2208. .tf-ion-wifi:before {
  2209. content: "\f25c";
  2210. }
  2211. .tf-ion-wineglass:before {
  2212. content: "\f2b9";
  2213. }
  2214. .tf-ion-woman:before {
  2215. content: "\f25d";
  2216. }
  2217. .tf-ion-wrench:before {
  2218. content: "\f2ba";
  2219. }
  2220. .tf-ion-xbox:before {
  2221. content: "\f30c";
  2222. }
  2223. .tf-mobile:before {
  2224. content: "\e000";
  2225. }
  2226. .tf-laptop:before {
  2227. content: "\e001";
  2228. }
  2229. .tf-desktop:before {
  2230. content: "\e002";
  2231. }
  2232. .tf-phone2:before {
  2233. content: "\e004";
  2234. }
  2235. .tf-document3:before {
  2236. content: "\e005";
  2237. }
  2238. .tf-documents5:before {
  2239. content: "\e006";
  2240. }
  2241. .tf-search3:before {
  2242. content: "\e007";
  2243. }
  2244. .tf-clipboard4:before {
  2245. content: "\e008";
  2246. }
  2247. .tf-newspaper:before {
  2248. content: "\e009";
  2249. }
  2250. .tf-notebook9:before {
  2251. content: "\e00a";
  2252. }
  2253. .tf-book-open:before {
  2254. content: "\e00b";
  2255. }
  2256. .tf-browser:before {
  2257. content: "\e00c";
  2258. }
  2259. .tf-calendar2:before {
  2260. content: "\e00d";
  2261. }
  2262. .tf-presentation:before {
  2263. content: "\e00e";
  2264. }
  2265. .tf-picture:before {
  2266. content: "\e00f";
  2267. }
  2268. .tf-pictures:before {
  2269. content: "\e010";
  2270. }
  2271. .tf-video:before {
  2272. content: "\e011";
  2273. }
  2274. .tf-camera2:before {
  2275. content: "\e012";
  2276. }
  2277. .tf-printer:before {
  2278. content: "\e013";
  2279. }
  2280. .tf-toolbox:before {
  2281. content: "\e014";
  2282. }
  2283. .tf-briefcase2:before {
  2284. content: "\e015";
  2285. }
  2286. .tf-wallet:before {
  2287. content: "\e016";
  2288. }
  2289. .tf-gift2:before {
  2290. content: "\e017";
  2291. }
  2292. .tf-bargraph:before {
  2293. content: "\e018";
  2294. }
  2295. .tf-grid:before {
  2296. content: "\e019";
  2297. }
  2298. .tf-expand2:before {
  2299. content: "\e01a";
  2300. }
  2301. .tf-focus:before {
  2302. content: "\e01b";
  2303. }
  2304. .tf-edit:before {
  2305. content: "\e01c";
  2306. }
  2307. .tf-ribbon:before {
  2308. content: "\e01e";
  2309. }
  2310. .tf-adjustments:before {
  2311. content: "\e01d";
  2312. }
  2313. .tf-hourglass:before {
  2314. content: "\e01f";
  2315. }
  2316. .tf-lock2:before {
  2317. content: "\e020";
  2318. }
  2319. .tf-megaphone:before {
  2320. content: "\e021";
  2321. }
  2322. .tf-shield2:before {
  2323. content: "\e022";
  2324. }
  2325. .tf-trophy6:before {
  2326. content: "\e023";
  2327. }
  2328. .tf-flag2:before {
  2329. content: "\e024";
  2330. }
  2331. .tf-map2:before {
  2332. content: "\e025";
  2333. }
  2334. .tf-puzzle:before {
  2335. content: "\e026";
  2336. }
  2337. .tf-basket:before {
  2338. content: "\e027";
  2339. }
  2340. .tf-envelope2:before {
  2341. content: "\e028";
  2342. }
  2343. .tf-streetsign:before {
  2344. content: "\e029";
  2345. }
  2346. .tf-telescope:before {
  2347. content: "\e02a";
  2348. }
  2349. .tf-gears:before {
  2350. content: "\e02b";
  2351. }
  2352. .tf-key:before {
  2353. content: "\e02c";
  2354. }
  2355. .tf-paperclip4:before {
  2356. content: "\e02d";
  2357. }
  2358. .tf-attachment:before {
  2359. content: "\e02e";
  2360. }
  2361. .tf-pricetags:before {
  2362. content: "\e02f";
  2363. }
  2364. .tf-lightbulb:before {
  2365. content: "\e030";
  2366. }
  2367. .tf-layers:before {
  2368. content: "\e031";
  2369. }
  2370. .tf-pencil2:before {
  2371. content: "\e032";
  2372. }
  2373. .tf-tools:before {
  2374. content: "\e033";
  2375. }
  2376. .tf-tools-2:before {
  2377. content: "\e034";
  2378. }
  2379. .tf-scissors2:before {
  2380. content: "\e035";
  2381. }
  2382. .tf-paintbrush:before {
  2383. content: "\e036";
  2384. }
  2385. .tf-magnifying-glass:before {
  2386. content: "\e037";
  2387. }
  2388. .tf-circle-compass:before {
  2389. content: "\e038";
  2390. }
  2391. .tf-linegraph:before {
  2392. content: "\e039";
  2393. }
  2394. .tf-mic:before {
  2395. content: "\e03a";
  2396. }
  2397. .tf-strategy:before {
  2398. content: "\e03b";
  2399. }
  2400. .tf-beaker:before {
  2401. content: "\e03c";
  2402. }
  2403. .tf-caution:before {
  2404. content: "\e03d";
  2405. }
  2406. .tf-recycle2:before {
  2407. content: "\e03e";
  2408. }
  2409. .tf-anchor2:before {
  2410. content: "\e03f";
  2411. }
  2412. .tf-profile-male:before {
  2413. content: "\e040";
  2414. }
  2415. .tf-profile-female:before {
  2416. content: "\e041";
  2417. }
  2418. .tf-bike:before {
  2419. content: "\e042";
  2420. }
  2421. .tf-wine:before {
  2422. content: "\e043";
  2423. }
  2424. .tf-hotairballoon:before {
  2425. content: "\e044";
  2426. }
  2427. .tf-globe:before {
  2428. content: "\e045";
  2429. }
  2430. .tf-genius:before {
  2431. content: "\e046";
  2432. }
  2433. .tf-map-pin:before {
  2434. content: "\e047";
  2435. }
  2436. .tf-dial:before {
  2437. content: "\e048";
  2438. }
  2439. .tf-chat:before {
  2440. content: "\e049";
  2441. }
  2442. .tf-heart2:before {
  2443. content: "\e04a";
  2444. }
  2445. .tf-upload2:before {
  2446. content: "\e04c";
  2447. }
  2448. .tf-download2:before {
  2449. content: "\e04d";
  2450. }
  2451. .tf-target3:before {
  2452. content: "\e04e";
  2453. }
  2454. .tf-hazardous:before {
  2455. content: "\e04f";
  2456. }
  2457. .tf-piechart:before {
  2458. content: "\e050";
  2459. }
  2460. .tf-speedometer:before {
  2461. content: "\e051";
  2462. }
  2463. .tf-global:before {
  2464. content: "\e052";
  2465. }
  2466. .tf-compass:before {
  2467. content: "\e053";
  2468. }
  2469. .tf-lifesaver:before {
  2470. content: "\e054";
  2471. }
  2472. .tf-clock:before {
  2473. content: "\e055";
  2474. }
  2475. .tf-aperture:before {
  2476. content: "\e056";
  2477. }
  2478. .tf-quote:before {
  2479. content: "\e057";
  2480. }
  2481. .tf-scope:before {
  2482. content: "\e058";
  2483. }
  2484. .tf-alarmclock:before {
  2485. content: "\e059";
  2486. }
  2487. .tf-refresh:before {
  2488. content: "\e05a";
  2489. }
  2490. .tf-happy:before {
  2491. content: "\e05b";
  2492. }
  2493. .tf-facebook:before {
  2494. content: "\e05d";
  2495. }
  2496. .tf-twitter:before {
  2497. content: "\e05e";
  2498. }
  2499. .tf-googleplus:before {
  2500. content: "\e05f";
  2501. }
  2502. .tf-rss:before {
  2503. content: "\e060";
  2504. }
  2505. .tf-tumblr:before {
  2506. content: "\e061";
  2507. }
  2508. .tf-linkedin:before {
  2509. content: "\e062";
  2510. }
  2511. .tf-dribbble:before {
  2512. content: "\e063";
  2513. }