im_reader 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +11 -0
  3. data/Gemfile +9 -0
  4. data/Gemfile.lock +44 -0
  5. data/LICENSE.txt +21 -0
  6. data/README.md +110 -0
  7. data/Rakefile +8 -0
  8. data/app/assets/fonts/im_reader/icons.ttf +0 -0
  9. data/app/assets/fonts/im_reader/icons.woff +0 -0
  10. data/app/assets/fonts/im_reader/icons.woff2 +0 -0
  11. data/app/assets/images/im_reader/logo_colore.svg +26 -0
  12. data/app/assets/javascripts/im_reader/epub.min.js +1 -0
  13. data/app/assets/javascripts/im_reader/jszip.min.js +13 -0
  14. data/app/assets/javascripts/im_reader/reader.js +144 -0
  15. data/app/assets/javascripts/im_reader/semantic/progress.js +793 -0
  16. data/app/assets/javascripts/im_reader/semantic/sidebar.js +1022 -0
  17. data/app/assets/javascripts/im_reader/semantic-ui.js +2 -0
  18. data/app/assets/stylesheets/im_reader/reader.scss +127 -0
  19. data/app/assets/stylesheets/im_reader/semantic/button.scss +3172 -0
  20. data/app/assets/stylesheets/im_reader/semantic/colors.scss +15 -0
  21. data/app/assets/stylesheets/im_reader/semantic/container.scss +154 -0
  22. data/app/assets/stylesheets/im_reader/semantic/grid.scss +2029 -0
  23. data/app/assets/stylesheets/im_reader/semantic/header.scss +719 -0
  24. data/app/assets/stylesheets/im_reader/semantic/icon.scss +2587 -0
  25. data/app/assets/stylesheets/im_reader/semantic/item.scss +482 -0
  26. data/app/assets/stylesheets/im_reader/semantic/menu.scss +2054 -0
  27. data/app/assets/stylesheets/im_reader/semantic/progress.scss +517 -0
  28. data/app/controllers/im_reader/application_controller.rb +8 -0
  29. data/app/controllers/im_reader/epub_reader_controller.rb +62 -0
  30. data/app/views/im_reader/epub_reader/show.html.erb +38 -0
  31. data/app/views/layouts/im_reader/epub_reader.html.erb +23 -0
  32. data/config/locales/de.yml +10 -0
  33. data/config/locales/en.yml +10 -0
  34. data/config/locales/es.yml +10 -0
  35. data/config/locales/fr.yml +10 -0
  36. data/config/locales/pt.yml +10 -0
  37. data/config/routes.rb +4 -0
  38. data/im_reader.gemspec +33 -0
  39. data/lib/im_reader/engine.rb +32 -0
  40. data/lib/im_reader/version.rb +5 -0
  41. data/lib/im_reader.rb +8 -0
  42. data/sig/im_reader.rbs +4 -0
  43. data/spec/im_reader_spec.rb +11 -0
  44. data/spec/spec_helper.rb +15 -0
  45. metadata +115 -0
