icomoon.css 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517
  1. @font-face {
  2. font-family: 'icomoon';
  3. src: url('fonts/icomoon.eot?195opb');
  4. src: url('fonts/icomoon.eot?195opb#iefix') format('embedded-opentype'),
  5. url('fonts/icomoon.ttf?195opb') format('truetype'),
  6. url('fonts/icomoon.woff?195opb') format('woff'),
  7. url('fonts/icomoon.svg?195opb#icomoon') format('svg');
  8. font-weight: normal;
  9. font-style: normal;
  10. }
  11. [class^="icon-"], [class*=" icon-"] {
  12. /* use !important to prevent issues with browser extensions that change fonts */
  13. font-family: 'icomoon' !important;
  14. speak: none;
  15. font-style: normal;
  16. font-weight: normal;
  17. font-variant: normal;
  18. text-transform: none;
  19. line-height: 1;
  20. /* Better Font Rendering =========== */
  21. -webkit-font-smoothing: antialiased;
  22. -moz-osx-font-smoothing: grayscale;
  23. }
  24. .icon-glass:before {
  25. content: "\f000";
  26. }
  27. .icon-music:before {
  28. content: "\f001";
  29. }
  30. .icon-search:before {
  31. content: "\f002";
  32. }
  33. .icon-envelope-o:before {
  34. content: "\f003";
  35. }
  36. .icon-heart:before {
  37. content: "\f004";
  38. }
  39. .icon-star:before {
  40. content: "\f005";
  41. }
  42. .icon-star-o:before {
  43. content: "\f006";
  44. }
  45. .icon-user:before {
  46. content: "\f007";
  47. }
  48. .icon-film:before {
  49. content: "\f008";
  50. }
  51. .icon-th-large:before {
  52. content: "\f009";
  53. }
  54. .icon-th:before {
  55. content: "\f00a";
  56. }
  57. .icon-th-list:before {
  58. content: "\f00b";
  59. }
  60. .icon-check:before {
  61. content: "\f00c";
  62. }
  63. .icon-close:before {
  64. content: "\f00d";
  65. }
  66. .icon-remove:before {
  67. content: "\f00d";
  68. }
  69. .icon-times:before {
  70. content: "\f00d";
  71. }
  72. .icon-search-plus:before {
  73. content: "\f00e";
  74. }
  75. .icon-search-minus:before {
  76. content: "\f010";
  77. }
  78. .icon-power-off:before {
  79. content: "\f011";
  80. }
  81. .icon-signal:before {
  82. content: "\f012";
  83. }
  84. .icon-cog:before {
  85. content: "\f013";
  86. }
  87. .icon-gear:before {
  88. content: "\f013";
  89. }
  90. .icon-trash-o:before {
  91. content: "\f014";
  92. }
  93. .icon-home:before {
  94. content: "\f015";
  95. }
  96. .icon-file-o:before {
  97. content: "\f016";
  98. }
  99. .icon-clock-o:before {
  100. content: "\f017";
  101. }
  102. .icon-road:before {
  103. content: "\f018";
  104. }
  105. .icon-download:before {
  106. content: "\f019";
  107. }
  108. .icon-arrow-circle-o-down:before {
  109. content: "\f01a";
  110. }
  111. .icon-arrow-circle-o-up:before {
  112. content: "\f01b";
  113. }
  114. .icon-inbox:before {
  115. content: "\f01c";
  116. }
  117. .icon-play-circle-o:before {
  118. content: "\f01d";
  119. }
  120. .icon-repeat:before {
  121. content: "\f01e";
  122. }
  123. .icon-rotate-right:before {
  124. content: "\f01e";
  125. }
  126. .icon-refresh:before {
  127. content: "\f021";
  128. }
  129. .icon-list-alt:before {
  130. content: "\f022";
  131. }
  132. .icon-lock:before {
  133. content: "\f023";
  134. }
  135. .icon-flag:before {
  136. content: "\f024";
  137. }
  138. .icon-headphones:before {
  139. content: "\f025";
  140. }
  141. .icon-volume-off:before {
  142. content: "\f026";
  143. }
  144. .icon-volume-down:before {
  145. content: "\f027";
  146. }
  147. .icon-volume-up:before {
  148. content: "\f028";
  149. }
  150. .icon-qrcode:before {
  151. content: "\f029";
  152. }
  153. .icon-barcode:before {
  154. content: "\f02a";
  155. }
  156. .icon-tag:before {
  157. content: "\f02b";
  158. }
  159. .icon-tags:before {
  160. content: "\f02c";
  161. }
  162. .icon-book:before {
  163. content: "\f02d";
  164. }
  165. .icon-bookmark:before {
  166. content: "\f02e";
  167. }
  168. .icon-print:before {
  169. content: "\f02f";
  170. }
  171. .icon-camera:before {
  172. content: "\f030";
  173. }
  174. .icon-font:before {
  175. content: "\f031";
  176. }
  177. .icon-bold:before {
  178. content: "\f032";
  179. }
  180. .icon-italic:before {
  181. content: "\f033";
  182. }
  183. .icon-text-height:before {
  184. content: "\f034";
  185. }
  186. .icon-text-width:before {
  187. content: "\f035";
  188. }
  189. .icon-align-left:before {
  190. content: "\f036";
  191. }
  192. .icon-align-center:before {
  193. content: "\f037";
  194. }
  195. .icon-align-right:before {
  196. content: "\f038";
  197. }
  198. .icon-align-justify:before {
  199. content: "\f039";
  200. }
  201. .icon-list:before {
  202. content: "\f03a";
  203. }
  204. .icon-dedent:before {
  205. content: "\f03b";
  206. }
  207. .icon-outdent:before {
  208. content: "\f03b";
  209. }
  210. .icon-indent:before {
  211. content: "\f03c";
  212. }
  213. .icon-video-camera:before {
  214. content: "\f03d";
  215. }
  216. .icon-image:before {
  217. content: "\f03e";
  218. }
  219. .icon-photo:before {
  220. content: "\f03e";
  221. }
  222. .icon-picture-o:before {
  223. content: "\f03e";
  224. }
  225. .icon-pencil:before {
  226. content: "\f040";
  227. }
  228. .icon-map-marker:before {
  229. content: "\f041";
  230. }
  231. .icon-adjust:before {
  232. content: "\f042";
  233. }
  234. .icon-tint:before {
  235. content: "\f043";
  236. }
  237. .icon-edit:before {
  238. content: "\f044";
  239. }
  240. .icon-pencil-square-o:before {
  241. content: "\f044";
  242. }
  243. .icon-share-square-o:before {
  244. content: "\f045";
  245. }
  246. .icon-check-square-o:before {
  247. content: "\f046";
  248. }
  249. .icon-arrows:before {
  250. content: "\f047";
  251. }
  252. .icon-step-backward:before {
  253. content: "\f048";
  254. }
  255. .icon-fast-backward:before {
  256. content: "\f049";
  257. }
  258. .icon-backward:before {
  259. content: "\f04a";
  260. }
  261. .icon-play:before {
  262. content: "\f04b";
  263. }
  264. .icon-pause:before {
  265. content: "\f04c";
  266. }
  267. .icon-stop:before {
  268. content: "\f04d";
  269. }
  270. .icon-forward:before {
  271. content: "\f04e";
  272. }
  273. .icon-fast-forward:before {
  274. content: "\f050";
  275. }
  276. .icon-step-forward:before {
  277. content: "\f051";
  278. }
  279. .icon-eject:before {
  280. content: "\f052";
  281. }
  282. .icon-chevron-left:before {
  283. content: "\f053";
  284. }
  285. .icon-chevron-right:before {
  286. content: "\f054";
  287. }
  288. .icon-plus-circle:before {
  289. content: "\f055";
  290. }
  291. .icon-minus-circle:before {
  292. content: "\f056";
  293. }
  294. .icon-times-circle:before {
  295. content: "\f057";
  296. }
  297. .icon-check-circle:before {
  298. content: "\f058";
  299. }
  300. .icon-question-circle:before {
  301. content: "\f059";
  302. }
  303. .icon-info-circle:before {
  304. content: "\f05a";
  305. }
  306. .icon-crosshairs:before {
  307. content: "\f05b";
  308. }
  309. .icon-times-circle-o:before {
  310. content: "\f05c";
  311. }
  312. .icon-check-circle-o:before {
  313. content: "\f05d";
  314. }
  315. .icon-ban:before {
  316. content: "\f05e";
  317. }
  318. .icon-arrow-left:before {
  319. content: "\f060";
  320. }
  321. .icon-arrow-right:before {
  322. content: "\f061";
  323. }
  324. .icon-arrow-up:before {
  325. content: "\f062";
  326. }
  327. .icon-arrow-down:before {
  328. content: "\f063";
  329. }
  330. .icon-mail-forward:before {
  331. content: "\f064";
  332. }
  333. .icon-share:before {
  334. content: "\f064";
  335. }
  336. .icon-expand:before {
  337. content: "\f065";
  338. }
  339. .icon-compress:before {
  340. content: "\f066";
  341. }
  342. .icon-plus:before {
  343. content: "\f067";
  344. }
  345. .icon-minus:before {
  346. content: "\f068";
  347. }
  348. .icon-asterisk:before {
  349. content: "\f069";
  350. }
  351. .icon-exclamation-circle:before {
  352. content: "\f06a";
  353. }
  354. .icon-gift:before {
  355. content: "\f06b";
  356. }
  357. .icon-leaf:before {
  358. content: "\f06c";
  359. }
  360. .icon-fire:before {
  361. content: "\f06d";
  362. }
  363. .icon-eye:before {
  364. content: "\f06e";
  365. }
  366. .icon-eye-slash:before {
  367. content: "\f070";
  368. }
  369. .icon-exclamation-triangle:before {
  370. content: "\f071";
  371. }
  372. .icon-warning:before {
  373. content: "\f071";
  374. }
  375. .icon-plane:before {
  376. content: "\f072";
  377. }
  378. .icon-calendar:before {
  379. content: "\f073";
  380. }
  381. .icon-random:before {
  382. content: "\f074";
  383. }
  384. .icon-comment:before {
  385. content: "\f075";
  386. }
  387. .icon-magnet:before {
  388. content: "\f076";
  389. }
  390. .icon-chevron-up:before {
  391. content: "\f077";
  392. }
  393. .icon-chevron-down:before {
  394. content: "\f078";
  395. }
  396. .icon-retweet:before {
  397. content: "\f079";
  398. }
  399. .icon-shopping-cart:before {
  400. content: "\f07a";
  401. }
  402. .icon-folder:before {
  403. content: "\f07b";
  404. }
  405. .icon-folder-open:before {
  406. content: "\f07c";
  407. }
  408. .icon-arrows-v:before {
  409. content: "\f07d";
  410. }
  411. .icon-arrows-h:before {
  412. content: "\f07e";
  413. }
  414. .icon-bar-chart:before {
  415. content: "\f080";
  416. }
  417. .icon-bar-chart-o:before {
  418. content: "\f080";
  419. }
  420. .icon-twitter-square:before {
  421. content: "\f081";
  422. }
  423. .icon-facebook-square:before {
  424. content: "\f082";
  425. }
  426. .icon-camera-retro:before {
  427. content: "\f083";
  428. }
  429. .icon-key:before {
  430. content: "\f084";
  431. }
  432. .icon-cogs:before {
  433. content: "\f085";
  434. }
  435. .icon-gears:before {
  436. content: "\f085";
  437. }
  438. .icon-comments:before {
  439. content: "\f086";
  440. }
  441. .icon-thumbs-o-up:before {
  442. content: "\f087";
  443. }
  444. .icon-thumbs-o-down:before {
  445. content: "\f088";
  446. }
  447. .icon-star-half:before {
  448. content: "\f089";
  449. }
  450. .icon-heart-o:before {
  451. content: "\f08a";
  452. }
  453. .icon-sign-out:before {
  454. content: "\f08b";
  455. }
  456. .icon-linkedin-square:before {
  457. content: "\f08c";
  458. }
  459. .icon-thumb-tack:before {
  460. content: "\f08d";
  461. }
  462. .icon-external-link:before {
  463. content: "\f08e";
  464. }
  465. .icon-sign-in:before {
  466. content: "\f090";
  467. }
  468. .icon-trophy:before {
  469. content: "\f091";
  470. }
  471. .icon-github-square:before {
  472. content: "\f092";
  473. }
  474. .icon-upload:before {
  475. content: "\f093";
  476. }
  477. .icon-lemon-o:before {
  478. content: "\f094";
  479. }
  480. .icon-phone:before {
  481. content: "\f095";
  482. }
  483. .icon-square-o:before {
  484. content: "\f096";
  485. }
  486. .icon-bookmark-o:before {
  487. content: "\f097";
  488. }
  489. .icon-phone-square:before {
  490. content: "\f098";
  491. }
  492. .icon-twitter:before {
  493. content: "\f099";
  494. }
  495. .icon-facebook:before {
  496. content: "\f09a";
  497. }
  498. .icon-facebook-f:before {
  499. content: "\f09a";
  500. }
  501. .icon-github:before {
  502. content: "\f09b";
  503. }
  504. .icon-unlock:before {
  505. content: "\f09c";
  506. }
  507. .icon-credit-card:before {
  508. content: "\f09d";
  509. }
  510. .icon-feed:before {
  511. content: "\f09e";
  512. }
  513. .icon-rss:before {
  514. content: "\f09e";
  515. }
  516. .icon-hdd-o:before {
  517. content: "\f0a0";
  518. }
  519. .icon-bullhorn:before {
  520. content: "\f0a1";
  521. }
  522. .icon-bell-o:before {
  523. content: "\f0a2";
  524. }
  525. .icon-certificate:before {
  526. content: "\f0a3";
  527. }
  528. .icon-hand-o-right:before {
  529. content: "\f0a4";
  530. }
  531. .icon-hand-o-left:before {
  532. content: "\f0a5";
  533. }
  534. .icon-hand-o-up:before {
  535. content: "\f0a6";
  536. }
  537. .icon-hand-o-down:before {
  538. content: "\f0a7";
  539. }
  540. .icon-arrow-circle-left:before {
  541. content: "\f0a8";
  542. }
  543. .icon-arrow-circle-right:before {
  544. content: "\f0a9";
  545. }
  546. .icon-arrow-circle-up:before {
  547. content: "\f0aa";
  548. }
  549. .icon-arrow-circle-down:before {
  550. content: "\f0ab";
  551. }
  552. .icon-globe:before {
  553. content: "\f0ac";
  554. }
  555. .icon-wrench:before {
  556. content: "\f0ad";
  557. }
  558. .icon-tasks:before {
  559. content: "\f0ae";
  560. }
  561. .icon-filter:before {
  562. content: "\f0b0";
  563. }
  564. .icon-briefcase:before {
  565. content: "\f0b1";
  566. }
  567. .icon-arrows-alt:before {
  568. content: "\f0b2";
  569. }
  570. .icon-group:before {
  571. content: "\f0c0";
  572. }
  573. .icon-users:before {
  574. content: "\f0c0";
  575. }
  576. .icon-chain:before {
  577. content: "\f0c1";
  578. }
  579. .icon-link:before {
  580. content: "\f0c1";
  581. }
  582. .icon-cloud:before {
  583. content: "\f0c2";
  584. }
  585. .icon-flask:before {
  586. content: "\f0c3";
  587. }
  588. .icon-cut:before {
  589. content: "\f0c4";
  590. }
  591. .icon-scissors:before {
  592. content: "\f0c4";
  593. }
  594. .icon-copy:before {
  595. content: "\f0c5";
  596. }
  597. .icon-files-o:before {
  598. content: "\f0c5";
  599. }
  600. .icon-paperclip:before {
  601. content: "\f0c6";
  602. }
  603. .icon-floppy-o:before {
  604. content: "\f0c7";
  605. }
  606. .icon-save:before {
  607. content: "\f0c7";
  608. }
  609. .icon-square:before {
  610. content: "\f0c8";
  611. }
  612. .icon-bars:before {
  613. content: "\f0c9";
  614. }
  615. .icon-navicon:before {
  616. content: "\f0c9";
  617. }
  618. .icon-reorder:before {
  619. content: "\f0c9";
  620. }
  621. .icon-list-ul:before {
  622. content: "\f0ca";
  623. }
  624. .icon-list-ol:before {
  625. content: "\f0cb";
  626. }
  627. .icon-strikethrough:before {
  628. content: "\f0cc";
  629. }
  630. .icon-underline:before {
  631. content: "\f0cd";
  632. }
  633. .icon-table:before {
  634. content: "\f0ce";
  635. }
  636. .icon-magic:before {
  637. content: "\f0d0";
  638. }
  639. .icon-truck:before {
  640. content: "\f0d1";
  641. }
  642. .icon-pinterest:before {
  643. content: "\f0d2";
  644. }
  645. .icon-pinterest-square:before {
  646. content: "\f0d3";
  647. }
  648. .icon-google-plus-square:before {
  649. content: "\f0d4";
  650. }
  651. .icon-google-plus:before {
  652. content: "\f0d5";
  653. }
  654. .icon-money:before {
  655. content: "\f0d6";
  656. }
  657. .icon-caret-down:before {
  658. content: "\f0d7";
  659. }
  660. .icon-caret-up:before {
  661. content: "\f0d8";
  662. }
  663. .icon-caret-left:before {
  664. content: "\f0d9";
  665. }
  666. .icon-caret-right:before {
  667. content: "\f0da";
  668. }
  669. .icon-columns:before {
  670. content: "\f0db";
  671. }
  672. .icon-sort:before {
  673. content: "\f0dc";
  674. }
  675. .icon-unsorted:before {
  676. content: "\f0dc";
  677. }
  678. .icon-sort-desc:before {
  679. content: "\f0dd";
  680. }
  681. .icon-sort-down:before {
  682. content: "\f0dd";
  683. }
  684. .icon-sort-asc:before {
  685. content: "\f0de";
  686. }
  687. .icon-sort-up:before {
  688. content: "\f0de";
  689. }
  690. .icon-envelope:before {
  691. content: "\f0e0";
  692. }
  693. .icon-linkedin:before {
  694. content: "\f0e1";
  695. }
  696. .icon-rotate-left:before {
  697. content: "\f0e2";
  698. }
  699. .icon-undo:before {
  700. content: "\f0e2";
  701. }
  702. .icon-gavel:before {
  703. content: "\f0e3";
  704. }
  705. .icon-legal:before {
  706. content: "\f0e3";
  707. }
  708. .icon-dashboard:before {
  709. content: "\f0e4";
  710. }
  711. .icon-tachometer:before {
  712. content: "\f0e4";
  713. }
  714. .icon-comment-o:before {
  715. content: "\f0e5";
  716. }
  717. .icon-comments-o:before {
  718. content: "\f0e6";
  719. }
  720. .icon-bolt:before {
  721. content: "\f0e7";
  722. }
  723. .icon-flash:before {
  724. content: "\f0e7";
  725. }
  726. .icon-sitemap:before {
  727. content: "\f0e8";
  728. }
  729. .icon-umbrella:before {
  730. content: "\f0e9";
  731. }
  732. .icon-clipboard:before {
  733. content: "\f0ea";
  734. }
  735. .icon-paste:before {
  736. content: "\f0ea";
  737. }
  738. .icon-lightbulb-o:before {
  739. content: "\f0eb";
  740. }
  741. .icon-exchange:before {
  742. content: "\f0ec";
  743. }
  744. .icon-cloud-download:before {
  745. content: "\f0ed";
  746. }
  747. .icon-cloud-upload:before {
  748. content: "\f0ee";
  749. }
  750. .icon-user-md:before {
  751. content: "\f0f0";
  752. }
  753. .icon-stethoscope:before {
  754. content: "\f0f1";
  755. }
  756. .icon-suitcase:before {
  757. content: "\f0f2";
  758. }
  759. .icon-bell:before {
  760. content: "\f0f3";
  761. }
  762. .icon-coffee:before {
  763. content: "\f0f4";
  764. }
  765. .icon-cutlery:before {
  766. content: "\f0f5";
  767. }
  768. .icon-file-text-o:before {
  769. content: "\f0f6";
  770. }
  771. .icon-building-o:before {
  772. content: "\f0f7";
  773. }
  774. .icon-hospital-o:before {
  775. content: "\f0f8";
  776. }
  777. .icon-ambulance:before {
  778. content: "\f0f9";
  779. }
  780. .icon-medkit:before {
  781. content: "\f0fa";
  782. }
  783. .icon-fighter-jet:before {
  784. content: "\f0fb";
  785. }
  786. .icon-beer:before {
  787. content: "\f0fc";
  788. }
  789. .icon-h-square:before {
  790. content: "\f0fd";
  791. }
  792. .icon-plus-square:before {
  793. content: "\f0fe";
  794. }
  795. .icon-angle-double-left:before {
  796. content: "\f100";
  797. }
  798. .icon-angle-double-right:before {
  799. content: "\f101";
  800. }
  801. .icon-angle-double-up:before {
  802. content: "\f102";
  803. }
  804. .icon-angle-double-down:before {
  805. content: "\f103";
  806. }
  807. .icon-angle-left:before {
  808. content: "\f104";
  809. }
  810. .icon-angle-right:before {
  811. content: "\f105";
  812. }
  813. .icon-angle-up:before {
  814. content: "\f106";
  815. }
  816. .icon-angle-down:before {
  817. content: "\f107";
  818. }
  819. .icon-desktop:before {
  820. content: "\f108";
  821. }
  822. .icon-laptop:before {
  823. content: "\f109";
  824. }
  825. .icon-tablet:before {
  826. content: "\f10a";
  827. }
  828. .icon-mobile:before {
  829. content: "\f10b";
  830. }
  831. .icon-mobile-phone:before {
  832. content: "\f10b";
  833. }
  834. .icon-circle-o:before {
  835. content: "\f10c";
  836. }
  837. .icon-quote-left:before {
  838. content: "\f10d";
  839. }
  840. .icon-quote-right:before {
  841. content: "\f10e";
  842. }
  843. .icon-spinner:before {
  844. content: "\f110";
  845. }
  846. .icon-circle:before {
  847. content: "\f111";
  848. }
  849. .icon-mail-reply:before {
  850. content: "\f112";
  851. }
  852. .icon-reply:before {
  853. content: "\f112";
  854. }
  855. .icon-github-alt:before {
  856. content: "\f113";
  857. }
  858. .icon-folder-o:before {
  859. content: "\f114";
  860. }
  861. .icon-folder-open-o:before {
  862. content: "\f115";
  863. }
  864. .icon-smile-o:before {
  865. content: "\f118";
  866. }
  867. .icon-frown-o:before {
  868. content: "\f119";
  869. }
  870. .icon-meh-o:before {
  871. content: "\f11a";
  872. }
  873. .icon-gamepad:before {
  874. content: "\f11b";
  875. }
  876. .icon-keyboard-o:before {
  877. content: "\f11c";
  878. }
  879. .icon-flag-o:before {
  880. content: "\f11d";
  881. }
  882. .icon-flag-checkered:before {
  883. content: "\f11e";
  884. }
  885. .icon-terminal:before {
  886. content: "\f120";
  887. }
  888. .icon-code:before {
  889. content: "\f121";
  890. }
  891. .icon-mail-reply-all:before {
  892. content: "\f122";
  893. }
  894. .icon-reply-all:before {
  895. content: "\f122";
  896. }
  897. .icon-star-half-empty:before {
  898. content: "\f123";
  899. }
  900. .icon-star-half-full:before {
  901. content: "\f123";
  902. }
  903. .icon-star-half-o:before {
  904. content: "\f123";
  905. }
  906. .icon-location-arrow:before {
  907. content: "\f124";
  908. }
  909. .icon-crop:before {
  910. content: "\f125";
  911. }
  912. .icon-code-fork:before {
  913. content: "\f126";
  914. }
  915. .icon-chain-broken:before {
  916. content: "\f127";
  917. }
  918. .icon-unlink:before {
  919. content: "\f127";
  920. }
  921. .icon-question:before {
  922. content: "\f128";
  923. }
  924. .icon-info:before {
  925. content: "\f129";
  926. }
  927. .icon-exclamation:before {
  928. content: "\f12a";
  929. }
  930. .icon-superscript:before {
  931. content: "\f12b";
  932. }
  933. .icon-subscript:before {
  934. content: "\f12c";
  935. }
  936. .icon-eraser:before {
  937. content: "\f12d";
  938. }
  939. .icon-puzzle-piece:before {
  940. content: "\f12e";
  941. }
  942. .icon-microphone:before {
  943. content: "\f130";
  944. }
  945. .icon-microphone-slash:before {
  946. content: "\f131";
  947. }
  948. .icon-shield:before {
  949. content: "\f132";
  950. }
  951. .icon-calendar-o:before {
  952. content: "\f133";
  953. }
  954. .icon-fire-extinguisher:before {
  955. content: "\f134";
  956. }
  957. .icon-rocket:before {
  958. content: "\f135";
  959. }
  960. .icon-maxcdn:before {
  961. content: "\f136";
  962. }
  963. .icon-chevron-circle-left:before {
  964. content: "\f137";
  965. }
  966. .icon-chevron-circle-right:before {
  967. content: "\f138";
  968. }
  969. .icon-chevron-circle-up:before {
  970. content: "\f139";
  971. }
  972. .icon-chevron-circle-down:before {
  973. content: "\f13a";
  974. }
  975. .icon-html5:before {
  976. content: "\f13b";
  977. }
  978. .icon-css3:before {
  979. content: "\f13c";
  980. }
  981. .icon-anchor:before {
  982. content: "\f13d";
  983. }
  984. .icon-unlock-alt:before {
  985. content: "\f13e";
  986. }
  987. .icon-bullseye:before {
  988. content: "\f140";
  989. }
  990. .icon-ellipsis-h:before {
  991. content: "\f141";
  992. }
  993. .icon-ellipsis-v:before {
  994. content: "\f142";
  995. }
  996. .icon-rss-square:before {
  997. content: "\f143";
  998. }
  999. .icon-play-circle:before {
  1000. content: "\f144";
  1001. }
  1002. .icon-ticket:before {
  1003. content: "\f145";
  1004. }
  1005. .icon-minus-square:before {
  1006. content: "\f146";
  1007. }
  1008. .icon-minus-square-o:before {
  1009. content: "\f147";
  1010. }
  1011. .icon-level-up:before {
  1012. content: "\f148";
  1013. }
  1014. .icon-level-down:before {
  1015. content: "\f149";
  1016. }
  1017. .icon-check-square:before {
  1018. content: "\f14a";
  1019. }
  1020. .icon-pencil-square:before {
  1021. content: "\f14b";
  1022. }
  1023. .icon-external-link-square:before {
  1024. content: "\f14c";
  1025. }
  1026. .icon-share-square:before {
  1027. content: "\f14d";
  1028. }
  1029. .icon-compass:before {
  1030. content: "\f14e";
  1031. }
  1032. .icon-caret-square-o-down:before {
  1033. content: "\f150";
  1034. }
  1035. .icon-toggle-down:before {
  1036. content: "\f150";
  1037. }
  1038. .icon-caret-square-o-up:before {
  1039. content: "\f151";
  1040. }
  1041. .icon-toggle-up:before {
  1042. content: "\f151";
  1043. }
  1044. .icon-caret-square-o-right:before {
  1045. content: "\f152";
  1046. }
  1047. .icon-toggle-right:before {
  1048. content: "\f152";
  1049. }
  1050. .icon-eur:before {
  1051. content: "\f153";
  1052. }
  1053. .icon-euro:before {
  1054. content: "\f153";
  1055. }
  1056. .icon-gbp:before {
  1057. content: "\f154";
  1058. }
  1059. .icon-dollar:before {
  1060. content: "\f155";
  1061. }
  1062. .icon-usd:before {
  1063. content: "\f155";
  1064. }
  1065. .icon-inr:before {
  1066. content: "\f156";
  1067. }
  1068. .icon-rupee:before {
  1069. content: "\f156";
  1070. }
  1071. .icon-cny:before {
  1072. content: "\f157";
  1073. }
  1074. .icon-jpy:before {
  1075. content: "\f157";
  1076. }
  1077. .icon-rmb:before {
  1078. content: "\f157";
  1079. }
  1080. .icon-yen:before {
  1081. content: "\f157";
  1082. }
  1083. .icon-rouble:before {
  1084. content: "\f158";
  1085. }
  1086. .icon-rub:before {
  1087. content: "\f158";
  1088. }
  1089. .icon-ruble:before {
  1090. content: "\f158";
  1091. }
  1092. .icon-krw:before {
  1093. content: "\f159";
  1094. }
  1095. .icon-won:before {
  1096. content: "\f159";
  1097. }
  1098. .icon-bitcoin:before {
  1099. content: "\f15a";
  1100. }
  1101. .icon-btc:before {
  1102. content: "\f15a";
  1103. }
  1104. .icon-file:before {
  1105. content: "\f15b";
  1106. }
  1107. .icon-file-text:before {
  1108. content: "\f15c";
  1109. }
  1110. .icon-sort-alpha-asc:before {
  1111. content: "\f15d";
  1112. }
  1113. .icon-sort-alpha-desc:before {
  1114. content: "\f15e";
  1115. }
  1116. .icon-sort-amount-asc:before {
  1117. content: "\f160";
  1118. }
  1119. .icon-sort-amount-desc:before {
  1120. content: "\f161";
  1121. }
  1122. .icon-sort-numeric-asc:before {
  1123. content: "\f162";
  1124. }
  1125. .icon-sort-numeric-desc:before {
  1126. content: "\f163";
  1127. }
  1128. .icon-thumbs-up:before {
  1129. content: "\f164";
  1130. }
  1131. .icon-thumbs-down:before {
  1132. content: "\f165";
  1133. }
  1134. .icon-youtube-square:before {
  1135. content: "\f166";
  1136. }
  1137. .icon-youtube:before {
  1138. content: "\f167";
  1139. }
  1140. .icon-xing:before {
  1141. content: "\f168";
  1142. }
  1143. .icon-xing-square:before {
  1144. content: "\f169";
  1145. }
  1146. .icon-youtube-play:before {
  1147. content: "\f16a";
  1148. }
  1149. .icon-dropbox:before {
  1150. content: "\f16b";
  1151. }
  1152. .icon-stack-overflow:before {
  1153. content: "\f16c";
  1154. }
  1155. .icon-instagram:before {
  1156. content: "\f16d";
  1157. }
  1158. .icon-flickr:before {
  1159. content: "\f16e";
  1160. }
  1161. .icon-adn:before {
  1162. content: "\f170";
  1163. }
  1164. .icon-bitbucket:before {
  1165. content: "\f171";
  1166. }
  1167. .icon-bitbucket-square:before {
  1168. content: "\f172";
  1169. }
  1170. .icon-tumblr:before {
  1171. content: "\f173";
  1172. }
  1173. .icon-tumblr-square:before {
  1174. content: "\f174";
  1175. }
  1176. .icon-long-arrow-down:before {
  1177. content: "\f175";
  1178. }
  1179. .icon-long-arrow-up:before {
  1180. content: "\f176";
  1181. }
  1182. .icon-long-arrow-left:before {
  1183. content: "\f177";
  1184. }
  1185. .icon-long-arrow-right:before {
  1186. content: "\f178";
  1187. }
  1188. .icon-apple:before {
  1189. content: "\f179";
  1190. }
  1191. .icon-windows:before {
  1192. content: "\f17a";
  1193. }
  1194. .icon-android:before {
  1195. content: "\f17b";
  1196. }
  1197. .icon-linux:before {
  1198. content: "\f17c";
  1199. }
  1200. .icon-dribbble:before {
  1201. content: "\f17d";
  1202. }
  1203. .icon-skype:before {
  1204. content: "\f17e";
  1205. }
  1206. .icon-foursquare:before {
  1207. content: "\f180";
  1208. }
  1209. .icon-trello:before {
  1210. content: "\f181";
  1211. }
  1212. .icon-female:before {
  1213. content: "\f182";
  1214. }
  1215. .icon-male:before {
  1216. content: "\f183";
  1217. }
  1218. .icon-gittip:before {
  1219. content: "\f184";
  1220. }
  1221. .icon-gratipay:before {
  1222. content: "\f184";
  1223. }
  1224. .icon-sun-o:before {
  1225. content: "\f185";
  1226. }
  1227. .icon-moon-o:before {
  1228. content: "\f186";
  1229. }
  1230. .icon-archive:before {
  1231. content: "\f187";
  1232. }
  1233. .icon-bug:before {
  1234. content: "\f188";
  1235. }
  1236. .icon-vk:before {
  1237. content: "\f189";
  1238. }
  1239. .icon-weibo:before {
  1240. content: "\f18a";
  1241. }
  1242. .icon-renren:before {
  1243. content: "\f18b";
  1244. }
  1245. .icon-pagelines:before {
  1246. content: "\f18c";
  1247. }
  1248. .icon-stack-exchange:before {
  1249. content: "\f18d";
  1250. }
  1251. .icon-arrow-circle-o-right:before {
  1252. content: "\f18e";
  1253. }
  1254. .icon-arrow-circle-o-left:before {
  1255. content: "\f190";
  1256. }
  1257. .icon-caret-square-o-left:before {
  1258. content: "\f191";
  1259. }
  1260. .icon-toggle-left:before {
  1261. content: "\f191";
  1262. }
  1263. .icon-dot-circle-o:before {
  1264. content: "\f192";
  1265. }
  1266. .icon-wheelchair:before {
  1267. content: "\f193";
  1268. }
  1269. .icon-vimeo-square:before {
  1270. content: "\f194";
  1271. }
  1272. .icon-try:before {
  1273. content: "\f195";
  1274. }
  1275. .icon-turkish-lira:before {
  1276. content: "\f195";
  1277. }
  1278. .icon-plus-square-o:before {
  1279. content: "\f196";
  1280. }
  1281. .icon-space-shuttle:before {
  1282. content: "\f197";
  1283. }
  1284. .icon-slack:before {
  1285. content: "\f198";
  1286. }
  1287. .icon-envelope-square:before {
  1288. content: "\f199";
  1289. }
  1290. .icon-wordpress:before {
  1291. content: "\f19a";
  1292. }
  1293. .icon-openid:before {
  1294. content: "\f19b";
  1295. }
  1296. .icon-bank:before {
  1297. content: "\f19c";
  1298. }
  1299. .icon-institution:before {
  1300. content: "\f19c";
  1301. }
  1302. .icon-university:before {
  1303. content: "\f19c";
  1304. }
  1305. .icon-graduation-cap:before {
  1306. content: "\f19d";
  1307. }
  1308. .icon-mortar-board:before {
  1309. content: "\f19d";
  1310. }
  1311. .icon-yahoo:before {
  1312. content: "\f19e";
  1313. }
  1314. .icon-google:before {
  1315. content: "\f1a0";
  1316. }
  1317. .icon-reddit:before {
  1318. content: "\f1a1";
  1319. }
  1320. .icon-reddit-square:before {
  1321. content: "\f1a2";
  1322. }
  1323. .icon-stumbleupon-circle:before {
  1324. content: "\f1a3";
  1325. }
  1326. .icon-stumbleupon:before {
  1327. content: "\f1a4";
  1328. }
  1329. .icon-delicious:before {
  1330. content: "\f1a5";
  1331. }
  1332. .icon-digg:before {
  1333. content: "\f1a6";
  1334. }
  1335. .icon-pied-piper-pp:before {
  1336. content: "\f1a7";
  1337. }
  1338. .icon-pied-piper-alt:before {
  1339. content: "\f1a8";
  1340. }
  1341. .icon-drupal:before {
  1342. content: "\f1a9";
  1343. }
  1344. .icon-joomla:before {
  1345. content: "\f1aa";
  1346. }
  1347. .icon-language:before {
  1348. content: "\f1ab";
  1349. }
  1350. .icon-fax:before {
  1351. content: "\f1ac";
  1352. }
  1353. .icon-building:before {
  1354. content: "\f1ad";
  1355. }
  1356. .icon-child:before {
  1357. content: "\f1ae";
  1358. }
  1359. .icon-paw:before {
  1360. content: "\f1b0";
  1361. }
  1362. .icon-spoon:before {
  1363. content: "\f1b1";
  1364. }
  1365. .icon-cube:before {
  1366. content: "\f1b2";
  1367. }
  1368. .icon-cubes:before {
  1369. content: "\f1b3";
  1370. }
  1371. .icon-behance:before {
  1372. content: "\f1b4";
  1373. }
  1374. .icon-behance-square:before {
  1375. content: "\f1b5";
  1376. }
  1377. .icon-steam:before {
  1378. content: "\f1b6";
  1379. }
  1380. .icon-steam-square:before {
  1381. content: "\f1b7";
  1382. }
  1383. .icon-recycle:before {
  1384. content: "\f1b8";
  1385. }
  1386. .icon-automobile:before {
  1387. content: "\f1b9";
  1388. }
  1389. .icon-car:before {
  1390. content: "\f1b9";
  1391. }
  1392. .icon-cab:before {
  1393. content: "\f1ba";
  1394. }
  1395. .icon-taxi:before {
  1396. content: "\f1ba";
  1397. }
  1398. .icon-tree:before {
  1399. content: "\f1bb";
  1400. }
  1401. .icon-spotify:before {
  1402. content: "\f1bc";
  1403. }
  1404. .icon-deviantart:before {
  1405. content: "\f1bd";
  1406. }
  1407. .icon-soundcloud:before {
  1408. content: "\f1be";
  1409. }
  1410. .icon-database:before {
  1411. content: "\f1c0";
  1412. }
  1413. .icon-file-pdf-o:before {
  1414. content: "\f1c1";
  1415. }
  1416. .icon-file-word-o:before {
  1417. content: "\f1c2";
  1418. }
  1419. .icon-file-excel-o:before {
  1420. content: "\f1c3";
  1421. }
  1422. .icon-file-powerpoint-o:before {
  1423. content: "\f1c4";
  1424. }
  1425. .icon-file-image-o:before {
  1426. content: "\f1c5";
  1427. }
  1428. .icon-file-photo-o:before {
  1429. content: "\f1c5";
  1430. }
  1431. .icon-file-picture-o:before {
  1432. content: "\f1c5";
  1433. }
  1434. .icon-file-archive-o:before {
  1435. content: "\f1c6";
  1436. }
  1437. .icon-file-zip-o:before {
  1438. content: "\f1c6";
  1439. }
  1440. .icon-file-audio-o:before {
  1441. content: "\f1c7";
  1442. }
  1443. .icon-file-sound-o:before {
  1444. content: "\f1c7";
  1445. }
  1446. .icon-file-movie-o:before {
  1447. content: "\f1c8";
  1448. }
  1449. .icon-file-video-o:before {
  1450. content: "\f1c8";
  1451. }
  1452. .icon-file-code-o:before {
  1453. content: "\f1c9";
  1454. }
  1455. .icon-vine:before {
  1456. content: "\f1ca";
  1457. }
  1458. .icon-codepen:before {
  1459. content: "\f1cb";
  1460. }
  1461. .icon-jsfiddle:before {
  1462. content: "\f1cc";
  1463. }
  1464. .icon-life-bouy:before {
  1465. content: "\f1cd";
  1466. }
  1467. .icon-life-buoy:before {
  1468. content: "\f1cd";
  1469. }
  1470. .icon-life-ring:before {
  1471. content: "\f1cd";
  1472. }
  1473. .icon-life-saver:before {
  1474. content: "\f1cd";
  1475. }
  1476. .icon-support:before {
  1477. content: "\f1cd";
  1478. }
  1479. .icon-circle-o-notch:before {
  1480. content: "\f1ce";
  1481. }
  1482. .icon-ra:before {
  1483. content: "\f1d0";
  1484. }
  1485. .icon-rebel:before {
  1486. content: "\f1d0";
  1487. }
  1488. .icon-resistance:before {
  1489. content: "\f1d0";
  1490. }
  1491. .icon-empire:before {
  1492. content: "\f1d1";
  1493. }
  1494. .icon-ge:before {
  1495. content: "\f1d1";
  1496. }
  1497. .icon-git-square:before {
  1498. content: "\f1d2";
  1499. }
  1500. .icon-git:before {
  1501. content: "\f1d3";
  1502. }
  1503. .icon-hacker-news:before {
  1504. content: "\f1d4";
  1505. }
  1506. .icon-y-combinator-square:before {
  1507. content: "\f1d4";
  1508. }
  1509. .icon-yc-square:before {
  1510. content: "\f1d4";
  1511. }
  1512. .icon-tencent-weibo:before {
  1513. content: "\f1d5";
  1514. }
  1515. .icon-qq:before {
  1516. content: "\f1d6";
  1517. }
  1518. .icon-wechat:before {
  1519. content: "\f1d7";
  1520. }
  1521. .icon-weixin:before {
  1522. content: "\f1d7";
  1523. }
  1524. .icon-paper-plane:before {
  1525. content: "\f1d8";
  1526. }
  1527. .icon-send:before {
  1528. content: "\f1d8";
  1529. }
  1530. .icon-paper-plane-o:before {
  1531. content: "\f1d9";
  1532. }
  1533. .icon-send-o:before {
  1534. content: "\f1d9";
  1535. }
  1536. .icon-history:before {
  1537. content: "\f1da";
  1538. }
  1539. .icon-circle-thin:before {
  1540. content: "\f1db";
  1541. }
  1542. .icon-header:before {
  1543. content: "\f1dc";
  1544. }
  1545. .icon-paragraph:before {
  1546. content: "\f1dd";
  1547. }
  1548. .icon-sliders:before {
  1549. content: "\f1de";
  1550. }
  1551. .icon-share-alt:before {
  1552. content: "\f1e0";
  1553. }
  1554. .icon-share-alt-square:before {
  1555. content: "\f1e1";
  1556. }
  1557. .icon-bomb:before {
  1558. content: "\f1e2";
  1559. }
  1560. .icon-futbol-o:before {
  1561. content: "\f1e3";
  1562. }
  1563. .icon-soccer-ball-o:before {
  1564. content: "\f1e3";
  1565. }
  1566. .icon-tty:before {
  1567. content: "\f1e4";
  1568. }
  1569. .icon-binoculars:before {
  1570. content: "\f1e5";
  1571. }
  1572. .icon-plug:before {
  1573. content: "\f1e6";
  1574. }
  1575. .icon-slideshare:before {
  1576. content: "\f1e7";
  1577. }
  1578. .icon-twitch:before {
  1579. content: "\f1e8";
  1580. }
  1581. .icon-yelp:before {
  1582. content: "\f1e9";
  1583. }
  1584. .icon-newspaper-o:before {
  1585. content: "\f1ea";
  1586. }
  1587. .icon-wifi:before {
  1588. content: "\f1eb";
  1589. }
  1590. .icon-calculator:before {
  1591. content: "\f1ec";
  1592. }
  1593. .icon-paypal:before {
  1594. content: "\f1ed";
  1595. }
  1596. .icon-google-wallet:before {
  1597. content: "\f1ee";
  1598. }
  1599. .icon-cc-visa:before {
  1600. content: "\f1f0";
  1601. }
  1602. .icon-cc-mastercard:before {
  1603. content: "\f1f1";
  1604. }
  1605. .icon-cc-discover:before {
  1606. content: "\f1f2";
  1607. }
  1608. .icon-cc-amex:before {
  1609. content: "\f1f3";
  1610. }
  1611. .icon-cc-paypal:before {
  1612. content: "\f1f4";
  1613. }
  1614. .icon-cc-stripe:before {
  1615. content: "\f1f5";
  1616. }
  1617. .icon-bell-slash:before {
  1618. content: "\f1f6";
  1619. }
  1620. .icon-bell-slash-o:before {
  1621. content: "\f1f7";
  1622. }
  1623. .icon-trash:before {
  1624. content: "\f1f8";
  1625. }
  1626. .icon-copyright:before {
  1627. content: "\f1f9";
  1628. }
  1629. .icon-at:before {
  1630. content: "\f1fa";
  1631. }
  1632. .icon-eyedropper:before {
  1633. content: "\f1fb";
  1634. }
  1635. .icon-paint-brush:before {
  1636. content: "\f1fc";
  1637. }
  1638. .icon-birthday-cake:before {
  1639. content: "\f1fd";
  1640. }
  1641. .icon-area-chart:before {
  1642. content: "\f1fe";
  1643. }
  1644. .icon-pie-chart:before {
  1645. content: "\f200";
  1646. }
  1647. .icon-line-chart:before {
  1648. content: "\f201";
  1649. }
  1650. .icon-lastfm:before {
  1651. content: "\f202";
  1652. }
  1653. .icon-lastfm-square:before {
  1654. content: "\f203";
  1655. }
  1656. .icon-toggle-off:before {
  1657. content: "\f204";
  1658. }
  1659. .icon-toggle-on:before {
  1660. content: "\f205";
  1661. }
  1662. .icon-bicycle:before {
  1663. content: "\f206";
  1664. }
  1665. .icon-bus:before {
  1666. content: "\f207";
  1667. }
  1668. .icon-ioxhost:before {
  1669. content: "\f208";
  1670. }
  1671. .icon-angellist:before {
  1672. content: "\f209";
  1673. }
  1674. .icon-cc:before {
  1675. content: "\f20a";
  1676. }
  1677. .icon-ils:before {
  1678. content: "\f20b";
  1679. }
  1680. .icon-shekel:before {
  1681. content: "\f20b";
  1682. }
  1683. .icon-sheqel:before {
  1684. content: "\f20b";
  1685. }
  1686. .icon-meanpath:before {
  1687. content: "\f20c";
  1688. }
  1689. .icon-buysellads:before {
  1690. content: "\f20d";
  1691. }
  1692. .icon-connectdevelop:before {
  1693. content: "\f20e";
  1694. }
  1695. .icon-dashcube:before {
  1696. content: "\f210";
  1697. }
  1698. .icon-forumbee:before {
  1699. content: "\f211";
  1700. }
  1701. .icon-leanpub:before {
  1702. content: "\f212";
  1703. }
  1704. .icon-sellsy:before {
  1705. content: "\f213";
  1706. }
  1707. .icon-shirtsinbulk:before {
  1708. content: "\f214";
  1709. }
  1710. .icon-simplybuilt:before {
  1711. content: "\f215";
  1712. }
  1713. .icon-skyatlas:before {
  1714. content: "\f216";
  1715. }
  1716. .icon-cart-plus:before {
  1717. content: "\f217";
  1718. }
  1719. .icon-cart-arrow-down:before {
  1720. content: "\f218";
  1721. }
  1722. .icon-diamond:before {
  1723. content: "\f219";
  1724. }
  1725. .icon-ship:before {
  1726. content: "\f21a";
  1727. }
  1728. .icon-user-secret:before {
  1729. content: "\f21b";
  1730. }
  1731. .icon-motorcycle:before {
  1732. content: "\f21c";
  1733. }
  1734. .icon-street-view:before {
  1735. content: "\f21d";
  1736. }
  1737. .icon-heartbeat:before {
  1738. content: "\f21e";
  1739. }
  1740. .icon-venus:before {
  1741. content: "\f221";
  1742. }
  1743. .icon-mars:before {
  1744. content: "\f222";
  1745. }
  1746. .icon-mercury:before {
  1747. content: "\f223";
  1748. }
  1749. .icon-intersex:before {
  1750. content: "\f224";
  1751. }
  1752. .icon-transgender:before {
  1753. content: "\f224";
  1754. }
  1755. .icon-transgender-alt:before {
  1756. content: "\f225";
  1757. }
  1758. .icon-venus-double:before {
  1759. content: "\f226";
  1760. }
  1761. .icon-mars-double:before {
  1762. content: "\f227";
  1763. }
  1764. .icon-venus-mars:before {
  1765. content: "\f228";
  1766. }
  1767. .icon-mars-stroke:before {
  1768. content: "\f229";
  1769. }
  1770. .icon-mars-stroke-v:before {
  1771. content: "\f22a";
  1772. }
  1773. .icon-mars-stroke-h:before {
  1774. content: "\f22b";
  1775. }
  1776. .icon-neuter:before {
  1777. content: "\f22c";
  1778. }
  1779. .icon-genderless:before {
  1780. content: "\f22d";
  1781. }
  1782. .icon-facebook-official:before {
  1783. content: "\f230";
  1784. }
  1785. .icon-pinterest-p:before {
  1786. content: "\f231";
  1787. }
  1788. .icon-whatsapp:before {
  1789. content: "\f232";
  1790. }
  1791. .icon-server:before {
  1792. content: "\f233";
  1793. }
  1794. .icon-user-plus:before {
  1795. content: "\f234";
  1796. }
  1797. .icon-user-times:before {
  1798. content: "\f235";
  1799. }
  1800. .icon-bed:before {
  1801. content: "\f236";
  1802. }
  1803. .icon-hotel:before {
  1804. content: "\f236";
  1805. }
  1806. .icon-viacoin:before {
  1807. content: "\f237";
  1808. }
  1809. .icon-train:before {
  1810. content: "\f238";
  1811. }
  1812. .icon-subway:before {
  1813. content: "\f239";
  1814. }
  1815. .icon-medium:before {
  1816. content: "\f23a";
  1817. }
  1818. .icon-y-combinator:before {
  1819. content: "\f23b";
  1820. }
  1821. .icon-yc:before {
  1822. content: "\f23b";
  1823. }
  1824. .icon-optin-monster:before {
  1825. content: "\f23c";
  1826. }
  1827. .icon-opencart:before {
  1828. content: "\f23d";
  1829. }
  1830. .icon-expeditedssl:before {
  1831. content: "\f23e";
  1832. }
  1833. .icon-battery-4:before {
  1834. content: "\f240";
  1835. }
  1836. .icon-battery-full:before {
  1837. content: "\f240";
  1838. }
  1839. .icon-battery-3:before {
  1840. content: "\f241";
  1841. }
  1842. .icon-battery-three-quarters:before {
  1843. content: "\f241";
  1844. }
  1845. .icon-battery-2:before {
  1846. content: "\f242";
  1847. }
  1848. .icon-battery-half:before {
  1849. content: "\f242";
  1850. }
  1851. .icon-battery-1:before {
  1852. content: "\f243";
  1853. }
  1854. .icon-battery-quarter:before {
  1855. content: "\f243";
  1856. }
  1857. .icon-battery-0:before {
  1858. content: "\f244";
  1859. }
  1860. .icon-battery-empty:before {
  1861. content: "\f244";
  1862. }
  1863. .icon-mouse-pointer:before {
  1864. content: "\f245";
  1865. }
  1866. .icon-i-cursor:before {
  1867. content: "\f246";
  1868. }
  1869. .icon-object-group:before {
  1870. content: "\f247";
  1871. }
  1872. .icon-object-ungroup:before {
  1873. content: "\f248";
  1874. }
  1875. .icon-sticky-note:before {
  1876. content: "\f249";
  1877. }
  1878. .icon-sticky-note-o:before {
  1879. content: "\f24a";
  1880. }
  1881. .icon-cc-jcb:before {
  1882. content: "\f24b";
  1883. }
  1884. .icon-cc-diners-club:before {
  1885. content: "\f24c";
  1886. }
  1887. .icon-clone:before {
  1888. content: "\f24d";
  1889. }
  1890. .icon-balance-scale:before {
  1891. content: "\f24e";
  1892. }
  1893. .icon-hourglass-o:before {
  1894. content: "\f250";
  1895. }
  1896. .icon-hourglass-1:before {
  1897. content: "\f251";
  1898. }
  1899. .icon-hourglass-start:before {
  1900. content: "\f251";
  1901. }
  1902. .icon-hourglass-2:before {
  1903. content: "\f252";
  1904. }
  1905. .icon-hourglass-half:before {
  1906. content: "\f252";
  1907. }
  1908. .icon-hourglass-3:before {
  1909. content: "\f253";
  1910. }
  1911. .icon-hourglass-end:before {
  1912. content: "\f253";
  1913. }
  1914. .icon-hourglass:before {
  1915. content: "\f254";
  1916. }
  1917. .icon-hand-grab-o:before {
  1918. content: "\f255";
  1919. }
  1920. .icon-hand-rock-o:before {
  1921. content: "\f255";
  1922. }
  1923. .icon-hand-paper-o:before {
  1924. content: "\f256";
  1925. }
  1926. .icon-hand-stop-o:before {
  1927. content: "\f256";
  1928. }
  1929. .icon-hand-scissors-o:before {
  1930. content: "\f257";
  1931. }
  1932. .icon-hand-lizard-o:before {
  1933. content: "\f258";
  1934. }
  1935. .icon-hand-spock-o:before {
  1936. content: "\f259";
  1937. }
  1938. .icon-hand-pointer-o:before {
  1939. content: "\f25a";
  1940. }
  1941. .icon-hand-peace-o:before {
  1942. content: "\f25b";
  1943. }
  1944. .icon-trademark:before {
  1945. content: "\f25c";
  1946. }
  1947. .icon-registered:before {
  1948. content: "\f25d";
  1949. }
  1950. .icon-creative-commons:before {
  1951. content: "\f25e";
  1952. }
  1953. .icon-gg:before {
  1954. content: "\f260";
  1955. }
  1956. .icon-gg-circle:before {
  1957. content: "\f261";
  1958. }
  1959. .icon-tripadvisor:before {
  1960. content: "\f262";
  1961. }
  1962. .icon-odnoklassniki:before {
  1963. content: "\f263";
  1964. }
  1965. .icon-odnoklassniki-square:before {
  1966. content: "\f264";
  1967. }
  1968. .icon-get-pocket:before {
  1969. content: "\f265";
  1970. }
  1971. .icon-wikipedia-w:before {
  1972. content: "\f266";
  1973. }
  1974. .icon-safari:before {
  1975. content: "\f267";
  1976. }
  1977. .icon-chrome:before {
  1978. content: "\f268";
  1979. }
  1980. .icon-firefox:before {
  1981. content: "\f269";
  1982. }
  1983. .icon-opera:before {
  1984. content: "\f26a";
  1985. }
  1986. .icon-internet-explorer:before {
  1987. content: "\f26b";
  1988. }
  1989. .icon-television:before {
  1990. content: "\f26c";
  1991. }
  1992. .icon-tv:before {
  1993. content: "\f26c";
  1994. }
  1995. .icon-contao:before {
  1996. content: "\f26d";
  1997. }
  1998. .icon-500px:before {
  1999. content: "\f26e";
  2000. }
  2001. .icon-amazon:before {
  2002. content: "\f270";
  2003. }
  2004. .icon-calendar-plus-o:before {
  2005. content: "\f271";
  2006. }
  2007. .icon-calendar-minus-o:before {
  2008. content: "\f272";
  2009. }
  2010. .icon-calendar-times-o:before {
  2011. content: "\f273";
  2012. }
  2013. .icon-calendar-check-o:before {
  2014. content: "\f274";
  2015. }
  2016. .icon-industry:before {
  2017. content: "\f275";
  2018. }
  2019. .icon-map-pin:before {
  2020. content: "\f276";
  2021. }
  2022. .icon-map-signs:before {
  2023. content: "\f277";
  2024. }
  2025. .icon-map-o:before {
  2026. content: "\f278";
  2027. }
  2028. .icon-map:before {
  2029. content: "\f279";
  2030. }
  2031. .icon-commenting:before {
  2032. content: "\f27a";
  2033. }
  2034. .icon-commenting-o:before {
  2035. content: "\f27b";
  2036. }
  2037. .icon-houzz:before {
  2038. content: "\f27c";
  2039. }
  2040. .icon-vimeo:before {
  2041. content: "\f27d";
  2042. }
  2043. .icon-black-tie:before {
  2044. content: "\f27e";
  2045. }
  2046. .icon-fonticons:before {
  2047. content: "\f280";
  2048. }
  2049. .icon-reddit-alien:before {
  2050. content: "\f281";
  2051. }
  2052. .icon-edge:before {
  2053. content: "\f282";
  2054. }
  2055. .icon-credit-card-alt:before {
  2056. content: "\f283";
  2057. }
  2058. .icon-codiepie:before {
  2059. content: "\f284";
  2060. }
  2061. .icon-modx:before {
  2062. content: "\f285";
  2063. }
  2064. .icon-fort-awesome:before {
  2065. content: "\f286";
  2066. }
  2067. .icon-usb:before {
  2068. content: "\f287";
  2069. }
  2070. .icon-product-hunt:before {
  2071. content: "\f288";
  2072. }
  2073. .icon-mixcloud:before {
  2074. content: "\f289";
  2075. }
  2076. .icon-scribd:before {
  2077. content: "\f28a";
  2078. }
  2079. .icon-pause-circle:before {
  2080. content: "\f28b";
  2081. }
  2082. .icon-pause-circle-o:before {
  2083. content: "\f28c";
  2084. }
  2085. .icon-stop-circle:before {
  2086. content: "\f28d";
  2087. }
  2088. .icon-stop-circle-o:before {
  2089. content: "\f28e";
  2090. }
  2091. .icon-shopping-bag:before {
  2092. content: "\f290";
  2093. }
  2094. .icon-shopping-basket:before {
  2095. content: "\f291";
  2096. }
  2097. .icon-hashtag:before {
  2098. content: "\f292";
  2099. }
  2100. .icon-bluetooth:before {
  2101. content: "\f293";
  2102. }
  2103. .icon-bluetooth-b:before {
  2104. content: "\f294";
  2105. }
  2106. .icon-percent:before {
  2107. content: "\f295";
  2108. }
  2109. .icon-gitlab:before {
  2110. content: "\f296";
  2111. }
  2112. .icon-wpbeginner:before {
  2113. content: "\f297";
  2114. }
  2115. .icon-wpforms:before {
  2116. content: "\f298";
  2117. }
  2118. .icon-envira:before {
  2119. content: "\f299";
  2120. }
  2121. .icon-universal-access:before {
  2122. content: "\f29a";
  2123. }
  2124. .icon-wheelchair-alt:before {
  2125. content: "\f29b";
  2126. }
  2127. .icon-question-circle-o:before {
  2128. content: "\f29c";
  2129. }
  2130. .icon-blind:before {
  2131. content: "\f29d";
  2132. }
  2133. .icon-audio-description:before {
  2134. content: "\f29e";
  2135. }
  2136. .icon-volume-control-phone:before {
  2137. content: "\f2a0";
  2138. }
  2139. .icon-braille:before {
  2140. content: "\f2a1";
  2141. }
  2142. .icon-assistive-listening-systems:before {
  2143. content: "\f2a2";
  2144. }
  2145. .icon-american-sign-language-interpreting:before {
  2146. content: "\f2a3";
  2147. }
  2148. .icon-asl-interpreting:before {
  2149. content: "\f2a3";
  2150. }
  2151. .icon-deaf:before {
  2152. content: "\f2a4";
  2153. }
  2154. .icon-deafness:before {
  2155. content: "\f2a4";
  2156. }
  2157. .icon-hard-of-hearing:before {
  2158. content: "\f2a4";
  2159. }
  2160. .icon-glide:before {
  2161. content: "\f2a5";
  2162. }
  2163. .icon-glide-g:before {
  2164. content: "\f2a6";
  2165. }
  2166. .icon-sign-language:before {
  2167. content: "\f2a7";
  2168. }
  2169. .icon-signing:before {
  2170. content: "\f2a7";
  2171. }
  2172. .icon-low-vision:before {
  2173. content: "\f2a8";
  2174. }
  2175. .icon-viadeo:before {
  2176. content: "\f2a9";
  2177. }
  2178. .icon-viadeo-square:before {
  2179. content: "\f2aa";
  2180. }
  2181. .icon-snapchat:before {
  2182. content: "\f2ab";
  2183. }
  2184. .icon-snapchat-ghost:before {
  2185. content: "\f2ac";
  2186. }
  2187. .icon-snapchat-square:before {
  2188. content: "\f2ad";
  2189. }
  2190. .icon-pied-piper:before {
  2191. content: "\f2ae";
  2192. }
  2193. .icon-first-order:before {
  2194. content: "\f2b0";
  2195. }
  2196. .icon-yoast:before {
  2197. content: "\f2b1";
  2198. }
  2199. .icon-themeisle:before {
  2200. content: "\f2b2";
  2201. }
  2202. .icon-google-plus-circle:before {
  2203. content: "\f2b3";
  2204. }
  2205. .icon-google-plus-official:before {
  2206. content: "\f2b3";
  2207. }
  2208. .icon-fa:before {
  2209. content: "\f2b4";
  2210. }
  2211. .icon-font-awesome:before {
  2212. content: "\f2b4";
  2213. }
  2214. .icon-mobile2:before {
  2215. content: "\e000";
  2216. }
  2217. .icon-laptop2:before {
  2218. content: "\e001";
  2219. }
  2220. .icon-desktop2:before {
  2221. content: "\e002";
  2222. }
  2223. .icon-tablet2:before {
  2224. content: "\e003";
  2225. }
  2226. .icon-phone2:before {
  2227. content: "\e004";
  2228. }
  2229. .icon-document:before {
  2230. content: "\e005";
  2231. }
  2232. .icon-documents:before {
  2233. content: "\e006";
  2234. }
  2235. .icon-search2:before {
  2236. content: "\e007";
  2237. }
  2238. .icon-clipboard2:before {
  2239. content: "\e008";
  2240. }
  2241. .icon-newspaper:before {
  2242. content: "\e009";
  2243. }
  2244. .icon-notebook:before {
  2245. content: "\e00a";
  2246. }
  2247. .icon-book-open:before {
  2248. content: "\e00b";
  2249. }
  2250. .icon-browser:before {
  2251. content: "\e00c";
  2252. }
  2253. .icon-calendar2:before {
  2254. content: "\e00d";
  2255. }
  2256. .icon-presentation:before {
  2257. content: "\e00e";
  2258. }
  2259. .icon-picture:before {
  2260. content: "\e00f";
  2261. }
  2262. .icon-pictures:before {
  2263. content: "\e010";
  2264. }
  2265. .icon-video:before {
  2266. content: "\e011";
  2267. }
  2268. .icon-camera2:before {
  2269. content: "\e012";
  2270. }
  2271. .icon-printer:before {
  2272. content: "\e013";
  2273. }
  2274. .icon-toolbox:before {
  2275. content: "\e014";
  2276. }
  2277. .icon-briefcase2:before {
  2278. content: "\e015";
  2279. }
  2280. .icon-wallet:before {
  2281. content: "\e016";
  2282. }
  2283. .icon-gift2:before {
  2284. content: "\e017";
  2285. }
  2286. .icon-bargraph:before {
  2287. content: "\e018";
  2288. }
  2289. .icon-grid:before {
  2290. content: "\e019";
  2291. }
  2292. .icon-expand2:before {
  2293. content: "\e01a";
  2294. }
  2295. .icon-focus:before {
  2296. content: "\e01b";
  2297. }
  2298. .icon-edit2:before {
  2299. content: "\e01c";
  2300. }
  2301. .icon-adjustments:before {
  2302. content: "\e01d";
  2303. }
  2304. .icon-ribbon:before {
  2305. content: "\e01e";
  2306. }
  2307. .icon-hourglass2:before {
  2308. content: "\e01f";
  2309. }
  2310. .icon-lock2:before {
  2311. content: "\e020";
  2312. }
  2313. .icon-megaphone:before {
  2314. content: "\e021";
  2315. }
  2316. .icon-shield2:before {
  2317. content: "\e022";
  2318. }
  2319. .icon-trophy2:before {
  2320. content: "\e023";
  2321. }
  2322. .icon-flag2:before {
  2323. content: "\e024";
  2324. }
  2325. .icon-map2:before {
  2326. content: "\e025";
  2327. }
  2328. .icon-puzzle:before {
  2329. content: "\e026";
  2330. }
  2331. .icon-basket:before {
  2332. content: "\e027";
  2333. }
  2334. .icon-envelope2:before {
  2335. content: "\e028";
  2336. }
  2337. .icon-streetsign:before {
  2338. content: "\e029";
  2339. }
  2340. .icon-telescope:before {
  2341. content: "\e02a";
  2342. }
  2343. .icon-gears2:before {
  2344. content: "\e02b";
  2345. }
  2346. .icon-key2:before {
  2347. content: "\e02c";
  2348. }
  2349. .icon-paperclip2:before {
  2350. content: "\e02d";
  2351. }
  2352. .icon-attachment:before {
  2353. content: "\e02e";
  2354. }
  2355. .icon-pricetags:before {
  2356. content: "\e02f";
  2357. }
  2358. .icon-lightbulb:before {
  2359. content: "\e030";
  2360. }
  2361. .icon-layers:before {
  2362. content: "\e031";
  2363. }
  2364. .icon-pencil2:before {
  2365. content: "\e032";
  2366. }
  2367. .icon-tools:before {
  2368. content: "\e033";
  2369. }
  2370. .icon-tools-2:before {
  2371. content: "\e034";
  2372. }
  2373. .icon-scissors2:before {
  2374. content: "\e035";
  2375. }
  2376. .icon-paintbrush:before {
  2377. content: "\e036";
  2378. }
  2379. .icon-magnifying-glass:before {
  2380. content: "\e037";
  2381. }
  2382. .icon-circle-compass:before {
  2383. content: "\e038";
  2384. }
  2385. .icon-linegraph:before {
  2386. content: "\e039";
  2387. }
  2388. .icon-mic:before {
  2389. content: "\e03a";
  2390. }
  2391. .icon-strategy:before {
  2392. content: "\e03b";
  2393. }
  2394. .icon-beaker:before {
  2395. content: "\e03c";
  2396. }
  2397. .icon-caution:before {
  2398. content: "\e03d";
  2399. }
  2400. .icon-recycle2:before {
  2401. content: "\e03e";
  2402. }
  2403. .icon-anchor2:before {
  2404. content: "\e03f";
  2405. }
  2406. .icon-profile-male:before {
  2407. content: "\e040";
  2408. }
  2409. .icon-profile-female:before {
  2410. content: "\e041";
  2411. }
  2412. .icon-bike:before {
  2413. content: "\e042";
  2414. }
  2415. .icon-wine:before {
  2416. content: "\e043";
  2417. }
  2418. .icon-hotairballoon:before {
  2419. content: "\e044";
  2420. }
  2421. .icon-globe2:before {
  2422. content: "\e045";
  2423. }
  2424. .icon-genius:before {
  2425. content: "\e046";
  2426. }
  2427. .icon-map-pin2:before {
  2428. content: "\e047";
  2429. }
  2430. .icon-dial:before {
  2431. content: "\e048";
  2432. }
  2433. .icon-chat:before {
  2434. content: "\e049";
  2435. }
  2436. .icon-heart2:before {
  2437. content: "\e04a";
  2438. }
  2439. .icon-cloud2:before {
  2440. content: "\e04b";
  2441. }
  2442. .icon-upload2:before {
  2443. content: "\e04c";
  2444. }
  2445. .icon-download2:before {
  2446. content: "\e04d";
  2447. }
  2448. .icon-target:before {
  2449. content: "\e04e";
  2450. }
  2451. .icon-hazardous:before {
  2452. content: "\e04f";
  2453. }
  2454. .icon-piechart:before {
  2455. content: "\e050";
  2456. }
  2457. .icon-speedometer:before {
  2458. content: "\e051";
  2459. }
  2460. .icon-global:before {
  2461. content: "\e052";
  2462. }
  2463. .icon-compass2:before {
  2464. content: "\e053";
  2465. }
  2466. .icon-lifesaver:before {
  2467. content: "\e054";
  2468. }
  2469. .icon-clock:before {
  2470. content: "\e055";
  2471. }
  2472. .icon-aperture:before {
  2473. content: "\e056";
  2474. }
  2475. .icon-quote:before {
  2476. content: "\e057";
  2477. }
  2478. .icon-scope:before {
  2479. content: "\e058";
  2480. }
  2481. .icon-alarmclock:before {
  2482. content: "\e059";
  2483. }
  2484. .icon-refresh2:before {
  2485. content: "\e05a";
  2486. }
  2487. .icon-happy:before {
  2488. content: "\e05b";
  2489. }
  2490. .icon-sad:before {
  2491. content: "\e05c";
  2492. }
  2493. .icon-facebook2:before {
  2494. content: "\e05d";
  2495. }
  2496. .icon-twitter2:before {
  2497. content: "\e05e";
  2498. }
  2499. .icon-googleplus:before {
  2500. content: "\e05f";
  2501. }
  2502. .icon-rss2:before {
  2503. content: "\e060";
  2504. }
  2505. .icon-tumblr2:before {
  2506. content: "\e061";
  2507. }
  2508. .icon-linkedin2:before {
  2509. content: "\e062";
  2510. }
  2511. .icon-dribbble2:before {
  2512. content: "\e063";
  2513. }