You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14119 lines
185 KiB

4 years ago
  1. /*
  2. Template Name: Xadmino
  3. File: Icons
  4. */
  5. /*!
  6. * Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
  7. * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
  8. */
  9. /* FONT PATH
  10. * -------------------------- */
  11. @font-face {
  12. font-family: 'FontAwesome';
  13. src: url('../fonts/fontawesome-webfont5b62.eot?v=4.6.3');
  14. src: url('../fonts/fontawesome-webfontd41d.eot?#iefix&v=4.6.3') format('embedded-opentype'), url('../fonts/fontawesome-webfont5b62.woff2?v=4.6.3') format('woff2'), url('../fonts/fontawesome-webfont5b62.woff?v=4.6.3') format('woff'), url('../fonts/fontawesome-webfont5b62.ttf?v=4.6.3') format('truetype'), url('../fonts/fontawesome-webfont5b62.svg?v=4.6.3#fontawesomeregular') format('svg');
  15. font-weight: normal;
  16. font-style: normal;
  17. }
  18. .fa {
  19. display: inline-block;
  20. font: normal normal normal 14px/1 FontAwesome;
  21. font-size: inherit;
  22. text-rendering: auto;
  23. -webkit-font-smoothing: antialiased;
  24. -moz-osx-font-smoothing: grayscale;
  25. }
  26. /* makes the font 33% larger relative to the icon container */
  27. .fa-lg {
  28. font-size: 1.33333333em;
  29. line-height: 0.75em;
  30. vertical-align: -15%;
  31. }
  32. .fa-2x {
  33. font-size: 2em;
  34. }
  35. .fa-3x {
  36. font-size: 3em;
  37. }
  38. .fa-4x {
  39. font-size: 4em;
  40. }
  41. .fa-5x {
  42. font-size: 5em;
  43. }
  44. .fa-fw {
  45. width: 1.28571429em;
  46. text-align: center;
  47. }
  48. .fa-ul {
  49. padding-left: 0;
  50. margin-left: 2.14285714em;
  51. list-style-type: none;
  52. }
  53. .fa-ul > li {
  54. position: relative;
  55. }
  56. .fa-li {
  57. position: absolute;
  58. left: -2.14285714em;
  59. width: 2.14285714em;
  60. top: 0.14285714em;
  61. text-align: center;
  62. }
  63. .fa-li.fa-lg {
  64. left: -1.85714286em;
  65. }
  66. .fa-border {
  67. padding: .2em .25em .15em;
  68. border: solid 0.08em #eeeeee;
  69. border-radius: .1em;
  70. }
  71. .fa-pull-left {
  72. float: left;
  73. }
  74. .fa-pull-right {
  75. float: right;
  76. }
  77. .fa.fa-pull-left {
  78. margin-right: .3em;
  79. }
  80. .fa.fa-pull-right {
  81. margin-left: .3em;
  82. }
  83. /* Deprecated as of 4.4.0 */
  84. .pull-right {
  85. float: right;
  86. }
  87. .pull-left {
  88. float: left;
  89. }
  90. .fa.pull-left {
  91. margin-right: .3em;
  92. }
  93. .fa.pull-right {
  94. margin-left: .3em;
  95. }
  96. .fa-spin {
  97. -webkit-animation: fa-spin 2s infinite linear;
  98. animation: fa-spin 2s infinite linear;
  99. }
  100. .fa-pulse {
  101. -webkit-animation: fa-spin 1s infinite steps(8);
  102. animation: fa-spin 1s infinite steps(8);
  103. }
  104. @-webkit-keyframes fa-spin {
  105. 0% {
  106. -webkit-transform: rotate(0deg);
  107. transform: rotate(0deg);
  108. }
  109. 100% {
  110. -webkit-transform: rotate(359deg);
  111. transform: rotate(359deg);
  112. }
  113. }
  114. @keyframes fa-spin {
  115. 0% {
  116. -webkit-transform: rotate(0deg);
  117. transform: rotate(0deg);
  118. }
  119. 100% {
  120. -webkit-transform: rotate(359deg);
  121. transform: rotate(359deg);
  122. }
  123. }
  124. .fa-rotate-90 {
  125. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  126. -webkit-transform: rotate(90deg);
  127. -ms-transform: rotate(90deg);
  128. transform: rotate(90deg);
  129. }
  130. .fa-rotate-180 {
  131. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  132. -webkit-transform: rotate(180deg);
  133. -ms-transform: rotate(180deg);
  134. transform: rotate(180deg);
  135. }
  136. .fa-rotate-270 {
  137. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  138. -webkit-transform: rotate(270deg);
  139. -ms-transform: rotate(270deg);
  140. transform: rotate(270deg);
  141. }
  142. .fa-flip-horizontal {
  143. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  144. -webkit-transform: scale(-1, 1);
  145. -ms-transform: scale(-1, 1);
  146. transform: scale(-1, 1);
  147. }
  148. .fa-flip-vertical {
  149. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  150. -webkit-transform: scale(1, -1);
  151. -ms-transform: scale(1, -1);
  152. transform: scale(1, -1);
  153. }
  154. :root .fa-rotate-90,
  155. :root .fa-rotate-180,
  156. :root .fa-rotate-270,
  157. :root .fa-flip-horizontal,
  158. :root .fa-flip-vertical {
  159. filter: none;
  160. }
  161. .fa-stack {
  162. position: relative;
  163. display: inline-block;
  164. width: 2em;
  165. height: 2em;
  166. line-height: 2em;
  167. vertical-align: middle;
  168. }
  169. .fa-stack-1x,
  170. .fa-stack-2x {
  171. position: absolute;
  172. left: 0;
  173. width: 100%;
  174. text-align: center;
  175. }
  176. .fa-stack-1x {
  177. line-height: inherit;
  178. }
  179. .fa-stack-2x {
  180. font-size: 2em;
  181. }
  182. .fa-inverse {
  183. color: #ffffff;
  184. }
  185. /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
  186. readers do not read off random characters that represent icons */
  187. .fa-glass:before {
  188. content: "\f000";
  189. }
  190. .fa-music:before {
  191. content: "\f001";
  192. }
  193. .fa-search:before {
  194. content: "\f002";
  195. }
  196. .fa-envelope-o:before {
  197. content: "\f003";
  198. }
  199. .fa-heart:before {
  200. content: "\f004";
  201. }
  202. .fa-star:before {
  203. content: "\f005";
  204. }
  205. .fa-star-o:before {
  206. content: "\f006";
  207. }
  208. .fa-user:before {
  209. content: "\f007";
  210. }
  211. .fa-film:before {
  212. content: "\f008";
  213. }
  214. .fa-th-large:before {
  215. content: "\f009";
  216. }
  217. .fa-th:before {
  218. content: "\f00a";
  219. }
  220. .fa-th-list:before {
  221. content: "\f00b";
  222. }
  223. .fa-check:before {
  224. content: "\f00c";
  225. }
  226. .fa-remove:before,
  227. .fa-close:before,
  228. .fa-times:before {
  229. content: "\f00d";
  230. }
  231. .fa-search-plus:before {
  232. content: "\f00e";
  233. }
  234. .fa-search-minus:before {
  235. content: "\f010";
  236. }
  237. .fa-power-off:before {
  238. content: "\f011";
  239. }
  240. .fa-signal:before {
  241. content: "\f012";
  242. }
  243. .fa-gear:before,
  244. .fa-cog:before {
  245. content: "\f013";
  246. }
  247. .fa-trash-o:before {
  248. content: "\f014";
  249. }
  250. .fa-home:before {
  251. content: "\f015";
  252. }
  253. .fa-file-o:before {
  254. content: "\f016";
  255. }
  256. .fa-clock-o:before {
  257. content: "\f017";
  258. }
  259. .fa-road:before {
  260. content: "\f018";
  261. }
  262. .fa-download:before {
  263. content: "\f019";
  264. }
  265. .fa-arrow-circle-o-down:before {
  266. content: "\f01a";
  267. }
  268. .fa-arrow-circle-o-up:before {
  269. content: "\f01b";
  270. }
  271. .fa-inbox:before {
  272. content: "\f01c";
  273. }
  274. .fa-play-circle-o:before {
  275. content: "\f01d";
  276. }
  277. .fa-rotate-right:before,
  278. .fa-repeat:before {
  279. content: "\f01e";
  280. }
  281. .fa-refresh:before {
  282. content: "\f021";
  283. }
  284. .fa-list-alt:before {
  285. content: "\f022";
  286. }
  287. .fa-lock:before {
  288. content: "\f023";
  289. }
  290. .fa-flag:before {
  291. content: "\f024";
  292. }
  293. .fa-headphones:before {
  294. content: "\f025";
  295. }
  296. .fa-volume-off:before {
  297. content: "\f026";
  298. }
  299. .fa-volume-down:before {
  300. content: "\f027";
  301. }
  302. .fa-volume-up:before {
  303. content: "\f028";
  304. }
  305. .fa-qrcode:before {
  306. content: "\f029";
  307. }
  308. .fa-barcode:before {
  309. content: "\f02a";
  310. }
  311. .fa-tag:before {
  312. content: "\f02b";
  313. }
  314. .fa-tags:before {
  315. content: "\f02c";
  316. }
  317. .fa-book:before {
  318. content: "\f02d";
  319. }
  320. .fa-bookmark:before {
  321. content: "\f02e";
  322. }
  323. .fa-print:before {
  324. content: "\f02f";
  325. }
  326. .fa-camera:before {
  327. content: "\f030";
  328. }
  329. .fa-font:before {
  330. content: "\f031";
  331. }
  332. .fa-bold:before {
  333. content: "\f032";
  334. }
  335. .fa-italic:before {
  336. content: "\f033";
  337. }
  338. .fa-text-height:before {
  339. content: "\f034";
  340. }
  341. .fa-text-width:before {
  342. content: "\f035";
  343. }
  344. .fa-align-left:before {
  345. content: "\f036";
  346. }
  347. .fa-align-center:before {
  348. content: "\f037";
  349. }
  350. .fa-align-right:before {
  351. content: "\f038";
  352. }
  353. .fa-align-justify:before {
  354. content: "\f039";
  355. }
  356. .fa-list:before {
  357. content: "\f03a";
  358. }
  359. .fa-dedent:before,
  360. .fa-outdent:before {
  361. content: "\f03b";
  362. }
  363. .fa-indent:before {
  364. content: "\f03c";
  365. }
  366. .fa-video-camera:before {
  367. content: "\f03d";
  368. }
  369. .fa-photo:before,
  370. .fa-image:before,
  371. .fa-picture-o:before {
  372. content: "\f03e";
  373. }
  374. .fa-pencil:before {
  375. content: "\f040";
  376. }
  377. .fa-map-marker:before {
  378. content: "\f041";
  379. }
  380. .fa-adjust:before {
  381. content: "\f042";
  382. }
  383. .fa-tint:before {
  384. content: "\f043";
  385. }
  386. .fa-edit:before,
  387. .fa-pencil-square-o:before {
  388. content: "\f044";
  389. }
  390. .fa-share-square-o:before {
  391. content: "\f045";
  392. }
  393. .fa-check-square-o:before {
  394. content: "\f046";
  395. }
  396. .fa-arrows:before {
  397. content: "\f047";
  398. }
  399. .fa-step-backward:before {
  400. content: "\f048";
  401. }
  402. .fa-fast-backward:before {
  403. content: "\f049";
  404. }
  405. .fa-backward:before {
  406. content: "\f04a";
  407. }
  408. .fa-play:before {
  409. content: "\f04b";
  410. }
  411. .fa-pause:before {
  412. content: "\f04c";
  413. }
  414. .fa-stop:before {
  415. content: "\f04d";
  416. }
  417. .fa-forward:before {
  418. content: "\f04e";
  419. }
  420. .fa-fast-forward:before {
  421. content: "\f050";
  422. }
  423. .fa-step-forward:before {
  424. content: "\f051";
  425. }
  426. .fa-eject:before {
  427. content: "\f052";
  428. }
  429. .fa-chevron-left:before {
  430. content: "\f053";
  431. }
  432. .fa-chevron-right:before {
  433. content: "\f054";
  434. }
  435. .fa-plus-circle:before {
  436. content: "\f055";
  437. }
  438. .fa-minus-circle:before {
  439. content: "\f056";
  440. }
  441. .fa-times-circle:before {
  442. content: "\f057";
  443. }
  444. .fa-check-circle:before {
  445. content: "\f058";
  446. }
  447. .fa-question-circle:before {
  448. content: "\f059";
  449. }
  450. .fa-info-circle:before {
  451. content: "\f05a";
  452. }
  453. .fa-crosshairs:before {
  454. content: "\f05b";
  455. }
  456. .fa-times-circle-o:before {
  457. content: "\f05c";
  458. }
  459. .fa-check-circle-o:before {
  460. content: "\f05d";
  461. }
  462. .fa-ban:before {
  463. content: "\f05e";
  464. }
  465. .fa-arrow-left:before {
  466. content: "\f060";
  467. }
  468. .fa-arrow-right:before {
  469. content: "\f061";
  470. }
  471. .fa-arrow-up:before {
  472. content: "\f062";
  473. }
  474. .fa-arrow-down:before {
  475. content: "\f063";
  476. }
  477. .fa-mail-forward:before,
  478. .fa-share:before {
  479. content: "\f064";
  480. }
  481. .fa-expand:before {
  482. content: "\f065";
  483. }
  484. .fa-compress:before {
  485. content: "\f066";
  486. }
  487. .fa-plus:before {
  488. content: "\f067";
  489. }
  490. .fa-minus:before {
  491. content: "\f068";
  492. }
  493. .fa-asterisk:before {
  494. content: "\f069";
  495. }
  496. .fa-exclamation-circle:before {
  497. content: "\f06a";
  498. }
  499. .fa-gift:before {
  500. content: "\f06b";
  501. }
  502. .fa-leaf:before {
  503. content: "\f06c";
  504. }
  505. .fa-fire:before {
  506. content: "\f06d";
  507. }
  508. .fa-eye:before {
  509. content: "\f06e";
  510. }
  511. .fa-eye-slash:before {
  512. content: "\f070";
  513. }
  514. .fa-warning:before,
  515. .fa-exclamation-triangle:before {
  516. content: "\f071";
  517. }
  518. .fa-plane:before {
  519. content: "\f072";
  520. }
  521. .fa-calendar:before {
  522. content: "\f073";
  523. }
  524. .fa-random:before {
  525. content: "\f074";
  526. }
  527. .fa-comment:before {
  528. content: "\f075";
  529. }
  530. .fa-magnet:before {
  531. content: "\f076";
  532. }
  533. .fa-chevron-up:before {
  534. content: "\f077";
  535. }
  536. .fa-chevron-down:before {
  537. content: "\f078";
  538. }
  539. .fa-retweet:before {
  540. content: "\f079";
  541. }
  542. .fa-shopping-cart:before {
  543. content: "\f07a";
  544. }
  545. .fa-folder:before {
  546. content: "\f07b";
  547. }
  548. .fa-folder-open:before {
  549. content: "\f07c";
  550. }
  551. .fa-arrows-v:before {
  552. content: "\f07d";
  553. }
  554. .fa-arrows-h:before {
  555. content: "\f07e";
  556. }
  557. .fa-bar-chart-o:before,
  558. .fa-bar-chart:before {
  559. content: "\f080";
  560. }
  561. .fa-twitter-square:before {
  562. content: "\f081";
  563. }
  564. .fa-facebook-square:before {
  565. content: "\f082";
  566. }
  567. .fa-camera-retro:before {
  568. content: "\f083";
  569. }
  570. .fa-key:before {
  571. content: "\f084";
  572. }
  573. .fa-gears:before,
  574. .fa-cogs:before {
  575. content: "\f085";
  576. }
  577. .fa-comments:before {
  578. content: "\f086";
  579. }
  580. .fa-thumbs-o-up:before {
  581. content: "\f087";
  582. }
  583. .fa-thumbs-o-down:before {
  584. content: "\f088";
  585. }
  586. .fa-star-half:before {
  587. content: "\f089";
  588. }
  589. .fa-heart-o:before {
  590. content: "\f08a";
  591. }
  592. .fa-sign-out:before {
  593. content: "\f08b";
  594. }
  595. .fa-linkedin-square:before {
  596. content: "\f08c";
  597. }
  598. .fa-thumb-tack:before {
  599. content: "\f08d";
  600. }
  601. .fa-external-link:before {
  602. content: "\f08e";
  603. }
  604. .fa-sign-in:before {
  605. content: "\f090";
  606. }
  607. .fa-trophy:before {
  608. content: "\f091";
  609. }
  610. .fa-github-square:before {
  611. content: "\f092";
  612. }
  613. .fa-upload:before {
  614. content: "\f093";
  615. }
  616. .fa-lemon-o:before {
  617. content: "\f094";
  618. }
  619. .fa-phone:before {
  620. content: "\f095";
  621. }
  622. .fa-square-o:before {
  623. content: "\f096";
  624. }
  625. .fa-bookmark-o:before {
  626. content: "\f097";
  627. }
  628. .fa-phone-square:before {
  629. content: "\f098";
  630. }
  631. .fa-twitter:before {
  632. content: "\f099";
  633. }
  634. .fa-facebook-f:before,
  635. .fa-facebook:before {
  636. content: "\f09a";
  637. }
  638. .fa-github:before {
  639. content: "\f09b";
  640. }
  641. .fa-unlock:before {
  642. content: "\f09c";
  643. }
  644. .fa-credit-card:before {
  645. content: "\f09d";
  646. }
  647. .fa-feed:before,
  648. .fa-rss:before {
  649. content: "\f09e";
  650. }
  651. .fa-hdd-o:before {
  652. content: "\f0a0";
  653. }
  654. .fa-bullhorn:before {
  655. content: "\f0a1";
  656. }
  657. .fa-bell:before {
  658. content: "\f0f3";
  659. }
  660. .fa-certificate:before {
  661. content: "\f0a3";
  662. }
  663. .fa-hand-o-right:before {
  664. content: "\f0a4";
  665. }
  666. .fa-hand-o-left:before {
  667. content: "\f0a5";
  668. }
  669. .fa-hand-o-up:before {
  670. content: "\f0a6";
  671. }
  672. .fa-hand-o-down:before {
  673. content: "\f0a7";
  674. }
  675. .fa-arrow-circle-left:before {
  676. content: "\f0a8";
  677. }
  678. .fa-arrow-circle-right:before {
  679. content: "\f0a9";
  680. }
  681. .fa-arrow-circle-up:before {
  682. content: "\f0aa";
  683. }
  684. .fa-arrow-circle-down:before {
  685. content: "\f0ab";
  686. }
  687. .fa-globe:before {
  688. content: "\f0ac";
  689. }
  690. .fa-wrench:before {
  691. content: "\f0ad";
  692. }
  693. .fa-tasks:before {
  694. content: "\f0ae";
  695. }
  696. .fa-filter:before {
  697. content: "\f0b0";
  698. }
  699. .fa-briefcase:before {
  700. content: "\f0b1";
  701. }
  702. .fa-arrows-alt:before {
  703. content: "\f0b2";
  704. }
  705. .fa-group:before,
  706. .fa-users:before {
  707. content: "\f0c0";
  708. }
  709. .fa-chain:before,
  710. .fa-link:before {
  711. content: "\f0c1";
  712. }
  713. .fa-cloud:before {
  714. content: "\f0c2";
  715. }
  716. .fa-flask:before {
  717. content: "\f0c3";
  718. }
  719. .fa-cut:before,
  720. .fa-scissors:before {
  721. content: "\f0c4";
  722. }
  723. .fa-copy:before,
  724. .fa-files-o:before {
  725. content: "\f0c5";
  726. }
  727. .fa-paperclip:before {
  728. content: "\f0c6";
  729. }
  730. .fa-save:before,
  731. .fa-floppy-o:before {
  732. content: "\f0c7";
  733. }
  734. .fa-square:before {
  735. content: "\f0c8";
  736. }
  737. .fa-navicon:before,
  738. .fa-reorder:before,
  739. .fa-bars:before {
  740. content: "\f0c9";
  741. }
  742. .fa-list-ul:before {
  743. content: "\f0ca";
  744. }
  745. .fa-list-ol:before {
  746. content: "\f0cb";
  747. }
  748. .fa-strikethrough:before {
  749. content: "\f0cc";
  750. }
  751. .fa-underline:before {
  752. content: "\f0cd";
  753. }
  754. .fa-table:before {
  755. content: "\f0ce";
  756. }
  757. .fa-magic:before {
  758. content: "\f0d0";
  759. }
  760. .fa-truck:before {
  761. content: "\f0d1";
  762. }
  763. .fa-pinterest:before {
  764. content: "\f0d2";
  765. }
  766. .fa-pinterest-square:before {
  767. content: "\f0d3";
  768. }
  769. .fa-google-plus-square:before {
  770. content: "\f0d4";
  771. }
  772. .fa-google-plus:before {
  773. content: "\f0d5";
  774. }
  775. .fa-money:before {
  776. content: "\f0d6";
  777. }
  778. .fa-caret-down:before {
  779. content: "\f0d7";
  780. }
  781. .fa-caret-up:before {
  782. content: "\f0d8";
  783. }
  784. .fa-caret-left:before {
  785. content: "\f0d9";
  786. }
  787. .fa-caret-right:before {
  788. content: "\f0da";
  789. }
  790. .fa-columns:before {
  791. content: "\f0db";
  792. }
  793. .fa-unsorted:before,
  794. .fa-sort:before {
  795. content: "\f0dc";
  796. }
  797. .fa-sort-down:before,
  798. .fa-sort-desc:before {
  799. content: "\f0dd";
  800. }
  801. .fa-sort-up:before,
  802. .fa-sort-asc:before {
  803. content: "\f0de";
  804. }
  805. .fa-envelope:before {
  806. content: "\f0e0";
  807. }
  808. .fa-linkedin:before {
  809. content: "\f0e1";
  810. }
  811. .fa-rotate-left:before,
  812. .fa-undo:before {
  813. content: "\f0e2";
  814. }
  815. .fa-legal:before,
  816. .fa-gavel:before {
  817. content: "\f0e3";
  818. }
  819. .fa-dashboard:before,
  820. .fa-tachometer:before {
  821. content: "\f0e4";
  822. }
  823. .fa-comment-o:before {
  824. content: "\f0e5";
  825. }
  826. .fa-comments-o:before {
  827. content: "\f0e6";
  828. }
  829. .fa-flash:before,
  830. .fa-bolt:before {
  831. content: "\f0e7";
  832. }
  833. .fa-sitemap:before {
  834. content: "\f0e8";
  835. }
  836. .fa-umbrella:before {
  837. content: "\f0e9";
  838. }
  839. .fa-paste:before,
  840. .fa-clipboard:before {
  841. content: "\f0ea";
  842. }
  843. .fa-lightbulb-o:before {
  844. content: "\f0eb";
  845. }
  846. .fa-exchange:before {
  847. content: "\f0ec";
  848. }
  849. .fa-cloud-download:before {
  850. content: "\f0ed";
  851. }
  852. .fa-cloud-upload:before {
  853. content: "\f0ee";
  854. }
  855. .fa-user-md:before {
  856. content: "\f0f0";
  857. }
  858. .fa-stethoscope:before {
  859. content: "\f0f1";
  860. }
  861. .fa-suitcase:before {
  862. content: "\f0f2";
  863. }
  864. .fa-bell-o:before {
  865. content: "\f0a2";
  866. }
  867. .fa-coffee:before {
  868. content: "\f0f4";
  869. }
  870. .fa-cutlery:before {
  871. content: "\f0f5";
  872. }
  873. .fa-file-text-o:before {
  874. content: "\f0f6";
  875. }
  876. .fa-building-o:before {
  877. content: "\f0f7";
  878. }
  879. .fa-hospital-o:before {
  880. content: "\f0f8";
  881. }
  882. .fa-ambulance:before {
  883. content: "\f0f9";
  884. }
  885. .fa-medkit:before {
  886. content: "\f0fa";
  887. }
  888. .fa-fighter-jet:before {
  889. content: "\f0fb";
  890. }
  891. .fa-beer:before {
  892. content: "\f0fc";
  893. }
  894. .fa-h-square:before {
  895. content: "\f0fd";
  896. }
  897. .fa-plus-square:before {
  898. content: "\f0fe";
  899. }
  900. .fa-angle-double-left:before {
  901. content: "\f100";
  902. }
  903. .fa-angle-double-right:before {
  904. content: "\f101";
  905. }
  906. .fa-angle-double-up:before {
  907. content: "\f102";
  908. }
  909. .fa-angle-double-down:before {
  910. content: "\f103";
  911. }
  912. .fa-angle-left:before {
  913. content: "\f104";
  914. }
  915. .fa-angle-right:before {
  916. content: "\f105";
  917. }
  918. .fa-angle-up:before {
  919. content: "\f106";
  920. }
  921. .fa-angle-down:before {
  922. content: "\f107";
  923. }
  924. .fa-desktop:before {
  925. content: "\f108";
  926. }
  927. .fa-laptop:before {
  928. content: "\f109";
  929. }
  930. .fa-tablet:before {
  931. content: "\f10a";
  932. }
  933. .fa-mobile-phone:before,
  934. .fa-mobile:before {
  935. content: "\f10b";
  936. }
  937. .fa-circle-o:before {
  938. content: "\f10c";
  939. }
  940. .fa-quote-left:before {
  941. content: "\f10d";
  942. }
  943. .fa-quote-right:before {
  944. content: "\f10e";
  945. }
  946. .fa-spinner:before {
  947. content: "\f110";
  948. }
  949. .fa-circle:before {
  950. content: "\f111";
  951. }
  952. .fa-mail-reply:before,
  953. .fa-reply:before {
  954. content: "\f112";
  955. }
  956. .fa-github-alt:before {
  957. content: "\f113";
  958. }
  959. .fa-folder-o:before {
  960. content: "\f114";
  961. }
  962. .fa-folder-open-o:before {
  963. content: "\f115";
  964. }
  965. .fa-smile-o:before {
  966. content: "\f118";
  967. }
  968. .fa-frown-o:before {
  969. content: "\f119";
  970. }
  971. .fa-meh-o:before {
  972. content: "\f11a";
  973. }
  974. .fa-gamepad:before {
  975. content: "\f11b";
  976. }
  977. .fa-keyboard-o:before {
  978. content: "\f11c";
  979. }
  980. .fa-flag-o:before {
  981. content: "\f11d";
  982. }
  983. .fa-flag-checkered:before {
  984. content: "\f11e";
  985. }
  986. .fa-terminal:before {
  987. content: "\f120";
  988. }
  989. .fa-code:before {
  990. content: "\f121";
  991. }
  992. .fa-mail-reply-all:before,
  993. .fa-reply-all:before {
  994. content: "\f122";
  995. }
  996. .fa-star-half-empty:before,
  997. .fa-star-half-full:before,
  998. .fa-star-half-o:before {
  999. content: "\f123";
  1000. }
  1001. .fa-location-arrow:before {
  1002. content: "\f124";
  1003. }
  1004. .fa-crop:before {
  1005. content: "\f125";
  1006. }
  1007. .fa-code-fork:before {
  1008. content: "\f126";
  1009. }
  1010. .fa-unlink:before,
  1011. .fa-chain-broken:before {
  1012. content: "\f127";
  1013. }
  1014. .fa-question:before {
  1015. content: "\f128";
  1016. }
  1017. .fa-info:before {
  1018. content: "\f129";
  1019. }
  1020. .fa-exclamation:before {
  1021. content: "\f12a";
  1022. }
  1023. .fa-superscript:before {
  1024. content: "\f12b";
  1025. }
  1026. .fa-subscript:before {
  1027. content: "\f12c";
  1028. }
  1029. .fa-eraser:before {
  1030. content: "\f12d";
  1031. }
  1032. .fa-puzzle-piece:before {
  1033. content: "\f12e";
  1034. }
  1035. .fa-microphone:before {
  1036. content: "\f130";
  1037. }
  1038. .fa-microphone-slash:before {
  1039. content: "\f131";
  1040. }
  1041. .fa-shield:before {
  1042. content: "\f132";
  1043. }
  1044. .fa-calendar-o:before {
  1045. content: "\f133";
  1046. }
  1047. .fa-fire-extinguisher:before {
  1048. content: "\f134";
  1049. }
  1050. .fa-rocket:before {
  1051. content: "\f135";
  1052. }
  1053. .fa-maxcdn:before {
  1054. content: "\f136";
  1055. }
  1056. .fa-chevron-circle-left:before {
  1057. content: "\f137";
  1058. }
  1059. .fa-chevron-circle-right:before {
  1060. content: "\f138";
  1061. }
  1062. .fa-chevron-circle-up:before {
  1063. content: "\f139";
  1064. }
  1065. .fa-chevron-circle-down:before {
  1066. content: "\f13a";
  1067. }
  1068. .fa-html5:before {
  1069. content: "\f13b";
  1070. }
  1071. .fa-css3:before {
  1072. content: "\f13c";
  1073. }
  1074. .fa-anchor:before {
  1075. content: "\f13d";
  1076. }
  1077. .fa-unlock-alt:before {
  1078. content: "\f13e";
  1079. }
  1080. .fa-bullseye:before {
  1081. content: "\f140";
  1082. }
  1083. .fa-ellipsis-h:before {
  1084. content: "\f141";
  1085. }
  1086. .fa-ellipsis-v:before {
  1087. content: "\f142";
  1088. }
  1089. .fa-rss-square:before {
  1090. content: "\f143";
  1091. }
  1092. .fa-play-circle:before {
  1093. content: "\f144";
  1094. }
  1095. .fa-ticket:before {
  1096. content: "\f145";
  1097. }
  1098. .fa-minus-square:before {
  1099. content: "\f146";
  1100. }
  1101. .fa-minus-square-o:before {
  1102. content: "\f147";
  1103. }
  1104. .fa-level-up:before {
  1105. content: "\f148";
  1106. }
  1107. .fa-level-down:before {
  1108. content: "\f149";
  1109. }
  1110. .fa-check-square:before {
  1111. content: "\f14a";
  1112. }
  1113. .fa-pencil-square:before {
  1114. content: "\f14b";
  1115. }
  1116. .fa-external-link-square:before {
  1117. content: "\f14c";
  1118. }
  1119. .fa-share-square:before {
  1120. content: "\f14d";
  1121. }
  1122. .fa-compass:before {
  1123. content: "\f14e";
  1124. }
  1125. .fa-toggle-down:before,
  1126. .fa-caret-square-o-down:before {
  1127. content: "\f150";
  1128. }
  1129. .fa-toggle-up:before,
  1130. .fa-caret-square-o-up:before {
  1131. content: "\f151";
  1132. }
  1133. .fa-toggle-right:before,
  1134. .fa-caret-square-o-right:before {
  1135. content: "\f152";
  1136. }
  1137. .fa-euro:before,
  1138. .fa-eur:before {
  1139. content: "\f153";
  1140. }
  1141. .fa-gbp:before {
  1142. content: "\f154";
  1143. }
  1144. .fa-dollar:before,
  1145. .fa-usd:before {
  1146. content: "\f155";
  1147. }
  1148. .fa-rupee:before,
  1149. .fa-inr:before {
  1150. content: "\f156";
  1151. }
  1152. .fa-cny:before,
  1153. .fa-rmb:before,
  1154. .fa-yen:before,
  1155. .fa-jpy:before {
  1156. content: "\f157";
  1157. }
  1158. .fa-ruble:before,
  1159. .fa-rouble:before,
  1160. .fa-rub:before {
  1161. content: "\f158";
  1162. }
  1163. .fa-won:before,
  1164. .fa-krw:before {
  1165. content: "\f159";
  1166. }
  1167. .fa-bitcoin:before,
  1168. .fa-btc:before {
  1169. content: "\f15a";
  1170. }
  1171. .fa-file:before {
  1172. content: "\f15b";
  1173. }
  1174. .fa-file-text:before {
  1175. content: "\f15c";
  1176. }
  1177. .fa-sort-alpha-asc:before {
  1178. content: "\f15d";
  1179. }
  1180. .fa-sort-alpha-desc:before {
  1181. content: "\f15e";
  1182. }
  1183. .fa-sort-amount-asc:before {
  1184. content: "\f160";
  1185. }
  1186. .fa-sort-amount-desc:before {
  1187. content: "\f161";
  1188. }
  1189. .fa-sort-numeric-asc:before {
  1190. content: "\f162";
  1191. }
  1192. .fa-sort-numeric-desc:before {
  1193. content: "\f163";
  1194. }
  1195. .fa-thumbs-up:before {
  1196. content: "\f164";
  1197. }
  1198. .fa-thumbs-down:before {
  1199. content: "\f165";
  1200. }
  1201. .fa-youtube-square:before {
  1202. content: "\f166";
  1203. }
  1204. .fa-youtube:before {
  1205. content: "\f167";
  1206. }
  1207. .fa-xing:before {
  1208. content: "\f168";
  1209. }
  1210. .fa-xing-square:before {
  1211. content: "\f169";
  1212. }
  1213. .fa-youtube-play:before {
  1214. content: "\f16a";
  1215. }
  1216. .fa-dropbox:before {
  1217. content: "\f16b";
  1218. }
  1219. .fa-stack-overflow:before {
  1220. content: "\f16c";
  1221. }
  1222. .fa-instagram:before {
  1223. content: "\f16d";
  1224. }
  1225. .fa-flickr:before {
  1226. content: "\f16e";
  1227. }
  1228. .fa-adn:before {
  1229. content: "\f170";
  1230. }
  1231. .fa-bitbucket:before {
  1232. content: "\f171";
  1233. }
  1234. .fa-bitbucket-square:before {
  1235. content: "\f172";
  1236. }
  1237. .fa-tumblr:before {
  1238. content: "\f173";
  1239. }
  1240. .fa-tumblr-square:before {
  1241. content: "\f174";
  1242. }
  1243. .fa-long-arrow-down:before {
  1244. content: "\f175";
  1245. }
  1246. .fa-long-arrow-up:before {
  1247. content: "\f176";
  1248. }
  1249. .fa-long-arrow-left:before {
  1250. content: "\f177";
  1251. }
  1252. .fa-long-arrow-right:before {
  1253. content: "\f178";
  1254. }
  1255. .fa-apple:before {
  1256. content: "\f179";
  1257. }
  1258. .fa-windows:before {
  1259. content: "\f17a";
  1260. }
  1261. .fa-android:before {
  1262. content: "\f17b";
  1263. }
  1264. .fa-linux:before {
  1265. content: "\f17c";
  1266. }
  1267. .fa-dribbble:before {
  1268. content: "\f17d";
  1269. }
  1270. .fa-skype:before {
  1271. content: "\f17e";
  1272. }
  1273. .fa-foursquare:before {
  1274. content: "\f180";
  1275. }
  1276. .fa-trello:before {
  1277. content: "\f181";
  1278. }
  1279. .fa-female:before {
  1280. content: "\f182";
  1281. }
  1282. .fa-male:before {
  1283. content: "\f183";
  1284. }
  1285. .fa-gittip:before,
  1286. .fa-gratipay:before {
  1287. content: "\f184";
  1288. }
  1289. .fa-sun-o:before {
  1290. content: "\f185";
  1291. }
  1292. .fa-moon-o:before {
  1293. content: "\f186";
  1294. }
  1295. .fa-archive:before {
  1296. content: "\f187";
  1297. }
  1298. .fa-bug:before {
  1299. content: "\f188";
  1300. }
  1301. .fa-vk:before {
  1302. content: "\f189";
  1303. }
  1304. .fa-weibo:before {
  1305. content: "\f18a";
  1306. }
  1307. .fa-renren:before {
  1308. content: "\f18b";
  1309. }
  1310. .fa-pagelines:before {
  1311. content: "\f18c";
  1312. }
  1313. .fa-stack-exchange:before {
  1314. content: "\f18d";
  1315. }
  1316. .fa-arrow-circle-o-right:before {
  1317. content: "\f18e";
  1318. }
  1319. .fa-arrow-circle-o-left:before {
  1320. content: "\f190";
  1321. }
  1322. .fa-toggle-left:before,
  1323. .fa-caret-square-o-left:before {
  1324. content: "\f191";
  1325. }
  1326. .fa-dot-circle-o:before {
  1327. content: "\f192";
  1328. }
  1329. .fa-wheelchair:before {
  1330. content: "\f193";
  1331. }
  1332. .fa-vimeo-square:before {
  1333. content: "\f194";
  1334. }
  1335. .fa-turkish-lira:before,
  1336. .fa-try:before {
  1337. content: "\f195";
  1338. }
  1339. .fa-plus-square-o:before {
  1340. content: "\f196";
  1341. }
  1342. .fa-space-shuttle:before {
  1343. content: "\f197";
  1344. }
  1345. .fa-slack:before {
  1346. content: "\f198";
  1347. }
  1348. .fa-envelope-square:before {
  1349. content: "\f199";
  1350. }
  1351. .fa-wordpress:before {
  1352. content: "\f19a";
  1353. }
  1354. .fa-openid:before {
  1355. content: "\f19b";
  1356. }
  1357. .fa-institution:before,
  1358. .fa-bank:before,
  1359. .fa-university:before {
  1360. content: "\f19c";
  1361. }
  1362. .fa-mortar-board:before,
  1363. .fa-graduation-cap:before {
  1364. content: "\f19d";
  1365. }
  1366. .fa-yahoo:before {
  1367. content: "\f19e";
  1368. }
  1369. .fa-google:before {
  1370. content: "\f1a0";
  1371. }
  1372. .fa-reddit:before {
  1373. content: "\f1a1";
  1374. }
  1375. .fa-reddit-square:before {
  1376. content: "\f1a2";
  1377. }
  1378. .fa-stumbleupon-circle:before {
  1379. content: "\f1a3";
  1380. }
  1381. .fa-stumbleupon:before {
  1382. content: "\f1a4";
  1383. }
  1384. .fa-delicious:before {
  1385. content: "\f1a5";
  1386. }
  1387. .fa-digg:before {
  1388. content: "\f1a6";
  1389. }
  1390. .fa-pied-piper-pp:before {
  1391. content: "\f1a7";
  1392. }
  1393. .fa-pied-piper-alt:before {
  1394. content: "\f1a8";
  1395. }
  1396. .fa-drupal:before {
  1397. content: "\f1a9";
  1398. }
  1399. .fa-joomla:before {
  1400. content: "\f1aa";
  1401. }
  1402. .fa-language:before {
  1403. content: "\f1ab";
  1404. }
  1405. .fa-fax:before {
  1406. content: "\f1ac";
  1407. }
  1408. .fa-building:before {
  1409. content: "\f1ad";
  1410. }
  1411. .fa-child:before {
  1412. content: "\f1ae";
  1413. }
  1414. .fa-paw:before {
  1415. content: "\f1b0";
  1416. }
  1417. .fa-spoon:before {
  1418. content: "\f1b1";
  1419. }
  1420. .fa-cube:before {
  1421. content: "\f1b2";
  1422. }
  1423. .fa-cubes:before {
  1424. content: "\f1b3";
  1425. }
  1426. .fa-behance:before {
  1427. content: "\f1b4";
  1428. }
  1429. .fa-behance-square:before {
  1430. content: "\f1b5";
  1431. }
  1432. .fa-steam:before {
  1433. content: "\f1b6";
  1434. }
  1435. .fa-steam-square:before {
  1436. content: "\f1b7";
  1437. }
  1438. .fa-recycle:before {
  1439. content: "\f1b8";
  1440. }
  1441. .fa-automobile:before,
  1442. .fa-car:before {
  1443. content: "\f1b9";
  1444. }
  1445. .fa-cab:before,
  1446. .fa-taxi:before {
  1447. content: "\f1ba";
  1448. }
  1449. .fa-tree:before {
  1450. content: "\f1bb";
  1451. }
  1452. .fa-spotify:before {
  1453. content: "\f1bc";
  1454. }
  1455. .fa-deviantart:before {
  1456. content: "\f1bd";
  1457. }
  1458. .fa-soundcloud:before {
  1459. content: "\f1be";
  1460. }
  1461. .fa-database:before {
  1462. content: "\f1c0";
  1463. }
  1464. .fa-file-pdf-o:before {
  1465. content: "\f1c1";
  1466. }
  1467. .fa-file-word-o:before {
  1468. content: "\f1c2";
  1469. }
  1470. .fa-file-excel-o:before {
  1471. content: "\f1c3";
  1472. }
  1473. .fa-file-powerpoint-o:before {
  1474. content: "\f1c4";
  1475. }
  1476. .fa-file-photo-o:before,
  1477. .fa-file-picture-o:before,
  1478. .fa-file-image-o:before {
  1479. content: "\f1c5";
  1480. }
  1481. .fa-file-zip-o:before,
  1482. .fa-file-archive-o:before {
  1483. content: "\f1c6";
  1484. }
  1485. .fa-file-sound-o:before,
  1486. .fa-file-audio-o:before {
  1487. content: "\f1c7";
  1488. }
  1489. .fa-file-movie-o:before,
  1490. .fa-file-video-o:before {
  1491. content: "\f1c8";
  1492. }
  1493. .fa-file-code-o:before {
  1494. content: "\f1c9";
  1495. }
  1496. .fa-vine:before {
  1497. content: "\f1ca";
  1498. }
  1499. .fa-codepen:before {
  1500. content: "\f1cb";
  1501. }
  1502. .fa-jsfiddle:before {
  1503. content: "\f1cc";
  1504. }
  1505. .fa-life-bouy:before,
  1506. .fa-life-buoy:before,
  1507. .fa-life-saver:before,
  1508. .fa-support:before,
  1509. .fa-life-ring:before {
  1510. content: "\f1cd";
  1511. }
  1512. .fa-circle-o-notch:before {
  1513. content: "\f1ce";
  1514. }
  1515. .fa-ra:before,
  1516. .fa-resistance:before,
  1517. .fa-rebel:before {
  1518. content: "\f1d0";
  1519. }
  1520. .fa-ge:before,
  1521. .fa-empire:before {
  1522. content: "\f1d1";
  1523. }
  1524. .fa-git-square:before {
  1525. content: "\f1d2";
  1526. }
  1527. .fa-git:before {
  1528. content: "\f1d3";
  1529. }
  1530. .fa-y-combinator-square:before,
  1531. .fa-yc-square:before,
  1532. .fa-hacker-news:before {
  1533. content: "\f1d4";
  1534. }
  1535. .fa-tencent-weibo:before {
  1536. content: "\f1d5";
  1537. }
  1538. .fa-qq:before {
  1539. content: "\f1d6";
  1540. }
  1541. .fa-wechat:before,
  1542. .fa-weixin:before {
  1543. content: "\f1d7";
  1544. }
  1545. .fa-send:before,
  1546. .fa-paper-plane:before {
  1547. content: "\f1d8";
  1548. }
  1549. .fa-send-o:before,
  1550. .fa-paper-plane-o:before {
  1551. content: "\f1d9";
  1552. }
  1553. .fa-history:before {
  1554. content: "\f1da";
  1555. }
  1556. .fa-circle-thin:before {
  1557. content: "\f1db";
  1558. }
  1559. .fa-header:before {
  1560. content: "\f1dc";
  1561. }
  1562. .fa-paragraph:before {
  1563. content: "\f1dd";
  1564. }
  1565. .fa-sliders:before {
  1566. content: "\f1de";
  1567. }
  1568. .fa-share-alt:before {
  1569. content: "\f1e0";
  1570. }
  1571. .fa-share-alt-square:before {
  1572. content: "\f1e1";
  1573. }
  1574. .fa-bomb:before {
  1575. content: "\f1e2";
  1576. }
  1577. .fa-soccer-ball-o:before,
  1578. .fa-futbol-o:before {
  1579. content: "\f1e3";
  1580. }
  1581. .fa-tty:before {
  1582. content: "\f1e4";
  1583. }
  1584. .fa-binoculars:before {
  1585. content: "\f1e5";
  1586. }
  1587. .fa-plug:before {
  1588. content: "\f1e6";
  1589. }
  1590. .fa-slideshare:before {
  1591. content: "\f1e7";
  1592. }
  1593. .fa-twitch:before {
  1594. content: "\f1e8";
  1595. }
  1596. .fa-yelp:before {
  1597. content: "\f1e9";
  1598. }
  1599. .fa-newspaper-o:before {
  1600. content: "\f1ea";
  1601. }
  1602. .fa-wifi:before {
  1603. content: "\f1eb";
  1604. }
  1605. .fa-calculator:before {
  1606. content: "\f1ec";
  1607. }
  1608. .fa-paypal:before {
  1609. content: "\f1ed";
  1610. }
  1611. .fa-google-wallet:before {
  1612. content: "\f1ee";
  1613. }
  1614. .fa-cc-visa:before {
  1615. content: "\f1f0";
  1616. }
  1617. .fa-cc-mastercard:before {
  1618. content: "\f1f1";
  1619. }
  1620. .fa-cc-discover:before {
  1621. content: "\f1f2";
  1622. }
  1623. .fa-cc-amex:before {
  1624. content: "\f1f3";
  1625. }
  1626. .fa-cc-paypal:before {
  1627. content: "\f1f4";
  1628. }
  1629. .fa-cc-stripe:before {
  1630. content: "\f1f5";
  1631. }
  1632. .fa-bell-slash:before {
  1633. content: "\f1f6";
  1634. }
  1635. .fa-bell-slash-o:before {
  1636. content: "\f1f7";
  1637. }
  1638. .fa-trash:before {
  1639. content: "\f1f8";
  1640. }
  1641. .fa-copyright:before {
  1642. content: "\f1f9";
  1643. }
  1644. .fa-at:before {
  1645. content: "\f1fa";
  1646. }
  1647. .fa-eyedropper:before {
  1648. content: "\f1fb";
  1649. }
  1650. .fa-paint-brush:before {
  1651. content: "\f1fc";
  1652. }
  1653. .fa-birthday-cake:before {
  1654. content: "\f1fd";
  1655. }
  1656. .fa-area-chart:before {
  1657. content: "\f1fe";
  1658. }
  1659. .fa-pie-chart:before {
  1660. content: "\f200";
  1661. }
  1662. .fa-line-chart:before {
  1663. content: "\f201";
  1664. }
  1665. .fa-lastfm:before {
  1666. content: "\f202";
  1667. }
  1668. .fa-lastfm-square:before {
  1669. content: "\f203";
  1670. }
  1671. .fa-toggle-off:before {
  1672. content: "\f204";
  1673. }
  1674. .fa-toggle-on:before {
  1675. content: "\f205";
  1676. }
  1677. .fa-bicycle:before {
  1678. content: "\f206";
  1679. }
  1680. .fa-bus:before {
  1681. content: "\f207";
  1682. }
  1683. .fa-ioxhost:before {
  1684. content: "\f208";
  1685. }
  1686. .fa-angellist:before {
  1687. content: "\f209";
  1688. }
  1689. .fa-cc:before {
  1690. content: "\f20a";
  1691. }
  1692. .fa-shekel:before,
  1693. .fa-sheqel:before,
  1694. .fa-ils:before {
  1695. content: "\f20b";
  1696. }
  1697. .fa-meanpath:before {
  1698. content: "\f20c";
  1699. }
  1700. .fa-buysellads:before {
  1701. content: "\f20d";
  1702. }
  1703. .fa-connectdevelop:before {
  1704. content: "\f20e";
  1705. }
  1706. .fa-dashcube:before {
  1707. content: "\f210";
  1708. }
  1709. .fa-forumbee:before {
  1710. content: "\f211";
  1711. }
  1712. .fa-leanpub:before {
  1713. content: "\f212";
  1714. }
  1715. .fa-sellsy:before {
  1716. content: "\f213";
  1717. }
  1718. .fa-shirtsinbulk:before {
  1719. content: "\f214";
  1720. }
  1721. .fa-simplybuilt:before {
  1722. content: "\f215";
  1723. }
  1724. .fa-skyatlas:before {
  1725. content: "\f216";
  1726. }
  1727. .fa-cart-plus:before {
  1728. content: "\f217";
  1729. }
  1730. .fa-cart-arrow-down:before {
  1731. content: "\f218";
  1732. }
  1733. .fa-diamond:before {
  1734. content: "\f219";
  1735. }
  1736. .fa-ship:before {
  1737. content: "\f21a";
  1738. }
  1739. .fa-user-secret:before {
  1740. content: "\f21b";
  1741. }
  1742. .fa-motorcycle:before {
  1743. content: "\f21c";
  1744. }
  1745. .fa-street-view:before {
  1746. content: "\f21d";
  1747. }
  1748. .fa-heartbeat:before {
  1749. content: "\f21e";
  1750. }
  1751. .fa-venus:before {
  1752. content: "\f221";
  1753. }
  1754. .fa-mars:before {
  1755. content: "\f222";
  1756. }
  1757. .fa-mercury:before {
  1758. content: "\f223";
  1759. }
  1760. .fa-intersex:before,
  1761. .fa-transgender:before {
  1762. content: "\f224";
  1763. }
  1764. .fa-transgender-alt:before {
  1765. content: "\f225";
  1766. }
  1767. .fa-venus-double:before {
  1768. content: "\f226";
  1769. }
  1770. .fa-mars-double:before {
  1771. content: "\f227";
  1772. }
  1773. .fa-venus-mars:before {
  1774. content: "\f228";
  1775. }
  1776. .fa-mars-stroke:before {
  1777. content: "\f229";
  1778. }
  1779. .fa-mars-stroke-v:before {
  1780. content: "\f22a";
  1781. }
  1782. .fa-mars-stroke-h:before {
  1783. content: "\f22b";
  1784. }
  1785. .fa-neuter:before {
  1786. content: "\f22c";
  1787. }
  1788. .fa-genderless:before {
  1789. content: "\f22d";
  1790. }
  1791. .fa-facebook-official:before {
  1792. content: "\f230";
  1793. }
  1794. .fa-pinterest-p:before {
  1795. content: "\f231";
  1796. }
  1797. .fa-whatsapp:before {
  1798. content: "\f232";
  1799. }
  1800. .fa-server:before {
  1801. content: "\f233";
  1802. }
  1803. .fa-user-plus:before {
  1804. content: "\f234";
  1805. }
  1806. .fa-user-times:before {
  1807. content: "\f235";
  1808. }
  1809. .fa-hotel:before,
  1810. .fa-bed:before {
  1811. content: "\f236";
  1812. }
  1813. .fa-viacoin:before {
  1814. content: "\f237";
  1815. }
  1816. .fa-train:before {
  1817. content: "\f238";
  1818. }
  1819. .fa-subway:before {
  1820. content: "\f239";
  1821. }
  1822. .fa-medium:before {
  1823. content: "\f23a";
  1824. }
  1825. .fa-yc:before,
  1826. .fa-y-combinator:before {
  1827. content: "\f23b";
  1828. }
  1829. .fa-optin-monster:before {
  1830. content: "\f23c";
  1831. }
  1832. .fa-opencart:before {
  1833. content: "\f23d";
  1834. }
  1835. .fa-expeditedssl:before {
  1836. content: "\f23e";
  1837. }
  1838. .fa-battery-4:before,
  1839. .fa-battery-full:before {
  1840. content: "\f240";
  1841. }
  1842. .fa-battery-3:before,
  1843. .fa-battery-three-quarters:before {
  1844. content: "\f241";
  1845. }
  1846. .fa-battery-2:before,
  1847. .fa-battery-half:before {
  1848. content: "\f242";
  1849. }
  1850. .fa-battery-1:before,
  1851. .fa-battery-quarter:before {
  1852. content: "\f243";
  1853. }
  1854. .fa-battery-0:before,
  1855. .fa-battery-empty:before {
  1856. content: "\f244";
  1857. }
  1858. .fa-mouse-pointer:before {
  1859. content: "\f245";
  1860. }
  1861. .fa-i-cursor:before {
  1862. content: "\f246";
  1863. }
  1864. .fa-object-group:before {
  1865. content: "\f247";
  1866. }
  1867. .fa-object-ungroup:before {
  1868. content: "\f248";
  1869. }
  1870. .fa-sticky-note:before {
  1871. content: "\f249";
  1872. }
  1873. .fa-sticky-note-o:before {
  1874. content: "\f24a";
  1875. }
  1876. .fa-cc-jcb:before {
  1877. content: "\f24b";
  1878. }
  1879. .fa-cc-diners-club:before {
  1880. content: "\f24c";
  1881. }
  1882. .fa-clone:before {
  1883. content: "\f24d";
  1884. }
  1885. .fa-balance-scale:before {
  1886. content: "\f24e";
  1887. }
  1888. .fa-hourglass-o:before {
  1889. content: "\f250";
  1890. }
  1891. .fa-hourglass-1:before,
  1892. .fa-hourglass-start:before {
  1893. content: "\f251";
  1894. }
  1895. .fa-hourglass-2:before,
  1896. .fa-hourglass-half:before {
  1897. content: "\f252";
  1898. }
  1899. .fa-hourglass-3:before,
  1900. .fa-hourglass-end:before {
  1901. content: "\f253";
  1902. }
  1903. .fa-hourglass:before {
  1904. content: "\f254";
  1905. }
  1906. .fa-hand-grab-o:before,
  1907. .fa-hand-rock-o:before {
  1908. content: "\f255";
  1909. }
  1910. .fa-hand-stop-o:before,
  1911. .fa-hand-paper-o:before {
  1912. content: "\f256";
  1913. }
  1914. .fa-hand-scissors-o:before {
  1915. content: "\f257";
  1916. }
  1917. .fa-hand-lizard-o:before {
  1918. content: "\f258";
  1919. }
  1920. .fa-hand-spock-o:before {
  1921. content: "\f259";
  1922. }
  1923. .fa-hand-pointer-o:before {
  1924. content: "\f25a";
  1925. }
  1926. .fa-hand-peace-o:before {
  1927. content: "\f25b";
  1928. }
  1929. .fa-trademark:before {
  1930. content: "\f25c";
  1931. }
  1932. .fa-registered:before {
  1933. content: "\f25d";
  1934. }
  1935. .fa-creative-commons:before {
  1936. content: "\f25e";
  1937. }
  1938. .fa-gg:before {
  1939. content: "\f260";
  1940. }
  1941. .fa-gg-circle:before {
  1942. content: "\f261";
  1943. }
  1944. .fa-tripadvisor:before {
  1945. content: "\f262";
  1946. }
  1947. .fa-odnoklassniki:before {
  1948. content: "\f263";
  1949. }
  1950. .fa-odnoklassniki-square:before {
  1951. content: "\f264";
  1952. }
  1953. .fa-get-pocket:before {
  1954. content: "\f265";
  1955. }
  1956. .fa-wikipedia-w:before {
  1957. content: "\f266";
  1958. }
  1959. .fa-safari:before {
  1960. content: "\f267";
  1961. }
  1962. .fa-chrome:before {
  1963. content: "\f268";
  1964. }
  1965. .fa-firefox:before {
  1966. content: "\f269";
  1967. }
  1968. .fa-opera:before {
  1969. content: "\f26a";
  1970. }
  1971. .fa-internet-explorer:before {
  1972. content: "\f26b";
  1973. }
  1974. .fa-tv:before,
  1975. .fa-television:before {
  1976. content: "\f26c";
  1977. }
  1978. .fa-contao:before {
  1979. content: "\f26d";
  1980. }
  1981. .fa-500px:before {
  1982. content: "\f26e";
  1983. }
  1984. .fa-amazon:before {
  1985. content: "\f270";
  1986. }
  1987. .fa-calendar-plus-o:before {
  1988. content: "\f271";
  1989. }
  1990. .fa-calendar-minus-o:before {
  1991. content: "\f272";
  1992. }
  1993. .fa-calendar-times-o:before {
  1994. content: "\f273";
  1995. }
  1996. .fa-calendar-check-o:before {
  1997. content: "\f274";
  1998. }
  1999. .fa-industry:before {
  2000. content: "\f275";
  2001. }
  2002. .fa-map-pin:before {
  2003. content: "\f276";
  2004. }
  2005. .fa-map-signs:before {
  2006. content: "\f277";
  2007. }
  2008. .fa-map-o:before {
  2009. content: "\f278";
  2010. }
  2011. .fa-map:before {
  2012. content: "\f279";
  2013. }
  2014. .fa-commenting:before {
  2015. content: "\f27a";
  2016. }
  2017. .fa-commenting-o:before {
  2018. content: "\f27b";
  2019. }
  2020. .fa-houzz:before {
  2021. content: "\f27c";
  2022. }
  2023. .fa-vimeo:before {
  2024. content: "\f27d";
  2025. }
  2026. .fa-black-tie:before {
  2027. content: "\f27e";
  2028. }
  2029. .fa-fonticons:before {
  2030. content: "\f280";
  2031. }
  2032. .fa-reddit-alien:before {
  2033. content: "\f281";
  2034. }
  2035. .fa-edge:before {
  2036. content: "\f282";
  2037. }
  2038. .fa-credit-card-alt:before {
  2039. content: "\f283";
  2040. }
  2041. .fa-codiepie:before {
  2042. content: "\f284";
  2043. }
  2044. .fa-modx:before {
  2045. content: "\f285";
  2046. }
  2047. .fa-fort-awesome:before {
  2048. content: "\f286";
  2049. }
  2050. .fa-usb:before {
  2051. content: "\f287";
  2052. }
  2053. .fa-product-hunt:before {
  2054. content: "\f288";
  2055. }
  2056. .fa-mixcloud:before {
  2057. content: "\f289";
  2058. }
  2059. .fa-scribd:before {
  2060. content: "\f28a";
  2061. }
  2062. .fa-pause-circle:before {
  2063. content: "\f28b";
  2064. }
  2065. .fa-pause-circle-o:before {
  2066. content: "\f28c";
  2067. }
  2068. .fa-stop-circle:before {
  2069. content: "\f28d";
  2070. }
  2071. .fa-stop-circle-o:before {
  2072. content: "\f28e";
  2073. }
  2074. .fa-shopping-bag:before {
  2075. content: "\f290";
  2076. }
  2077. .fa-shopping-basket:before {
  2078. content: "\f291";
  2079. }
  2080. .fa-hashtag:before {
  2081. content: "\f292";
  2082. }
  2083. .fa-bluetooth:before {
  2084. content: "\f293";
  2085. }
  2086. .fa-bluetooth-b:before {
  2087. content: "\f294";
  2088. }
  2089. .fa-percent:before {
  2090. content: "\f295";
  2091. }
  2092. .fa-gitlab:before {
  2093. content: "\f296";
  2094. }
  2095. .fa-wpbeginner:before {
  2096. content: "\f297";
  2097. }
  2098. .fa-wpforms:before {
  2099. content: "\f298";
  2100. }
  2101. .fa-envira:before {
  2102. content: "\f299";
  2103. }
  2104. .fa-universal-access:before {
  2105. content: "\f29a";
  2106. }
  2107. .fa-wheelchair-alt:before {
  2108. content: "\f29b";
  2109. }
  2110. .fa-question-circle-o:before {
  2111. content: "\f29c";
  2112. }
  2113. .fa-blind:before {
  2114. content: "\f29d";
  2115. }
  2116. .fa-audio-description:before {
  2117. content: "\f29e";
  2118. }
  2119. .fa-volume-control-phone:before {
  2120. content: "\f2a0";
  2121. }
  2122. .fa-braille:before {
  2123. content: "\f2a1";
  2124. }
  2125. .fa-assistive-listening-systems:before {
  2126. content: "\f2a2";
  2127. }
  2128. .fa-asl-interpreting:before,
  2129. .fa-american-sign-language-interpreting:before {
  2130. content: "\f2a3";
  2131. }
  2132. .fa-deafness:before,
  2133. .fa-hard-of-hearing:before,
  2134. .fa-deaf:before {
  2135. content: "\f2a4";
  2136. }
  2137. .fa-glide:before {
  2138. content: "\f2a5";
  2139. }
  2140. .fa-glide-g:before {
  2141. content: "\f2a6";
  2142. }
  2143. .fa-signing:before,
  2144. .fa-sign-language:before {
  2145. content: "\f2a7";
  2146. }
  2147. .fa-low-vision:before {
  2148. content: "\f2a8";
  2149. }
  2150. .fa-viadeo:before {
  2151. content: "\f2a9";
  2152. }
  2153. .fa-viadeo-square:before {
  2154. content: "\f2aa";
  2155. }
  2156. .fa-snapchat:before {
  2157. content: "\f2ab";
  2158. }
  2159. .fa-snapchat-ghost:before {
  2160. content: "\f2ac";
  2161. }
  2162. .fa-snapchat-square:before {
  2163. content: "\f2ad";
  2164. }
  2165. .fa-pied-piper:before {
  2166. content: "\f2ae";
  2167. }
  2168. .fa-first-order:before {
  2169. content: "\f2b0";
  2170. }
  2171. .fa-yoast:before {
  2172. content: "\f2b1";
  2173. }
  2174. .fa-themeisle:before {
  2175. content: "\f2b2";
  2176. }
  2177. .fa-google-plus-circle:before,
  2178. .fa-google-plus-official:before {
  2179. content: "\f2b3";
  2180. }
  2181. .fa-fa:before,
  2182. .fa-font-awesome:before {
  2183. content: "\f2b4";
  2184. }
  2185. .sr-only {
  2186. position: absolute;
  2187. width: 1px;
  2188. height: 1px;
  2189. padding: 0;
  2190. margin: -1px;
  2191. overflow: hidden;
  2192. clip: rect(0, 0, 0, 0);
  2193. border: 0;
  2194. }
  2195. .sr-only-focusable:active,
  2196. .sr-only-focusable:focus {
  2197. position: static;
  2198. width: auto;
  2199. height: auto;
  2200. margin: 0;
  2201. overflow: visible;
  2202. clip: auto;
  2203. }
  2204. /* MaterialDesignIcons.com */
  2205. @font-face {
  2206. font-family: "Material Design Icons";
  2207. src: url("../fonts/materialdesignicons-webfont6c9c.eot?v=1.6.50");
  2208. src: url("../fonts/materialdesignicons-webfontd41d.eot?#iefix&v=1.6.50") format("embedded-opentype"), url("../fonts/materialdesignicons-webfont6c9c.woff2?v=1.6.50") format("woff2"), url("../fonts/materialdesignicons-webfont6c9c.woff?v=1.6.50") format("woff"), url("../fonts/materialdesignicons-webfont6c9c.ttf?v=1.6.50") format("truetype"), url("../fonts/materialdesignicons-webfont6c9c.svg?v=1.6.50#materialdesigniconsregular") format("svg");
  2209. font-weight: normal;
  2210. font-style: normal;
  2211. }
  2212. .mdi {
  2213. display: inline-block;
  2214. font: normal normal normal 24px/1 "Material Design Icons";
  2215. font-size: inherit;
  2216. text-rendering: auto;
  2217. -webkit-font-smoothing: antialiased;
  2218. -moz-osx-font-smoothing: grayscale;
  2219. transform: translate(0, 0);
  2220. }
  2221. .mdi-access-point:before {
  2222. content: "\F002";
  2223. }
  2224. .mdi-access-point-network:before {
  2225. content: "\F003";
  2226. }
  2227. .mdi-account:before {
  2228. content: "\F004";
  2229. }
  2230. .mdi-account-alert:before {
  2231. content: "\F005";
  2232. }
  2233. .mdi-account-box:before {
  2234. content: "\F006";
  2235. }
  2236. .mdi-account-box-outline:before {
  2237. content: "\F007";
  2238. }
  2239. .mdi-account-card-details:before {
  2240. content: "\F5D2";
  2241. }
  2242. .mdi-account-check:before {
  2243. content: "\F008";
  2244. }
  2245. .mdi-account-circle:before {
  2246. content: "\F009";
  2247. }
  2248. .mdi-account-convert:before {
  2249. content: "\F00A";
  2250. }
  2251. .mdi-account-key:before {
  2252. content: "\F00B";
  2253. }
  2254. .mdi-account-location:before {
  2255. content: "\F00C";
  2256. }
  2257. .mdi-account-minus:before {
  2258. content: "\F00D";
  2259. }
  2260. .mdi-account-multiple:before {
  2261. content: "\F00E";
  2262. }
  2263. .mdi-account-multiple-minus:before {
  2264. content: "\F5D3";
  2265. }
  2266. .mdi-account-multiple-outline:before {
  2267. content: "\F00F";
  2268. }
  2269. .mdi-account-multiple-plus:before {
  2270. content: "\F010";
  2271. }
  2272. .mdi-account-network:before {
  2273. content: "\F011";
  2274. }
  2275. .mdi-account-off:before {
  2276. content: "\F012";
  2277. }
  2278. .mdi-account-outline:before {
  2279. content: "\F013";
  2280. }
  2281. .mdi-account-plus:before {
  2282. content: "\F014";
  2283. }
  2284. .mdi-account-remove:before {
  2285. content: "\F015";
  2286. }
  2287. .mdi-account-search:before {
  2288. content: "\F016";
  2289. }
  2290. .mdi-account-settings:before {
  2291. content: "\F630";
  2292. }
  2293. .mdi-account-settings-variant:before {
  2294. content: "\F631";
  2295. }
  2296. .mdi-account-star:before {
  2297. content: "\F017";
  2298. }
  2299. .mdi-account-star-variant:before {
  2300. content: "\F018";
  2301. }
  2302. .mdi-account-switch:before {
  2303. content: "\F019";
  2304. }
  2305. .mdi-adjust:before {
  2306. content: "\F01A";
  2307. }
  2308. .mdi-air-conditioner:before {
  2309. content: "\F01B";
  2310. }
  2311. .mdi-airballoon:before {
  2312. content: "\F01C";
  2313. }
  2314. .mdi-airplane:before {
  2315. content: "\F01D";
  2316. }
  2317. .mdi-airplane-landing:before {
  2318. content: "\F5D4";
  2319. }
  2320. .mdi-airplane-off:before {
  2321. content: "\F01E";
  2322. }
  2323. .mdi-airplane-takeoff:before {
  2324. content: "\F5D5";
  2325. }
  2326. .mdi-airplay:before {
  2327. content: "\F01F";
  2328. }
  2329. .mdi-alarm:before {
  2330. content: "\F020";
  2331. }
  2332. .mdi-alarm-check:before {
  2333. content: "\F021";
  2334. }
  2335. .mdi-alarm-multiple:before {
  2336. content: "\F022";
  2337. }
  2338. .mdi-alarm-off:before {
  2339. content: "\F023";
  2340. }
  2341. .mdi-alarm-plus:before {
  2342. content: "\F024";
  2343. }
  2344. .mdi-album:before {
  2345. content: "\F025";
  2346. }
  2347. .mdi-alert:before {
  2348. content: "\F026";
  2349. }
  2350. .mdi-alert-box:before {
  2351. content: "\F027";
  2352. }
  2353. .mdi-alert-circle:before {
  2354. content: "\F028";
  2355. }
  2356. .mdi-alert-circle-outline:before {
  2357. content: "\F5D6";
  2358. }
  2359. .mdi-alert-octagon:before {
  2360. content: "\F029";
  2361. }
  2362. .mdi-alert-outline:before {
  2363. content: "\F02A";
  2364. }
  2365. .mdi-alpha:before {
  2366. content: "\F02B";
  2367. }
  2368. .mdi-alphabetical:before {
  2369. content: "\F02C";
  2370. }
  2371. .mdi-altimeter:before {
  2372. content: "\F5D7";
  2373. }
  2374. .mdi-amazon:before {
  2375. content: "\F02D";
  2376. }
  2377. .mdi-amazon-clouddrive:before {
  2378. content: "\F02E";
  2379. }
  2380. .mdi-ambulance:before {
  2381. content: "\F02F";
  2382. }
  2383. .mdi-amplifier:before {
  2384. content: "\F030";
  2385. }
  2386. .mdi-anchor:before {
  2387. content: "\F031";
  2388. }
  2389. .mdi-android:before {
  2390. content: "\F032";
  2391. }
  2392. .mdi-android-debug-bridge:before {
  2393. content: "\F033";
  2394. }
  2395. .mdi-android-studio:before {
  2396. content: "\F034";
  2397. }
  2398. .mdi-animation:before {
  2399. content: "\F5D8";
  2400. }
  2401. .mdi-apple:before {
  2402. content: "\F035";
  2403. }
  2404. .mdi-apple-finder:before {
  2405. content: "\F036";
  2406. }
  2407. .mdi-apple-ios:before {
  2408. content: "\F037";
  2409. }
  2410. .mdi-apple-keyboard-caps:before {
  2411. content: "\F632";
  2412. }
  2413. .mdi-apple-keyboard-command:before {
  2414. content: "\F633";
  2415. }
  2416. .mdi-apple-keyboard-control:before {
  2417. content: "\F634";
  2418. }
  2419. .mdi-apple-keyboard-option:before {
  2420. content: "\F635";
  2421. }
  2422. .mdi-apple-keyboard-shift:before {
  2423. content: "\F636";
  2424. }
  2425. .mdi-apple-mobileme:before {
  2426. content: "\F038";
  2427. }
  2428. .mdi-apple-safari:before {
  2429. content: "\F039";
  2430. }
  2431. .mdi-application:before {
  2432. content: "\F614";
  2433. }
  2434. .mdi-appnet:before {
  2435. content: "\F03A";
  2436. }
  2437. .mdi-apps:before {
  2438. content: "\F03B";
  2439. }
  2440. .mdi-archive:before {
  2441. content: "\F03C";
  2442. }
  2443. .mdi-arrange-bring-forward:before {
  2444. content: "\F03D";
  2445. }
  2446. .mdi-arrange-bring-to-front:before {
  2447. content: "\F03E";
  2448. }
  2449. .mdi-arrange-send-backward:before {
  2450. content: "\F03F";
  2451. }
  2452. .mdi-arrange-send-to-back:before {
  2453. content: "\F040";
  2454. }
  2455. .mdi-arrow-all:before {
  2456. content: "\F041";
  2457. }
  2458. .mdi-arrow-bottom-left:before {
  2459. content: "\F042";
  2460. }
  2461. .mdi-arrow-bottom-right:before {
  2462. content: "\F043";
  2463. }
  2464. .mdi-arrow-compress:before {
  2465. content: "\F615";
  2466. }
  2467. .mdi-arrow-compress-all:before {
  2468. content: "\F044";
  2469. }
  2470. .mdi-arrow-down:before {
  2471. content: "\F045";
  2472. }
  2473. .mdi-arrow-down-bold:before {
  2474. content: "\F046";
  2475. }
  2476. .mdi-arrow-down-bold-circle:before {
  2477. content: "\F047";
  2478. }
  2479. .mdi-arrow-down-bold-circle-outline:before {
  2480. content: "\F048";
  2481. }
  2482. .mdi-arrow-down-bold-hexagon-outline:before {
  2483. content: "\F049";
  2484. }
  2485. .mdi-arrow-down-drop-circle:before {
  2486. content: "\F04A";
  2487. }
  2488. .mdi-arrow-down-drop-circle-outline:before {
  2489. content: "\F04B";
  2490. }
  2491. .mdi-arrow-expand:before {
  2492. content: "\F616";
  2493. }
  2494. .mdi-arrow-expand-all:before {
  2495. content: "\F04C";
  2496. }
  2497. .mdi-arrow-left:before {
  2498. content: "\F04D";
  2499. }
  2500. .mdi-arrow-left-bold:before {
  2501. content: "\F04E";
  2502. }
  2503. .mdi-arrow-left-bold-circle:before {
  2504. content: "\F04F";
  2505. }
  2506. .mdi-arrow-left-bold-circle-outline:before {
  2507. content: "\F050";
  2508. }
  2509. .mdi-arrow-left-bold-hexagon-outline:before {
  2510. content: "\F051";
  2511. }
  2512. .mdi-arrow-left-drop-circle:before {
  2513. content: "\F052";
  2514. }
  2515. .mdi-arrow-left-drop-circle-outline:before {
  2516. content: "\F053";
  2517. }
  2518. .mdi-arrow-right:before {
  2519. content: "\F054";
  2520. }
  2521. .mdi-arrow-right-bold:before {
  2522. content: "\F055";
  2523. }
  2524. .mdi-arrow-right-bold-circle:before {
  2525. content: "\F056";
  2526. }
  2527. .mdi-arrow-right-bold-circle-outline:before {
  2528. content: "\F057";
  2529. }
  2530. .mdi-arrow-right-bold-hexagon-outline:before {
  2531. content: "\F058";
  2532. }
  2533. .mdi-arrow-right-drop-circle:before {
  2534. content: "\F059";
  2535. }
  2536. .mdi-arrow-right-drop-circle-outline:before {
  2537. content: "\F05A";
  2538. }
  2539. .mdi-arrow-top-left:before {
  2540. content: "\F05B";
  2541. }
  2542. .mdi-arrow-top-right:before {
  2543. content: "\F05C";
  2544. }
  2545. .mdi-arrow-up:before {
  2546. content: "\F05D";
  2547. }
  2548. .mdi-arrow-up-bold:before {
  2549. content: "\F05E";
  2550. }
  2551. .mdi-arrow-up-bold-circle:before {
  2552. content: "\F05F";
  2553. }
  2554. .mdi-arrow-up-bold-circle-outline:before {
  2555. content: "\F060";
  2556. }
  2557. .mdi-arrow-up-bold-hexagon-outline:before {
  2558. content: "\F061";
  2559. }
  2560. .mdi-arrow-up-drop-circle:before {
  2561. content: "\F062";
  2562. }
  2563. .mdi-arrow-up-drop-circle-outline:before {
  2564. content: "\F063";
  2565. }
  2566. .mdi-assistant:before {
  2567. content: "\F064";
  2568. }
  2569. .mdi-at:before {
  2570. content: "\F065";
  2571. }
  2572. .mdi-attachment:before {
  2573. content: "\F066";
  2574. }
  2575. .mdi-audiobook:before {
  2576. content: "\F067";
  2577. }
  2578. .mdi-auto-fix:before {
  2579. content: "\F068";
  2580. }
  2581. .mdi-auto-upload:before {
  2582. content: "\F069";
  2583. }
  2584. .mdi-autorenew:before {
  2585. content: "\F06A";
  2586. }
  2587. .mdi-av-timer:before {
  2588. content: "\F06B";
  2589. }
  2590. .mdi-baby:before {
  2591. content: "\F06C";
  2592. }
  2593. .mdi-backburger:before {
  2594. content: "\F06D";
  2595. }
  2596. .mdi-backspace:before {
  2597. content: "\F06E";
  2598. }
  2599. .mdi-backup-restore:before {
  2600. content: "\F06F";
  2601. }
  2602. .mdi-bank:before {
  2603. content: "\F070";
  2604. }
  2605. .mdi-barcode:before {
  2606. content: "\F071";
  2607. }
  2608. .mdi-barcode-scan:before {
  2609. content: "\F072";
  2610. }
  2611. .mdi-barley:before {
  2612. content: "\F073";
  2613. }
  2614. .mdi-barrel:before {
  2615. content: "\F074";
  2616. }
  2617. .mdi-basecamp:before {
  2618. content: "\F075";
  2619. }
  2620. .mdi-basket:before {
  2621. content: "\F076";
  2622. }
  2623. .mdi-basket-fill:before {
  2624. content: "\F077";
  2625. }
  2626. .mdi-basket-unfill:before {
  2627. content: "\F078";
  2628. }
  2629. .mdi-battery:before {
  2630. content: "\F079";
  2631. }
  2632. .mdi-battery-10:before {
  2633. content: "\F07A";
  2634. }
  2635. .mdi-battery-20:before {
  2636. content: "\F07B";
  2637. }
  2638. .mdi-battery-30:before {
  2639. content: "\F07C";
  2640. }
  2641. .mdi-battery-40:before {
  2642. content: "\F07D";
  2643. }
  2644. .mdi-battery-50:before {
  2645. content: "\F07E";
  2646. }
  2647. .mdi-battery-60:before {
  2648. content: "\F07F";
  2649. }
  2650. .mdi-battery-70:before {
  2651. content: "\F080";
  2652. }
  2653. .mdi-battery-80:before {
  2654. content: "\F081";
  2655. }
  2656. .mdi-battery-90:before {
  2657. content: "\F082";
  2658. }
  2659. .mdi-battery-alert:before {
  2660. content: "\F083";
  2661. }
  2662. .mdi-battery-charging:before {
  2663. content: "\F084";
  2664. }
  2665. .mdi-battery-charging-100:before {
  2666. content: "\F085";
  2667. }
  2668. .mdi-battery-charging-20:before {
  2669. content: "\F086";
  2670. }
  2671. .mdi-battery-charging-30:before {
  2672. content: "\F087";
  2673. }
  2674. .mdi-battery-charging-40:before {
  2675. content: "\F088";
  2676. }
  2677. .mdi-battery-charging-60:before {
  2678. content: "\F089";
  2679. }
  2680. .mdi-battery-charging-80:before {
  2681. content: "\F08A";
  2682. }
  2683. .mdi-battery-charging-90:before {
  2684. content: "\F08B";
  2685. }
  2686. .mdi-battery-minus:before {
  2687. content: "\F08C";
  2688. }
  2689. .mdi-battery-negative:before {
  2690. content: "\F08D";
  2691. }
  2692. .mdi-battery-outline:before {
  2693. content: "\F08E";
  2694. }
  2695. .mdi-battery-plus:before {
  2696. content: "\F08F";
  2697. }
  2698. .mdi-battery-positive:before {
  2699. content: "\F090";
  2700. }
  2701. .mdi-battery-unknown:before {
  2702. content: "\F091";
  2703. }
  2704. .mdi-beach:before {
  2705. content: "\F092";
  2706. }
  2707. .mdi-beats:before {
  2708. content: "\F097";
  2709. }
  2710. .mdi-beer:before {
  2711. content: "\F098";
  2712. }
  2713. .mdi-behance:before {
  2714. content: "\F099";
  2715. }
  2716. .mdi-bell:before {
  2717. content: "\F09A";
  2718. }
  2719. .mdi-bell-off:before {
  2720. content: "\F09B";
  2721. }
  2722. .mdi-bell-outline:before {
  2723. content: "\F09C";
  2724. }
  2725. .mdi-bell-plus:before {
  2726. content: "\F09D";
  2727. }
  2728. .mdi-bell-ring:before {
  2729. content: "\F09E";
  2730. }
  2731. .mdi-bell-ring-outline:before {
  2732. content: "\F09F";
  2733. }
  2734. .mdi-bell-sleep:before {
  2735. content: "\F0A0";
  2736. }
  2737. .mdi-beta:before {
  2738. content: "\F0A1";
  2739. }
  2740. .mdi-bible:before {
  2741. content: "\F0A2";
  2742. }
  2743. .mdi-bike:before {
  2744. content: "\F0A3";
  2745. }
  2746. .mdi-bing:before {
  2747. content: "\F0A4";
  2748. }
  2749. .mdi-binoculars:before {
  2750. content: "\F0A5";
  2751. }
  2752. .mdi-bio:before {
  2753. content: "\F0A6";
  2754. }
  2755. .mdi-biohazard:before {
  2756. content: "\F0A7";
  2757. }
  2758. .mdi-bitbucket:before {
  2759. content: "\F0A8";
  2760. }
  2761. .mdi-black-mesa:before {
  2762. content: "\F0A9";
  2763. }
  2764. .mdi-blackberry:before {
  2765. content: "\F0AA";
  2766. }
  2767. .mdi-blender:before {
  2768. content: "\F0AB";
  2769. }
  2770. .mdi-blinds:before {
  2771. content: "\F0AC";
  2772. }
  2773. .mdi-block-helper:before {
  2774. content: "\F0AD";
  2775. }
  2776. .mdi-blogger:before {
  2777. content: "\F0AE";
  2778. }
  2779. .mdi-bluetooth:before {
  2780. content: "\F0AF";
  2781. }
  2782. .mdi-bluetooth-audio:before {
  2783. content: "\F0B0";
  2784. }
  2785. .mdi-bluetooth-connect:before {
  2786. content: "\F0B1";
  2787. }
  2788. .mdi-bluetooth-off:before {
  2789. content: "\F0B2";
  2790. }
  2791. .mdi-bluetooth-settings:before {
  2792. content: "\F0B3";
  2793. }
  2794. .mdi-bluetooth-transfer:before {
  2795. content: "\F0B4";
  2796. }
  2797. .mdi-blur:before {
  2798. content: "\F0B5";
  2799. }
  2800. .mdi-blur-linear:before {
  2801. content: "\F0B6";
  2802. }
  2803. .mdi-blur-off:before {
  2804. content: "\F0B7";
  2805. }
  2806. .mdi-blur-radial:before {
  2807. content: "\F0B8";
  2808. }
  2809. .mdi-bone:before {
  2810. content: "\F0B9";
  2811. }
  2812. .mdi-book:before {
  2813. content: "\F0BA";
  2814. }
  2815. .mdi-book-minus:before {
  2816. content: "\F5D9";
  2817. }
  2818. .mdi-book-multiple:before {
  2819. content: "\F0BB";
  2820. }
  2821. .mdi-book-multiple-variant:before {
  2822. content: "\F0BC";
  2823. }
  2824. .mdi-book-open:before {
  2825. content: "\F0BD";
  2826. }
  2827. .mdi-book-open-page-variant:before {
  2828. content: "\F5DA";
  2829. }
  2830. .mdi-book-open-variant:before {
  2831. content: "\F0BE";
  2832. }
  2833. .mdi-book-plus:before {
  2834. content: "\F5DB";
  2835. }
  2836. .mdi-book-variant:before {
  2837. content: "\F0BF";
  2838. }
  2839. .mdi-bookmark:before {
  2840. content: "\F0C0";
  2841. }
  2842. .mdi-bookmark-check:before {
  2843. content: "\F0C1";
  2844. }
  2845. .mdi-bookmark-music:before {
  2846. content: "\F0C2";
  2847. }
  2848. .mdi-bookmark-outline:before {
  2849. content: "\F0C3";
  2850. }
  2851. .mdi-bookmark-plus:before {
  2852. content: "\F0C5";
  2853. }
  2854. .mdi-bookmark-plus-outline:before {
  2855. content: "\F0C4";
  2856. }
  2857. .mdi-bookmark-remove:before {
  2858. content: "\F0C6";
  2859. }
  2860. .mdi-boombox:before {
  2861. content: "\F5DC";
  2862. }
  2863. .mdi-border-all:before {
  2864. content: "\F0C7";
  2865. }
  2866. .mdi-border-bottom:before {
  2867. content: "\F0C8";
  2868. }
  2869. .mdi-border-color:before {
  2870. content: "\F0C9";
  2871. }
  2872. .mdi-border-horizontal:before {
  2873. content: "\F0CA";
  2874. }
  2875. .mdi-border-inside:before {
  2876. content: "\F0CB";
  2877. }
  2878. .mdi-border-left:before {
  2879. content: "\F0CC";
  2880. }
  2881. .mdi-border-none:before {
  2882. content: "\F0CD";
  2883. }
  2884. .mdi-border-outside:before {
  2885. content: "\F0CE";
  2886. }
  2887. .mdi-border-right:before {
  2888. content: "\F0CF";
  2889. }
  2890. .mdi-border-style:before {
  2891. content: "\F0D0";
  2892. }
  2893. .mdi-border-top:before {
  2894. content: "\F0D1";
  2895. }
  2896. .mdi-border-vertical:before {
  2897. content: "\F0D2";
  2898. }
  2899. .mdi-bowl:before {
  2900. content: "\F617";
  2901. }
  2902. .mdi-bowling:before {
  2903. content: "\F0D3";
  2904. }
  2905. .mdi-box:before {
  2906. content: "\F0D4";
  2907. }
  2908. .mdi-box-cutter:before {
  2909. content: "\F0D5";
  2910. }
  2911. .mdi-box-shadow:before {
  2912. content: "\F637";
  2913. }
  2914. .mdi-bridge:before {
  2915. content: "\F618";
  2916. }
  2917. .mdi-briefcase:before {
  2918. content: "\F0D6";
  2919. }
  2920. .mdi-briefcase-check:before {
  2921. content: "\F0D7";
  2922. }
  2923. .mdi-briefcase-download:before {
  2924. content: "\F0D8";
  2925. }
  2926. .mdi-briefcase-upload:before {
  2927. content: "\F0D9";
  2928. }
  2929. .mdi-brightness-1:before {
  2930. content: "\F0DA";
  2931. }
  2932. .mdi-brightness-2:before {
  2933. content: "\F0DB";
  2934. }
  2935. .mdi-brightness-3:before {
  2936. content: "\F0DC";
  2937. }
  2938. .mdi-brightness-4:before {
  2939. content: "\F0DD";
  2940. }
  2941. .mdi-brightness-5:before {
  2942. content: "\F0DE";
  2943. }
  2944. .mdi-brightness-6:before {
  2945. content: "\F0DF";
  2946. }
  2947. .mdi-brightness-7:before {
  2948. content: "\F0E0";
  2949. }
  2950. .mdi-brightness-auto:before {
  2951. content: "\F0E1";
  2952. }
  2953. .mdi-broom:before {
  2954. content: "\F0E2";
  2955. }
  2956. .mdi-brush:before {
  2957. content: "\F0E3";
  2958. }
  2959. .mdi-buffer:before {
  2960. content: "\F619";
  2961. }
  2962. .mdi-bug:before {
  2963. content: "\F0E4";
  2964. }
  2965. .mdi-bulletin-board:before {
  2966. content: "\F0E5";
  2967. }
  2968. .mdi-bullhorn:before {
  2969. content: "\F0E6";
  2970. }
  2971. .mdi-bullseye:before {
  2972. content: "\F5DD";
  2973. }
  2974. .mdi-burst-mode:before {
  2975. content: "\F5DE";
  2976. }
  2977. .mdi-bus:before {
  2978. content: "\F0E7";
  2979. }
  2980. .mdi-cached:before {
  2981. content: "\F0E8";
  2982. }
  2983. .mdi-cake:before {
  2984. content: "\F0E9";
  2985. }
  2986. .mdi-cake-layered:before {
  2987. content: "\F0EA";
  2988. }
  2989. .mdi-cake-variant:before {
  2990. content: "\F0EB";
  2991. }
  2992. .mdi-calculator:before {
  2993. content: "\F0EC";
  2994. }
  2995. .mdi-calendar:before {
  2996. content: "\F0ED";
  2997. }
  2998. .mdi-calendar-blank:before {
  2999. content: "\F0EE";
  3000. }
  3001. .mdi-calendar-check:before {
  3002. content: "\F0EF";
  3003. }
  3004. .mdi-calendar-clock:before {
  3005. content: "\F0F0";
  3006. }
  3007. .mdi-calendar-multiple:before {
  3008. content: "\F0F1";
  3009. }
  3010. .mdi-calendar-multiple-check:before {
  3011. content: "\F0F2";
  3012. }
  3013. .mdi-calendar-plus:before {
  3014. content: "\F0F3";
  3015. }
  3016. .mdi-calendar-remove:before {
  3017. content: "\F0F4";
  3018. }
  3019. .mdi-calendar-text:before {
  3020. content: "\F0F5";
  3021. }
  3022. .mdi-calendar-today:before {
  3023. content: "\F0F6";
  3024. }
  3025. .mdi-call-made:before {
  3026. content: "\F0F7";
  3027. }
  3028. .mdi-call-merge:before {
  3029. content: "\F0F8";
  3030. }
  3031. .mdi-call-missed:before {
  3032. content: "\F0F9";
  3033. }
  3034. .mdi-call-received:before {
  3035. content: "\F0FA";
  3036. }
  3037. .mdi-call-split:before {
  3038. content: "\F0FB";
  3039. }
  3040. .mdi-camcorder:before {
  3041. content: "\F0FC";
  3042. }
  3043. .mdi-camcorder-box:before {
  3044. content: "\F0FD";
  3045. }
  3046. .mdi-camcorder-box-off:before {
  3047. content: "\F0FE";
  3048. }
  3049. .mdi-camcorder-off:before {
  3050. content: "\F0FF";
  3051. }
  3052. .mdi-camera:before {
  3053. content: "\F100";
  3054. }
  3055. .mdi-camera-enhance:before {
  3056. content: "\F101";
  3057. }
  3058. .mdi-camera-front:before {
  3059. content: "\F102";
  3060. }
  3061. .mdi-camera-front-variant:before {
  3062. content: "\F103";
  3063. }
  3064. .mdi-camera-iris:before {
  3065. content: "\F104";
  3066. }
  3067. .mdi-camera-off:before {
  3068. content: "\F5DF";
  3069. }
  3070. .mdi-camera-party-mode:before {
  3071. content: "\F105";
  3072. }
  3073. .mdi-camera-rear:before {
  3074. content: "\F106";
  3075. }
  3076. .mdi-camera-rear-variant:before {
  3077. content: "\F107";
  3078. }
  3079. .mdi-camera-switch:before {
  3080. content: "\F108";
  3081. }
  3082. .mdi-camera-timer:before {
  3083. content: "\F109";
  3084. }
  3085. .mdi-candle:before {
  3086. content: "\F5E2";
  3087. }
  3088. .mdi-candycane:before {
  3089. content: "\F10A";
  3090. }
  3091. .mdi-car:before {
  3092. content: "\F10B";
  3093. }
  3094. .mdi-car-battery:before {
  3095. content: "\F10C";
  3096. }
  3097. .mdi-car-connected:before {
  3098. content: "\F10D";
  3099. }
  3100. .mdi-car-wash:before {
  3101. content: "\F10E";
  3102. }
  3103. .mdi-cards:before {
  3104. content: "\F638";
  3105. }
  3106. .mdi-cards-outline:before {
  3107. content: "\F639";
  3108. }
  3109. .mdi-cards-playing-outline:before {
  3110. content: "\F63A";
  3111. }
  3112. .mdi-carrot:before {
  3113. content: "\F10F";
  3114. }
  3115. .mdi-cart:before {
  3116. content: "\F110";
  3117. }
  3118. .mdi-cart-off:before {
  3119. content: "\F66B";
  3120. }
  3121. .mdi-cart-outline:before {
  3122. content: "\F111";
  3123. }
  3124. .mdi-cart-plus:before {
  3125. content: "\F112";
  3126. }
  3127. .mdi-case-sensitive-alt:before {
  3128. content: "\F113";
  3129. }
  3130. .mdi-cash:before {
  3131. content: "\F114";
  3132. }
  3133. .mdi-cash-100:before {
  3134. content: "\F115";
  3135. }
  3136. .mdi-cash-multiple:before {
  3137. content: "\F116";
  3138. }
  3139. .mdi-cash-usd:before {
  3140. content: "\F117";
  3141. }
  3142. .mdi-cast:before {
  3143. content: "\F118";
  3144. }
  3145. .mdi-cast-connected:before {
  3146. content: "\F119";
  3147. }
  3148. .mdi-castle:before {
  3149. content: "\F11A";
  3150. }
  3151. .mdi-cat:before {
  3152. content: "\F11B";
  3153. }
  3154. .mdi-cellphone:before {
  3155. content: "\F11C";
  3156. }
  3157. .mdi-cellphone-android:before {
  3158. content: "\F11D";
  3159. }
  3160. .mdi-cellphone-basic:before {
  3161. content: "\F11E";
  3162. }
  3163. .mdi-cellphone-dock:before {
  3164. content: "\F11F";
  3165. }
  3166. .mdi-cellphone-iphone:before {
  3167. content: "\F120";
  3168. }
  3169. .mdi-cellphone-link:before {
  3170. content: "\F121";
  3171. }
  3172. .mdi-cellphone-link-off:before {
  3173. content: "\F122";
  3174. }
  3175. .mdi-cellphone-settings:before {
  3176. content: "\F123";
  3177. }
  3178. .mdi-certificate:before {
  3179. content: "\F124";
  3180. }
  3181. .mdi-chair-school:before {
  3182. content: "\F125";
  3183. }
  3184. .mdi-chart-arc:before {
  3185. content: "\F126";
  3186. }
  3187. .mdi-chart-areaspline:before {
  3188. content: "\F127";
  3189. }
  3190. .mdi-chart-bar:before {
  3191. content: "\F128";
  3192. }
  3193. .mdi-chart-bubble:before {
  3194. content: "\F5E3";
  3195. }
  3196. .mdi-chart-gantt:before {
  3197. content: "\F66C";
  3198. }
  3199. .mdi-chart-histogram:before {
  3200. content: "\F129";
  3201. }
  3202. .mdi-chart-line:before {
  3203. content: "\F12A";
  3204. }
  3205. .mdi-chart-pie:before {
  3206. content: "\F12B";
  3207. }
  3208. .mdi-chart-scatterplot-hexbin:before {
  3209. content: "\F66D";
  3210. }
  3211. .mdi-chart-timeline:before {
  3212. content: "\F66E";
  3213. }
  3214. .mdi-check:before {
  3215. content: "\F12C";
  3216. }
  3217. .mdi-check-all:before {
  3218. content: "\F12D";
  3219. }
  3220. .mdi-check-circle:before {
  3221. content: "\F5E0";
  3222. }
  3223. .mdi-check-circle-outline:before {
  3224. content: "\F5E1";
  3225. }
  3226. .mdi-checkbox-blank:before {
  3227. content: "\F12E";
  3228. }
  3229. .mdi-checkbox-blank-circle:before {
  3230. content: "\F12F";
  3231. }
  3232. .mdi-checkbox-blank-circle-outline:before {
  3233. content: "\F130";
  3234. }
  3235. .mdi-checkbox-blank-outline:before {
  3236. content: "\F131";
  3237. }
  3238. .mdi-checkbox-marked:before {
  3239. content: "\F132";
  3240. }
  3241. .mdi-checkbox-marked-circle:before {
  3242. content: "\F133";
  3243. }
  3244. .mdi-checkbox-marked-circle-outline:before {
  3245. content: "\F134";
  3246. }
  3247. .mdi-checkbox-marked-outline:before {
  3248. content: "\F135";
  3249. }
  3250. .mdi-checkbox-multiple-blank:before {
  3251. content: "\F136";
  3252. }
  3253. .mdi-checkbox-multiple-blank-circle:before {
  3254. content: "\F63B";
  3255. }
  3256. .mdi-checkbox-multiple-blank-circle-outline:before {
  3257. content: "\F63C";
  3258. }
  3259. .mdi-checkbox-multiple-blank-outline:before {
  3260. content: "\F137";
  3261. }
  3262. .mdi-checkbox-multiple-marked:before {
  3263. content: "\F138";
  3264. }
  3265. .mdi-checkbox-multiple-marked-circle:before {
  3266. content: "\F63D";
  3267. }
  3268. .mdi-checkbox-multiple-marked-circle-outline:before {
  3269. content: "\F63E";
  3270. }
  3271. .mdi-checkbox-multiple-marked-outline:before {
  3272. content: "\F139";
  3273. }
  3274. .mdi-checkerboard:before {
  3275. content: "\F13A";
  3276. }
  3277. .mdi-chemical-weapon:before {
  3278. content: "\F13B";
  3279. }
  3280. .mdi-chevron-double-down:before {
  3281. content: "\F13C";
  3282. }
  3283. .mdi-chevron-double-left:before {
  3284. content: "\F13D";
  3285. }
  3286. .mdi-chevron-double-right:before {
  3287. content: "\F13E";
  3288. }
  3289. .mdi-chevron-double-up:before {
  3290. content: "\F13F";
  3291. }
  3292. .mdi-chevron-down:before {
  3293. content: "\F140";
  3294. }
  3295. .mdi-chevron-left:before {
  3296. content: "\F141";
  3297. }
  3298. .mdi-chevron-right:before {
  3299. content: "\F142";
  3300. }
  3301. .mdi-chevron-up:before {
  3302. content: "\F143";
  3303. }
  3304. .mdi-chip:before {
  3305. content: "\F61A";
  3306. }
  3307. .mdi-church:before {
  3308. content: "\F144";
  3309. }
  3310. .mdi-cisco-webex:before {
  3311. content: "\F145";
  3312. }
  3313. .mdi-city:before {
  3314. content: "\F146";
  3315. }
  3316. .mdi-clipboard:before {
  3317. content: "\F147";
  3318. }
  3319. .mdi-clipboard-account:before {
  3320. content: "\F148";
  3321. }
  3322. .mdi-clipboard-alert:before {
  3323. content: "\F149";
  3324. }
  3325. .mdi-clipboard-arrow-down:before {
  3326. content: "\F14A";
  3327. }
  3328. .mdi-clipboard-arrow-left:before {
  3329. content: "\F14B";
  3330. }
  3331. .mdi-clipboard-check:before {
  3332. content: "\F14C";
  3333. }
  3334. .mdi-clipboard-outline:before {
  3335. content: "\F14D";
  3336. }
  3337. .mdi-clipboard-text:before {
  3338. content: "\F14E";
  3339. }
  3340. .mdi-clippy:before {
  3341. content: "\F14F";
  3342. }
  3343. .mdi-clock:before {
  3344. content: "\F150";
  3345. }
  3346. .mdi-clock-alert:before {
  3347. content: "\F5CE";
  3348. }
  3349. .mdi-clock-end:before {
  3350. content: "\F151";
  3351. }
  3352. .mdi-clock-fast:before {
  3353. content: "\F152";
  3354. }
  3355. .mdi-clock-in:before {
  3356. content: "\F153";
  3357. }
  3358. .mdi-clock-out:before {
  3359. content: "\F154";
  3360. }
  3361. .mdi-clock-start:before {
  3362. content: "\F155";
  3363. }
  3364. .mdi-close:before {
  3365. content: "\F156";
  3366. }
  3367. .mdi-close-box:before {
  3368. content: "\F157";
  3369. }
  3370. .mdi-close-box-outline:before {
  3371. content: "\F158";
  3372. }
  3373. .mdi-close-circle:before {
  3374. content: "\F159";
  3375. }
  3376. .mdi-close-circle-outline:before {
  3377. content: "\F15A";
  3378. }
  3379. .mdi-close-network:before {
  3380. content: "\F15B";
  3381. }
  3382. .mdi-close-octagon:before {
  3383. content: "\F15C";
  3384. }
  3385. .mdi-close-octagon-outline:before {
  3386. content: "\F15D";
  3387. }
  3388. .mdi-closed-caption:before {
  3389. content: "\F15E";
  3390. }
  3391. .mdi-cloud:before {
  3392. content: "\F15F";
  3393. }
  3394. .mdi-cloud-check:before {
  3395. content: "\F160";
  3396. }
  3397. .mdi-cloud-circle:before {
  3398. content: "\F161";
  3399. }
  3400. .mdi-cloud-download:before {
  3401. content: "\F162";
  3402. }
  3403. .mdi-cloud-outline:before {
  3404. content: "\F163";
  3405. }
  3406. .mdi-cloud-outline-off:before {
  3407. content: "\F164";
  3408. }
  3409. .mdi-cloud-print:before {
  3410. content: "\F165";
  3411. }
  3412. .mdi-cloud-print-outline:before {
  3413. content: "\F166";
  3414. }
  3415. .mdi-cloud-sync:before {
  3416. content: "\F63F";
  3417. }
  3418. .mdi-cloud-upload:before {
  3419. content: "\F167";
  3420. }
  3421. .mdi-code-array:before {
  3422. content: "\F168";
  3423. }
  3424. .mdi-code-braces:before {
  3425. content: "\F169";
  3426. }
  3427. .mdi-code-brackets:before {
  3428. content: "\F16A";
  3429. }
  3430. .mdi-code-equal:before {
  3431. content: "\F16B";
  3432. }
  3433. .mdi-code-greater-than:before {
  3434. content: "\F16C";
  3435. }
  3436. .mdi-code-greater-than-or-equal:before {
  3437. content: "\F16D";
  3438. }
  3439. .mdi-code-less-than:before {
  3440. content: "\F16E";
  3441. }
  3442. .mdi-code-less-than-or-equal:before {
  3443. content: "\F16F";
  3444. }
  3445. .mdi-code-not-equal:before {
  3446. content: "\F170";
  3447. }
  3448. .mdi-code-not-equal-variant:before {
  3449. content: "\F171";
  3450. }
  3451. .mdi-code-parentheses:before {
  3452. content: "\F172";
  3453. }
  3454. .mdi-code-string:before {
  3455. content: "\F173";
  3456. }
  3457. .mdi-code-tags:before {
  3458. content: "\F174";
  3459. }
  3460. .mdi-codepen:before {
  3461. content: "\F175";
  3462. }
  3463. .mdi-coffee:before {
  3464. content: "\F176";
  3465. }
  3466. .mdi-coffee-to-go:before {
  3467. content: "\F177";
  3468. }
  3469. .mdi-coin:before {
  3470. content: "\F178";
  3471. }
  3472. .mdi-collage:before {
  3473. content: "\F640";
  3474. }
  3475. .mdi-color-helper:before {
  3476. content: "\F179";
  3477. }
  3478. .mdi-comment:before {
  3479. content: "\F17A";
  3480. }
  3481. .mdi-comment-account:before {
  3482. content: "\F17B";
  3483. }
  3484. .mdi-comment-account-outline:before {
  3485. content: "\F17C";
  3486. }
  3487. .mdi-comment-alert:before {
  3488. content: "\F17D";
  3489. }
  3490. .mdi-comment-alert-outline:before {
  3491. content: "\F17E";
  3492. }
  3493. .mdi-comment-check:before {
  3494. content: "\F17F";
  3495. }
  3496. .mdi-comment-check-outline:before {
  3497. content: "\F180";
  3498. }
  3499. .mdi-comment-multiple-outline:before {
  3500. content: "\F181";
  3501. }
  3502. .mdi-comment-outline:before {
  3503. content: "\F182";
  3504. }
  3505. .mdi-comment-plus-outline:before {
  3506. content: "\F183";
  3507. }
  3508. .mdi-comment-processing:before {
  3509. content: "\F184";
  3510. }
  3511. .mdi-comment-processing-outline:before {
  3512. content: "\F185";
  3513. }
  3514. .mdi-comment-question-outline:before {
  3515. content: "\F186";
  3516. }
  3517. .mdi-comment-remove-outline:before {
  3518. content: "\F187";
  3519. }
  3520. .mdi-comment-text:before {
  3521. content: "\F188";
  3522. }
  3523. .mdi-comment-text-outline:before {
  3524. content: "\F189";
  3525. }
  3526. .mdi-compare:before {
  3527. content: "\F18A";
  3528. }
  3529. .mdi-compass:before {
  3530. content: "\F18B";
  3531. }
  3532. .mdi-compass-outline:before {
  3533. content: "\F18C";
  3534. }
  3535. .mdi-console:before {
  3536. content: "\F18D";
  3537. }
  3538. .mdi-contact-mail:before {
  3539. content: "\F18E";
  3540. }
  3541. .mdi-content-copy:before {
  3542. content: "\F18F";
  3543. }
  3544. .mdi-content-cut:before {
  3545. content: "\F190";
  3546. }
  3547. .mdi-content-duplicate:before {
  3548. content: "\F191";
  3549. }
  3550. .mdi-content-paste:before {
  3551. content: "\F192";
  3552. }
  3553. .mdi-content-save:before {
  3554. content: "\F193";
  3555. }
  3556. .mdi-content-save-all:before {
  3557. content: "\F194";
  3558. }
  3559. .mdi-content-save-settings:before {
  3560. content: "\F61B";
  3561. }
  3562. .mdi-contrast:before {
  3563. content: "\F195";
  3564. }
  3565. .mdi-contrast-box:before {
  3566. content: "\F196";
  3567. }
  3568. .mdi-contrast-circle:before {
  3569. content: "\F197";
  3570. }
  3571. .mdi-cookie:before {
  3572. content: "\F198";
  3573. }
  3574. .mdi-copyright:before {
  3575. content: "\F5E6";
  3576. }
  3577. .mdi-counter:before {
  3578. content: "\F199";
  3579. }
  3580. .mdi-cow:before {
  3581. content: "\F19A";
  3582. }
  3583. .mdi-credit-card:before {
  3584. content: "\F19B";
  3585. }
  3586. .mdi-credit-card-multiple:before {
  3587. content: "\F19C";
  3588. }
  3589. .mdi-credit-card-off:before {
  3590. content: "\F5E4";
  3591. }
  3592. .mdi-credit-card-scan:before {
  3593. content: "\F19D";
  3594. }
  3595. .mdi-crop:before {
  3596. content: "\F19E";
  3597. }
  3598. .mdi-crop-free:before {
  3599. content: "\F19F";
  3600. }
  3601. .mdi-crop-landscape:before {
  3602. content: "\F1A0";
  3603. }
  3604. .mdi-crop-portrait:before {
  3605. content: "\F1A1";
  3606. }
  3607. .mdi-crop-square:before {
  3608. content: "\F1A2";
  3609. }
  3610. .mdi-crosshairs:before {
  3611. content: "\F1A3";
  3612. }
  3613. .mdi-crosshairs-gps:before {
  3614. content: "\F1A4";
  3615. }
  3616. .mdi-crown:before {
  3617. content: "\F1A5";
  3618. }
  3619. .mdi-cube:before {
  3620. content: "\F1A6";
  3621. }
  3622. .mdi-cube-outline:before {
  3623. content: "\F1A7";
  3624. }
  3625. .mdi-cube-send:before {
  3626. content: "\F1A8";
  3627. }
  3628. .mdi-cube-unfolded:before {
  3629. content: "\F1A9";
  3630. }
  3631. .mdi-cup:before {
  3632. content: "\F1AA";
  3633. }
  3634. .mdi-cup-off:before {
  3635. content: "\F5E5";
  3636. }
  3637. .mdi-cup-water:before {
  3638. content: "\F1AB";
  3639. }
  3640. .mdi-currency-btc:before {
  3641. content: "\F1AC";
  3642. }
  3643. .mdi-currency-eur:before {
  3644. content: "\F1AD";
  3645. }
  3646. .mdi-currency-gbp:before {
  3647. content: "\F1AE";
  3648. }
  3649. .mdi-currency-inr:before {
  3650. content: "\F1AF";
  3651. }
  3652. .mdi-currency-ngn:before {
  3653. content: "\F1B0";
  3654. }
  3655. .mdi-currency-rub:before {
  3656. content: "\F1B1";
  3657. }
  3658. .mdi-currency-try:before {
  3659. content: "\F1B2";
  3660. }
  3661. .mdi-currency-usd:before {
  3662. content: "\F1B3";
  3663. }
  3664. .mdi-cursor-default:before {
  3665. content: "\F1B4";
  3666. }
  3667. .mdi-cursor-default-outline:before {
  3668. content: "\F1B5";
  3669. }
  3670. .mdi-cursor-move:before {
  3671. content: "\F1B6";
  3672. }
  3673. .mdi-cursor-pointer:before {
  3674. content: "\F1B7";
  3675. }
  3676. .mdi-cursor-text:before {
  3677. content: "\F5E7";
  3678. }
  3679. .mdi-database:before {
  3680. content: "\F1B8";
  3681. }
  3682. .mdi-database-minus:before {
  3683. content: "\F1B9";
  3684. }
  3685. .mdi-database-plus:before {
  3686. content: "\F1BA";
  3687. }
  3688. .mdi-debug-step-into:before {
  3689. content: "\F1BB";
  3690. }
  3691. .mdi-debug-step-out:before {
  3692. content: "\F1BC";
  3693. }
  3694. .mdi-debug-step-over:before {
  3695. content: "\F1BD";
  3696. }
  3697. .mdi-decimal-decrease:before {
  3698. content: "\F1BE";
  3699. }
  3700. .mdi-decimal-increase:before {
  3701. content: "\F1BF";
  3702. }
  3703. .mdi-delete:before {
  3704. content: "\F1C0";
  3705. }
  3706. .mdi-delete-forever:before {
  3707. content: "\F5E8";
  3708. }
  3709. .mdi-delete-sweep:before {
  3710. content: "\F5E9";
  3711. }
  3712. .mdi-delete-variant:before {
  3713. content: "\F1C1";
  3714. }
  3715. .mdi-delta:before {
  3716. content: "\F1C2";
  3717. }
  3718. .mdi-deskphone:before {
  3719. content: "\F1C3";
  3720. }
  3721. .mdi-desktop-mac:before {
  3722. content: "\F1C4";
  3723. }
  3724. .mdi-desktop-tower:before {
  3725. content: "\F1C5";
  3726. }
  3727. .mdi-details:before {
  3728. content: "\F1C6";
  3729. }
  3730. .mdi-deviantart:before {
  3731. content: "\F1C7";
  3732. }
  3733. .mdi-dialpad:before {
  3734. content: "\F61C";
  3735. }
  3736. .mdi-diamond:before {
  3737. content: "\F1C8";
  3738. }
  3739. .mdi-dice-1:before {
  3740. content: "\F1CA";
  3741. }
  3742. .mdi-dice-2:before {
  3743. content: "\F1CB";
  3744. }
  3745. .mdi-dice-3:before {
  3746. content: "\F1CC";
  3747. }
  3748. .mdi-dice-4:before {
  3749. content: "\F1CD";
  3750. }
  3751. .mdi-dice-5:before {
  3752. content: "\F1CE";
  3753. }
  3754. .mdi-dice-6:before {
  3755. content: "\F1CF";
  3756. }
  3757. .mdi-dice-d20:before {
  3758. content: "\F5EA";
  3759. }
  3760. .mdi-dice-d4:before {
  3761. content: "\F5EB";
  3762. }
  3763. .mdi-dice-d6:before {
  3764. content: "\F5EC";
  3765. }
  3766. .mdi-dice-d8:before {
  3767. content: "\F5ED";
  3768. }
  3769. .mdi-dictionary:before {
  3770. content: "\F61D";
  3771. }
  3772. .mdi-directions:before {
  3773. content: "\F1D0";
  3774. }
  3775. .mdi-directions-fork:before {
  3776. content: "\F641";
  3777. }
  3778. .mdi-discord:before {
  3779. content: "\F66F";
  3780. }
  3781. .mdi-disk:before {
  3782. content: "\F5EE";
  3783. }
  3784. .mdi-disk-alert:before {
  3785. content: "\F1D1";
  3786. }
  3787. .mdi-disqus:before {
  3788. content: "\F1D2";
  3789. }
  3790. .mdi-disqus-outline:before {
  3791. content: "\F1D3";
  3792. }
  3793. .mdi-division:before {
  3794. content: "\F1D4";
  3795. }
  3796. .mdi-division-box:before {
  3797. content: "\F1D5";
  3798. }
  3799. .mdi-dns:before {
  3800. content: "\F1D6";
  3801. }
  3802. .mdi-domain:before {
  3803. content: "\F1D7";
  3804. }
  3805. .mdi-dots-horizontal:before {
  3806. content: "\F1D8";
  3807. }
  3808. .mdi-dots-vertical:before {
  3809. content: "\F1D9";
  3810. }
  3811. .mdi-download:before {
  3812. content: "\F1DA";
  3813. }
  3814. .mdi-drag:before {
  3815. content: "\F1DB";
  3816. }
  3817. .mdi-drag-horizontal:before {
  3818. content: "\F1DC";
  3819. }
  3820. .mdi-drag-vertical:before {
  3821. content: "\F1DD";
  3822. }
  3823. .mdi-drawing:before {
  3824. content: "\F1DE";
  3825. }
  3826. .mdi-drawing-box:before {
  3827. content: "\F1DF";
  3828. }
  3829. .mdi-dribbble:before {
  3830. content: "\F1E0";
  3831. }
  3832. .mdi-dribbble-box:before {
  3833. content: "\F1E1";
  3834. }
  3835. .mdi-drone:before {
  3836. content: "\F1E2";
  3837. }
  3838. .mdi-dropbox:before {
  3839. content: "\F1E3";
  3840. }
  3841. .mdi-drupal:before {
  3842. content: "\F1E4";
  3843. }
  3844. .mdi-duck:before {
  3845. content: "\F1E5";
  3846. }
  3847. .mdi-dumbbell:before {
  3848. content: "\F1E6";
  3849. }
  3850. .mdi-earth:before {
  3851. content: "\F1E7";
  3852. }
  3853. .mdi-earth-off:before {
  3854. content: "\F1E8";
  3855. }
  3856. .mdi-edge:before {
  3857. content: "\F1E9";
  3858. }
  3859. .mdi-eject:before {
  3860. content: "\F1EA";
  3861. }
  3862. .mdi-elevation-decline:before {
  3863. content: "\F1EB";
  3864. }
  3865. .mdi-elevation-rise:before {
  3866. content: "\F1EC";
  3867. }
  3868. .mdi-elevator:before {
  3869. content: "\F1ED";
  3870. }
  3871. .mdi-email:before {
  3872. content: "\F1EE";
  3873. }
  3874. .mdi-email-open:before {
  3875. content: "\F1EF";
  3876. }
  3877. .mdi-email-open-outline:before {
  3878. content: "\F5EF";
  3879. }
  3880. .mdi-email-outline:before {
  3881. content: "\F1F0";
  3882. }
  3883. .mdi-email-secure:before {
  3884. content: "\F1F1";
  3885. }
  3886. .mdi-email-variant:before {
  3887. content: "\F5F0";
  3888. }
  3889. .mdi-emoticon:before {
  3890. content: "\F1F2";
  3891. }
  3892. .mdi-emoticon-cool:before {
  3893. content: "\F1F3";
  3894. }
  3895. .mdi-emoticon-devil:before {
  3896. content: "\F1F4";
  3897. }
  3898. .mdi-emoticon-happy:before {
  3899. content: "\F1F5";
  3900. }
  3901. .mdi-emoticon-neutral:before {
  3902. content: "\F1F6";
  3903. }
  3904. .mdi-emoticon-poop:before {
  3905. content: "\F1F7";
  3906. }
  3907. .mdi-emoticon-sad:before {
  3908. content: "\F1F8";
  3909. }
  3910. .mdi-emoticon-tongue:before {
  3911. content: "\F1F9";
  3912. }
  3913. .mdi-engine:before {
  3914. content: "\F1FA";
  3915. }
  3916. .mdi-engine-outline:before {
  3917. content: "\F1FB";
  3918. }
  3919. .mdi-equal:before {
  3920. content: "\F1FC";
  3921. }
  3922. .mdi-equal-box:before {
  3923. content: "\F1FD";
  3924. }
  3925. .mdi-eraser:before {
  3926. content: "\F1FE";
  3927. }
  3928. .mdi-eraser-variant:before {
  3929. content: "\F642";
  3930. }
  3931. .mdi-escalator:before {
  3932. content: "\F1FF";
  3933. }
  3934. .mdi-ethernet:before {
  3935. content: "\F200";
  3936. }
  3937. .mdi-ethernet-cable:before {
  3938. content: "\F201";
  3939. }
  3940. .mdi-ethernet-cable-off:before {
  3941. content: "\F202";
  3942. }
  3943. .mdi-etsy:before {
  3944. content: "\F203";
  3945. }
  3946. .mdi-ev-station:before {
  3947. content: "\F5F1";
  3948. }
  3949. .mdi-evernote:before {
  3950. content: "\F204";
  3951. }
  3952. .mdi-exclamation:before {
  3953. content: "\F205";
  3954. }
  3955. .mdi-exit-to-app:before {
  3956. content: "\F206";
  3957. }
  3958. .mdi-export:before {
  3959. content: "\F207";
  3960. }
  3961. .mdi-eye:before {
  3962. content: "\F208";
  3963. }
  3964. .mdi-eye-off:before {
  3965. content: "\F209";
  3966. }
  3967. .mdi-eyedropper:before {
  3968. content: "\F20A";
  3969. }
  3970. .mdi-eyedropper-variant:before {
  3971. content: "\F20B";
  3972. }
  3973. .mdi-face:before {
  3974. content: "\F643";
  3975. }
  3976. .mdi-face-profile:before {
  3977. content: "\F644";
  3978. }
  3979. .mdi-facebook:before {
  3980. content: "\F20C";
  3981. }
  3982. .mdi-facebook-box:before {
  3983. content: "\F20D";
  3984. }
  3985. .mdi-facebook-messenger:before {
  3986. content: "\F20E";
  3987. }
  3988. .mdi-factory:before {
  3989. content: "\F20F";
  3990. }
  3991. .mdi-fan:before {
  3992. content: "\F210";
  3993. }
  3994. .mdi-fast-forward:before {
  3995. content: "\F211";
  3996. }
  3997. .mdi-fax:before {
  3998. content: "\F212";
  3999. }
  4000. .mdi-ferry:before {
  4001. content: "\F213";
  4002. }
  4003. .mdi-file:before {
  4004. content: "\F214";
  4005. }
  4006. .mdi-file-chart:before {
  4007. content: "\F215";
  4008. }
  4009. .mdi-file-check:before {
  4010. content: "\F216";
  4011. }
  4012. .mdi-file-cloud:before {
  4013. content: "\F217";
  4014. }
  4015. .mdi-file-delimited:before {
  4016. content: "\F218";
  4017. }
  4018. .mdi-file-document:before {
  4019. content: "\F219";
  4020. }
  4021. .mdi-file-document-box:before {
  4022. content: "\F21A";
  4023. }
  4024. .mdi-file-excel:before {
  4025. content: "\F21B";
  4026. }
  4027. .mdi-file-excel-box:before {
  4028. content: "\F21C";
  4029. }
  4030. .mdi-file-export:before {
  4031. content: "\F21D";
  4032. }
  4033. .mdi-file-find:before {
  4034. content: "\F21E";
  4035. }
  4036. .mdi-file-hidden:before {
  4037. content: "\F613";
  4038. }
  4039. .mdi-file-image:before {
  4040. content: "\F21F";
  4041. }
  4042. .mdi-file-import:before {
  4043. content: "\F220";
  4044. }
  4045. .mdi-file-lock:before {
  4046. content: "\F221";
  4047. }
  4048. .mdi-file-multiple:before {
  4049. content: "\F222";
  4050. }
  4051. .mdi-file-music:before {
  4052. content: "\F223";
  4053. }
  4054. .mdi-file-outline:before {
  4055. content: "\F224";
  4056. }
  4057. .mdi-file-pdf:before {
  4058. content: "\F225";
  4059. }
  4060. .mdi-file-pdf-box:before {
  4061. content: "\F226";
  4062. }
  4063. .mdi-file-powerpoint:before {
  4064. content: "\F227";
  4065. }
  4066. .mdi-file-powerpoint-box:before {
  4067. content: "\F228";
  4068. }
  4069. .mdi-file-presentation-box:before {
  4070. content: "\F229";
  4071. }
  4072. .mdi-file-restore:before {
  4073. content: "\F670";
  4074. }
  4075. .mdi-file-send:before {
  4076. content: "\F22A";
  4077. }
  4078. .mdi-file-tree:before {
  4079. content: "\F645";
  4080. }
  4081. .mdi-file-video:before {
  4082. content: "\F22B";
  4083. }
  4084. .mdi-file-word:before {
  4085. content: "\F22C";
  4086. }
  4087. .mdi-file-word-box:before {
  4088. content: "\F22D";
  4089. }
  4090. .mdi-file-xml:before {
  4091. content: "\F22E";
  4092. }
  4093. .mdi-film:before {
  4094. content: "\F22F";
  4095. }
  4096. .mdi-filmstrip:before {
  4097. content: "\F230";
  4098. }
  4099. .mdi-filmstrip-off:before {
  4100. content: "\F231";
  4101. }
  4102. .mdi-filter:before {
  4103. content: "\F232";
  4104. }
  4105. .mdi-filter-outline:before {
  4106. content: "\F233";
  4107. }
  4108. .mdi-filter-remove:before {
  4109. content: "\F234";
  4110. }
  4111. .mdi-filter-remove-outline:before {
  4112. content: "\F235";
  4113. }
  4114. .mdi-filter-variant:before {
  4115. content: "\F236";
  4116. }
  4117. .mdi-fingerprint:before {
  4118. content: "\F237";
  4119. }
  4120. .mdi-fire:before {
  4121. content: "\F238";
  4122. }
  4123. .mdi-firefox:before {
  4124. content: "\F239";
  4125. }
  4126. .mdi-fish:before {
  4127. content: "\F23A";
  4128. }
  4129. .mdi-flag:before {
  4130. content: "\F23B";
  4131. }
  4132. .mdi-flag-checkered:before {
  4133. content: "\F23C";
  4134. }
  4135. .mdi-flag-outline:before {
  4136. content: "\F23D";
  4137. }
  4138. .mdi-flag-outline-variant:before {
  4139. content: "\F23E";
  4140. }
  4141. .mdi-flag-triangle:before {
  4142. content: "\F23F";
  4143. }
  4144. .mdi-flag-variant:before {
  4145. content: "\F240";
  4146. }
  4147. .mdi-flash:before {
  4148. content: "\F241";
  4149. }
  4150. .mdi-flash-auto:before {
  4151. content: "\F242";
  4152. }
  4153. .mdi-flash-off:before {
  4154. content: "\F243";
  4155. }
  4156. .mdi-flashlight:before {
  4157. content: "\F244";
  4158. }
  4159. .mdi-flashlight-off:before {
  4160. content: "\F245";
  4161. }
  4162. .mdi-flask:before {
  4163. content: "\F093";
  4164. }
  4165. .mdi-flask-empty:before {
  4166. content: "\F094";
  4167. }
  4168. .mdi-flask-empty-outline:before {
  4169. content: "\F095";
  4170. }
  4171. .mdi-flask-outline:before {
  4172. content: "\F096";
  4173. }
  4174. .mdi-flattr:before {
  4175. content: "\F246";
  4176. }
  4177. .mdi-flip-to-back:before {
  4178. content: "\F247";
  4179. }
  4180. .mdi-flip-to-front:before {
  4181. content: "\F248";
  4182. }
  4183. .mdi-floppy:before {
  4184. content: "\F249";
  4185. }
  4186. .mdi-flower:before {
  4187. content: "\F24A";
  4188. }
  4189. .mdi-folder:before {
  4190. content: "\F24B";
  4191. }
  4192. .mdi-folder-account:before {
  4193. content: "\F24C";
  4194. }
  4195. .mdi-folder-download:before {
  4196. content: "\F24D";
  4197. }
  4198. .mdi-folder-google-drive:before {
  4199. content: "\F24E";
  4200. }
  4201. .mdi-folder-image:before {
  4202. content: "\F24F";
  4203. }
  4204. .mdi-folder-lock:before {
  4205. content: "\F250";
  4206. }
  4207. .mdi-folder-lock-open:before {
  4208. content: "\F251";
  4209. }
  4210. .mdi-folder-move:before {
  4211. content: "\F252";
  4212. }
  4213. .mdi-folder-multiple:before {
  4214. content: "\F253";
  4215. }
  4216. .mdi-folder-multiple-image:before {
  4217. content: "\F254";
  4218. }
  4219. .mdi-folder-multiple-outline:before {
  4220. content: "\F255";
  4221. }
  4222. .mdi-folder-outline:before {
  4223. content: "\F256";
  4224. }
  4225. .mdi-folder-plus:before {
  4226. content: "\F257";
  4227. }
  4228. .mdi-folder-remove:before {
  4229. content: "\F258";
  4230. }
  4231. .mdi-folder-upload:before {
  4232. content: "\F259";
  4233. }
  4234. .mdi-food:before {
  4235. content: "\F25A";
  4236. }
  4237. .mdi-food-apple:before {
  4238. content: "\F25B";
  4239. }
  4240. .mdi-food-fork-drink:before {
  4241. content: "\F5F2";
  4242. }
  4243. .mdi-food-off:before {
  4244. content: "\F5F3";
  4245. }
  4246. .mdi-food-variant:before {
  4247. content: "\F25C";
  4248. }
  4249. .mdi-football:before {
  4250. content: "\F25D";
  4251. }
  4252. .mdi-football-australian:before {
  4253. content: "\F25E";
  4254. }
  4255. .mdi-football-helmet:before {
  4256. content: "\F25F";
  4257. }
  4258. .mdi-format-align-center:before {
  4259. content: "\F260";
  4260. }
  4261. .mdi-format-align-justify:before {
  4262. content: "\F261";
  4263. }
  4264. .mdi-format-align-left:before {
  4265. content: "\F262";
  4266. }
  4267. .mdi-format-align-right:before {
  4268. content: "\F263";
  4269. }
  4270. .mdi-format-annotation-plus:before {
  4271. content: "\F646";
  4272. }
  4273. .mdi-format-bold:before {
  4274. content: "\F264";
  4275. }
  4276. .mdi-format-clear:before {
  4277. content: "\F265";
  4278. }
  4279. .mdi-format-color-fill:before {
  4280. content: "\F266";
  4281. }
  4282. .mdi-format-float-center:before {
  4283. content: "\F267";
  4284. }
  4285. .mdi-format-float-left:before {
  4286. content: "\F268";
  4287. }
  4288. .mdi-format-float-none:before {
  4289. content: "\F269";
  4290. }
  4291. .mdi-format-float-right:before {
  4292. content: "\F26A";
  4293. }
  4294. .mdi-format-header-1:before {
  4295. content: "\F26B";
  4296. }
  4297. .mdi-format-header-2:before {
  4298. content: "\F26C";
  4299. }
  4300. .mdi-format-header-3:before {
  4301. content: "\F26D";
  4302. }
  4303. .mdi-format-header-4:before {
  4304. content: "\F26E";
  4305. }
  4306. .mdi-format-header-5:before {
  4307. content: "\F26F";
  4308. }
  4309. .mdi-format-header-6:before {
  4310. content: "\F270";
  4311. }
  4312. .mdi-format-header-decrease:before {
  4313. content: "\F271";
  4314. }
  4315. .mdi-format-header-equal:before {
  4316. content: "\F272";
  4317. }
  4318. .mdi-format-header-increase:before {
  4319. content: "\F273";
  4320. }
  4321. .mdi-format-header-pound:before {
  4322. content: "\F274";
  4323. }
  4324. .mdi-format-horizontal-align-center:before {
  4325. content: "\F61E";
  4326. }
  4327. .mdi-format-horizontal-align-left:before {
  4328. content: "\F61F";
  4329. }
  4330. .mdi-format-horizontal-align-right:before {
  4331. content: "\F620";
  4332. }
  4333. .mdi-format-indent-decrease:before {
  4334. content: "\F275";
  4335. }
  4336. .mdi-format-indent-increase:before {
  4337. content: "\F276";
  4338. }
  4339. .mdi-format-italic:before {
  4340. content: "\F277";
  4341. }
  4342. .mdi-format-line-spacing:before {
  4343. content: "\F278";
  4344. }
  4345. .mdi-format-line-style:before {
  4346. content: "\F5C8";
  4347. }
  4348. .mdi-format-line-weight:before {
  4349. content: "\F5C9";
  4350. }
  4351. .mdi-format-list-bulleted:before {
  4352. content: "\F279";
  4353. }
  4354. .mdi-format-list-bulleted-type:before {
  4355. content: "\F27A";
  4356. }
  4357. .mdi-format-list-numbers:before {
  4358. content: "\F27B";
  4359. }
  4360. .mdi-format-paint:before {
  4361. content: "\F27C";
  4362. }
  4363. .mdi-format-paragraph:before {
  4364. content: "\F27D";
  4365. }
  4366. .mdi-format-quote:before {
  4367. content: "\F27E";
  4368. }
  4369. .mdi-format-size:before {
  4370. content: "\F27F";
  4371. }
  4372. .mdi-format-strikethrough:before {
  4373. content: "\F280";
  4374. }
  4375. .mdi-format-strikethrough-variant:before {
  4376. content: "\F281";
  4377. }
  4378. .mdi-format-subscript:before {
  4379. content: "\F282";
  4380. }
  4381. .mdi-format-superscript:before {
  4382. content: "\F283";
  4383. }
  4384. .mdi-format-text:before {
  4385. content: "\F284";
  4386. }
  4387. .mdi-format-textdirection-l-to-r:before {
  4388. content: "\F285";
  4389. }
  4390. .mdi-format-textdirection-r-to-l:before {
  4391. content: "\F286";
  4392. }
  4393. .mdi-format-title:before {
  4394. content: "\F5F4";
  4395. }
  4396. .mdi-format-underline:before {
  4397. content: "\F287";
  4398. }
  4399. .mdi-format-vertical-align-bottom:before {
  4400. content: "\F621";
  4401. }
  4402. .mdi-format-vertical-align-center:before {
  4403. content: "\F622";
  4404. }
  4405. .mdi-format-vertical-align-top:before {
  4406. content: "\F623";
  4407. }
  4408. .mdi-format-wrap-inline:before {
  4409. content: "\F288";
  4410. }
  4411. .mdi-format-wrap-square:before {
  4412. content: "\F289";
  4413. }
  4414. .mdi-format-wrap-tight:before {
  4415. content: "\F28A";
  4416. }
  4417. .mdi-format-wrap-top-bottom:before {
  4418. content: "\F28B";
  4419. }
  4420. .mdi-forum:before {
  4421. content: "\F28C";
  4422. }
  4423. .mdi-forward:before {
  4424. content: "\F28D";
  4425. }
  4426. .mdi-foursquare:before {
  4427. content: "\F28E";
  4428. }
  4429. .mdi-fridge:before {
  4430. content: "\F28F";
  4431. }
  4432. .mdi-fridge-filled:before {
  4433. content: "\F290";
  4434. }
  4435. .mdi-fridge-filled-bottom:before {
  4436. content: "\F291";
  4437. }
  4438. .mdi-fridge-filled-top:before {
  4439. content: "\F292";
  4440. }
  4441. .mdi-fullscreen:before {
  4442. content: "\F293";
  4443. }
  4444. .mdi-fullscreen-exit:before {
  4445. content: "\F294";
  4446. }
  4447. .mdi-function:before {
  4448. content: "\F295";
  4449. }
  4450. .mdi-gamepad:before {
  4451. content: "\F296";
  4452. }
  4453. .mdi-gamepad-variant:before {
  4454. content: "\F297";
  4455. }
  4456. .mdi-gas-cylinder:before {
  4457. content: "\F647";
  4458. }
  4459. .mdi-gas-station:before {
  4460. content: "\F298";
  4461. }
  4462. .mdi-gate:before {
  4463. content: "\F299";
  4464. }
  4465. .mdi-gauge:before {
  4466. content: "\F29A";
  4467. }
  4468. .mdi-gavel:before {
  4469. content: "\F29B";
  4470. }
  4471. .mdi-gender-female:before {
  4472. content: "\F29C";
  4473. }
  4474. .mdi-gender-male:before {
  4475. content: "\F29D";
  4476. }
  4477. .mdi-gender-male-female:before {
  4478. content: "\F29E";
  4479. }
  4480. .mdi-gender-transgender:before {
  4481. content: "\F29F";
  4482. }
  4483. .mdi-ghost:before {
  4484. content: "\F2A0";
  4485. }
  4486. .mdi-gift:before {
  4487. content: "\F2A1";
  4488. }
  4489. .mdi-git:before {
  4490. content: "\F2A2";
  4491. }
  4492. .mdi-github-box:before {
  4493. content: "\F2A3";
  4494. }
  4495. .mdi-github-circle:before {
  4496. content: "\F2A4";
  4497. }
  4498. .mdi-glass-flute:before {
  4499. content: "\F2A5";
  4500. }
  4501. .mdi-glass-mug:before {
  4502. content: "\F2A6";
  4503. }
  4504. .mdi-glass-stange:before {
  4505. content: "\F2A7";
  4506. }
  4507. .mdi-glass-tulip:before {
  4508. content: "\F2A8";
  4509. }
  4510. .mdi-glassdoor:before {
  4511. content: "\F2A9";
  4512. }
  4513. .mdi-glasses:before {
  4514. content: "\F2AA";
  4515. }
  4516. .mdi-gmail:before {
  4517. content: "\F2AB";
  4518. }
  4519. .mdi-gnome:before {
  4520. content: "\F2AC";
  4521. }
  4522. .mdi-google:before {
  4523. content: "\F2AD";
  4524. }
  4525. .mdi-google-cardboard:before {
  4526. content: "\F2AE";
  4527. }
  4528. .mdi-google-chrome:before {
  4529. content: "\F2AF";
  4530. }
  4531. .mdi-google-circles:before {
  4532. content: "\F2B0";
  4533. }
  4534. .mdi-google-circles-communities:before {
  4535. content: "\F2B1";
  4536. }
  4537. .mdi-google-circles-extended:before {
  4538. content: "\F2B2";
  4539. }
  4540. .mdi-google-circles-group:before {
  4541. content: "\F2B3";
  4542. }
  4543. .mdi-google-controller:before {
  4544. content: "\F2B4";
  4545. }
  4546. .mdi-google-controller-off:before {
  4547. content: "\F2B5";
  4548. }
  4549. .mdi-google-drive:before {
  4550. content: "\F2B6";
  4551. }
  4552. .mdi-google-earth:before {
  4553. content: "\F2B7";
  4554. }
  4555. .mdi-google-glass:before {
  4556. content: "\F2B8";
  4557. }
  4558. .mdi-google-maps:before {
  4559. content: "\F5F5";
  4560. }
  4561. .mdi-google-nearby:before {
  4562. content: "\F2B9";
  4563. }
  4564. .mdi-google-pages:before {
  4565. content: "\F2BA";
  4566. }
  4567. .mdi-google-physical-web:before {
  4568. content: "\F2BB";
  4569. }
  4570. .mdi-google-play:before {
  4571. content: "\F2BC";
  4572. }
  4573. .mdi-google-plus:before {
  4574. content: "\F2BD";
  4575. }
  4576. .mdi-google-plus-box:before {
  4577. content: "\F2BE";
  4578. }
  4579. .mdi-google-translate:before {
  4580. content: "\F2BF";
  4581. }
  4582. .mdi-google-wallet:before {
  4583. content: "\F2C0";
  4584. }
  4585. .mdi-grease-pencil:before {
  4586. content: "\F648";
  4587. }
  4588. .mdi-grid:before {
  4589. content: "\F2C1";
  4590. }
  4591. .mdi-grid-off:before {
  4592. content: "\F2C2";
  4593. }
  4594. .mdi-group:before {
  4595. content: "\F2C3";
  4596. }
  4597. .mdi-guitar-electric:before {
  4598. content: "\F2C4";
  4599. }
  4600. .mdi-guitar-pick:before {
  4601. content: "\F2C5";
  4602. }
  4603. .mdi-guitar-pick-outline:before {
  4604. content: "\F2C6";
  4605. }
  4606. .mdi-hackernews:before {
  4607. content: "\F624";
  4608. }
  4609. .mdi-hand-pointing-right:before {
  4610. content: "\F2C7";
  4611. }
  4612. .mdi-hanger:before {
  4613. content: "\F2C8";
  4614. }
  4615. .mdi-hangouts:before {
  4616. content: "\F2C9";
  4617. }
  4618. .mdi-harddisk:before {
  4619. content: "\F2CA";
  4620. }
  4621. .mdi-headphones:before {
  4622. content: "\F2CB";
  4623. }
  4624. .mdi-headphones-box:before {
  4625. content: "\F2CC";
  4626. }
  4627. .mdi-headphones-settings:before {
  4628. content: "\F2CD";
  4629. }
  4630. .mdi-headset:before {
  4631. content: "\F2CE";
  4632. }
  4633. .mdi-headset-dock:before {
  4634. content: "\F2CF";
  4635. }
  4636. .mdi-headset-off:before {
  4637. content: "\F2D0";
  4638. }
  4639. .mdi-heart:before {
  4640. content: "\F2D1";
  4641. }
  4642. .mdi-heart-box:before {
  4643. content: "\F2D2";
  4644. }
  4645. .mdi-heart-box-outline:before {
  4646. content: "\F2D3";
  4647. }
  4648. .mdi-heart-broken:before {
  4649. content: "\F2D4";
  4650. }
  4651. .mdi-heart-outline:before {
  4652. content: "\F2D5";
  4653. }
  4654. .mdi-heart-pulse:before {
  4655. content: "\F5F6";
  4656. }
  4657. .mdi-help:before {
  4658. content: "\F2D6";
  4659. }
  4660. .mdi-help-circle:before {
  4661. content: "\F2D7";
  4662. }
  4663. .mdi-help-circle-outline:before {
  4664. content: "\F625";
  4665. }
  4666. .mdi-hexagon:before {
  4667. content: "\F2D8";
  4668. }
  4669. .mdi-hexagon-outline:before {
  4670. content: "\F2D9";
  4671. }
  4672. .mdi-highway:before {
  4673. content: "\F5F7";
  4674. }
  4675. .mdi-history:before {
  4676. content: "\F2DA";
  4677. }
  4678. .mdi-hololens:before {
  4679. content: "\F2DB";
  4680. }
  4681. .mdi-home:before {
  4682. content: "\F2DC";
  4683. }
  4684. .mdi-home-map-marker:before {
  4685. content: "\F5F8";
  4686. }
  4687. .mdi-home-modern:before {
  4688. content: "\F2DD";
  4689. }
  4690. .mdi-home-variant:before {
  4691. content: "\F2DE";
  4692. }
  4693. .mdi-hops:before {
  4694. content: "\F2DF";
  4695. }
  4696. .mdi-hospital:before {
  4697. content: "\F2E0";
  4698. }
  4699. .mdi-hospital-building:before {
  4700. content: "\F2E1";
  4701. }
  4702. .mdi-hospital-marker:before {
  4703. content: "\F2E2";
  4704. }
  4705. .mdi-hotel:before {
  4706. content: "\F2E3";
  4707. }
  4708. .mdi-houzz:before {
  4709. content: "\F2E4";
  4710. }
  4711. .mdi-houzz-box:before {
  4712. content: "\F2E5";
  4713. }
  4714. .mdi-human:before {
  4715. content: "\F2E6";
  4716. }
  4717. .mdi-human-child:before {
  4718. content: "\F2E7";
  4719. }
  4720. .mdi-human-female:before {
  4721. content: "\F649";
  4722. }
  4723. .mdi-human-greeting:before {
  4724. content: "\F64A";
  4725. }
  4726. .mdi-human-handsdown:before {
  4727. content: "\F64B";
  4728. }
  4729. .mdi-human-handsup:before {
  4730. content: "\F64C";
  4731. }
  4732. .mdi-human-male:before {
  4733. content: "\F64D";
  4734. }
  4735. .mdi-human-male-female:before {
  4736. content: "\F2E8";
  4737. }
  4738. .mdi-human-pregnant:before {
  4739. content: "\F5CF";
  4740. }
  4741. .mdi-image:before {
  4742. content: "\F2E9";
  4743. }
  4744. .mdi-image-album:before {
  4745. content: "\F2EA";
  4746. }
  4747. .mdi-image-area:before {
  4748. content: "\F2EB";
  4749. }
  4750. .mdi-image-area-close:before {
  4751. content: "\F2EC";
  4752. }
  4753. .mdi-image-broken:before {
  4754. content: "\F2ED";
  4755. }
  4756. .mdi-image-broken-variant:before {
  4757. content: "\F2EE";
  4758. }
  4759. .mdi-image-filter:before {
  4760. content: "\F2EF";
  4761. }
  4762. .mdi-image-filter-black-white:before {
  4763. content: "\F2F0";
  4764. }
  4765. .mdi-image-filter-center-focus:before {
  4766. content: "\F2F1";
  4767. }
  4768. .mdi-image-filter-center-focus-weak:before {
  4769. content: "\F2F2";
  4770. }
  4771. .mdi-image-filter-drama:before {
  4772. content: "\F2F3";
  4773. }
  4774. .mdi-image-filter-frames:before {
  4775. content: "\F2F4";
  4776. }
  4777. .mdi-image-filter-hdr:before {
  4778. content: "\F2F5";
  4779. }
  4780. .mdi-image-filter-none:before {
  4781. content: "\F2F6";
  4782. }
  4783. .mdi-image-filter-tilt-shift:before {
  4784. content: "\F2F7";
  4785. }
  4786. .mdi-image-filter-vintage:before {
  4787. content: "\F2F8";
  4788. }
  4789. .mdi-image-multiple:before {
  4790. content: "\F2F9";
  4791. }
  4792. .mdi-import:before {
  4793. content: "\F2FA";
  4794. }
  4795. .mdi-inbox:before {
  4796. content: "\F2FB";
  4797. }
  4798. .mdi-incognito:before {
  4799. content: "\F5F9";
  4800. }
  4801. .mdi-information:before {
  4802. content: "\F2FC";
  4803. }
  4804. .mdi-information-outline:before {
  4805. content: "\F2FD";
  4806. }
  4807. .mdi-information-variant:before {
  4808. content: "\F64E";
  4809. }
  4810. .mdi-instagram:before {
  4811. content: "\F2FE";
  4812. }
  4813. .mdi-instapaper:before {
  4814. content: "\F2FF";
  4815. }
  4816. .mdi-internet-explorer:before {
  4817. content: "\F300";
  4818. }
  4819. .mdi-invert-colors:before {
  4820. content: "\F301";
  4821. }
  4822. .mdi-jeepney:before {
  4823. content: "\F302";
  4824. }
  4825. .mdi-jira:before {
  4826. content: "\F303";
  4827. }
  4828. .mdi-jsfiddle:before {
  4829. content: "\F304";
  4830. }
  4831. .mdi-json:before {
  4832. content: "\F626";
  4833. }
  4834. .mdi-keg:before {
  4835. content: "\F305";
  4836. }
  4837. .mdi-kettle:before {
  4838. content: "\F5FA";
  4839. }
  4840. .mdi-key:before {
  4841. content: "\F306";
  4842. }
  4843. .mdi-key-change:before {
  4844. content: "\F307";
  4845. }
  4846. .mdi-key-minus:before {
  4847. content: "\F308";
  4848. }
  4849. .mdi-key-plus:before {
  4850. content: "\F309";
  4851. }
  4852. .mdi-key-remove:before {
  4853. content: "\F30A";
  4854. }
  4855. .mdi-key-variant:before {
  4856. content: "\F30B";
  4857. }
  4858. .mdi-keyboard:before {
  4859. content: "\F30C";
  4860. }
  4861. .mdi-keyboard-backspace:before {
  4862. content: "\F30D";
  4863. }
  4864. .mdi-keyboard-caps:before {
  4865. content: "\F30E";
  4866. }
  4867. .mdi-keyboard-close:before {
  4868. content: "\F30F";
  4869. }
  4870. .mdi-keyboard-off:before {
  4871. content: "\F310";
  4872. }
  4873. .mdi-keyboard-return:before {
  4874. content: "\F311";
  4875. }
  4876. .mdi-keyboard-tab:before {
  4877. content: "\F312";
  4878. }
  4879. .mdi-keyboard-variant:before {
  4880. content: "\F313";
  4881. }
  4882. .mdi-kodi:before {
  4883. content: "\F314";
  4884. }
  4885. .mdi-label:before {
  4886. content: "\F315";
  4887. }
  4888. .mdi-label-outline:before {
  4889. content: "\F316";
  4890. }
  4891. .mdi-lambda:before {
  4892. content: "\F627";
  4893. }
  4894. .mdi-lan:before {
  4895. content: "\F317";
  4896. }
  4897. .mdi-lan-connect:before {
  4898. content: "\F318";
  4899. }
  4900. .mdi-lan-disconnect:before {
  4901. content: "\F319";
  4902. }
  4903. .mdi-lan-pending:before {
  4904. content: "\F31A";
  4905. }
  4906. .mdi-language-c:before {
  4907. content: "\F671";
  4908. }
  4909. .mdi-language-cpp:before {
  4910. content: "\F672";
  4911. }
  4912. .mdi-language-csharp:before {
  4913. content: "\F31B";
  4914. }
  4915. .mdi-language-css3:before {
  4916. content: "\F31C";
  4917. }
  4918. .mdi-language-html5:before {
  4919. content: "\F31D";
  4920. }
  4921. .mdi-language-javascript:before {
  4922. content: "\F31E";
  4923. }
  4924. .mdi-language-php:before {
  4925. content: "\F31F";
  4926. }
  4927. .mdi-language-python:before {
  4928. content: "\F320";
  4929. }
  4930. .mdi-language-python-text:before {
  4931. content: "\F321";
  4932. }
  4933. .mdi-laptop:before {
  4934. content: "\F322";
  4935. }
  4936. .mdi-laptop-chromebook:before {
  4937. content: "\F323";
  4938. }
  4939. .mdi-laptop-mac:before {
  4940. content: "\F324";
  4941. }
  4942. .mdi-laptop-windows:before {
  4943. content: "\F325";
  4944. }
  4945. .mdi-lastfm:before {
  4946. content: "\F326";
  4947. }
  4948. .mdi-launch:before {
  4949. content: "\F327";
  4950. }
  4951. .mdi-layers:before {
  4952. content: "\F328";
  4953. }
  4954. .mdi-layers-off:before {
  4955. content: "\F329";
  4956. }
  4957. .mdi-lead-pencil:before {
  4958. content: "\F64F";
  4959. }
  4960. .mdi-leaf:before {
  4961. content: "\F32A";
  4962. }
  4963. .mdi-led-off:before {
  4964. content: "\F32B";
  4965. }
  4966. .mdi-led-on:before {
  4967. content: "\F32C";
  4968. }
  4969. .mdi-led-outline:before {
  4970. content: "\F32D";
  4971. }
  4972. .mdi-led-variant-off:before {
  4973. content: "\F32E";
  4974. }
  4975. .mdi-led-variant-on:before {
  4976. content: "\F32F";
  4977. }
  4978. .mdi-led-variant-outline:before {
  4979. content: "\F330";
  4980. }
  4981. .mdi-library:before {
  4982. content: "\F331";
  4983. }
  4984. .mdi-library-books:before {
  4985. content: "\F332";
  4986. }
  4987. .mdi-library-music:before {
  4988. content: "\F333";
  4989. }
  4990. .mdi-library-plus:before {
  4991. content: "\F334";
  4992. }
  4993. .mdi-lightbulb:before {
  4994. content: "\F335";
  4995. }
  4996. .mdi-lightbulb-outline:before {
  4997. content: "\F336";
  4998. }
  4999. .mdi-link:before {
  5000. content: "\F337";
  5001. }
  5002. .mdi-link-off:before {
  5003. content: "\F338";
  5004. }
  5005. .mdi-link-variant:before {
  5006. content: "\F339";
  5007. }
  5008. .mdi-link-variant-off:before {
  5009. content: "\F33A";
  5010. }
  5011. .mdi-linkedin:before {
  5012. content: "\F33B";
  5013. }
  5014. .mdi-linkedin-box:before {
  5015. content: "\F33C";
  5016. }
  5017. .mdi-linux:before {
  5018. content: "\F33D";
  5019. }
  5020. .mdi-lock:before {
  5021. content: "\F33E";
  5022. }
  5023. .mdi-lock-open:before {
  5024. content: "\F33F";
  5025. }
  5026. .mdi-lock-open-outline:before {
  5027. content: "\F340";
  5028. }
  5029. .mdi-lock-outline:before {
  5030. content: "\F341";
  5031. }
  5032. .mdi-lock-plus:before {
  5033. content: "\F5FB";
  5034. }
  5035. .mdi-login:before {
  5036. content: "\F342";
  5037. }
  5038. .mdi-login-variant:before {
  5039. content: "\F5FC";
  5040. }
  5041. .mdi-logout:before {
  5042. content: "\F343";
  5043. }
  5044. .mdi-logout-variant:before {
  5045. content: "\F5FD";
  5046. }
  5047. .mdi-looks:before {
  5048. content: "\F344";
  5049. }
  5050. .mdi-loupe:before {
  5051. content: "\F345";
  5052. }
  5053. .mdi-lumx:before {
  5054. content: "\F346";
  5055. }
  5056. .mdi-magnet:before {
  5057. content: "\F347";
  5058. }
  5059. .mdi-magnet-on:before {
  5060. content: "\F348";
  5061. }
  5062. .mdi-magnify:before {
  5063. content: "\F349";
  5064. }
  5065. .mdi-magnify-minus:before {
  5066. content: "\F34A";
  5067. }
  5068. .mdi-magnify-plus:before {
  5069. content: "\F34B";
  5070. }
  5071. .mdi-mail-ru:before {
  5072. content: "\F34C";
  5073. }
  5074. .mdi-map:before {
  5075. content: "\F34D";
  5076. }
  5077. .mdi-map-marker:before {
  5078. content: "\F34E";
  5079. }
  5080. .mdi-map-marker-circle:before {
  5081. content: "\F34F";
  5082. }
  5083. .mdi-map-marker-minus:before {
  5084. content: "\F650";
  5085. }
  5086. .mdi-map-marker-multiple:before {
  5087. content: "\F350";
  5088. }
  5089. .mdi-map-marker-off:before {
  5090. content: "\F351";
  5091. }
  5092. .mdi-map-marker-plus:before {
  5093. content: "\F651";
  5094. }
  5095. .mdi-map-marker-radius:before {
  5096. content: "\F352";
  5097. }
  5098. .mdi-margin:before {
  5099. content: "\F353";
  5100. }
  5101. .mdi-markdown:before {
  5102. content: "\F354";
  5103. }
  5104. .mdi-marker:before {
  5105. content: "\F652";
  5106. }
  5107. .mdi-marker-check:before {
  5108. content: "\F355";
  5109. }
  5110. .mdi-martini:before {
  5111. content: "\F356";
  5112. }
  5113. .mdi-material-ui:before {
  5114. content: "\F357";
  5115. }
  5116. .mdi-math-compass:before {
  5117. content: "\F358";
  5118. }
  5119. .mdi-matrix:before {
  5120. content: "\F628";
  5121. }
  5122. .mdi-maxcdn:before {
  5123. content: "\F359";
  5124. }
  5125. .mdi-medium:before {
  5126. content: "\F35A";
  5127. }
  5128. .mdi-memory:before {
  5129. content: "\F35B";
  5130. }
  5131. .mdi-menu:before {
  5132. content: "\F35C";
  5133. }
  5134. .mdi-menu-down:before {
  5135. content: "\F35D";
  5136. }
  5137. .mdi-menu-left:before {
  5138. content: "\F35E";
  5139. }
  5140. .mdi-menu-right:before {
  5141. content: "\F35F";
  5142. }
  5143. .mdi-menu-up:before {
  5144. content: "\F360";
  5145. }
  5146. .mdi-message:before {
  5147. content: "\F361";
  5148. }
  5149. .mdi-message-alert:before {
  5150. content: "\F362";
  5151. }
  5152. .mdi-message-draw:before {
  5153. content: "\F363";
  5154. }
  5155. .mdi-message-image:before {
  5156. content: "\F364";
  5157. }
  5158. .mdi-message-outline:before {
  5159. content: "\F365";
  5160. }
  5161. .mdi-message-plus:before {
  5162. content: "\F653";
  5163. }
  5164. .mdi-message-processing:before {
  5165. content: "\F366";
  5166. }
  5167. .mdi-message-reply:before {
  5168. content: "\F367";
  5169. }
  5170. .mdi-message-reply-text:before {
  5171. content: "\F368";
  5172. }
  5173. .mdi-message-text:before {
  5174. content: "\F369";
  5175. }
  5176. .mdi-message-text-outline:before {
  5177. content: "\F36A";
  5178. }
  5179. .mdi-message-video:before {
  5180. content: "\F36B";
  5181. }
  5182. .mdi-meteor:before {
  5183. content: "\F629";
  5184. }
  5185. .mdi-microphone:before {
  5186. content: "\F36C";
  5187. }
  5188. .mdi-microphone-off:before {
  5189. content: "\F36D";
  5190. }
  5191. .mdi-microphone-outline:before {
  5192. content: "\F36E";
  5193. }
  5194. .mdi-microphone-settings:before {
  5195. content: "\F36F";
  5196. }
  5197. .mdi-microphone-variant:before {
  5198. content: "\F370";
  5199. }
  5200. .mdi-microphone-variant-off:before {
  5201. content: "\F371";
  5202. }
  5203. .mdi-microscope:before {
  5204. content: "\F654";
  5205. }
  5206. .mdi-microsoft:before {
  5207. content: "\F372";
  5208. }
  5209. .mdi-minecraft:before {
  5210. content: "\F373";
  5211. }
  5212. .mdi-minus:before {
  5213. content: "\F374";
  5214. }
  5215. .mdi-minus-box:before {
  5216. content: "\F375";
  5217. }
  5218. .mdi-minus-circle:before {
  5219. content: "\F376";
  5220. }
  5221. .mdi-minus-circle-outline:before {
  5222. content: "\F377";
  5223. }
  5224. .mdi-minus-network:before {
  5225. content: "\F378";
  5226. }
  5227. .mdi-mixcloud:before {
  5228. content: "\F62A";
  5229. }
  5230. .mdi-monitor:before {
  5231. content: "\F379";
  5232. }
  5233. .mdi-monitor-multiple:before {
  5234. content: "\F37A";
  5235. }
  5236. .mdi-more:before {
  5237. content: "\F37B";
  5238. }
  5239. .mdi-motorbike:before {
  5240. content: "\F37C";
  5241. }
  5242. .mdi-mouse:before {
  5243. content: "\F37D";
  5244. }
  5245. .mdi-mouse-off:before {
  5246. content: "\F37E";
  5247. }
  5248. .mdi-mouse-variant:before {
  5249. content: "\F37F";
  5250. }
  5251. .mdi-mouse-variant-off:before {
  5252. content: "\F380";
  5253. }
  5254. .mdi-move-resize:before {
  5255. content: "\F655";
  5256. }
  5257. .mdi-move-resize-variant:before {
  5258. content: "\F656";
  5259. }
  5260. .mdi-movie:before {
  5261. content: "\F381";
  5262. }
  5263. .mdi-multiplication:before {
  5264. content: "\F382";
  5265. }
  5266. .mdi-multiplication-box:before {
  5267. content: "\F383";
  5268. }
  5269. .mdi-music-box:before {
  5270. content: "\F384";
  5271. }
  5272. .mdi-music-box-outline:before {
  5273. content: "\F385";
  5274. }
  5275. .mdi-music-circle:before {
  5276. content: "\F386";
  5277. }
  5278. .mdi-music-note:before {
  5279. content: "\F387";
  5280. }
  5281. .mdi-music-note-bluetooth:before {
  5282. content: "\F5FE";
  5283. }
  5284. .mdi-music-note-bluetooth-off:before {
  5285. content: "\F5FF";
  5286. }
  5287. .mdi-music-note-eighth:before {
  5288. content: "\F388";
  5289. }
  5290. .mdi-music-note-half:before {
  5291. content: "\F389";
  5292. }
  5293. .mdi-music-note-off:before {
  5294. content: "\F38A";
  5295. }
  5296. .mdi-music-note-quarter:before {
  5297. content: "\F38B";
  5298. }
  5299. .mdi-music-note-sixteenth:before {
  5300. content: "\F38C";
  5301. }
  5302. .mdi-music-note-whole:before {
  5303. content: "\F38D";
  5304. }
  5305. .mdi-nature:before {
  5306. content: "\F38E";
  5307. }
  5308. .mdi-nature-people:before {
  5309. content: "\F38F";
  5310. }
  5311. .mdi-navigation:before {
  5312. content: "\F390";
  5313. }
  5314. .mdi-near-me:before {
  5315. content: "\F5CD";
  5316. }
  5317. .mdi-needle:before {
  5318. content: "\F391";
  5319. }
  5320. .mdi-nest-protect:before {
  5321. content: "\F392";
  5322. }
  5323. .mdi-nest-thermostat:before {
  5324. content: "\F393";
  5325. }
  5326. .mdi-new-box:before {
  5327. content: "\F394";
  5328. }
  5329. .mdi-newspaper:before {
  5330. content: "\F395";
  5331. }
  5332. .mdi-nfc:before {
  5333. content: "\F396";
  5334. }
  5335. .mdi-nfc-tap:before {
  5336. content: "\F397";
  5337. }
  5338. .mdi-nfc-variant:before {
  5339. content: "\F398";
  5340. }
  5341. .mdi-nodejs:before {
  5342. content: "\F399";
  5343. }
  5344. .mdi-note:before {
  5345. content: "\F39A";
  5346. }
  5347. .mdi-note-outline:before {
  5348. content: "\F39B";
  5349. }
  5350. .mdi-note-plus:before {
  5351. content: "\F39C";
  5352. }
  5353. .mdi-note-plus-outline:before {
  5354. content: "\F39D";
  5355. }
  5356. .mdi-note-text:before {
  5357. content: "\F39E";
  5358. }
  5359. .mdi-notification-clear-all:before {
  5360. content: "\F39F";
  5361. }
  5362. .mdi-numeric:before {
  5363. content: "\F3A0";
  5364. }
  5365. .mdi-numeric-0-box:before {
  5366. content: "\F3A1";
  5367. }
  5368. .mdi-numeric-0-box-multiple-outline:before {
  5369. content: "\F3A2";
  5370. }
  5371. .mdi-numeric-0-box-outline:before {
  5372. content: "\F3A3";
  5373. }
  5374. .mdi-numeric-1-box:before {
  5375. content: "\F3A4";
  5376. }
  5377. .mdi-numeric-1-box-multiple-outline:before {
  5378. content: "\F3A5";
  5379. }
  5380. .mdi-numeric-1-box-outline:before {
  5381. content: "\F3A6";
  5382. }
  5383. .mdi-numeric-2-box:before {
  5384. content: "\F3A7";
  5385. }
  5386. .mdi-numeric-2-box-multiple-outline:before {
  5387. content: "\F3A8";
  5388. }
  5389. .mdi-numeric-2-box-outline:before {
  5390. content: "\F3A9";
  5391. }
  5392. .mdi-numeric-3-box:before {
  5393. content: "\F3AA";
  5394. }
  5395. .mdi-numeric-3-box-multiple-outline:before {
  5396. content: "\F3AB";
  5397. }
  5398. .mdi-numeric-3-box-outline:before {
  5399. content: "\F3AC";
  5400. }
  5401. .mdi-numeric-4-box:before {
  5402. content: "\F3AD";
  5403. }
  5404. .mdi-numeric-4-box-multiple-outline:before {
  5405. content: "\F3AE";
  5406. }
  5407. .mdi-numeric-4-box-outline:before {
  5408. content: "\F3AF";
  5409. }
  5410. .mdi-numeric-5-box:before {
  5411. content: "\F3B0";
  5412. }
  5413. .mdi-numeric-5-box-multiple-outline:before {
  5414. content: "\F3B1";
  5415. }
  5416. .mdi-numeric-5-box-outline:before {
  5417. content: "\F3B2";
  5418. }
  5419. .mdi-numeric-6-box:before {
  5420. content: "\F3B3";
  5421. }
  5422. .mdi-numeric-6-box-multiple-outline:before {
  5423. content: "\F3B4";
  5424. }
  5425. .mdi-numeric-6-box-outline:before {
  5426. content: "\F3B5";
  5427. }
  5428. .mdi-numeric-7-box:before {
  5429. content: "\F3B6";
  5430. }
  5431. .mdi-numeric-7-box-multiple-outline:before {
  5432. content: "\F3B7";
  5433. }
  5434. .mdi-numeric-7-box-outline:before {
  5435. content: "\F3B8";
  5436. }
  5437. .mdi-numeric-8-box:before {
  5438. content: "\F3B9";
  5439. }
  5440. .mdi-numeric-8-box-multiple-outline:before {
  5441. content: "\F3BA";
  5442. }
  5443. .mdi-numeric-8-box-outline:before {
  5444. content: "\F3BB";
  5445. }
  5446. .mdi-numeric-9-box:before {
  5447. content: "\F3BC";
  5448. }
  5449. .mdi-numeric-9-box-multiple-outline:before {
  5450. content: "\F3BD";
  5451. }
  5452. .mdi-numeric-9-box-outline:before {
  5453. content: "\F3BE";
  5454. }
  5455. .mdi-numeric-9-plus-box:before {
  5456. content: "\F3BF";
  5457. }
  5458. .mdi-numeric-9-plus-box-multiple-outline:before {
  5459. content: "\F3C0";
  5460. }
  5461. .mdi-numeric-9-plus-box-outline:before {
  5462. content: "\F3C1";
  5463. }
  5464. .mdi-nutrition:before {
  5465. content: "\F3C2";
  5466. }
  5467. .mdi-octagon:before {
  5468. content: "\F3C3";
  5469. }
  5470. .mdi-octagon-outline:before {
  5471. content: "\F3C4";
  5472. }
  5473. .mdi-odnoklassniki:before {
  5474. content: "\F3C5";
  5475. }
  5476. .mdi-office:before {
  5477. content: "\F3C6";
  5478. }
  5479. .mdi-oil:before {
  5480. content: "\F3C7";
  5481. }
  5482. .mdi-oil-temperature:before {
  5483. content: "\F3C8";
  5484. }
  5485. .mdi-omega:before {
  5486. content: "\F3C9";
  5487. }
  5488. .mdi-onedrive:before {
  5489. content: "\F3CA";
  5490. }
  5491. .mdi-opacity:before {
  5492. content: "\F5CC";
  5493. }
  5494. .mdi-open-in-app:before {
  5495. content: "\F3CB";
  5496. }
  5497. .mdi-open-in-new:before {
  5498. content: "\F3CC";
  5499. }
  5500. .mdi-openid:before {
  5501. content: "\F3CD";
  5502. }
  5503. .mdi-opera:before {
  5504. content: "\F3CE";
  5505. }
  5506. .mdi-ornament:before {
  5507. content: "\F3CF";
  5508. }
  5509. .mdi-ornament-variant:before {
  5510. content: "\F3D0";
  5511. }
  5512. .mdi-outbox:before {
  5513. content: "\F3D1";
  5514. }
  5515. .mdi-owl:before {
  5516. content: "\F3D2";
  5517. }
  5518. .mdi-package:before {
  5519. content: "\F3D3";
  5520. }
  5521. .mdi-package-down:before {
  5522. content: "\F3D4";
  5523. }
  5524. .mdi-package-up:before {
  5525. content: "\F3D5";
  5526. }
  5527. .mdi-package-variant:before {
  5528. content: "\F3D6";
  5529. }
  5530. .mdi-package-variant-closed:before {
  5531. content: "\F3D7";
  5532. }
  5533. .mdi-page-first:before {
  5534. content: "\F600";
  5535. }
  5536. .mdi-page-last:before {
  5537. content: "\F601";
  5538. }
  5539. .mdi-palette:before {
  5540. content: "\F3D8";
  5541. }
  5542. .mdi-palette-advanced:before {
  5543. content: "\F3D9";
  5544. }
  5545. .mdi-panda:before {
  5546. content: "\F3DA";
  5547. }
  5548. .mdi-pandora:before {
  5549. content: "\F3DB";
  5550. }
  5551. .mdi-panorama:before {
  5552. content: "\F3DC";
  5553. }
  5554. .mdi-panorama-fisheye:before {
  5555. content: "\F3DD";
  5556. }
  5557. .mdi-panorama-horizontal:before {
  5558. content: "\F3DE";
  5559. }
  5560. .mdi-panorama-vertical:before {
  5561. content: "\F3DF";
  5562. }
  5563. .mdi-panorama-wide-angle:before {
  5564. content: "\F3E0";
  5565. }
  5566. .mdi-paper-cut-vertical:before {
  5567. content: "\F3E1";
  5568. }
  5569. .mdi-paperclip:before {
  5570. content: "\F3E2";
  5571. }
  5572. .mdi-parking:before {
  5573. content: "\F3E3";
  5574. }
  5575. .mdi-pause:before {
  5576. content: "\F3E4";
  5577. }
  5578. .mdi-pause-circle:before {
  5579. content: "\F3E5";
  5580. }
  5581. .mdi-pause-circle-outline:before {
  5582. content: "\F3E6";
  5583. }
  5584. .mdi-pause-octagon:before {
  5585. content: "\F3E7";
  5586. }
  5587. .mdi-pause-octagon-outline:before {
  5588. content: "\F3E8";
  5589. }
  5590. .mdi-paw:before {
  5591. content: "\F3E9";
  5592. }
  5593. .mdi-paw-off:before {
  5594. content: "\F657";
  5595. }
  5596. .mdi-pen:before {
  5597. content: "\F3EA";
  5598. }
  5599. .mdi-pencil:before {
  5600. content: "\F3EB";
  5601. }
  5602. .mdi-pencil-box:before {
  5603. content: "\F3EC";
  5604. }
  5605. .mdi-pencil-box-outline:before {
  5606. content: "\F3ED";
  5607. }
  5608. .mdi-pencil-lock:before {
  5609. content: "\F3EE";
  5610. }
  5611. .mdi-pencil-off:before {
  5612. content: "\F3EF";
  5613. }
  5614. .mdi-percent:before {
  5615. content: "\F3F0";
  5616. }
  5617. .mdi-pharmacy:before {
  5618. content: "\F3F1";
  5619. }
  5620. .mdi-phone:before {
  5621. content: "\F3F2";
  5622. }
  5623. .mdi-phone-bluetooth:before {
  5624. content: "\F3F3";
  5625. }
  5626. .mdi-phone-classic:before {
  5627. content: "\F602";
  5628. }
  5629. .mdi-phone-forward:before {
  5630. content: "\F3F4";
  5631. }
  5632. .mdi-phone-hangup:before {
  5633. content: "\F3F5";
  5634. }
  5635. .mdi-phone-in-talk:before {
  5636. content: "\F3F6";
  5637. }
  5638. .mdi-phone-incoming:before {
  5639. content: "\F3F7";
  5640. }
  5641. .mdi-phone-locked:before {
  5642. content: "\F3F8";
  5643. }
  5644. .mdi-phone-log:before {
  5645. content: "\F3F9";
  5646. }
  5647. .mdi-phone-minus:before {
  5648. content: "\F658";
  5649. }
  5650. .mdi-phone-missed:before {
  5651. content: "\F3FA";
  5652. }
  5653. .mdi-phone-outgoing:before {
  5654. content: "\F3FB";
  5655. }
  5656. .mdi-phone-paused:before {
  5657. content: "\F3FC";
  5658. }
  5659. .mdi-phone-plus:before {
  5660. content: "\F659";
  5661. }
  5662. .mdi-phone-settings:before {
  5663. content: "\F3FD";
  5664. }
  5665. .mdi-phone-voip:before {
  5666. content: "\F3FE";
  5667. }
  5668. .mdi-pi:before {
  5669. content: "\F3FF";
  5670. }
  5671. .mdi-pi-box:before {
  5672. content: "\F400";
  5673. }
  5674. .mdi-pig:before {
  5675. content: "\F401";
  5676. }
  5677. .mdi-pill:before {
  5678. content: "\F402";
  5679. }
  5680. .mdi-pin:before {
  5681. content: "\F403";
  5682. }
  5683. .mdi-pin-off:before {
  5684. content: "\F404";
  5685. }
  5686. .mdi-pine-tree:before {
  5687. content: "\F405";
  5688. }
  5689. .mdi-pine-tree-box:before {
  5690. content: "\F406";
  5691. }
  5692. .mdi-pinterest:before {
  5693. content: "\F407";
  5694. }
  5695. .mdi-pinterest-box:before {
  5696. content: "\F408";
  5697. }
  5698. .mdi-pizza:before {
  5699. content: "\F409";
  5700. }
  5701. .mdi-play:before {
  5702. content: "\F40A";
  5703. }
  5704. .mdi-play-box-outline:before {
  5705. content: "\F40B";
  5706. }
  5707. .mdi-play-circle:before {
  5708. content: "\F40C";
  5709. }
  5710. .mdi-play-circle-outline:before {
  5711. content: "\F40D";
  5712. }
  5713. .mdi-play-pause:before {
  5714. content: "\F40E";
  5715. }
  5716. .mdi-play-protected-content:before {
  5717. content: "\F40F";
  5718. }
  5719. .mdi-playlist-check:before {
  5720. content: "\F5C7";
  5721. }
  5722. .mdi-playlist-minus:before {
  5723. content: "\F410";
  5724. }
  5725. .mdi-playlist-play:before {
  5726. content: "\F411";
  5727. }
  5728. .mdi-playlist-plus:before {
  5729. content: "\F412";
  5730. }
  5731. .mdi-playlist-remove:before {
  5732. content: "\F413";
  5733. }
  5734. .mdi-playstation:before {
  5735. content: "\F414";
  5736. }
  5737. .mdi-plus:before {
  5738. content: "\F415";
  5739. }
  5740. .mdi-plus-box:before {
  5741. content: "\F416";
  5742. }
  5743. .mdi-plus-circle:before {
  5744. content: "\F417";
  5745. }
  5746. .mdi-plus-circle-multiple-outline:before {
  5747. content: "\F418";
  5748. }
  5749. .mdi-plus-circle-outline:before {
  5750. content: "\F419";
  5751. }
  5752. .mdi-plus-network:before {
  5753. content: "\F41A";
  5754. }
  5755. .mdi-plus-one:before {
  5756. content: "\F41B";
  5757. }
  5758. .mdi-pocket:before {
  5759. content: "\F41C";
  5760. }
  5761. .mdi-pokeball:before {
  5762. content: "\F41D";
  5763. }
  5764. .mdi-polaroid:before {
  5765. content: "\F41E";
  5766. }
  5767. .mdi-poll:before {
  5768. content: "\F41F";
  5769. }
  5770. .mdi-poll-box:before {
  5771. content: "\F420";
  5772. }
  5773. .mdi-polymer:before {
  5774. content: "\F421";
  5775. }
  5776. .mdi-pool:before {
  5777. content: "\F606";
  5778. }
  5779. .mdi-popcorn:before {
  5780. content: "\F422";
  5781. }
  5782. .mdi-pot:before {
  5783. content: "\F65A";
  5784. }
  5785. .mdi-pot-mix:before {
  5786. content: "\F65B";
  5787. }
  5788. .mdi-pound:before {
  5789. content: "\F423";
  5790. }
  5791. .mdi-pound-box:before {
  5792. content: "\F424";
  5793. }
  5794. .mdi-power:before {
  5795. content: "\F425";
  5796. }
  5797. .mdi-power-settings:before {
  5798. content: "\F426";
  5799. }
  5800. .mdi-power-socket:before {
  5801. content: "\F427";
  5802. }
  5803. .mdi-presentation:before {
  5804. content: "\F428";
  5805. }
  5806. .mdi-presentation-play:before {
  5807. content: "\F429";
  5808. }
  5809. .mdi-printer:before {
  5810. content: "\F42A";
  5811. }
  5812. .mdi-printer-3d:before {
  5813. content: "\F42B";
  5814. }
  5815. .mdi-printer-alert:before {
  5816. content: "\F42C";
  5817. }
  5818. .mdi-priority-high:before {
  5819. content: "\F603";
  5820. }
  5821. .mdi-priority-low:before {
  5822. content: "\F604";
  5823. }
  5824. .mdi-professional-hexagon:before {
  5825. content: "\F42D";
  5826. }
  5827. .mdi-projector:before {
  5828. content: "\F42E";
  5829. }
  5830. .mdi-projector-screen:before {
  5831. content: "\F42F";
  5832. }
  5833. .mdi-pulse:before {
  5834. content: "\F430";
  5835. }
  5836. .mdi-puzzle:before {
  5837. content: "\F431";
  5838. }
  5839. .mdi-qqchat:before {
  5840. content: "\F605";
  5841. }
  5842. .mdi-qrcode:before {
  5843. content: "\F432";
  5844. }
  5845. .mdi-qrcode-scan:before {
  5846. content: "\F433";
  5847. }
  5848. .mdi-quadcopter:before {
  5849. content: "\F434";
  5850. }
  5851. .mdi-quality-high:before {
  5852. content: "\F435";
  5853. }
  5854. .mdi-quicktime:before {
  5855. content: "\F436";
  5856. }
  5857. .mdi-radar:before {
  5858. content: "\F437";
  5859. }
  5860. .mdi-radiator:before {
  5861. content: "\F438";
  5862. }
  5863. .mdi-radio:before {
  5864. content: "\F439";
  5865. }
  5866. .mdi-radio-handheld:before {
  5867. content: "\F43A";
  5868. }
  5869. .mdi-radio-tower:before {
  5870. content: "\F43B";
  5871. }
  5872. .mdi-radioactive:before {
  5873. content: "\F43C";
  5874. }
  5875. .mdi-radiobox-blank:before {
  5876. content: "\F43D";
  5877. }
  5878. .mdi-radiobox-marked:before {
  5879. content: "\F43E";
  5880. }
  5881. .mdi-raspberrypi:before {
  5882. content: "\F43F";
  5883. }
  5884. .mdi-ray-end:before {
  5885. content: "\F440";
  5886. }
  5887. .mdi-ray-end-arrow:before {
  5888. content: "\F441";
  5889. }
  5890. .mdi-ray-start:before {
  5891. content: "\F442";
  5892. }
  5893. .mdi-ray-start-arrow:before {
  5894. content: "\F443";
  5895. }
  5896. .mdi-ray-start-end:before {
  5897. content: "\F444";
  5898. }
  5899. .mdi-ray-vertex:before {
  5900. content: "\F445";
  5901. }
  5902. .mdi-rdio:before {
  5903. content: "\F446";
  5904. }
  5905. .mdi-read:before {
  5906. content: "\F447";
  5907. }
  5908. .mdi-readability:before {
  5909. content: "\F448";
  5910. }
  5911. .mdi-receipt:before {
  5912. content: "\F449";
  5913. }
  5914. .mdi-record:before {
  5915. content: "\F44A";
  5916. }
  5917. .mdi-record-rec:before {
  5918. content: "\F44B";
  5919. }
  5920. .mdi-recycle:before {
  5921. content: "\F44C";
  5922. }
  5923. .mdi-reddit:before {
  5924. content: "\F44D";
  5925. }
  5926. .mdi-redo:before {
  5927. content: "\F44E";
  5928. }
  5929. .mdi-redo-variant:before {
  5930. content: "\F44F";
  5931. }
  5932. .mdi-refresh:before {
  5933. content: "\F450";
  5934. }
  5935. .mdi-regex:before {
  5936. content: "\F451";
  5937. }
  5938. .mdi-relative-scale:before {
  5939. content: "\F452";
  5940. }
  5941. .mdi-reload:before {
  5942. content: "\F453";
  5943. }
  5944. .mdi-remote:before {
  5945. content: "\F454";
  5946. }
  5947. .mdi-rename-box:before {
  5948. content: "\F455";
  5949. }
  5950. .mdi-repeat:before {
  5951. content: "\F456";
  5952. }
  5953. .mdi-repeat-off:before {
  5954. content: "\F457";
  5955. }
  5956. .mdi-repeat-once:before {
  5957. content: "\F458";
  5958. }
  5959. .mdi-replay:before {
  5960. content: "\F459";
  5961. }
  5962. .mdi-reply:before {
  5963. content: "\F45A";
  5964. }
  5965. .mdi-reply-all:before {
  5966. content: "\F45B";
  5967. }
  5968. .mdi-reproduction:before {
  5969. content: "\F45C";
  5970. }
  5971. .mdi-resize-bottom-right:before {
  5972. content: "\F45D";
  5973. }
  5974. .mdi-responsive:before {
  5975. content: "\F45E";
  5976. }
  5977. .mdi-rewind:before {
  5978. content: "\F45F";
  5979. }
  5980. .mdi-ribbon:before {
  5981. content: "\F460";
  5982. }
  5983. .mdi-road:before {
  5984. content: "\F461";
  5985. }
  5986. .mdi-road-variant:before {
  5987. content: "\F462";
  5988. }
  5989. .mdi-rocket:before {
  5990. content: "\F463";
  5991. }
  5992. .mdi-rotate-3d:before {
  5993. content: "\F464";
  5994. }
  5995. .mdi-rotate-left:before {
  5996. content: "\F465";
  5997. }
  5998. .mdi-rotate-left-variant:before {
  5999. content: "\F466";
  6000. }
  6001. .mdi-rotate-right:before {
  6002. content: "\F467";
  6003. }
  6004. .mdi-rotate-right-variant:before {
  6005. content: "\F468";
  6006. }
  6007. .mdi-rounded-corner:before {
  6008. content: "\F607";
  6009. }
  6010. .mdi-router-wireless:before {
  6011. content: "\F469";
  6012. }
  6013. .mdi-routes:before {
  6014. content: "\F46A";
  6015. }
  6016. .mdi-rowing:before {
  6017. content: "\F608";
  6018. }
  6019. .mdi-rss:before {
  6020. content: "\F46B";
  6021. }
  6022. .mdi-rss-box:before {
  6023. content: "\F46C";
  6024. }
  6025. .mdi-ruler:before {
  6026. content: "\F46D";
  6027. }
  6028. .mdi-run:before {
  6029. content: "\F46E";
  6030. }
  6031. .mdi-sale:before {
  6032. content: "\F46F";
  6033. }
  6034. .mdi-satellite:before {
  6035. content: "\F470";
  6036. }
  6037. .mdi-satellite-variant:before {
  6038. content: "\F471";
  6039. }
  6040. .mdi-saxophone:before {
  6041. content: "\F609";
  6042. }
  6043. .mdi-scale:before {
  6044. content: "\F472";
  6045. }
  6046. .mdi-scale-balance:before {
  6047. content: "\F5D1";
  6048. }
  6049. .mdi-scale-bathroom:before {
  6050. content: "\F473";
  6051. }
  6052. .mdi-school:before {
  6053. content: "\F474";
  6054. }
  6055. .mdi-screen-rotation:before {
  6056. content: "\F475";
  6057. }
  6058. .mdi-screen-rotation-lock:before {
  6059. content: "\F476";
  6060. }
  6061. .mdi-screwdriver:before {
  6062. content: "\F477";
  6063. }
  6064. .mdi-script:before {
  6065. content: "\F478";
  6066. }
  6067. .mdi-sd:before {
  6068. content: "\F479";
  6069. }
  6070. .mdi-seal:before {
  6071. content: "\F47A";
  6072. }
  6073. .mdi-seat-flat:before {
  6074. content: "\F47B";
  6075. }
  6076. .mdi-seat-flat-angled:before {
  6077. content: "\F47C";
  6078. }
  6079. .mdi-seat-individual-suite:before {
  6080. content: "\F47D";
  6081. }
  6082. .mdi-seat-legroom-extra:before {
  6083. content: "\F47E";
  6084. }
  6085. .mdi-seat-legroom-normal:before {
  6086. content: "\F47F";
  6087. }
  6088. .mdi-seat-legroom-reduced:before {
  6089. content: "\F480";
  6090. }
  6091. .mdi-seat-recline-extra:before {
  6092. content: "\F481";
  6093. }
  6094. .mdi-seat-recline-normal:before {
  6095. content: "\F482";
  6096. }
  6097. .mdi-security:before {
  6098. content: "\F483";
  6099. }
  6100. .mdi-security-network:before {
  6101. content: "\F484";
  6102. }
  6103. .mdi-select:before {
  6104. content: "\F485";
  6105. }
  6106. .mdi-select-all:before {
  6107. content: "\F486";
  6108. }
  6109. .mdi-select-inverse:before {
  6110. content: "\F487";
  6111. }
  6112. .mdi-select-off:before {
  6113. content: "\F488";
  6114. }
  6115. .mdi-selection:before {
  6116. content: "\F489";
  6117. }
  6118. .mdi-send:before {
  6119. content: "\F48A";
  6120. }
  6121. .mdi-serial-port:before {
  6122. content: "\F65C";
  6123. }
  6124. .mdi-server:before {
  6125. content: "\F48B";
  6126. }
  6127. .mdi-server-minus:before {
  6128. content: "\F48C";
  6129. }
  6130. .mdi-server-network:before {
  6131. content: "\F48D";
  6132. }
  6133. .mdi-server-network-off:before {
  6134. content: "\F48E";
  6135. }
  6136. .mdi-server-off:before {
  6137. content: "\F48F";
  6138. }
  6139. .mdi-server-plus:before {
  6140. content: "\F490";
  6141. }
  6142. .mdi-server-remove:before {
  6143. content: "\F491";
  6144. }
  6145. .mdi-server-security:before {
  6146. content: "\F492";
  6147. }
  6148. .mdi-settings:before {
  6149. content: "\F493";
  6150. }
  6151. .mdi-settings-box:before {
  6152. content: "\F494";
  6153. }
  6154. .mdi-shape-circle-plus:before {
  6155. content: "\F65D";
  6156. }
  6157. .mdi-shape-plus:before {
  6158. content: "\F495";
  6159. }
  6160. .mdi-shape-polygon-plus:before {
  6161. content: "\F65E";
  6162. }
  6163. .mdi-shape-rectangle-plus:before {
  6164. content: "\F65F";
  6165. }
  6166. .mdi-shape-square-plus:before {
  6167. content: "\F660";
  6168. }
  6169. .mdi-share:before {
  6170. content: "\F496";
  6171. }
  6172. .mdi-share-variant:before {
  6173. content: "\F497";
  6174. }
  6175. .mdi-shield:before {
  6176. content: "\F498";
  6177. }
  6178. .mdi-shield-outline:before {
  6179. content: "\F499";
  6180. }
  6181. .mdi-shopping:before {
  6182. content: "\F49A";
  6183. }
  6184. .mdi-shopping-music:before {
  6185. content: "\F49B";
  6186. }
  6187. .mdi-shredder:before {
  6188. content: "\F49C";
  6189. }
  6190. .mdi-shuffle:before {
  6191. content: "\F49D";
  6192. }
  6193. .mdi-shuffle-disabled:before {
  6194. content: "\F49E";
  6195. }
  6196. .mdi-shuffle-variant:before {
  6197. content: "\F49F";
  6198. }
  6199. .mdi-sigma:before {
  6200. content: "\F4A0";
  6201. }
  6202. .mdi-sigma-lower:before {
  6203. content: "\F62B";
  6204. }
  6205. .mdi-sign-caution:before {
  6206. content: "\F4A1";
  6207. }
  6208. .mdi-signal:before {
  6209. content: "\F4A2";
  6210. }
  6211. .mdi-signal-variant:before {
  6212. content: "\F60A";
  6213. }
  6214. .mdi-silverware:before {
  6215. content: "\F4A3";
  6216. }
  6217. .mdi-silverware-fork:before {
  6218. content: "\F4A4";
  6219. }
  6220. .mdi-silverware-spoon:before {
  6221. content: "\F4A5";
  6222. }
  6223. .mdi-silverware-variant:before {
  6224. content: "\F4A6";
  6225. }
  6226. .mdi-sim:before {
  6227. content: "\F4A7";
  6228. }
  6229. .mdi-sim-alert:before {
  6230. content: "\F4A8";
  6231. }
  6232. .mdi-sim-off:before {
  6233. content: "\F4A9";
  6234. }
  6235. .mdi-sitemap:before {
  6236. content: "\F4AA";
  6237. }
  6238. .mdi-skip-backward:before {
  6239. content: "\F4AB";
  6240. }
  6241. .mdi-skip-forward:before {
  6242. content: "\F4AC";
  6243. }
  6244. .mdi-skip-next:before {
  6245. content: "\F4AD";
  6246. }
  6247. .mdi-skip-next-circle:before {
  6248. content: "\F661";
  6249. }
  6250. .mdi-skip-next-circle-outline:before {
  6251. content: "\F662";
  6252. }
  6253. .mdi-skip-previous:before {
  6254. content: "\F4AE";
  6255. }
  6256. .mdi-skip-previous-circle:before {
  6257. content: "\F663";
  6258. }
  6259. .mdi-skip-previous-circle-outline:before {
  6260. content: "\F664";
  6261. }
  6262. .mdi-skype:before {
  6263. content: "\F4AF";
  6264. }
  6265. .mdi-skype-business:before {
  6266. content: "\F4B0";
  6267. }
  6268. .mdi-slack:before {
  6269. content: "\F4B1";
  6270. }
  6271. .mdi-sleep:before {
  6272. content: "\F4B2";
  6273. }
  6274. .mdi-sleep-off:before {
  6275. content: "\F4B3";
  6276. }
  6277. .mdi-smoking:before {
  6278. content: "\F4B4";
  6279. }
  6280. .mdi-smoking-off:before {
  6281. content: "\F4B5";
  6282. }
  6283. .mdi-snapchat:before {
  6284. content: "\F4B6";
  6285. }
  6286. .mdi-snowman:before {
  6287. content: "\F4B7";
  6288. }
  6289. .mdi-soccer:before {
  6290. content: "\F4B8";
  6291. }
  6292. .mdi-sofa:before {
  6293. content: "\F4B9";
  6294. }
  6295. .mdi-sort:before {
  6296. content: "\F4BA";
  6297. }
  6298. .mdi-sort-alphabetical:before {
  6299. content: "\F4BB";
  6300. }
  6301. .mdi-sort-ascending:before {
  6302. content: "\F4BC";
  6303. }
  6304. .mdi-sort-descending:before {
  6305. content: "\F4BD";
  6306. }
  6307. .mdi-sort-numeric:before {
  6308. content: "\F4BE";
  6309. }
  6310. .mdi-sort-variant:before {
  6311. content: "\F4BF";
  6312. }
  6313. .mdi-soundcloud:before {
  6314. content: "\F4C0";
  6315. }
  6316. .mdi-source-branch:before {
  6317. content: "\F62C";
  6318. }
  6319. .mdi-source-fork:before {
  6320. content: "\F4C1";
  6321. }
  6322. .mdi-source-merge:before {
  6323. content: "\F62D";
  6324. }
  6325. .mdi-source-pull:before {
  6326. content: "\F4C2";
  6327. }
  6328. .mdi-speaker:before {
  6329. content: "\F4C3";
  6330. }
  6331. .mdi-speaker-off:before {
  6332. content: "\F4C4";
  6333. }
  6334. .mdi-speedometer:before {
  6335. content: "\F4C5";
  6336. }
  6337. .mdi-spellcheck:before {
  6338. content: "\F4C6";
  6339. }
  6340. .mdi-spotify:before {
  6341. content: "\F4C7";
  6342. }
  6343. .mdi-spotlight:before {
  6344. content: "\F4C8";
  6345. }
  6346. .mdi-spotlight-beam:before {
  6347. content: "\F4C9";
  6348. }
  6349. .mdi-spray:before {
  6350. content: "\F665";
  6351. }
  6352. .mdi-square-inc:before {
  6353. content: "\F4CA";
  6354. }
  6355. .mdi-square-inc-cash:before {
  6356. content: "\F4CB";
  6357. }
  6358. .mdi-stackexchange:before {
  6359. content: "\F60B";
  6360. }
  6361. .mdi-stackoverflow:before {
  6362. content: "\F4CC";
  6363. }
  6364. .mdi-stairs:before {
  6365. content: "\F4CD";
  6366. }
  6367. .mdi-star:before {
  6368. content: "\F4CE";
  6369. }
  6370. .mdi-star-circle:before {
  6371. content: "\F4CF";
  6372. }
  6373. .mdi-star-half:before {
  6374. content: "\F4D0";
  6375. }
  6376. .mdi-star-off:before {
  6377. content: "\F4D1";
  6378. }
  6379. .mdi-star-outline:before {
  6380. content: "\F4D2";
  6381. }
  6382. .mdi-steam:before {
  6383. content: "\F4D3";
  6384. }
  6385. .mdi-steering:before {
  6386. content: "\F4D4";
  6387. }
  6388. .mdi-step-backward:before {
  6389. content: "\F4D5";
  6390. }
  6391. .mdi-step-backward-2:before {
  6392. content: "\F4D6";
  6393. }
  6394. .mdi-step-forward:before {
  6395. content: "\F4D7";
  6396. }
  6397. .mdi-step-forward-2:before {
  6398. content: "\F4D8";
  6399. }
  6400. .mdi-stethoscope:before {
  6401. content: "\F4D9";
  6402. }
  6403. .mdi-sticker:before {
  6404. content: "\F5D0";
  6405. }
  6406. .mdi-stocking:before {
  6407. content: "\F4DA";
  6408. }
  6409. .mdi-stop:before {
  6410. content: "\F4DB";
  6411. }
  6412. .mdi-stop-circle:before {
  6413. content: "\F666";
  6414. }
  6415. .mdi-stop-circle-outline:before {
  6416. content: "\F667";
  6417. }
  6418. .mdi-store:before {
  6419. content: "\F4DC";
  6420. }
  6421. .mdi-store-24-hour:before {
  6422. content: "\F4DD";
  6423. }
  6424. .mdi-stove:before {
  6425. content: "\F4DE";
  6426. }
  6427. .mdi-subdirectory-arrow-left:before {
  6428. content: "\F60C";
  6429. }
  6430. .mdi-subdirectory-arrow-right:before {
  6431. content: "\F60D";
  6432. }
  6433. .mdi-subway:before {
  6434. content: "\F4DF";
  6435. }
  6436. .mdi-sunglasses:before {
  6437. content: "\F4E0";
  6438. }
  6439. .mdi-surround-sound:before {
  6440. content: "\F5C5";
  6441. }
  6442. .mdi-swap-horizontal:before {
  6443. content: "\F4E1";
  6444. }
  6445. .mdi-swap-vertical:before {
  6446. content: "\F4E2";
  6447. }
  6448. .mdi-swim:before {
  6449. content: "\F4E3";
  6450. }
  6451. .mdi-switch:before {
  6452. content: "\F4E4";
  6453. }
  6454. .mdi-sword:before {
  6455. content: "\F4E5";
  6456. }
  6457. .mdi-sync:before {
  6458. content: "\F4E6";
  6459. }
  6460. .mdi-sync-alert:before {
  6461. content: "\F4E7";
  6462. }
  6463. .mdi-sync-off:before {
  6464. content: "\F4E8";
  6465. }
  6466. .mdi-tab:before {
  6467. content: "\F4E9";
  6468. }
  6469. .mdi-tab-unselected:before {
  6470. content: "\F4EA";
  6471. }
  6472. .mdi-table:before {
  6473. content: "\F4EB";
  6474. }
  6475. .mdi-table-column-plus-after:before {
  6476. content: "\F4EC";
  6477. }
  6478. .mdi-table-column-plus-before:before {
  6479. content: "\F4ED";
  6480. }
  6481. .mdi-table-column-remove:before {
  6482. content: "\F4EE";
  6483. }
  6484. .mdi-table-column-width:before {
  6485. content: "\F4EF";
  6486. }
  6487. .mdi-table-edit:before {
  6488. content: "\F4F0";
  6489. }
  6490. .mdi-table-large:before {
  6491. content: "\F4F1";
  6492. }
  6493. .mdi-table-row-height:before {
  6494. content: "\F4F2";
  6495. }
  6496. .mdi-table-row-plus-after:before {
  6497. content: "\F4F3";
  6498. }
  6499. .mdi-table-row-plus-before:before {
  6500. content: "\F4F4";
  6501. }
  6502. .mdi-table-row-remove:before {
  6503. content: "\F4F5";
  6504. }
  6505. .mdi-tablet:before {
  6506. content: "\F4F6";
  6507. }
  6508. .mdi-tablet-android:before {
  6509. content: "\F4F7";
  6510. }
  6511. .mdi-tablet-ipad:before {
  6512. content: "\F4F8";
  6513. }
  6514. .mdi-tag:before {
  6515. content: "\F4F9";
  6516. }
  6517. .mdi-tag-faces:before {
  6518. content: "\F4FA";
  6519. }
  6520. .mdi-tag-multiple:before {
  6521. content: "\F4FB";
  6522. }
  6523. .mdi-tag-outline:before {
  6524. content: "\F4FC";
  6525. }
  6526. .mdi-tag-text-outline:before {
  6527. content: "\F4FD";
  6528. }
  6529. .mdi-target:before {
  6530. content: "\F4FE";
  6531. }
  6532. .mdi-taxi:before {
  6533. content: "\F4FF";
  6534. }
  6535. .mdi-teamviewer:before {
  6536. content: "\F500";
  6537. }
  6538. .mdi-telegram:before {
  6539. content: "\F501";
  6540. }
  6541. .mdi-television:before {
  6542. content: "\F502";
  6543. }
  6544. .mdi-television-guide:before {
  6545. content: "\F503";
  6546. }
  6547. .mdi-temperature-celsius:before {
  6548. content: "\F504";
  6549. }
  6550. .mdi-temperature-fahrenheit:before {
  6551. content: "\F505";
  6552. }
  6553. .mdi-temperature-kelvin:before {
  6554. content: "\F506";
  6555. }
  6556. .mdi-tennis:before {
  6557. content: "\F507";
  6558. }
  6559. .mdi-tent:before {
  6560. content: "\F508";
  6561. }
  6562. .mdi-terrain:before {
  6563. content: "\F509";
  6564. }
  6565. .mdi-test-tube:before {
  6566. content: "\F668";
  6567. }
  6568. .mdi-text-shadow:before {
  6569. content: "\F669";
  6570. }
  6571. .mdi-text-to-speech:before {
  6572. content: "\F50A";
  6573. }
  6574. .mdi-text-to-speech-off:before {
  6575. content: "\F50B";
  6576. }
  6577. .mdi-textbox:before {
  6578. content: "\F60E";
  6579. }
  6580. .mdi-texture:before {
  6581. content: "\F50C";
  6582. }
  6583. .mdi-theater:before {
  6584. content: "\F50D";
  6585. }
  6586. .mdi-theme-light-dark:before {
  6587. content: "\F50E";
  6588. }
  6589. .mdi-thermometer:before {
  6590. content: "\F50F";
  6591. }
  6592. .mdi-thermometer-lines:before {
  6593. content: "\F510";
  6594. }
  6595. .mdi-thumb-down:before {
  6596. content: "\F511";
  6597. }
  6598. .mdi-thumb-down-outline:before {
  6599. content: "\F512";
  6600. }
  6601. .mdi-thumb-up:before {
  6602. content: "\F513";
  6603. }
  6604. .mdi-thumb-up-outline:before {
  6605. content: "\F514";
  6606. }
  6607. .mdi-thumbs-up-down:before {
  6608. content: "\F515";
  6609. }
  6610. .mdi-ticket:before {
  6611. content: "\F516";
  6612. }
  6613. .mdi-ticket-account:before {
  6614. content: "\F517";
  6615. }
  6616. .mdi-ticket-confirmation:before {
  6617. content: "\F518";
  6618. }
  6619. .mdi-tie:before {
  6620. content: "\F519";
  6621. }
  6622. .mdi-timelapse:before {
  6623. content: "\F51A";
  6624. }
  6625. .mdi-timer:before {
  6626. content: "\F51B";
  6627. }
  6628. .mdi-timer-10:before {
  6629. content: "\F51C";
  6630. }
  6631. .mdi-timer-3:before {
  6632. content: "\F51D";
  6633. }
  6634. .mdi-timer-off:before {
  6635. content: "\F51E";
  6636. }
  6637. .mdi-timer-sand:before {
  6638. content: "\F51F";
  6639. }
  6640. .mdi-timetable:before {
  6641. content: "\F520";
  6642. }
  6643. .mdi-toggle-switch:before {
  6644. content: "\F521";
  6645. }
  6646. .mdi-toggle-switch-off:before {
  6647. content: "\F522";
  6648. }
  6649. .mdi-tooltip:before {
  6650. content: "\F523";
  6651. }
  6652. .mdi-tooltip-edit:before {
  6653. content: "\F524";
  6654. }
  6655. .mdi-tooltip-image:before {
  6656. content: "\F525";
  6657. }
  6658. .mdi-tooltip-outline:before {
  6659. content: "\F526";
  6660. }
  6661. .mdi-tooltip-outline-plus:before {
  6662. content: "\F527";
  6663. }
  6664. .mdi-tooltip-text:before {
  6665. content: "\F528";
  6666. }
  6667. .mdi-tooth:before {
  6668. content: "\F529";
  6669. }
  6670. .mdi-tor:before {
  6671. content: "\F52A";
  6672. }
  6673. .mdi-traffic-light:before {
  6674. content: "\F52B";
  6675. }
  6676. .mdi-train:before {
  6677. content: "\F52C";
  6678. }
  6679. .mdi-tram:before {
  6680. content: "\F52D";
  6681. }
  6682. .mdi-transcribe:before {
  6683. content: "\F52E";
  6684. }
  6685. .mdi-transcribe-close:before {
  6686. content: "\F52F";
  6687. }
  6688. .mdi-transfer:before {
  6689. content: "\F530";
  6690. }
  6691. .mdi-translate:before {
  6692. content: "\F5CA";
  6693. }
  6694. .mdi-tree:before {
  6695. content: "\F531";
  6696. }
  6697. .mdi-trello:before {
  6698. content: "\F532";
  6699. }
  6700. .mdi-trending-down:before {
  6701. content: "\F533";
  6702. }
  6703. .mdi-trending-neutral:before {
  6704. content: "\F534";
  6705. }
  6706. .mdi-trending-up:before {
  6707. content: "\F535";
  6708. }
  6709. .mdi-triangle:before {
  6710. content: "\F536";
  6711. }
  6712. .mdi-triangle-outline:before {
  6713. content: "\F537";
  6714. }
  6715. .mdi-trophy:before {
  6716. content: "\F538";
  6717. }
  6718. .mdi-trophy-award:before {
  6719. content: "\F539";
  6720. }
  6721. .mdi-trophy-outline:before {
  6722. content: "\F53A";
  6723. }
  6724. .mdi-trophy-variant:before {
  6725. content: "\F53B";
  6726. }
  6727. .mdi-trophy-variant-outline:before {
  6728. content: "\F53C";
  6729. }
  6730. .mdi-truck:before {
  6731. content: "\F53D";
  6732. }
  6733. .mdi-truck-delivery:before {
  6734. content: "\F53E";
  6735. }
  6736. .mdi-tshirt-crew:before {
  6737. content: "\F53F";
  6738. }
  6739. .mdi-tshirt-v:before {
  6740. content: "\F540";
  6741. }
  6742. .mdi-tumblr:before {
  6743. content: "\F541";
  6744. }
  6745. .mdi-tumblr-reblog:before {
  6746. content: "\F542";
  6747. }
  6748. .mdi-tune:before {
  6749. content: "\F62E";
  6750. }
  6751. .mdi-tune-vertical:before {
  6752. content: "\F66A";
  6753. }
  6754. .mdi-twitch:before {
  6755. content: "\F543";
  6756. }
  6757. .mdi-twitter:before {
  6758. content: "\F544";
  6759. }
  6760. .mdi-twitter-box:before {
  6761. content: "\F545";
  6762. }
  6763. .mdi-twitter-circle:before {
  6764. content: "\F546";
  6765. }
  6766. .mdi-twitter-retweet:before {
  6767. content: "\F547";
  6768. }
  6769. .mdi-ubuntu:before {
  6770. content: "\F548";
  6771. }
  6772. .mdi-umbraco:before {
  6773. content: "\F549";
  6774. }
  6775. .mdi-umbrella:before {
  6776. content: "\F54A";
  6777. }
  6778. .mdi-umbrella-outline:before {
  6779. content: "\F54B";
  6780. }
  6781. .mdi-undo:before {
  6782. content: "\F54C";
  6783. }
  6784. .mdi-undo-variant:before {
  6785. content: "\F54D";
  6786. }
  6787. .mdi-unfold-less:before {
  6788. content: "\F54E";
  6789. }
  6790. .mdi-unfold-more:before {
  6791. content: "\F54F";
  6792. }
  6793. .mdi-ungroup:before {
  6794. content: "\F550";
  6795. }
  6796. .mdi-untappd:before {
  6797. content: "\F551";
  6798. }
  6799. .mdi-upload:before {
  6800. content: "\F552";
  6801. }
  6802. .mdi-usb:before {
  6803. content: "\F553";
  6804. }
  6805. .mdi-vector-arrange-above:before {
  6806. content: "\F554";
  6807. }
  6808. .mdi-vector-arrange-below:before {
  6809. content: "\F555";
  6810. }
  6811. .mdi-vector-circle:before {
  6812. content: "\F556";
  6813. }
  6814. .mdi-vector-circle-variant:before {
  6815. content: "\F557";
  6816. }
  6817. .mdi-vector-combine:before {
  6818. content: "\F558";
  6819. }
  6820. .mdi-vector-curve:before {
  6821. content: "\F559";
  6822. }
  6823. .mdi-vector-difference:before {
  6824. content: "\F55A";
  6825. }
  6826. .mdi-vector-difference-ab:before {
  6827. content: "\F55B";
  6828. }
  6829. .mdi-vector-difference-ba:before {
  6830. content: "\F55C";
  6831. }
  6832. .mdi-vector-intersection:before {
  6833. content: "\F55D";
  6834. }
  6835. .mdi-vector-line:before {
  6836. content: "\F55E";
  6837. }
  6838. .mdi-vector-point:before {
  6839. content: "\F55F";
  6840. }
  6841. .mdi-vector-polygon:before {
  6842. content: "\F560";
  6843. }
  6844. .mdi-vector-polyline:before {
  6845. content: "\F561";
  6846. }
  6847. .mdi-vector-rectangle:before {
  6848. content: "\F5C6";
  6849. }
  6850. .mdi-vector-selection:before {
  6851. content: "\F562";
  6852. }
  6853. .mdi-vector-square:before {
  6854. content: "\F001";
  6855. }
  6856. .mdi-vector-triangle:before {
  6857. content: "\F563";
  6858. }
  6859. .mdi-vector-union:before {
  6860. content: "\F564";
  6861. }
  6862. .mdi-verified:before {
  6863. content: "\F565";
  6864. }
  6865. .mdi-vibrate:before {
  6866. content: "\F566";
  6867. }
  6868. .mdi-video:before {
  6869. content: "\F567";
  6870. }
  6871. .mdi-video-off:before {
  6872. content: "\F568";
  6873. }
  6874. .mdi-video-switch:before {
  6875. content: "\F569";
  6876. }
  6877. .mdi-view-agenda:before {
  6878. content: "\F56A";
  6879. }
  6880. .mdi-view-array:before {
  6881. content: "\F56B";
  6882. }
  6883. .mdi-view-carousel:before {
  6884. content: "\F56C";
  6885. }
  6886. .mdi-view-column:before {
  6887. content: "\F56D";
  6888. }
  6889. .mdi-view-dashboard:before {
  6890. content: "\F56E";
  6891. }
  6892. .mdi-view-day:before {
  6893. content: "\F56F";
  6894. }
  6895. .mdi-view-grid:before {
  6896. content: "\F570";
  6897. }
  6898. .mdi-view-headline:before {
  6899. content: "\F571";
  6900. }
  6901. .mdi-view-list:before {
  6902. content: "\F572";
  6903. }
  6904. .mdi-view-module:before {
  6905. content: "\F573";
  6906. }
  6907. .mdi-view-quilt:before {
  6908. content: "\F574";
  6909. }
  6910. .mdi-view-stream:before {
  6911. content: "\F575";
  6912. }
  6913. .mdi-view-week:before {
  6914. content: "\F576";
  6915. }
  6916. .mdi-vimeo:before {
  6917. content: "\F577";
  6918. }
  6919. .mdi-vine:before {
  6920. content: "\F578";
  6921. }
  6922. .mdi-violin:before {
  6923. content: "\F60F";
  6924. }
  6925. .mdi-visualstudio:before {
  6926. content: "\F610";
  6927. }
  6928. .mdi-vk:before {
  6929. content: "\F579";
  6930. }
  6931. .mdi-vk-box:before {
  6932. content: "\F57A";
  6933. }
  6934. .mdi-vk-circle:before {
  6935. content: "\F57B";
  6936. }
  6937. .mdi-vlc:before {
  6938. content: "\F57C";
  6939. }
  6940. .mdi-voice:before {
  6941. content: "\F5CB";
  6942. }
  6943. .mdi-voicemail:before {
  6944. content: "\F57D";
  6945. }
  6946. .mdi-volume-high:before {
  6947. content: "\F57E";
  6948. }
  6949. .mdi-volume-low:before {
  6950. content: "\F57F";
  6951. }
  6952. .mdi-volume-medium:before {
  6953. content: "\F580";
  6954. }
  6955. .mdi-volume-off:before {
  6956. content: "\F581";
  6957. }
  6958. .mdi-vpn:before {
  6959. content: "\F582";
  6960. }
  6961. .mdi-walk:before {
  6962. content: "\F583";
  6963. }
  6964. .mdi-wallet:before {
  6965. content: "\F584";
  6966. }
  6967. .mdi-wallet-giftcard:before {
  6968. content: "\F585";
  6969. }
  6970. .mdi-wallet-membership:before {
  6971. content: "\F586";
  6972. }
  6973. .mdi-wallet-travel:before {
  6974. content: "\F587";
  6975. }
  6976. .mdi-wan:before {
  6977. content: "\F588";
  6978. }
  6979. .mdi-watch:before {
  6980. content: "\F589";
  6981. }
  6982. .mdi-watch-export:before {
  6983. content: "\F58A";
  6984. }
  6985. .mdi-watch-import:before {
  6986. content: "\F58B";
  6987. }
  6988. .mdi-water:before {
  6989. content: "\F58C";
  6990. }
  6991. .mdi-water-off:before {
  6992. content: "\F58D";
  6993. }
  6994. .mdi-water-percent:before {
  6995. content: "\F58E";
  6996. }
  6997. .mdi-water-pump:before {
  6998. content: "\F58F";
  6999. }
  7000. .mdi-watermark:before {
  7001. content: "\F612";
  7002. }
  7003. .mdi-weather-cloudy:before {
  7004. content: "\F590";
  7005. }
  7006. .mdi-weather-fog:before {
  7007. content: "\F591";
  7008. }
  7009. .mdi-weather-hail:before {
  7010. content: "\F592";
  7011. }
  7012. .mdi-weather-lightning:before {
  7013. content: "\F593";
  7014. }
  7015. .mdi-weather-night:before {
  7016. content: "\F594";
  7017. }
  7018. .mdi-weather-partlycloudy:before {
  7019. content: "\F595";
  7020. }
  7021. .mdi-weather-pouring:before {
  7022. content: "\F596";
  7023. }
  7024. .mdi-weather-rainy:before {
  7025. content: "\F597";
  7026. }
  7027. .mdi-weather-snowy:before {
  7028. content: "\F598";
  7029. }
  7030. .mdi-weather-sunny:before {
  7031. content: "\F599";
  7032. }
  7033. .mdi-weather-sunset:before {
  7034. content: "\F59A";
  7035. }
  7036. .mdi-weather-sunset-down:before {
  7037. content: "\F59B";
  7038. }
  7039. .mdi-weather-sunset-up:before {
  7040. content: "\F59C";
  7041. }
  7042. .mdi-weather-windy:before {
  7043. content: "\F59D";
  7044. }
  7045. .mdi-weather-windy-variant:before {
  7046. content: "\F59E";
  7047. }
  7048. .mdi-web:before {
  7049. content: "\F59F";
  7050. }
  7051. .mdi-webcam:before {
  7052. content: "\F5A0";
  7053. }
  7054. .mdi-webhook:before {
  7055. content: "\F62F";
  7056. }
  7057. .mdi-wechat:before {
  7058. content: "\F611";
  7059. }
  7060. .mdi-weight:before {
  7061. content: "\F5A1";
  7062. }
  7063. .mdi-weight-kilogram:before {
  7064. content: "\F5A2";
  7065. }
  7066. .mdi-whatsapp:before {
  7067. content: "\F5A3";
  7068. }
  7069. .mdi-wheelchair-accessibility:before {
  7070. content: "\F5A4";
  7071. }
  7072. .mdi-white-balance-auto:before {
  7073. content: "\F5A5";
  7074. }
  7075. .mdi-white-balance-incandescent:before {
  7076. content: "\F5A6";
  7077. }
  7078. .mdi-white-balance-iridescent:before {
  7079. content: "\F5A7";
  7080. }
  7081. .mdi-white-balance-sunny:before {
  7082. content: "\F5A8";
  7083. }
  7084. .mdi-wifi:before {
  7085. content: "\F5A9";
  7086. }
  7087. .mdi-wifi-off:before {
  7088. content: "\F5AA";
  7089. }
  7090. .mdi-wii:before {
  7091. content: "\F5AB";
  7092. }
  7093. .mdi-wikipedia:before {
  7094. content: "\F5AC";
  7095. }
  7096. .mdi-window-close:before {
  7097. content: "\F5AD";
  7098. }
  7099. .mdi-window-closed:before {
  7100. content: "\F5AE";
  7101. }
  7102. .mdi-window-maximize:before {
  7103. content: "\F5AF";
  7104. }
  7105. .mdi-window-minimize:before {
  7106. content: "\F5B0";
  7107. }
  7108. .mdi-window-open:before {
  7109. content: "\F5B1";
  7110. }
  7111. .mdi-window-restore:before {
  7112. content: "\F5B2";
  7113. }
  7114. .mdi-windows:before {
  7115. content: "\F5B3";
  7116. }
  7117. .mdi-wordpress:before {
  7118. content: "\F5B4";
  7119. }
  7120. .mdi-worker:before {
  7121. content: "\F5B5";
  7122. }
  7123. .mdi-wrap:before {
  7124. content: "\F5B6";
  7125. }
  7126. .mdi-wrench:before {
  7127. content: "\F5B7";
  7128. }
  7129. .mdi-wunderlist:before {
  7130. content: "\F5B8";
  7131. }
  7132. .mdi-xaml:before {
  7133. content: "\F673";
  7134. }
  7135. .mdi-xbox:before {
  7136. content: "\F5B9";
  7137. }
  7138. .mdi-xbox-controller:before {
  7139. content: "\F5BA";
  7140. }
  7141. .mdi-xbox-controller-off:before {
  7142. content: "\F5BB";
  7143. }
  7144. .mdi-xda:before {
  7145. content: "\F5BC";
  7146. }
  7147. .mdi-xing:before {
  7148. content: "\F5BD";
  7149. }
  7150. .mdi-xing-box:before {
  7151. content: "\F5BE";
  7152. }
  7153. .mdi-xing-circle:before {
  7154. content: "\F5BF";
  7155. }
  7156. .mdi-xml:before {
  7157. content: "\F5C0";
  7158. }
  7159. .mdi-yeast:before {
  7160. content: "\F5C1";
  7161. }
  7162. .mdi-yelp:before {
  7163. content: "\F5C2";
  7164. }
  7165. .mdi-youtube-play:before {
  7166. content: "\F5C3";
  7167. }
  7168. .mdi-zip-box:before {
  7169. content: "\F5C4";
  7170. }
  7171. .mdi-18px {
  7172. font-size: 18px;
  7173. }
  7174. .mdi-24px {
  7175. font-size: 24px;
  7176. }
  7177. .mdi-36px {
  7178. font-size: 36px;
  7179. }
  7180. .mdi-48px {
  7181. font-size: 48px;
  7182. }
  7183. .mdi-dark {
  7184. color: rgba(0, 0, 0, 0.54);
  7185. }
  7186. .mdi-dark.mdi-inactive {
  7187. color: rgba(0, 0, 0, 0.26);
  7188. }
  7189. .mdi-light {
  7190. color: white;
  7191. }
  7192. .mdi-light.mdi-inactive {
  7193. color: rgba(255, 255, 255, 0.3);
  7194. }
  7195. .mdi-rotate-45 {
  7196. -webkit-transform: rotate(45deg);
  7197. -ms-transform: rotate(45deg);
  7198. transform: rotate(45deg);
  7199. }
  7200. .mdi-rotate-90 {
  7201. -webkit-transform: rotate(90deg);
  7202. -ms-transform: rotate(90deg);
  7203. transform: rotate(90deg);
  7204. }
  7205. .mdi-rotate-135 {
  7206. -webkit-transform: rotate(135deg);
  7207. -ms-transform: rotate(135deg);
  7208. transform: rotate(135deg);
  7209. }
  7210. .mdi-rotate-180 {
  7211. -webkit-transform: rotate(180deg);
  7212. -ms-transform: rotate(180deg);
  7213. transform: rotate(180deg);
  7214. }
  7215. .mdi-rotate-225 {
  7216. -webkit-transform: rotate(225deg);
  7217. -ms-transform: rotate(225deg);
  7218. transform: rotate(225deg);
  7219. }
  7220. .mdi-rotate-270 {
  7221. -webkit-transform: rotate(270deg);
  7222. -ms-transform: rotate(270deg);
  7223. transform: rotate(270deg);
  7224. }
  7225. .mdi-rotate-315 {
  7226. -webkit-transform: rotate(315deg);
  7227. -ms-transform: rotate(315deg);
  7228. transform: rotate(315deg);
  7229. }
  7230. .mdi-flip-horizontal {
  7231. -webkit-transform: scaleX(-1);
  7232. transform: scaleX(-1);
  7233. filter: FlipH;
  7234. -ms-filter: "FlipH";
  7235. }
  7236. .mdi-flip-vertical {
  7237. -webkit-transform: scaleY(-1);
  7238. transform: scaleY(-1);
  7239. filter: FlipV;
  7240. -ms-filter: "FlipV";
  7241. }
  7242. /*# sourceMappingURL=materialdesignicons.css.map */
  7243. /*!
  7244. Ionicons, v1.5.0
  7245. Created by Ben Sperry for the Ionic Framework, http://ionicons.com/
  7246. https://twitter.com/benjsperry https://twitter.com/ionicframework
  7247. MIT License: https://github.com/driftyco/ionicons
  7248. */
  7249. @font-face {
  7250. font-family: "Ionicons";
  7251. src: url("../fonts/ioniconsaa26.eot?v=1.5.0");
  7252. src: url("../fonts/ioniconsaa26.eot?v=1.5.0#iefix") format("embedded-opentype"), url("../fonts/ioniconsaa26.ttf?v=1.5.0") format("truetype"), url("../fonts/ioniconsaa26.woff?v=1.5.0") format("woff"), url("../fonts/ioniconsaa26.svg?v=1.5.0#Ionicons") format("svg");
  7253. font-weight: normal;
  7254. font-style: normal;
  7255. }
  7256. .ion,
  7257. .ion-loading-a,
  7258. .ion-loading-b,
  7259. .ion-loading-c,
  7260. .ion-loading-d,
  7261. .ion-looping,
  7262. .ion-refreshing,
  7263. .ion-ios7-reloading,
  7264. .ionicons,
  7265. .ion-alert,
  7266. .ion-alert-circled,
  7267. .ion-android-add,
  7268. .ion-android-add-contact,
  7269. .ion-android-alarm,
  7270. .ion-android-archive,
  7271. .ion-android-arrow-back,
  7272. .ion-android-arrow-down-left,
  7273. .ion-android-arrow-down-right,
  7274. .ion-android-arrow-forward,
  7275. .ion-android-arrow-up-left,
  7276. .ion-android-arrow-up-right,
  7277. .ion-android-battery,
  7278. .ion-android-book,
  7279. .ion-android-calendar,
  7280. .ion-android-call,
  7281. .ion-android-camera,
  7282. .ion-android-chat,
  7283. .ion-android-checkmark,
  7284. .ion-android-clock,
  7285. .ion-android-close,
  7286. .ion-android-contact,
  7287. .ion-android-contacts,
  7288. .ion-android-data,
  7289. .ion-android-developer,
  7290. .ion-android-display,
  7291. .ion-android-download,
  7292. .ion-android-drawer,
  7293. .ion-android-dropdown,
  7294. .ion-android-earth,
  7295. .ion-android-folder,
  7296. .ion-android-forums,
  7297. .ion-android-friends,
  7298. .ion-android-hand,
  7299. .ion-android-image,
  7300. .ion-android-inbox,
  7301. .ion-android-information,
  7302. .ion-android-keypad,
  7303. .ion-android-lightbulb,
  7304. .ion-android-locate,
  7305. .ion-android-location,
  7306. .ion-android-mail,
  7307. .ion-android-microphone,
  7308. .ion-android-mixer,
  7309. .ion-android-more,
  7310. .ion-android-note,
  7311. .ion-android-playstore,
  7312. .ion-android-printer,
  7313. .ion-android-promotion,
  7314. .ion-android-reminder,
  7315. .ion-android-remove,
  7316. .ion-android-search,
  7317. .ion-android-send,
  7318. .ion-android-settings,
  7319. .ion-android-share,
  7320. .ion-android-social,
  7321. .ion-android-social-user,
  7322. .ion-android-sort,
  7323. .ion-android-stair-drawer,
  7324. .ion-android-star,
  7325. .ion-android-stopwatch,
  7326. .ion-android-storage,
  7327. .ion-android-system-back,
  7328. .ion-android-system-home,
  7329. .ion-android-system-windows,
  7330. .ion-android-timer,
  7331. .ion-android-trash,
  7332. .ion-android-user-menu,
  7333. .ion-android-volume,
  7334. .ion-android-wifi,
  7335. .ion-aperture,
  7336. .ion-archive,
  7337. .ion-arrow-down-a,
  7338. .ion-arrow-down-b,
  7339. .ion-arrow-down-c,
  7340. .ion-arrow-expand,
  7341. .ion-arrow-graph-down-left,
  7342. .ion-arrow-graph-down-right,
  7343. .ion-arrow-graph-up-left,
  7344. .ion-arrow-graph-up-right,
  7345. .ion-arrow-left-a,
  7346. .ion-arrow-left-b,
  7347. .ion-arrow-left-c,
  7348. .ion-arrow-move,
  7349. .ion-arrow-resize,
  7350. .ion-arrow-return-left,
  7351. .ion-arrow-return-right,
  7352. .ion-arrow-right-a,
  7353. .ion-arrow-right-b,
  7354. .ion-arrow-right-c,
  7355. .ion-arrow-shrink,
  7356. .ion-arrow-swap,
  7357. .ion-arrow-up-a,
  7358. .ion-arrow-up-b,
  7359. .ion-arrow-up-c,
  7360. .ion-asterisk,
  7361. .ion-at,
  7362. .ion-bag,
  7363. .ion-battery-charging,
  7364. .ion-battery-empty,
  7365. .ion-battery-full,
  7366. .ion-battery-half,
  7367. .ion-battery-low,
  7368. .ion-beaker,
  7369. .ion-beer,
  7370. .ion-bluetooth,
  7371. .ion-bonfire,
  7372. .ion-bookmark,
  7373. .ion-briefcase,
  7374. .ion-bug,
  7375. .ion-calculator,
  7376. .ion-calendar,
  7377. .ion-camera,
  7378. .ion-card,
  7379. .ion-cash,
  7380. .ion-chatbox,
  7381. .ion-chatbox-working,
  7382. .ion-chatboxes,
  7383. .ion-chatbubble,
  7384. .ion-chatbubble-working,
  7385. .ion-chatbubbles,
  7386. .ion-checkmark,
  7387. .ion-checkmark-circled,
  7388. .ion-checkmark-round,
  7389. .ion-chevron-down,
  7390. .ion-chevron-left,
  7391. .ion-chevron-right,
  7392. .ion-chevron-up,
  7393. .ion-clipboard,
  7394. .ion-clock,
  7395. .ion-close,
  7396. .ion-close-circled,
  7397. .ion-close-round,
  7398. .ion-closed-captioning,
  7399. .ion-cloud,
  7400. .ion-code,
  7401. .ion-code-download,
  7402. .ion-code-working,
  7403. .ion-coffee,
  7404. .ion-compass,
  7405. .ion-compose,
  7406. .ion-connection-bars,
  7407. .ion-contrast,
  7408. .ion-cube,
  7409. .ion-disc,
  7410. .ion-document,
  7411. .ion-document-text,
  7412. .ion-drag,
  7413. .ion-earth,
  7414. .ion-edit,
  7415. .ion-egg,
  7416. .ion-eject,
  7417. .ion-email,
  7418. .ion-eye,
  7419. .ion-eye-disabled,
  7420. .ion-female,
  7421. .ion-filing,
  7422. .ion-film-marker,
  7423. .ion-fireball,
  7424. .ion-flag,
  7425. .ion-flame,
  7426. .ion-flash,
  7427. .ion-flash-off,
  7428. .ion-flask,
  7429. .ion-folder,
  7430. .ion-fork,
  7431. .ion-fork-repo,
  7432. .ion-forward,
  7433. .ion-funnel,
  7434. .ion-game-controller-a,
  7435. .ion-game-controller-b,
  7436. .ion-gear-a,
  7437. .ion-gear-b,
  7438. .ion-grid,
  7439. .ion-hammer,
  7440. .ion-happy,
  7441. .ion-headphone,
  7442. .ion-heart,
  7443. .ion-heart-broken,
  7444. .ion-help,
  7445. .ion-help-buoy,
  7446. .ion-help-circled,
  7447. .ion-home,
  7448. .ion-icecream,
  7449. .ion-icon-social-google-plus,
  7450. .ion-icon-social-google-plus-outline,
  7451. .ion-image,
  7452. .ion-images,
  7453. .ion-information,
  7454. .ion-information-circled,
  7455. .ion-ionic,
  7456. .ion-ios7-alarm,
  7457. .ion-ios7-alarm-outline,
  7458. .ion-ios7-albums,
  7459. .ion-ios7-albums-outline,
  7460. .ion-ios7-americanfootball,
  7461. .ion-ios7-americanfootball-outline,
  7462. .ion-ios7-analytics,
  7463. .ion-ios7-analytics-outline,
  7464. .ion-ios7-arrow-back,
  7465. .ion-ios7-arrow-down,
  7466. .ion-ios7-arrow-forward,
  7467. .ion-ios7-arrow-left,
  7468. .ion-ios7-arrow-right,
  7469. .ion-ios7-arrow-thin-down,
  7470. .ion-ios7-arrow-thin-left,
  7471. .ion-ios7-arrow-thin-right,
  7472. .ion-ios7-arrow-thin-up,
  7473. .ion-ios7-arrow-up,
  7474. .ion-ios7-at,
  7475. .ion-ios7-at-outline,
  7476. .ion-ios7-barcode,
  7477. .ion-ios7-barcode-outline,
  7478. .ion-ios7-baseball,
  7479. .ion-ios7-baseball-outline,
  7480. .ion-ios7-basketball,
  7481. .ion-ios7-basketball-outline,
  7482. .ion-ios7-bell,
  7483. .ion-ios7-bell-outline,
  7484. .ion-ios7-bolt,
  7485. .ion-ios7-bolt-outline,
  7486. .ion-ios7-bookmarks,
  7487. .ion-ios7-bookmarks-outline,
  7488. .ion-ios7-box,
  7489. .ion-ios7-box-outline,
  7490. .ion-ios7-briefcase,
  7491. .ion-ios7-briefcase-outline,
  7492. .ion-ios7-browsers,
  7493. .ion-ios7-browsers-outline,
  7494. .ion-ios7-calculator,
  7495. .ion-ios7-calculator-outline,
  7496. .ion-ios7-calendar,
  7497. .ion-ios7-calendar-outline,
  7498. .ion-ios7-camera,
  7499. .ion-ios7-camera-outline,
  7500. .ion-ios7-cart,
  7501. .ion-ios7-cart-outline,
  7502. .ion-ios7-chatboxes,
  7503. .ion-ios7-chatboxes-outline,
  7504. .ion-ios7-chatbubble,
  7505. .ion-ios7-chatbubble-outline,
  7506. .ion-ios7-checkmark,
  7507. .ion-ios7-checkmark-empty,
  7508. .ion-ios7-checkmark-outline,
  7509. .ion-ios7-circle-filled,
  7510. .ion-ios7-circle-outline,
  7511. .ion-ios7-clock,
  7512. .ion-ios7-clock-outline,
  7513. .ion-ios7-close,
  7514. .ion-ios7-close-empty,
  7515. .ion-ios7-close-outline,
  7516. .ion-ios7-cloud,
  7517. .ion-ios7-cloud-download,
  7518. .ion-ios7-cloud-download-outline,
  7519. .ion-ios7-cloud-outline,
  7520. .ion-ios7-cloud-upload,
  7521. .ion-ios7-cloud-upload-outline,
  7522. .ion-ios7-cloudy,
  7523. .ion-ios7-cloudy-night,
  7524. .ion-ios7-cloudy-night-outline,
  7525. .ion-ios7-cloudy-outline,
  7526. .ion-ios7-cog,
  7527. .ion-ios7-cog-outline,
  7528. .ion-ios7-compose,
  7529. .ion-ios7-compose-outline,
  7530. .ion-ios7-contact,
  7531. .ion-ios7-contact-outline,
  7532. .ion-ios7-copy,
  7533. .ion-ios7-copy-outline,
  7534. .ion-ios7-download,
  7535. .ion-ios7-download-outline,
  7536. .ion-ios7-drag,
  7537. .ion-ios7-email,
  7538. .ion-ios7-email-outline,
  7539. .ion-ios7-expand,
  7540. .ion-ios7-eye,
  7541. .ion-ios7-eye-outline,
  7542. .ion-ios7-fastforward,
  7543. .ion-ios7-fastforward-outline,
  7544. .ion-ios7-filing,
  7545. .ion-ios7-filing-outline,
  7546. .ion-ios7-film,
  7547. .ion-ios7-film-outline,
  7548. .ion-ios7-flag,
  7549. .ion-ios7-flag-outline,
  7550. .ion-ios7-folder,
  7551. .ion-ios7-folder-outline,
  7552. .ion-ios7-football,
  7553. .ion-ios7-football-outline,
  7554. .ion-ios7-gear,
  7555. .ion-ios7-gear-outline,
  7556. .ion-ios7-glasses,
  7557. .ion-ios7-glasses-outline,
  7558. .ion-ios7-heart,
  7559. .ion-ios7-heart-outline,
  7560. .ion-ios7-help,
  7561. .ion-ios7-help-empty,
  7562. .ion-ios7-help-outline,
  7563. .ion-ios7-home,
  7564. .ion-ios7-home-outline,
  7565. .ion-ios7-infinite,
  7566. .ion-ios7-infinite-outline,
  7567. .ion-ios7-information,
  7568. .ion-ios7-information-empty,
  7569. .ion-ios7-information-outline,
  7570. .ion-ios7-ionic-outline,
  7571. .ion-ios7-keypad,
  7572. .ion-ios7-keypad-outline,
  7573. .ion-ios7-lightbulb,
  7574. .ion-ios7-lightbulb-outline,
  7575. .ion-ios7-location,
  7576. .ion-ios7-location-outline,
  7577. .ion-ios7-locked,
  7578. .ion-ios7-locked-outline,
  7579. .ion-ios7-loop,
  7580. .ion-ios7-loop-strong,
  7581. .ion-ios7-medkit,
  7582. .ion-ios7-medkit-outline,
  7583. .ion-ios7-mic,
  7584. .ion-ios7-mic-off,
  7585. .ion-ios7-mic-outline,
  7586. .ion-ios7-minus,
  7587. .ion-ios7-minus-empty,
  7588. .ion-ios7-minus-outline,
  7589. .ion-ios7-monitor,
  7590. .ion-ios7-monitor-outline,
  7591. .ion-ios7-moon,
  7592. .ion-ios7-moon-outline,
  7593. .ion-ios7-more,
  7594. .ion-ios7-more-outline,
  7595. .ion-ios7-musical-note,
  7596. .ion-ios7-musical-notes,
  7597. .ion-ios7-navigate,
  7598. .ion-ios7-navigate-outline,
  7599. .ion-ios7-paper,
  7600. .ion-ios7-paper-outline,
  7601. .ion-ios7-paperplane,
  7602. .ion-ios7-paperplane-outline,
  7603. .ion-ios7-partlysunny,
  7604. .ion-ios7-partlysunny-outline,
  7605. .ion-ios7-pause,
  7606. .ion-ios7-pause-outline,
  7607. .ion-ios7-paw,
  7608. .ion-ios7-paw-outline,
  7609. .ion-ios7-people,
  7610. .ion-ios7-people-outline,
  7611. .ion-ios7-person,
  7612. .ion-ios7-person-outline,
  7613. .ion-ios7-personadd,
  7614. .ion-ios7-personadd-outline,
  7615. .ion-ios7-photos,
  7616. .ion-ios7-photos-outline,
  7617. .ion-ios7-pie,
  7618. .ion-ios7-pie-outline,
  7619. .ion-ios7-play,
  7620. .ion-ios7-play-outline,
  7621. .ion-ios7-plus,
  7622. .ion-ios7-plus-empty,
  7623. .ion-ios7-plus-outline,
  7624. .ion-ios7-pricetag,
  7625. .ion-ios7-pricetag-outline,
  7626. .ion-ios7-pricetags,
  7627. .ion-ios7-pricetags-outline,
  7628. .ion-ios7-printer,
  7629. .ion-ios7-printer-outline,
  7630. .ion-ios7-pulse,
  7631. .ion-ios7-pulse-strong,
  7632. .ion-ios7-rainy,
  7633. .ion-ios7-rainy-outline,
  7634. .ion-ios7-recording,
  7635. .ion-ios7-recording-outline,
  7636. .ion-ios7-redo,
  7637. .ion-ios7-redo-outline,
  7638. .ion-ios7-refresh,
  7639. .ion-ios7-refresh-empty,
  7640. .ion-ios7-refresh-outline,
  7641. .ion-ios7-reload,
  7642. .ion-ios7-reverse-camera,
  7643. .ion-ios7-reverse-camera-outline,
  7644. .ion-ios7-rewind,
  7645. .ion-ios7-rewind-outline,
  7646. .ion-ios7-search,
  7647. .ion-ios7-search-strong,
  7648. .ion-ios7-settings,
  7649. .ion-ios7-settings-strong,
  7650. .ion-ios7-shrink,
  7651. .ion-ios7-skipbackward,
  7652. .ion-ios7-skipbackward-outline,
  7653. .ion-ios7-skipforward,
  7654. .ion-ios7-skipforward-outline,
  7655. .ion-ios7-snowy,
  7656. .ion-ios7-speedometer,
  7657. .ion-ios7-speedometer-outline,
  7658. .ion-ios7-star,
  7659. .ion-ios7-star-half,
  7660. .ion-ios7-star-outline,
  7661. .ion-ios7-stopwatch,
  7662. .ion-ios7-stopwatch-outline,
  7663. .ion-ios7-sunny,
  7664. .ion-ios7-sunny-outline,
  7665. .ion-ios7-telephone,
  7666. .ion-ios7-telephone-outline,
  7667. .ion-ios7-tennisball,
  7668. .ion-ios7-tennisball-outline,
  7669. .ion-ios7-thunderstorm,
  7670. .ion-ios7-thunderstorm-outline,
  7671. .ion-ios7-time,
  7672. .ion-ios7-time-outline,
  7673. .ion-ios7-timer,
  7674. .ion-ios7-timer-outline,
  7675. .ion-ios7-toggle,
  7676. .ion-ios7-toggle-outline,
  7677. .ion-ios7-trash,
  7678. .ion-ios7-trash-outline,
  7679. .ion-ios7-undo,
  7680. .ion-ios7-undo-outline,
  7681. .ion-ios7-unlocked,
  7682. .ion-ios7-unlocked-outline,
  7683. .ion-ios7-upload,
  7684. .ion-ios7-upload-outline,
  7685. .ion-ios7-videocam,
  7686. .ion-ios7-videocam-outline,
  7687. .ion-ios7-volume-high,
  7688. .ion-ios7-volume-low,
  7689. .ion-ios7-wineglass,
  7690. .ion-ios7-wineglass-outline,
  7691. .ion-ios7-world,
  7692. .ion-ios7-world-outline,
  7693. .ion-ipad,
  7694. .ion-iphone,
  7695. .ion-ipod,
  7696. .ion-jet,
  7697. .ion-key,
  7698. .ion-knife,
  7699. .ion-laptop,
  7700. .ion-leaf,
  7701. .ion-levels,
  7702. .ion-lightbulb,
  7703. .ion-link,
  7704. .ion-load-a,
  7705. .ion-load-b,
  7706. .ion-load-c,
  7707. .ion-load-d,
  7708. .ion-location,
  7709. .ion-locked,
  7710. .ion-log-in,
  7711. .ion-log-out,
  7712. .ion-loop,
  7713. .ion-magnet,
  7714. .ion-male,
  7715. .ion-man,
  7716. .ion-map,
  7717. .ion-medkit,
  7718. .ion-merge,
  7719. .ion-mic-a,
  7720. .ion-mic-b,
  7721. .ion-mic-c,
  7722. .ion-minus,
  7723. .ion-minus-circled,
  7724. .ion-minus-round,
  7725. .ion-model-s,
  7726. .ion-monitor,
  7727. .ion-more,
  7728. .ion-mouse,
  7729. .ion-music-note,
  7730. .ion-navicon,
  7731. .ion-navicon-round,
  7732. .ion-navigate,
  7733. .ion-network,
  7734. .ion-no-smoking,
  7735. .ion-nuclear,
  7736. .ion-outlet,
  7737. .ion-paper-airplane,
  7738. .ion-paperclip,
  7739. .ion-pause,
  7740. .ion-person,
  7741. .ion-person-add,
  7742. .ion-person-stalker,
  7743. .ion-pie-graph,
  7744. .ion-pin,
  7745. .ion-pinpoint,
  7746. .ion-pizza,
  7747. .ion-plane,
  7748. .ion-planet,
  7749. .ion-play,
  7750. .ion-playstation,
  7751. .ion-plus,
  7752. .ion-plus-circled,
  7753. .ion-plus-round,
  7754. .ion-podium,
  7755. .ion-pound,
  7756. .ion-power,
  7757. .ion-pricetag,
  7758. .ion-pricetags,
  7759. .ion-printer,
  7760. .ion-pull-request,
  7761. .ion-qr-scanner,
  7762. .ion-quote,
  7763. .ion-radio-waves,
  7764. .ion-record,
  7765. .ion-refresh,
  7766. .ion-reply,
  7767. .ion-reply-all,
  7768. .ion-ribbon-a,
  7769. .ion-ribbon-b,
  7770. .ion-sad,
  7771. .ion-scissors,
  7772. .ion-search,
  7773. .ion-settings,
  7774. .ion-share,
  7775. .ion-shuffle,
  7776. .ion-skip-backward,
  7777. .ion-skip-forward,
  7778. .ion-social-android,
  7779. .ion-social-android-outline,
  7780. .ion-social-apple,
  7781. .ion-social-apple-outline,
  7782. .ion-social-bitcoin,
  7783. .ion-social-bitcoin-outline,
  7784. .ion-social-buffer,
  7785. .ion-social-buffer-outline,
  7786. .ion-social-designernews,
  7787. .ion-social-designernews-outline,
  7788. .ion-social-dribbble,
  7789. .ion-social-dribbble-outline,
  7790. .ion-social-dropbox,
  7791. .ion-social-dropbox-outline,
  7792. .ion-social-facebook,
  7793. .ion-social-facebook-outline,
  7794. .ion-social-foursquare,
  7795. .ion-social-foursquare-outline,
  7796. .ion-social-freebsd-devil,
  7797. .ion-social-github,
  7798. .ion-social-github-outline,
  7799. .ion-social-google,
  7800. .ion-social-google-outline,
  7801. .ion-social-googleplus,
  7802. .ion-social-googleplus-outline,
  7803. .ion-social-hackernews,
  7804. .ion-social-hackernews-outline,
  7805. .ion-social-instagram,
  7806. .ion-social-instagram-outline,
  7807. .ion-social-linkedin,
  7808. .ion-social-linkedin-outline,
  7809. .ion-social-pinterest,
  7810. .ion-social-pinterest-outline,
  7811. .ion-social-reddit,
  7812. .ion-social-reddit-outline,
  7813. .ion-social-rss,
  7814. .ion-social-rss-outline,
  7815. .ion-social-skype,
  7816. .ion-social-skype-outline,
  7817. .ion-social-tumblr,
  7818. .ion-social-tumblr-outline,
  7819. .ion-social-tux,
  7820. .ion-social-twitter,
  7821. .ion-social-twitter-outline,
  7822. .ion-social-usd,
  7823. .ion-social-usd-outline,
  7824. .ion-social-vimeo,
  7825. .ion-social-vimeo-outline,
  7826. .ion-social-windows,
  7827. .ion-social-windows-outline,
  7828. .ion-social-wordpress,
  7829. .ion-social-wordpress-outline,
  7830. .ion-social-yahoo,
  7831. .ion-social-yahoo-outline,
  7832. .ion-social-youtube,
  7833. .ion-social-youtube-outline,
  7834. .ion-speakerphone,
  7835. .ion-speedometer,
  7836. .ion-spoon,
  7837. .ion-star,
  7838. .ion-stats-bars,
  7839. .ion-steam,
  7840. .ion-stop,
  7841. .ion-thermometer,
  7842. .ion-thumbsdown,
  7843. .ion-thumbsup,
  7844. .ion-toggle,
  7845. .ion-toggle-filled,
  7846. .ion-trash-a,
  7847. .ion-trash-b,
  7848. .ion-trophy,
  7849. .ion-umbrella,
  7850. .ion-university,
  7851. .ion-unlocked,
  7852. .ion-upload,
  7853. .ion-usb,
  7854. .ion-videocamera,
  7855. .ion-volume-high,
  7856. .ion-volume-low,
  7857. .ion-volume-medium,
  7858. .ion-volume-mute,
  7859. .ion-wand,
  7860. .ion-waterdrop,
  7861. .ion-wifi,
  7862. .ion-wineglass,
  7863. .ion-woman,
  7864. .ion-wrench,
  7865. .ion-xbox {
  7866. display: inline-block;
  7867. font-family: "Ionicons";
  7868. speak: none;
  7869. font-style: normal;
  7870. font-weight: normal;
  7871. font-variant: normal;
  7872. text-transform: none;
  7873. text-rendering: auto;
  7874. line-height: 1;
  7875. -webkit-font-smoothing: antialiased;
  7876. -moz-osx-font-smoothing: grayscale;
  7877. }
  7878. .ion-spin,
  7879. .ion-loading-a,
  7880. .ion-loading-b,
  7881. .ion-loading-c,
  7882. .ion-loading-d,
  7883. .ion-looping,
  7884. .ion-refreshing,
  7885. .ion-ios7-reloading {
  7886. -webkit-animation: spin 1s infinite linear;
  7887. -moz-animation: spin 1s infinite linear;
  7888. -o-animation: spin 1s infinite linear;
  7889. animation: spin 1s infinite linear;
  7890. }
  7891. @-moz-keyframes spin {
  7892. 0% {
  7893. -moz-transform: rotate(0deg);
  7894. }
  7895. 100% {
  7896. -moz-transform: rotate(359deg);
  7897. }
  7898. }
  7899. @-webkit-keyframes spin {
  7900. 0% {
  7901. -webkit-transform: rotate(0deg);
  7902. }
  7903. 100% {
  7904. -webkit-transform: rotate(359deg);
  7905. }
  7906. }
  7907. @-o-keyframes spin {
  7908. 0% {
  7909. -o-transform: rotate(0deg);
  7910. }
  7911. 100% {
  7912. -o-transform: rotate(359deg);
  7913. }
  7914. }
  7915. @-ms-keyframes spin {
  7916. 0% {
  7917. -ms-transform: rotate(0deg);
  7918. }
  7919. 100% {
  7920. -ms-transform: rotate(359deg);
  7921. }
  7922. }
  7923. @keyframes spin {
  7924. 0% {
  7925. transform: rotate(0deg);
  7926. }
  7927. 100% {
  7928. transform: rotate(359deg);
  7929. }
  7930. }
  7931. .ion-loading-a {
  7932. -webkit-animation-timing-function: steps(8, start);
  7933. -moz-animation-timing-function: steps(8, start);
  7934. animation-timing-function: steps(8, start);
  7935. }
  7936. .ion-alert:before {
  7937. content: "\f101";
  7938. }
  7939. .ion-alert-circled:before {
  7940. content: "\f100";
  7941. }
  7942. .ion-android-add:before {
  7943. content: "\f2c7";
  7944. }
  7945. .ion-android-add-contact:before {
  7946. content: "\f2c6";
  7947. }
  7948. .ion-android-alarm:before {
  7949. content: "\f2c8";
  7950. }
  7951. .ion-android-archive:before {
  7952. content: "\f2c9";
  7953. }
  7954. .ion-android-arrow-back:before {
  7955. content: "\f2ca";
  7956. }
  7957. .ion-android-arrow-down-left:before {
  7958. content: "\f2cb";
  7959. }
  7960. .ion-android-arrow-down-right:before {
  7961. content: "\f2cc";
  7962. }
  7963. .ion-android-arrow-forward:before {
  7964. content: "\f30f";
  7965. }
  7966. .ion-android-arrow-up-left:before {
  7967. content: "\f2cd";
  7968. }
  7969. .ion-android-arrow-up-right:before {
  7970. content: "\f2ce";
  7971. }
  7972. .ion-android-battery:before {
  7973. content: "\f2cf";
  7974. }
  7975. .ion-android-book:before {
  7976. content: "\f2d0";
  7977. }
  7978. .ion-android-calendar:before {
  7979. content: "\f2d1";
  7980. }
  7981. .ion-android-call:before {
  7982. content: "\f2d2";
  7983. }
  7984. .ion-android-camera:before {
  7985. content: "\f2d3";
  7986. }
  7987. .ion-android-chat:before {
  7988. content: "\f2d4";
  7989. }
  7990. .ion-android-checkmark:before {
  7991. content: "\f2d5";
  7992. }
  7993. .ion-android-clock:before {
  7994. content: "\f2d6";
  7995. }
  7996. .ion-android-close:before {
  7997. content: "\f2d7";
  7998. }
  7999. .ion-android-contact:before {
  8000. content: "\f2d8";
  8001. }
  8002. .ion-android-contacts:before {
  8003. content: "\f2d9";
  8004. }
  8005. .ion-android-data:before {
  8006. content: "\f2da";
  8007. }
  8008. .ion-android-developer:before {
  8009. content: "\f2db";
  8010. }
  8011. .ion-android-display:before {
  8012. content: "\f2dc";
  8013. }
  8014. .ion-android-download:before {
  8015. content: "\f2dd";
  8016. }
  8017. .ion-android-drawer:before {
  8018. content: "\f310";
  8019. }
  8020. .ion-android-dropdown:before {
  8021. content: "\f2de";
  8022. }
  8023. .ion-android-earth:before {
  8024. content: "\f2df";
  8025. }
  8026. .ion-android-folder:before {
  8027. content: "\f2e0";
  8028. }
  8029. .ion-android-forums:before {
  8030. content: "\f2e1";
  8031. }
  8032. .ion-android-friends:before {
  8033. content: "\f2e2";
  8034. }
  8035. .ion-android-hand:before {
  8036. content: "\f2e3";
  8037. }
  8038. .ion-android-image:before {
  8039. content: "\f2e4";
  8040. }
  8041. .ion-android-inbox:before {
  8042. content: "\f2e5";
  8043. }
  8044. .ion-android-information:before {
  8045. content: "\f2e6";
  8046. }
  8047. .ion-android-keypad:before {
  8048. content: "\f2e7";
  8049. }
  8050. .ion-android-lightbulb:before {
  8051. content: "\f2e8";
  8052. }
  8053. .ion-android-locate:before {
  8054. content: "\f2e9";
  8055. }
  8056. .ion-android-location:before {
  8057. content: "\f2ea";
  8058. }
  8059. .ion-android-mail:before {
  8060. content: "\f2eb";
  8061. }
  8062. .ion-android-microphone:before {
  8063. content: "\f2ec";
  8064. }
  8065. .ion-android-mixer:before {
  8066. content: "\f2ed";
  8067. }
  8068. .ion-android-more:before {
  8069. content: "\f2ee";
  8070. }
  8071. .ion-android-note:before {
  8072. content: "\f2ef";
  8073. }
  8074. .ion-android-playstore:before {
  8075. content: "\f2f0";
  8076. }
  8077. .ion-android-printer:before {
  8078. content: "\f2f1";
  8079. }
  8080. .ion-android-promotion:before {
  8081. content: "\f2f2";
  8082. }
  8083. .ion-android-reminder:before {
  8084. content: "\f2f3";
  8085. }
  8086. .ion-android-remove:before {
  8087. content: "\f2f4";
  8088. }
  8089. .ion-android-search:before {
  8090. content: "\f2f5";
  8091. }
  8092. .ion-android-send:before {
  8093. content: "\f2f6";
  8094. }
  8095. .ion-android-settings:before {
  8096. content: "\f2f7";
  8097. }
  8098. .ion-android-share:before {
  8099. content: "\f2f8";
  8100. }
  8101. .ion-android-social:before {
  8102. content: "\f2fa";
  8103. }
  8104. .ion-android-social-user:before {
  8105. content: "\f2f9";
  8106. }
  8107. .ion-android-sort:before {
  8108. content: "\f2fb";
  8109. }
  8110. .ion-android-stair-drawer:before {
  8111. content: "\f311";
  8112. }
  8113. .ion-android-star:before {
  8114. content: "\f2fc";
  8115. }
  8116. .ion-android-stopwatch:before {
  8117. content: "\f2fd";
  8118. }
  8119. .ion-android-storage:before {
  8120. content: "\f2fe";
  8121. }
  8122. .ion-android-system-back:before {
  8123. content: "\f2ff";
  8124. }
  8125. .ion-android-system-home:before {
  8126. content: "\f300";
  8127. }
  8128. .ion-android-system-windows:before {
  8129. content: "\f301";
  8130. }
  8131. .ion-android-timer:before {
  8132. content: "\f302";
  8133. }
  8134. .ion-android-trash:before {
  8135. content: "\f303";
  8136. }
  8137. .ion-android-user-menu:before {
  8138. content: "\f312";
  8139. }
  8140. .ion-android-volume:before {
  8141. content: "\f304";
  8142. }
  8143. .ion-android-wifi:before {
  8144. content: "\f305";
  8145. }
  8146. .ion-aperture:before {
  8147. content: "\f313";
  8148. }
  8149. .ion-archive:before {
  8150. content: "\f102";
  8151. }
  8152. .ion-arrow-down-a:before {
  8153. content: "\f103";
  8154. }
  8155. .ion-arrow-down-b:before {
  8156. content: "\f104";
  8157. }
  8158. .ion-arrow-down-c:before {
  8159. content: "\f105";
  8160. }
  8161. .ion-arrow-expand:before {
  8162. content: "\f25e";
  8163. }
  8164. .ion-arrow-graph-down-left:before {
  8165. content: "\f25f";
  8166. }
  8167. .ion-arrow-graph-down-right:before {
  8168. content: "\f260";
  8169. }
  8170. .ion-arrow-graph-up-left:before {
  8171. content: "\f261";
  8172. }
  8173. .ion-arrow-graph-up-right:before {
  8174. content: "\f262";
  8175. }
  8176. .ion-arrow-left-a:before {
  8177. content: "\f106";
  8178. }
  8179. .ion-arrow-left-b:before {
  8180. content: "\f107";
  8181. }
  8182. .ion-arrow-left-c:before {
  8183. content: "\f108";
  8184. }
  8185. .ion-arrow-move:before {
  8186. content: "\f263";
  8187. }
  8188. .ion-arrow-resize:before {
  8189. content: "\f264";
  8190. }
  8191. .ion-arrow-return-left:before {
  8192. content: "\f265";
  8193. }
  8194. .ion-arrow-return-right:before {
  8195. content: "\f266";
  8196. }
  8197. .ion-arrow-right-a:before {
  8198. content: "\f109";
  8199. }
  8200. .ion-arrow-right-b:before {
  8201. content: "\f10a";
  8202. }
  8203. .ion-arrow-right-c:before {
  8204. content: "\f10b";
  8205. }
  8206. .ion-arrow-shrink:before {
  8207. content: "\f267";
  8208. }
  8209. .ion-arrow-swap:before {
  8210. content: "\f268";
  8211. }
  8212. .ion-arrow-up-a:before {
  8213. content: "\f10c";
  8214. }
  8215. .ion-arrow-up-b:before {
  8216. content: "\f10d";
  8217. }
  8218. .ion-arrow-up-c:before {
  8219. content: "\f10e";
  8220. }
  8221. .ion-asterisk:before {
  8222. content: "\f314";
  8223. }
  8224. .ion-at:before {
  8225. content: "\f10f";
  8226. }
  8227. .ion-bag:before {
  8228. content: "\f110";
  8229. }
  8230. .ion-battery-charging:before {
  8231. content: "\f111";
  8232. }
  8233. .ion-battery-empty:before {
  8234. content: "\f112";
  8235. }
  8236. .ion-battery-full:before {
  8237. content: "\f113";
  8238. }
  8239. .ion-battery-half:before {
  8240. content: "\f114";
  8241. }
  8242. .ion-battery-low:before {
  8243. content: "\f115";
  8244. }
  8245. .ion-beaker:before {
  8246. content: "\f269";
  8247. }
  8248. .ion-beer:before {
  8249. content: "\f26a";
  8250. }
  8251. .ion-bluetooth:before {
  8252. content: "\f116";
  8253. }
  8254. .ion-bonfire:before {
  8255. content: "\f315";
  8256. }
  8257. .ion-bookmark:before {
  8258. content: "\f26b";
  8259. }
  8260. .ion-briefcase:before {
  8261. content: "\f26c";
  8262. }
  8263. .ion-bug:before {
  8264. content: "\f2be";
  8265. }
  8266. .ion-calculator:before {
  8267. content: "\f26d";
  8268. }
  8269. .ion-calendar:before {
  8270. content: "\f117";
  8271. }
  8272. .ion-camera:before {
  8273. content: "\f118";
  8274. }
  8275. .ion-card:before {
  8276. content: "\f119";
  8277. }
  8278. .ion-cash:before {
  8279. content: "\f316";
  8280. }
  8281. .ion-chatbox:before {
  8282. content: "\f11b";
  8283. }
  8284. .ion-chatbox-working:before {
  8285. content: "\f11a";
  8286. }
  8287. .ion-chatboxes:before {
  8288. content: "\f11c";
  8289. }
  8290. .ion-chatbubble:before {
  8291. content: "\f11e";
  8292. }
  8293. .ion-chatbubble-working:before {
  8294. content: "\f11d";
  8295. }
  8296. .ion-chatbubbles:before {
  8297. content: "\f11f";
  8298. }
  8299. .ion-checkmark:before {
  8300. content: "\f122";
  8301. }
  8302. .ion-checkmark-circled:before {
  8303. content: "\f120";
  8304. }
  8305. .ion-checkmark-round:before {
  8306. content: "\f121";
  8307. }
  8308. .ion-chevron-down:before {
  8309. content: "\f123";
  8310. }
  8311. .ion-chevron-left:before {
  8312. content: "\f124";
  8313. }
  8314. .ion-chevron-right:before {
  8315. content: "\f125";
  8316. }
  8317. .ion-chevron-up:before {
  8318. content: "\f126";
  8319. }
  8320. .ion-clipboard:before {
  8321. content: "\f127";
  8322. }
  8323. .ion-clock:before {
  8324. content: "\f26e";
  8325. }
  8326. .ion-close:before {
  8327. content: "\f12a";
  8328. }
  8329. .ion-close-circled:before {
  8330. content: "\f128";
  8331. }
  8332. .ion-close-round:before {
  8333. content: "\f129";
  8334. }
  8335. .ion-closed-captioning:before {
  8336. content: "\f317";
  8337. }
  8338. .ion-cloud:before {
  8339. content: "\f12b";
  8340. }
  8341. .ion-code:before {
  8342. content: "\f271";
  8343. }
  8344. .ion-code-download:before {
  8345. content: "\f26f";
  8346. }
  8347. .ion-code-working:before {
  8348. content: "\f270";
  8349. }
  8350. .ion-coffee:before {
  8351. content: "\f272";
  8352. }
  8353. .ion-compass:before {
  8354. content: "\f273";
  8355. }
  8356. .ion-compose:before {
  8357. content: "\f12c";
  8358. }
  8359. .ion-connection-bars:before {
  8360. content: "\f274";
  8361. }
  8362. .ion-contrast:before {
  8363. content: "\f275";
  8364. }
  8365. .ion-cube:before {
  8366. content: "\f318";
  8367. }
  8368. .ion-disc:before {
  8369. content: "\f12d";
  8370. }
  8371. .ion-document:before {
  8372. content: "\f12f";
  8373. }
  8374. .ion-document-text:before {
  8375. content: "\f12e";
  8376. }
  8377. .ion-drag:before {
  8378. content: "\f130";
  8379. }
  8380. .ion-earth:before {
  8381. content: "\f276";
  8382. }
  8383. .ion-edit:before {
  8384. content: "\f2bf";
  8385. }
  8386. .ion-egg:before {
  8387. content: "\f277";
  8388. }
  8389. .ion-eject:before {
  8390. content: "\f131";
  8391. }
  8392. .ion-email:before {
  8393. content: "\f132";
  8394. }
  8395. .ion-eye:before {
  8396. content: "\f133";
  8397. }
  8398. .ion-eye-disabled:before {
  8399. content: "\f306";
  8400. }
  8401. .ion-female:before {
  8402. content: "\f278";
  8403. }
  8404. .ion-filing:before {
  8405. content: "\f134";
  8406. }
  8407. .ion-film-marker:before {
  8408. content: "\f135";
  8409. }
  8410. .ion-fireball:before {
  8411. content: "\f319";
  8412. }
  8413. .ion-flag:before {
  8414. content: "\f279";
  8415. }
  8416. .ion-flame:before {
  8417. content: "\f31a";
  8418. }
  8419. .ion-flash:before {
  8420. content: "\f137";
  8421. }
  8422. .ion-flash-off:before {
  8423. content: "\f136";
  8424. }
  8425. .ion-flask:before {
  8426. content: "\f138";
  8427. }
  8428. .ion-folder:before {
  8429. content: "\f139";
  8430. }
  8431. .ion-fork:before {
  8432. content: "\f27a";
  8433. }
  8434. .ion-fork-repo:before {
  8435. content: "\f2c0";
  8436. }
  8437. .ion-forward:before {
  8438. content: "\f13a";
  8439. }
  8440. .ion-funnel:before {
  8441. content: "\f31b";
  8442. }
  8443. .ion-game-controller-a:before {
  8444. content: "\f13b";
  8445. }
  8446. .ion-game-controller-b:before {
  8447. content: "\f13c";
  8448. }
  8449. .ion-gear-a:before {
  8450. content: "\f13d";
  8451. }
  8452. .ion-gear-b:before {
  8453. content: "\f13e";
  8454. }
  8455. .ion-grid:before {
  8456. content: "\f13f";
  8457. }
  8458. .ion-hammer:before {
  8459. content: "\f27b";
  8460. }
  8461. .ion-happy:before {
  8462. content: "\f31c";
  8463. }
  8464. .ion-headphone:before {
  8465. content: "\f140";
  8466. }
  8467. .ion-heart:before {
  8468. content: "\f141";
  8469. }
  8470. .ion-heart-broken:before {
  8471. content: "\f31d";
  8472. }
  8473. .ion-help:before {
  8474. content: "\f143";
  8475. }
  8476. .ion-help-buoy:before {
  8477. content: "\f27c";
  8478. }
  8479. .ion-help-circled:before {
  8480. content: "\f142";
  8481. }
  8482. .ion-home:before {
  8483. content: "\f144";
  8484. }
  8485. .ion-icecream:before {
  8486. content: "\f27d";
  8487. }
  8488. .ion-icon-social-google-plus:before {
  8489. content: "\f146";
  8490. }
  8491. .ion-icon-social-google-plus-outline:before {
  8492. content: "\f145";
  8493. }
  8494. .ion-image:before {
  8495. content: "\f147";
  8496. }
  8497. .ion-images:before {
  8498. content: "\f148";
  8499. }
  8500. .ion-information:before {
  8501. content: "\f14a";
  8502. }
  8503. .ion-information-circled:before {
  8504. content: "\f149";
  8505. }
  8506. .ion-ionic:before {
  8507. content: "\f14b";
  8508. }
  8509. .ion-ios7-alarm:before {
  8510. content: "\f14d";
  8511. }
  8512. .ion-ios7-alarm-outline:before {
  8513. content: "\f14c";
  8514. }
  8515. .ion-ios7-albums:before {
  8516. content: "\f14f";
  8517. }
  8518. .ion-ios7-albums-outline:before {
  8519. content: "\f14e";
  8520. }
  8521. .ion-ios7-americanfootball:before {
  8522. content: "\f31f";
  8523. }
  8524. .ion-ios7-americanfootball-outline:before {
  8525. content: "\f31e";
  8526. }
  8527. .ion-ios7-analytics:before {
  8528. content: "\f321";
  8529. }
  8530. .ion-ios7-analytics-outline:before {
  8531. content: "\f320";
  8532. }
  8533. .ion-ios7-arrow-back:before {
  8534. content: "\f150";
  8535. }
  8536. .ion-ios7-arrow-down:before {
  8537. content: "\f151";
  8538. }
  8539. .ion-ios7-arrow-forward:before {
  8540. content: "\f152";
  8541. }
  8542. .ion-ios7-arrow-left:before {
  8543. content: "\f153";
  8544. }
  8545. .ion-ios7-arrow-right:before {
  8546. content: "\f154";
  8547. }
  8548. .ion-ios7-arrow-thin-down:before {
  8549. content: "\f27e";
  8550. }
  8551. .ion-ios7-arrow-thin-left:before {
  8552. content: "\f27f";
  8553. }
  8554. .ion-ios7-arrow-thin-right:before {
  8555. content: "\f280";
  8556. }
  8557. .ion-ios7-arrow-thin-up:before {
  8558. content: "\f281";
  8559. }
  8560. .ion-ios7-arrow-up:before {
  8561. content: "\f155";
  8562. }
  8563. .ion-ios7-at:before {
  8564. content: "\f157";
  8565. }
  8566. .ion-ios7-at-outline:before {
  8567. content: "\f156";
  8568. }
  8569. .ion-ios7-barcode:before {
  8570. content: "\f323";
  8571. }
  8572. .ion-ios7-barcode-outline:before {
  8573. content: "\f322";
  8574. }
  8575. .ion-ios7-baseball:before {
  8576. content: "\f325";
  8577. }
  8578. .ion-ios7-baseball-outline:before {
  8579. content: "\f324";
  8580. }
  8581. .ion-ios7-basketball:before {
  8582. content: "\f327";
  8583. }
  8584. .ion-ios7-basketball-outline:before {
  8585. content: "\f326";
  8586. }
  8587. .ion-ios7-bell:before {
  8588. content: "\f159";
  8589. }
  8590. .ion-ios7-bell-outline:before {
  8591. content: "\f158";
  8592. }
  8593. .ion-ios7-bolt:before {
  8594. content: "\f15b";
  8595. }
  8596. .ion-ios7-bolt-outline:before {
  8597. content: "\f15a";
  8598. }
  8599. .ion-ios7-bookmarks:before {
  8600. content: "\f15d";
  8601. }
  8602. .ion-ios7-bookmarks-outline:before {
  8603. content: "\f15c";
  8604. }
  8605. .ion-ios7-box:before {
  8606. content: "\f15f";
  8607. }
  8608. .ion-ios7-box-outline:before {
  8609. content: "\f15e";
  8610. }
  8611. .ion-ios7-briefcase:before {
  8612. content: "\f283";
  8613. }
  8614. .ion-ios7-briefcase-outline:before {
  8615. content: "\f282";
  8616. }
  8617. .ion-ios7-browsers:before {
  8618. content: "\f161";
  8619. }
  8620. .ion-ios7-browsers-outline:before {
  8621. content: "\f160";
  8622. }
  8623. .ion-ios7-calculator:before {
  8624. content: "\f285";
  8625. }
  8626. .ion-ios7-calculator-outline:before {
  8627. content: "\f284";
  8628. }
  8629. .ion-ios7-calendar:before {
  8630. content: "\f163";
  8631. }
  8632. .ion-ios7-calendar-outline:before {
  8633. content: "\f162";
  8634. }
  8635. .ion-ios7-camera:before {
  8636. content: "\f165";
  8637. }
  8638. .ion-ios7-camera-outline:before {
  8639. content: "\f164";
  8640. }
  8641. .ion-ios7-cart:before {
  8642. content: "\f167";
  8643. }
  8644. .ion-ios7-cart-outline:before {
  8645. content: "\f166";
  8646. }
  8647. .ion-ios7-chatboxes:before {
  8648. content: "\f169";
  8649. }
  8650. .ion-ios7-chatboxes-outline:before {
  8651. content: "\f168";
  8652. }
  8653. .ion-ios7-chatbubble:before {
  8654. content: "\f16b";
  8655. }
  8656. .ion-ios7-chatbubble-outline:before {
  8657. content: "\f16a";
  8658. }
  8659. .ion-ios7-checkmark:before {
  8660. content: "\f16e";
  8661. }
  8662. .ion-ios7-checkmark-empty:before {
  8663. content: "\f16c";
  8664. }
  8665. .ion-ios7-checkmark-outline:before {
  8666. content: "\f16d";
  8667. }
  8668. .ion-ios7-circle-filled:before {
  8669. content: "\f16f";
  8670. }
  8671. .ion-ios7-circle-outline:before {
  8672. content: "\f170";
  8673. }
  8674. .ion-ios7-clock:before {
  8675. content: "\f172";
  8676. }
  8677. .ion-ios7-clock-outline:before {
  8678. content: "\f171";
  8679. }
  8680. .ion-ios7-close:before {
  8681. content: "\f2bc";
  8682. }
  8683. .ion-ios7-close-empty:before {
  8684. content: "\f2bd";
  8685. }
  8686. .ion-ios7-close-outline:before {
  8687. content: "\f2bb";
  8688. }
  8689. .ion-ios7-cloud:before {
  8690. content: "\f178";
  8691. }
  8692. .ion-ios7-cloud-download:before {
  8693. content: "\f174";
  8694. }
  8695. .ion-ios7-cloud-download-outline:before {
  8696. content: "\f173";
  8697. }
  8698. .ion-ios7-cloud-outline:before {
  8699. content: "\f175";
  8700. }
  8701. .ion-ios7-cloud-upload:before {
  8702. content: "\f177";
  8703. }
  8704. .ion-ios7-cloud-upload-outline:before {
  8705. content: "\f176";
  8706. }
  8707. .ion-ios7-cloudy:before {
  8708. content: "\f17a";
  8709. }
  8710. .ion-ios7-cloudy-night:before {
  8711. content: "\f308";
  8712. }
  8713. .ion-ios7-cloudy-night-outline:before {
  8714. content: "\f307";
  8715. }
  8716. .ion-ios7-cloudy-outline:before {
  8717. content: "\f179";
  8718. }
  8719. .ion-ios7-cog:before {
  8720. content: "\f17c";
  8721. }
  8722. .ion-ios7-cog-outline:before {
  8723. content: "\f17b";
  8724. }
  8725. .ion-ios7-compose:before {
  8726. content: "\f17e";
  8727. }
  8728. .ion-ios7-compose-outline:before {
  8729. content: "\f17d";
  8730. }
  8731. .ion-ios7-contact:before {
  8732. content: "\f180";
  8733. }
  8734. .ion-ios7-contact-outline:before {
  8735. content: "\f17f";
  8736. }
  8737. .ion-ios7-copy:before {
  8738. content: "\f182";
  8739. }
  8740. .ion-ios7-copy-outline:before {
  8741. content: "\f181";
  8742. }
  8743. .ion-ios7-download:before {
  8744. content: "\f184";
  8745. }
  8746. .ion-ios7-download-outline:before {
  8747. content: "\f183";
  8748. }
  8749. .ion-ios7-drag:before {
  8750. content: "\f185";
  8751. }
  8752. .ion-ios7-email:before {
  8753. content: "\f187";
  8754. }
  8755. .ion-ios7-email-outline:before {
  8756. content: "\f186";
  8757. }
  8758. .ion-ios7-expand:before {
  8759. content: "\f30d";
  8760. }
  8761. .ion-ios7-eye:before {
  8762. content: "\f189";
  8763. }
  8764. .ion-ios7-eye-outline:before {
  8765. content: "\f188";
  8766. }
  8767. .ion-ios7-fastforward:before {
  8768. content: "\f18b";
  8769. }
  8770. .ion-ios7-fastforward-outline:before {
  8771. content: "\f18a";
  8772. }
  8773. .ion-ios7-filing:before {
  8774. content: "\f18d";
  8775. }
  8776. .ion-ios7-filing-outline:before {
  8777. content: "\f18c";
  8778. }
  8779. .ion-ios7-film:before {
  8780. content: "\f18f";
  8781. }
  8782. .ion-ios7-film-outline:before {
  8783. content: "\f18e";
  8784. }
  8785. .ion-ios7-flag:before {
  8786. content: "\f191";
  8787. }
  8788. .ion-ios7-flag-outline:before {
  8789. content: "\f190";
  8790. }
  8791. .ion-ios7-folder:before {
  8792. content: "\f193";
  8793. }
  8794. .ion-ios7-folder-outline:before {
  8795. content: "\f192";
  8796. }
  8797. .ion-ios7-football:before {
  8798. content: "\f329";
  8799. }
  8800. .ion-ios7-football-outline:before {
  8801. content: "\f328";
  8802. }
  8803. .ion-ios7-gear:before {
  8804. content: "\f195";
  8805. }
  8806. .ion-ios7-gear-outline:before {
  8807. content: "\f194";
  8808. }
  8809. .ion-ios7-glasses:before {
  8810. content: "\f197";
  8811. }
  8812. .ion-ios7-glasses-outline:before {
  8813. content: "\f196";
  8814. }
  8815. .ion-ios7-heart:before {
  8816. content: "\f199";
  8817. }
  8818. .ion-ios7-heart-outline:before {
  8819. content: "\f198";
  8820. }
  8821. .ion-ios7-help:before {
  8822. content: "\f19c";
  8823. }
  8824. .ion-ios7-help-empty:before {
  8825. content: "\f19a";
  8826. }
  8827. .ion-ios7-help-outline:before {
  8828. content: "\f19b";
  8829. }
  8830. .ion-ios7-home:before {
  8831. content: "\f32b";
  8832. }
  8833. .ion-ios7-home-outline:before {
  8834. content: "\f32a";
  8835. }
  8836. .ion-ios7-infinite:before {
  8837. content: "\f19e";
  8838. }
  8839. .ion-ios7-infinite-outline:before {
  8840. content: "\f19d";
  8841. }
  8842. .ion-ios7-information:before {
  8843. content: "\f1a1";
  8844. }
  8845. .ion-ios7-information-empty:before {
  8846. content: "\f19f";
  8847. }
  8848. .ion-ios7-information-outline:before {
  8849. content: "\f1a0";
  8850. }
  8851. .ion-ios7-ionic-outline:before {
  8852. content: "\f1a2";
  8853. }
  8854. .ion-ios7-keypad:before {
  8855. content: "\f1a4";
  8856. }
  8857. .ion-ios7-keypad-outline:before {
  8858. content: "\f1a3";
  8859. }
  8860. .ion-ios7-lightbulb:before {
  8861. content: "\f287";
  8862. }
  8863. .ion-ios7-lightbulb-outline:before {
  8864. content: "\f286";
  8865. }
  8866. .ion-ios7-location:before {
  8867. content: "\f1a6";
  8868. }
  8869. .ion-ios7-location-outline:before {
  8870. content: "\f1a5";
  8871. }
  8872. .ion-ios7-locked:before {
  8873. content: "\f1a8";
  8874. }
  8875. .ion-ios7-locked-outline:before {
  8876. content: "\f1a7";
  8877. }
  8878. .ion-ios7-loop:before {
  8879. content: "\f32d";
  8880. }
  8881. .ion-ios7-loop-strong:before {
  8882. content: "\f32c";
  8883. }
  8884. .ion-ios7-medkit:before {
  8885. content: "\f289";
  8886. }
  8887. .ion-ios7-medkit-outline:before {
  8888. content: "\f288";
  8889. }
  8890. .ion-ios7-mic:before {
  8891. content: "\f1ab";
  8892. }
  8893. .ion-ios7-mic-off:before {
  8894. content: "\f1a9";
  8895. }
  8896. .ion-ios7-mic-outline:before {
  8897. content: "\f1aa";
  8898. }
  8899. .ion-ios7-minus:before {
  8900. content: "\f1ae";
  8901. }
  8902. .ion-ios7-minus-empty:before {
  8903. content: "\f1ac";
  8904. }
  8905. .ion-ios7-minus-outline:before {
  8906. content: "\f1ad";
  8907. }
  8908. .ion-ios7-monitor:before {
  8909. content: "\f1b0";
  8910. }
  8911. .ion-ios7-monitor-outline:before {
  8912. content: "\f1af";
  8913. }
  8914. .ion-ios7-moon:before {
  8915. content: "\f1b2";
  8916. }
  8917. .ion-ios7-moon-outline:before {
  8918. content: "\f1b1";
  8919. }
  8920. .ion-ios7-more:before {
  8921. content: "\f1b4";
  8922. }
  8923. .ion-ios7-more-outline:before {
  8924. content: "\f1b3";
  8925. }
  8926. .ion-ios7-musical-note:before {
  8927. content: "\f1b5";
  8928. }
  8929. .ion-ios7-musical-notes:before {
  8930. content: "\f1b6";
  8931. }
  8932. .ion-ios7-navigate:before {
  8933. content: "\f1b8";
  8934. }
  8935. .ion-ios7-navigate-outline:before {
  8936. content: "\f1b7";
  8937. }
  8938. .ion-ios7-paper:before {
  8939. content: "\f32f";
  8940. }
  8941. .ion-ios7-paper-outline:before {
  8942. content: "\f32e";
  8943. }
  8944. .ion-ios7-paperplane:before {
  8945. content: "\f1ba";
  8946. }
  8947. .ion-ios7-paperplane-outline:before {
  8948. content: "\f1b9";
  8949. }
  8950. .ion-ios7-partlysunny:before {
  8951. content: "\f1bc";
  8952. }
  8953. .ion-ios7-partlysunny-outline:before {
  8954. content: "\f1bb";
  8955. }
  8956. .ion-ios7-pause:before {
  8957. content: "\f1be";
  8958. }
  8959. .ion-ios7-pause-outline:before {
  8960. content: "\f1bd";
  8961. }
  8962. .ion-ios7-paw:before {
  8963. content: "\f331";
  8964. }
  8965. .ion-ios7-paw-outline:before {
  8966. content: "\f330";
  8967. }
  8968. .ion-ios7-people:before {
  8969. content: "\f1c0";
  8970. }
  8971. .ion-ios7-people-outline:before {
  8972. content: "\f1bf";
  8973. }
  8974. .ion-ios7-person:before {
  8975. content: "\f1c2";
  8976. }
  8977. .ion-ios7-person-outline:before {
  8978. content: "\f1c1";
  8979. }
  8980. .ion-ios7-personadd:before {
  8981. content: "\f1c4";
  8982. }
  8983. .ion-ios7-personadd-outline:before {
  8984. content: "\f1c3";
  8985. }
  8986. .ion-ios7-photos:before {
  8987. content: "\f1c6";
  8988. }
  8989. .ion-ios7-photos-outline:before {
  8990. content: "\f1c5";
  8991. }
  8992. .ion-ios7-pie:before {
  8993. content: "\f28b";
  8994. }
  8995. .ion-ios7-pie-outline:before {
  8996. content: "\f28a";
  8997. }
  8998. .ion-ios7-play:before {
  8999. content: "\f1c8";
  9000. }
  9001. .ion-ios7-play-outline:before {
  9002. content: "\f1c7";
  9003. }
  9004. .ion-ios7-plus:before {
  9005. content: "\f1cb";
  9006. }
  9007. .ion-ios7-plus-empty:before {
  9008. content: "\f1c9";
  9009. }
  9010. .ion-ios7-plus-outline:before {
  9011. content: "\f1ca";
  9012. }
  9013. .ion-ios7-pricetag:before {
  9014. content: "\f28d";
  9015. }
  9016. .ion-ios7-pricetag-outline:before {
  9017. content: "\f28c";
  9018. }
  9019. .ion-ios7-pricetags:before {
  9020. content: "\f333";
  9021. }
  9022. .ion-ios7-pricetags-outline:before {
  9023. content: "\f332";
  9024. }
  9025. .ion-ios7-printer:before {
  9026. content: "\f1cd";
  9027. }
  9028. .ion-ios7-printer-outline:before {
  9029. content: "\f1cc";
  9030. }
  9031. .ion-ios7-pulse:before {
  9032. content: "\f335";
  9033. }
  9034. .ion-ios7-pulse-strong:before {
  9035. content: "\f334";
  9036. }
  9037. .ion-ios7-rainy:before {
  9038. content: "\f1cf";
  9039. }
  9040. .ion-ios7-rainy-outline:before {
  9041. content: "\f1ce";
  9042. }
  9043. .ion-ios7-recording:before {
  9044. content: "\f1d1";
  9045. }
  9046. .ion-ios7-recording-outline:before {
  9047. content: "\f1d0";
  9048. }
  9049. .ion-ios7-redo:before {
  9050. content: "\f1d3";
  9051. }
  9052. .ion-ios7-redo-outline:before {
  9053. content: "\f1d2";
  9054. }
  9055. .ion-ios7-refresh:before {
  9056. content: "\f1d6";
  9057. }
  9058. .ion-ios7-refresh-empty:before {
  9059. content: "\f1d4";
  9060. }
  9061. .ion-ios7-refresh-outline:before {
  9062. content: "\f1d5";
  9063. }
  9064. .ion-ios7-reload:before {
  9065. content: "\f28e";
  9066. }
  9067. .ion-ios7-reverse-camera:before {
  9068. content: "\f337";
  9069. }
  9070. .ion-ios7-reverse-camera-outline:before {
  9071. content: "\f336";
  9072. }
  9073. .ion-ios7-rewind:before {
  9074. content: "\f1d8";
  9075. }
  9076. .ion-ios7-rewind-outline:before {
  9077. content: "\f1d7";
  9078. }
  9079. .ion-ios7-search:before {
  9080. content: "\f1da";
  9081. }
  9082. .ion-ios7-search-strong:before {
  9083. content: "\f1d9";
  9084. }
  9085. .ion-ios7-settings:before {
  9086. content: "\f339";
  9087. }
  9088. .ion-ios7-settings-strong:before {
  9089. content: "\f338";
  9090. }
  9091. .ion-ios7-shrink:before {
  9092. content: "\f30e";
  9093. }
  9094. .ion-ios7-skipbackward:before {
  9095. content: "\f1dc";
  9096. }
  9097. .ion-ios7-skipbackward-outline:before {
  9098. content: "\f1db";
  9099. }
  9100. .ion-ios7-skipforward:before {
  9101. content: "\f1de";
  9102. }
  9103. .ion-ios7-skipforward-outline:before {
  9104. content: "\f1dd";
  9105. }
  9106. .ion-ios7-snowy:before {
  9107. content: "\f309";
  9108. }
  9109. .ion-ios7-speedometer:before {
  9110. content: "\f290";
  9111. }
  9112. .ion-ios7-speedometer-outline:before {
  9113. content: "\f28f";
  9114. }
  9115. .ion-ios7-star:before {
  9116. content: "\f1e0";
  9117. }
  9118. .ion-ios7-star-half:before {
  9119. content: "\f33a";
  9120. }
  9121. .ion-ios7-star-outline:before {
  9122. content: "\f1df";
  9123. }
  9124. .ion-ios7-stopwatch:before {
  9125. content: "\f1e2";
  9126. }
  9127. .ion-ios7-stopwatch-outline:before {
  9128. content: "\f1e1";
  9129. }
  9130. .ion-ios7-sunny:before {
  9131. content: "\f1e4";
  9132. }
  9133. .ion-ios7-sunny-outline:before {
  9134. content: "\f1e3";
  9135. }
  9136. .ion-ios7-telephone:before {
  9137. content: "\f1e6";
  9138. }
  9139. .ion-ios7-telephone-outline:before {
  9140. content: "\f1e5";
  9141. }
  9142. .ion-ios7-tennisball:before {
  9143. content: "\f33c";
  9144. }
  9145. .ion-ios7-tennisball-outline:before {
  9146. content: "\f33b";
  9147. }
  9148. .ion-ios7-thunderstorm:before {
  9149. content: "\f1e8";
  9150. }
  9151. .ion-ios7-thunderstorm-outline:before {
  9152. content: "\f1e7";
  9153. }
  9154. .ion-ios7-time:before {
  9155. content: "\f292";
  9156. }
  9157. .ion-ios7-time-outline:before {
  9158. content: "\f291";
  9159. }
  9160. .ion-ios7-timer:before {
  9161. content: "\f1ea";
  9162. }
  9163. .ion-ios7-timer-outline:before {
  9164. content: "\f1e9";
  9165. }
  9166. .ion-ios7-toggle:before {
  9167. content: "\f33e";
  9168. }
  9169. .ion-ios7-toggle-outline:before {
  9170. content: "\f33d";
  9171. }
  9172. .ion-ios7-trash:before {
  9173. content: "\f1ec";
  9174. }
  9175. .ion-ios7-trash-outline:before {
  9176. content: "\f1eb";
  9177. }
  9178. .ion-ios7-undo:before {
  9179. content: "\f1ee";
  9180. }
  9181. .ion-ios7-undo-outline:before {
  9182. content: "\f1ed";
  9183. }
  9184. .ion-ios7-unlocked:before {
  9185. content: "\f1f0";
  9186. }
  9187. .ion-ios7-unlocked-outline:before {
  9188. content: "\f1ef";
  9189. }
  9190. .ion-ios7-upload:before {
  9191. content: "\f1f2";
  9192. }
  9193. .ion-ios7-upload-outline:before {
  9194. content: "\f1f1";
  9195. }
  9196. .ion-ios7-videocam:before {
  9197. content: "\f1f4";
  9198. }
  9199. .ion-ios7-videocam-outline:before {
  9200. content: "\f1f3";
  9201. }
  9202. .ion-ios7-volume-high:before {
  9203. content: "\f1f5";
  9204. }
  9205. .ion-ios7-volume-low:before {
  9206. content: "\f1f6";
  9207. }
  9208. .ion-ios7-wineglass:before {
  9209. content: "\f294";
  9210. }
  9211. .ion-ios7-wineglass-outline:before {
  9212. content: "\f293";
  9213. }
  9214. .ion-ios7-world:before {
  9215. content: "\f1f8";
  9216. }
  9217. .ion-ios7-world-outline:before {
  9218. content: "\f1f7";
  9219. }
  9220. .ion-ipad:before {
  9221. content: "\f1f9";
  9222. }
  9223. .ion-iphone:before {
  9224. content: "\f1fa";
  9225. }
  9226. .ion-ipod:before {
  9227. content: "\f1fb";
  9228. }
  9229. .ion-jet:before {
  9230. content: "\f295";
  9231. }
  9232. .ion-key:before {
  9233. content: "\f296";
  9234. }
  9235. .ion-knife:before {
  9236. content: "\f297";
  9237. }
  9238. .ion-laptop:before {
  9239. content: "\f1fc";
  9240. }
  9241. .ion-leaf:before {
  9242. content: "\f1fd";
  9243. }
  9244. .ion-levels:before {
  9245. content: "\f298";
  9246. }
  9247. .ion-lightbulb:before {
  9248. content: "\f299";
  9249. }
  9250. .ion-link:before {
  9251. content: "\f1fe";
  9252. }
  9253. .ion-load-a:before {
  9254. content: "\f29a";
  9255. }
  9256. .ion-load-b:before {
  9257. content: "\f29b";
  9258. }
  9259. .ion-load-c:before {
  9260. content: "\f29c";
  9261. }
  9262. .ion-load-d:before {
  9263. content: "\f29d";
  9264. }
  9265. .ion-location:before {
  9266. content: "\f1ff";
  9267. }
  9268. .ion-locked:before {
  9269. content: "\f200";
  9270. }
  9271. .ion-log-in:before {
  9272. content: "\f29e";
  9273. }
  9274. .ion-log-out:before {
  9275. content: "\f29f";
  9276. }
  9277. .ion-loop:before {
  9278. content: "\f201";
  9279. }
  9280. .ion-magnet:before {
  9281. content: "\f2a0";
  9282. }
  9283. .ion-male:before {
  9284. content: "\f2a1";
  9285. }
  9286. .ion-man:before {
  9287. content: "\f202";
  9288. }
  9289. .ion-map:before {
  9290. content: "\f203";
  9291. }
  9292. .ion-medkit:before {
  9293. content: "\f2a2";
  9294. }
  9295. .ion-merge:before {
  9296. content: "\f33f";
  9297. }
  9298. .ion-mic-a:before {
  9299. content: "\f204";
  9300. }
  9301. .ion-mic-b:before {
  9302. content: "\f205";
  9303. }
  9304. .ion-mic-c:before {
  9305. content: "\f206";
  9306. }
  9307. .ion-minus:before {
  9308. content: "\f209";
  9309. }
  9310. .ion-minus-circled:before {
  9311. content: "\f207";
  9312. }
  9313. .ion-minus-round:before {
  9314. content: "\f208";
  9315. }
  9316. .ion-model-s:before {
  9317. content: "\f2c1";
  9318. }
  9319. .ion-monitor:before {
  9320. content: "\f20a";
  9321. }
  9322. .ion-more:before {
  9323. content: "\f20b";
  9324. }
  9325. .ion-mouse:before {
  9326. content: "\f340";
  9327. }
  9328. .ion-music-note:before {
  9329. content: "\f20c";
  9330. }
  9331. .ion-navicon:before {
  9332. content: "\f20e";
  9333. }
  9334. .ion-navicon-round:before {
  9335. content: "\f20d";
  9336. }
  9337. .ion-navigate:before {
  9338. content: "\f2a3";
  9339. }
  9340. .ion-network:before {
  9341. content: "\f341";
  9342. }
  9343. .ion-no-smoking:before {
  9344. content: "\f2c2";
  9345. }
  9346. .ion-nuclear:before {
  9347. content: "\f2a4";
  9348. }
  9349. .ion-outlet:before {
  9350. content: "\f342";
  9351. }
  9352. .ion-paper-airplane:before {
  9353. content: "\f2c3";
  9354. }
  9355. .ion-paperclip:before {
  9356. content: "\f20f";
  9357. }
  9358. .ion-pause:before {
  9359. content: "\f210";
  9360. }
  9361. .ion-person:before {
  9362. content: "\f213";
  9363. }
  9364. .ion-person-add:before {
  9365. content: "\f211";
  9366. }
  9367. .ion-person-stalker:before {
  9368. content: "\f212";
  9369. }
  9370. .ion-pie-graph:before {
  9371. content: "\f2a5";
  9372. }
  9373. .ion-pin:before {
  9374. content: "\f2a6";
  9375. }
  9376. .ion-pinpoint:before {
  9377. content: "\f2a7";
  9378. }
  9379. .ion-pizza:before {
  9380. content: "\f2a8";
  9381. }
  9382. .ion-plane:before {
  9383. content: "\f214";
  9384. }
  9385. .ion-planet:before {
  9386. content: "\f343";
  9387. }
  9388. .ion-play:before {
  9389. content: "\f215";
  9390. }
  9391. .ion-playstation:before {
  9392. content: "\f30a";
  9393. }
  9394. .ion-plus:before {
  9395. content: "\f218";
  9396. }
  9397. .ion-plus-circled:before {
  9398. content: "\f216";
  9399. }
  9400. .ion-plus-round:before {
  9401. content: "\f217";
  9402. }
  9403. .ion-podium:before {
  9404. content: "\f344";
  9405. }
  9406. .ion-pound:before {
  9407. content: "\f219";
  9408. }
  9409. .ion-power:before {
  9410. content: "\f2a9";
  9411. }
  9412. .ion-pricetag:before {
  9413. content: "\f2aa";
  9414. }
  9415. .ion-pricetags:before {
  9416. content: "\f2ab";
  9417. }
  9418. .ion-printer:before {
  9419. content: "\f21a";
  9420. }
  9421. .ion-pull-request:before {
  9422. content: "\f345";
  9423. }
  9424. .ion-qr-scanner:before {
  9425. content: "\f346";
  9426. }
  9427. .ion-quote:before {
  9428. content: "\f347";
  9429. }
  9430. .ion-radio-waves:before {
  9431. content: "\f2ac";
  9432. }
  9433. .ion-record:before {
  9434. content: "\f21b";
  9435. }
  9436. .ion-refresh:before {
  9437. content: "\f21c";
  9438. }
  9439. .ion-reply:before {
  9440. content: "\f21e";
  9441. }
  9442. .ion-reply-all:before {
  9443. content: "\f21d";
  9444. }
  9445. .ion-ribbon-a:before {
  9446. content: "\f348";
  9447. }
  9448. .ion-ribbon-b:before {
  9449. content: "\f349";
  9450. }
  9451. .ion-sad:before {
  9452. content: "\f34a";
  9453. }
  9454. .ion-scissors:before {
  9455. content: "\f34b";
  9456. }
  9457. .ion-search:before {
  9458. content: "\f21f";
  9459. }
  9460. .ion-settings:before {
  9461. content: "\f2ad";
  9462. }
  9463. .ion-share:before {
  9464. content: "\f220";
  9465. }
  9466. .ion-shuffle:before {
  9467. content: "\f221";
  9468. }
  9469. .ion-skip-backward:before {
  9470. content: "\f222";
  9471. }
  9472. .ion-skip-forward:before {
  9473. content: "\f223";
  9474. }
  9475. .ion-social-android:before {
  9476. content: "\f225";
  9477. }
  9478. .ion-social-android-outline:before {
  9479. content: "\f224";
  9480. }
  9481. .ion-social-apple:before {
  9482. content: "\f227";
  9483. }
  9484. .ion-social-apple-outline:before {
  9485. content: "\f226";
  9486. }
  9487. .ion-social-bitcoin:before {
  9488. content: "\f2af";
  9489. }
  9490. .ion-social-bitcoin-outline:before {
  9491. content: "\f2ae";
  9492. }
  9493. .ion-social-buffer:before {
  9494. content: "\f229";
  9495. }
  9496. .ion-social-buffer-outline:before {
  9497. content: "\f228";
  9498. }
  9499. .ion-social-designernews:before {
  9500. content: "\f22b";
  9501. }
  9502. .ion-social-designernews-outline:before {
  9503. content: "\f22a";
  9504. }
  9505. .ion-social-dribbble:before {
  9506. content: "\f22d";
  9507. }
  9508. .ion-social-dribbble-outline:before {
  9509. content: "\f22c";
  9510. }
  9511. .ion-social-dropbox:before {
  9512. content: "\f22f";
  9513. }
  9514. .ion-social-dropbox-outline:before {
  9515. content: "\f22e";
  9516. }
  9517. .ion-social-facebook:before {
  9518. content: "\f231";
  9519. }
  9520. .ion-social-facebook-outline:before {
  9521. content: "\f230";
  9522. }
  9523. .ion-social-foursquare:before {
  9524. content: "\f34d";
  9525. }
  9526. .ion-social-foursquare-outline:before {
  9527. content: "\f34c";
  9528. }
  9529. .ion-social-freebsd-devil:before {
  9530. content: "\f2c4";
  9531. }
  9532. .ion-social-github:before {
  9533. content: "\f233";
  9534. }
  9535. .ion-social-github-outline:before {
  9536. content: "\f232";
  9537. }
  9538. .ion-social-google:before {
  9539. content: "\f34f";
  9540. }
  9541. .ion-social-google-outline:before {
  9542. content: "\f34e";
  9543. }
  9544. .ion-social-googleplus:before {
  9545. content: "\f235";
  9546. }
  9547. .ion-social-googleplus-outline:before {
  9548. content: "\f234";
  9549. }
  9550. .ion-social-hackernews:before {
  9551. content: "\f237";
  9552. }
  9553. .ion-social-hackernews-outline:before {
  9554. content: "\f236";
  9555. }
  9556. .ion-social-instagram:before {
  9557. content: "\f351";
  9558. }
  9559. .ion-social-instagram-outline:before {
  9560. content: "\f350";
  9561. }
  9562. .ion-social-linkedin:before {
  9563. content: "\f239";
  9564. }
  9565. .ion-social-linkedin-outline:before {
  9566. content: "\f238";
  9567. }
  9568. .ion-social-pinterest:before {
  9569. content: "\f2b1";
  9570. }
  9571. .ion-social-pinterest-outline:before {
  9572. content: "\f2b0";
  9573. }
  9574. .ion-social-reddit:before {
  9575. content: "\f23b";
  9576. }
  9577. .ion-social-reddit-outline:before {
  9578. content: "\f23a";
  9579. }
  9580. .ion-social-rss:before {
  9581. content: "\f23d";
  9582. }
  9583. .ion-social-rss-outline:before {
  9584. content: "\f23c";
  9585. }
  9586. .ion-social-skype:before {
  9587. content: "\f23f";
  9588. }
  9589. .ion-social-skype-outline:before {
  9590. content: "\f23e";
  9591. }
  9592. .ion-social-tumblr:before {
  9593. content: "\f241";
  9594. }
  9595. .ion-social-tumblr-outline:before {
  9596. content: "\f240";
  9597. }
  9598. .ion-social-tux:before {
  9599. content: "\f2c5";
  9600. }
  9601. .ion-social-twitter:before {
  9602. content: "\f243";
  9603. }
  9604. .ion-social-twitter-outline:before {
  9605. content: "\f242";
  9606. }
  9607. .ion-social-usd:before {
  9608. content: "\f353";
  9609. }
  9610. .ion-social-usd-outline:before {
  9611. content: "\f352";
  9612. }
  9613. .ion-social-vimeo:before {
  9614. content: "\f245";
  9615. }
  9616. .ion-social-vimeo-outline:before {
  9617. content: "\f244";
  9618. }
  9619. .ion-social-windows:before {
  9620. content: "\f247";
  9621. }
  9622. .ion-social-windows-outline:before {
  9623. content: "\f246";
  9624. }
  9625. .ion-social-wordpress:before {
  9626. content: "\f249";
  9627. }
  9628. .ion-social-wordpress-outline:before {
  9629. content: "\f248";
  9630. }
  9631. .ion-social-yahoo:before {
  9632. content: "\f24b";
  9633. }
  9634. .ion-social-yahoo-outline:before {
  9635. content: "\f24a";
  9636. }
  9637. .ion-social-youtube:before {
  9638. content: "\f24d";
  9639. }
  9640. .ion-social-youtube-outline:before {
  9641. content: "\f24c";
  9642. }
  9643. .ion-speakerphone:before {
  9644. content: "\f2b2";
  9645. }
  9646. .ion-speedometer:before {
  9647. content: "\f2b3";
  9648. }
  9649. .ion-spoon:before {
  9650. content: "\f2b4";
  9651. }
  9652. .ion-star:before {
  9653. content: "\f24e";
  9654. }
  9655. .ion-stats-bars:before {
  9656. content: "\f2b5";
  9657. }
  9658. .ion-steam:before {
  9659. content: "\f30b";
  9660. }
  9661. .ion-stop:before {
  9662. content: "\f24f";
  9663. }
  9664. .ion-thermometer:before {
  9665. content: "\f2b6";
  9666. }
  9667. .ion-thumbsdown:before {
  9668. content: "\f250";
  9669. }
  9670. .ion-thumbsup:before {
  9671. content: "\f251";
  9672. }
  9673. .ion-toggle:before {
  9674. content: "\f355";
  9675. }
  9676. .ion-toggle-filled:before {
  9677. content: "\f354";
  9678. }
  9679. .ion-trash-a:before {
  9680. content: "\f252";
  9681. }
  9682. .ion-trash-b:before {
  9683. content: "\f253";
  9684. }
  9685. .ion-trophy:before {
  9686. content: "\f356";
  9687. }
  9688. .ion-umbrella:before {
  9689. content: "\f2b7";
  9690. }
  9691. .ion-university:before {
  9692. content: "\f357";
  9693. }
  9694. .ion-unlocked:before {
  9695. content: "\f254";
  9696. }
  9697. .ion-upload:before {
  9698. content: "\f255";
  9699. }
  9700. .ion-usb:before {
  9701. content: "\f2b8";
  9702. }
  9703. .ion-videocamera:before {
  9704. content: "\f256";
  9705. }
  9706. .ion-volume-high:before {
  9707. content: "\f257";
  9708. }
  9709. .ion-volume-low:before {
  9710. content: "\f258";
  9711. }
  9712. .ion-volume-medium:before {
  9713. content: "\f259";
  9714. }
  9715. .ion-volume-mute:before {
  9716. content: "\f25a";
  9717. }
  9718. .ion-wand:before {
  9719. content: "\f358";
  9720. }
  9721. .ion-waterdrop:before {
  9722. content: "\f25b";
  9723. }
  9724. .ion-wifi:before {
  9725. content: "\f25c";
  9726. }
  9727. .ion-wineglass:before {
  9728. content: "\f2b9";
  9729. }
  9730. .ion-woman:before {
  9731. content: "\f25d";
  9732. }
  9733. .ion-wrench:before {
  9734. content: "\f2ba";
  9735. }
  9736. .ion-xbox:before {
  9737. content: "\f30c";
  9738. }
  9739. @font-face {
  9740. font-family: 'themify';
  9741. src: url('../fonts/themify9f24.eot?-fvbane');
  9742. src: url('../fonts/themifyd41d.eot?#iefix-fvbane') format('embedded-opentype'), url('../fonts/themify9f24.woff?-fvbane') format('woff'), url('../fonts/themify9f24.ttf?-fvbane') format('truetype'), url('../fonts/themify9f24.svg?-fvbane#themify') format('svg');
  9743. font-weight: normal;
  9744. font-style: normal;
  9745. }
  9746. [class^="ti-"],
  9747. [class*=" ti-"] {
  9748. font-family: 'themify';
  9749. speak: none;
  9750. font-style: normal;
  9751. font-weight: normal;
  9752. font-variant: normal;
  9753. text-transform: none;
  9754. line-height: 1;
  9755. /* Better Font Rendering =========== */
  9756. -webkit-font-smoothing: antialiased;
  9757. -moz-osx-font-smoothing: grayscale;
  9758. }
  9759. .ti-wand:before {
  9760. content: "\e600";
  9761. }
  9762. .ti-volume:before {
  9763. content: "\e601";
  9764. }
  9765. .ti-user:before {
  9766. content: "\e602";
  9767. }
  9768. .ti-unlock:before {
  9769. content: "\e603";
  9770. }
  9771. .ti-unlink:before {
  9772. content: "\e604";
  9773. }
  9774. .ti-trash:before {
  9775. content: "\e605";
  9776. }
  9777. .ti-thought:before {
  9778. content: "\e606";
  9779. }
  9780. .ti-target:before {
  9781. content: "\e607";
  9782. }
  9783. .ti-tag:before {
  9784. content: "\e608";
  9785. }
  9786. .ti-tablet:before {
  9787. content: "\e609";
  9788. }
  9789. .ti-star:before {
  9790. content: "\e60a";
  9791. }
  9792. .ti-spray:before {
  9793. content: "\e60b";
  9794. }
  9795. .ti-signal:before {
  9796. content: "\e60c";
  9797. }
  9798. .ti-shopping-cart:before {
  9799. content: "\e60d";
  9800. }
  9801. .ti-shopping-cart-full:before {
  9802. content: "\e60e";
  9803. }
  9804. .ti-settings:before {
  9805. content: "\e60f";
  9806. }
  9807. .ti-search:before {
  9808. content: "\e610";
  9809. }
  9810. .ti-zoom-in:before {
  9811. content: "\e611";
  9812. }
  9813. .ti-zoom-out:before {
  9814. content: "\e612";
  9815. }
  9816. .ti-cut:before {
  9817. content: "\e613";
  9818. }
  9819. .ti-ruler:before {
  9820. content: "\e614";
  9821. }
  9822. .ti-ruler-pencil:before {
  9823. content: "\e615";
  9824. }
  9825. .ti-ruler-alt:before {
  9826. content: "\e616";
  9827. }
  9828. .ti-bookmark:before {
  9829. content: "\e617";
  9830. }
  9831. .ti-bookmark-alt:before {
  9832. content: "\e618";
  9833. }
  9834. .ti-reload:before {
  9835. content: "\e619";
  9836. }
  9837. .ti-plus:before {
  9838. content: "\e61a";
  9839. }
  9840. .ti-pin:before {
  9841. content: "\e61b";
  9842. }
  9843. .ti-pencil:before {
  9844. content: "\e61c";
  9845. }
  9846. .ti-pencil-alt:before {
  9847. content: "\e61d";
  9848. }
  9849. .ti-paint-roller:before {
  9850. content: "\e61e";
  9851. }
  9852. .ti-paint-bucket:before {
  9853. content: "\e61f";
  9854. }
  9855. .ti-na:before {
  9856. content: "\e620";
  9857. }
  9858. .ti-mobile:before {
  9859. content: "\e621";
  9860. }
  9861. .ti-minus:before {
  9862. content: "\e622";
  9863. }
  9864. .ti-medall:before {
  9865. content: "\e623";
  9866. }
  9867. .ti-medall-alt:before {
  9868. content: "\e624";
  9869. }
  9870. .ti-marker:before {
  9871. content: "\e625";
  9872. }
  9873. .ti-marker-alt:before {
  9874. content: "\e626";
  9875. }
  9876. .ti-arrow-up:before {
  9877. content: "\e627";
  9878. }
  9879. .ti-arrow-right:before {
  9880. content: "\e628";
  9881. }
  9882. .ti-arrow-left:before {
  9883. content: "\e629";
  9884. }
  9885. .ti-arrow-down:before {
  9886. content: "\e62a";
  9887. }
  9888. .ti-lock:before {
  9889. content: "\e62b";
  9890. }
  9891. .ti-location-arrow:before {
  9892. content: "\e62c";
  9893. }
  9894. .ti-link:before {
  9895. content: "\e62d";
  9896. }
  9897. .ti-layout:before {
  9898. content: "\e62e";
  9899. }
  9900. .ti-layers:before {
  9901. content: "\e62f";
  9902. }
  9903. .ti-layers-alt:before {
  9904. content: "\e630";
  9905. }
  9906. .ti-key:before {
  9907. content: "\e631";
  9908. }
  9909. .ti-import:before {
  9910. content: "\e632";
  9911. }
  9912. .ti-image:before {
  9913. content: "\e633";
  9914. }
  9915. .ti-heart:before {
  9916. content: "\e634";
  9917. }
  9918. .ti-heart-broken:before {
  9919. content: "\e635";
  9920. }
  9921. .ti-hand-stop:before {
  9922. content: "\e636";
  9923. }
  9924. .ti-hand-open:before {
  9925. content: "\e637";
  9926. }
  9927. .ti-hand-drag:before {
  9928. content: "\e638";
  9929. }
  9930. .ti-folder:before {
  9931. content: "\e639";
  9932. }
  9933. .ti-flag:before {
  9934. content: "\e63a";
  9935. }
  9936. .ti-flag-alt:before {
  9937. content: "\e63b";
  9938. }
  9939. .ti-flag-alt-2:before {
  9940. content: "\e63c";
  9941. }
  9942. .ti-eye:before {
  9943. content: "\e63d";
  9944. }
  9945. .ti-export:before {
  9946. content: "\e63e";
  9947. }
  9948. .ti-exchange-vertical:before {
  9949. content: "\e63f";
  9950. }
  9951. .ti-desktop:before {
  9952. content: "\e640";
  9953. }
  9954. .ti-cup:before {
  9955. content: "\e641";
  9956. }
  9957. .ti-crown:before {
  9958. content: "\e642";
  9959. }
  9960. .ti-comments:before {
  9961. content: "\e643";
  9962. }
  9963. .ti-comment:before {
  9964. content: "\e644";
  9965. }
  9966. .ti-comment-alt:before {
  9967. content: "\e645";
  9968. }
  9969. .ti-close:before {
  9970. content: "\e646";
  9971. }
  9972. .ti-clip:before {
  9973. content: "\e647";
  9974. }
  9975. .ti-angle-up:before {
  9976. content: "\e648";
  9977. }
  9978. .ti-angle-right:before {
  9979. content: "\e649";
  9980. }
  9981. .ti-angle-left:before {
  9982. content: "\e64a";
  9983. }
  9984. .ti-angle-down:before {
  9985. content: "\e64b";
  9986. }
  9987. .ti-check:before {
  9988. content: "\e64c";
  9989. }
  9990. .ti-check-box:before {
  9991. content: "\e64d";
  9992. }
  9993. .ti-camera:before {
  9994. content: "\e64e";
  9995. }
  9996. .ti-announcement:before {
  9997. content: "\e64f";
  9998. }
  9999. .ti-brush:before {
  10000. content: "\e650";
  10001. }
  10002. .ti-briefcase:before {
  10003. content: "\e651";
  10004. }
  10005. .ti-bolt:before {
  10006. content: "\e652";
  10007. }
  10008. .ti-bolt-alt:before {
  10009. content: "\e653";
  10010. }
  10011. .ti-blackboard:before {
  10012. content: "\e654";
  10013. }
  10014. .ti-bag:before {
  10015. content: "\e655";
  10016. }
  10017. .ti-move:before {
  10018. content: "\e656";
  10019. }
  10020. .ti-arrows-vertical:before {
  10021. content: "\e657";
  10022. }
  10023. .ti-arrows-horizontal:before {
  10024. content: "\e658";
  10025. }
  10026. .ti-fullscreen:before {
  10027. content: "\e659";
  10028. }
  10029. .ti-arrow-top-right:before {
  10030. content: "\e65a";
  10031. }
  10032. .ti-arrow-top-left:before {
  10033. content: "\e65b";
  10034. }
  10035. .ti-arrow-circle-up:before {
  10036. content: "\e65c";
  10037. }
  10038. .ti-arrow-circle-right:before {
  10039. content: "\e65d";
  10040. }
  10041. .ti-arrow-circle-left:before {
  10042. content: "\e65e";
  10043. }
  10044. .ti-arrow-circle-down:before {
  10045. content: "\e65f";
  10046. }
  10047. .ti-angle-double-up:before {
  10048. content: "\e660";
  10049. }
  10050. .ti-angle-double-right:before {
  10051. content: "\e661";
  10052. }
  10053. .ti-angle-double-left:before {
  10054. content: "\e662";
  10055. }
  10056. .ti-angle-double-down:before {
  10057. content: "\e663";
  10058. }
  10059. .ti-zip:before {
  10060. content: "\e664";
  10061. }
  10062. .ti-world:before {
  10063. content: "\e665";
  10064. }
  10065. .ti-wheelchair:before {
  10066. content: "\e666";
  10067. }
  10068. .ti-view-list:before {
  10069. content: "\e667";
  10070. }
  10071. .ti-view-list-alt:before {
  10072. content: "\e668";
  10073. }
  10074. .ti-view-grid:before {
  10075. content: "\e669";
  10076. }
  10077. .ti-uppercase:before {
  10078. content: "\e66a";
  10079. }
  10080. .ti-upload:before {
  10081. content: "\e66b";
  10082. }
  10083. .ti-underline:before {
  10084. content: "\e66c";
  10085. }
  10086. .ti-truck:before {
  10087. content: "\e66d";
  10088. }
  10089. .ti-timer:before {
  10090. content: "\e66e";
  10091. }
  10092. .ti-ticket:before {
  10093. content: "\e66f";
  10094. }
  10095. .ti-thumb-up:before {
  10096. content: "\e670";
  10097. }
  10098. .ti-thumb-down:before {
  10099. content: "\e671";
  10100. }
  10101. .ti-text:before {
  10102. content: "\e672";
  10103. }
  10104. .ti-stats-up:before {
  10105. content: "\e673";
  10106. }
  10107. .ti-stats-down:before {
  10108. content: "\e674";
  10109. }
  10110. .ti-split-v:before {
  10111. content: "\e675";
  10112. }
  10113. .ti-split-h:before {
  10114. content: "\e676";
  10115. }
  10116. .ti-smallcap:before {
  10117. content: "\e677";
  10118. }
  10119. .ti-shine:before {
  10120. content: "\e678";
  10121. }
  10122. .ti-shift-right:before {
  10123. content: "\e679";
  10124. }
  10125. .ti-shift-left:before {
  10126. content: "\e67a";
  10127. }
  10128. .ti-shield:before {
  10129. content: "\e67b";
  10130. }
  10131. .ti-notepad:before {
  10132. content: "\e67c";
  10133. }
  10134. .ti-server:before {
  10135. content: "\e67d";
  10136. }
  10137. .ti-quote-right:before {
  10138. content: "\e67e";
  10139. }
  10140. .ti-quote-left:before {
  10141. content: "\e67f";
  10142. }
  10143. .ti-pulse:before {
  10144. content: "\e680";
  10145. }
  10146. .ti-printer:before {
  10147. content: "\e681";
  10148. }
  10149. .ti-power-off:before {
  10150. content: "\e682";
  10151. }
  10152. .ti-plug:before {
  10153. content: "\e683";
  10154. }
  10155. .ti-pie-chart:before {
  10156. content: "\e684";
  10157. }
  10158. .ti-paragraph:before {
  10159. content: "\e685";
  10160. }
  10161. .ti-panel:before {
  10162. content: "\e686";
  10163. }
  10164. .ti-package:before {
  10165. content: "\e687";
  10166. }
  10167. .ti-music:before {
  10168. content: "\e688";
  10169. }
  10170. .ti-music-alt:before {
  10171. content: "\e689";
  10172. }
  10173. .ti-mouse:before {
  10174. content: "\e68a";
  10175. }
  10176. .ti-mouse-alt:before {
  10177. content: "\e68b";
  10178. }
  10179. .ti-money:before {
  10180. content: "\e68c";
  10181. }
  10182. .ti-microphone:before {
  10183. content: "\e68d";
  10184. }
  10185. .ti-menu:before {
  10186. content: "\e68e";
  10187. }
  10188. .ti-menu-alt:before {
  10189. content: "\e68f";
  10190. }
  10191. .ti-map:before {
  10192. content: "\e690";
  10193. }
  10194. .ti-map-alt:before {
  10195. content: "\e691";
  10196. }
  10197. .ti-loop:before {
  10198. content: "\e692";
  10199. }
  10200. .ti-location-pin:before {
  10201. content: "\e693";
  10202. }
  10203. .ti-list:before {
  10204. content: "\e694";
  10205. }
  10206. .ti-light-bulb:before {
  10207. content: "\e695";
  10208. }
  10209. .ti-Italic:before {
  10210. content: "\e696";
  10211. }
  10212. .ti-info:before {
  10213. content: "\e697";
  10214. }
  10215. .ti-infinite:before {
  10216. content: "\e698";
  10217. }
  10218. .ti-id-badge:before {
  10219. content: "\e699";
  10220. }
  10221. .ti-hummer:before {
  10222. content: "\e69a";
  10223. }
  10224. .ti-home:before {
  10225. content: "\e69b";
  10226. }
  10227. .ti-help:before {
  10228. content: "\e69c";
  10229. }
  10230. .ti-headphone:before {
  10231. content: "\e69d";
  10232. }
  10233. .ti-harddrives:before {
  10234. content: "\e69e";
  10235. }
  10236. .ti-harddrive:before {
  10237. content: "\e69f";
  10238. }
  10239. .ti-gift:before {
  10240. content: "\e6a0";
  10241. }
  10242. .ti-game:before {
  10243. content: "\e6a1";
  10244. }
  10245. .ti-filter:before {
  10246. content: "\e6a2";
  10247. }
  10248. .ti-files:before {
  10249. content: "\e6a3";
  10250. }
  10251. .ti-file:before {
  10252. content: "\e6a4";
  10253. }
  10254. .ti-eraser:before {
  10255. content: "\e6a5";
  10256. }
  10257. .ti-envelope:before {
  10258. content: "\e6a6";
  10259. }
  10260. .ti-download:before {
  10261. content: "\e6a7";
  10262. }
  10263. .ti-direction:before {
  10264. content: "\e6a8";
  10265. }
  10266. .ti-direction-alt:before {
  10267. content: "\e6a9";
  10268. }
  10269. .ti-dashboard:before {
  10270. content: "\e6aa";
  10271. }
  10272. .ti-control-stop:before {
  10273. content: "\e6ab";
  10274. }
  10275. .ti-control-shuffle:before {
  10276. content: "\e6ac";
  10277. }
  10278. .ti-control-play:before {
  10279. content: "\e6ad";
  10280. }
  10281. .ti-control-pause:before {
  10282. content: "\e6ae";
  10283. }
  10284. .ti-control-forward:before {
  10285. content: "\e6af";
  10286. }
  10287. .ti-control-backward:before {
  10288. content: "\e6b0";
  10289. }
  10290. .ti-cloud:before {
  10291. content: "\e6b1";
  10292. }
  10293. .ti-cloud-up:before {
  10294. content: "\e6b2";
  10295. }
  10296. .ti-cloud-down:before {
  10297. content: "\e6b3";
  10298. }
  10299. .ti-clipboard:before {
  10300. content: "\e6b4";
  10301. }
  10302. .ti-car:before {
  10303. content: "\e6b5";
  10304. }
  10305. .ti-calendar:before {
  10306. content: "\e6b6";
  10307. }
  10308. .ti-book:before {
  10309. content: "\e6b7";
  10310. }
  10311. .ti-bell:before {
  10312. content: "\e6b8";
  10313. }
  10314. .ti-basketball:before {
  10315. content: "\e6b9";
  10316. }
  10317. .ti-bar-chart:before {
  10318. content: "\e6ba";
  10319. }
  10320. .ti-bar-chart-alt:before {
  10321. content: "\e6bb";
  10322. }
  10323. .ti-back-right:before {
  10324. content: "\e6bc";
  10325. }
  10326. .ti-back-left:before {
  10327. content: "\e6bd";
  10328. }
  10329. .ti-arrows-corner:before {
  10330. content: "\e6be";
  10331. }
  10332. .ti-archive:before {
  10333. content: "\e6bf";
  10334. }
  10335. .ti-anchor:before {
  10336. content: "\e6c0";
  10337. }
  10338. .ti-align-right:before {
  10339. content: "\e6c1";
  10340. }
  10341. .ti-align-left:before {
  10342. content: "\e6c2";
  10343. }
  10344. .ti-align-justify:before {
  10345. content: "\e6c3";
  10346. }
  10347. .ti-align-center:before {
  10348. content: "\e6c4";
  10349. }
  10350. .ti-alert:before {
  10351. content: "\e6c5";
  10352. }
  10353. .ti-alarm-clock:before {
  10354. content: "\e6c6";
  10355. }
  10356. .ti-agenda:before {
  10357. content: "\e6c7";
  10358. }
  10359. .ti-write:before {
  10360. content: "\e6c8";
  10361. }
  10362. .ti-window:before {
  10363. content: "\e6c9";
  10364. }
  10365. .ti-widgetized:before {
  10366. content: "\e6ca";
  10367. }
  10368. .ti-widget:before {
  10369. content: "\e6cb";
  10370. }
  10371. .ti-widget-alt:before {
  10372. content: "\e6cc";
  10373. }
  10374. .ti-wallet:before {
  10375. content: "\e6cd";
  10376. }
  10377. .ti-video-clapper:before {
  10378. content: "\e6ce";
  10379. }
  10380. .ti-video-camera:before {
  10381. content: "\e6cf";
  10382. }
  10383. .ti-vector:before {
  10384. content: "\e6d0";
  10385. }
  10386. .ti-themify-logo:before {
  10387. content: "\e6d1";
  10388. }
  10389. .ti-themify-favicon:before {
  10390. content: "\e6d2";
  10391. }
  10392. .ti-themify-favicon-alt:before {
  10393. content: "\e6d3";
  10394. }
  10395. .ti-support:before {
  10396. content: "\e6d4";
  10397. }
  10398. .ti-stamp:before {
  10399. content: "\e6d5";
  10400. }
  10401. .ti-split-v-alt:before {
  10402. content: "\e6d6";
  10403. }
  10404. .ti-slice:before {
  10405. content: "\e6d7";
  10406. }
  10407. .ti-shortcode:before {
  10408. content: "\e6d8";
  10409. }
  10410. .ti-shift-right-alt:before {
  10411. content: "\e6d9";
  10412. }
  10413. .ti-shift-left-alt:before {
  10414. content: "\e6da";
  10415. }
  10416. .ti-ruler-alt-2:before {
  10417. content: "\e6db";
  10418. }
  10419. .ti-receipt:before {
  10420. content: "\e6dc";
  10421. }
  10422. .ti-pin2:before {
  10423. content: "\e6dd";
  10424. }
  10425. .ti-pin-alt:before {
  10426. content: "\e6de";
  10427. }
  10428. .ti-pencil-alt2:before {
  10429. content: "\e6df";
  10430. }
  10431. .ti-palette:before {
  10432. content: "\e6e0";
  10433. }
  10434. .ti-more:before {
  10435. content: "\e6e1";
  10436. }
  10437. .ti-more-alt:before {
  10438. content: "\e6e2";
  10439. }
  10440. .ti-microphone-alt:before {
  10441. content: "\e6e3";
  10442. }
  10443. .ti-magnet:before {
  10444. content: "\e6e4";
  10445. }
  10446. .ti-line-double:before {
  10447. content: "\e6e5";
  10448. }
  10449. .ti-line-dotted:before {
  10450. content: "\e6e6";
  10451. }
  10452. .ti-line-dashed:before {
  10453. content: "\e6e7";
  10454. }
  10455. .ti-layout-width-full:before {
  10456. content: "\e6e8";
  10457. }
  10458. .ti-layout-width-default:before {
  10459. content: "\e6e9";
  10460. }
  10461. .ti-layout-width-default-alt:before {
  10462. content: "\e6ea";
  10463. }
  10464. .ti-layout-tab:before {
  10465. content: "\e6eb";
  10466. }
  10467. .ti-layout-tab-window:before {
  10468. content: "\e6ec";
  10469. }
  10470. .ti-layout-tab-v:before {
  10471. content: "\e6ed";
  10472. }
  10473. .ti-layout-tab-min:before {
  10474. content: "\e6ee";
  10475. }
  10476. .ti-layout-slider:before {
  10477. content: "\e6ef";
  10478. }
  10479. .ti-layout-slider-alt:before {
  10480. content: "\e6f0";
  10481. }
  10482. .ti-layout-sidebar-right:before {
  10483. content: "\e6f1";
  10484. }
  10485. .ti-layout-sidebar-none:before {
  10486. content: "\e6f2";
  10487. }
  10488. .ti-layout-sidebar-left:before {
  10489. content: "\e6f3";
  10490. }
  10491. .ti-layout-placeholder:before {
  10492. content: "\e6f4";
  10493. }
  10494. .ti-layout-menu:before {
  10495. content: "\e6f5";
  10496. }
  10497. .ti-layout-menu-v:before {
  10498. content: "\e6f6";
  10499. }
  10500. .ti-layout-menu-separated:before {
  10501. content: "\e6f7";
  10502. }
  10503. .ti-layout-menu-full:before {
  10504. content: "\e6f8";
  10505. }
  10506. .ti-layout-media-right-alt:before {
  10507. content: "\e6f9";
  10508. }
  10509. .ti-layout-media-right:before {
  10510. content: "\e6fa";
  10511. }
  10512. .ti-layout-media-overlay:before {
  10513. content: "\e6fb";
  10514. }
  10515. .ti-layout-media-overlay-alt:before {
  10516. content: "\e6fc";
  10517. }
  10518. .ti-layout-media-overlay-alt-2:before {
  10519. content: "\e6fd";
  10520. }
  10521. .ti-layout-media-left-alt:before {
  10522. content: "\e6fe";
  10523. }
  10524. .ti-layout-media-left:before {
  10525. content: "\e6ff";
  10526. }
  10527. .ti-layout-media-center-alt:before {
  10528. content: "\e700";
  10529. }
  10530. .ti-layout-media-center:before {
  10531. content: "\e701";
  10532. }
  10533. .ti-layout-list-thumb:before {
  10534. content: "\e702";
  10535. }
  10536. .ti-layout-list-thumb-alt:before {
  10537. content: "\e703";
  10538. }
  10539. .ti-layout-list-post:before {
  10540. content: "\e704";
  10541. }
  10542. .ti-layout-list-large-image:before {
  10543. content: "\e705";
  10544. }
  10545. .ti-layout-line-solid:before {
  10546. content: "\e706";
  10547. }
  10548. .ti-layout-grid4:before {
  10549. content: "\e707";
  10550. }
  10551. .ti-layout-grid3:before {
  10552. content: "\e708";
  10553. }
  10554. .ti-layout-grid2:before {
  10555. content: "\e709";
  10556. }
  10557. .ti-layout-grid2-thumb:before {
  10558. content: "\e70a";
  10559. }
  10560. .ti-layout-cta-right:before {
  10561. content: "\e70b";
  10562. }
  10563. .ti-layout-cta-left:before {
  10564. content: "\e70c";
  10565. }
  10566. .ti-layout-cta-center:before {
  10567. content: "\e70d";
  10568. }
  10569. .ti-layout-cta-btn-right:before {
  10570. content: "\e70e";
  10571. }
  10572. .ti-layout-cta-btn-left:before {
  10573. content: "\e70f";
  10574. }
  10575. .ti-layout-column4:before {
  10576. content: "\e710";
  10577. }
  10578. .ti-layout-column3:before {
  10579. content: "\e711";
  10580. }
  10581. .ti-layout-column2:before {
  10582. content: "\e712";
  10583. }
  10584. .ti-layout-accordion-separated:before {
  10585. content: "\e713";
  10586. }
  10587. .ti-layout-accordion-merged:before {
  10588. content: "\e714";
  10589. }
  10590. .ti-layout-accordion-list:before {
  10591. content: "\e715";
  10592. }
  10593. .ti-ink-pen:before {
  10594. content: "\e716";
  10595. }
  10596. .ti-info-alt:before {
  10597. content: "\e717";
  10598. }
  10599. .ti-help-alt:before {
  10600. content: "\e718";
  10601. }
  10602. .ti-headphone-alt:before {
  10603. content: "\e719";
  10604. }
  10605. .ti-hand-point-up:before {
  10606. content: "\e71a";
  10607. }
  10608. .ti-hand-point-right:before {
  10609. content: "\e71b";
  10610. }
  10611. .ti-hand-point-left:before {
  10612. content: "\e71c";
  10613. }
  10614. .ti-hand-point-down:before {
  10615. content: "\e71d";
  10616. }
  10617. .ti-gallery:before {
  10618. content: "\e71e";
  10619. }
  10620. .ti-face-smile:before {
  10621. content: "\e71f";
  10622. }
  10623. .ti-face-sad:before {
  10624. content: "\e720";
  10625. }
  10626. .ti-credit-card:before {
  10627. content: "\e721";
  10628. }
  10629. .ti-control-skip-forward:before {
  10630. content: "\e722";
  10631. }
  10632. .ti-control-skip-backward:before {
  10633. content: "\e723";
  10634. }
  10635. .ti-control-record:before {
  10636. content: "\e724";
  10637. }
  10638. .ti-control-eject:before {
  10639. content: "\e725";
  10640. }
  10641. .ti-comments-smiley:before {
  10642. content: "\e726";
  10643. }
  10644. .ti-brush-alt:before {
  10645. content: "\e727";
  10646. }
  10647. .ti-youtube:before {
  10648. content: "\e728";
  10649. }
  10650. .ti-vimeo:before {
  10651. content: "\e729";
  10652. }
  10653. .ti-twitter:before {
  10654. content: "\e72a";
  10655. }
  10656. .ti-time:before {
  10657. content: "\e72b";
  10658. }
  10659. .ti-tumblr:before {
  10660. content: "\e72c";
  10661. }
  10662. .ti-skype:before {
  10663. content: "\e72d";
  10664. }
  10665. .ti-share:before {
  10666. content: "\e72e";
  10667. }
  10668. .ti-share-alt:before {
  10669. content: "\e72f";
  10670. }
  10671. .ti-rocket:before {
  10672. content: "\e730";
  10673. }
  10674. .ti-pinterest:before {
  10675. content: "\e731";
  10676. }
  10677. .ti-new-window:before {
  10678. content: "\e732";
  10679. }
  10680. .ti-microsoft:before {
  10681. content: "\e733";
  10682. }
  10683. .ti-list-ol:before {
  10684. content: "\e734";
  10685. }
  10686. .ti-linkedin:before {
  10687. content: "\e735";
  10688. }
  10689. .ti-layout-sidebar-2:before {
  10690. content: "\e736";
  10691. }
  10692. .ti-layout-grid4-alt:before {
  10693. content: "\e737";
  10694. }
  10695. .ti-layout-grid3-alt:before {
  10696. content: "\e738";
  10697. }
  10698. .ti-layout-grid2-alt:before {
  10699. content: "\e739";
  10700. }
  10701. .ti-layout-column4-alt:before {
  10702. content: "\e73a";
  10703. }
  10704. .ti-layout-column3-alt:before {
  10705. content: "\e73b";
  10706. }
  10707. .ti-layout-column2-alt:before {
  10708. content: "\e73c";
  10709. }
  10710. .ti-instagram:before {
  10711. content: "\e73d";
  10712. }
  10713. .ti-google:before {
  10714. content: "\e73e";
  10715. }
  10716. .ti-github:before {
  10717. content: "\e73f";
  10718. }
  10719. .ti-flickr:before {
  10720. content: "\e740";
  10721. }
  10722. .ti-facebook:before {
  10723. content: "\e741";
  10724. }
  10725. .ti-dropbox:before {
  10726. content: "\e742";
  10727. }
  10728. .ti-dribbble:before {
  10729. content: "\e743";
  10730. }
  10731. .ti-apple:before {
  10732. content: "\e744";
  10733. }
  10734. .ti-android:before {
  10735. content: "\e745";
  10736. }
  10737. .ti-save:before {
  10738. content: "\e746";
  10739. }
  10740. .ti-save-alt:before {
  10741. content: "\e747";
  10742. }
  10743. .ti-yahoo:before {
  10744. content: "\e748";
  10745. }
  10746. .ti-wordpress:before {
  10747. content: "\e749";
  10748. }
  10749. .ti-vimeo-alt:before {
  10750. content: "\e74a";
  10751. }
  10752. .ti-twitter-alt:before {
  10753. content: "\e74b";
  10754. }
  10755. .ti-tumblr-alt:before {
  10756. content: "\e74c";
  10757. }
  10758. .ti-trello:before {
  10759. content: "\e74d";
  10760. }
  10761. .ti-stack-overflow:before {
  10762. content: "\e74e";
  10763. }
  10764. .ti-soundcloud:before {
  10765. content: "\e74f";
  10766. }
  10767. .ti-sharethis:before {
  10768. content: "\e750";
  10769. }
  10770. .ti-sharethis-alt:before {
  10771. content: "\e751";
  10772. }
  10773. .ti-reddit:before {
  10774. content: "\e752";
  10775. }
  10776. .ti-pinterest-alt:before {
  10777. content: "\e753";
  10778. }
  10779. .ti-microsoft-alt:before {
  10780. content: "\e754";
  10781. }
  10782. .ti-linux:before {
  10783. content: "\e755";
  10784. }
  10785. .ti-jsfiddle:before {
  10786. content: "\e756";
  10787. }
  10788. .ti-joomla:before {
  10789. content: "\e757";
  10790. }
  10791. .ti-html5:before {
  10792. content: "\e758";
  10793. }
  10794. .ti-flickr-alt:before {
  10795. content: "\e759";
  10796. }
  10797. .ti-email:before {
  10798. content: "\e75a";
  10799. }
  10800. .ti-drupal:before {
  10801. content: "\e75b";
  10802. }
  10803. .ti-dropbox-alt:before {
  10804. content: "\e75c";
  10805. }
  10806. .ti-css3:before {
  10807. content: "\e75d";
  10808. }
  10809. .ti-rss:before {
  10810. content: "\e75e";
  10811. }
  10812. .ti-rss-alt:before {
  10813. content: "\e75f";
  10814. }