tabler-icons.css 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025
  1. @charset "UTF-8";
  2. /*!
  3. * Tabler Icons 1.7.0 by tabler - https://tabler.io
  4. * License - https://github.com/tabler/tabler-icons/blob/master/LICENSE
  5. */
  6. @font-face {
  7. font-family: "tabler-icons";
  8. font-style: normal;
  9. font-weight: 400;
  10. src: url("./fonts/tabler-icons.eot");
  11. src: url("./fonts/tabler-icons.eot?#iefix") format("embedded-opentype"), url("./fonts/tabler-icons.woff2") format("woff2"), url("./fonts/tabler-icons.woff") format("woff"), url("./fonts/tabler-icons.ttf") format("truetype");
  12. }
  13. .ti {
  14. font-family: "tabler-icons" !important;
  15. speak: none;
  16. font-style: normal;
  17. font-weight: normal;
  18. font-variant: normal;
  19. text-transform: none;
  20. line-height: 1;
  21. /* Better Font Rendering */
  22. -webkit-font-smoothing: antialiased;
  23. -moz-osx-font-smoothing: grayscale;
  24. }
  25. .ti-accessible:before {
  26. content: "";
  27. }
  28. .ti-activity:before {
  29. content: "";
  30. }
  31. .ti-ad:before {
  32. content: "";
  33. }
  34. .ti-adjustments:before {
  35. content: "";
  36. }
  37. .ti-alarm:before {
  38. content: "";
  39. }
  40. .ti-alert-circle:before {
  41. content: "";
  42. }
  43. .ti-alert-triangle:before {
  44. content: "";
  45. }
  46. .ti-alien:before {
  47. content: "";
  48. }
  49. .ti-align-center:before {
  50. content: "";
  51. }
  52. .ti-align-justified:before {
  53. content: "";
  54. }
  55. .ti-align-left:before {
  56. content: "";
  57. }
  58. .ti-align-right:before {
  59. content: "";
  60. }
  61. .ti-anchor:before {
  62. content: "";
  63. }
  64. .ti-aperture:before {
  65. content: "";
  66. }
  67. .ti-apps:before {
  68. content: "";
  69. }
  70. .ti-archive:before {
  71. content: "";
  72. }
  73. .ti-arrow-back:before {
  74. content: "";
  75. }
  76. .ti-arrow-back-up:before {
  77. content: "";
  78. }
  79. .ti-arrow-bar-down:before {
  80. content: "";
  81. }
  82. .ti-arrow-bar-left:before {
  83. content: "";
  84. }
  85. .ti-arrow-bar-right:before {
  86. content: "";
  87. }
  88. .ti-arrow-bar-up:before {
  89. content: "";
  90. }
  91. .ti-arrow-down:before {
  92. content: "";
  93. }
  94. .ti-arrow-down-circle:before {
  95. content: "";
  96. }
  97. .ti-arrow-down-left:before {
  98. content: "";
  99. }
  100. .ti-arrow-down-left-circle:before {
  101. content: "";
  102. }
  103. .ti-arrow-down-right:before {
  104. content: "";
  105. }
  106. .ti-arrow-down-right-circle:before {
  107. content: "";
  108. }
  109. .ti-arrow-forward:before {
  110. content: "";
  111. }
  112. .ti-arrow-forward-up:before {
  113. content: "";
  114. }
  115. .ti-arrow-left:before {
  116. content: "";
  117. }
  118. .ti-arrow-left-circle:before {
  119. content: "";
  120. }
  121. .ti-arrow-narrow-down:before {
  122. content: "";
  123. }
  124. .ti-arrow-narrow-left:before {
  125. content: "";
  126. }
  127. .ti-arrow-narrow-right:before {
  128. content: "";
  129. }
  130. .ti-arrow-narrow-up:before {
  131. content: "";
  132. }
  133. .ti-arrow-right:before {
  134. content: "";
  135. }
  136. .ti-arrow-right-circle:before {
  137. content: "";
  138. }
  139. .ti-arrow-up:before {
  140. content: "";
  141. }
  142. .ti-arrow-up-circle:before {
  143. content: "";
  144. }
  145. .ti-arrow-up-left:before {
  146. content: "";
  147. }
  148. .ti-arrow-up-left-circle:before {
  149. content: "";
  150. }
  151. .ti-arrow-up-right:before {
  152. content: "";
  153. }
  154. .ti-arrow-up-right-circle:before {
  155. content: "";
  156. }
  157. .ti-arrows-diagonal:before {
  158. content: "";
  159. }
  160. .ti-arrows-diagonal-2:before {
  161. content: "";
  162. }
  163. .ti-arrows-horizontal:before {
  164. content: "";
  165. }
  166. .ti-arrows-maximize:before {
  167. content: "";
  168. }
  169. .ti-arrows-minimize:before {
  170. content: "";
  171. }
  172. .ti-arrows-sort:before {
  173. content: "";
  174. }
  175. .ti-arrows-vertical:before {
  176. content: "";
  177. }
  178. .ti-artboard:before {
  179. content: "";
  180. }
  181. .ti-at:before {
  182. content: "";
  183. }
  184. .ti-atom:before {
  185. content: "";
  186. }
  187. .ti-atom-2:before {
  188. content: "";
  189. }
  190. .ti-award:before {
  191. content: "";
  192. }
  193. .ti-backspace:before {
  194. content: "";
  195. }
  196. .ti-ball:before {
  197. content: "";
  198. }
  199. .ti-ban:before {
  200. content: "";
  201. }
  202. .ti-bandage:before {
  203. content: "";
  204. }
  205. .ti-barcode:before {
  206. content: "";
  207. }
  208. .ti-basket:before {
  209. content: "";
  210. }
  211. .ti-battery:before {
  212. content: "";
  213. }
  214. .ti-battery-1:before {
  215. content: "";
  216. }
  217. .ti-battery-2:before {
  218. content: "";
  219. }
  220. .ti-battery-3:before {
  221. content: "";
  222. }
  223. .ti-battery-4:before {
  224. content: "";
  225. }
  226. .ti-battery-charging:before {
  227. content: "";
  228. }
  229. .ti-bed:before {
  230. content: "";
  231. }
  232. .ti-bell:before {
  233. content: "";
  234. }
  235. .ti-bike:before {
  236. content: "";
  237. }
  238. .ti-bluetooth:before {
  239. content: "";
  240. }
  241. .ti-bold:before {
  242. content: "";
  243. }
  244. .ti-bolt:before {
  245. content: "";
  246. }
  247. .ti-book:before {
  248. content: "";
  249. }
  250. .ti-bookmark:before {
  251. content: "";
  252. }
  253. .ti-border-all:before {
  254. content: "";
  255. }
  256. .ti-border-bottom:before {
  257. content: "";
  258. }
  259. .ti-border-horizontal:before {
  260. content: "";
  261. }
  262. .ti-border-inner:before {
  263. content: "";
  264. }
  265. .ti-border-left:before {
  266. content: "";
  267. }
  268. .ti-border-none:before {
  269. content: "";
  270. }
  271. .ti-border-outer:before {
  272. content: "";
  273. }
  274. .ti-border-radius:before {
  275. content: "";
  276. }
  277. .ti-border-right:before {
  278. content: "";
  279. }
  280. .ti-border-top:before {
  281. content: "";
  282. }
  283. .ti-border-vertical:before {
  284. content: "";
  285. }
  286. .ti-box:before {
  287. content: "";
  288. }
  289. .ti-braces:before {
  290. content: "";
  291. }
  292. .ti-brackets:before {
  293. content: "";
  294. }
  295. .ti-briefcase:before {
  296. content: "";
  297. }
  298. .ti-brightness:before {
  299. content: "";
  300. }
  301. .ti-brightness-down:before {
  302. content: "";
  303. }
  304. .ti-brightness-up:before {
  305. content: "";
  306. }
  307. .ti-browser:before {
  308. content: "";
  309. }
  310. .ti-brush:before {
  311. content: "";
  312. }
  313. .ti-bucket:before {
  314. content: "";
  315. }
  316. .ti-bug:before {
  317. content: "";
  318. }
  319. .ti-building:before {
  320. content: "";
  321. }
  322. .ti-building-arch:before {
  323. content: "";
  324. }
  325. .ti-building-bank:before {
  326. content: "";
  327. }
  328. .ti-building-bridge:before {
  329. content: "";
  330. }
  331. .ti-building-bridge-2:before {
  332. content: "";
  333. }
  334. .ti-building-church:before {
  335. content: "";
  336. }
  337. .ti-building-hospital:before {
  338. content: "";
  339. }
  340. .ti-building-store:before {
  341. content: "";
  342. }
  343. .ti-building-warehouse:before {
  344. content: "";
  345. }
  346. .ti-bulb:before {
  347. content: "";
  348. }
  349. .ti-bulb-off:before {
  350. content: "";
  351. }
  352. .ti-bus:before {
  353. content: "";
  354. }
  355. .ti-calculator:before {
  356. content: "";
  357. }
  358. .ti-calendar:before {
  359. content: "";
  360. }
  361. .ti-calendar-event:before {
  362. content: "";
  363. }
  364. .ti-calendar-minus:before {
  365. content: "";
  366. }
  367. .ti-calendar-plus:before {
  368. content: "";
  369. }
  370. .ti-camera:before {
  371. content: "";
  372. }
  373. .ti-car:before {
  374. content: "";
  375. }
  376. .ti-caret-down:before {
  377. content: "";
  378. }
  379. .ti-caret-left:before {
  380. content: "";
  381. }
  382. .ti-caret-right:before {
  383. content: "";
  384. }
  385. .ti-caret-up:before {
  386. content: "";
  387. }
  388. .ti-cash:before {
  389. content: "";
  390. }
  391. .ti-cast:before {
  392. content: "";
  393. }
  394. .ti-chart-area:before {
  395. content: "";
  396. }
  397. .ti-chart-area-line:before {
  398. content: "";
  399. }
  400. .ti-chart-bar:before {
  401. content: "";
  402. }
  403. .ti-chart-candle:before {
  404. content: "";
  405. }
  406. .ti-chart-donut:before {
  407. content: "";
  408. }
  409. .ti-chart-line:before {
  410. content: "";
  411. }
  412. .ti-chart-pie:before {
  413. content: "";
  414. }
  415. .ti-check:before {
  416. content: "";
  417. }
  418. .ti-checkbox:before {
  419. content: "";
  420. }
  421. .ti-checks:before {
  422. content: "";
  423. }
  424. .ti-chevron-down:before {
  425. content: "";
  426. }
  427. .ti-chevron-left:before {
  428. content: "";
  429. }
  430. .ti-chevron-right:before {
  431. content: "";
  432. }
  433. .ti-chevron-up:before {
  434. content: "";
  435. }
  436. .ti-chevrons-down:before {
  437. content: "";
  438. }
  439. .ti-chevrons-left:before {
  440. content: "";
  441. }
  442. .ti-chevrons-right:before {
  443. content: "";
  444. }
  445. .ti-chevrons-up:before {
  446. content: "";
  447. }
  448. .ti-chrome:before {
  449. content: "";
  450. }
  451. .ti-circle:before {
  452. content: "";
  453. }
  454. .ti-circle-check:before {
  455. content: "";
  456. }
  457. .ti-circle-minus:before {
  458. content: "";
  459. }
  460. .ti-circle-plus:before {
  461. content: "";
  462. }
  463. .ti-circle-x:before {
  464. content: "";
  465. }
  466. .ti-clear-formatting:before {
  467. content: "";
  468. }
  469. .ti-click:before {
  470. content: "";
  471. }
  472. .ti-clipboard:before {
  473. content: "";
  474. }
  475. .ti-clipboard-check:before {
  476. content: "";
  477. }
  478. .ti-clipboard-list:before {
  479. content: "";
  480. }
  481. .ti-clipboard-x:before {
  482. content: "";
  483. }
  484. .ti-clock:before {
  485. content: "";
  486. }
  487. .ti-cloud:before {
  488. content: "";
  489. }
  490. .ti-cloud-download:before {
  491. content: "";
  492. }
  493. .ti-cloud-rain:before {
  494. content: "";
  495. }
  496. .ti-cloud-snow:before {
  497. content: "";
  498. }
  499. .ti-cloud-storm:before {
  500. content: "";
  501. }
  502. .ti-cloud-upload:before {
  503. content: "";
  504. }
  505. .ti-code:before {
  506. content: "";
  507. }
  508. .ti-coin:before {
  509. content: "";
  510. }
  511. .ti-color-picker:before {
  512. content: "";
  513. }
  514. .ti-color-swatch:before {
  515. content: "";
  516. }
  517. .ti-columns:before {
  518. content: "";
  519. }
  520. .ti-command:before {
  521. content: "";
  522. }
  523. .ti-compass:before {
  524. content: "";
  525. }
  526. .ti-copy:before {
  527. content: "";
  528. }
  529. .ti-copyright:before {
  530. content: "";
  531. }
  532. .ti-corner-down-left:before {
  533. content: "";
  534. }
  535. .ti-corner-down-right:before {
  536. content: "";
  537. }
  538. .ti-corner-left-down:before {
  539. content: "";
  540. }
  541. .ti-corner-left-up:before {
  542. content: "";
  543. }
  544. .ti-corner-right-down:before {
  545. content: "";
  546. }
  547. .ti-corner-right-up:before {
  548. content: "";
  549. }
  550. .ti-corner-up-left:before {
  551. content: "";
  552. }
  553. .ti-corner-up-right:before {
  554. content: "";
  555. }
  556. .ti-credit-card:before {
  557. content: "";
  558. }
  559. .ti-crop:before {
  560. content: "";
  561. }
  562. .ti-currency-bitcoin:before {
  563. content: "";
  564. }
  565. .ti-currency-dollar:before {
  566. content: "";
  567. }
  568. .ti-currency-euro:before {
  569. content: "";
  570. }
  571. .ti-currency-pound:before {
  572. content: "";
  573. }
  574. .ti-currency-rupee:before {
  575. content: "";
  576. }
  577. .ti-currency-yen:before {
  578. content: "";
  579. }
  580. .ti-cut:before {
  581. content: "";
  582. }
  583. .ti-dashboard:before {
  584. content: "";
  585. }
  586. .ti-database:before {
  587. content: "";
  588. }
  589. .ti-device-desktop:before {
  590. content: "";
  591. }
  592. .ti-device-floppy:before {
  593. content: "";
  594. }
  595. .ti-device-gamepad:before {
  596. content: "";
  597. }
  598. .ti-device-laptop:before {
  599. content: "";
  600. }
  601. .ti-device-mobile:before {
  602. content: "";
  603. }
  604. .ti-device-mobile-vibration:before {
  605. content: "";
  606. }
  607. .ti-device-speaker:before {
  608. content: "";
  609. }
  610. .ti-device-tablet:before {
  611. content: "";
  612. }
  613. .ti-device-tv:before {
  614. content: "";
  615. }
  616. .ti-devices:before {
  617. content: "";
  618. }
  619. .ti-diamond:before {
  620. content: "";
  621. }
  622. .ti-dice:before {
  623. content: "";
  624. }
  625. .ti-directions:before {
  626. content: "";
  627. }
  628. .ti-disabled:before {
  629. content: "";
  630. }
  631. .ti-disabled-2:before {
  632. content: "";
  633. }
  634. .ti-disc:before {
  635. content: "";
  636. }
  637. .ti-discount:before {
  638. content: "";
  639. }
  640. .ti-dots:before {
  641. content: "";
  642. }
  643. .ti-dots-circle-horizontal:before {
  644. content: "";
  645. }
  646. .ti-dots-diagonal:before {
  647. content: "";
  648. }
  649. .ti-dots-diagonal-2:before {
  650. content: "";
  651. }
  652. .ti-dots-vertical:before {
  653. content: "";
  654. }
  655. .ti-download:before {
  656. content: "";
  657. }
  658. .ti-drag-drop:before {
  659. content: "";
  660. }
  661. .ti-drag-drop-2:before {
  662. content: "";
  663. }
  664. .ti-droplet:before {
  665. content: "";
  666. }
  667. .ti-ear:before {
  668. content: "";
  669. }
  670. .ti-edit:before {
  671. content: "";
  672. }
  673. .ti-egg:before {
  674. content: "";
  675. }
  676. .ti-emphasis:before {
  677. content: "";
  678. }
  679. .ti-eraser:before {
  680. content: "";
  681. }
  682. .ti-exchange:before {
  683. content: "";
  684. }
  685. .ti-exposure:before {
  686. content: "";
  687. }
  688. .ti-external-link:before {
  689. content: "";
  690. }
  691. .ti-eye:before {
  692. content: "";
  693. }
  694. .ti-face-id:before {
  695. content: "";
  696. }
  697. .ti-file:before {
  698. content: "";
  699. }
  700. .ti-file-check:before {
  701. content: "";
  702. }
  703. .ti-file-code:before {
  704. content: "";
  705. }
  706. .ti-file-download:before {
  707. content: "";
  708. }
  709. .ti-file-horizontal:before {
  710. content: "";
  711. }
  712. .ti-file-invoice:before {
  713. content: "";
  714. }
  715. .ti-file-minus:before {
  716. content: "";
  717. }
  718. .ti-file-music:before {
  719. content: "";
  720. }
  721. .ti-file-plus:before {
  722. content: "";
  723. }
  724. .ti-file-shredder:before {
  725. content: "";
  726. }
  727. .ti-file-text:before {
  728. content: "";
  729. }
  730. .ti-file-x:before {
  731. content: "";
  732. }
  733. .ti-filter:before {
  734. content: "";
  735. }
  736. .ti-fingerprint:before {
  737. content: "";
  738. }
  739. .ti-firetruck:before {
  740. content: "";
  741. }
  742. .ti-flag:before {
  743. content: "";
  744. }
  745. .ti-flask:before {
  746. content: "";
  747. }
  748. .ti-flip-horizontal:before {
  749. content: "";
  750. }
  751. .ti-flip-vertical:before {
  752. content: "";
  753. }
  754. .ti-float-center:before {
  755. content: "";
  756. }
  757. .ti-float-left:before {
  758. content: "";
  759. }
  760. .ti-float-right:before {
  761. content: "";
  762. }
  763. .ti-floppy-disk:before {
  764. content: "";
  765. }
  766. .ti-focus:before {
  767. content: "";
  768. }
  769. .ti-focus-2:before {
  770. content: "";
  771. }
  772. .ti-folder:before {
  773. content: "";
  774. }
  775. .ti-folder-minus:before {
  776. content: "";
  777. }
  778. .ti-folder-plus:before {
  779. content: "";
  780. }
  781. .ti-folder-x:before {
  782. content: "";
  783. }
  784. .ti-folders:before {
  785. content: "";
  786. }
  787. .ti-forbid:before {
  788. content: "";
  789. }
  790. .ti-forbid-2:before {
  791. content: "";
  792. }
  793. .ti-forklift:before {
  794. content: "";
  795. }
  796. .ti-frame:before {
  797. content: "";
  798. }
  799. .ti-friends:before {
  800. content: "";
  801. }
  802. .ti-gauge:before {
  803. content: "";
  804. }
  805. .ti-ghost:before {
  806. content: "";
  807. }
  808. .ti-gift:before {
  809. content: "";
  810. }
  811. .ti-git-branch:before {
  812. content: "";
  813. }
  814. .ti-git-commit:before {
  815. content: "";
  816. }
  817. .ti-git-compare:before {
  818. content: "";
  819. }
  820. .ti-git-fork:before {
  821. content: "";
  822. }
  823. .ti-git-merge:before {
  824. content: "";
  825. }
  826. .ti-git-pull-request:before {
  827. content: "";
  828. }
  829. .ti-glass:before {
  830. content: "";
  831. }
  832. .ti-glass-full:before {
  833. content: "";
  834. }
  835. .ti-globe:before {
  836. content: "";
  837. }
  838. .ti-grid:before {
  839. content: "";
  840. }
  841. .ti-grid-dots:before {
  842. content: "";
  843. }
  844. .ti-hash:before {
  845. content: "";
  846. }
  847. .ti-headphones:before {
  848. content: "";
  849. }
  850. .ti-headset:before {
  851. content: "";
  852. }
  853. .ti-heart:before {
  854. content: "";
  855. }
  856. .ti-help:before {
  857. content: "";
  858. }
  859. .ti-history:before {
  860. content: "";
  861. }
  862. .ti-home:before {
  863. content: "";
  864. }
  865. .ti-home-2:before {
  866. content: "";
  867. }
  868. .ti-ice-cream:before {
  869. content: "";
  870. }
  871. .ti-id:before {
  872. content: "";
  873. }
  874. .ti-inbox:before {
  875. content: "";
  876. }
  877. .ti-indent-decrease:before {
  878. content: "";
  879. }
  880. .ti-indent-increase:before {
  881. content: "";
  882. }
  883. .ti-infinity:before {
  884. content: "";
  885. }
  886. .ti-info-circle:before {
  887. content: "";
  888. }
  889. .ti-info-square:before {
  890. content: "";
  891. }
  892. .ti-italic:before {
  893. content: "";
  894. }
  895. .ti-key:before {
  896. content: "";
  897. }
  898. .ti-keyboard:before {
  899. content: "";
  900. }
  901. .ti-language:before {
  902. content: "";
  903. }
  904. .ti-layers-difference:before {
  905. content: "";
  906. }
  907. .ti-layers-intersect:before {
  908. content: "";
  909. }
  910. .ti-layers-subtract:before {
  911. content: "";
  912. }
  913. .ti-layers-union:before {
  914. content: "";
  915. }
  916. .ti-layout:before {
  917. content: "";
  918. }
  919. .ti-layout-2:before {
  920. content: "";
  921. }
  922. .ti-layout-align-bottom:before {
  923. content: "";
  924. }
  925. .ti-layout-align-center:before {
  926. content: "";
  927. }
  928. .ti-layout-align-left:before {
  929. content: "";
  930. }
  931. .ti-layout-align-middle:before {
  932. content: "";
  933. }
  934. .ti-layout-align-right:before {
  935. content: "";
  936. }
  937. .ti-layout-align-top:before {
  938. content: "";
  939. }
  940. .ti-layout-bottombar:before {
  941. content: "";
  942. }
  943. .ti-layout-columns:before {
  944. content: "";
  945. }
  946. .ti-layout-distribute-horizontal:before {
  947. content: "";
  948. }
  949. .ti-layout-distribute-vertical:before {
  950. content: "";
  951. }
  952. .ti-layout-navbar:before {
  953. content: "";
  954. }
  955. .ti-layout-rows:before {
  956. content: "";
  957. }
  958. .ti-layout-sidebar:before {
  959. content: "";
  960. }
  961. .ti-layout-sidebar-right:before {
  962. content: "";
  963. }
  964. .ti-lego:before {
  965. content: "";
  966. }
  967. .ti-letter-case:before {
  968. content: "";
  969. }
  970. .ti-license:before {
  971. content: "";
  972. }
  973. .ti-lifebuoy:before {
  974. content: "";
  975. }
  976. .ti-line-height:before {
  977. content: "";
  978. }
  979. .ti-link:before {
  980. content: "";
  981. }
  982. .ti-list:before {
  983. content: "";
  984. }
  985. .ti-list-check:before {
  986. content: "";
  987. }
  988. .ti-live-photo:before {
  989. content: "";
  990. }
  991. .ti-location:before {
  992. content: "";
  993. }
  994. .ti-lock:before {
  995. content: "";
  996. }
  997. .ti-lock-open:before {
  998. content: "";
  999. }
  1000. .ti-login:before {
  1001. content: "";
  1002. }
  1003. .ti-logout:before {
  1004. content: "";
  1005. }
  1006. .ti-magnet:before {
  1007. content: "";
  1008. }
  1009. .ti-mail:before {
  1010. content: "";
  1011. }
  1012. .ti-mail-opened:before {
  1013. content: "";
  1014. }
  1015. .ti-man:before {
  1016. content: "";
  1017. }
  1018. .ti-map:before {
  1019. content: "";
  1020. }
  1021. .ti-map-2:before {
  1022. content: "";
  1023. }
  1024. .ti-map-pin:before {
  1025. content: "";
  1026. }
  1027. .ti-math:before {
  1028. content: "";
  1029. }
  1030. .ti-maximize:before {
  1031. content: "";
  1032. }
  1033. .ti-menu:before {
  1034. content: "";
  1035. }
  1036. .ti-message:before {
  1037. content: "";
  1038. }
  1039. .ti-message-2:before {
  1040. content: "";
  1041. }
  1042. .ti-message-circle:before {
  1043. content: "";
  1044. }
  1045. .ti-message-dots:before {
  1046. content: "";
  1047. }
  1048. .ti-messages:before {
  1049. content: "";
  1050. }
  1051. .ti-microphone:before {
  1052. content: "";
  1053. }
  1054. .ti-minimize:before {
  1055. content: "";
  1056. }
  1057. .ti-minus:before {
  1058. content: "";
  1059. }
  1060. .ti-mood-confuzed:before {
  1061. content: "";
  1062. }
  1063. .ti-mood-happy:before {
  1064. content: "";
  1065. }
  1066. .ti-mood-neutral:before {
  1067. content: "";
  1068. }
  1069. .ti-mood-sad:before {
  1070. content: "";
  1071. }
  1072. .ti-mood-smile:before {
  1073. content: "";
  1074. }
  1075. .ti-mood-tongue:before {
  1076. content: "";
  1077. }
  1078. .ti-moon:before {
  1079. content: "";
  1080. }
  1081. .ti-mouse:before {
  1082. content: "";
  1083. }
  1084. .ti-movie:before {
  1085. content: "";
  1086. }
  1087. .ti-mug:before {
  1088. content: "";
  1089. }
  1090. .ti-music:before {
  1091. content: "";
  1092. }
  1093. .ti-new-section:before {
  1094. content: "";
  1095. }
  1096. .ti-news:before {
  1097. content: "";
  1098. }
  1099. .ti-note:before {
  1100. content: "";
  1101. }
  1102. .ti-notebook:before {
  1103. content: "";
  1104. }
  1105. .ti-notes:before {
  1106. content: "";
  1107. }
  1108. .ti-notification:before {
  1109. content: "";
  1110. }
  1111. .ti-omega:before {
  1112. content: "";
  1113. }
  1114. .ti-outlet:before {
  1115. content: "";
  1116. }
  1117. .ti-package:before {
  1118. content: "";
  1119. }
  1120. .ti-paint:before {
  1121. content: "";
  1122. }
  1123. .ti-palette:before {
  1124. content: "";
  1125. }
  1126. .ti-paperclip:before {
  1127. content: "";
  1128. }
  1129. .ti-parentheses:before {
  1130. content: "";
  1131. }
  1132. .ti-parking:before {
  1133. content: "";
  1134. }
  1135. .ti-pencil:before {
  1136. content: "";
  1137. }
  1138. .ti-phone:before {
  1139. content: "";
  1140. }
  1141. .ti-phone-call:before {
  1142. content: "";
  1143. }
  1144. .ti-phone-incoming:before {
  1145. content: "";
  1146. }
  1147. .ti-phone-outgoing:before {
  1148. content: "";
  1149. }
  1150. .ti-phone-pause:before {
  1151. content: "";
  1152. }
  1153. .ti-photo:before {
  1154. content: "";
  1155. }
  1156. .ti-pillow:before {
  1157. content: "";
  1158. }
  1159. .ti-plane:before {
  1160. content: "";
  1161. }
  1162. .ti-plane-arrival:before {
  1163. content: "";
  1164. }
  1165. .ti-plane-departure:before {
  1166. content: "";
  1167. }
  1168. .ti-plug:before {
  1169. content: "";
  1170. }
  1171. .ti-plus:before {
  1172. content: "";
  1173. }
  1174. .ti-point:before {
  1175. content: "";
  1176. }
  1177. .ti-power:before {
  1178. content: "";
  1179. }
  1180. .ti-presentation:before {
  1181. content: "";
  1182. }
  1183. .ti-printer:before {
  1184. content: "";
  1185. }
  1186. .ti-prompt:before {
  1187. content: "";
  1188. }
  1189. .ti-puzzle:before {
  1190. content: "";
  1191. }
  1192. .ti-qrcode:before {
  1193. content: "";
  1194. }
  1195. .ti-record-mail:before {
  1196. content: "";
  1197. }
  1198. .ti-recycle:before {
  1199. content: "";
  1200. }
  1201. .ti-refresh:before {
  1202. content: "";
  1203. }
  1204. .ti-registered:before {
  1205. content: "";
  1206. }
  1207. .ti-repeat:before {
  1208. content: "";
  1209. }
  1210. .ti-repeat-once:before {
  1211. content: "";
  1212. }
  1213. .ti-replace:before {
  1214. content: "";
  1215. }
  1216. .ti-rotate:before {
  1217. content: "";
  1218. }
  1219. .ti-rotate-2:before {
  1220. content: "";
  1221. }
  1222. .ti-rotate-clockwise:before {
  1223. content: "";
  1224. }
  1225. .ti-rotate-clockwise-2:before {
  1226. content: "";
  1227. }
  1228. .ti-route:before {
  1229. content: "";
  1230. }
  1231. .ti-router:before {
  1232. content: "";
  1233. }
  1234. .ti-rss:before {
  1235. content: "";
  1236. }
  1237. .ti-ruler:before {
  1238. content: "";
  1239. }
  1240. .ti-scale:before {
  1241. content: "";
  1242. }
  1243. .ti-scan:before {
  1244. content: "";
  1245. }
  1246. .ti-scissors:before {
  1247. content: "";
  1248. }
  1249. .ti-search:before {
  1250. content: "";
  1251. }
  1252. .ti-selector:before {
  1253. content: "";
  1254. }
  1255. .ti-send:before {
  1256. content: "";
  1257. }
  1258. .ti-separator:before {
  1259. content: "";
  1260. }
  1261. .ti-server:before {
  1262. content: "";
  1263. }
  1264. .ti-settings:before {
  1265. content: "";
  1266. }
  1267. .ti-shape:before {
  1268. content: "";
  1269. }
  1270. .ti-share:before {
  1271. content: "";
  1272. }
  1273. .ti-shield:before {
  1274. content: "";
  1275. }
  1276. .ti-shield-check:before {
  1277. content: "";
  1278. }
  1279. .ti-shield-x:before {
  1280. content: "";
  1281. }
  1282. .ti-shopping-cart:before {
  1283. content: "";
  1284. }
  1285. .ti-sitemap:before {
  1286. content: "";
  1287. }
  1288. .ti-slice:before {
  1289. content: "";
  1290. }
  1291. .ti-slideshow:before {
  1292. content: "";
  1293. }
  1294. .ti-social:before {
  1295. content: "";
  1296. }
  1297. .ti-sort-ascending:before {
  1298. content: "";
  1299. }
  1300. .ti-sort-descending:before {
  1301. content: "";
  1302. }
  1303. .ti-square:before {
  1304. content: "";
  1305. }
  1306. .ti-square-check:before {
  1307. content: "";
  1308. }
  1309. .ti-square-minus:before {
  1310. content: "";
  1311. }
  1312. .ti-square-plus:before {
  1313. content: "";
  1314. }
  1315. .ti-square-x:before {
  1316. content: "";
  1317. }
  1318. .ti-stack:before {
  1319. content: "";
  1320. }
  1321. .ti-star:before {
  1322. content: "";
  1323. }
  1324. .ti-sticker:before {
  1325. content: "";
  1326. }
  1327. .ti-strikethrough:before {
  1328. content: "";
  1329. }
  1330. .ti-subscript:before {
  1331. content: "";
  1332. }
  1333. .ti-sum:before {
  1334. content: "";
  1335. }
  1336. .ti-sun:before {
  1337. content: "";
  1338. }
  1339. .ti-superscript:before {
  1340. content: "";
  1341. }
  1342. .ti-switch:before {
  1343. content: "";
  1344. }
  1345. .ti-switch-horizontal:before {
  1346. content: "";
  1347. }
  1348. .ti-switch-vertical:before {
  1349. content: "";
  1350. }
  1351. .ti-table:before {
  1352. content: "";
  1353. }
  1354. .ti-tag:before {
  1355. content: "";
  1356. }
  1357. .ti-target:before {
  1358. content: "";
  1359. }
  1360. .ti-tax:before {
  1361. content: "";
  1362. }
  1363. .ti-temperature:before {
  1364. content: "";
  1365. }
  1366. .ti-temperature-celsius:before {
  1367. content: "";
  1368. }
  1369. .ti-temperature-fahrenheit:before {
  1370. content: "";
  1371. }
  1372. .ti-temperature-minus:before {
  1373. content: "";
  1374. }
  1375. .ti-temperature-plus:before {
  1376. content: "";
  1377. }
  1378. .ti-template:before {
  1379. content: "";
  1380. }
  1381. .ti-terminal:before {
  1382. content: "";
  1383. }
  1384. .ti-terminal-2:before {
  1385. content: "";
  1386. }
  1387. .ti-test-pipe:before {
  1388. content: "";
  1389. }
  1390. .ti-text-wrap:before {
  1391. content: "";
  1392. }
  1393. .ti-thumb-down:before {
  1394. content: "";
  1395. }
  1396. .ti-thumb-up:before {
  1397. content: "";
  1398. }
  1399. .ti-ticket:before {
  1400. content: "";
  1401. }
  1402. .ti-tir:before {
  1403. content: "";
  1404. }
  1405. .ti-toggle-left:before {
  1406. content: "";
  1407. }
  1408. .ti-toggle-right:before {
  1409. content: "";
  1410. }
  1411. .ti-tool:before {
  1412. content: "";
  1413. }
  1414. .ti-tools:before {
  1415. content: "";
  1416. }
  1417. .ti-trash:before {
  1418. content: "";
  1419. }
  1420. .ti-trending-down:before {
  1421. content: "";
  1422. }
  1423. .ti-trending-up:before {
  1424. content: "";
  1425. }
  1426. .ti-triangle:before {
  1427. content: "";
  1428. }
  1429. .ti-trophy:before {
  1430. content: "";
  1431. }
  1432. .ti-truck:before {
  1433. content: "";
  1434. }
  1435. .ti-typography:before {
  1436. content: "";
  1437. }
  1438. .ti-umbrella:before {
  1439. content: "";
  1440. }
  1441. .ti-underline:before {
  1442. content: "";
  1443. }
  1444. .ti-unlink:before {
  1445. content: "";
  1446. }
  1447. .ti-upload:before {
  1448. content: "";
  1449. }
  1450. .ti-urgent:before {
  1451. content: "";
  1452. }
  1453. .ti-user:before {
  1454. content: "";
  1455. }
  1456. .ti-user-check:before {
  1457. content: "";
  1458. }
  1459. .ti-user-minus:before {
  1460. content: "";
  1461. }
  1462. .ti-user-plus:before {
  1463. content: "";
  1464. }
  1465. .ti-user-x:before {
  1466. content: "";
  1467. }
  1468. .ti-users:before {
  1469. content: "";
  1470. }
  1471. .ti-viewfinder:before {
  1472. content: "";
  1473. }
  1474. .ti-viewport-narrow:before {
  1475. content: "";
  1476. }
  1477. .ti-viewport-wide:before {
  1478. content: "";
  1479. }
  1480. .ti-virus:before {
  1481. content: "";
  1482. }
  1483. .ti-volume:before {
  1484. content: "";
  1485. }
  1486. .ti-volume-2:before {
  1487. content: "";
  1488. }
  1489. .ti-volume-3:before {
  1490. content: "";
  1491. }
  1492. .ti-wallet:before {
  1493. content: "";
  1494. }
  1495. .ti-wand:before {
  1496. content: "";
  1497. }
  1498. .ti-wifi:before {
  1499. content: "";
  1500. }
  1501. .ti-wifi-0:before {
  1502. content: "";
  1503. }
  1504. .ti-wifi-1:before {
  1505. content: "";
  1506. }
  1507. .ti-wifi-2:before {
  1508. content: "";
  1509. }
  1510. .ti-woman:before {
  1511. content: "";
  1512. }
  1513. .ti-world:before {
  1514. content: "";
  1515. }
  1516. .ti-x:before {
  1517. content: "";
  1518. }
  1519. .ti-zoom-in:before {
  1520. content: "";
  1521. }
  1522. .ti-zoom-out:before {
  1523. content: "";
  1524. }