simple-admin 0.1.0.pre.alpha

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