vue_crud 0.1.9.5 → 0.1.9.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (90) hide show
  1. checksums.yaml +4 -4
  2. data/lib/generators/vue_crud/example_generator.rb +12 -0
  3. data/lib/generators/vue_crud/install_generator.rb +1 -1
  4. data/lib/generators/vue_crud/pace_generator.rb +11 -0
  5. data/lib/generators/vue_crud/semantic_generator.rb +12 -0
  6. data/lib/generators/vue_crud/templates/assets/images/semantic-ui/flags.png +0 -0
  7. data/lib/generators/vue_crud/templates/assets/javascripts/pace.min.js +1 -0
  8. data/lib/generators/vue_crud/templates/assets/javascripts/semantic-ui/checkbox.js +831 -0
  9. data/lib/generators/vue_crud/templates/assets/javascripts/semantic-ui/dimmer.js +708 -0
  10. data/lib/generators/vue_crud/templates/assets/javascripts/semantic-ui/dropdown.js +3741 -0
  11. data/lib/generators/vue_crud/templates/assets/javascripts/semantic-ui/modal.js +913 -0
  12. data/lib/generators/vue_crud/templates/assets/javascripts/semantic-ui/site.js +487 -0
  13. data/lib/generators/vue_crud/templates/assets/javascripts/semantic-ui/transition.js +1089 -0
  14. data/lib/generators/vue_crud/templates/assets/javascripts/vue.js +7402 -0
  15. data/lib/generators/vue_crud/templates/assets/stylesheets/pace.min.css +1 -0
  16. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/.DS_Store +0 -0
  17. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/.DS_Store +0 -0
  18. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/_all.scss +7 -0
  19. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +124 -0
  20. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/_form.scss +1706 -0
  21. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/_grid.scss +84 -0
  22. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/_grid_bk.scss +2032 -0
  23. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/_menu.scss +2021 -0
  24. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/_message.scss +482 -0
  25. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/_mixins.scss +3 -0
  26. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/_table.scss +1108 -0
  27. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/mixins/.DS_Store +0 -0
  28. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/mixins/_clearfix.scss +1 -0
  29. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/mixins/_grid-framework.scss +1 -0
  30. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/mixins/_grid.scss +1 -0
  31. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_all.scss +15 -0
  32. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_button.scss +3470 -0
  33. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_container.scss +148 -0
  34. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_divider.scss +262 -0
  35. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_flag.scss +1031 -0
  36. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_header.scss +721 -0
  37. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_icon.scss +3148 -0
  38. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_image.scss +306 -0
  39. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_input.scss +517 -0
  40. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_label.scss +1314 -0
  41. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_list.scss +951 -0
  42. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_loader.scss +349 -0
  43. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_rail.scss +152 -0
  44. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_reveal.scss +307 -0
  45. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_segment.scss +799 -0
  46. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_step.scss +646 -0
  47. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/globals/_all.scss +3 -0
  48. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/globals/_reset.scss +424 -0
  49. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/globals/_site.scss +163 -0
  50. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/globals/_variables.scss +32 -0
  51. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_accordion.scss +256 -0
  52. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_all.scss +17 -0
  53. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_checkbox.scss +627 -0
  54. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_dimmer.scss +199 -0
  55. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_dropdown.scss +1425 -0
  56. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_embed.scss +167 -0
  57. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_modal.scss +509 -0
  58. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_nag.scss +147 -0
  59. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_popup.scss +764 -0
  60. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_progress.scss +516 -0
  61. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_rating.scss +265 -0
  62. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_search.scss +409 -0
  63. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_shape.scss +157 -0
  64. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_sidebar.scss +644 -0
  65. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_sticky.scss +78 -0
  66. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_tab.scss +91 -0
  67. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_transition.scss +1981 -0
  68. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_video.scss +125 -0
  69. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/views/_ad.scss +276 -0
  70. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/views/_all.scss +6 -0
  71. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/views/_card.scss +685 -0
  72. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/views/_comment.scss +270 -0
  73. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/views/_feed.scss +300 -0
  74. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/views/_item.scss +481 -0
  75. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/views/_statistic.scss +583 -0
  76. data/lib/generators/vue_crud/templates/example/user.rb +10 -0
  77. data/lib/generators/vue_crud/templates/example/users/index.html.erb +154 -0
  78. data/lib/generators/vue_crud/templates/example/users/index.json.jbuilder +15 -0
  79. data/lib/generators/vue_crud/templates/example/users/show.json.jbuilder +11 -0
  80. data/lib/generators/vue_crud/templates/example/users_controller.rb +85 -0
  81. data/lib/generators/vue_crud/vuejs_generator.rb +10 -0
  82. data/lib/vue_crud/version.rb +1 -1
  83. data/vendor/assets/javascripts/vue_crud.js +24 -3
  84. data/vendor/assets/stylesheets/vue_crud.css +0 -2
  85. metadata +80 -6
  86. data/vue_crud-0.1.5.gem +0 -0
  87. data/vue_crud-0.1.6.gem +0 -0
  88. data/vue_crud-0.1.7.gem +0 -0
  89. data/vue_crud-0.1.8.gem +0 -0
  90. data/vue_crud-0.1.9.gem +0 -0