@@ -0,0 +1,2587 @@
1
+ /*!
2
+ * # Semantic UI 2.1.4 - Icon
3
+ * http://github.com/semantic-org/semantic-ui/
4
+ *
5
+ *
6
+ * Copyright 2015 Contributors
7
+ * Released under the MIT license
8
+ * http://opensource.org/licenses/MIT
9
+ *
10
+ */
11
+
12
+
13
+ /*******************************
14
+ Icon
15
+ *******************************/
16
+
17
+ @font-face {
18
+ font-family: 'Icons';
19
+ src: font-url("im_reader/icons.eot");
20
+ src: font-url("im_reader/icons.eot?#iefix") format('embedded-opentype'), font-url("im_reader/icons.woff2") format('woff2'), font-url("im_reader/icons.woff") format('woff'), font-url("im_reader/icons.ttf") format('truetype'), font-url("im_reader/icons.svg#icons") format('svg');
21
+ font-style: normal;
22
+ font-weight: normal;
23
+ font-variant: normal;
24
+ text-decoration: inherit;
25
+ text-transform: none;
26
+ }
27
+ i.icon {
28
+ display: inline-block;
29
+ opacity: 1;
30
+ margin: 0em 0.25rem 0em 0em;
31
+ width: 1.18em;
32
+ height: 1em;
33
+ font-family: 'Icons';
34
+ font-style: normal;
35
+ font-weight: normal;
36
+ text-decoration: inherit;
37
+ text-align: center;
38
+ speak: none;
39
+ font-smoothing: antialiased;
40
+ -moz-osx-font-smoothing: grayscale;
41
+ -webkit-font-smoothing: antialiased;
42
+ -webkit-backface-visibility: hidden;
43
+ backface-visibility: hidden;
44
+ }
45
+ i.icon:before {
46
+ background: none !important;
47
+ }
48
+
49
+
50
+ /*******************************
51
+ Types
52
+ *******************************/
53
+
54
+
55
+ /*--------------
56
+ Loading
57
+ ---------------*/
58
+
59
+ i.icon.loading {
60
+ height: 1em;
61
+ line-height: 1;
62
+ -webkit-animation: icon-loading 2s linear infinite;
63
+ animation: icon-loading 2s linear infinite;
64
+ }
65
+ @-webkit-keyframes icon-loading {
66
+ from {
67
+ -webkit-transform: rotate(0deg);
68
+ transform: rotate(0deg);
69
+ }
70
+ to {
71
+ -webkit-transform: rotate(360deg);
72
+ transform: rotate(360deg);
73
+ }
74
+ }
75
+ @keyframes icon-loading {
76
+ from {
77
+ -webkit-transform: rotate(0deg);
78
+ transform: rotate(0deg);
79
+ }
80
+ to {
81
+ -webkit-transform: rotate(360deg);
82
+ transform: rotate(360deg);
83
+ }
84
+ }
85
+
86
+
87
+ /*******************************
88
+ States
89
+ *******************************/
90
+
91
+ i.icon.hover {
92
+ opacity: 1 !important;
93
+ }
94
+ i.icon.active {
95
+ opacity: 1 !important;
96
+ }
97
+ i.emphasized.icon {
98
+ opacity: 1 !important;
99
+ }
100
+ i.disabled.icon {
101
+ opacity: 0.45 !important;
102
+ }
103
+
104
+
105
+ /*******************************
106
+ Variations
107
+ *******************************/
108
+
109
+
110
+ /*-------------------
111
+ Fitted
112
+ --------------------*/
113
+
114
+ i.fitted.icon {
115
+ width: auto;
116
+ margin: 0em;
117
+ }
118
+
119
+ /*-------------------
120
+ Link
121
+ --------------------*/
122
+
123
+ i.link.icon {
124
+ cursor: pointer;
125
+ opacity: 0.8;
126
+ -webkit-transition: opacity 0.1s ease;
127
+ transition: opacity 0.1s ease;
128
+ }
129
+ i.link.icon:hover {
130
+ opacity: 1 !important;
131
+ }
132
+
133
+ /*-------------------
134
+ Circular
135
+ --------------------*/
136
+
137
+ i.circular.icon {
138
+ border-radius: 500em !important;
139
+ line-height: 1 !important;
140
+ padding: 0.5em 0.5em !important;
141
+ box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
142
+ width: 2em !important;
143
+ height: 2em !important;
144
+ }
145
+ i.circular.inverted.icon {
146
+ border: none;
147
+ box-shadow: none;
148
+ }
149
+
150
+ /*-------------------
151
+ Flipped
152
+ --------------------*/
153
+
154
+ i.flipped.icon,
155
+ i.horizontally.flipped.icon {
156
+ -webkit-transform: scale(-1, 1);
157
+ -ms-transform: scale(-1, 1);
158
+ transform: scale(-1, 1);
159
+ }
160
+ i.vertically.flipped.icon {
161
+ -webkit-transform: scale(1, -1);
162
+ -ms-transform: scale(1, -1);
163
+ transform: scale(1, -1);
164
+ }
165
+
166
+ /*-------------------
167
+ Rotated
168
+ --------------------*/
169
+
170
+ i.rotated.icon,
171
+ i.right.rotated.icon,
172
+ i.clockwise.rotated.icon {
173
+ -webkit-transform: rotate(90deg);
174
+ -ms-transform: rotate(90deg);
175
+ transform: rotate(90deg);
176
+ }
177
+ i.left.rotated.icon,
178
+ i.counterclockwise.rotated.icon {
179
+ -webkit-transform: rotate(-90deg);
180
+ -ms-transform: rotate(-90deg);
181
+ transform: rotate(-90deg);
182
+ }
183
+
184
+ /*-------------------
185
+ Bordered
186
+ --------------------*/
187
+
188
+ i.bordered.icon {
189
+ line-height: 1;
190
+ vertical-align: baseline;
191
+ width: 2em;
192
+ height: 2em;
193
+ padding: 0.5em 0.41em !important;
194
+ box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
195
+ }
196
+ i.bordered.inverted.icon {
197
+ border: none;
198
+ box-shadow: none;
199
+ }
200
+
201
+ /*-------------------
202
+ Inverted
203
+ --------------------*/
204
+
205
+
206
+ /* Inverted Shapes */
207
+ i.inverted.bordered.icon,
208
+ i.inverted.circular.icon {
209
+ background-color: #1b1c1d !important;
210
+ color: #ffffff !important;
211
+ }
212
+ i.inverted.icon {
213
+ color: #ffffff;
214
+ }
215
+
216
+ /*-------------------
217
+ Colors
218
+ --------------------*/
219
+
220
+
221
+ /* Red */
222
+ i.red.icon {
223
+ color: #db2828 !important;
224
+ }
225
+ i.inverted.red.icon {
226
+ color: #ff695e !important;
227
+ }
228
+ i.inverted.bordered.red.icon,
229
+ i.inverted.circular.red.icon {
230
+ background-color: #db2828 !important;
231
+ color: #ffffff !important;
232
+ }
233
+
234
+ /* Orange */
235
+ i.orange.icon {
236
+ color: #f2711c !important;
237
+ }
238
+ i.inverted.orange.icon {
239
+ color: #ff851b !important;
240
+ }
241
+ i.inverted.bordered.orange.icon,
242
+ i.inverted.circular.orange.icon {
243
+ background-color: #f2711c !important;
244
+ color: #ffffff !important;
245
+ }
246
+
247
+ /* Yellow */
248
+ i.yellow.icon {
249
+ color: #fbbd08 !important;
250
+ }
251
+ i.inverted.yellow.icon {
252
+ color: #ffe21f !important;
253
+ }
254
+ i.inverted.bordered.yellow.icon,
255
+ i.inverted.circular.yellow.icon {
256
+ background-color: #fbbd08 !important;
257
+ color: #ffffff !important;
258
+ }
259
+
260
+ /* Olive */
261
+ i.olive.icon {
262
+ color: #b5cc18 !important;
263
+ }
264
+ i.inverted.olive.icon {
265
+ color: #d9e778 !important;
266
+ }
267
+ i.inverted.bordered.olive.icon,
268
+ i.inverted.circular.olive.icon {
269
+ background-color: #b5cc18 !important;
270
+ color: #ffffff !important;
271
+ }
272
+
273
+ /* Green */
274
+ i.green.icon {
275
+ color: #21ba45 !important;
276
+ }
277
+ i.inverted.green.icon {
278
+ color: #2ecc40 !important;
279
+ }
280
+ i.inverted.bordered.green.icon,
281
+ i.inverted.circular.green.icon {
282
+ background-color: #21ba45 !important;
283
+ color: #ffffff !important;
284
+ }
285
+
286
+ /* Teal */
287
+ i.teal.icon {
288
+ color: #00b5ad !important;
289
+ }
290
+ i.inverted.teal.icon {
291
+ color: #6dffff !important;
292
+ }
293
+ i.inverted.bordered.teal.icon,
294
+ i.inverted.circular.teal.icon {
295
+ background-color: #00b5ad !important;
296
+ color: #ffffff !important;
297
+ }
298
+
299
+ /* Blue */
300
+ i.blue.icon {
301
+ color: #2185d0 !important;
302
+ }
303
+ i.inverted.blue.icon {
304
+ color: #54c8ff !important;
305
+ }
306
+ i.inverted.bordered.blue.icon,
307
+ i.inverted.circular.blue.icon {
308
+ background-color: #2185d0 !important;
309
+ color: #ffffff !important;
310
+ }
311
+
312
+ /* Violet */
313
+ i.violet.icon {
314
+ color: #6435c9 !important;
315
+ }
316
+ i.inverted.violet.icon {
317
+ color: #a291fb !important;
318
+ }
319
+ i.inverted.bordered.violet.icon,
320
+ i.inverted.circular.violet.icon {
321
+ background-color: #6435c9 !important;
322
+ color: #ffffff !important;
323
+ }
324
+
325
+ /* Purple */
326
+ i.purple.icon {
327
+ color: #a333c8 !important;
328
+ }
329
+ i.inverted.purple.icon {
330
+ color: #dc73ff !important;
331
+ }
332
+ i.inverted.bordered.purple.icon,
333
+ i.inverted.circular.purple.icon {
334
+ background-color: #a333c8 !important;
335
+ color: #ffffff !important;
336
+ }
337
+
338
+ /* Pink */
339
+ i.pink.icon {
340
+ color: #e03997 !important;
341
+ }
342
+ i.inverted.pink.icon {
343
+ color: #ff8edf !important;
344
+ }
345
+ i.inverted.bordered.pink.icon,
346
+ i.inverted.circular.pink.icon {
347
+ background-color: #e03997 !important;
348
+ color: #ffffff !important;
349
+ }
350
+
351
+ /* Brown */
352
+ i.brown.icon {
353
+ color: #a5673f !important;
354
+ }
355
+ i.inverted.brown.icon {
356
+ color: #d67c1c !important;
357
+ }
358
+ i.inverted.bordered.brown.icon,
359
+ i.inverted.circular.brown.icon {
360
+ background-color: #a5673f !important;
361
+ color: #ffffff !important;
362
+ }
363
+
364
+ /* Grey */
365
+ i.grey.icon {
366
+ color: #767676 !important;
367
+ }
368
+ i.inverted.grey.icon {
369
+ color: #dcddde !important;
370
+ }
371
+ i.inverted.bordered.grey.icon,
372
+ i.inverted.circular.grey.icon {
373
+ background-color: #767676 !important;
374
+ color: #ffffff !important;
375
+ }
376
+
377
+ /* Black */
378
+ i.black.icon {
379
+ color: #1b1c1d !important;
380
+ }
381
+ i.inverted.black.icon {
382
+ color: #545454 !important;
383
+ }
384
+ i.inverted.bordeblack.black.icon,
385
+ i.inverted.circular.black.icon {
386
+ background-color: #1b1c1d !important;
387
+ color: #ffffff !important;
388
+ }
389
+
390
+ /*-------------------
391
+ Sizes
392
+ --------------------*/
393
+
394
+ i.mini.icon,
395
+ i.mini.icons {
396
+ line-height: 1;
397
+ font-size: 0.71428571rem;
398
+ }
399
+ i.tiny.icon,
400
+ i.tiny.icons {
401
+ line-height: 1;
402
+ font-size: 0.85714286rem;
403
+ }
404
+ i.small.icon,
405
+ i.small.icons {
406
+ line-height: 1;
407
+ font-size: 0.92857143em;
408
+ }
409
+ i.icon,
410
+ i.icons {
411
+ font-size: 1em;
412
+ }
413
+ i.large.icon,
414
+ i.large.icons {
415
+ line-height: 1;
416
+ vertical-align: middle;
417
+ font-size: 1.5em;
418
+ }
419
+ i.big.icon,
420
+ i.big.icons {
421
+ line-height: 1;
422
+ vertical-align: middle;
423
+ font-size: 2em;
424
+ }
425
+ i.huge.icon,
426
+ i.huge.icons {
427
+ line-height: 1;
428
+ vertical-align: middle;
429
+ font-size: 4em;
430
+ }
431
+ i.massive.icon,
432
+ i.massive.icons {
433
+ line-height: 1;
434
+ vertical-align: middle;
435
+ font-size: 8em;
436
+ }
437
+
438
+
439
+ /*******************************
440
+ Groups
441
+ *******************************/
442
+
443
+ i.icons {
444
+ display: inline-block;
445
+ position: relative;
446
+ line-height: 1;
447
+ }
448
+ i.icons .icon {
449
+ position: absolute;
450
+ top: 50%;
451
+ left: 50%;
452
+ -webkit-transform: translateX(-50%) translateY(-50%);
453
+ -ms-transform: translateX(-50%) translateY(-50%);
454
+ transform: translateX(-50%) translateY(-50%);
455
+ margin: 0em;
456
+ margin: 0;
457
+ }
458
+ i.icons .icon:first-child {
459
+ position: static;
460
+ width: auto;
461
+ height: auto;
462
+ vertical-align: top;
463
+ -webkit-transform: none;
464
+ -ms-transform: none;
465
+ transform: none;
466
+ margin-right: 0.25rem;
467
+ }
468
+
469
+ /* Corner Icon */
470
+ i.icons .corner.icon {
471
+ top: auto;
472
+ left: auto;
473
+ right: 0;
474
+ bottom: 0;
475
+ -webkit-transform: none;
476
+ -ms-transform: none;
477
+ transform: none;
478
+ font-size: 0.45em;
479
+ text-shadow: -1px -1px 0 #ffffff, 1px -1px 0 #ffffff, -1px 1px 0 #ffffff, 1px 1px 0 #ffffff;
480
+ }
481
+ i.icons .inverted.corner.icon {
482
+ text-shadow: -1px -1px 0 #1b1c1d, 1px -1px 0 #1b1c1d, -1px 1px 0 #1b1c1d, 1px 1px 0 #1b1c1d;
483
+ }
484
+ /*
485
+ * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
486
+ * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
487
+ */
488
+
489
+
490
+ /*******************************
491
+
492
+ Semantic-UI integration of font-awesome :
493
+
494
+ ///class names are separated
495
+ i.icon.circle => i.icon.circle
496
+ i.icon.circle-o => i.icon.circle.outline
497
+
498
+ //abbreviation are replaced by full letters:
499
+ i.icon.ellipsis-h => i.icon.ellipsis.horizontal
500
+ i.icon.ellipsis-v => i.icon.ellipsis.vertical
501
+ .alpha => .i.icon.alphabet
502
+ .asc => .i.icon.ascending
503
+ .desc => .i.icon.descending
504
+ .alt =>.alternate
505
+
506
+ ASCII order is conserved for easier maintenance.
507
+
508
+ Icons that only have one style 'outline', 'square' etc do not require this class
509
+ for instance `lemon icon` not `lemon outline icon` since there is only one lemon
510
+
511
+ *******************************/
512
+
513
+
514
+
515
+ /*******************************
516
+ Icons
517
+ *******************************/
518
+
519
+
520
+ /* Web Content */
521
+ i.icon.search:before {
522
+ content: "\f002";
523
+ }
524
+ i.icon.mail.outline:before {
525
+ content: "\f003";
526
+ }
527
+ i.icon.external:before {
528
+ content: "\f08e";
529
+ }
530
+ i.icon.signal:before {
531
+ content: "\f012";
532
+ }
533
+ i.icon.setting:before {
534
+ content: "\f013";
535
+ }
536
+ i.icon.home:before {
537
+ content: "\f015";
538
+ }
539
+ i.icon.inbox:before {
540
+ content: "\f01c";
541
+ }
542
+ i.icon.browser:before {
543
+ content: "\f022";
544
+ }
545
+ i.icon.tag:before {
546
+ content: "\f02b";
547
+ }
548
+ i.icon.tags:before {
549
+ content: "\f02c";
550
+ }
551
+ i.icon.calendar:before {
552
+ content: "\f073";
553
+ }
554
+ i.icon.comment:before {
555
+ content: "\f075";
556
+ }
557
+ i.icon.comments:before {
558
+ content: "\f086";
559
+ }
560
+ i.icon.shop:before {
561
+ content: "\f07a";
562
+ }
563
+ i.icon.privacy:before {
564
+ content: "\f084";
565
+ }
566
+ i.icon.settings:before {
567
+ content: "\f085";
568
+ }
569
+ i.icon.trophy:before {
570
+ content: "\f091";
571
+ }
572
+ i.icon.payment:before {
573
+ content: "\f09d";
574
+ }
575
+ i.icon.feed:before {
576
+ content: "\f09e";
577
+ }
578
+ i.icon.alarm.outline:before {
579
+ content: "\f0a2";
580
+ }
581
+ i.icon.tasks:before {
582
+ content: "\f0ae";
583
+ }
584
+ i.icon.cloud:before {
585
+ content: "\f0c2";
586
+ }
587
+ i.icon.lab:before {
588
+ content: "\f0c3";
589
+ }
590
+ i.icon.mail:before {
591
+ content: "\f0e0";
592
+ }
593
+ i.icon.idea:before {
594
+ content: "\f0eb";
595
+ }
596
+ i.icon.dashboard:before {
597
+ content: "\f0e4";
598
+ }
599
+ i.icon.sitemap:before {
600
+ content: "\f0e8";
601
+ }
602
+ i.icon.alarm:before {
603
+ content: "\f0f3";
604
+ }
605
+ i.icon.terminal:before {
606
+ content: "\f120";
607
+ }
608
+ i.icon.code:before {
609
+ content: "\f121";
610
+ }
611
+ i.icon.protect:before {
612
+ content: "\f132";
613
+ }
614
+ i.icon.calendar.outline:before {
615
+ content: "\f133";
616
+ }
617
+ i.icon.ticket:before {
618
+ content: "\f145";
619
+ }
620
+ i.icon.external.square:before {
621
+ content: "\f14c";
622
+ }
623
+ i.icon.map:before {
624
+ content: "\f14e";
625
+ }
626
+ i.icon.bug:before {
627
+ content: "\f188";
628
+ }
629
+ i.icon.mail.square:before {
630
+ content: "\f199";
631
+ }
632
+ i.icon.history:before {
633
+ content: "\f1da";
634
+ }
635
+ i.icon.options:before {
636
+ content: "\f1de";
637
+ }
638
+ i.icon.comment.outline:before {
639
+ content: "\f0e5";
640
+ }
641
+ i.icon.comments.outline:before {
642
+ content: "\f0e6";
643
+ }
644
+ i.icon.text.telephone:before {
645
+ content: "\f1e4";
646
+ }
647
+ i.icon.find:before {
648
+ content: "\f1e5";
649
+ }
650
+ i.icon.wifi:before {
651
+ content: "\f1eb";
652
+ }
653
+ i.icon.alarm.slash:before {
654
+ content: "\f1f6";
655
+ }
656
+ i.icon.alarm.slash.outline:before {
657
+ content: "\f1f7";
658
+ }
659
+ i.icon.copyright:before {
660
+ content: "\f1f9";
661
+ }
662
+ i.icon.at:before {
663
+ content: "\f1fa";
664
+ }
665
+ i.icon.eyedropper:before {
666
+ content: "\f1fb";
667
+ }
668
+ i.icon.paint.brush:before {
669
+ content: "\f1fc";
670
+ }
671
+ i.icon.heartbeat:before {
672
+ content: "\f21e";
673
+ }
674
+
675
+ /* User Actions */
676
+ i.icon.download:before {
677
+ content: "\f019";
678
+ }
679
+ i.icon.repeat:before {
680
+ content: "\f01e";
681
+ }
682
+ i.icon.refresh:before {
683
+ content: "\f021";
684
+ }
685
+ i.icon.lock:before {
686
+ content: "\f023";
687
+ }
688
+ i.icon.bookmark:before {
689
+ content: "\f02e";
690
+ }
691
+ i.icon.print:before {
692
+ content: "\f02f";
693
+ }
694
+ i.icon.write:before {
695
+ content: "\f040";
696
+ }
697
+ i.icon.theme:before {
698
+ content: "\f043";
699
+ }
700
+ i.icon.adjust:before {
701
+ content: "\f042";
702
+ }
703
+ i.icon.edit:before {
704
+ content: "\f044";
705
+ }
706
+ i.icon.external.share:before {
707
+ content: "\f045";
708
+ }
709
+ i.icon.ban:before {
710
+ content: "\f05e";
711
+ }
712
+ i.icon.mail.forward:before {
713
+ content: "\f064";
714
+ }
715
+ i.icon.share:before {
716
+ content: "\f064";
717
+ }
718
+ i.icon.expand:before {
719
+ content: "\f065";
720
+ }
721
+ i.icon.compress:before {
722
+ content: "\f066";
723
+ }
724
+ i.icon.unhide:before {
725
+ content: "\f06e";
726
+ }
727
+ i.icon.hide:before {
728
+ content: "\f070";
729
+ }
730
+ i.icon.random:before {
731
+ content: "\f074";
732
+ }
733
+ i.icon.retweet:before {
734
+ content: "\f079";
735
+ }
736
+ i.icon.sign.out:before {
737
+ content: "\f08b";
738
+ }
739
+ i.icon.pin:before {
740
+ content: "\f08d";
741
+ }
742
+ i.icon.sign.in:before {
743
+ content: "\f090";
744
+ }
745
+ i.icon.upload:before {
746
+ content: "\f093";
747
+ }
748
+ i.icon.call:before {
749
+ content: "\f095";
750
+ }
751
+ i.icon.call.square:before {
752
+ content: "\f098";
753
+ }
754
+ i.icon.remove.bookmark:before {
755
+ content: "\f097";
756
+ }
757
+ i.icon.unlock:before {
758
+ content: "\f09c";
759
+ }
760
+ i.icon.configure:before {
761
+ content: "\f0ad";
762
+ }
763
+ i.icon.filter:before {
764
+ content: "\f0b0";
765
+ }
766
+ i.icon.wizard:before {
767
+ content: "\f0d0";
768
+ }
769
+ i.icon.undo:before {
770
+ content: "\f0e2";
771
+ }
772
+ i.icon.exchange:before {
773
+ content: "\f0ec";
774
+ }
775
+ i.icon.cloud.download:before {
776
+ content: "\f0ed";
777
+ }
778
+ i.icon.cloud.upload:before {
779
+ content: "\f0ee";
780
+ }
781
+ i.icon.reply:before {
782
+ content: "\f112";
783
+ }
784
+ i.icon.reply.all:before {
785
+ content: "\f122";
786
+ }
787
+ i.icon.erase:before {
788
+ content: "\f12d";
789
+ }
790
+ i.icon.unlock.alternate:before {
791
+ content: "\f13e";
792
+ }
793
+ i.icon.archive:before {
794
+ content: "\f187";
795
+ }
796
+ i.icon.translate:before {
797
+ content: "\f1ab";
798
+ }
799
+ i.icon.recycle:before {
800
+ content: "\f1b8";
801
+ }
802
+ i.icon.send:before {
803
+ content: "\f1d8";
804
+ }
805
+ i.icon.send.outline:before {
806
+ content: "\f1d9";
807
+ }
808
+ i.icon.share.alternate:before {
809
+ content: "\f1e0";
810
+ }
811
+ i.icon.share.alternate.square:before {
812
+ content: "\f1e1";
813
+ }
814
+ i.icon.wait:before {
815
+ content: "\f017";
816
+ }
817
+ i.icon.write.square:before {
818
+ content: "\f14b";
819
+ }
820
+ i.icon.share.square:before {
821
+ content: "\f14d";
822
+ }
823
+ i.icon.add.to.cart:before {
824
+ content: "\f217";
825
+ }
826
+ i.icon.in.cart:before {
827
+ content: "\f218";
828
+ }
829
+ i.icon.add.user:before {
830
+ content: "\f234";
831
+ }
832
+ i.icon.remove.user:before {
833
+ content: "\f235";
834
+ }
835
+
836
+ /* Messages */
837
+ i.icon.help.circle:before {
838
+ content: "\f059";
839
+ }
840
+ i.icon.info.circle:before {
841
+ content: "\f05a";
842
+ }
843
+ i.icon.warning:before {
844
+ content: "\f12a";
845
+ }
846
+ i.icon.warning.circle:before {
847
+ content: "\f06a";
848
+ }
849
+ i.icon.warning.sign:before {
850
+ content: "\f071";
851
+ }
852
+ i.icon.help:before {
853
+ content: "\f128";
854
+ }
855
+ i.icon.info:before {
856
+ content: "\f129";
857
+ }
858
+ i.icon.announcement:before {
859
+ content: "\f0a1";
860
+ }
861
+ i.icon.birthday:before {
862
+ content: "\f1fd";
863
+ }
864
+
865
+ /* Users */
866
+ i.icon.users:before {
867
+ content: "\f0c0";
868
+ }
869
+ i.icon.doctor:before {
870
+ content: "\f0f0";
871
+ }
872
+ i.icon.child:before {
873
+ content: "\f1ae";
874
+ }
875
+ i.icon.user:before {
876
+ content: "\f007";
877
+ }
878
+ i.icon.handicap:before {
879
+ content: "\f193";
880
+ }
881
+ i.icon.student:before {
882
+ content: "\f19d";
883
+ }
884
+ i.icon.spy:before {
885
+ content: "\f21b";
886
+ }
887
+
888
+ /* Gender & Sexuality */
889
+ i.icon.female:before {
890
+ content: "\f182";
891
+ }
892
+ i.icon.male:before {
893
+ content: "\f183";
894
+ }
895
+ i.icon.woman:before {
896
+ content: "\f221";
897
+ }
898
+ i.icon.man:before {
899
+ content: "\f222";
900
+ }
901
+ i.icon.non.binary.transgender:before {
902
+ content: "\f223";
903
+ }
904
+ i.icon.intergender:before {
905
+ content: "\f224";
906
+ }
907
+ i.icon.transgender:before {
908
+ content: "\f225";
909
+ }
910
+ i.icon.lesbian:before {
911
+ content: "\f226";
912
+ }
913
+ i.icon.gay:before {
914
+ content: "\f227";
915
+ }
916
+ i.icon.heterosexual:before {
917
+ content: "\f228";
918
+ }
919
+ i.icon.other.gender:before {
920
+ content: "\f229";
921
+ }
922
+ i.icon.other.gender.vertical:before {
923
+ content: "\f22a";
924
+ }
925
+ i.icon.other.gender.horizontal:before {
926
+ content: "\f22b";
927
+ }
928
+ i.icon.neuter:before {
929
+ content: "\f22c";
930
+ }
931
+
932
+ /* View Adjustment */
933
+ i.icon.grid.layout:before {
934
+ content: "\f00a";
935
+ }
936
+ i.icon.list.layout:before {
937
+ content: "\f00b";
938
+ }
939
+ i.icon.block.layout:before {
940
+ content: "\f009";
941
+ }
942
+ i.icon.zoom:before {
943
+ content: "\f00e";
944
+ }
945
+ i.icon.zoom.out:before {
946
+ content: "\f010";
947
+ }
948
+ i.icon.resize.vertical:before {
949
+ content: "\f07d";
950
+ }
951
+ i.icon.resize.horizontal:before {
952
+ content: "\f07e";
953
+ }
954
+ i.icon.maximize:before {
955
+ content: "\f0b2";
956
+ }
957
+ i.icon.crop:before {
958
+ content: "\f125";
959
+ }
960
+
961
+ /* Literal Objects */
962
+ i.icon.cocktail:before {
963
+ content: "\f000";
964
+ }
965
+ i.icon.road:before {
966
+ content: "\f018";
967
+ }
968
+ i.icon.flag:before {
969
+ content: "\f024";
970
+ }
971
+ i.icon.book:before {
972
+ content: "\f02d";
973
+ }
974
+ i.icon.gift:before {
975
+ content: "\f06b";
976
+ }
977
+ i.icon.leaf:before {
978
+ content: "\f06c";
979
+ }
980
+ i.icon.fire:before {
981
+ content: "\f06d";
982
+ }
983
+ i.icon.plane:before {
984
+ content: "\f072";
985
+ }
986
+ i.icon.magnet:before {
987
+ content: "\f076";
988
+ }
989
+ i.icon.legal:before {
990
+ content: "\f0e3";
991
+ }
992
+ i.icon.lemon:before {
993
+ content: "\f094";
994
+ }
995
+ i.icon.world:before {
996
+ content: "\f0ac";
997
+ }
998
+ i.icon.travel:before {
999
+ content: "\f0b1";
1000
+ }
1001
+ i.icon.shipping:before {
1002
+ content: "\f0d1";
1003
+ }
1004
+ i.icon.money:before {
1005
+ content: "\f0d6";
1006
+ }
1007
+ i.icon.lightning:before {
1008
+ content: "\f0e7";
1009
+ }
1010
+ i.icon.rain:before {
1011
+ content: "\f0e9";
1012
+ }
1013
+ i.icon.treatment:before {
1014
+ content: "\f0f1";
1015
+ }
1016
+ i.icon.suitcase:before {
1017
+ content: "\f0f2";
1018
+ }
1019
+ i.icon.bar:before {
1020
+ content: "\f0fc";
1021
+ }
1022
+ i.icon.flag.outline:before {
1023
+ content: "\f11d";
1024
+ }
1025
+ i.icon.flag.checkered:before {
1026
+ content: "\f11e";
1027
+ }
1028
+ i.icon.puzzle:before {
1029
+ content: "\f12e";
1030
+ }
1031
+ i.icon.fire.extinguisher:before {
1032
+ content: "\f134";
1033
+ }
1034
+ i.icon.rocket:before {
1035
+ content: "\f135";
1036
+ }
1037
+ i.icon.anchor:before {
1038
+ content: "\f13d";
1039
+ }
1040
+ i.icon.bullseye:before {
1041
+ content: "\f140";
1042
+ }
1043
+ i.icon.sun:before {
1044
+ content: "\f185";
1045
+ }
1046
+ i.icon.moon:before {
1047
+ content: "\f186";
1048
+ }
1049
+ i.icon.fax:before {
1050
+ content: "\f1ac";
1051
+ }
1052
+ i.icon.life.ring:before {
1053
+ content: "\f1cd";
1054
+ }
1055
+ i.icon.bomb:before {
1056
+ content: "\f1e2";
1057
+ }
1058
+ i.icon.soccer:before {
1059
+ content: "\f1e3";
1060
+ }
1061
+ i.icon.calculator:before {
1062
+ content: "\f1ec";
1063
+ }
1064
+ i.icon.diamond:before {
1065
+ content: "\f219";
1066
+ }
1067
+
1068
+ /* Shapes */
1069
+ i.icon.crosshairs:before {
1070
+ content: "\f05b";
1071
+ }
1072
+ i.icon.asterisk:before {
1073
+ content: "\f069";
1074
+ }
1075
+ i.icon.certificate:before {
1076
+ content: "\f0a3";
1077
+ }
1078
+ i.icon.circle:before {
1079
+ content: "\f111";
1080
+ }
1081
+ i.icon.quote.left:before {
1082
+ content: "\f10d";
1083
+ }
1084
+ i.icon.quote.right:before {
1085
+ content: "\f10e";
1086
+ }
1087
+ i.icon.ellipsis.horizontal:before {
1088
+ content: "\f141";
1089
+ }
1090
+ i.icon.ellipsis.vertical:before {
1091
+ content: "\f142";
1092
+ }
1093
+ i.icon.cube:before {
1094
+ content: "\f1b2";
1095
+ }
1096
+ i.icon.cubes:before {
1097
+ content: "\f1b3";
1098
+ }
1099
+ i.icon.circle.notched:before {
1100
+ content: "\f1ce";
1101
+ }
1102
+ i.icon.circle.thin:before {
1103
+ content: "\f1db";
1104
+ }
1105
+ i.icon.square.outline:before {
1106
+ content: "\f096";
1107
+ }
1108
+ i.icon.square:before {
1109
+ content: "\f0c8";
1110
+ }
1111
+
1112
+ /* Item Selection */
1113
+ i.icon.checkmark:before {
1114
+ content: "\f00c";
1115
+ }
1116
+ i.icon.remove:before {
1117
+ content: "\f00d";
1118
+ }
1119
+ i.icon.checkmark.box:before {
1120
+ content: "\f046";
1121
+ }
1122
+ i.icon.move:before {
1123
+ content: "\f047";
1124
+ }
1125
+ i.icon.add.circle:before {
1126
+ content: "\f055";
1127
+ }
1128
+ i.icon.minus.circle:before {
1129
+ content: "\f056";
1130
+ }
1131
+ i.icon.remove.circle:before {
1132
+ content: "\f057";
1133
+ }
1134
+ i.icon.check.circle:before {
1135
+ content: "\f058";
1136
+ }
1137
+ i.icon.remove.circle.outline:before {
1138
+ content: "\f05c";
1139
+ }
1140
+ i.icon.check.circle.outline:before {
1141
+ content: "\f05d";
1142
+ }
1143
+ i.icon.plus:before {
1144
+ content: "\f067";
1145
+ }
1146
+ i.icon.minus:before {
1147
+ content: "\f068";
1148
+ }
1149
+ i.icon.add.square:before {
1150
+ content: "\f0fe";
1151
+ }
1152
+ i.icon.radio:before {
1153
+ content: "\f10c";
1154
+ }
1155
+ i.icon.selected.radio:before {
1156
+ content: "\f192";
1157
+ }
1158
+ i.icon.minus.square:before {
1159
+ content: "\f146";
1160
+ }
1161
+ i.icon.minus.square.outline:before {
1162
+ content: "\f147";
1163
+ }
1164
+ i.icon.check.square:before {
1165
+ content: "\f14a";
1166
+ }
1167
+ i.icon.plus.square.outline:before {
1168
+ content: "\f196";
1169
+ }
1170
+ i.icon.toggle.off:before {
1171
+ content: "\f204";
1172
+ }
1173
+ i.icon.toggle.on:before {
1174
+ content: "\f205";
1175
+ }
1176
+
1177
+ /* Media */
1178
+ i.icon.film:before {
1179
+ content: "\f008";
1180
+ }
1181
+ i.icon.sound:before {
1182
+ content: "\f025";
1183
+ }
1184
+ i.icon.photo:before {
1185
+ content: "\f030";
1186
+ }
1187
+ i.icon.bar.chart:before {
1188
+ content: "\f080";
1189
+ }
1190
+ i.icon.camera.retro:before {
1191
+ content: "\f083";
1192
+ }
1193
+ i.icon.newspaper:before {
1194
+ content: "\f1ea";
1195
+ }
1196
+ i.icon.area.chart:before {
1197
+ content: "\f1fe";
1198
+ }
1199
+ i.icon.pie.chart:before {
1200
+ content: "\f200";
1201
+ }
1202
+ i.icon.line.chart:before {
1203
+ content: "\f201";
1204
+ }
1205
+
1206
+ /* Pointers */
1207
+ i.icon.arrow.circle.outline.down:before {
1208
+ content: "\f01a";
1209
+ }
1210
+ i.icon.arrow.circle.outline.up:before {
1211
+ content: "\f01b";
1212
+ }
1213
+ i.icon.chevron.left:before {
1214
+ content: "\f053";
1215
+ }
1216
+ i.icon.chevron.right:before {
1217
+ content: "\f054";
1218
+ }
1219
+ i.icon.arrow.left:before {
1220
+ content: "\f060";
1221
+ }
1222
+ i.icon.arrow.right:before {
1223
+ content: "\f061";
1224
+ }
1225
+ i.icon.arrow.up:before {
1226
+ content: "\f062";
1227
+ }
1228
+ i.icon.arrow.down:before {
1229
+ content: "\f063";
1230
+ }
1231
+ i.icon.chevron.up:before {
1232
+ content: "\f077";
1233
+ }
1234
+ i.icon.chevron.down:before {
1235
+ content: "\f078";
1236
+ }
1237
+ i.icon.pointing.right:before {
1238
+ content: "\f0a4";
1239
+ }
1240
+ i.icon.pointing.left:before {
1241
+ content: "\f0a5";
1242
+ }
1243
+ i.icon.pointing.up:before {
1244
+ content: "\f0a6";
1245
+ }
1246
+ i.icon.pointing.down:before {
1247
+ content: "\f0a7";
1248
+ }
1249
+ i.icon.arrow.circle.left:before {
1250
+ content: "\f0a8";
1251
+ }
1252
+ i.icon.arrow.circle.right:before {
1253
+ content: "\f0a9";
1254
+ }
1255
+ i.icon.arrow.circle.up:before {
1256
+ content: "\f0aa";
1257
+ }
1258
+ i.icon.arrow.circle.down:before {
1259
+ content: "\f0ab";
1260
+ }
1261
+ i.icon.caret.down:before {
1262
+ content: "\f0d7";
1263
+ }
1264
+ i.icon.caret.up:before {
1265
+ content: "\f0d8";
1266
+ }
1267
+ i.icon.caret.left:before {
1268
+ content: "\f0d9";
1269
+ }
1270
+ i.icon.caret.right:before {
1271
+ content: "\f0da";
1272
+ }
1273
+ i.icon.angle.double.left:before {
1274
+ content: "\f100";
1275
+ }
1276
+ i.icon.angle.double.right:before {
1277
+ content: "\f101";
1278
+ }
1279
+ i.icon.angle.double.up:before {
1280
+ content: "\f102";
1281
+ }
1282
+ i.icon.angle.double.down:before {
1283
+ content: "\f103";
1284
+ }
1285
+ i.icon.angle.left:before {
1286
+ content: "\f104";
1287
+ }
1288
+ i.icon.angle.right:before {
1289
+ content: "\f105";
1290
+ }
1291
+ i.icon.angle.up:before {
1292
+ content: "\f106";
1293
+ }
1294
+ i.icon.angle.down:before {
1295
+ content: "\f107";
1296
+ }
1297
+ i.icon.chevron.circle.left:before {
1298
+ content: "\f137";
1299
+ }
1300
+ i.icon.chevron.circle.right:before {
1301
+ content: "\f138";
1302
+ }
1303
+ i.icon.chevron.circle.up:before {
1304
+ content: "\f139";
1305
+ }
1306
+ i.icon.chevron.circle.down:before {
1307
+ content: "\f13a";
1308
+ }
1309
+ i.icon.toggle.down:before {
1310
+ content: "\f150";
1311
+ }
1312
+ i.icon.toggle.up:before {
1313
+ content: "\f151";
1314
+ }
1315
+ i.icon.toggle.right:before {
1316
+ content: "\f152";
1317
+ }
1318
+ i.icon.long.arrow.down:before {
1319
+ content: "\f175";
1320
+ }
1321
+ i.icon.long.arrow.up:before {
1322
+ content: "\f176";
1323
+ }
1324
+ i.icon.long.arrow.left:before {
1325
+ content: "\f177";
1326
+ }
1327
+ i.icon.long.arrow.right:before {
1328
+ content: "\f178";
1329
+ }
1330
+ i.icon.arrow.circle.outline.right:before {
1331
+ content: "\f18e";
1332
+ }
1333
+ i.icon.arrow.circle.outline.left:before {
1334
+ content: "\f190";
1335
+ }
1336
+ i.icon.toggle.left:before {
1337
+ content: "\f191";
1338
+ }
1339
+
1340
+ /* Computer */
1341
+ i.icon.power:before {
1342
+ content: "\f011";
1343
+ }
1344
+ i.icon.trash:before {
1345
+ content: "\f1f8";
1346
+ }
1347
+ i.icon.trash.outline:before {
1348
+ content: "\f014";
1349
+ }
1350
+ i.icon.disk.outline:before {
1351
+ content: "\f0a0";
1352
+ }
1353
+ i.icon.desktop:before {
1354
+ content: "\f108";
1355
+ }
1356
+ i.icon.laptop:before {
1357
+ content: "\f109";
1358
+ }
1359
+ i.icon.tablet:before {
1360
+ content: "\f10a";
1361
+ }
1362
+ i.icon.mobile:before {
1363
+ content: "\f10b";
1364
+ }
1365
+ i.icon.game:before {
1366
+ content: "\f11b";
1367
+ }
1368
+ i.icon.keyboard:before {
1369
+ content: "\f11c";
1370
+ }
1371
+ i.icon.plug:before {
1372
+ content: "\f1e6";
1373
+ }
1374
+
1375
+ /* File System */
1376
+ i.icon.folder:before {
1377
+ content: "\f07b";
1378
+ }
1379
+ i.icon.folder.open:before {
1380
+ content: "\f07c";
1381
+ }
1382
+ i.icon.level.up:before {
1383
+ content: "\f148";
1384
+ }
1385
+ i.icon.level.down:before {
1386
+ content: "\f149";
1387
+ }
1388
+ i.icon.file:before {
1389
+ content: "\f15b";
1390
+ }
1391
+ i.icon.file.outline:before {
1392
+ content: "\f016";
1393
+ }
1394
+ i.icon.file.text:before {
1395
+ content: "\f15c";
1396
+ }
1397
+ i.icon.file.text.outline:before {
1398
+ content: "\f0f6";
1399
+ }
1400
+ i.icon.folder.outline:before {
1401
+ content: "\f114";
1402
+ }
1403
+ i.icon.folder.open.outline:before {
1404
+ content: "\f115";
1405
+ }
1406
+ i.icon.file.pdf.outline:before {
1407
+ content: "\f1c1";
1408
+ }
1409
+ i.icon.file.word.outline:before {
1410
+ content: "\f1c2";
1411
+ }
1412
+ i.icon.file.excel.outline:before {
1413
+ content: "\f1c3";
1414
+ }
1415
+ i.icon.file.powerpoint.outline:before {
1416
+ content: "\f1c4";
1417
+ }
1418
+ i.icon.file.image.outline:before {
1419
+ content: "\f1c5";
1420
+ }
1421
+ i.icon.file.archive.outline:before {
1422
+ content: "\f1c6";
1423
+ }
1424
+ i.icon.file.audio.outline:before {
1425
+ content: "\f1c7";
1426
+ }
1427
+ i.icon.file.video.outline:before {
1428
+ content: "\f1c8";
1429
+ }
1430
+ i.icon.file.code.outline:before {
1431
+ content: "\f1c9";
1432
+ }
1433
+
1434
+ /* Technologies */
1435
+ i.icon.barcode:before {
1436
+ content: "\f02a";
1437
+ }
1438
+ i.icon.qrcode:before {
1439
+ content: "\f029";
1440
+ }
1441
+ i.icon.fork:before {
1442
+ content: "\f126";
1443
+ }
1444
+ i.icon.html5:before {
1445
+ content: "\f13b";
1446
+ }
1447
+ i.icon.css3:before {
1448
+ content: "\f13c";
1449
+ }
1450
+ i.icon.rss:before {
1451
+ content: "\f09e";
1452
+ }
1453
+ i.icon.rss.square:before {
1454
+ content: "\f143";
1455
+ }
1456
+ i.icon.openid:before {
1457
+ content: "\f19b";
1458
+ }
1459
+ i.icon.database:before {
1460
+ content: "\f1c0";
1461
+ }
1462
+ i.icon.server:before {
1463
+ content: "\f233";
1464
+ }
1465
+
1466
+ /* Rating */
1467
+ i.icon.heart:before {
1468
+ content: "\f004";
1469
+ }
1470
+ i.icon.star:before {
1471
+ content: "\f005";
1472
+ }
1473
+ i.icon.empty.star:before {
1474
+ content: "\f006";
1475
+ }
1476
+ i.icon.thumbs.outline.up:before {
1477
+ content: "\f087";
1478
+ }
1479
+ i.icon.thumbs.outline.down:before {
1480
+ content: "\f088";
1481
+ }
1482
+ i.icon.star.half:before {
1483
+ content: "\f089";
1484
+ }
1485
+ i.icon.empty.heart:before {
1486
+ content: "\f08a";
1487
+ }
1488
+ i.icon.smile:before {
1489
+ content: "\f118";
1490
+ }
1491
+ i.icon.frown:before {
1492
+ content: "\f119";
1493
+ }
1494
+ i.icon.meh:before {
1495
+ content: "\f11a";
1496
+ }
1497
+ i.icon.star.half.empty:before {
1498
+ content: "\f123";
1499
+ }
1500
+ i.icon.thumbs.up:before {
1501
+ content: "\f164";
1502
+ }
1503
+ i.icon.thumbs.down:before {
1504
+ content: "\f165";
1505
+ }
1506
+
1507
+ /* Audio */
1508
+ i.icon.music:before {
1509
+ content: "\f001";
1510
+ }
1511
+ i.icon.video.play.outline:before {
1512
+ content: "\f01d";
1513
+ }
1514
+ i.icon.volume.off:before {
1515
+ content: "\f026";
1516
+ }
1517
+ i.icon.volume.down:before {
1518
+ content: "\f027";
1519
+ }
1520
+ i.icon.volume.up:before {
1521
+ content: "\f028";
1522
+ }
1523
+ i.icon.record:before {
1524
+ content: "\f03d";
1525
+ }
1526
+ i.icon.step.backward:before {
1527
+ content: "\f048";
1528
+ }
1529
+ i.icon.fast.backward:before {
1530
+ content: "\f049";
1531
+ }
1532
+ i.icon.backward:before {
1533
+ content: "\f04a";
1534
+ }
1535
+ i.icon.play:before {
1536
+ content: "\f04b";
1537
+ }
1538
+ i.icon.pause:before {
1539
+ content: "\f04c";
1540
+ }
1541
+ i.icon.stop:before {
1542
+ content: "\f04d";
1543
+ }
1544
+ i.icon.forward:before {
1545
+ content: "\f04e";
1546
+ }
1547
+ i.icon.fast.forward:before {
1548
+ content: "\f050";
1549
+ }
1550
+ i.icon.step.forward:before {
1551
+ content: "\f051";
1552
+ }
1553
+ i.icon.eject:before {
1554
+ content: "\f052";
1555
+ }
1556
+ i.icon.unmute:before {
1557
+ content: "\f130";
1558
+ }
1559
+ i.icon.mute:before {
1560
+ content: "\f131";
1561
+ }
1562
+ i.icon.video.play:before {
1563
+ content: "\f144";
1564
+ }
1565
+ i.icon.closed.captioning:before {
1566
+ content: "\f20a";
1567
+ }
1568
+
1569
+ /* Map, Locations, & Transportation */
1570
+ i.icon.marker:before {
1571
+ content: "\f041";
1572
+ }
1573
+ i.icon.coffee:before {
1574
+ content: "\f0f4";
1575
+ }
1576
+ i.icon.food:before {
1577
+ content: "\f0f5";
1578
+ }
1579
+ i.icon.building.outline:before {
1580
+ content: "\f0f7";
1581
+ }
1582
+ i.icon.hospital:before {
1583
+ content: "\f0f8";
1584
+ }
1585
+ i.icon.emergency:before {
1586
+ content: "\f0f9";
1587
+ }
1588
+ i.icon.first.aid:before {
1589
+ content: "\f0fa";
1590
+ }
1591
+ i.icon.military:before {
1592
+ content: "\f0fb";
1593
+ }
1594
+ i.icon.h:before {
1595
+ content: "\f0fd";
1596
+ }
1597
+ i.icon.location.arrow:before {
1598
+ content: "\f124";
1599
+ }
1600
+ i.icon.space.shuttle:before {
1601
+ content: "\f197";
1602
+ }
1603
+ i.icon.university:before {
1604
+ content: "\f19c";
1605
+ }
1606
+ i.icon.building:before {
1607
+ content: "\f1ad";
1608
+ }
1609
+ i.icon.paw:before {
1610
+ content: "\f1b0";
1611
+ }
1612
+ i.icon.spoon:before {
1613
+ content: "\f1b1";
1614
+ }
1615
+ i.icon.car:before {
1616
+ content: "\f1b9";
1617
+ }
1618
+ i.icon.taxi:before {
1619
+ content: "\f1ba";
1620
+ }
1621
+ i.icon.tree:before {
1622
+ content: "\f1bb";
1623
+ }
1624
+ i.icon.bicycle:before {
1625
+ content: "\f206";
1626
+ }
1627
+ i.icon.bus:before {
1628
+ content: "\f207";
1629
+ }
1630
+ i.icon.ship:before {
1631
+ content: "\f21a";
1632
+ }
1633
+ i.icon.motorcycle:before {
1634
+ content: "\f21c";
1635
+ }
1636
+ i.icon.street.view:before {
1637
+ content: "\f21d";
1638
+ }
1639
+ i.icon.hotel:before {
1640
+ content: "\f236";
1641
+ }
1642
+ i.icon.train:before {
1643
+ content: "\f238";
1644
+ }
1645
+ i.icon.subway:before {
1646
+ content: "\f239";
1647
+ }
1648
+
1649
+ /* Tables */
1650
+ i.icon.table:before {
1651
+ content: "\f0ce";
1652
+ }
1653
+ i.icon.columns:before {
1654
+ content: "\f0db";
1655
+ }
1656
+ i.icon.sort:before {
1657
+ content: "\f0dc";
1658
+ }
1659
+ i.icon.sort.ascending:before {
1660
+ content: "\f0de";
1661
+ }
1662
+ i.icon.sort.descending:before {
1663
+ content: "\f0dd";
1664
+ }
1665
+ i.icon.sort.alphabet.ascending:before {
1666
+ content: "\f15d";
1667
+ }
1668
+ i.icon.sort.alphabet.descending:before {
1669
+ content: "\f15e";
1670
+ }
1671
+ i.icon.sort.content.ascending:before {
1672
+ content: "\f160";
1673
+ }
1674
+ i.icon.sort.content.descending:before {
1675
+ content: "\f161";
1676
+ }
1677
+ i.icon.sort.numeric.ascending:before {
1678
+ content: "\f162";
1679
+ }
1680
+ i.icon.sort.numeric.descending:before {
1681
+ content: "\f163";
1682
+ }
1683
+
1684
+ /* Text Editor */
1685
+ i.icon.font:before {
1686
+ content: "\f031";
1687
+ }
1688
+ i.icon.bold:before {
1689
+ content: "\f032";
1690
+ }
1691
+ i.icon.italic:before {
1692
+ content: "\f033";
1693
+ }
1694
+ i.icon.text.height:before {
1695
+ content: "\f034";
1696
+ }
1697
+ i.icon.text.width:before {
1698
+ content: "\f035";
1699
+ }
1700
+ i.icon.align.left:before {
1701
+ content: "\f036";
1702
+ }
1703
+ i.icon.align.center:before {
1704
+ content: "\f037";
1705
+ }
1706
+ i.icon.align.right:before {
1707
+ content: "\f038";
1708
+ }
1709
+ i.icon.align.justify:before {
1710
+ content: "\f039";
1711
+ }
1712
+ i.icon.list:before {
1713
+ content: "\f03a";
1714
+ }
1715
+ i.icon.outdent:before {
1716
+ content: "\f03b";
1717
+ }
1718
+ i.icon.indent:before {
1719
+ content: "\f03c";
1720
+ }
1721
+ i.icon.linkify:before {
1722
+ content: "\f0c1";
1723
+ }
1724
+ i.icon.cut:before {
1725
+ content: "\f0c4";
1726
+ }
1727
+ i.icon.copy:before {
1728
+ content: "\f0c5";
1729
+ }
1730
+ i.icon.attach:before {
1731
+ content: "\f0c6";
1732
+ }
1733
+ i.icon.save:before {
1734
+ content: "\f0c7";
1735
+ }
1736
+ i.icon.content:before {
1737
+ content: "\f0c9";
1738
+ }
1739
+ i.icon.unordered.list:before {
1740
+ content: "\f0ca";
1741
+ }
1742
+ i.icon.ordered.list:before {
1743
+ content: "\f0cb";
1744
+ }
1745
+ i.icon.strikethrough:before {
1746
+ content: "\f0cc";
1747
+ }
1748
+ i.icon.underline:before {
1749
+ content: "\f0cd";
1750
+ }
1751
+ i.icon.paste:before {
1752
+ content: "\f0ea";
1753
+ }
1754
+ i.icon.unlink:before {
1755
+ content: "\f127";
1756
+ }
1757
+ i.icon.superscript:before {
1758
+ content: "\f12b";
1759
+ }
1760
+ i.icon.subscript:before {
1761
+ content: "\f12c";
1762
+ }
1763
+ i.icon.header:before {
1764
+ content: "\f1dc";
1765
+ }
1766
+ i.icon.paragraph:before {
1767
+ content: "\f1dd";
1768
+ }
1769
+
1770
+ /* Currency */
1771
+ i.icon.euro:before {
1772
+ content: "\f153";
1773
+ }
1774
+ i.icon.pound:before {
1775
+ content: "\f154";
1776
+ }
1777
+ i.icon.dollar:before {
1778
+ content: "\f155";
1779
+ }
1780
+ i.icon.rupee:before {
1781
+ content: "\f156";
1782
+ }
1783
+ i.icon.yen:before {
1784
+ content: "\f157";
1785
+ }
1786
+ i.icon.ruble:before {
1787
+ content: "\f158";
1788
+ }
1789
+ i.icon.won:before {
1790
+ content: "\f159";
1791
+ }
1792
+ i.icon.lira:before {
1793
+ content: "\f195";
1794
+ }
1795
+ i.icon.shekel:before {
1796
+ content: "\f20b";
1797
+ }
1798
+
1799
+ /* Payment Options */
1800
+ i.icon.paypal:before {
1801
+ content: "\f1ed";
1802
+ }
1803
+ i.icon.paypal.card:before {
1804
+ content: "\f1f4";
1805
+ }
1806
+ i.icon.google.wallet:before {
1807
+ content: "\f1ee";
1808
+ }
1809
+ i.icon.visa:before {
1810
+ content: "\f1f0";
1811
+ }
1812
+ i.icon.mastercard:before {
1813
+ content: "\f1f1";
1814
+ }
1815
+ i.icon.discover:before {
1816
+ content: "\f1f2";
1817
+ }
1818
+ i.icon.american.express:before {
1819
+ content: "\f1f3";
1820
+ }
1821
+ i.icon.stripe:before {
1822
+ content: "\f1f5";
1823
+ }
1824
+ /* Networks and Websites*/
1825
+ i.icon.twitter.square:before {
1826
+ content: "\f081";
1827
+ }
1828
+ i.icon.facebook.square:before {
1829
+ content: "\f082";
1830
+ }
1831
+ i.icon.linkedin.square:before {
1832
+ content: "\f08c";
1833
+ }
1834
+ i.icon.github.square:before {
1835
+ content: "\f092";
1836
+ }
1837
+ i.icon.twitter:before {
1838
+ content: "\f099";
1839
+ }
1840
+ i.icon.facebook:before {
1841
+ content: "\f09a";
1842
+ }
1843
+ i.icon.github:before {
1844
+ content: "\f09b";
1845
+ }
1846
+ i.icon.pinterest:before {
1847
+ content: "\f0d2";
1848
+ }
1849
+ i.icon.pinterest.square:before {
1850
+ content: "\f0d3";
1851
+ }
1852
+ i.icon.google.plus.square:before {
1853
+ content: "\f0d4";
1854
+ }
1855
+ i.icon.google.plus:before {
1856
+ content: "\f0d5";
1857
+ }
1858
+ i.icon.linkedin:before {
1859
+ content: "\f0e1";
1860
+ }
1861
+ i.icon.github.alternate:before {
1862
+ content: "\f113";
1863
+ }
1864
+ i.icon.maxcdn:before {
1865
+ content: "\f136";
1866
+ }
1867
+ i.icon.bitcoin:before {
1868
+ content: "\f15a";
1869
+ }
1870
+ i.icon.youtube.square:before {
1871
+ content: "\f166";
1872
+ }
1873
+ i.icon.youtube:before {
1874
+ content: "\f167";
1875
+ }
1876
+ i.icon.xing:before {
1877
+ content: "\f168";
1878
+ }
1879
+ i.icon.xing.square:before {
1880
+ content: "\f169";
1881
+ }
1882
+ i.icon.youtube.play:before {
1883
+ content: "\f16a";
1884
+ }
1885
+ i.icon.dropbox:before {
1886
+ content: "\f16b";
1887
+ }
1888
+ i.icon.stack.overflow:before {
1889
+ content: "\f16c";
1890
+ }
1891
+ i.icon.instagram:before {
1892
+ content: "\f16d";
1893
+ }
1894
+ i.icon.flickr:before {
1895
+ content: "\f16e";
1896
+ }
1897
+ i.icon.adn:before {
1898
+ content: "\f170";
1899
+ }
1900
+ i.icon.bitbucket:before {
1901
+ content: "\f171";
1902
+ }
1903
+ i.icon.bitbucket.square:before {
1904
+ content: "\f172";
1905
+ }
1906
+ i.icon.tumblr:before {
1907
+ content: "\f173";
1908
+ }
1909
+ i.icon.tumblr.square:before {
1910
+ content: "\f174";
1911
+ }
1912
+ i.icon.apple:before {
1913
+ content: "\f179";
1914
+ }
1915
+ i.icon.windows:before {
1916
+ content: "\f17a";
1917
+ }
1918
+ i.icon.android:before {
1919
+ content: "\f17b";
1920
+ }
1921
+ i.icon.linux:before {
1922
+ content: "\f17c";
1923
+ }
1924
+ i.icon.dribbble:before {
1925
+ content: "\f17d";
1926
+ }
1927
+ i.icon.skype:before {
1928
+ content: "\f17e";
1929
+ }
1930
+ i.icon.foursquare:before {
1931
+ content: "\f180";
1932
+ }
1933
+ i.icon.trello:before {
1934
+ content: "\f181";
1935
+ }
1936
+ i.icon.gittip:before {
1937
+ content: "\f184";
1938
+ }
1939
+ i.icon.vk:before {
1940
+ content: "\f189";
1941
+ }
1942
+ i.icon.weibo:before {
1943
+ content: "\f18a";
1944
+ }
1945
+ i.icon.renren:before {
1946
+ content: "\f18b";
1947
+ }
1948
+ i.icon.pagelines:before {
1949
+ content: "\f18c";
1950
+ }
1951
+ i.icon.stack.exchange:before {
1952
+ content: "\f18d";
1953
+ }
1954
+ i.icon.vimeo:before {
1955
+ content: "\f194";
1956
+ }
1957
+ i.icon.slack:before {
1958
+ content: "\f198";
1959
+ }
1960
+ i.icon.wordpress:before {
1961
+ content: "\f19a";
1962
+ }
1963
+ i.icon.yahoo:before {
1964
+ content: "\f19e";
1965
+ }
1966
+ i.icon.google:before {
1967
+ content: "\f1a0";
1968
+ }
1969
+ i.icon.reddit:before {
1970
+ content: "\f1a1";
1971
+ }
1972
+ i.icon.reddit.square:before {
1973
+ content: "\f1a2";
1974
+ }
1975
+ i.icon.stumbleupon.circle:before {
1976
+ content: "\f1a3";
1977
+ }
1978
+ i.icon.stumbleupon:before {
1979
+ content: "\f1a4";
1980
+ }
1981
+ i.icon.delicious:before {
1982
+ content: "\f1a5";
1983
+ }
1984
+ i.icon.digg:before {
1985
+ content: "\f1a6";
1986
+ }
1987
+ i.icon.pied.piper:before {
1988
+ content: "\f1a7";
1989
+ }
1990
+ i.icon.pied.piper.alternate:before {
1991
+ content: "\f1a8";
1992
+ }
1993
+ i.icon.drupal:before {
1994
+ content: "\f1a9";
1995
+ }
1996
+ i.icon.joomla:before {
1997
+ content: "\f1aa";
1998
+ }
1999
+ i.icon.behance:before {
2000
+ content: "\f1b4";
2001
+ }
2002
+ i.icon.behance.square:before {
2003
+ content: "\f1b5";
2004
+ }
2005
+ i.icon.steam:before {
2006
+ content: "\f1b6";
2007
+ }
2008
+ i.icon.steam.square:before {
2009
+ content: "\f1b7";
2010
+ }
2011
+ i.icon.spotify:before {
2012
+ content: "\f1bc";
2013
+ }
2014
+ i.icon.deviantart:before {
2015
+ content: "\f1bd";
2016
+ }
2017
+ i.icon.soundcloud:before {
2018
+ content: "\f1be";
2019
+ }
2020
+ i.icon.vine:before {
2021
+ content: "\f1ca";
2022
+ }
2023
+ i.icon.codepen:before {
2024
+ content: "\f1cb";
2025
+ }
2026
+ i.icon.jsfiddle:before {
2027
+ content: "\f1cc";
2028
+ }
2029
+ i.icon.rebel:before {
2030
+ content: "\f1d0";
2031
+ }
2032
+ i.icon.empire:before {
2033
+ content: "\f1d1";
2034
+ }
2035
+ i.icon.git.square:before {
2036
+ content: "\f1d2";
2037
+ }
2038
+ i.icon.git:before {
2039
+ content: "\f1d3";
2040
+ }
2041
+ i.icon.hacker.news:before {
2042
+ content: "\f1d4";
2043
+ }
2044
+ i.icon.tencent.weibo:before {
2045
+ content: "\f1d5";
2046
+ }
2047
+ i.icon.qq:before {
2048
+ content: "\f1d6";
2049
+ }
2050
+ i.icon.wechat:before {
2051
+ content: "\f1d7";
2052
+ }
2053
+ i.icon.slideshare:before {
2054
+ content: "\f1e7";
2055
+ }
2056
+ i.icon.twitch:before {
2057
+ content: "\f1e8";
2058
+ }
2059
+ i.icon.yelp:before {
2060
+ content: "\f1e9";
2061
+ }
2062
+ i.icon.lastfm:before {
2063
+ content: "\f202";
2064
+ }
2065
+ i.icon.lastfm.square:before {
2066
+ content: "\f203";
2067
+ }
2068
+ i.icon.ioxhost:before {
2069
+ content: "\f208";
2070
+ }
2071
+ i.icon.angellist:before {
2072
+ content: "\f209";
2073
+ }
2074
+ i.icon.meanpath:before {
2075
+ content: "\f20c";
2076
+ }
2077
+ i.icon.buysellads:before {
2078
+ content: "\f20d";
2079
+ }
2080
+ i.icon.connectdevelop:before {
2081
+ content: "\f20e";
2082
+ }
2083
+ i.icon.dashcube:before {
2084
+ content: "\f210";
2085
+ }
2086
+ i.icon.forumbee:before {
2087
+ content: "\f211";
2088
+ }
2089
+ i.icon.leanpub:before {
2090
+ content: "\f212";
2091
+ }
2092
+ i.icon.sellsy:before {
2093
+ content: "\f213";
2094
+ }
2095
+ i.icon.shirtsinbulk:before {
2096
+ content: "\f214";
2097
+ }
2098
+ i.icon.simplybuilt:before {
2099
+ content: "\f215";
2100
+ }
2101
+ i.icon.skyatlas:before {
2102
+ content: "\f216";
2103
+ }
2104
+ i.icon.whatsapp:before {
2105
+ content: "\f232";
2106
+ }
2107
+ i.icon.viacoin:before {
2108
+ content: "\f237";
2109
+ }
2110
+ i.icon.medium:before {
2111
+ content: "\f23a";
2112
+ }
2113
+
2114
+
2115
+ /*******************************
2116
+ Aliases
2117
+ *******************************/
2118
+
2119
+ i.icon.like:before {
2120
+ content: "\f004";
2121
+ }
2122
+ i.icon.favorite:before {
2123
+ content: "\f005";
2124
+ }
2125
+ i.icon.video:before {
2126
+ content: "\f008";
2127
+ }
2128
+ i.icon.check:before {
2129
+ content: "\f00c";
2130
+ }
2131
+ i.icon.close:before {
2132
+ content: "\f00d";
2133
+ }
2134
+ i.icon.cancel:before {
2135
+ content: "\f00d";
2136
+ }
2137
+ i.icon.delete:before {
2138
+ content: "\f00d";
2139
+ }
2140
+ i.icon.x:before {
2141
+ content: "\f00d";
2142
+ }
2143
+ i.icon.user.times:before {
2144
+ content: "\f235";
2145
+ }
2146
+ i.icon.user.close:before {
2147
+ content: "\f235";
2148
+ }
2149
+ i.icon.user.cancel:before {
2150
+ content: "\f235";
2151
+ }
2152
+ i.icon.user.delete:before {
2153
+ content: "\f235";
2154
+ }
2155
+ i.icon.user.x:before {
2156
+ content: "\f235";
2157
+ }
2158
+ i.icon.zoom.in:before {
2159
+ content: "\f00e";
2160
+ }
2161
+ i.icon.magnify:before {
2162
+ content: "\f00e";
2163
+ }
2164
+ i.icon.shutdown:before {
2165
+ content: "\f011";
2166
+ }
2167
+ i.icon.clock:before {
2168
+ content: "\f017";
2169
+ }
2170
+ i.icon.time:before {
2171
+ content: "\f017";
2172
+ }
2173
+ i.icon.play.circle.outline:before {
2174
+ content: "\f01d";
2175
+ }
2176
+ i.icon.headphone:before {
2177
+ content: "\f025";
2178
+ }
2179
+ i.icon.camera:before {
2180
+ content: "\f030";
2181
+ }
2182
+ i.icon.video.camera:before {
2183
+ content: "\f03d";
2184
+ }
2185
+ i.icon.picture:before {
2186
+ content: "\f03e";
2187
+ }
2188
+ i.icon.pencil:before {
2189
+ content: "\f040";
2190
+ }
2191
+ i.icon.compose:before {
2192
+ content: "\f040";
2193
+ }
2194
+ i.icon.point:before {
2195
+ content: "\f041";
2196
+ }
2197
+ i.icon.tint:before {
2198
+ content: "\f043";
2199
+ }
2200
+ i.icon.signup:before {
2201
+ content: "\f044";
2202
+ }
2203
+ i.icon.plus.circle:before {
2204
+ content: "\f055";
2205
+ }
2206
+ i.icon.dont:before {
2207
+ content: "\f05e";
2208
+ }
2209
+ i.icon.minimize:before {
2210
+ content: "\f066";
2211
+ }
2212
+ i.icon.add:before {
2213
+ content: "\f067";
2214
+ }
2215
+ i.icon.eye:before {
2216
+ content: "\f06e";
2217
+ }
2218
+ i.icon.attention:before {
2219
+ content: "\f06a";
2220
+ }
2221
+ i.icon.cart:before {
2222
+ content: "\f07a";
2223
+ }
2224
+ i.icon.shuffle:before {
2225
+ content: "\f074";
2226
+ }
2227
+ i.icon.talk:before {
2228
+ content: "\f075";
2229
+ }
2230
+ i.icon.chat:before {
2231
+ content: "\f075";
2232
+ }
2233
+ i.icon.shopping.cart:before {
2234
+ content: "\f07a";
2235
+ }
2236
+ i.icon.bar.graph:before {
2237
+ content: "\f080";
2238
+ }
2239
+ i.icon.area.graph:before {
2240
+ content: "\f1fe";
2241
+ }
2242
+ i.icon.pie.graph:before {
2243
+ content: "\f200";
2244
+ }
2245
+ i.icon.line.graph:before {
2246
+ content: "\f201";
2247
+ }
2248
+ i.icon.key:before {
2249
+ content: "\f084";
2250
+ }
2251
+ i.icon.cogs:before {
2252
+ content: "\f085";
2253
+ }
2254
+ i.icon.discussions:before {
2255
+ content: "\f086";
2256
+ }
2257
+ i.icon.like.outline:before {
2258
+ content: "\f087";
2259
+ }
2260
+ i.icon.dislike.outline:before {
2261
+ content: "\f088";
2262
+ }
2263
+ i.icon.heart.outline:before {
2264
+ content: "\f08a";
2265
+ }
2266
+ i.icon.log.out:before {
2267
+ content: "\f08b";
2268
+ }
2269
+ i.icon.thumb.tack:before {
2270
+ content: "\f08d";
2271
+ }
2272
+ i.icon.winner:before {
2273
+ content: "\f091";
2274
+ }
2275
+ i.icon.bookmark.outline:before {
2276
+ content: "\f097";
2277
+ }
2278
+ i.icon.phone:before {
2279
+ content: "\f095";
2280
+ }
2281
+ i.icon.phone.square:before {
2282
+ content: "\f098";
2283
+ }
2284
+ i.icon.credit.card:before {
2285
+ content: "\f09d";
2286
+ }
2287
+ i.icon.hdd.outline:before {
2288
+ content: "\f0a0";
2289
+ }
2290
+ i.icon.bullhorn:before {
2291
+ content: "\f0a1";
2292
+ }
2293
+ i.icon.bell:before {
2294
+ content: "\f0f3";
2295
+ }
2296
+ i.icon.bell.outline:before {
2297
+ content: "\f0a2";
2298
+ }
2299
+ i.icon.bell.slash:before {
2300
+ content: "\f1f6";
2301
+ }
2302
+ i.icon.bell.slash.outline:before {
2303
+ content: "\f1f7";
2304
+ }
2305
+ i.icon.hand.outline.right:before {
2306
+ content: "\f0a4";
2307
+ }
2308
+ i.icon.hand.outline.left:before {
2309
+ content: "\f0a5";
2310
+ }
2311
+ i.icon.hand.outline.up:before {
2312
+ content: "\f0a6";
2313
+ }
2314
+ i.icon.hand.outline.down:before {
2315
+ content: "\f0a7";
2316
+ }
2317
+ i.icon.globe:before {
2318
+ content: "\f0ac";
2319
+ }
2320
+ i.icon.wrench:before {
2321
+ content: "\f0ad";
2322
+ }
2323
+ i.icon.briefcase:before {
2324
+ content: "\f0b1";
2325
+ }
2326
+ i.icon.group:before {
2327
+ content: "\f0c0";
2328
+ }
2329
+ i.icon.flask:before {
2330
+ content: "\f0c3";
2331
+ }
2332
+ i.icon.sidebar:before {
2333
+ content: "\f0c9";
2334
+ }
2335
+ i.icon.bars:before {
2336
+ content: "\f0c9";
2337
+ }
2338
+ i.icon.list.ul:before {
2339
+ content: "\f0ca";
2340
+ }
2341
+ i.icon.list.ol:before {
2342
+ content: "\f0cb";
2343
+ }
2344
+ i.icon.numbered.list:before {
2345
+ content: "\f0cb";
2346
+ }
2347
+ i.icon.magic:before {
2348
+ content: "\f0d0";
2349
+ }
2350
+ i.icon.truck:before {
2351
+ content: "\f0d1";
2352
+ }
2353
+ i.icon.currency:before {
2354
+ content: "\f0d6";
2355
+ }
2356
+ i.icon.triangle.down:before {
2357
+ content: "\f0d7";
2358
+ }
2359
+ i.icon.dropdown:before {
2360
+ content: "\f0d7";
2361
+ }
2362
+ i.icon.triangle.up:before {
2363
+ content: "\f0d8";
2364
+ }
2365
+ i.icon.triangle.left:before {
2366
+ content: "\f0d9";
2367
+ }
2368
+ i.icon.triangle.right:before {
2369
+ content: "\f0da";
2370
+ }
2371
+ i.icon.envelope:before {
2372
+ content: "\f0e0";
2373
+ }
2374
+ i.icon.conversation:before {
2375
+ content: "\f0e6";
2376
+ }
2377
+ i.icon.umbrella:before {
2378
+ content: "\f0e9";
2379
+ }
2380
+ i.icon.lightbulb:before {
2381
+ content: "\f0eb";
2382
+ }
2383
+ i.icon.ambulance:before {
2384
+ content: "\f0f9";
2385
+ }
2386
+ i.icon.medkit:before {
2387
+ content: "\f0fa";
2388
+ }
2389
+ i.icon.fighter.jet:before {
2390
+ content: "\f0fb";
2391
+ }
2392
+ i.icon.beer:before {
2393
+ content: "\f0fc";
2394
+ }
2395
+ i.icon.plus.square:before {
2396
+ content: "\f0fe";
2397
+ }
2398
+ i.icon.computer:before {
2399
+ content: "\f108";
2400
+ }
2401
+ i.icon.circle.outline:before {
2402
+ content: "\f10c";
2403
+ }
2404
+ i.icon.intersex:before {
2405
+ content: "\f10c";
2406
+ }
2407
+ i.icon.asexual:before {
2408
+ content: "\f10c";
2409
+ }
2410
+ i.icon.spinner:before {
2411
+ content: "\f110";
2412
+ }
2413
+ i.icon.gamepad:before {
2414
+ content: "\f11b";
2415
+ }
2416
+ i.icon.star.half.full:before {
2417
+ content: "\f123";
2418
+ }
2419
+ i.icon.question:before {
2420
+ content: "\f128";
2421
+ }
2422
+ i.icon.eraser:before {
2423
+ content: "\f12d";
2424
+ }
2425
+ i.icon.microphone:before {
2426
+ content: "\f130";
2427
+ }
2428
+ i.icon.microphone.slash:before {
2429
+ content: "\f131";
2430
+ }
2431
+ i.icon.shield:before {
2432
+ content: "\f132";
2433
+ }
2434
+ i.icon.target:before {
2435
+ content: "\f140";
2436
+ }
2437
+ i.icon.play.circle:before {
2438
+ content: "\f144";
2439
+ }
2440
+ i.icon.pencil.square:before {
2441
+ content: "\f14b";
2442
+ }
2443
+ i.icon.compass:before {
2444
+ content: "\f14e";
2445
+ }
2446
+ i.icon.amex:before {
2447
+ content: "\f1f3";
2448
+ }
2449
+ i.icon.eur:before {
2450
+ content: "\f153";
2451
+ }
2452
+ i.icon.gbp:before {
2453
+ content: "\f154";
2454
+ }
2455
+ i.icon.usd:before {
2456
+ content: "\f155";
2457
+ }
2458
+ i.icon.inr:before {
2459
+ content: "\f156";
2460
+ }
2461
+ i.icon.cny:before,
2462
+ i.icon.rmb:before,
2463
+ i.icon.jpy:before {
2464
+ content: "\f157";
2465
+ }
2466
+ i.icon.rouble:before,
2467
+ i.icon.rub:before {
2468
+ content: "\f158";
2469
+ }
2470
+ i.icon.krw:before {
2471
+ content: "\f159";
2472
+ }
2473
+ i.icon.btc:before {
2474
+ content: "\f15a";
2475
+ }
2476
+ i.icon.sheqel:before,
2477
+ i.icon.ils:before {
2478
+ content: "\f20b";
2479
+ }
2480
+ i.icon.try:before {
2481
+ content: "\f195";
2482
+ }
2483
+ i.icon.zip:before {
2484
+ content: "\f187";
2485
+ }
2486
+ i.icon.dot.circle.outline:before {
2487
+ content: "\f192";
2488
+ }
2489
+ i.icon.sliders:before {
2490
+ content: "\f1de";
2491
+ }
2492
+ i.icon.wi-fi:before {
2493
+ content: "\f1eb";
2494
+ }
2495
+ i.icon.graduation:before {
2496
+ content: "\f19d";
2497
+ }
2498
+ i.icon.weixin:before {
2499
+ content: "\f1d7";
2500
+ }
2501
+ i.icon.binoculars:before {
2502
+ content: "\f1e5";
2503
+ }
2504
+ i.icon.gratipay:before {
2505
+ content: "\f184";
2506
+ }
2507
+ i.icon.genderless:before {
2508
+ content: "\f1db";
2509
+ }
2510
+ i.icon.teletype:before {
2511
+ content: "\f1e4";
2512
+ }
2513
+ i.icon.power.cord:before {
2514
+ content: "\f1e6";
2515
+ }
2516
+ i.icon.tty:before {
2517
+ content: "\f1e4";
2518
+ }
2519
+ i.icon.cc:before {
2520
+ content: "\f20a";
2521
+ }
2522
+ i.icon.plus.cart:before {
2523
+ content: "\f217";
2524
+ }
2525
+ i.icon.arrow.down.cart:before {
2526
+ content: "\f218";
2527
+ }
2528
+ i.icon.detective:before {
2529
+ content: "\f21b";
2530
+ }
2531
+ i.icon.venus:before {
2532
+ content: "\f221";
2533
+ }
2534
+ i.icon.mars:before {
2535
+ content: "\f222";
2536
+ }
2537
+ i.icon.mercury:before {
2538
+ content: "\f223";
2539
+ }
2540
+ i.icon.venus.double:before {
2541
+ content: "\f226";
2542
+ }
2543
+ i.icon.female.homosexual:before {
2544
+ content: "\f226";
2545
+ }
2546
+ i.icon.mars.double:before {
2547
+ content: "\f227";
2548
+ }
2549
+ i.icon.male.homosexual:before {
2550
+ content: "\f227";
2551
+ }
2552
+ i.icon.venus.mars:before {
2553
+ content: "\f228";
2554
+ }
2555
+ i.icon.mars.stroke:before {
2556
+ content: "\f229";
2557
+ }
2558
+ i.icon.mars.alternate:before {
2559
+ content: "\f229";
2560
+ }
2561
+ i.icon.mars.vertical:before {
2562
+ content: "\f22a";
2563
+ }
2564
+ i.icon.mars.horizontal:before {
2565
+ content: "\f22b";
2566
+ }
2567
+ i.icon.mars.stroke.vertical:before {
2568
+ content: "\f22a";
2569
+ }
2570
+ i.icon.mars.stroke.horizontal:before {
2571
+ content: "\f22b";
2572
+ }
2573
+ i.icon.facebook.official {
2574
+ content: "\f230";
2575
+ }
2576
+ i.icon.pinterest.official {
2577
+ content: "\f231";
2578
+ }
2579
+ i.icon.bed:before {
2580
+ content: "\f236";
2581
+ }
2582
+
2583
+
2584
+ /*******************************
2585
+ Site Overrides
2586
+ *******************************/
2587
+