admin_help 0.1.4 → 0.1.5

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