@@ -0,0 +1,3148 @@
1
+ /*!
2
+ * # Semantic UI 2.2.4 - Icon
3
+ * http://github.com/semantic-org/semantic-ui/
4
+ *
5
+ *
6
+ * Released under the MIT license
7
+ * http://opensource.org/licenses/MIT
8
+ *
9
+ */
10
+
11
+
12
+ /*******************************
13
+ Icon
14
+ *******************************/
15
+
16
+ @font-face {
17
+ font-family: 'Icons';
18
+ src: font-url("semantic-ui/icons.eot");
19
+ src: font-url("semantic-ui/icons.eot?#iefix") format('embedded-opentype'), font-url("semantic-ui/icons.woff2") format('woff2'), font-url("semantic-ui/icons.woff") format('woff'), font-url("semantic-ui/icons.ttf") format('truetype'), font-url("semantic-ui/icons.svg#icons") format('svg');
20
+ font-style: normal;
21
+ font-weight: normal;
22
+ font-variant: normal;
23
+ text-decoration: inherit;
24
+ text-transform: none;
25
+ }
26
+ i.icon {
27
+ display: inline-block;
28
+ opacity: 1;
29
+ margin: 0em 0.25rem 0em 0em;
30
+ width: 1.18em;
31
+ height: 1em;
32
+ font-family: 'Icons';
33
+ font-style: normal;
34
+ font-weight: normal;
35
+ text-decoration: inherit;
36
+ text-align: center;
37
+ speak: none;
38
+ font-smoothing: antialiased;
39
+ -moz-osx-font-smoothing: grayscale;
40
+ -webkit-font-smoothing: antialiased;
41
+ -webkit-backface-visibility: hidden;
42
+ backface-visibility: hidden;
43
+ }
44
+ i.icon:before {
45
+ background: none !important;
46
+ }
47
+
48
+
49
+ /*******************************
50
+ Types
51
+ *******************************/
52
+
53
+
54
+ /*--------------
55
+ Loading
56
+ ---------------*/
57
+
58
+ i.icon.loading {
59
+ height: 1em;
60
+ line-height: 1;
61
+ -webkit-animation: icon-loading 2s linear infinite;
62
+ animation: icon-loading 2s linear infinite;
63
+ }
64
+ @-webkit-keyframes icon-loading {
65
+ from {
66
+ -webkit-transform: rotate(0deg);
67
+ transform: rotate(0deg);
68
+ }
69
+ to {
70
+ -webkit-transform: rotate(360deg);
71
+ transform: rotate(360deg);
72
+ }
73
+ }
74
+ @keyframes icon-loading {
75
+ from {
76
+ -webkit-transform: rotate(0deg);
77
+ transform: rotate(0deg);
78
+ }
79
+ to {
80
+ -webkit-transform: rotate(360deg);
81
+ transform: rotate(360deg);
82
+ }
83
+ }
84
+
85
+
86
+ /*******************************
87
+ States
88
+ *******************************/
89
+
90
+ i.icon.hover {
91
+ opacity: 1 !important;
92
+ }
93
+ i.icon.active {
94
+ opacity: 1 !important;
95
+ }
96
+ i.emphasized.icon {
97
+ opacity: 1 !important;
98
+ }
99
+ i.disabled.icon {
100
+ opacity: 0.45 !important;
101
+ }
102
+
103
+
104
+ /*******************************
105
+ Variations
106
+ *******************************/
107
+
108
+
109
+ /*-------------------
110
+ Fitted
111
+ --------------------*/
112
+
113
+ i.fitted.icon {
114
+ width: auto;
115
+ margin: 0em;
116
+ }
117
+
118
+ /*-------------------
119
+ Link
120
+ --------------------*/
121
+
122
+ i.link.icon,
123
+ i.link.icons {
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
+ i.link.icons:hover {
131
+ opacity: 1 !important;
132
+ }
133
+
134
+ /*-------------------
135
+ Circular
136
+ --------------------*/
137
+
138
+ i.circular.icon {
139
+ border-radius: 500em !important;
140
+ line-height: 1 !important;
141
+ padding: 0.5em 0.5em !important;
142
+ box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
143
+ width: 2em !important;
144
+ height: 2em !important;
145
+ }
146
+ i.circular.inverted.icon {
147
+ border: none;
148
+ box-shadow: none;
149
+ }
150
+
151
+ /*-------------------
152
+ Flipped
153
+ --------------------*/
154
+
155
+ i.flipped.icon,
156
+ i.horizontally.flipped.icon {
157
+ -webkit-transform: scale(-1, 1);
158
+ -ms-transform: scale(-1, 1);
159
+ transform: scale(-1, 1);
160
+ }
161
+ i.vertically.flipped.icon {
162
+ -webkit-transform: scale(1, -1);
163
+ -ms-transform: scale(1, -1);
164
+ transform: scale(1, -1);
165
+ }
166
+
167
+ /*-------------------
168
+ Rotated
169
+ --------------------*/
170
+
171
+ i.rotated.icon,
172
+ i.right.rotated.icon,
173
+ i.clockwise.rotated.icon {
174
+ -webkit-transform: rotate(90deg);
175
+ -ms-transform: rotate(90deg);
176
+ transform: rotate(90deg);
177
+ }
178
+ i.left.rotated.icon,
179
+ i.counterclockwise.rotated.icon {
180
+ -webkit-transform: rotate(-90deg);
181
+ -ms-transform: rotate(-90deg);
182
+ transform: rotate(-90deg);
183
+ }
184
+
185
+ /*-------------------
186
+ Bordered
187
+ --------------------*/
188
+
189
+ i.bordered.icon {
190
+ line-height: 1;
191
+ vertical-align: baseline;
192
+ width: 2em;
193
+ height: 2em;
194
+ padding: 0.5em 0.41em !important;
195
+ box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
196
+ }
197
+ i.bordered.inverted.icon {
198
+ border: none;
199
+ box-shadow: none;
200
+ }
201
+
202
+ /*-------------------
203
+ Inverted
204
+ --------------------*/
205
+
206
+
207
+ /* Inverted Shapes */
208
+ i.inverted.bordered.icon,
209
+ i.inverted.circular.icon {
210
+ background-color: #1B1C1D !important;
211
+ color: #FFFFFF !important;
212
+ }
213
+ i.inverted.icon {
214
+ color: #FFFFFF;
215
+ }
216
+
217
+ /*-------------------
218
+ Colors
219
+ --------------------*/
220
+
221
+
222
+ /* Red */
223
+ i.red.icon {
224
+ color: #DB2828 !important;
225
+ }
226
+ i.inverted.red.icon {
227
+ color: #FF695E !important;
228
+ }
229
+ i.inverted.bordered.red.icon,
230
+ i.inverted.circular.red.icon {
231
+ background-color: #DB2828 !important;
232
+ color: #FFFFFF !important;
233
+ }
234
+
235
+ /* Orange */
236
+ i.orange.icon {
237
+ color: #F2711C !important;
238
+ }
239
+ i.inverted.orange.icon {
240
+ color: #FF851B !important;
241
+ }
242
+ i.inverted.bordered.orange.icon,
243
+ i.inverted.circular.orange.icon {
244
+ background-color: #F2711C !important;
245
+ color: #FFFFFF !important;
246
+ }
247
+
248
+ /* Yellow */
249
+ i.yellow.icon {
250
+ color: #FBBD08 !important;
251
+ }
252
+ i.inverted.yellow.icon {
253
+ color: #FFE21F !important;
254
+ }
255
+ i.inverted.bordered.yellow.icon,
256
+ i.inverted.circular.yellow.icon {
257
+ background-color: #FBBD08 !important;
258
+ color: #FFFFFF !important;
259
+ }
260
+
261
+ /* Olive */
262
+ i.olive.icon {
263
+ color: #B5CC18 !important;
264
+ }
265
+ i.inverted.olive.icon {
266
+ color: #D9E778 !important;
267
+ }
268
+ i.inverted.bordered.olive.icon,
269
+ i.inverted.circular.olive.icon {
270
+ background-color: #B5CC18 !important;
271
+ color: #FFFFFF !important;
272
+ }
273
+
274
+ /* Green */
275
+ i.green.icon {
276
+ color: #21BA45 !important;
277
+ }
278
+ i.inverted.green.icon {
279
+ color: #2ECC40 !important;
280
+ }
281
+ i.inverted.bordered.green.icon,
282
+ i.inverted.circular.green.icon {
283
+ background-color: #21BA45 !important;
284
+ color: #FFFFFF !important;
285
+ }
286
+
287
+ /* Teal */
288
+ i.teal.icon {
289
+ color: #00B5AD !important;
290
+ }
291
+ i.inverted.teal.icon {
292
+ color: #6DFFFF !important;
293
+ }
294
+ i.inverted.bordered.teal.icon,
295
+ i.inverted.circular.teal.icon {
296
+ background-color: #00B5AD !important;
297
+ color: #FFFFFF !important;
298
+ }
299
+
300
+ /* Blue */
301
+ i.blue.icon {
302
+ color: #2185D0 !important;
303
+ }
304
+ i.inverted.blue.icon {
305
+ color: #54C8FF !important;
306
+ }
307
+ i.inverted.bordered.blue.icon,
308
+ i.inverted.circular.blue.icon {
309
+ background-color: #2185D0 !important;
310
+ color: #FFFFFF !important;
311
+ }
312
+
313
+ /* Violet */
314
+ i.violet.icon {
315
+ color: #6435C9 !important;
316
+ }
317
+ i.inverted.violet.icon {
318
+ color: #A291FB !important;
319
+ }
320
+ i.inverted.bordered.violet.icon,
321
+ i.inverted.circular.violet.icon {
322
+ background-color: #6435C9 !important;
323
+ color: #FFFFFF !important;
324
+ }
325
+
326
+ /* Purple */
327
+ i.purple.icon {
328
+ color: #A333C8 !important;
329
+ }
330
+ i.inverted.purple.icon {
331
+ color: #DC73FF !important;
332
+ }
333
+ i.inverted.bordered.purple.icon,
334
+ i.inverted.circular.purple.icon {
335
+ background-color: #A333C8 !important;
336
+ color: #FFFFFF !important;
337
+ }
338
+
339
+ /* Pink */
340
+ i.pink.icon {
341
+ color: #E03997 !important;
342
+ }
343
+ i.inverted.pink.icon {
344
+ color: #FF8EDF !important;
345
+ }
346
+ i.inverted.bordered.pink.icon,
347
+ i.inverted.circular.pink.icon {
348
+ background-color: #E03997 !important;
349
+ color: #FFFFFF !important;
350
+ }
351
+
352
+ /* Brown */
353
+ i.brown.icon {
354
+ color: #A5673F !important;
355
+ }
356
+ i.inverted.brown.icon {
357
+ color: #D67C1C !important;
358
+ }
359
+ i.inverted.bordered.brown.icon,
360
+ i.inverted.circular.brown.icon {
361
+ background-color: #A5673F !important;
362
+ color: #FFFFFF !important;
363
+ }
364
+
365
+ /* Grey */
366
+ i.grey.icon {
367
+ color: #767676 !important;
368
+ }
369
+ i.inverted.grey.icon {
370
+ color: #DCDDDE !important;
371
+ }
372
+ i.inverted.bordered.grey.icon,
373
+ i.inverted.circular.grey.icon {
374
+ background-color: #767676 !important;
375
+ color: #FFFFFF !important;
376
+ }
377
+
378
+ /* Black */
379
+ i.black.icon {
380
+ color: #1B1C1D !important;
381
+ }
382
+ i.inverted.black.icon {
383
+ color: #545454 !important;
384
+ }
385
+ i.inverted.bordered.black.icon,
386
+ i.inverted.circular.black.icon {
387
+ background-color: #1B1C1D !important;
388
+ color: #FFFFFF !important;
389
+ }
390
+
391
+ /*-------------------
392
+ Sizes
393
+ --------------------*/
394
+
395
+ i.mini.icon,
396
+ i.mini.icons {
397
+ line-height: 1;
398
+ font-size: 0.4em;
399
+ }
400
+ i.tiny.icon,
401
+ i.tiny.icons {
402
+ line-height: 1;
403
+ font-size: 0.5em;
404
+ }
405
+ i.small.icon,
406
+ i.small.icons {
407
+ line-height: 1;
408
+ font-size: 0.75em;
409
+ }
410
+ i.icon,
411
+ i.icons {
412
+ font-size: 1em;
413
+ }
414
+ i.large.icon,
415
+ i.large.icons {
416
+ line-height: 1;
417
+ vertical-align: middle;
418
+ font-size: 1.5em;
419
+ }
420
+ i.big.icon,
421
+ i.big.icons {
422
+ line-height: 1;
423
+ vertical-align: middle;
424
+ font-size: 2em;
425
+ }
426
+ i.huge.icon,
427
+ i.huge.icons {
428
+ line-height: 1;
429
+ vertical-align: middle;
430
+ font-size: 4em;
431
+ }
432
+ i.massive.icon,
433
+ i.massive.icons {
434
+ line-height: 1;
435
+ vertical-align: middle;
436
+ font-size: 8em;
437
+ }
438
+
439
+
440
+ /*******************************
441
+ Groups
442
+ *******************************/
443
+
444
+ i.icons {
445
+ display: inline-block;
446
+ position: relative;
447
+ line-height: 1;
448
+ }
449
+ i.icons .icon {
450
+ position: absolute;
451
+ top: 50%;
452
+ left: 50%;
453
+ -webkit-transform: translateX(-50%) translateY(-50%);
454
+ -ms-transform: translateX(-50%) translateY(-50%);
455
+ transform: translateX(-50%) translateY(-50%);
456
+ margin: 0em;
457
+ margin: 0;
458
+ }
459
+ i.icons .icon:first-child {
460
+ position: static;
461
+ width: auto;
462
+ height: auto;
463
+ vertical-align: top;
464
+ -webkit-transform: none;
465
+ -ms-transform: none;
466
+ transform: none;
467
+ margin-right: 0.25rem;
468
+ }
469
+
470
+ /* Corner Icon */
471
+ i.icons .corner.icon {
472
+ top: auto;
473
+ left: auto;
474
+ right: 0;
475
+ bottom: 0;
476
+ -webkit-transform: none;
477
+ -ms-transform: none;
478
+ transform: none;
479
+ font-size: 0.45em;
480
+ text-shadow: -1px -1px 0 #FFFFFF, 1px -1px 0 #FFFFFF, -1px 1px 0 #FFFFFF, 1px 1px 0 #FFFFFF;
481
+ }
482
+ i.icons .inverted.corner.icon {
483
+ text-shadow: -1px -1px 0 #1B1C1D, 1px -1px 0 #1B1C1D, -1px 1px 0 #1B1C1D, 1px 1px 0 #1B1C1D;
484
+ }
485
+ /*
486
+ * Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
487
+ * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
488
+ */
489
+
490
+
491
+ /*******************************
492
+
493
+ Semantic-UI integration of font-awesome :
494
+
495
+ ///class names are separated
496
+ i.icon.circle => i.icon.circle
497
+ i.icon.circle-o => i.icon.circle.outline
498
+
499
+ //abbreviation are replaced by full letters:
500
+ i.icon.ellipsis-h => i.icon.ellipsis.horizontal
501
+ i.icon.ellipsis-v => i.icon.ellipsis.vertical
502
+ .alpha => .i.icon.alphabet
503
+ .asc => .i.icon.ascending
504
+ .desc => .i.icon.descending
505
+ .alt =>.alternate
506
+
507
+ ASCII order is conserved for easier maintenance.
508
+
509
+ Icons that only have one style 'outline', 'square' etc do not require this class
510
+ for instance `lemon icon` not `lemon outline icon` since there is only one lemon
511
+
512
+ *******************************/
513
+
514
+
515
+
516
+ /*******************************
517
+ Icons
518
+ *******************************/
519
+
520
+
521
+ /* Web Content */
522
+ i.icon.search:before {
523
+ content: "\f002";
524
+ }
525
+ i.icon.mail.outline:before {
526
+ content: "\f003";
527
+ }
528
+ i.icon.signal:before {
529
+ content: "\f012";
530
+ }
531
+ i.icon.setting:before {
532
+ content: "\f013";
533
+ }
534
+ i.icon.home:before {
535
+ content: "\f015";
536
+ }
537
+ i.icon.inbox:before {
538
+ content: "\f01c";
539
+ }
540
+ i.icon.browser:before {
541
+ content: "\f022";
542
+ }
543
+ i.icon.tag:before {
544
+ content: "\f02b";
545
+ }
546
+ i.icon.tags:before {
547
+ content: "\f02c";
548
+ }
549
+ i.icon.image:before {
550
+ content: "\f03e";
551
+ }
552
+ i.icon.calendar:before {
553
+ content: "\f073";
554
+ }
555
+ i.icon.comment:before {
556
+ content: "\f075";
557
+ }
558
+ i.icon.shop:before {
559
+ content: "\f07a";
560
+ }
561
+ i.icon.comments:before {
562
+ content: "\f086";
563
+ }
564
+ i.icon.external:before {
565
+ content: "\f08e";
566
+ }
567
+ i.icon.privacy:before {
568
+ content: "\f084";
569
+ }
570
+ i.icon.settings:before {
571
+ content: "\f085";
572
+ }
573
+ i.icon.comments:before {
574
+ content: "\f086";
575
+ }
576
+ i.icon.external:before {
577
+ content: "\f08e";
578
+ }
579
+ i.icon.trophy:before {
580
+ content: "\f091";
581
+ }
582
+ i.icon.payment:before {
583
+ content: "\f09d";
584
+ }
585
+ i.icon.feed:before {
586
+ content: "\f09e";
587
+ }
588
+ i.icon.alarm.outline:before {
589
+ content: "\f0a2";
590
+ }
591
+ i.icon.tasks:before {
592
+ content: "\f0ae";
593
+ }
594
+ i.icon.cloud:before {
595
+ content: "\f0c2";
596
+ }
597
+ i.icon.lab:before {
598
+ content: "\f0c3";
599
+ }
600
+ i.icon.mail:before {
601
+ content: "\f0e0";
602
+ }
603
+ i.icon.dashboard:before {
604
+ content: "\f0e4";
605
+ }
606
+ i.icon.comment.outline:before {
607
+ content: "\f0e5";
608
+ }
609
+ i.icon.comments.outline:before {
610
+ content: "\f0e6";
611
+ }
612
+ i.icon.sitemap:before {
613
+ content: "\f0e8";
614
+ }
615
+ i.icon.idea:before {
616
+ content: "\f0eb";
617
+ }
618
+ i.icon.alarm:before {
619
+ content: "\f0f3";
620
+ }
621
+ i.icon.terminal:before {
622
+ content: "\f120";
623
+ }
624
+ i.icon.code:before {
625
+ content: "\f121";
626
+ }
627
+ i.icon.protect:before {
628
+ content: "\f132";
629
+ }
630
+ i.icon.calendar.outline:before {
631
+ content: "\f133";
632
+ }
633
+ i.icon.ticket:before {
634
+ content: "\f145";
635
+ }
636
+ i.icon.external.square:before {
637
+ content: "\f14c";
638
+ }
639
+ i.icon.bug:before {
640
+ content: "\f188";
641
+ }
642
+ i.icon.mail.square:before {
643
+ content: "\f199";
644
+ }
645
+ i.icon.history:before {
646
+ content: "\f1da";
647
+ }
648
+ i.icon.options:before {
649
+ content: "\f1de";
650
+ }
651
+ i.icon.text.telephone:before {
652
+ content: "\f1e4";
653
+ }
654
+ i.icon.find:before {
655
+ content: "\f1e5";
656
+ }
657
+ i.icon.wifi:before {
658
+ content: "\f1eb";
659
+ }
660
+ i.icon.alarm.mute:before {
661
+ content: "\f1f6";
662
+ }
663
+ i.icon.alarm.mute.outline:before {
664
+ content: "\f1f7";
665
+ }
666
+ i.icon.copyright:before {
667
+ content: "\f1f9";
668
+ }
669
+ i.icon.at:before {
670
+ content: "\f1fa";
671
+ }
672
+ i.icon.eyedropper:before {
673
+ content: "\f1fb";
674
+ }
675
+ i.icon.paint.brush:before {
676
+ content: "\f1fc";
677
+ }
678
+ i.icon.heartbeat:before {
679
+ content: "\f21e";
680
+ }
681
+ i.icon.mouse.pointer:before {
682
+ content: "\f245";
683
+ }
684
+ i.icon.hourglass.empty:before {
685
+ content: "\f250";
686
+ }
687
+ i.icon.hourglass.start:before {
688
+ content: "\f251";
689
+ }
690
+ i.icon.hourglass.half:before {
691
+ content: "\f252";
692
+ }
693
+ i.icon.hourglass.end:before {
694
+ content: "\f253";
695
+ }
696
+ i.icon.hourglass.full:before {
697
+ content: "\f254";
698
+ }
699
+ i.icon.hand.pointer:before {
700
+ content: "\f25a";
701
+ }
702
+ i.icon.trademark:before {
703
+ content: "\f25c";
704
+ }
705
+ i.icon.registered:before {
706
+ content: "\f25d";
707
+ }
708
+ i.icon.creative.commons:before {
709
+ content: "\f25e";
710
+ }
711
+ i.icon.add.to.calendar:before {
712
+ content: "\f271";
713
+ }
714
+ i.icon.remove.from.calendar:before {
715
+ content: "\f272";
716
+ }
717
+ i.icon.delete.calendar:before {
718
+ content: "\f273";
719
+ }
720
+ i.icon.checked.calendar:before {
721
+ content: "\f274";
722
+ }
723
+ i.icon.industry:before {
724
+ content: "\f275";
725
+ }
726
+ i.icon.shopping.bag:before {
727
+ content: "\f290";
728
+ }
729
+ i.icon.shopping.basket:before {
730
+ content: "\f291";
731
+ }
732
+ i.icon.hashtag:before {
733
+ content: "\f292";
734
+ }
735
+ i.icon.percent:before {
736
+ content: "\f295";
737
+ }
738
+
739
+ /* User Actions */
740
+ i.icon.wait:before {
741
+ content: "\f017";
742
+ }
743
+ i.icon.download:before {
744
+ content: "\f019";
745
+ }
746
+ i.icon.repeat:before {
747
+ content: "\f01e";
748
+ }
749
+ i.icon.refresh:before {
750
+ content: "\f021";
751
+ }
752
+ i.icon.lock:before {
753
+ content: "\f023";
754
+ }
755
+ i.icon.bookmark:before {
756
+ content: "\f02e";
757
+ }
758
+ i.icon.print:before {
759
+ content: "\f02f";
760
+ }
761
+ i.icon.write:before {
762
+ content: "\f040";
763
+ }
764
+ i.icon.adjust:before {
765
+ content: "\f042";
766
+ }
767
+ i.icon.theme:before {
768
+ content: "\f043";
769
+ }
770
+ i.icon.edit:before {
771
+ content: "\f044";
772
+ }
773
+ i.icon.external.share:before {
774
+ content: "\f045";
775
+ }
776
+ i.icon.ban:before {
777
+ content: "\f05e";
778
+ }
779
+ i.icon.mail.forward:before {
780
+ content: "\f064";
781
+ }
782
+ i.icon.share:before {
783
+ content: "\f064";
784
+ }
785
+ i.icon.expand:before {
786
+ content: "\f065";
787
+ }
788
+ i.icon.compress:before {
789
+ content: "\f066";
790
+ }
791
+ i.icon.unhide:before {
792
+ content: "\f06e";
793
+ }
794
+ i.icon.hide:before {
795
+ content: "\f070";
796
+ }
797
+ i.icon.random:before {
798
+ content: "\f074";
799
+ }
800
+ i.icon.retweet:before {
801
+ content: "\f079";
802
+ }
803
+ i.icon.sign.out:before {
804
+ content: "\f08b";
805
+ }
806
+ i.icon.pin:before {
807
+ content: "\f08d";
808
+ }
809
+ i.icon.sign.in:before {
810
+ content: "\f090";
811
+ }
812
+ i.icon.upload:before {
813
+ content: "\f093";
814
+ }
815
+ i.icon.call:before {
816
+ content: "\f095";
817
+ }
818
+ i.icon.remove.bookmark:before {
819
+ content: "\f097";
820
+ }
821
+ i.icon.call.square:before {
822
+ content: "\f098";
823
+ }
824
+ i.icon.unlock:before {
825
+ content: "\f09c";
826
+ }
827
+ i.icon.configure:before {
828
+ content: "\f0ad";
829
+ }
830
+ i.icon.filter:before {
831
+ content: "\f0b0";
832
+ }
833
+ i.icon.wizard:before {
834
+ content: "\f0d0";
835
+ }
836
+ i.icon.undo:before {
837
+ content: "\f0e2";
838
+ }
839
+ i.icon.exchange:before {
840
+ content: "\f0ec";
841
+ }
842
+ i.icon.cloud.download:before {
843
+ content: "\f0ed";
844
+ }
845
+ i.icon.cloud.upload:before {
846
+ content: "\f0ee";
847
+ }
848
+ i.icon.reply:before {
849
+ content: "\f112";
850
+ }
851
+ i.icon.reply.all:before {
852
+ content: "\f122";
853
+ }
854
+ i.icon.erase:before {
855
+ content: "\f12d";
856
+ }
857
+ i.icon.unlock.alternate:before {
858
+ content: "\f13e";
859
+ }
860
+ i.icon.write.square:before {
861
+ content: "\f14b";
862
+ }
863
+ i.icon.share.square:before {
864
+ content: "\f14d";
865
+ }
866
+ i.icon.archive:before {
867
+ content: "\f187";
868
+ }
869
+ i.icon.translate:before {
870
+ content: "\f1ab";
871
+ }
872
+ i.icon.recycle:before {
873
+ content: "\f1b8";
874
+ }
875
+ i.icon.send:before {
876
+ content: "\f1d8";
877
+ }
878
+ i.icon.send.outline:before {
879
+ content: "\f1d9";
880
+ }
881
+ i.icon.share.alternate:before {
882
+ content: "\f1e0";
883
+ }
884
+ i.icon.share.alternate.square:before {
885
+ content: "\f1e1";
886
+ }
887
+ i.icon.add.to.cart:before {
888
+ content: "\f217";
889
+ }
890
+ i.icon.in.cart:before {
891
+ content: "\f218";
892
+ }
893
+ i.icon.add.user:before {
894
+ content: "\f234";
895
+ }
896
+ i.icon.remove.user:before {
897
+ content: "\f235";
898
+ }
899
+ i.icon.object.group:before {
900
+ content: "\f247";
901
+ }
902
+ i.icon.object.ungroup:before {
903
+ content: "\f248";
904
+ }
905
+ i.icon.clone:before {
906
+ content: "\f24d";
907
+ }
908
+ i.icon.talk:before {
909
+ content: "\f27a";
910
+ }
911
+ i.icon.talk.outline:before {
912
+ content: "\f27b";
913
+ }
914
+
915
+ /* Messages */
916
+ i.icon.help.circle:before {
917
+ content: "\f059";
918
+ }
919
+ i.icon.info.circle:before {
920
+ content: "\f05a";
921
+ }
922
+ i.icon.warning.circle:before {
923
+ content: "\f06a";
924
+ }
925
+ i.icon.warning.sign:before {
926
+ content: "\f071";
927
+ }
928
+ i.icon.announcement:before {
929
+ content: "\f0a1";
930
+ }
931
+ i.icon.help:before {
932
+ content: "\f128";
933
+ }
934
+ i.icon.info:before {
935
+ content: "\f129";
936
+ }
937
+ i.icon.warning:before {
938
+ content: "\f12a";
939
+ }
940
+ i.icon.birthday:before {
941
+ content: "\f1fd";
942
+ }
943
+ i.icon.help.circle.outline:before {
944
+ content: "\f29c";
945
+ }
946
+
947
+ /* Users */
948
+ i.icon.user:before {
949
+ content: "\f007";
950
+ }
951
+ i.icon.users:before {
952
+ content: "\f0c0";
953
+ }
954
+ i.icon.doctor:before {
955
+ content: "\f0f0";
956
+ }
957
+ i.icon.handicap:before {
958
+ content: "\f193";
959
+ }
960
+ i.icon.student:before {
961
+ content: "\f19d";
962
+ }
963
+ i.icon.child:before {
964
+ content: "\f1ae";
965
+ }
966
+ i.icon.spy:before {
967
+ content: "\f21b";
968
+ }
969
+
970
+ /* Gender & Sexuality */
971
+ i.icon.female:before {
972
+ content: "\f182";
973
+ }
974
+ i.icon.male:before {
975
+ content: "\f183";
976
+ }
977
+ i.icon.woman:before {
978
+ content: "\f221";
979
+ }
980
+ i.icon.man:before {
981
+ content: "\f222";
982
+ }
983
+ i.icon.non.binary.transgender:before {
984
+ content: "\f223";
985
+ }
986
+ i.icon.intergender:before {
987
+ content: "\f224";
988
+ }
989
+ i.icon.transgender:before {
990
+ content: "\f225";
991
+ }
992
+ i.icon.lesbian:before {
993
+ content: "\f226";
994
+ }
995
+ i.icon.gay:before {
996
+ content: "\f227";
997
+ }
998
+ i.icon.heterosexual:before {
999
+ content: "\f228";
1000
+ }
1001
+ i.icon.other.gender:before {
1002
+ content: "\f229";
1003
+ }
1004
+ i.icon.other.gender.vertical:before {
1005
+ content: "\f22a";
1006
+ }
1007
+ i.icon.other.gender.horizontal:before {
1008
+ content: "\f22b";
1009
+ }
1010
+ i.icon.neuter:before {
1011
+ content: "\f22c";
1012
+ }
1013
+ i.icon.genderless:before {
1014
+ content: "\f22d";
1015
+ }
1016
+
1017
+ /* Accessibility */
1018
+ i.icon.universal.access:before {
1019
+ content: "\f29a";
1020
+ }
1021
+ i.icon.wheelchair:before {
1022
+ content: "\f29b";
1023
+ }
1024
+ i.icon.blind:before {
1025
+ content: "\f29d";
1026
+ }
1027
+ i.icon.audio.description:before {
1028
+ content: "\f29e";
1029
+ }
1030
+ i.icon.volume.control.phone:before {
1031
+ content: "\f2a0";
1032
+ }
1033
+ i.icon.braille:before {
1034
+ content: "\f2a1";
1035
+ }
1036
+ i.icon.asl:before {
1037
+ content: "\f2a3";
1038
+ }
1039
+ i.icon.assistive.listening.systems:before {
1040
+ content: "\f2a2";
1041
+ }
1042
+ i.icon.deafness:before {
1043
+ content: "\f2a4";
1044
+ }
1045
+ i.icon.sign.language:before {
1046
+ content: "\f2a7";
1047
+ }
1048
+ i.icon.low.vision:before {
1049
+ content: "\f2a8";
1050
+ }
1051
+
1052
+ /* View Adjustment */
1053
+ i.icon.block.layout:before {
1054
+ content: "\f009";
1055
+ }
1056
+ i.icon.grid.layout:before {
1057
+ content: "\f00a";
1058
+ }
1059
+ i.icon.list.layout:before {
1060
+ content: "\f00b";
1061
+ }
1062
+ i.icon.zoom:before {
1063
+ content: "\f00e";
1064
+ }
1065
+ i.icon.zoom.out:before {
1066
+ content: "\f010";
1067
+ }
1068
+ i.icon.resize.vertical:before {
1069
+ content: "\f07d";
1070
+ }
1071
+ i.icon.resize.horizontal:before {
1072
+ content: "\f07e";
1073
+ }
1074
+ i.icon.maximize:before {
1075
+ content: "\f0b2";
1076
+ }
1077
+ i.icon.crop:before {
1078
+ content: "\f125";
1079
+ }
1080
+
1081
+ /* Literal Objects */
1082
+ i.icon.cocktail:before {
1083
+ content: "\f000";
1084
+ }
1085
+ i.icon.road:before {
1086
+ content: "\f018";
1087
+ }
1088
+ i.icon.flag:before {
1089
+ content: "\f024";
1090
+ }
1091
+ i.icon.book:before {
1092
+ content: "\f02d";
1093
+ }
1094
+ i.icon.gift:before {
1095
+ content: "\f06b";
1096
+ }
1097
+ i.icon.leaf:before {
1098
+ content: "\f06c";
1099
+ }
1100
+ i.icon.fire:before {
1101
+ content: "\f06d";
1102
+ }
1103
+ i.icon.plane:before {
1104
+ content: "\f072";
1105
+ }
1106
+ i.icon.magnet:before {
1107
+ content: "\f076";
1108
+ }
1109
+ i.icon.lemon:before {
1110
+ content: "\f094";
1111
+ }
1112
+ i.icon.world:before {
1113
+ content: "\f0ac";
1114
+ }
1115
+ i.icon.travel:before {
1116
+ content: "\f0b1";
1117
+ }
1118
+ i.icon.shipping:before {
1119
+ content: "\f0d1";
1120
+ }
1121
+ i.icon.money:before {
1122
+ content: "\f0d6";
1123
+ }
1124
+ i.icon.legal:before {
1125
+ content: "\f0e3";
1126
+ }
1127
+ i.icon.lightning:before {
1128
+ content: "\f0e7";
1129
+ }
1130
+ i.icon.umbrella:before {
1131
+ content: "\f0e9";
1132
+ }
1133
+ i.icon.treatment:before {
1134
+ content: "\f0f1";
1135
+ }
1136
+ i.icon.suitcase:before {
1137
+ content: "\f0f2";
1138
+ }
1139
+ i.icon.bar:before {
1140
+ content: "\f0fc";
1141
+ }
1142
+ i.icon.flag.outline:before {
1143
+ content: "\f11d";
1144
+ }
1145
+ i.icon.flag.checkered:before {
1146
+ content: "\f11e";
1147
+ }
1148
+ i.icon.puzzle:before {
1149
+ content: "\f12e";
1150
+ }
1151
+ i.icon.fire.extinguisher:before {
1152
+ content: "\f134";
1153
+ }
1154
+ i.icon.rocket:before {
1155
+ content: "\f135";
1156
+ }
1157
+ i.icon.anchor:before {
1158
+ content: "\f13d";
1159
+ }
1160
+ i.icon.bullseye:before {
1161
+ content: "\f140";
1162
+ }
1163
+ i.icon.sun:before {
1164
+ content: "\f185";
1165
+ }
1166
+ i.icon.moon:before {
1167
+ content: "\f186";
1168
+ }
1169
+ i.icon.fax:before {
1170
+ content: "\f1ac";
1171
+ }
1172
+ i.icon.life.ring:before {
1173
+ content: "\f1cd";
1174
+ }
1175
+ i.icon.bomb:before {
1176
+ content: "\f1e2";
1177
+ }
1178
+ i.icon.soccer:before {
1179
+ content: "\f1e3";
1180
+ }
1181
+ i.icon.calculator:before {
1182
+ content: "\f1ec";
1183
+ }
1184
+ i.icon.diamond:before {
1185
+ content: "\f219";
1186
+ }
1187
+ i.icon.sticky.note:before {
1188
+ content: "\f249";
1189
+ }
1190
+ i.icon.sticky.note.outline:before {
1191
+ content: "\f24a";
1192
+ }
1193
+ i.icon.law:before {
1194
+ content: "\f24e";
1195
+ }
1196
+ i.icon.hand.peace:before {
1197
+ content: "\f25b";
1198
+ }
1199
+ i.icon.hand.rock:before {
1200
+ content: "\f255";
1201
+ }
1202
+ i.icon.hand.paper:before {
1203
+ content: "\f256";
1204
+ }
1205
+ i.icon.hand.scissors:before {
1206
+ content: "\f257";
1207
+ }
1208
+ i.icon.hand.lizard:before {
1209
+ content: "\f258";
1210
+ }
1211
+ i.icon.hand.spock:before {
1212
+ content: "\f259";
1213
+ }
1214
+ i.icon.tv:before {
1215
+ content: "\f26c";
1216
+ }
1217
+
1218
+ /* Shapes */
1219
+ i.icon.crosshairs:before {
1220
+ content: "\f05b";
1221
+ }
1222
+ i.icon.asterisk:before {
1223
+ content: "\f069";
1224
+ }
1225
+ i.icon.square.outline:before {
1226
+ content: "\f096";
1227
+ }
1228
+ i.icon.certificate:before {
1229
+ content: "\f0a3";
1230
+ }
1231
+ i.icon.square:before {
1232
+ content: "\f0c8";
1233
+ }
1234
+ i.icon.quote.left:before {
1235
+ content: "\f10d";
1236
+ }
1237
+ i.icon.quote.right:before {
1238
+ content: "\f10e";
1239
+ }
1240
+ i.icon.spinner:before {
1241
+ content: "\f110";
1242
+ }
1243
+ i.icon.circle:before {
1244
+ content: "\f111";
1245
+ }
1246
+ i.icon.ellipsis.horizontal:before {
1247
+ content: "\f141";
1248
+ }
1249
+ i.icon.ellipsis.vertical:before {
1250
+ content: "\f142";
1251
+ }
1252
+ i.icon.cube:before {
1253
+ content: "\f1b2";
1254
+ }
1255
+ i.icon.cubes:before {
1256
+ content: "\f1b3";
1257
+ }
1258
+ i.icon.circle.notched:before {
1259
+ content: "\f1ce";
1260
+ }
1261
+ i.icon.circle.thin:before {
1262
+ content: "\f1db";
1263
+ }
1264
+
1265
+ /* Item Selection */
1266
+ i.icon.checkmark:before {
1267
+ content: "\f00c";
1268
+ }
1269
+ i.icon.remove:before {
1270
+ content: "\f00d";
1271
+ }
1272
+ i.icon.checkmark.box:before {
1273
+ content: "\f046";
1274
+ }
1275
+ i.icon.move:before {
1276
+ content: "\f047";
1277
+ }
1278
+ i.icon.add.circle:before {
1279
+ content: "\f055";
1280
+ }
1281
+ i.icon.minus.circle:before {
1282
+ content: "\f056";
1283
+ }
1284
+ i.icon.remove.circle:before {
1285
+ content: "\f057";
1286
+ }
1287
+ i.icon.check.circle:before {
1288
+ content: "\f058";
1289
+ }
1290
+ i.icon.remove.circle.outline:before {
1291
+ content: "\f05c";
1292
+ }
1293
+ i.icon.check.circle.outline:before {
1294
+ content: "\f05d";
1295
+ }
1296
+ i.icon.plus:before {
1297
+ content: "\f067";
1298
+ }
1299
+ i.icon.minus:before {
1300
+ content: "\f068";
1301
+ }
1302
+ i.icon.add.square:before {
1303
+ content: "\f0fe";
1304
+ }
1305
+ i.icon.radio:before {
1306
+ content: "\f10c";
1307
+ }
1308
+ i.icon.minus.square:before {
1309
+ content: "\f146";
1310
+ }
1311
+ i.icon.minus.square.outline:before {
1312
+ content: "\f147";
1313
+ }
1314
+ i.icon.check.square:before {
1315
+ content: "\f14a";
1316
+ }
1317
+ i.icon.selected.radio:before {
1318
+ content: "\f192";
1319
+ }
1320
+ i.icon.plus.square.outline:before {
1321
+ content: "\f196";
1322
+ }
1323
+ i.icon.toggle.off:before {
1324
+ content: "\f204";
1325
+ }
1326
+ i.icon.toggle.on:before {
1327
+ content: "\f205";
1328
+ }
1329
+
1330
+ /* Media */
1331
+ i.icon.film:before {
1332
+ content: "\f008";
1333
+ }
1334
+ i.icon.sound:before {
1335
+ content: "\f025";
1336
+ }
1337
+ i.icon.photo:before {
1338
+ content: "\f030";
1339
+ }
1340
+ i.icon.bar.chart:before {
1341
+ content: "\f080";
1342
+ }
1343
+ i.icon.camera.retro:before {
1344
+ content: "\f083";
1345
+ }
1346
+ i.icon.newspaper:before {
1347
+ content: "\f1ea";
1348
+ }
1349
+ i.icon.area.chart:before {
1350
+ content: "\f1fe";
1351
+ }
1352
+ i.icon.pie.chart:before {
1353
+ content: "\f200";
1354
+ }
1355
+ i.icon.line.chart:before {
1356
+ content: "\f201";
1357
+ }
1358
+
1359
+ /* Pointers */
1360
+ i.icon.arrow.circle.outline.down:before {
1361
+ content: "\f01a";
1362
+ }
1363
+ i.icon.arrow.circle.outline.up:before {
1364
+ content: "\f01b";
1365
+ }
1366
+ i.icon.chevron.left:before {
1367
+ content: "\f053";
1368
+ }
1369
+ i.icon.chevron.right:before {
1370
+ content: "\f054";
1371
+ }
1372
+ i.icon.arrow.left:before {
1373
+ content: "\f060";
1374
+ }
1375
+ i.icon.arrow.right:before {
1376
+ content: "\f061";
1377
+ }
1378
+ i.icon.arrow.up:before {
1379
+ content: "\f062";
1380
+ }
1381
+ i.icon.arrow.down:before {
1382
+ content: "\f063";
1383
+ }
1384
+ i.icon.chevron.up:before {
1385
+ content: "\f077";
1386
+ }
1387
+ i.icon.chevron.down:before {
1388
+ content: "\f078";
1389
+ }
1390
+ i.icon.pointing.right:before {
1391
+ content: "\f0a4";
1392
+ }
1393
+ i.icon.pointing.left:before {
1394
+ content: "\f0a5";
1395
+ }
1396
+ i.icon.pointing.up:before {
1397
+ content: "\f0a6";
1398
+ }
1399
+ i.icon.pointing.down:before {
1400
+ content: "\f0a7";
1401
+ }
1402
+ i.icon.arrow.circle.left:before {
1403
+ content: "\f0a8";
1404
+ }
1405
+ i.icon.arrow.circle.right:before {
1406
+ content: "\f0a9";
1407
+ }
1408
+ i.icon.arrow.circle.up:before {
1409
+ content: "\f0aa";
1410
+ }
1411
+ i.icon.arrow.circle.down:before {
1412
+ content: "\f0ab";
1413
+ }
1414
+ i.icon.caret.down:before {
1415
+ content: "\f0d7";
1416
+ }
1417
+ i.icon.caret.up:before {
1418
+ content: "\f0d8";
1419
+ }
1420
+ i.icon.caret.left:before {
1421
+ content: "\f0d9";
1422
+ }
1423
+ i.icon.caret.right:before {
1424
+ content: "\f0da";
1425
+ }
1426
+ i.icon.angle.double.left:before {
1427
+ content: "\f100";
1428
+ }
1429
+ i.icon.angle.double.right:before {
1430
+ content: "\f101";
1431
+ }
1432
+ i.icon.angle.double.up:before {
1433
+ content: "\f102";
1434
+ }
1435
+ i.icon.angle.double.down:before {
1436
+ content: "\f103";
1437
+ }
1438
+ i.icon.angle.left:before {
1439
+ content: "\f104";
1440
+ }
1441
+ i.icon.angle.right:before {
1442
+ content: "\f105";
1443
+ }
1444
+ i.icon.angle.up:before {
1445
+ content: "\f106";
1446
+ }
1447
+ i.icon.angle.down:before {
1448
+ content: "\f107";
1449
+ }
1450
+ i.icon.chevron.circle.left:before {
1451
+ content: "\f137";
1452
+ }
1453
+ i.icon.chevron.circle.right:before {
1454
+ content: "\f138";
1455
+ }
1456
+ i.icon.chevron.circle.up:before {
1457
+ content: "\f139";
1458
+ }
1459
+ i.icon.chevron.circle.down:before {
1460
+ content: "\f13a";
1461
+ }
1462
+ i.icon.toggle.down:before {
1463
+ content: "\f150";
1464
+ }
1465
+ i.icon.toggle.up:before {
1466
+ content: "\f151";
1467
+ }
1468
+ i.icon.toggle.right:before {
1469
+ content: "\f152";
1470
+ }
1471
+ i.icon.long.arrow.down:before {
1472
+ content: "\f175";
1473
+ }
1474
+ i.icon.long.arrow.up:before {
1475
+ content: "\f176";
1476
+ }
1477
+ i.icon.long.arrow.left:before {
1478
+ content: "\f177";
1479
+ }
1480
+ i.icon.long.arrow.right:before {
1481
+ content: "\f178";
1482
+ }
1483
+ i.icon.arrow.circle.outline.right:before {
1484
+ content: "\f18e";
1485
+ }
1486
+ i.icon.arrow.circle.outline.left:before {
1487
+ content: "\f190";
1488
+ }
1489
+ i.icon.toggle.left:before {
1490
+ content: "\f191";
1491
+ }
1492
+
1493
+ /* Mobile */
1494
+ i.icon.tablet:before {
1495
+ content: "\f10a";
1496
+ }
1497
+ i.icon.mobile:before {
1498
+ content: "\f10b";
1499
+ }
1500
+ i.icon.battery.full:before {
1501
+ content: "\f240";
1502
+ }
1503
+ i.icon.battery.high:before {
1504
+ content: "\f241";
1505
+ }
1506
+ i.icon.battery.medium:before {
1507
+ content: "\f242";
1508
+ }
1509
+ i.icon.battery.low:before {
1510
+ content: "\f243";
1511
+ }
1512
+ i.icon.battery.empty:before {
1513
+ content: "\f244";
1514
+ }
1515
+
1516
+ /* Computer */
1517
+ i.icon.power:before {
1518
+ content: "\f011";
1519
+ }
1520
+ i.icon.trash.outline:before {
1521
+ content: "\f014";
1522
+ }
1523
+ i.icon.disk.outline:before {
1524
+ content: "\f0a0";
1525
+ }
1526
+ i.icon.desktop:before {
1527
+ content: "\f108";
1528
+ }
1529
+ i.icon.laptop:before {
1530
+ content: "\f109";
1531
+ }
1532
+ i.icon.game:before {
1533
+ content: "\f11b";
1534
+ }
1535
+ i.icon.keyboard:before {
1536
+ content: "\f11c";
1537
+ }
1538
+ i.icon.plug:before {
1539
+ content: "\f1e6";
1540
+ }
1541
+
1542
+ /* File System */
1543
+ i.icon.trash:before {
1544
+ content: "\f1f8";
1545
+ }
1546
+ i.icon.file.outline:before {
1547
+ content: "\f016";
1548
+ }
1549
+ i.icon.folder:before {
1550
+ content: "\f07b";
1551
+ }
1552
+ i.icon.folder.open:before {
1553
+ content: "\f07c";
1554
+ }
1555
+ i.icon.file.text.outline:before {
1556
+ content: "\f0f6";
1557
+ }
1558
+ i.icon.folder.outline:before {
1559
+ content: "\f114";
1560
+ }
1561
+ i.icon.folder.open.outline:before {
1562
+ content: "\f115";
1563
+ }
1564
+ i.icon.level.up:before {
1565
+ content: "\f148";
1566
+ }
1567
+ i.icon.level.down:before {
1568
+ content: "\f149";
1569
+ }
1570
+ i.icon.file:before {
1571
+ content: "\f15b";
1572
+ }
1573
+ i.icon.file.text:before {
1574
+ content: "\f15c";
1575
+ }
1576
+ i.icon.file.pdf.outline:before {
1577
+ content: "\f1c1";
1578
+ }
1579
+ i.icon.file.word.outline:before {
1580
+ content: "\f1c2";
1581
+ }
1582
+ i.icon.file.excel.outline:before {
1583
+ content: "\f1c3";
1584
+ }
1585
+ i.icon.file.powerpoint.outline:before {
1586
+ content: "\f1c4";
1587
+ }
1588
+ i.icon.file.image.outline:before {
1589
+ content: "\f1c5";
1590
+ }
1591
+ i.icon.file.archive.outline:before {
1592
+ content: "\f1c6";
1593
+ }
1594
+ i.icon.file.audio.outline:before {
1595
+ content: "\f1c7";
1596
+ }
1597
+ i.icon.file.video.outline:before {
1598
+ content: "\f1c8";
1599
+ }
1600
+ i.icon.file.code.outline:before {
1601
+ content: "\f1c9";
1602
+ }
1603
+
1604
+ /* Technologies */
1605
+ i.icon.qrcode:before {
1606
+ content: "\f029";
1607
+ }
1608
+ i.icon.barcode:before {
1609
+ content: "\f02a";
1610
+ }
1611
+ i.icon.rss:before {
1612
+ content: "\f09e";
1613
+ }
1614
+ i.icon.fork:before {
1615
+ content: "\f126";
1616
+ }
1617
+ i.icon.html5:before {
1618
+ content: "\f13b";
1619
+ }
1620
+ i.icon.css3:before {
1621
+ content: "\f13c";
1622
+ }
1623
+ i.icon.rss.square:before {
1624
+ content: "\f143";
1625
+ }
1626
+ i.icon.openid:before {
1627
+ content: "\f19b";
1628
+ }
1629
+ i.icon.database:before {
1630
+ content: "\f1c0";
1631
+ }
1632
+ i.icon.server:before {
1633
+ content: "\f233";
1634
+ }
1635
+ i.icon.usb:before {
1636
+ content: "\f287";
1637
+ }
1638
+ i.icon.bluetooth:before {
1639
+ content: "\f293";
1640
+ }
1641
+ i.icon.bluetooth.alternative:before {
1642
+ content: "\f294";
1643
+ }
1644
+
1645
+ /* Rating */
1646
+ i.icon.heart:before {
1647
+ content: "\f004";
1648
+ }
1649
+ i.icon.star:before {
1650
+ content: "\f005";
1651
+ }
1652
+ i.icon.empty.star:before {
1653
+ content: "\f006";
1654
+ }
1655
+ i.icon.thumbs.outline.up:before {
1656
+ content: "\f087";
1657
+ }
1658
+ i.icon.thumbs.outline.down:before {
1659
+ content: "\f088";
1660
+ }
1661
+ i.icon.star.half:before {
1662
+ content: "\f089";
1663
+ }
1664
+ i.icon.empty.heart:before {
1665
+ content: "\f08a";
1666
+ }
1667
+ i.icon.smile:before {
1668
+ content: "\f118";
1669
+ }
1670
+ i.icon.frown:before {
1671
+ content: "\f119";
1672
+ }
1673
+ i.icon.meh:before {
1674
+ content: "\f11a";
1675
+ }
1676
+ i.icon.star.half.empty:before {
1677
+ content: "\f123";
1678
+ }
1679
+ i.icon.thumbs.up:before {
1680
+ content: "\f164";
1681
+ }
1682
+ i.icon.thumbs.down:before {
1683
+ content: "\f165";
1684
+ }
1685
+
1686
+ /* Audio */
1687
+ i.icon.music:before {
1688
+ content: "\f001";
1689
+ }
1690
+ i.icon.video.play.outline:before {
1691
+ content: "\f01d";
1692
+ }
1693
+ i.icon.volume.off:before {
1694
+ content: "\f026";
1695
+ }
1696
+ i.icon.volume.down:before {
1697
+ content: "\f027";
1698
+ }
1699
+ i.icon.volume.up:before {
1700
+ content: "\f028";
1701
+ }
1702
+ i.icon.record:before {
1703
+ content: "\f03d";
1704
+ }
1705
+ i.icon.step.backward:before {
1706
+ content: "\f048";
1707
+ }
1708
+ i.icon.fast.backward:before {
1709
+ content: "\f049";
1710
+ }
1711
+ i.icon.backward:before {
1712
+ content: "\f04a";
1713
+ }
1714
+ i.icon.play:before {
1715
+ content: "\f04b";
1716
+ }
1717
+ i.icon.pause:before {
1718
+ content: "\f04c";
1719
+ }
1720
+ i.icon.stop:before {
1721
+ content: "\f04d";
1722
+ }
1723
+ i.icon.forward:before {
1724
+ content: "\f04e";
1725
+ }
1726
+ i.icon.fast.forward:before {
1727
+ content: "\f050";
1728
+ }
1729
+ i.icon.step.forward:before {
1730
+ content: "\f051";
1731
+ }
1732
+ i.icon.eject:before {
1733
+ content: "\f052";
1734
+ }
1735
+ i.icon.unmute:before {
1736
+ content: "\f130";
1737
+ }
1738
+ i.icon.mute:before {
1739
+ content: "\f131";
1740
+ }
1741
+ i.icon.video.play:before {
1742
+ content: "\f144";
1743
+ }
1744
+ i.icon.closed.captioning:before {
1745
+ content: "\f20a";
1746
+ }
1747
+ i.icon.pause.circle:before {
1748
+ content: "\f28b";
1749
+ }
1750
+ i.icon.pause.circle.outline:before {
1751
+ content: "\f28c";
1752
+ }
1753
+ i.icon.stop.circle:before {
1754
+ content: "\f28d";
1755
+ }
1756
+ i.icon.stop.circle.outline:before {
1757
+ content: "\f28e";
1758
+ }
1759
+
1760
+ /* Map, Locations, & Transportation */
1761
+ i.icon.marker:before {
1762
+ content: "\f041";
1763
+ }
1764
+ i.icon.coffee:before {
1765
+ content: "\f0f4";
1766
+ }
1767
+ i.icon.food:before {
1768
+ content: "\f0f5";
1769
+ }
1770
+ i.icon.building.outline:before {
1771
+ content: "\f0f7";
1772
+ }
1773
+ i.icon.hospital:before {
1774
+ content: "\f0f8";
1775
+ }
1776
+ i.icon.emergency:before {
1777
+ content: "\f0f9";
1778
+ }
1779
+ i.icon.first.aid:before {
1780
+ content: "\f0fa";
1781
+ }
1782
+ i.icon.military:before {
1783
+ content: "\f0fb";
1784
+ }
1785
+ i.icon.h:before {
1786
+ content: "\f0fd";
1787
+ }
1788
+ i.icon.location.arrow:before {
1789
+ content: "\f124";
1790
+ }
1791
+ i.icon.compass:before {
1792
+ content: "\f14e";
1793
+ }
1794
+ i.icon.space.shuttle:before {
1795
+ content: "\f197";
1796
+ }
1797
+ i.icon.university:before {
1798
+ content: "\f19c";
1799
+ }
1800
+ i.icon.building:before {
1801
+ content: "\f1ad";
1802
+ }
1803
+ i.icon.paw:before {
1804
+ content: "\f1b0";
1805
+ }
1806
+ i.icon.spoon:before {
1807
+ content: "\f1b1";
1808
+ }
1809
+ i.icon.car:before {
1810
+ content: "\f1b9";
1811
+ }
1812
+ i.icon.taxi:before {
1813
+ content: "\f1ba";
1814
+ }
1815
+ i.icon.tree:before {
1816
+ content: "\f1bb";
1817
+ }
1818
+ i.icon.bicycle:before {
1819
+ content: "\f206";
1820
+ }
1821
+ i.icon.bus:before {
1822
+ content: "\f207";
1823
+ }
1824
+ i.icon.ship:before {
1825
+ content: "\f21a";
1826
+ }
1827
+ i.icon.motorcycle:before {
1828
+ content: "\f21c";
1829
+ }
1830
+ i.icon.street.view:before {
1831
+ content: "\f21d";
1832
+ }
1833
+ i.icon.hotel:before {
1834
+ content: "\f236";
1835
+ }
1836
+ i.icon.train:before {
1837
+ content: "\f238";
1838
+ }
1839
+ i.icon.subway:before {
1840
+ content: "\f239";
1841
+ }
1842
+ i.icon.map.pin:before {
1843
+ content: "\f276";
1844
+ }
1845
+ i.icon.map.signs:before {
1846
+ content: "\f277";
1847
+ }
1848
+ i.icon.map.outline:before {
1849
+ content: "\f278";
1850
+ }
1851
+ i.icon.map:before {
1852
+ content: "\f279";
1853
+ }
1854
+
1855
+ /* Tables */
1856
+ i.icon.table:before {
1857
+ content: "\f0ce";
1858
+ }
1859
+ i.icon.columns:before {
1860
+ content: "\f0db";
1861
+ }
1862
+ i.icon.sort:before {
1863
+ content: "\f0dc";
1864
+ }
1865
+ i.icon.sort.descending:before {
1866
+ content: "\f0dd";
1867
+ }
1868
+ i.icon.sort.ascending:before {
1869
+ content: "\f0de";
1870
+ }
1871
+ i.icon.sort.alphabet.ascending:before {
1872
+ content: "\f15d";
1873
+ }
1874
+ i.icon.sort.alphabet.descending:before {
1875
+ content: "\f15e";
1876
+ }
1877
+ i.icon.sort.content.ascending:before {
1878
+ content: "\f160";
1879
+ }
1880
+ i.icon.sort.content.descending:before {
1881
+ content: "\f161";
1882
+ }
1883
+ i.icon.sort.numeric.ascending:before {
1884
+ content: "\f162";
1885
+ }
1886
+ i.icon.sort.numeric.descending:before {
1887
+ content: "\f163";
1888
+ }
1889
+
1890
+ /* Text Editor */
1891
+ i.icon.font:before {
1892
+ content: "\f031";
1893
+ }
1894
+ i.icon.bold:before {
1895
+ content: "\f032";
1896
+ }
1897
+ i.icon.italic:before {
1898
+ content: "\f033";
1899
+ }
1900
+ i.icon.text.height:before {
1901
+ content: "\f034";
1902
+ }
1903
+ i.icon.text.width:before {
1904
+ content: "\f035";
1905
+ }
1906
+ i.icon.align.left:before {
1907
+ content: "\f036";
1908
+ }
1909
+ i.icon.align.center:before {
1910
+ content: "\f037";
1911
+ }
1912
+ i.icon.align.right:before {
1913
+ content: "\f038";
1914
+ }
1915
+ i.icon.align.justify:before {
1916
+ content: "\f039";
1917
+ }
1918
+ i.icon.list:before {
1919
+ content: "\f03a";
1920
+ }
1921
+ i.icon.outdent:before {
1922
+ content: "\f03b";
1923
+ }
1924
+ i.icon.indent:before {
1925
+ content: "\f03c";
1926
+ }
1927
+ i.icon.linkify:before {
1928
+ content: "\f0c1";
1929
+ }
1930
+ i.icon.cut:before {
1931
+ content: "\f0c4";
1932
+ }
1933
+ i.icon.copy:before {
1934
+ content: "\f0c5";
1935
+ }
1936
+ i.icon.attach:before {
1937
+ content: "\f0c6";
1938
+ }
1939
+ i.icon.save:before {
1940
+ content: "\f0c7";
1941
+ }
1942
+ i.icon.content:before {
1943
+ content: "\f0c9";
1944
+ }
1945
+ i.icon.unordered.list:before {
1946
+ content: "\f0ca";
1947
+ }
1948
+ i.icon.ordered.list:before {
1949
+ content: "\f0cb";
1950
+ }
1951
+ i.icon.strikethrough:before {
1952
+ content: "\f0cc";
1953
+ }
1954
+ i.icon.underline:before {
1955
+ content: "\f0cd";
1956
+ }
1957
+ i.icon.paste:before {
1958
+ content: "\f0ea";
1959
+ }
1960
+ i.icon.unlinkify:before {
1961
+ content: "\f127";
1962
+ }
1963
+ i.icon.superscript:before {
1964
+ content: "\f12b";
1965
+ }
1966
+ i.icon.subscript:before {
1967
+ content: "\f12c";
1968
+ }
1969
+ i.icon.header:before {
1970
+ content: "\f1dc";
1971
+ }
1972
+ i.icon.paragraph:before {
1973
+ content: "\f1dd";
1974
+ }
1975
+ i.icon.text.cursor:before {
1976
+ content: "\f246";
1977
+ }
1978
+
1979
+ /* Currency */
1980
+ i.icon.euro:before {
1981
+ content: "\f153";
1982
+ }
1983
+ i.icon.pound:before {
1984
+ content: "\f154";
1985
+ }
1986
+ i.icon.dollar:before {
1987
+ content: "\f155";
1988
+ }
1989
+ i.icon.rupee:before {
1990
+ content: "\f156";
1991
+ }
1992
+ i.icon.yen:before {
1993
+ content: "\f157";
1994
+ }
1995
+ i.icon.ruble:before {
1996
+ content: "\f158";
1997
+ }
1998
+ i.icon.won:before {
1999
+ content: "\f159";
2000
+ }
2001
+ i.icon.bitcoin:before {
2002
+ content: "\f15a";
2003
+ }
2004
+ i.icon.lira:before {
2005
+ content: "\f195";
2006
+ }
2007
+ i.icon.shekel:before {
2008
+ content: "\f20b";
2009
+ }
2010
+
2011
+ /* Payment Options */
2012
+ i.icon.paypal:before {
2013
+ content: "\f1ed";
2014
+ }
2015
+ i.icon.google.wallet:before {
2016
+ content: "\f1ee";
2017
+ }
2018
+ i.icon.visa:before {
2019
+ content: "\f1f0";
2020
+ }
2021
+ i.icon.mastercard:before {
2022
+ content: "\f1f1";
2023
+ }
2024
+ i.icon.discover:before {
2025
+ content: "\f1f2";
2026
+ }
2027
+ i.icon.american.express:before {
2028
+ content: "\f1f3";
2029
+ }
2030
+ i.icon.paypal.card:before {
2031
+ content: "\f1f4";
2032
+ }
2033
+ i.icon.stripe:before {
2034
+ content: "\f1f5";
2035
+ }
2036
+ i.icon.japan.credit.bureau:before {
2037
+ content: "\f24b";
2038
+ }
2039
+ i.icon.diners.club:before {
2040
+ content: "\f24c";
2041
+ }
2042
+ i.icon.credit.card.alternative:before {
2043
+ content: "\f283";
2044
+ }
2045
+ /* Networks and Websites*/
2046
+ i.icon.twitter.square:before {
2047
+ content: "\f081";
2048
+ }
2049
+ i.icon.facebook.square:before {
2050
+ content: "\f082";
2051
+ }
2052
+ i.icon.linkedin.square:before {
2053
+ content: "\f08c";
2054
+ }
2055
+ i.icon.github.square:before {
2056
+ content: "\f092";
2057
+ }
2058
+ i.icon.twitter:before {
2059
+ content: "\f099";
2060
+ }
2061
+ i.icon.facebook.f:before {
2062
+ content: "\f09a";
2063
+ }
2064
+ i.icon.github:before {
2065
+ content: "\f09b";
2066
+ }
2067
+ i.icon.pinterest:before {
2068
+ content: "\f0d2";
2069
+ }
2070
+ i.icon.pinterest.square:before {
2071
+ content: "\f0d3";
2072
+ }
2073
+ i.icon.google.plus.square:before {
2074
+ content: "\f0d4";
2075
+ }
2076
+ i.icon.google.plus:before {
2077
+ content: "\f0d5";
2078
+ }
2079
+ i.icon.linkedin:before {
2080
+ content: "\f0e1";
2081
+ }
2082
+ i.icon.github.alternate:before {
2083
+ content: "\f113";
2084
+ }
2085
+ i.icon.maxcdn:before {
2086
+ content: "\f136";
2087
+ }
2088
+ i.icon.youtube.square:before {
2089
+ content: "\f166";
2090
+ }
2091
+ i.icon.youtube:before {
2092
+ content: "\f167";
2093
+ }
2094
+ i.icon.xing:before {
2095
+ content: "\f168";
2096
+ }
2097
+ i.icon.xing.square:before {
2098
+ content: "\f169";
2099
+ }
2100
+ i.icon.youtube.play:before {
2101
+ content: "\f16a";
2102
+ }
2103
+ i.icon.dropbox:before {
2104
+ content: "\f16b";
2105
+ }
2106
+ i.icon.stack.overflow:before {
2107
+ content: "\f16c";
2108
+ }
2109
+ i.icon.instagram:before {
2110
+ content: "\f16d";
2111
+ }
2112
+ i.icon.flickr:before {
2113
+ content: "\f16e";
2114
+ }
2115
+ i.icon.adn:before {
2116
+ content: "\f170";
2117
+ }
2118
+ i.icon.bitbucket:before {
2119
+ content: "\f171";
2120
+ }
2121
+ i.icon.bitbucket.square:before {
2122
+ content: "\f172";
2123
+ }
2124
+ i.icon.tumblr:before {
2125
+ content: "\f173";
2126
+ }
2127
+ i.icon.tumblr.square:before {
2128
+ content: "\f174";
2129
+ }
2130
+ i.icon.apple:before {
2131
+ content: "\f179";
2132
+ }
2133
+ i.icon.windows:before {
2134
+ content: "\f17a";
2135
+ }
2136
+ i.icon.android:before {
2137
+ content: "\f17b";
2138
+ }
2139
+ i.icon.linux:before {
2140
+ content: "\f17c";
2141
+ }
2142
+ i.icon.dribble:before {
2143
+ content: "\f17d";
2144
+ }
2145
+ i.icon.skype:before {
2146
+ content: "\f17e";
2147
+ }
2148
+ i.icon.foursquare:before {
2149
+ content: "\f180";
2150
+ }
2151
+ i.icon.trello:before {
2152
+ content: "\f181";
2153
+ }
2154
+ i.icon.gittip:before {
2155
+ content: "\f184";
2156
+ }
2157
+ i.icon.vk:before {
2158
+ content: "\f189";
2159
+ }
2160
+ i.icon.weibo:before {
2161
+ content: "\f18a";
2162
+ }
2163
+ i.icon.renren:before {
2164
+ content: "\f18b";
2165
+ }
2166
+ i.icon.pagelines:before {
2167
+ content: "\f18c";
2168
+ }
2169
+ i.icon.stack.exchange:before {
2170
+ content: "\f18d";
2171
+ }
2172
+ i.icon.vimeo.square:before {
2173
+ content: "\f194";
2174
+ }
2175
+ i.icon.slack:before {
2176
+ content: "\f198";
2177
+ }
2178
+ i.icon.wordpress:before {
2179
+ content: "\f19a";
2180
+ }
2181
+ i.icon.yahoo:before {
2182
+ content: "\f19e";
2183
+ }
2184
+ i.icon.google:before {
2185
+ content: "\f1a0";
2186
+ }
2187
+ i.icon.reddit:before {
2188
+ content: "\f1a1";
2189
+ }
2190
+ i.icon.reddit.square:before {
2191
+ content: "\f1a2";
2192
+ }
2193
+ i.icon.stumbleupon.circle:before {
2194
+ content: "\f1a3";
2195
+ }
2196
+ i.icon.stumbleupon:before {
2197
+ content: "\f1a4";
2198
+ }
2199
+ i.icon.delicious:before {
2200
+ content: "\f1a5";
2201
+ }
2202
+ i.icon.digg:before {
2203
+ content: "\f1a6";
2204
+ }
2205
+ i.icon.pied.piper:before {
2206
+ content: "\f1a7";
2207
+ }
2208
+ i.icon.pied.piper.alternate:before {
2209
+ content: "\f1a8";
2210
+ }
2211
+ i.icon.drupal:before {
2212
+ content: "\f1a9";
2213
+ }
2214
+ i.icon.joomla:before {
2215
+ content: "\f1aa";
2216
+ }
2217
+ i.icon.behance:before {
2218
+ content: "\f1b4";
2219
+ }
2220
+ i.icon.behance.square:before {
2221
+ content: "\f1b5";
2222
+ }
2223
+ i.icon.steam:before {
2224
+ content: "\f1b6";
2225
+ }
2226
+ i.icon.steam.square:before {
2227
+ content: "\f1b7";
2228
+ }
2229
+ i.icon.spotify:before {
2230
+ content: "\f1bc";
2231
+ }
2232
+ i.icon.deviantart:before {
2233
+ content: "\f1bd";
2234
+ }
2235
+ i.icon.soundcloud:before {
2236
+ content: "\f1be";
2237
+ }
2238
+ i.icon.vine:before {
2239
+ content: "\f1ca";
2240
+ }
2241
+ i.icon.codepen:before {
2242
+ content: "\f1cb";
2243
+ }
2244
+ i.icon.jsfiddle:before {
2245
+ content: "\f1cc";
2246
+ }
2247
+ i.icon.rebel:before {
2248
+ content: "\f1d0";
2249
+ }
2250
+ i.icon.empire:before {
2251
+ content: "\f1d1";
2252
+ }
2253
+ i.icon.git.square:before {
2254
+ content: "\f1d2";
2255
+ }
2256
+ i.icon.git:before {
2257
+ content: "\f1d3";
2258
+ }
2259
+ i.icon.hacker.news:before {
2260
+ content: "\f1d4";
2261
+ }
2262
+ i.icon.tencent.weibo:before {
2263
+ content: "\f1d5";
2264
+ }
2265
+ i.icon.qq:before {
2266
+ content: "\f1d6";
2267
+ }
2268
+ i.icon.wechat:before {
2269
+ content: "\f1d7";
2270
+ }
2271
+ i.icon.slideshare:before {
2272
+ content: "\f1e7";
2273
+ }
2274
+ i.icon.twitch:before {
2275
+ content: "\f1e8";
2276
+ }
2277
+ i.icon.yelp:before {
2278
+ content: "\f1e9";
2279
+ }
2280
+ i.icon.lastfm:before {
2281
+ content: "\f202";
2282
+ }
2283
+ i.icon.lastfm.square:before {
2284
+ content: "\f203";
2285
+ }
2286
+ i.icon.ioxhost:before {
2287
+ content: "\f208";
2288
+ }
2289
+ i.icon.angellist:before {
2290
+ content: "\f209";
2291
+ }
2292
+ i.icon.meanpath:before {
2293
+ content: "\f20c";
2294
+ }
2295
+ i.icon.buysellads:before {
2296
+ content: "\f20d";
2297
+ }
2298
+ i.icon.connectdevelop:before {
2299
+ content: "\f20e";
2300
+ }
2301
+ i.icon.dashcube:before {
2302
+ content: "\f210";
2303
+ }
2304
+ i.icon.forumbee:before {
2305
+ content: "\f211";
2306
+ }
2307
+ i.icon.leanpub:before {
2308
+ content: "\f212";
2309
+ }
2310
+ i.icon.sellsy:before {
2311
+ content: "\f213";
2312
+ }
2313
+ i.icon.shirtsinbulk:before {
2314
+ content: "\f214";
2315
+ }
2316
+ i.icon.simplybuilt:before {
2317
+ content: "\f215";
2318
+ }
2319
+ i.icon.skyatlas:before {
2320
+ content: "\f216";
2321
+ }
2322
+ i.icon.facebook:before {
2323
+ content: "\f230";
2324
+ }
2325
+ i.icon.pinterest:before {
2326
+ content: "\f231";
2327
+ }
2328
+ i.icon.whatsapp:before {
2329
+ content: "\f232";
2330
+ }
2331
+ i.icon.viacoin:before {
2332
+ content: "\f237";
2333
+ }
2334
+ i.icon.medium:before {
2335
+ content: "\f23a";
2336
+ }
2337
+ i.icon.y.combinator:before {
2338
+ content: "\f23b";
2339
+ }
2340
+ i.icon.optinmonster:before {
2341
+ content: "\f23c";
2342
+ }
2343
+ i.icon.opencart:before {
2344
+ content: "\f23d";
2345
+ }
2346
+ i.icon.expeditedssl:before {
2347
+ content: "\f23e";
2348
+ }
2349
+ i.icon.gg:before {
2350
+ content: "\f260";
2351
+ }
2352
+ i.icon.gg.circle:before {
2353
+ content: "\f261";
2354
+ }
2355
+ i.icon.tripadvisor:before {
2356
+ content: "\f262";
2357
+ }
2358
+ i.icon.odnoklassniki:before {
2359
+ content: "\f263";
2360
+ }
2361
+ i.icon.odnoklassniki.square:before {
2362
+ content: "\f264";
2363
+ }
2364
+ i.icon.pocket:before {
2365
+ content: "\f265";
2366
+ }
2367
+ i.icon.wikipedia:before {
2368
+ content: "\f266";
2369
+ }
2370
+ i.icon.safari:before {
2371
+ content: "\f267";
2372
+ }
2373
+ i.icon.chrome:before {
2374
+ content: "\f268";
2375
+ }
2376
+ i.icon.firefox:before {
2377
+ content: "\f269";
2378
+ }
2379
+ i.icon.opera:before {
2380
+ content: "\f26a";
2381
+ }
2382
+ i.icon.internet.explorer:before {
2383
+ content: "\f26b";
2384
+ }
2385
+ i.icon.contao:before {
2386
+ content: "\f26d";
2387
+ }
2388
+ i.icon.\35 00px:before {
2389
+ content: "\f26e";
2390
+ }
2391
+ i.icon.amazon:before {
2392
+ content: "\f270";
2393
+ }
2394
+ i.icon.houzz:before {
2395
+ content: "\f27c";
2396
+ }
2397
+ i.icon.vimeo:before {
2398
+ content: "\f27d";
2399
+ }
2400
+ i.icon.black.tie:before {
2401
+ content: "\f27e";
2402
+ }
2403
+ i.icon.fonticons:before {
2404
+ content: "\f280";
2405
+ }
2406
+ i.icon.reddit.alien:before {
2407
+ content: "\f281";
2408
+ }
2409
+ i.icon.microsoft.edge:before {
2410
+ content: "\f282";
2411
+ }
2412
+ i.icon.codiepie:before {
2413
+ content: "\f284";
2414
+ }
2415
+ i.icon.modx:before {
2416
+ content: "\f285";
2417
+ }
2418
+ i.icon.fort.awesome:before {
2419
+ content: "\f286";
2420
+ }
2421
+ i.icon.product.hunt:before {
2422
+ content: "\f288";
2423
+ }
2424
+ i.icon.mixcloud:before {
2425
+ content: "\f289";
2426
+ }
2427
+ i.icon.scribd:before {
2428
+ content: "\f28a";
2429
+ }
2430
+ i.icon.gitlab:before {
2431
+ content: "\f296";
2432
+ }
2433
+ i.icon.wpbeginner:before {
2434
+ content: "\f297";
2435
+ }
2436
+ i.icon.wpforms:before {
2437
+ content: "\f298";
2438
+ }
2439
+ i.icon.envira.gallery:before {
2440
+ content: "\f299";
2441
+ }
2442
+ i.icon.glide:before {
2443
+ content: "\f2a5";
2444
+ }
2445
+ i.icon.glide.g:before {
2446
+ content: "\f2a6";
2447
+ }
2448
+ i.icon.viadeo:before {
2449
+ content: "\f2a9";
2450
+ }
2451
+ i.icon.viadeo.square:before {
2452
+ content: "\f2aa";
2453
+ }
2454
+ i.icon.snapchat:before {
2455
+ content: "\f2ab";
2456
+ }
2457
+ i.icon.snapchat.ghost:before {
2458
+ content: "\f2ac";
2459
+ }
2460
+ i.icon.snapchat.square:before {
2461
+ content: "\f2ad";
2462
+ }
2463
+ i.icon.pied.piper.hat:before {
2464
+ content: "\f2ae";
2465
+ }
2466
+ i.icon.first.order:before {
2467
+ content: "\f2b0";
2468
+ }
2469
+ i.icon.yoast:before {
2470
+ content: "\f2b1";
2471
+ }
2472
+ i.icon.themeisle:before {
2473
+ content: "\f2b2";
2474
+ }
2475
+ i.icon.google.plus.circle:before {
2476
+ content: "\f2b3";
2477
+ }
2478
+ i.icon.font.awesome:before {
2479
+ content: "\f2b4";
2480
+ }
2481
+
2482
+
2483
+ /*******************************
2484
+ Aliases
2485
+ *******************************/
2486
+
2487
+ i.icon.like:before {
2488
+ content: "\f004";
2489
+ }
2490
+ i.icon.favorite:before {
2491
+ content: "\f005";
2492
+ }
2493
+ i.icon.video:before {
2494
+ content: "\f008";
2495
+ }
2496
+ i.icon.check:before {
2497
+ content: "\f00c";
2498
+ }
2499
+ i.icon.close:before {
2500
+ content: "\f00d";
2501
+ }
2502
+ i.icon.cancel:before {
2503
+ content: "\f00d";
2504
+ }
2505
+ i.icon.delete:before {
2506
+ content: "\f00d";
2507
+ }
2508
+ i.icon.x:before {
2509
+ content: "\f00d";
2510
+ }
2511
+ i.icon.zoom.in:before {
2512
+ content: "\f00e";
2513
+ }
2514
+ i.icon.magnify:before {
2515
+ content: "\f00e";
2516
+ }
2517
+ i.icon.shutdown:before {
2518
+ content: "\f011";
2519
+ }
2520
+ i.icon.clock:before {
2521
+ content: "\f017";
2522
+ }
2523
+ i.icon.time:before {
2524
+ content: "\f017";
2525
+ }
2526
+ i.icon.play.circle.outline:before {
2527
+ content: "\f01d";
2528
+ }
2529
+ i.icon.headphone:before {
2530
+ content: "\f025";
2531
+ }
2532
+ i.icon.camera:before {
2533
+ content: "\f030";
2534
+ }
2535
+ i.icon.video.camera:before {
2536
+ content: "\f03d";
2537
+ }
2538
+ i.icon.picture:before {
2539
+ content: "\f03e";
2540
+ }
2541
+ i.icon.pencil:before {
2542
+ content: "\f040";
2543
+ }
2544
+ i.icon.compose:before {
2545
+ content: "\f040";
2546
+ }
2547
+ i.icon.point:before {
2548
+ content: "\f041";
2549
+ }
2550
+ i.icon.tint:before {
2551
+ content: "\f043";
2552
+ }
2553
+ i.icon.signup:before {
2554
+ content: "\f044";
2555
+ }
2556
+ i.icon.plus.circle:before {
2557
+ content: "\f055";
2558
+ }
2559
+ i.icon.question.circle:before {
2560
+ content: "\f059";
2561
+ }
2562
+ i.icon.dont:before {
2563
+ content: "\f05e";
2564
+ }
2565
+ i.icon.minimize:before {
2566
+ content: "\f066";
2567
+ }
2568
+ i.icon.add:before {
2569
+ content: "\f067";
2570
+ }
2571
+ i.icon.exclamation.circle:before {
2572
+ content: "\f06a";
2573
+ }
2574
+ i.icon.attention:before {
2575
+ content: "\f06a";
2576
+ }
2577
+ i.icon.eye:before {
2578
+ content: "\f06e";
2579
+ }
2580
+ i.icon.exclamation.triangle:before {
2581
+ content: "\f071";
2582
+ }
2583
+ i.icon.shuffle:before {
2584
+ content: "\f074";
2585
+ }
2586
+ i.icon.chat:before {
2587
+ content: "\f075";
2588
+ }
2589
+ i.icon.cart:before {
2590
+ content: "\f07a";
2591
+ }
2592
+ i.icon.shopping.cart:before {
2593
+ content: "\f07a";
2594
+ }
2595
+ i.icon.bar.graph:before {
2596
+ content: "\f080";
2597
+ }
2598
+ i.icon.key:before {
2599
+ content: "\f084";
2600
+ }
2601
+ i.icon.cogs:before {
2602
+ content: "\f085";
2603
+ }
2604
+ i.icon.discussions:before {
2605
+ content: "\f086";
2606
+ }
2607
+ i.icon.like.outline:before {
2608
+ content: "\f087";
2609
+ }
2610
+ i.icon.dislike.outline:before {
2611
+ content: "\f088";
2612
+ }
2613
+ i.icon.heart.outline:before {
2614
+ content: "\f08a";
2615
+ }
2616
+ i.icon.log.out:before {
2617
+ content: "\f08b";
2618
+ }
2619
+ i.icon.thumb.tack:before {
2620
+ content: "\f08d";
2621
+ }
2622
+ i.icon.winner:before {
2623
+ content: "\f091";
2624
+ }
2625
+ i.icon.phone:before {
2626
+ content: "\f095";
2627
+ }
2628
+ i.icon.bookmark.outline:before {
2629
+ content: "\f097";
2630
+ }
2631
+ i.icon.phone.square:before {
2632
+ content: "\f098";
2633
+ }
2634
+ i.icon.credit.card:before {
2635
+ content: "\f09d";
2636
+ }
2637
+ i.icon.hdd.outline:before {
2638
+ content: "\f0a0";
2639
+ }
2640
+ i.icon.bullhorn:before {
2641
+ content: "\f0a1";
2642
+ }
2643
+ i.icon.bell.outline:before {
2644
+ content: "\f0a2";
2645
+ }
2646
+ i.icon.hand.outline.right:before {
2647
+ content: "\f0a4";
2648
+ }
2649
+ i.icon.hand.outline.left:before {
2650
+ content: "\f0a5";
2651
+ }
2652
+ i.icon.hand.outline.up:before {
2653
+ content: "\f0a6";
2654
+ }
2655
+ i.icon.hand.outline.down:before {
2656
+ content: "\f0a7";
2657
+ }
2658
+ i.icon.globe:before {
2659
+ content: "\f0ac";
2660
+ }
2661
+ i.icon.wrench:before {
2662
+ content: "\f0ad";
2663
+ }
2664
+ i.icon.briefcase:before {
2665
+ content: "\f0b1";
2666
+ }
2667
+ i.icon.group:before {
2668
+ content: "\f0c0";
2669
+ }
2670
+ i.icon.linkify:before {
2671
+ content: "\f0c1";
2672
+ }
2673
+ i.icon.chain:before {
2674
+ content: "\f0c1";
2675
+ }
2676
+ i.icon.flask:before {
2677
+ content: "\f0c3";
2678
+ }
2679
+ i.icon.sidebar:before {
2680
+ content: "\f0c9";
2681
+ }
2682
+ i.icon.bars:before {
2683
+ content: "\f0c9";
2684
+ }
2685
+ i.icon.list.ul:before {
2686
+ content: "\f0ca";
2687
+ }
2688
+ i.icon.list.ol:before {
2689
+ content: "\f0cb";
2690
+ }
2691
+ i.icon.numbered.list:before {
2692
+ content: "\f0cb";
2693
+ }
2694
+ i.icon.magic:before {
2695
+ content: "\f0d0";
2696
+ }
2697
+ i.icon.truck:before {
2698
+ content: "\f0d1";
2699
+ }
2700
+ i.icon.currency:before {
2701
+ content: "\f0d6";
2702
+ }
2703
+ i.icon.triangle.down:before {
2704
+ content: "\f0d7";
2705
+ }
2706
+ i.icon.dropdown:before {
2707
+ content: "\f0d7";
2708
+ }
2709
+ i.icon.triangle.up:before {
2710
+ content: "\f0d8";
2711
+ }
2712
+ i.icon.triangle.left:before {
2713
+ content: "\f0d9";
2714
+ }
2715
+ i.icon.triangle.right:before {
2716
+ content: "\f0da";
2717
+ }
2718
+ i.icon.envelope:before {
2719
+ content: "\f0e0";
2720
+ }
2721
+ i.icon.conversation:before {
2722
+ content: "\f0e6";
2723
+ }
2724
+ i.icon.rain:before {
2725
+ content: "\f0e9";
2726
+ }
2727
+ i.icon.clipboard:before {
2728
+ content: "\f0ea";
2729
+ }
2730
+ i.icon.lightbulb:before {
2731
+ content: "\f0eb";
2732
+ }
2733
+ i.icon.bell:before {
2734
+ content: "\f0f3";
2735
+ }
2736
+ i.icon.ambulance:before {
2737
+ content: "\f0f9";
2738
+ }
2739
+ i.icon.medkit:before {
2740
+ content: "\f0fa";
2741
+ }
2742
+ i.icon.fighter.jet:before {
2743
+ content: "\f0fb";
2744
+ }
2745
+ i.icon.beer:before {
2746
+ content: "\f0fc";
2747
+ }
2748
+ i.icon.plus.square:before {
2749
+ content: "\f0fe";
2750
+ }
2751
+ i.icon.computer:before {
2752
+ content: "\f108";
2753
+ }
2754
+ i.icon.circle.outline:before {
2755
+ content: "\f10c";
2756
+ }
2757
+ i.icon.gamepad:before {
2758
+ content: "\f11b";
2759
+ }
2760
+ i.icon.star.half.full:before {
2761
+ content: "\f123";
2762
+ }
2763
+ i.icon.broken.chain:before {
2764
+ content: "\f127";
2765
+ }
2766
+ i.icon.question:before {
2767
+ content: "\f128";
2768
+ }
2769
+ i.icon.exclamation:before {
2770
+ content: "\f12a";
2771
+ }
2772
+ i.icon.eraser:before {
2773
+ content: "\f12d";
2774
+ }
2775
+ i.icon.microphone:before {
2776
+ content: "\f130";
2777
+ }
2778
+ i.icon.microphone.slash:before {
2779
+ content: "\f131";
2780
+ }
2781
+ i.icon.shield:before {
2782
+ content: "\f132";
2783
+ }
2784
+ i.icon.target:before {
2785
+ content: "\f140";
2786
+ }
2787
+ i.icon.play.circle:before {
2788
+ content: "\f144";
2789
+ }
2790
+ i.icon.pencil.square:before {
2791
+ content: "\f14b";
2792
+ }
2793
+ i.icon.eur:before {
2794
+ content: "\f153";
2795
+ }
2796
+ i.icon.gbp:before {
2797
+ content: "\f154";
2798
+ }
2799
+ i.icon.usd:before {
2800
+ content: "\f155";
2801
+ }
2802
+ i.icon.inr:before {
2803
+ content: "\f156";
2804
+ }
2805
+ i.icon.cny:before {
2806
+ content: "\f157";
2807
+ }
2808
+ i.icon.rmb:before {
2809
+ content: "\f157";
2810
+ }
2811
+ i.icon.jpy:before {
2812
+ content: "\f157";
2813
+ }
2814
+ i.icon.rouble:before {
2815
+ content: "\f158";
2816
+ }
2817
+ i.icon.rub:before {
2818
+ content: "\f158";
2819
+ }
2820
+ i.icon.krw:before {
2821
+ content: "\f159";
2822
+ }
2823
+ i.icon.btc:before {
2824
+ content: "\f15a";
2825
+ }
2826
+ i.icon.gratipay:before {
2827
+ content: "\f184";
2828
+ }
2829
+ i.icon.zip:before {
2830
+ content: "\f187";
2831
+ }
2832
+ i.icon.dot.circle.outline:before {
2833
+ content: "\f192";
2834
+ }
2835
+ i.icon.try:before {
2836
+ content: "\f195";
2837
+ }
2838
+ i.icon.graduation:before {
2839
+ content: "\f19d";
2840
+ }
2841
+ i.icon.circle.outline:before {
2842
+ content: "\f1db";
2843
+ }
2844
+ i.icon.sliders:before {
2845
+ content: "\f1de";
2846
+ }
2847
+ i.icon.weixin:before {
2848
+ content: "\f1d7";
2849
+ }
2850
+ i.icon.tty:before {
2851
+ content: "\f1e4";
2852
+ }
2853
+ i.icon.teletype:before {
2854
+ content: "\f1e4";
2855
+ }
2856
+ i.icon.binoculars:before {
2857
+ content: "\f1e5";
2858
+ }
2859
+ i.icon.power.cord:before {
2860
+ content: "\f1e6";
2861
+ }
2862
+ i.icon.wi-fi:before {
2863
+ content: "\f1eb";
2864
+ }
2865
+ i.icon.visa.card:before {
2866
+ content: "\f1f0";
2867
+ }
2868
+ i.icon.mastercard.card:before {
2869
+ content: "\f1f1";
2870
+ }
2871
+ i.icon.discover.card:before {
2872
+ content: "\f1f2";
2873
+ }
2874
+ i.icon.amex:before {
2875
+ content: "\f1f3";
2876
+ }
2877
+ i.icon.american.express.card:before {
2878
+ content: "\f1f3";
2879
+ }
2880
+ i.icon.stripe.card:before {
2881
+ content: "\f1f5";
2882
+ }
2883
+ i.icon.bell.slash:before {
2884
+ content: "\f1f6";
2885
+ }
2886
+ i.icon.bell.slash.outline:before {
2887
+ content: "\f1f7";
2888
+ }
2889
+ i.icon.area.graph:before {
2890
+ content: "\f1fe";
2891
+ }
2892
+ i.icon.pie.graph:before {
2893
+ content: "\f200";
2894
+ }
2895
+ i.icon.line.graph:before {
2896
+ content: "\f201";
2897
+ }
2898
+ i.icon.cc:before {
2899
+ content: "\f20a";
2900
+ }
2901
+ i.icon.sheqel:before {
2902
+ content: "\f20b";
2903
+ }
2904
+ i.icon.ils:before {
2905
+ content: "\f20b";
2906
+ }
2907
+ i.icon.plus.cart:before {
2908
+ content: "\f217";
2909
+ }
2910
+ i.icon.arrow.down.cart:before {
2911
+ content: "\f218";
2912
+ }
2913
+ i.icon.detective:before {
2914
+ content: "\f21b";
2915
+ }
2916
+ i.icon.venus:before {
2917
+ content: "\f221";
2918
+ }
2919
+ i.icon.mars:before {
2920
+ content: "\f222";
2921
+ }
2922
+ i.icon.mercury:before {
2923
+ content: "\f223";
2924
+ }
2925
+ i.icon.intersex:before {
2926
+ content: "\f224";
2927
+ }
2928
+ i.icon.venus.double:before {
2929
+ content: "\f226";
2930
+ }
2931
+ i.icon.female.homosexual:before {
2932
+ content: "\f226";
2933
+ }
2934
+ i.icon.mars.double:before {
2935
+ content: "\f227";
2936
+ }
2937
+ i.icon.male.homosexual:before {
2938
+ content: "\f227";
2939
+ }
2940
+ i.icon.venus.mars:before {
2941
+ content: "\f228";
2942
+ }
2943
+ i.icon.mars.stroke:before {
2944
+ content: "\f229";
2945
+ }
2946
+ i.icon.mars.alternate:before {
2947
+ content: "\f229";
2948
+ }
2949
+ i.icon.mars.vertical:before {
2950
+ content: "\f22a";
2951
+ }
2952
+ i.icon.mars.stroke.vertical:before {
2953
+ content: "\f22a";
2954
+ }
2955
+ i.icon.mars.horizontal:before {
2956
+ content: "\f22b";
2957
+ }
2958
+ i.icon.mars.stroke.horizontal:before {
2959
+ content: "\f22b";
2960
+ }
2961
+ i.icon.asexual:before {
2962
+ content: "\f22d";
2963
+ }
2964
+ i.icon.facebook.official:before {
2965
+ content: "\f230";
2966
+ }
2967
+ i.icon.user.plus:before {
2968
+ content: "\f234";
2969
+ }
2970
+ i.icon.user.times:before {
2971
+ content: "\f235";
2972
+ }
2973
+ i.icon.user.close:before {
2974
+ content: "\f235";
2975
+ }
2976
+ i.icon.user.cancel:before {
2977
+ content: "\f235";
2978
+ }
2979
+ i.icon.user.delete:before {
2980
+ content: "\f235";
2981
+ }
2982
+ i.icon.user.x:before {
2983
+ content: "\f235";
2984
+ }
2985
+ i.icon.bed:before {
2986
+ content: "\f236";
2987
+ }
2988
+ i.icon.yc:before {
2989
+ content: "\f23b";
2990
+ }
2991
+ i.icon.ycombinator:before {
2992
+ content: "\f23b";
2993
+ }
2994
+ i.icon.battery.four:before {
2995
+ content: "\f240";
2996
+ }
2997
+ i.icon.battery.three:before {
2998
+ content: "\f241";
2999
+ }
3000
+ i.icon.battery.three.quarters:before {
3001
+ content: "\f241";
3002
+ }
3003
+ i.icon.battery.two:before {
3004
+ content: "\f242";
3005
+ }
3006
+ i.icon.battery.half:before {
3007
+ content: "\f242";
3008
+ }
3009
+ i.icon.battery.one:before {
3010
+ content: "\f243";
3011
+ }
3012
+ i.icon.battery.quarter:before {
3013
+ content: "\f243";
3014
+ }
3015
+ i.icon.battery.zero:before {
3016
+ content: "\f244";
3017
+ }
3018
+ i.icon.i.cursor:before {
3019
+ content: "\f246";
3020
+ }
3021
+ i.icon.jcb:before {
3022
+ content: "\f24b";
3023
+ }
3024
+ i.icon.japan.credit.bureau.card:before {
3025
+ content: "\f24b";
3026
+ }
3027
+ i.icon.diners.club.card:before {
3028
+ content: "\f24c";
3029
+ }
3030
+ i.icon.balance:before {
3031
+ content: "\f24e";
3032
+ }
3033
+ i.icon.hourglass.outline:before {
3034
+ content: "\f250";
3035
+ }
3036
+ i.icon.hourglass.zero:before {
3037
+ content: "\f250";
3038
+ }
3039
+ i.icon.hourglass.one:before {
3040
+ content: "\f251";
3041
+ }
3042
+ i.icon.hourglass.two:before {
3043
+ content: "\f252";
3044
+ }
3045
+ i.icon.hourglass.three:before {
3046
+ content: "\f253";
3047
+ }
3048
+ i.icon.hourglass.four:before {
3049
+ content: "\f254";
3050
+ }
3051
+ i.icon.grab:before {
3052
+ content: "\f255";
3053
+ }
3054
+ i.icon.hand.victory:before {
3055
+ content: "\f25b";
3056
+ }
3057
+ i.icon.tm:before {
3058
+ content: "\f25c";
3059
+ }
3060
+ i.icon.r.circle:before {
3061
+ content: "\f25d";
3062
+ }
3063
+ i.icon.television:before {
3064
+ content: "\f26c";
3065
+ }
3066
+ i.icon.five.hundred.pixels:before {
3067
+ content: "\f26e";
3068
+ }
3069
+ i.icon.calendar.plus:before {
3070
+ content: "\f271";
3071
+ }
3072
+ i.icon.calendar.minus:before {
3073
+ content: "\f272";
3074
+ }
3075
+ i.icon.calendar.times:before {
3076
+ content: "\f273";
3077
+ }
3078
+ i.icon.calendar.check:before {
3079
+ content: "\f274";
3080
+ }
3081
+ i.icon.factory:before {
3082
+ content: "\f275";
3083
+ }
3084
+ i.icon.commenting:before {
3085
+ content: "\f27a";
3086
+ }
3087
+ i.icon.commenting.outline:before {
3088
+ content: "\f27b";
3089
+ }
3090
+ i.icon.edge:before {
3091
+ content: "\f282";
3092
+ }
3093
+ i.icon.ms.edge:before {
3094
+ content: "\f282";
3095
+ }
3096
+ i.icon.wordpress.beginner:before {
3097
+ content: "\f297";
3098
+ }
3099
+ i.icon.wordpress.forms:before {
3100
+ content: "\f298";
3101
+ }
3102
+ i.icon.envira:before {
3103
+ content: "\f299";
3104
+ }
3105
+ i.icon.question.circle.outline:before {
3106
+ content: "\f29c";
3107
+ }
3108
+ i.icon.assistive.listening.devices:before {
3109
+ content: "\f2a2";
3110
+ }
3111
+ i.icon.als:before {
3112
+ content: "\f2a2";
3113
+ }
3114
+ i.icon.ald:before {
3115
+ content: "\f2a2";
3116
+ }
3117
+ i.icon.asl.interpreting:before {
3118
+ content: "\f2a3";
3119
+ }
3120
+ i.icon.deaf:before {
3121
+ content: "\f2a4";
3122
+ }
3123
+ i.icon.american.sign.language.interpreting:before {
3124
+ content: "\f2a3";
3125
+ }
3126
+ i.icon.hard.of.hearing:before {
3127
+ content: "\f2a4";
3128
+ }
3129
+ i.icon.signing:before {
3130
+ content: "\f2a7";
3131
+ }
3132
+ i.icon.new.pied.piper:before {
3133
+ content: "\f2ae";
3134
+ }
3135
+ i.icon.theme.isle:before {
3136
+ content: "\f2b2";
3137
+ }
3138
+ i.icon.google.plus.official:before {
3139
+ content: "\f2b3";
3140
+ }
3141
+ i.icon.fa:before {
3142
+ content: "\f2b4";
3143
+ }
3144
+
3145
+
3146
+ /*******************************
3147
+ Site Overrides
3148
+ *******************************/