font-awesome.css 22 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382
  1. /*!
  2. * Font Awesome 4.0.0
  3. * the iconic font designed for Bootstrap
  4. * ------------------------------------------------------------------------------
  5. * The full suite of pictographic icons, examples, and documentation can be
  6. * found at http://fontawesome.io. Stay up to date on Twitter at
  7. * http://twitter.com/fontawesome.
  8. *
  9. * License
  10. * ------------------------------------------------------------------------------
  11. * - The Font Awesome font is licensed under SIL OFL 1.1 -
  12. * http://scripts.sil.org/OFL
  13. * - Font Awesome CSS, LESS, and SASS files are licensed under MIT License -
  14. * http://opensource.org/licenses/mit-license.html
  15. * - Font Awesome documentation licensed under CC BY 3.0 -
  16. * http://creativecommons.org/licenses/by/3.0/
  17. * - Attribution is no longer required in Font Awesome 3.0, but much appreciated:
  18. * "Font Awesome by Dave Gandy - http://fontawesome.io"
  19. *
  20. * Author - Dave Gandy
  21. * ------------------------------------------------------------------------------
  22. * Email: dave@fontawesome.io
  23. * Twitter: http://twitter.com/davegandy
  24. * Work: Lead Product Designer @ Kyruus - http://kyruus.com
  25. */
  26. /* FONT PATH
  27. * -------------------------- */
  28. @font-face {
  29. font-family: 'FontAwesome';
  30. src: url('../fonts/FontAwesome.otf') format('opentype');
  31. font-weight: normal;
  32. font-style: normal;
  33. }
  34. /* FONT AWESOME CORE
  35. * -------------------------- */
  36. .fa {
  37. display: inline-block;
  38. font-family: FontAwesome;
  39. font-style: normal;
  40. font-weight: normal;
  41. line-height: 1;
  42. -webkit-font-smoothing: antialiased;
  43. -moz-osx-font-smoothing: grayscale;
  44. }
  45. /* makes the font 33% larger relative to the icon container */
  46. .fa-lg {
  47. font-size: 1.3333333333333333em;
  48. line-height: 0.75em;
  49. vertical-align: -15%;
  50. }
  51. /* increased font size for icon-lg */
  52. .fa-fixed-width {
  53. width: 1.1428571428571428em;
  54. padding-right: 0.2857142857142857em;
  55. text-align: right;
  56. }
  57. .fa-fixed-width.fa-lg {
  58. width: 1.4285714285714286em;
  59. }
  60. .fa-ul {
  61. padding-left: 0;
  62. margin-left: 2.142857142857143em;
  63. list-style-type: none;
  64. }
  65. .fa-ul > li {
  66. position: relative;
  67. }
  68. .fa-li {
  69. position: absolute;
  70. left: -2.142857142857143em;
  71. width: 2.142857142857143em;
  72. top: 0.14285714285714285em;
  73. text-align: center;
  74. }
  75. .fa-li.fa-lg {
  76. left: -1.8571428571428572em;
  77. }
  78. .fa.hide {
  79. display: none;
  80. }
  81. .fa-muted {
  82. color: #eeeeee;
  83. }
  84. .fa-light {
  85. color: #ffffff;
  86. }
  87. .fa-dark {
  88. color: #333333;
  89. }
  90. .fa-border {
  91. padding: .2em .25em .15em;
  92. border: solid 1px #eeeeee;
  93. border-radius: 3px;
  94. }
  95. .fa-2x {
  96. font-size: 2em;
  97. }
  98. .fa-2x.fa-border {
  99. border-width: 2px;
  100. border-radius: 4px;
  101. }
  102. .fa-3x {
  103. font-size: 3em;
  104. }
  105. .fa-3x.fa-border {
  106. border-width: 3px;
  107. border-radius: 5px;
  108. }
  109. .fa-4x {
  110. font-size: 4em;
  111. }
  112. .fa-4x.fa-border {
  113. border-width: 4px;
  114. border-radius: 6px;
  115. }
  116. .fa-5x {
  117. font-size: 5em;
  118. }
  119. .fa-5x.fa-border {
  120. border-width: 5px;
  121. border-radius: 7px;
  122. }
  123. .pull-right {
  124. float: right;
  125. }
  126. .pull-left {
  127. float: left;
  128. }
  129. .fa.pull-left {
  130. margin-right: .3em;
  131. }
  132. .fa.pull-right {
  133. margin-left: .3em;
  134. }
  135. /* EXTRAS
  136. * -------------------------- */
  137. /* Stacked and layered icon */
  138. .fa-stack {
  139. position: relative;
  140. display: inline-block;
  141. width: 2em;
  142. height: 2em;
  143. line-height: 2em;
  144. vertical-align: -35%;
  145. }
  146. .fa-stack .fa {
  147. position: absolute;
  148. display: block;
  149. width: 100%;
  150. height: 100%;
  151. font-size: 1em;
  152. line-height: inherit;
  153. text-align: center;
  154. }
  155. .fa-stack .fa-stack-base {
  156. font-size: 2em;
  157. }
  158. /* Animated rotating icon */
  159. .fa-spin {
  160. -webkit-animation: spin 2s infinite linear;
  161. -moz-animation: spin 2s infinite linear;
  162. -o-animation: spin 2s infinite linear;
  163. animation: spin 2s infinite linear;
  164. }
  165. @-moz-keyframes spin {
  166. 0% {
  167. -moz-transform: rotate(0deg);
  168. }
  169. 100% {
  170. -moz-transform: rotate(359deg);
  171. }
  172. }
  173. @-webkit-keyframes spin {
  174. 0% {
  175. -webkit-transform: rotate(0deg);
  176. }
  177. 100% {
  178. -webkit-transform: rotate(359deg);
  179. }
  180. }
  181. @-o-keyframes spin {
  182. 0% {
  183. -o-transform: rotate(0deg);
  184. }
  185. 100% {
  186. -o-transform: rotate(359deg);
  187. }
  188. }
  189. @-ms-keyframes spin {
  190. 0% {
  191. -ms-transform: rotate(0deg);
  192. }
  193. 100% {
  194. -ms-transform: rotate(359deg);
  195. }
  196. }
  197. @keyframes spin {
  198. 0% {
  199. transform: rotate(0deg);
  200. }
  201. 100% {
  202. transform: rotate(359deg);
  203. }
  204. }
  205. .fa-rotate-90 {
  206. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  207. -webkit-transform: rotate(90deg);
  208. -moz-transform: rotate(90deg);
  209. -ms-transform: rotate(90deg);
  210. -o-transform: rotate(90deg);
  211. transform: rotate(90deg);
  212. }
  213. .fa-rotate-180 {
  214. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  215. -webkit-transform: rotate(180deg);
  216. -moz-transform: rotate(180deg);
  217. -ms-transform: rotate(180deg);
  218. -o-transform: rotate(180deg);
  219. transform: rotate(180deg);
  220. }
  221. .fa-rotate-270 {
  222. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  223. -webkit-transform: rotate(270deg);
  224. -moz-transform: rotate(270deg);
  225. -ms-transform: rotate(270deg);
  226. -o-transform: rotate(270deg);
  227. transform: rotate(270deg);
  228. }
  229. .fa-flip-horizontal {
  230. -webkit-transform: scale(-1, 1);
  231. -moz-transform: scale(-1, 1);
  232. -ms-transform: scale(-1, 1);
  233. -o-transform: scale(-1, 1);
  234. transform: scale(-1, 1);
  235. }
  236. .fa-flip-vertical {
  237. -webkit-transform: scale(1, -1);
  238. -moz-transform: scale(1, -1);
  239. -ms-transform: scale(1, -1);
  240. -o-transform: scale(1, -1);
  241. transform: scale(1, -1);
  242. }
  243. /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
  244. readers do not read off random characters that represent icons */
  245. .fa-glass:before {
  246. content: "\f000";
  247. }
  248. .fa-music:before {
  249. content: "\f001";
  250. }
  251. .fa-search:before,
  252. .fa-magnifying-glass:before {
  253. content: "\f002";
  254. }
  255. .fa-envelope-alt:before {
  256. content: "\f003";
  257. }
  258. .fa-heart:before {
  259. content: "\f004";
  260. }
  261. .fa-star:before {
  262. content: "\f005";
  263. }
  264. .fa-star-alt:before {
  265. content: "\f006";
  266. }
  267. .fa-user:before {
  268. content: "\f007";
  269. }
  270. .fa-film:before {
  271. content: "\f008";
  272. }
  273. .fa-th-large:before {
  274. content: "\f009";
  275. }
  276. .fa-th:before {
  277. content: "\f00a";
  278. }
  279. .fa-th-list:before {
  280. content: "\f00b";
  281. }
  282. .fa-check:before {
  283. content: "\f00c";
  284. }
  285. .fa-times:before {
  286. content: "\f00d";
  287. }
  288. .fa-magnifying-glass-plus:before {
  289. content: "\f00e";
  290. }
  291. .fa-magnifying-glass-minus:before {
  292. content: "\f010";
  293. }
  294. .fa-power-off:before {
  295. content: "\f011";
  296. }
  297. .fa-signal:before {
  298. content: "\f012";
  299. }
  300. .fa-gear:before,
  301. .fa-cog:before {
  302. content: "\f013";
  303. }
  304. .fa-trash-alt:before {
  305. content: "\f014";
  306. }
  307. .fa-home:before {
  308. content: "\f015";
  309. }
  310. .fa-file-alt:before {
  311. content: "\f016";
  312. }
  313. .fa-clock-alt:before {
  314. content: "\f017";
  315. }
  316. .fa-road:before {
  317. content: "\f018";
  318. }
  319. .fa-download:before {
  320. content: "\f019";
  321. }
  322. .fa-arrow-circle-alt-down:before {
  323. content: "\f01a";
  324. }
  325. .fa-arrow-circle-alt-up:before {
  326. content: "\f01b";
  327. }
  328. .fa-inbox:before {
  329. content: "\f01c";
  330. }
  331. .fa-play-circle-alt:before {
  332. content: "\f01d";
  333. }
  334. .fa-rotate-right:before,
  335. .fa-repeat:before {
  336. content: "\f01e";
  337. }
  338. .fa-refresh:before {
  339. content: "\f021";
  340. }
  341. .fa-list-alt:before {
  342. content: "\f022";
  343. }
  344. .fa-lock:before {
  345. content: "\f023";
  346. }
  347. .fa-flag:before {
  348. content: "\f024";
  349. }
  350. .fa-headphones:before {
  351. content: "\f025";
  352. }
  353. .fa-volume-off:before {
  354. content: "\f026";
  355. }
  356. .fa-volume-down:before {
  357. content: "\f027";
  358. }
  359. .fa-volume-up:before {
  360. content: "\f028";
  361. }
  362. .fa-qrcode:before {
  363. content: "\f029";
  364. }
  365. .fa-barcode:before {
  366. content: "\f02a";
  367. }
  368. .fa-tag:before {
  369. content: "\f02b";
  370. }
  371. .fa-tags:before {
  372. content: "\f02c";
  373. }
  374. .fa-book:before {
  375. content: "\f02d";
  376. }
  377. .fa-bookmark:before {
  378. content: "\f02e";
  379. }
  380. .fa-print:before {
  381. content: "\f02f";
  382. }
  383. .fa-camera:before {
  384. content: "\f030";
  385. }
  386. .fa-font:before {
  387. content: "\f031";
  388. }
  389. .fa-bold:before {
  390. content: "\f032";
  391. }
  392. .fa-italic:before {
  393. content: "\f033";
  394. }
  395. .fa-text-height:before {
  396. content: "\f034";
  397. }
  398. .fa-text-width:before {
  399. content: "\f035";
  400. }
  401. .fa-align-left:before {
  402. content: "\f036";
  403. }
  404. .fa-align-center:before {
  405. content: "\f037";
  406. }
  407. .fa-align-right:before {
  408. content: "\f038";
  409. }
  410. .fa-align-justify:before {
  411. content: "\f039";
  412. }
  413. .fa-list:before {
  414. content: "\f03a";
  415. }
  416. .fa-dedent:before,
  417. .fa-outdent:before {
  418. content: "\f03b";
  419. }
  420. .fa-indent:before {
  421. content: "\f03c";
  422. }
  423. .fa-video-camera:before {
  424. content: "\f03d";
  425. }
  426. .fa-picture-alt:before {
  427. content: "\f03e";
  428. }
  429. .fa-pencil:before {
  430. content: "\f040";
  431. }
  432. .fa-map-marker:before {
  433. content: "\f041";
  434. }
  435. .fa-adjust:before {
  436. content: "\f042";
  437. }
  438. .fa-tint:before {
  439. content: "\f043";
  440. }
  441. .fa-edit:before,
  442. .fa-pencil-square-alt:before {
  443. content: "\f044";
  444. }
  445. .fa-share-square-alt:before {
  446. content: "\f045";
  447. }
  448. .fa-check-square-alt:before {
  449. content: "\f046";
  450. }
  451. .fa-move:before {
  452. content: "\f047";
  453. }
  454. .fa-step-backward:before {
  455. content: "\f048";
  456. }
  457. .fa-fast-backward:before {
  458. content: "\f049";
  459. }
  460. .fa-backward:before {
  461. content: "\f04a";
  462. }
  463. .fa-play:before {
  464. content: "\f04b";
  465. }
  466. .fa-pause:before {
  467. content: "\f04c";
  468. }
  469. .fa-stop:before {
  470. content: "\f04d";
  471. }
  472. .fa-forward:before {
  473. content: "\f04e";
  474. }
  475. .fa-fast-forward:before {
  476. content: "\f050";
  477. }
  478. .fa-step-forward:before {
  479. content: "\f051";
  480. }
  481. .fa-eject:before {
  482. content: "\f052";
  483. }
  484. .fa-chevron-left:before {
  485. content: "\f053";
  486. }
  487. .fa-chevron-right:before {
  488. content: "\f054";
  489. }
  490. .fa-plus-circle:before {
  491. content: "\f055";
  492. }
  493. .fa-minus-circle:before {
  494. content: "\f056";
  495. }
  496. .fa-times-circle:before {
  497. content: "\f057";
  498. }
  499. .fa-check-circle:before {
  500. content: "\f058";
  501. }
  502. .fa-question-circle:before {
  503. content: "\f059";
  504. }
  505. .fa-info-circle:before {
  506. content: "\f05a";
  507. }
  508. .fa-crosshairs:before {
  509. content: "\f05b";
  510. }
  511. .fa-times-circle-alt:before {
  512. content: "\f05c";
  513. }
  514. .fa-check-circle-alt:before {
  515. content: "\f05d";
  516. }
  517. .fa-ban:before {
  518. content: "\f05e";
  519. }
  520. .fa-arrow-left:before {
  521. content: "\f060";
  522. }
  523. .fa-arrow-right:before {
  524. content: "\f061";
  525. }
  526. .fa-arrow-up:before {
  527. content: "\f062";
  528. }
  529. .fa-arrow-down:before {
  530. content: "\f063";
  531. }
  532. .fa-mail-forward:before,
  533. .fa-share:before {
  534. content: "\f064";
  535. }
  536. .fa-resize-full:before {
  537. content: "\f065";
  538. }
  539. .fa-resize-small:before {
  540. content: "\f066";
  541. }
  542. .fa-plus:before {
  543. content: "\f067";
  544. }
  545. .fa-minus:before {
  546. content: "\f068";
  547. }
  548. .fa-asterisk:before {
  549. content: "\f069";
  550. }
  551. .fa-exclamation-circle:before {
  552. content: "\f06a";
  553. }
  554. .fa-gift:before {
  555. content: "\f06b";
  556. }
  557. .fa-leaf:before {
  558. content: "\f06c";
  559. }
  560. .fa-fire:before {
  561. content: "\f06d";
  562. }
  563. .fa-eye:before {
  564. content: "\f06e";
  565. }
  566. .fa-eye-slash:before {
  567. content: "\f070";
  568. }
  569. .fa-warning:before,
  570. .fa-exclamation-triangle:before {
  571. content: "\f071";
  572. }
  573. .fa-plane:before {
  574. content: "\f072";
  575. }
  576. .fa-calendar:before {
  577. content: "\f073";
  578. }
  579. .fa-random:before {
  580. content: "\f074";
  581. }
  582. .fa-comment:before {
  583. content: "\f075";
  584. }
  585. .fa-magnet:before {
  586. content: "\f076";
  587. }
  588. .fa-chevron-up:before {
  589. content: "\f077";
  590. }
  591. .fa-chevron-down:before {
  592. content: "\f078";
  593. }
  594. .fa-retweet:before {
  595. content: "\f079";
  596. }
  597. .fa-shopping-cart:before {
  598. content: "\f07a";
  599. }
  600. .fa-folder:before {
  601. content: "\f07b";
  602. }
  603. .fa-folder-open:before {
  604. content: "\f07c";
  605. }
  606. .fa-resize-vertical:before {
  607. content: "\f07d";
  608. }
  609. .fa-resize-horizontal:before {
  610. content: "\f07e";
  611. }
  612. .fa-bar-chart-alt:before {
  613. content: "\f080";
  614. }
  615. .fa-twitter-square:before {
  616. content: "\f081";
  617. }
  618. .fa-facebook-square:before {
  619. content: "\f082";
  620. }
  621. .fa-camera-retro:before {
  622. content: "\f083";
  623. }
  624. .fa-key:before {
  625. content: "\f084";
  626. }
  627. .fa-gears:before,
  628. .fa-cogs:before {
  629. content: "\f085";
  630. }
  631. .fa-comments:before {
  632. content: "\f086";
  633. }
  634. .fa-thumbs-up-alt:before {
  635. content: "\f087";
  636. }
  637. .fa-thumbs-down-alt:before {
  638. content: "\f088";
  639. }
  640. .fa-star-half:before {
  641. content: "\f089";
  642. }
  643. .fa-heart-alt:before {
  644. content: "\f08a";
  645. }
  646. .fa-sign-out:before {
  647. content: "\f08b";
  648. }
  649. .fa-linkedin-square:before {
  650. content: "\f08c";
  651. }
  652. .fa-thumb-tack:before {
  653. content: "\f08d";
  654. }
  655. .fa-external-link:before {
  656. content: "\f08e";
  657. }
  658. .fa-sign-in:before {
  659. content: "\f090";
  660. }
  661. .fa-trophy:before {
  662. content: "\f091";
  663. }
  664. .fa-github-square:before {
  665. content: "\f092";
  666. }
  667. .fa-upload:before {
  668. content: "\f093";
  669. }
  670. .fa-lemon-alt:before {
  671. content: "\f094";
  672. }
  673. .fa-phone:before {
  674. content: "\f095";
  675. }
  676. .fa-unchecked:before,
  677. .fa-square-alt:before {
  678. content: "\f096";
  679. }
  680. .fa-bookmark-alt:before {
  681. content: "\f097";
  682. }
  683. .fa-phone-square:before {
  684. content: "\f098";
  685. }
  686. .fa-twitter:before {
  687. content: "\f099";
  688. }
  689. .fa-facebook:before {
  690. content: "\f09a";
  691. }
  692. .fa-github:before {
  693. content: "\f09b";
  694. }
  695. .fa-unlock:before {
  696. content: "\f09c";
  697. }
  698. .fa-credit-card:before {
  699. content: "\f09d";
  700. }
  701. .fa-rss:before {
  702. content: "\f09e";
  703. }
  704. .fa-hdd:before {
  705. content: "\f0a0";
  706. }
  707. .fa-bullhorn:before {
  708. content: "\f0a1";
  709. }
  710. .fa-bell:before {
  711. content: "\f0f3";
  712. }
  713. .fa-certificate:before {
  714. content: "\f0a3";
  715. }
  716. .fa-hand-alt-right:before {
  717. content: "\f0a4";
  718. }
  719. .fa-hand-alt-left:before {
  720. content: "\f0a5";
  721. }
  722. .fa-hand-alt-up:before {
  723. content: "\f0a6";
  724. }
  725. .fa-hand-alt-down:before {
  726. content: "\f0a7";
  727. }
  728. .fa-arrow-circle-left:before {
  729. content: "\f0a8";
  730. }
  731. .fa-arrow-circle-right:before {
  732. content: "\f0a9";
  733. }
  734. .fa-arrow-circle-up:before {
  735. content: "\f0aa";
  736. }
  737. .fa-arrow-circle-down:before {
  738. content: "\f0ab";
  739. }
  740. .fa-globe:before {
  741. content: "\f0ac";
  742. }
  743. .fa-wrench:before {
  744. content: "\f0ad";
  745. }
  746. .fa-tasks:before {
  747. content: "\f0ae";
  748. }
  749. .fa-filter:before {
  750. content: "\f0b0";
  751. }
  752. .fa-briefcase:before {
  753. content: "\f0b1";
  754. }
  755. .fa-fullscreen:before {
  756. content: "\f0b2";
  757. }
  758. .fa-group:before {
  759. content: "\f0c0";
  760. }
  761. .fa-chain:before,
  762. .fa-link:before {
  763. content: "\f0c1";
  764. }
  765. .fa-cloud:before {
  766. content: "\f0c2";
  767. }
  768. .fa-flask:before {
  769. content: "\f0c3";
  770. }
  771. .fa-cut:before,
  772. .fa-scissors:before {
  773. content: "\f0c4";
  774. }
  775. .fa-copy:before,
  776. .fa-files-alt:before {
  777. content: "\f0c5";
  778. }
  779. .fa-paperclip:before {
  780. content: "\f0c6";
  781. }
  782. .fa-save:before,
  783. .fa-floppy-alt:before {
  784. content: "\f0c7";
  785. }
  786. .fa-square:before {
  787. content: "\f0c8";
  788. }
  789. .fa-reorder:before {
  790. content: "\f0c9";
  791. }
  792. .fa-list-ul:before {
  793. content: "\f0ca";
  794. }
  795. .fa-list-ol:before {
  796. content: "\f0cb";
  797. }
  798. .fa-strikethrough:before {
  799. content: "\f0cc";
  800. }
  801. .fa-underline:before {
  802. content: "\f0cd";
  803. }
  804. .fa-table:before {
  805. content: "\f0ce";
  806. }
  807. .fa-magic:before {
  808. content: "\f0d0";
  809. }
  810. .fa-truck:before {
  811. content: "\f0d1";
  812. }
  813. .fa-pinterest:before {
  814. content: "\f0d2";
  815. }
  816. .fa-pinterest-square:before {
  817. content: "\f0d3";
  818. }
  819. .fa-google-plus-square:before {
  820. content: "\f0d4";
  821. }
  822. .fa-google-plus:before {
  823. content: "\f0d5";
  824. }
  825. .fa-money:before {
  826. content: "\f0d6";
  827. }
  828. .fa-caret-down:before {
  829. content: "\f0d7";
  830. }
  831. .fa-caret-up:before {
  832. content: "\f0d8";
  833. }
  834. .fa-caret-left:before {
  835. content: "\f0d9";
  836. }
  837. .fa-caret-right:before {
  838. content: "\f0da";
  839. }
  840. .fa-columns:before {
  841. content: "\f0db";
  842. }
  843. .fa-unsorted:before,
  844. .fa-sort:before {
  845. content: "\f0dc";
  846. }
  847. .fa-sort-down:before,
  848. .fa-sort-asc:before {
  849. content: "\f0dd";
  850. }
  851. .fa-sort-up:before,
  852. .fa-sort-desc:before {
  853. content: "\f0de";
  854. }
  855. .fa-envelope:before {
  856. content: "\f0e0";
  857. }
  858. .fa-linkedin:before {
  859. content: "\f0e1";
  860. }
  861. .fa-rotate-left:before,
  862. .fa-undo:before {
  863. content: "\f0e2";
  864. }
  865. .fa-legal:before,
  866. .fa-gavel:before {
  867. content: "\f0e3";
  868. }
  869. .fa-dashboard:before,
  870. .fa-tachometer:before {
  871. content: "\f0e4";
  872. }
  873. .fa-comment-alt:before {
  874. content: "\f0e5";
  875. }
  876. .fa-comments-alt:before {
  877. content: "\f0e6";
  878. }
  879. .fa-flash:before,
  880. .fa-bolt:before {
  881. content: "\f0e7";
  882. }
  883. .fa-sitemap:before {
  884. content: "\f0e8";
  885. }
  886. .fa-umbrella:before {
  887. content: "\f0e9";
  888. }
  889. .fa-paste:before,
  890. .fa-clipboard:before {
  891. content: "\f0ea";
  892. }
  893. .fa-lightbulb-alt:before {
  894. content: "\f0eb";
  895. }
  896. .fa-exchange:before {
  897. content: "\f0ec";
  898. }
  899. .fa-cloud-download:before {
  900. content: "\f0ed";
  901. }
  902. .fa-cloud-upload:before {
  903. content: "\f0ee";
  904. }
  905. .fa-user-md:before {
  906. content: "\f0f0";
  907. }
  908. .fa-stethoscope:before {
  909. content: "\f0f1";
  910. }
  911. .fa-suitcase:before {
  912. content: "\f0f2";
  913. }
  914. .fa-bell-alt:before {
  915. content: "\f0a2";
  916. }
  917. .fa-coffee:before {
  918. content: "\f0f4";
  919. }
  920. .fa-cutlery:before {
  921. content: "\f0f5";
  922. }
  923. .fa-file-text-alt:before {
  924. content: "\f0f6";
  925. }
  926. .fa-building:before {
  927. content: "\f0f7";
  928. }
  929. .fa-hospital:before {
  930. content: "\f0f8";
  931. }
  932. .fa-ambulance:before {
  933. content: "\f0f9";
  934. }
  935. .fa-medkit:before {
  936. content: "\f0fa";
  937. }
  938. .fa-fighter-jet:before {
  939. content: "\f0fb";
  940. }
  941. .fa-beer:before {
  942. content: "\f0fc";
  943. }
  944. .fa-h-square:before {
  945. content: "\f0fd";
  946. }
  947. .fa-plus-square:before {
  948. content: "\f0fe";
  949. }
  950. .fa-angle-double-left:before {
  951. content: "\f100";
  952. }
  953. .fa-angle-double-right:before {
  954. content: "\f101";
  955. }
  956. .fa-angle-double-up:before {
  957. content: "\f102";
  958. }
  959. .fa-angle-double-down:before {
  960. content: "\f103";
  961. }
  962. .fa-angle-left:before {
  963. content: "\f104";
  964. }
  965. .fa-angle-right:before {
  966. content: "\f105";
  967. }
  968. .fa-angle-up:before {
  969. content: "\f106";
  970. }
  971. .fa-angle-down:before {
  972. content: "\f107";
  973. }
  974. .fa-desktop:before {
  975. content: "\f108";
  976. }
  977. .fa-laptop:before {
  978. content: "\f109";
  979. }
  980. .fa-tablet:before {
  981. content: "\f10a";
  982. }
  983. .fa-mobile-phone:before,
  984. .fa-mobile:before {
  985. content: "\f10b";
  986. }
  987. .fa-circle-alt:before {
  988. content: "\f10c";
  989. }
  990. .fa-quote-left:before {
  991. content: "\f10d";
  992. }
  993. .fa-quote-right:before {
  994. content: "\f10e";
  995. }
  996. .fa-spinner:before {
  997. content: "\f110";
  998. }
  999. .fa-circle:before {
  1000. content: "\f111";
  1001. }
  1002. .fa-mail-reply:before,
  1003. .fa-reply:before {
  1004. content: "\f112";
  1005. }
  1006. .fa-github-alt:before {
  1007. content: "\f113";
  1008. }
  1009. .fa-folder-alt:before {
  1010. content: "\f114";
  1011. }
  1012. .fa-folder-open-alt:before {
  1013. content: "\f115";
  1014. }
  1015. .fa-expand-alt:before {
  1016. content: "\f116";
  1017. }
  1018. .fa-collapse-alt:before {
  1019. content: "\f117";
  1020. }
  1021. .fa-smile-alt:before {
  1022. content: "\f118";
  1023. }
  1024. .fa-frown-alt:before {
  1025. content: "\f119";
  1026. }
  1027. .fa-meh-alt:before {
  1028. content: "\f11a";
  1029. }
  1030. .fa-gamepad:before {
  1031. content: "\f11b";
  1032. }
  1033. .fa-keyboard-alt:before {
  1034. content: "\f11c";
  1035. }
  1036. .fa-flag-alt:before {
  1037. content: "\f11d";
  1038. }
  1039. .fa-flag-checkered:before {
  1040. content: "\f11e";
  1041. }
  1042. .fa-terminal:before {
  1043. content: "\f120";
  1044. }
  1045. .fa-code:before {
  1046. content: "\f121";
  1047. }
  1048. .fa-reply-all:before {
  1049. content: "\f122";
  1050. }
  1051. .fa-mail-reply-all:before {
  1052. content: "\f122";
  1053. }
  1054. .fa-star-half-empty:before,
  1055. .fa-star-half-full:before,
  1056. .fa-star-half-alt:before {
  1057. content: "\f123";
  1058. }
  1059. .fa-location-arrow:before {
  1060. content: "\f124";
  1061. }
  1062. .fa-crop:before {
  1063. content: "\f125";
  1064. }
  1065. .fa-code-fork:before {
  1066. content: "\f126";
  1067. }
  1068. .fa-unlink:before,
  1069. .fa-chain-broken:before {
  1070. content: "\f127";
  1071. }
  1072. .fa-question:before {
  1073. content: "\f128";
  1074. }
  1075. .fa-info:before {
  1076. content: "\f129";
  1077. }
  1078. .fa-exclamation:before {
  1079. content: "\f12a";
  1080. }
  1081. .fa-superscript:before {
  1082. content: "\f12b";
  1083. }
  1084. .fa-subscript:before {
  1085. content: "\f12c";
  1086. }
  1087. .fa-eraser:before {
  1088. content: "\f12d";
  1089. }
  1090. .fa-puzzle-piece:before {
  1091. content: "\f12e";
  1092. }
  1093. .fa-microphone:before {
  1094. content: "\f130";
  1095. }
  1096. .fa-microphone-slash:before {
  1097. content: "\f131";
  1098. }
  1099. .fa-shield:before {
  1100. content: "\f132";
  1101. }
  1102. .fa-calendar-alt:before {
  1103. content: "\f133";
  1104. }
  1105. .fa-fire-extinguisher:before {
  1106. content: "\f134";
  1107. }
  1108. .fa-rocket:before {
  1109. content: "\f135";
  1110. }
  1111. .fa-maxcdn:before {
  1112. content: "\f136";
  1113. }
  1114. .fa-chevron-circle-left:before {
  1115. content: "\f137";
  1116. }
  1117. .fa-chevron-circle-right:before {
  1118. content: "\f138";
  1119. }
  1120. .fa-chevron-circle-up:before {
  1121. content: "\f139";
  1122. }
  1123. .fa-chevron-circle-down:before {
  1124. content: "\f13a";
  1125. }
  1126. .fa-html5:before {
  1127. content: "\f13b";
  1128. }
  1129. .fa-css3:before {
  1130. content: "\f13c";
  1131. }
  1132. .fa-anchor:before {
  1133. content: "\f13d";
  1134. }
  1135. .fa-unlock-alt:before {
  1136. content: "\f13e";
  1137. }
  1138. .fa-bullseye:before {
  1139. content: "\f140";
  1140. }
  1141. .fa-ellipsis-horizontal:before {
  1142. content: "\f141";
  1143. }
  1144. .fa-ellipsis-vertical:before {
  1145. content: "\f142";
  1146. }
  1147. .fa-rss-square:before {
  1148. content: "\f143";
  1149. }
  1150. .fa-play-circle:before {
  1151. content: "\f144";
  1152. }
  1153. .fa-ticket:before {
  1154. content: "\f145";
  1155. }
  1156. .fa-minus-square:before {
  1157. content: "\f146";
  1158. }
  1159. .fa-minus-square-alt:before {
  1160. content: "\f147";
  1161. }
  1162. .fa-level-up:before {
  1163. content: "\f148";
  1164. }
  1165. .fa-level-down:before {
  1166. content: "\f149";
  1167. }
  1168. .fa-check-square:before {
  1169. content: "\f14a";
  1170. }
  1171. .fa-pencil-square:before {
  1172. content: "\f14b";
  1173. }
  1174. .fa-external-link-square:before {
  1175. content: "\f14c";
  1176. }
  1177. .fa-share-square:before {
  1178. content: "\f14d";
  1179. }
  1180. .fa-compass:before {
  1181. content: "\f14e";
  1182. }
  1183. .fa-toggle-down:before,
  1184. .fa-caret-square-alt-down:before {
  1185. content: "\f150";
  1186. }
  1187. .fa-toggle-up:before,
  1188. .fa-caret-square-alt-up:before {
  1189. content: "\f151";
  1190. }
  1191. .fa-toggle-right:before,
  1192. .fa-caret-square-alt-right:before {
  1193. content: "\f152";
  1194. }
  1195. .fa-euro:before,
  1196. .fa-eur:before {
  1197. content: "\f153";
  1198. }
  1199. .fa-gbp:before {
  1200. content: "\f154";
  1201. }
  1202. .fa-dollar:before,
  1203. .fa-usd:before {
  1204. content: "\f155";
  1205. }
  1206. .fa-rupee:before,
  1207. .fa-inr:before {
  1208. content: "\f156";
  1209. }
  1210. .fa-cny:before,
  1211. .fa-rmb:before,
  1212. .fa-yen:before,
  1213. .fa-jpy:before {
  1214. content: "\f157";
  1215. }
  1216. .fa-ruble:before,
  1217. .fa-rouble:before,
  1218. .fa-rub:before {
  1219. content: "\f158";
  1220. }
  1221. .fa-won:before,
  1222. .fa-krw:before {
  1223. content: "\f159";
  1224. }
  1225. .fa-bitcoin:before,
  1226. .fa-btc:before {
  1227. content: "\f15a";
  1228. }
  1229. .fa-file:before {
  1230. content: "\f15b";
  1231. }
  1232. .fa-file-text:before {
  1233. content: "\f15c";
  1234. }
  1235. .fa-sort-alpha-asc:before {
  1236. content: "\f15d";
  1237. }
  1238. .fa-sort-alpha-desc:before {
  1239. content: "\f15e";
  1240. }
  1241. .fa-sort-amount-asc:before {
  1242. content: "\f160";
  1243. }
  1244. .fa-sort-amount-desc:before {
  1245. content: "\f161";
  1246. }
  1247. .fa-sort-numeric-asc:before {
  1248. content: "\f162";
  1249. }
  1250. .fa-sort-numeric-desc:before {
  1251. content: "\f163";
  1252. }
  1253. .fa-thumbs-up:before {
  1254. content: "\f164";
  1255. }
  1256. .fa-thumbs-down:before {
  1257. content: "\f165";
  1258. }
  1259. .fa-youtube-square:before {
  1260. content: "\f166";
  1261. }
  1262. .fa-youtube:before {
  1263. content: "\f167";
  1264. }
  1265. .fa-xing:before {
  1266. content: "\f168";
  1267. }
  1268. .fa-xing-square:before {
  1269. content: "\f169";
  1270. }
  1271. .fa-youtube-play:before {
  1272. content: "\f16a";
  1273. }
  1274. .fa-dropbox:before {
  1275. content: "\f16b";
  1276. }
  1277. .fa-stack-overflow:before {
  1278. content: "\f16c";
  1279. }
  1280. .fa-instagram:before {
  1281. content: "\f16d";
  1282. }
  1283. .fa-flickr:before {
  1284. content: "\f16e";
  1285. }
  1286. .fa-adn:before {
  1287. content: "\f170";
  1288. }
  1289. .fa-bitbucket:before {
  1290. content: "\f171";
  1291. }
  1292. .fa-bitbucket-square:before {
  1293. content: "\f172";
  1294. }
  1295. .fa-tumblr:before {
  1296. content: "\f173";
  1297. }
  1298. .fa-tumblr-square:before {
  1299. content: "\f174";
  1300. }
  1301. .fa-long-arrow-down:before {
  1302. content: "\f175";
  1303. }
  1304. .fa-long-arrow-up:before {
  1305. content: "\f176";
  1306. }
  1307. .fa-long-arrow-left:before {
  1308. content: "\f177";
  1309. }
  1310. .fa-long-arrow-right:before {
  1311. content: "\f178";
  1312. }
  1313. .fa-apple:before {
  1314. content: "\f179";
  1315. }
  1316. .fa-windows:before {
  1317. content: "\f17a";
  1318. }
  1319. .fa-android:before {
  1320. content: "\f17b";
  1321. }
  1322. .fa-linux:before {
  1323. content: "\f17c";
  1324. }
  1325. .fa-dribbble:before {
  1326. content: "\f17d";
  1327. }
  1328. .fa-skype:before {
  1329. content: "\f17e";
  1330. }
  1331. .fa-foursquare:before {
  1332. content: "\f180";
  1333. }
  1334. .fa-trello:before {
  1335. content: "\f181";
  1336. }
  1337. .fa-female:before {
  1338. content: "\f182";
  1339. }
  1340. .fa-male:before {
  1341. content: "\f183";
  1342. }
  1343. .fa-gittip:before {
  1344. content: "\f184";
  1345. }
  1346. .fa-sun-alt:before {
  1347. content: "\f185";
  1348. }
  1349. .fa-moon-alt:before {
  1350. content: "\f186";
  1351. }
  1352. .fa-archive:before {
  1353. content: "\f187";
  1354. }
  1355. .fa-bug:before {
  1356. content: "\f188";
  1357. }
  1358. .fa-vk:before {
  1359. content: "\f189";
  1360. }
  1361. .fa-weibo:before {
  1362. content: "\f18a";
  1363. }
  1364. .fa-renren:before {
  1365. content: "\f18b";
  1366. }
  1367. .fa-pagelines:before {
  1368. content: "\f18c";
  1369. }
  1370. .fa-stack-exchange:before {
  1371. content: "\f18d";
  1372. }
  1373. .fa-arrow-circle-alt-right:before {
  1374. content: "\f18e";
  1375. }
  1376. .fa-arrow-circle-alt-left:before {
  1377. content: "\f190";
  1378. }
  1379. .fa-toggle-left:before,
  1380. .fa-caret-square-alt-left:before {
  1381. content: "\f191";
  1382. }