udongo 2.0.4 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (119) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/backend/application.js +1 -0
  3. data/app/assets/javascripts/backend/bootstrap.js +3 -3569
  4. data/app/assets/javascripts/backend/tree.js +106 -65
  5. data/app/assets/stylesheets/backend/application.scss +2 -0
  6. data/app/assets/stylesheets/backend/bootstrap.scss +29 -51
  7. data/app/assets/stylesheets/backend/components/_page_tree.scss +9 -0
  8. data/app/assets/stylesheets/backend/custom.scss +0 -0
  9. data/app/assets/stylesheets/backend/font-awesome.scss +644 -1977
  10. data/app/assets/stylesheets/backend/udongo.scss +1 -0
  11. data/app/controllers/backend/admins_controller.rb +2 -2
  12. data/app/controllers/{backend_controller.rb → backend/base_controller.rb} +13 -5
  13. data/app/controllers/backend/content/rows/columns_controller.rb +1 -1
  14. data/app/controllers/backend/content/rows/images_controller.rb +1 -1
  15. data/app/controllers/backend/content/rows/texts_controller.rb +1 -1
  16. data/app/controllers/backend/content/rows_controller.rb +1 -1
  17. data/app/controllers/backend/dashboard_controller.rb +1 -1
  18. data/app/controllers/backend/email_templates_controller.rb +12 -12
  19. data/app/controllers/backend/emails_controller.rb +1 -1
  20. data/app/controllers/backend/navigation/items_controller.rb +9 -11
  21. data/app/controllers/backend/navigations_controller.rb +1 -1
  22. data/app/controllers/backend/pages_controller.rb +17 -39
  23. data/app/controllers/backend/redirects_controller.rb +1 -1
  24. data/app/controllers/backend/seo_controller.rb +1 -1
  25. data/app/controllers/backend/sessions_controller.rb +1 -1
  26. data/app/controllers/backend/snippets_controller.rb +14 -13
  27. data/app/controllers/backend/tagbox_controller.rb +1 -1
  28. data/app/controllers/catch_all_controller.rb +1 -1
  29. data/app/controllers/concerns/backend/content_type_controller.rb +3 -1
  30. data/app/controllers/redirects_controller.rb +1 -1
  31. data/app/decorators/page_decorator.rb +1 -4
  32. data/app/forms/backend/email_template_translation_form.rb +1 -23
  33. data/app/forms/backend/navigation_item_translation_form.rb +1 -23
  34. data/app/forms/backend/page_translation_form.rb +13 -18
  35. data/app/forms/backend/snippet_translation_form.rb +1 -23
  36. data/app/forms/backend/translation_form.rb +22 -0
  37. data/app/helpers/udongo_helper.rb +0 -4
  38. data/app/mailers/general_mailer.rb +14 -4
  39. data/app/models/admin.rb +2 -2
  40. data/app/models/comment.rb +1 -2
  41. data/app/models/concerns/addressable.rb +40 -0
  42. data/app/models/concerns/addressable/config.rb +33 -0
  43. data/app/models/concerns/cacheable.rb +1 -1
  44. data/app/models/email.rb +2 -2
  45. data/app/models/email_template.rb +2 -1
  46. data/app/views/backend/_general_form_error.html.erb +6 -0
  47. data/app/views/backend/admins/_form.html.erb +3 -0
  48. data/app/views/backend/content/rows/columns/_dimension_fields.html.erb +3 -0
  49. data/app/views/backend/content/rows/columns/edit.html.erb +3 -5
  50. data/app/views/backend/content/rows/columns/new.html.erb +3 -5
  51. data/app/views/backend/content/rows/images/edit.html.erb +2 -0
  52. data/app/views/backend/dashboard/show.html.erb +1 -1
  53. data/app/views/backend/email_templates/_form.html.erb +29 -7
  54. data/app/views/backend/email_templates/_tabs.html.erb +1 -1
  55. data/app/views/backend/email_templates/edit_translation.html.erb +1 -0
  56. data/app/views/backend/navigation/items/_form.html.erb +4 -2
  57. data/app/views/backend/navigation/items/_tabs.html.erb +1 -1
  58. data/app/views/backend/navigation/items/edit_translation.html.erb +1 -0
  59. data/app/views/backend/pages/_form.html.erb +4 -2
  60. data/app/views/backend/pages/_tabs.html.erb +1 -1
  61. data/app/views/backend/pages/edit_translation.html.erb +1 -0
  62. data/app/views/backend/redirects/_form.html.erb +2 -0
  63. data/app/views/backend/snippets/_form.html.erb +3 -1
  64. data/app/views/backend/snippets/_tabs.html.erb +1 -1
  65. data/app/views/backend/snippets/edit.html.erb +1 -1
  66. data/app/views/backend/snippets/edit_translation.html.erb +1 -0
  67. data/app/views/backend/snippets/new.html.erb +1 -1
  68. data/app/views/layouts/backend/_top_navigation.html.erb +1 -2
  69. data/changelog.md +38 -0
  70. data/config/initializers/simple_form_bootstrap.rb +13 -9
  71. data/config/locales/en_backend.yml +1 -4
  72. data/config/locales/en_forms.yml +3 -0
  73. data/config/locales/nl_backend.yml +3 -4
  74. data/config/locales/nl_forms.yml +3 -0
  75. data/config/routes.rb +5 -7
  76. data/db/migrate/20160815100903_remove_form_models.rb +9 -0
  77. data/db/migrate/20161014135637_add_category_to_admin.rb +5 -0
  78. data/db/migrate/20161029124558_add_locale_to_admin.rb +6 -0
  79. data/db/migrate/20161029130557_add_bcc_and_cc_to_email_templates.rb +6 -0
  80. data/db/migrate/20161029171056_add_ccc_and_bcc_to_email.rb +6 -0
  81. data/lib/udongo/configs/flexible_content.rb +7 -0
  82. data/lib/udongo/configs/i18n.rb +5 -3
  83. data/lib/udongo/configs/i18ns/app.rb +12 -0
  84. data/lib/udongo/configs/i18ns/cms.rb +12 -0
  85. data/lib/udongo/flexible_content/column_width_calculator.rb +4 -2
  86. data/lib/udongo/pages/tree.rb +15 -0
  87. data/lib/udongo/pages/tree_node.rb +43 -0
  88. data/lib/udongo/version.rb +1 -1
  89. data/readme.md +103 -43
  90. data/vendor/assets/javascripts/backend/select2.min.js +3 -0
  91. data/vendor/assets/stylesheets/backend/jstree/default/style.scss +3 -3
  92. data/vendor/assets/stylesheets/backend/select2.min.scss +1 -0
  93. metadata +22 -30
  94. data/app/controllers/backend/forms/base_controller.rb +0 -14
  95. data/app/controllers/backend/forms/submissions_controller.rb +0 -8
  96. data/app/controllers/backend/forms_controller.rb +0 -7
  97. data/app/controllers/backend/webserver_controller.rb +0 -6
  98. data/app/decorators/form_decorator.rb +0 -16
  99. data/app/decorators/form_submission_decorator.rb +0 -3
  100. data/app/forms/backend/email_template_form.rb +0 -38
  101. data/app/forms/backend/navigation_item_form.rb +0 -23
  102. data/app/forms/backend/page_form.rb +0 -26
  103. data/app/forms/backend/snippet_form.rb +0 -35
  104. data/app/models/form.rb +0 -10
  105. data/app/models/form_field.rb +0 -15
  106. data/app/models/form_field_validation.rb +0 -11
  107. data/app/models/form_submission.rb +0 -15
  108. data/app/models/form_submission_data.rb +0 -5
  109. data/app/views/backend/_form_errors.html.erb +0 -15
  110. data/app/views/backend/forms/index.html.erb +0 -27
  111. data/app/views/backend/forms/submissions/_filter.html.erb +0 -16
  112. data/app/views/backend/forms/submissions/index.html.erb +0 -34
  113. data/lib/generators/udongo/form/form_generator.rb +0 -62
  114. data/lib/generators/udongo/form/templates/form.rb +0 -18
  115. data/lib/udongo/configs/forms.rb +0 -18
  116. data/lib/udongo/configs/routes.rb +0 -13
  117. data/lib/udongo/email_vars/form_submission.rb +0 -18
  118. data/lib/udongo/forms/submission_datagrid.rb +0 -27
  119. data/lib/udongo/forms/submission_filter.rb +0 -31
@@ -8,68 +8,50 @@ var tree = tree || {
8
8
  tree.grab_data();
9
9
  },
10
10
 
11
- grab_data: function() {
12
- $.ajax({
13
- url: tree.vars.container.data('source'),
14
- type: 'GET'
15
- }).done(function(data){
16
- tree.load(data);
17
- });
18
- },
19
-
20
- load: function(data) {
21
- tree.vars.container.jstree({
22
- core: tree.core_settings(data),
23
- types: tree.types(),
24
- plugins: ['contextmenu','dnd','json_data','types','ui','state','wholerow'],
25
- contextmenu: { items: tree.contextmenu_items }
26
- });
11
+ calculate_new_parent_id: function(instance, moved_node) {
12
+ var parent_node = instance.get_node(moved_node.parent);
27
13
 
28
- tree.vars.container.on('select_node.jstree', tree.select_node_listener);
29
- $(document).on('dnd_stop.vakata', tree.dnd_stop_listener);
14
+ if(typeof parent_node.data !== 'undefined') {
15
+ return parent_node.data.id;
16
+ } else {
17
+ return null;
18
+ }
30
19
  },
31
20
 
32
- core_settings: function(data) {
33
- return {
34
- check_callback: tree.dnd_check_callback,
35
- multiple: false,
36
- data: data,
37
- expand_selected_onload: false,
38
- themes: {
39
- responsive: true,
40
- variant: 'large'
41
- }
42
- };
43
- },
21
+ calculate_new_position: function(instance, moved_node) {
22
+ var result = [];
44
23
 
45
- types: function() {
46
- return {
47
- default: {
48
- icon: 'fa fa-folder',
49
- children: true,
50
- valid_children: ['default', 'file']
51
- },
52
- file: {
53
- icon: 'fa fa-file-o',
54
- valid_children: ['file']
55
- }
56
- };
24
+ $(instance.get_children_dom(moved_node.parent)).each(function(){
25
+ result.push(instance.get_node($(this).attr('id')).data.id);
26
+ });
27
+
28
+ return result.indexOf(moved_node.data.id) + 1;
57
29
  },
58
30
 
59
- select_node_listener: function(e, result) {
60
- if(typeof result.event !== 'undefined') {
61
- if(result.event.which === 1) {
62
- window.location = result.node.data.url;
63
- }
64
- } else {
65
- result.instance.deselect_node(result.node);
66
- }
31
+ change_icon_color: function(jstree_node, color) {
32
+ $('#'+ jstree_node.id).find('.jstree-icon').css('color', color);
67
33
  },
68
34
 
69
35
  contextmenu_items: function(node) {
70
36
  return {
37
+ make_invisible: {
38
+ separator_before: true,
39
+ separator_after: false,
40
+ label: 'Onzichtbaar maken',
41
+ icon: 'fa fa-eye-slash',
42
+ action: tree.contextmenu_toggle_visibility_listener,
43
+ _disabled: !node.data.visible
44
+ },
45
+ make_visible: {
46
+ separator_before: true,
47
+ separator_after: false,
48
+ label: 'Zichtbaar maken',
49
+ icon: 'fa fa-eye',
50
+ action: tree.contextmenu_toggle_visibility_listener,
51
+ _disabled: node.data.visible
52
+ },
71
53
  remove: {
72
- separator_before: false,
54
+ separator_before: true,
73
55
  separator_after: false,
74
56
  label: 'Verwijderen',
75
57
  icon: 'fa fa-trash',
@@ -96,6 +78,34 @@ var tree = tree || {
96
78
  });
97
79
  },
98
80
 
81
+ contextmenu_toggle_visibility_listener: function(obj) {
82
+ var instance = tree.vars.container.jstree(true);
83
+ var node = instance.get_node(obj.reference.prevObject.selector);
84
+
85
+ $.ajax({
86
+ data: { id: node.data.id },
87
+ url: node.data.toggle_visibility_url,
88
+ type: 'POST'
89
+ }).done(function(data){
90
+ if(data.toggled) {
91
+ tree.toggle_node_visibility(node, obj.reference.prevObject);
92
+ }
93
+ });
94
+ },
95
+
96
+ core_settings: function(data) {
97
+ return {
98
+ check_callback: tree.dnd_check_callback,
99
+ multiple: false,
100
+ data: data,
101
+ expand_selected_onload: false,
102
+ themes: {
103
+ responsive: true,
104
+ variant: 'large'
105
+ }
106
+ };
107
+ },
108
+
99
109
  dnd_check_callback: function(operation, node, node_parent, node_position, more) {
100
110
  if(operation === 'move_node') {
101
111
  // With this you can't move nodes above or below the referenced node.
@@ -132,27 +142,58 @@ var tree = tree || {
132
142
  });
133
143
  },
134
144
 
135
- calculate_new_parent_id: function(instance, moved_node) {
136
- var parent_node = instance.get_node(moved_node.parent);
145
+ grab_data: function() {
146
+ $.ajax({
147
+ url: tree.vars.container.data('source'),
148
+ type: 'GET'
149
+ }).done(function(data){
150
+ tree.load(data);
151
+ });
152
+ },
137
153
 
138
- if(typeof parent_node.data !== 'undefined') {
139
- return parent_node.data.id;
154
+ load: function(data) {
155
+ tree.vars.container.jstree({
156
+ core: tree.core_settings(data),
157
+ types: tree.types(),
158
+ plugins: ['contextmenu','dnd','json_data','types','ui','state','wholerow'],
159
+ contextmenu: { items: tree.contextmenu_items }
160
+ });
161
+
162
+ tree.vars.container.on('select_node.jstree', tree.select_node_listener);
163
+ $(document).on('dnd_stop.vakata', tree.dnd_stop_listener);
164
+ },
165
+
166
+ select_node_listener: function(e, result) {
167
+ if(typeof result.event !== 'undefined') {
168
+ if(result.event.which === 1) {
169
+ window.location = result.node.data.url;
170
+ }
140
171
  } else {
141
- return null;
172
+ result.instance.deselect_node(result.node);
142
173
  }
143
174
  },
144
175
 
145
- calculate_new_position: function(instance, moved_node) {
146
- var result = [];
147
-
148
- $(instance.get_children_dom(moved_node.parent)).each(function(){
149
- result.push(instance.get_node($(this).attr('id')).data.id);
150
- });
176
+ toggle_node_visibility: function(node, obj) {
177
+ if(node.data.visible) {
178
+ obj.addClass('jstree-node-invisible');
179
+ } else {
180
+ obj.removeClass('jstree-node-invisible');
181
+ }
151
182
 
152
- return result.indexOf(moved_node.data.id) + 1;
183
+ window.location.reload();
153
184
  },
154
185
 
155
- change_icon_color: function(jstree_node, color) {
156
- $('#'+ jstree_node.id).find('.jstree-icon').css('color', color);
186
+ types: function() {
187
+ return {
188
+ default: {
189
+ icon: 'fa fa-folder',
190
+ children: true,
191
+ valid_children: ['default', 'file']
192
+ },
193
+ file: {
194
+ icon: 'fa fa-file-o',
195
+ valid_children: ['file']
196
+ }
197
+ };
157
198
  }
158
199
  };
@@ -15,4 +15,6 @@
15
15
 
16
16
  @import 'bootstrap';
17
17
  @import 'backend/bootstrap-datepicker';
18
+ @import 'backend/select2.min';
18
19
  @import 'udongo';
20
+ @import 'custom';
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Bootstrap v4.0.0-alpha.3 (http://getbootstrap.com)
2
+ * Bootstrap v4.0.0-alpha.4 (http://getbootstrap.com)
3
3
  * Copyright 2011-2016 The Bootstrap Authors
4
4
  * Copyright 2011-2016 Twitter, Inc.
5
5
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
@@ -2097,14 +2097,8 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for
2097
2097
 
2098
2098
  .has-success .form-control-feedback,
2099
2099
  .has-success .form-control-label,
2100
- .has-success .radio,
2101
- .has-success .checkbox,
2102
- .has-success .radio-inline,
2103
- .has-success .checkbox-inline,
2104
- .has-success.radio label,
2105
- .has-success.checkbox label,
2106
- .has-success.radio-inline label,
2107
- .has-success.checkbox-inline label,
2100
+ .has-success .form-check-label,
2101
+ .has-success .form-check-inline,
2108
2102
  .has-success .custom-control {
2109
2103
  color: #5cb85c;
2110
2104
  }
@@ -2129,14 +2123,8 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for
2129
2123
 
2130
2124
  .has-warning .form-control-feedback,
2131
2125
  .has-warning .form-control-label,
2132
- .has-warning .radio,
2133
- .has-warning .checkbox,
2134
- .has-warning .radio-inline,
2135
- .has-warning .checkbox-inline,
2136
- .has-warning.radio label,
2137
- .has-warning.checkbox label,
2138
- .has-warning.radio-inline label,
2139
- .has-warning.checkbox-inline label,
2126
+ .has-warning .form-check-label,
2127
+ .has-warning .form-check-inline,
2140
2128
  .has-warning .custom-control {
2141
2129
  color: #f0ad4e;
2142
2130
  }
@@ -2161,14 +2149,8 @@ select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.for
2161
2149
 
2162
2150
  .has-danger .form-control-feedback,
2163
2151
  .has-danger .form-control-label,
2164
- .has-danger .radio,
2165
- .has-danger .checkbox,
2166
- .has-danger .radio-inline,
2167
- .has-danger .checkbox-inline,
2168
- .has-danger.radio label,
2169
- .has-danger.checkbox label,
2170
- .has-danger.radio-inline label,
2171
- .has-danger.checkbox-inline label,
2152
+ .has-danger .form-check-label,
2153
+ .has-danger .form-check-inline,
2172
2154
  .has-danger .custom-control {
2173
2155
  color: #d9534f;
2174
2156
  }
@@ -4251,7 +4233,6 @@ input[type="button"].btn-block {
4251
4233
  column-gap: 1.25rem;
4252
4234
  }
4253
4235
  .card-columns .card {
4254
- display: inline-block;
4255
4236
  width: 100%;
4256
4237
  }
4257
4238
  }
@@ -4486,7 +4467,7 @@ a.tag:focus, a.tag:hover {
4486
4467
  }
4487
4468
 
4488
4469
  .alert {
4489
- padding: 15px;
4470
+ padding: 1rem;
4490
4471
  margin-bottom: 1rem;
4491
4472
  border: 1px solid transparent;
4492
4473
  border-radius: 0.25rem;
@@ -4501,13 +4482,13 @@ a.tag:focus, a.tag:hover {
4501
4482
  }
4502
4483
 
4503
4484
  .alert-dismissible {
4504
- padding-right: 35px;
4485
+ padding-right: 2rem;
4505
4486
  }
4506
4487
 
4507
4488
  .alert-dismissible .close {
4508
4489
  position: relative;
4509
- top: -2px;
4510
- right: -21px;
4490
+ top: -.125rem;
4491
+ right: -1rem;
4511
4492
  color: inherit;
4512
4493
  }
4513
4494
 
@@ -4783,14 +4764,6 @@ base::-moz-progress-bar,
4783
4764
  }
4784
4765
  }
4785
4766
 
4786
- .media {
4787
- margin-top: 15px;
4788
- }
4789
-
4790
- .media:first-child {
4791
- margin-top: 0;
4792
- }
4793
-
4794
4767
  .media,
4795
4768
  .media-body {
4796
4769
  overflow: hidden;
@@ -5139,7 +5112,7 @@ button.close {
5139
5112
  .modal.fade .modal-dialog {
5140
5113
  -webkit-transition: -webkit-transform .3s ease-out;
5141
5114
  transition: -webkit-transform .3s ease-out;
5142
- -o-transition: transform .3s ease-out, -o-transform .3s ease-out;
5115
+ -o-transition: -o-transform .3s ease-out;
5143
5116
  transition: transform .3s ease-out;
5144
5117
  transition: transform .3s ease-out, -webkit-transform .3s ease-out, -o-transform .3s ease-out;
5145
5118
  -webkit-transform: translate(0, -25%);
@@ -5524,7 +5497,7 @@ button.close {
5524
5497
  .carousel-inner > .carousel-item {
5525
5498
  -webkit-transition: -webkit-transform .6s ease-in-out;
5526
5499
  transition: -webkit-transform .6s ease-in-out;
5527
- -o-transition: transform .6s ease-in-out, -o-transform .6s ease-in-out;
5500
+ -o-transition: -o-transform .6s ease-in-out;
5528
5501
  transition: transform .6s ease-in-out;
5529
5502
  transition: transform .6s ease-in-out, -webkit-transform .6s ease-in-out, -o-transform .6s ease-in-out;
5530
5503
  -webkit-backface-visibility: hidden;
@@ -5730,10 +5703,6 @@ button.close {
5730
5703
  }
5731
5704
  }
5732
5705
 
5733
- .bg-inverse {
5734
- background-color: #373a3c;
5735
- }
5736
-
5737
5706
  .bg-faded {
5738
5707
  background-color: #f7f7f9;
5739
5708
  }
@@ -5783,6 +5752,15 @@ a.bg-danger:focus, a.bg-danger:hover {
5783
5752
  background-color: #c9302c !important;
5784
5753
  }
5785
5754
 
5755
+ .bg-inverse {
5756
+ color: #fff !important;
5757
+ background-color: #373a3c !important;
5758
+ }
5759
+
5760
+ a.bg-inverse:focus, a.bg-inverse:hover {
5761
+ background-color: #1f2021 !important;
5762
+ }
5763
+
5786
5764
  .clearfix::after {
5787
5765
  content: "";
5788
5766
  display: table;
@@ -6241,7 +6219,7 @@ a.bg-danger:focus, a.bg-danger:hover {
6241
6219
  }
6242
6220
 
6243
6221
  a.text-muted:focus, a.text-muted:hover {
6244
- color: #687077;
6222
+ color: #687077 !important;
6245
6223
  }
6246
6224
 
6247
6225
  .text-primary {
@@ -6249,7 +6227,7 @@ a.text-muted:focus, a.text-muted:hover {
6249
6227
  }
6250
6228
 
6251
6229
  a.text-primary:focus, a.text-primary:hover {
6252
- color: #025aa5;
6230
+ color: #025aa5 !important;
6253
6231
  }
6254
6232
 
6255
6233
  .text-success {
@@ -6257,7 +6235,7 @@ a.text-primary:focus, a.text-primary:hover {
6257
6235
  }
6258
6236
 
6259
6237
  a.text-success:focus, a.text-success:hover {
6260
- color: #449d44;
6238
+ color: #449d44 !important;
6261
6239
  }
6262
6240
 
6263
6241
  .text-info {
@@ -6265,7 +6243,7 @@ a.text-success:focus, a.text-success:hover {
6265
6243
  }
6266
6244
 
6267
6245
  a.text-info:focus, a.text-info:hover {
6268
- color: #31b0d5;
6246
+ color: #31b0d5 !important;
6269
6247
  }
6270
6248
 
6271
6249
  .text-warning {
@@ -6273,7 +6251,7 @@ a.text-info:focus, a.text-info:hover {
6273
6251
  }
6274
6252
 
6275
6253
  a.text-warning:focus, a.text-warning:hover {
6276
- color: #ec971f;
6254
+ color: #ec971f !important;
6277
6255
  }
6278
6256
 
6279
6257
  .text-danger {
@@ -6281,7 +6259,7 @@ a.text-warning:focus, a.text-warning:hover {
6281
6259
  }
6282
6260
 
6283
6261
  a.text-danger:focus, a.text-danger:hover {
6284
- color: #c9302c;
6262
+ color: #c9302c !important;
6285
6263
  }
6286
6264
 
6287
6265
  .text-hide {
@@ -6387,4 +6365,4 @@ a.text-danger:focus, a.text-danger:hover {
6387
6365
  display: none !important;
6388
6366
  }
6389
6367
  }
6390
- /*# sourceMappingURL=bootstrap.css.map */
6368
+ /*# sourceMappingURL=bootstrap.css.map */
@@ -0,0 +1,9 @@
1
+ li.jstree-node-invisible {
2
+ > a.jstree-anchor {
3
+ opacity: 0.6;
4
+
5
+ i.jstree-icon:before {
6
+ @include icon($icon-eye-slash);
7
+ }
8
+ }
9
+ }
File without changes
@@ -15,6 +15,7 @@
15
15
  font-weight: normal;
16
16
  font-style: normal;
17
17
  }
18
+
18
19
  .fa {
19
20
  display: inline-block;
20
21
  font: normal normal normal 14px/1 FontAwesome;
@@ -182,1985 +183,651 @@
182
183
  .fa-inverse {
183
184
  color: #ffffff;
184
185
  }
186
+
187
+ @mixin icon($icon) {
188
+ font-family: FontAwesome;
189
+ font-weight: normal;
190
+ font-style: normal;
191
+ display: inline-block;
192
+ text-decoration: inherit;
193
+ line-height: 1;
194
+ content: $icon;
195
+ }
196
+
197
+ /* These variables can be used with the `icon` mixin. Expand these as you see fit. */
198
+ $icon-eye-slash: "\f070";
199
+
185
200
  /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
186
201
  readers do not read off random characters that represent icons */
187
- .fa-glass:before {
188
- content: "\f000";
189
- }
190
- .fa-music:before {
191
- content: "\f001";
192
- }
193
- .fa-search:before {
194
- content: "\f002";
195
- }
196
- .fa-envelope-o:before {
197
- content: "\f003";
198
- }
199
- .fa-heart:before {
200
- content: "\f004";
201
- }
202
- .fa-star:before {
203
- content: "\f005";
204
- }
205
- .fa-star-o:before {
206
- content: "\f006";
207
- }
208
- .fa-user:before {
209
- content: "\f007";
210
- }
211
- .fa-film:before {
212
- content: "\f008";
213
- }
214
- .fa-th-large:before {
215
- content: "\f009";
216
- }
217
- .fa-th:before {
218
- content: "\f00a";
219
- }
220
- .fa-th-list:before {
221
- content: "\f00b";
222
- }
223
- .fa-check:before {
224
- content: "\f00c";
225
- }
226
- .fa-remove:before,
227
- .fa-close:before,
228
- .fa-times:before {
229
- content: "\f00d";
230
- }
231
- .fa-search-plus:before {
232
- content: "\f00e";
233
- }
234
- .fa-search-minus:before {
235
- content: "\f010";
236
- }
237
- .fa-power-off:before {
238
- content: "\f011";
239
- }
240
- .fa-signal:before {
241
- content: "\f012";
242
- }
243
- .fa-gear:before,
244
- .fa-cog:before {
245
- content: "\f013";
246
- }
247
- .fa-trash-o:before {
248
- content: "\f014";
249
- }
250
- .fa-home:before {
251
- content: "\f015";
252
- }
253
- .fa-file-o:before {
254
- content: "\f016";
255
- }
256
- .fa-clock-o:before {
257
- content: "\f017";
258
- }
259
- .fa-road:before {
260
- content: "\f018";
261
- }
262
- .fa-download:before {
263
- content: "\f019";
264
- }
265
- .fa-arrow-circle-o-down:before {
266
- content: "\f01a";
267
- }
268
- .fa-arrow-circle-o-up:before {
269
- content: "\f01b";
270
- }
271
- .fa-inbox:before {
272
- content: "\f01c";
273
- }
274
- .fa-play-circle-o:before {
275
- content: "\f01d";
276
- }
277
- .fa-rotate-right:before,
278
- .fa-repeat:before {
279
- content: "\f01e";
280
- }
281
- .fa-refresh:before {
282
- content: "\f021";
283
- }
284
- .fa-list-alt:before {
285
- content: "\f022";
286
- }
287
- .fa-lock:before {
288
- content: "\f023";
289
- }
290
- .fa-flag:before {
291
- content: "\f024";
292
- }
293
- .fa-headphones:before {
294
- content: "\f025";
295
- }
296
- .fa-volume-off:before {
297
- content: "\f026";
298
- }
299
- .fa-volume-down:before {
300
- content: "\f027";
301
- }
302
- .fa-volume-up:before {
303
- content: "\f028";
304
- }
305
- .fa-qrcode:before {
306
- content: "\f029";
307
- }
308
- .fa-barcode:before {
309
- content: "\f02a";
310
- }
311
- .fa-tag:before {
312
- content: "\f02b";
313
- }
314
- .fa-tags:before {
315
- content: "\f02c";
316
- }
317
- .fa-book:before {
318
- content: "\f02d";
319
- }
320
- .fa-bookmark:before {
321
- content: "\f02e";
322
- }
323
- .fa-print:before {
324
- content: "\f02f";
325
- }
326
- .fa-camera:before {
327
- content: "\f030";
328
- }
329
- .fa-font:before {
330
- content: "\f031";
331
- }
332
- .fa-bold:before {
333
- content: "\f032";
334
- }
335
- .fa-italic:before {
336
- content: "\f033";
337
- }
338
- .fa-text-height:before {
339
- content: "\f034";
340
- }
341
- .fa-text-width:before {
342
- content: "\f035";
343
- }
344
- .fa-align-left:before {
345
- content: "\f036";
346
- }
347
- .fa-align-center:before {
348
- content: "\f037";
349
- }
350
- .fa-align-right:before {
351
- content: "\f038";
352
- }
353
- .fa-align-justify:before {
354
- content: "\f039";
355
- }
356
- .fa-list:before {
357
- content: "\f03a";
358
- }
359
- .fa-dedent:before,
360
- .fa-outdent:before {
361
- content: "\f03b";
362
- }
363
- .fa-indent:before {
364
- content: "\f03c";
365
- }
366
- .fa-video-camera:before {
367
- content: "\f03d";
368
- }
369
- .fa-photo:before,
370
- .fa-image:before,
371
- .fa-picture-o:before {
372
- content: "\f03e";
373
- }
374
- .fa-pencil:before {
375
- content: "\f040";
376
- }
377
- .fa-map-marker:before {
378
- content: "\f041";
379
- }
380
- .fa-adjust:before {
381
- content: "\f042";
382
- }
383
- .fa-tint:before {
384
- content: "\f043";
385
- }
386
- .fa-edit:before,
387
- .fa-pencil-square-o:before {
388
- content: "\f044";
389
- }
390
- .fa-share-square-o:before {
391
- content: "\f045";
392
- }
393
- .fa-check-square-o:before {
394
- content: "\f046";
395
- }
396
- .fa-arrows:before {
397
- content: "\f047";
398
- }
399
- .fa-step-backward:before {
400
- content: "\f048";
401
- }
402
- .fa-fast-backward:before {
403
- content: "\f049";
404
- }
405
- .fa-backward:before {
406
- content: "\f04a";
407
- }
408
- .fa-play:before {
409
- content: "\f04b";
410
- }
411
- .fa-pause:before {
412
- content: "\f04c";
413
- }
414
- .fa-stop:before {
415
- content: "\f04d";
416
- }
417
- .fa-forward:before {
418
- content: "\f04e";
419
- }
420
- .fa-fast-forward:before {
421
- content: "\f050";
422
- }
423
- .fa-step-forward:before {
424
- content: "\f051";
425
- }
426
- .fa-eject:before {
427
- content: "\f052";
428
- }
429
- .fa-chevron-left:before {
430
- content: "\f053";
431
- }
432
- .fa-chevron-right:before {
433
- content: "\f054";
434
- }
435
- .fa-plus-circle:before {
436
- content: "\f055";
437
- }
438
- .fa-minus-circle:before {
439
- content: "\f056";
440
- }
441
- .fa-times-circle:before {
442
- content: "\f057";
443
- }
444
- .fa-check-circle:before {
445
- content: "\f058";
446
- }
447
- .fa-question-circle:before {
448
- content: "\f059";
449
- }
450
- .fa-info-circle:before {
451
- content: "\f05a";
452
- }
453
- .fa-crosshairs:before {
454
- content: "\f05b";
455
- }
456
- .fa-times-circle-o:before {
457
- content: "\f05c";
458
- }
459
- .fa-check-circle-o:before {
460
- content: "\f05d";
461
- }
462
- .fa-ban:before {
463
- content: "\f05e";
464
- }
465
- .fa-arrow-left:before {
466
- content: "\f060";
467
- }
468
- .fa-arrow-right:before {
469
- content: "\f061";
470
- }
471
- .fa-arrow-up:before {
472
- content: "\f062";
473
- }
474
- .fa-arrow-down:before {
475
- content: "\f063";
476
- }
477
- .fa-mail-forward:before,
478
- .fa-share:before {
479
- content: "\f064";
480
- }
481
- .fa-expand:before {
482
- content: "\f065";
483
- }
484
- .fa-compress:before {
485
- content: "\f066";
486
- }
487
- .fa-plus:before {
488
- content: "\f067";
489
- }
490
- .fa-minus:before {
491
- content: "\f068";
492
- }
493
- .fa-asterisk:before {
494
- content: "\f069";
495
- }
496
- .fa-exclamation-circle:before {
497
- content: "\f06a";
498
- }
499
- .fa-gift:before {
500
- content: "\f06b";
501
- }
502
- .fa-leaf:before {
503
- content: "\f06c";
504
- }
505
- .fa-fire:before {
506
- content: "\f06d";
507
- }
508
- .fa-eye:before {
509
- content: "\f06e";
510
- }
511
- .fa-eye-slash:before {
512
- content: "\f070";
513
- }
514
- .fa-warning:before,
515
- .fa-exclamation-triangle:before {
516
- content: "\f071";
517
- }
518
- .fa-plane:before {
519
- content: "\f072";
520
- }
521
- .fa-calendar:before {
522
- content: "\f073";
523
- }
524
- .fa-random:before {
525
- content: "\f074";
526
- }
527
- .fa-comment:before {
528
- content: "\f075";
529
- }
530
- .fa-magnet:before {
531
- content: "\f076";
532
- }
533
- .fa-chevron-up:before {
534
- content: "\f077";
535
- }
536
- .fa-chevron-down:before {
537
- content: "\f078";
538
- }
539
- .fa-retweet:before {
540
- content: "\f079";
541
- }
542
- .fa-shopping-cart:before {
543
- content: "\f07a";
544
- }
545
- .fa-folder:before {
546
- content: "\f07b";
547
- }
548
- .fa-folder-open:before {
549
- content: "\f07c";
550
- }
551
- .fa-arrows-v:before {
552
- content: "\f07d";
553
- }
554
- .fa-arrows-h:before {
555
- content: "\f07e";
556
- }
557
- .fa-bar-chart-o:before,
558
- .fa-bar-chart:before {
559
- content: "\f080";
560
- }
561
- .fa-twitter-square:before {
562
- content: "\f081";
563
- }
564
- .fa-facebook-square:before {
565
- content: "\f082";
566
- }
567
- .fa-camera-retro:before {
568
- content: "\f083";
569
- }
570
- .fa-key:before {
571
- content: "\f084";
572
- }
573
- .fa-gears:before,
574
- .fa-cogs:before {
575
- content: "\f085";
576
- }
577
- .fa-comments:before {
578
- content: "\f086";
579
- }
580
- .fa-thumbs-o-up:before {
581
- content: "\f087";
582
- }
583
- .fa-thumbs-o-down:before {
584
- content: "\f088";
585
- }
586
- .fa-star-half:before {
587
- content: "\f089";
588
- }
589
- .fa-heart-o:before {
590
- content: "\f08a";
591
- }
592
- .fa-sign-out:before {
593
- content: "\f08b";
594
- }
595
- .fa-linkedin-square:before {
596
- content: "\f08c";
597
- }
598
- .fa-thumb-tack:before {
599
- content: "\f08d";
600
- }
601
- .fa-external-link:before {
602
- content: "\f08e";
603
- }
604
- .fa-sign-in:before {
605
- content: "\f090";
606
- }
607
- .fa-trophy:before {
608
- content: "\f091";
609
- }
610
- .fa-github-square:before {
611
- content: "\f092";
612
- }
613
- .fa-upload:before {
614
- content: "\f093";
615
- }
616
- .fa-lemon-o:before {
617
- content: "\f094";
618
- }
619
- .fa-phone:before {
620
- content: "\f095";
621
- }
622
- .fa-square-o:before {
623
- content: "\f096";
624
- }
625
- .fa-bookmark-o:before {
626
- content: "\f097";
627
- }
628
- .fa-phone-square:before {
629
- content: "\f098";
630
- }
631
- .fa-twitter:before {
632
- content: "\f099";
633
- }
634
- .fa-facebook-f:before,
635
- .fa-facebook:before {
636
- content: "\f09a";
637
- }
638
- .fa-github:before {
639
- content: "\f09b";
640
- }
641
- .fa-unlock:before {
642
- content: "\f09c";
643
- }
644
- .fa-credit-card:before {
645
- content: "\f09d";
646
- }
647
- .fa-feed:before,
648
- .fa-rss:before {
649
- content: "\f09e";
650
- }
651
- .fa-hdd-o:before {
652
- content: "\f0a0";
653
- }
654
- .fa-bullhorn:before {
655
- content: "\f0a1";
656
- }
657
- .fa-bell:before {
658
- content: "\f0f3";
659
- }
660
- .fa-certificate:before {
661
- content: "\f0a3";
662
- }
663
- .fa-hand-o-right:before {
664
- content: "\f0a4";
665
- }
666
- .fa-hand-o-left:before {
667
- content: "\f0a5";
668
- }
669
- .fa-hand-o-up:before {
670
- content: "\f0a6";
671
- }
672
- .fa-hand-o-down:before {
673
- content: "\f0a7";
674
- }
675
- .fa-arrow-circle-left:before {
676
- content: "\f0a8";
677
- }
678
- .fa-arrow-circle-right:before {
679
- content: "\f0a9";
680
- }
681
- .fa-arrow-circle-up:before {
682
- content: "\f0aa";
683
- }
684
- .fa-arrow-circle-down:before {
685
- content: "\f0ab";
686
- }
687
- .fa-globe:before {
688
- content: "\f0ac";
689
- }
690
- .fa-wrench:before {
691
- content: "\f0ad";
692
- }
693
- .fa-tasks:before {
694
- content: "\f0ae";
695
- }
696
- .fa-filter:before {
697
- content: "\f0b0";
698
- }
699
- .fa-briefcase:before {
700
- content: "\f0b1";
701
- }
702
- .fa-arrows-alt:before {
703
- content: "\f0b2";
704
- }
705
- .fa-group:before,
706
- .fa-users:before {
707
- content: "\f0c0";
708
- }
709
- .fa-chain:before,
710
- .fa-link:before {
711
- content: "\f0c1";
712
- }
713
- .fa-cloud:before {
714
- content: "\f0c2";
715
- }
716
- .fa-flask:before {
717
- content: "\f0c3";
718
- }
719
- .fa-cut:before,
720
- .fa-scissors:before {
721
- content: "\f0c4";
722
- }
723
- .fa-copy:before,
724
- .fa-files-o:before {
725
- content: "\f0c5";
726
- }
727
- .fa-paperclip:before {
728
- content: "\f0c6";
729
- }
730
- .fa-save:before,
731
- .fa-floppy-o:before {
732
- content: "\f0c7";
733
- }
734
- .fa-square:before {
735
- content: "\f0c8";
736
- }
737
- .fa-navicon:before,
738
- .fa-reorder:before,
739
- .fa-bars:before {
740
- content: "\f0c9";
741
- }
742
- .fa-list-ul:before {
743
- content: "\f0ca";
744
- }
745
- .fa-list-ol:before {
746
- content: "\f0cb";
747
- }
748
- .fa-strikethrough:before {
749
- content: "\f0cc";
750
- }
751
- .fa-underline:before {
752
- content: "\f0cd";
753
- }
754
- .fa-table:before {
755
- content: "\f0ce";
756
- }
757
- .fa-magic:before {
758
- content: "\f0d0";
759
- }
760
- .fa-truck:before {
761
- content: "\f0d1";
762
- }
763
- .fa-pinterest:before {
764
- content: "\f0d2";
765
- }
766
- .fa-pinterest-square:before {
767
- content: "\f0d3";
768
- }
769
- .fa-google-plus-square:before {
770
- content: "\f0d4";
771
- }
772
- .fa-google-plus:before {
773
- content: "\f0d5";
774
- }
775
- .fa-money:before {
776
- content: "\f0d6";
777
- }
778
- .fa-caret-down:before {
779
- content: "\f0d7";
780
- }
781
- .fa-caret-up:before {
782
- content: "\f0d8";
783
- }
784
- .fa-caret-left:before {
785
- content: "\f0d9";
786
- }
787
- .fa-caret-right:before {
788
- content: "\f0da";
789
- }
790
- .fa-columns:before {
791
- content: "\f0db";
792
- }
793
- .fa-unsorted:before,
794
- .fa-sort:before {
795
- content: "\f0dc";
796
- }
797
- .fa-sort-down:before,
798
- .fa-sort-desc:before {
799
- content: "\f0dd";
800
- }
801
- .fa-sort-up:before,
802
- .fa-sort-asc:before {
803
- content: "\f0de";
804
- }
805
- .fa-envelope:before {
806
- content: "\f0e0";
807
- }
808
- .fa-linkedin:before {
809
- content: "\f0e1";
810
- }
811
- .fa-rotate-left:before,
812
- .fa-undo:before {
813
- content: "\f0e2";
814
- }
815
- .fa-legal:before,
816
- .fa-gavel:before {
817
- content: "\f0e3";
818
- }
819
- .fa-dashboard:before,
820
- .fa-tachometer:before {
821
- content: "\f0e4";
822
- }
823
- .fa-comment-o:before {
824
- content: "\f0e5";
825
- }
826
- .fa-comments-o:before {
827
- content: "\f0e6";
828
- }
829
- .fa-flash:before,
830
- .fa-bolt:before {
831
- content: "\f0e7";
832
- }
833
- .fa-sitemap:before {
834
- content: "\f0e8";
835
- }
836
- .fa-umbrella:before {
837
- content: "\f0e9";
838
- }
839
- .fa-paste:before,
840
- .fa-clipboard:before {
841
- content: "\f0ea";
842
- }
843
- .fa-lightbulb-o:before {
844
- content: "\f0eb";
845
- }
846
- .fa-exchange:before {
847
- content: "\f0ec";
848
- }
849
- .fa-cloud-download:before {
850
- content: "\f0ed";
851
- }
852
- .fa-cloud-upload:before {
853
- content: "\f0ee";
854
- }
855
- .fa-user-md:before {
856
- content: "\f0f0";
857
- }
858
- .fa-stethoscope:before {
859
- content: "\f0f1";
860
- }
861
- .fa-suitcase:before {
862
- content: "\f0f2";
863
- }
864
- .fa-bell-o:before {
865
- content: "\f0a2";
866
- }
867
- .fa-coffee:before {
868
- content: "\f0f4";
869
- }
870
- .fa-cutlery:before {
871
- content: "\f0f5";
872
- }
873
- .fa-file-text-o:before {
874
- content: "\f0f6";
875
- }
876
- .fa-building-o:before {
877
- content: "\f0f7";
878
- }
879
- .fa-hospital-o:before {
880
- content: "\f0f8";
881
- }
882
- .fa-ambulance:before {
883
- content: "\f0f9";
884
- }
885
- .fa-medkit:before {
886
- content: "\f0fa";
887
- }
888
- .fa-fighter-jet:before {
889
- content: "\f0fb";
890
- }
891
- .fa-beer:before {
892
- content: "\f0fc";
893
- }
894
- .fa-h-square:before {
895
- content: "\f0fd";
896
- }
897
- .fa-plus-square:before {
898
- content: "\f0fe";
899
- }
900
- .fa-angle-double-left:before {
901
- content: "\f100";
902
- }
903
- .fa-angle-double-right:before {
904
- content: "\f101";
905
- }
906
- .fa-angle-double-up:before {
907
- content: "\f102";
908
- }
909
- .fa-angle-double-down:before {
910
- content: "\f103";
911
- }
912
- .fa-angle-left:before {
913
- content: "\f104";
914
- }
915
- .fa-angle-right:before {
916
- content: "\f105";
917
- }
918
- .fa-angle-up:before {
919
- content: "\f106";
920
- }
921
- .fa-angle-down:before {
922
- content: "\f107";
923
- }
924
- .fa-desktop:before {
925
- content: "\f108";
926
- }
927
- .fa-laptop:before {
928
- content: "\f109";
929
- }
930
- .fa-tablet:before {
931
- content: "\f10a";
932
- }
933
- .fa-mobile-phone:before,
934
- .fa-mobile:before {
935
- content: "\f10b";
936
- }
937
- .fa-circle-o:before {
938
- content: "\f10c";
939
- }
940
- .fa-quote-left:before {
941
- content: "\f10d";
942
- }
943
- .fa-quote-right:before {
944
- content: "\f10e";
945
- }
946
- .fa-spinner:before {
947
- content: "\f110";
948
- }
949
- .fa-circle:before {
950
- content: "\f111";
951
- }
952
- .fa-mail-reply:before,
953
- .fa-reply:before {
954
- content: "\f112";
955
- }
956
- .fa-github-alt:before {
957
- content: "\f113";
958
- }
959
- .fa-folder-o:before {
960
- content: "\f114";
961
- }
962
- .fa-folder-open-o:before {
963
- content: "\f115";
964
- }
965
- .fa-smile-o:before {
966
- content: "\f118";
967
- }
968
- .fa-frown-o:before {
969
- content: "\f119";
970
- }
971
- .fa-meh-o:before {
972
- content: "\f11a";
973
- }
974
- .fa-gamepad:before {
975
- content: "\f11b";
976
- }
977
- .fa-keyboard-o:before {
978
- content: "\f11c";
979
- }
980
- .fa-flag-o:before {
981
- content: "\f11d";
982
- }
983
- .fa-flag-checkered:before {
984
- content: "\f11e";
985
- }
986
- .fa-terminal:before {
987
- content: "\f120";
988
- }
989
- .fa-code:before {
990
- content: "\f121";
991
- }
992
- .fa-mail-reply-all:before,
993
- .fa-reply-all:before {
994
- content: "\f122";
995
- }
996
- .fa-star-half-empty:before,
997
- .fa-star-half-full:before,
998
- .fa-star-half-o:before {
999
- content: "\f123";
1000
- }
1001
- .fa-location-arrow:before {
1002
- content: "\f124";
1003
- }
1004
- .fa-crop:before {
1005
- content: "\f125";
1006
- }
1007
- .fa-code-fork:before {
1008
- content: "\f126";
1009
- }
1010
- .fa-unlink:before,
1011
- .fa-chain-broken:before {
1012
- content: "\f127";
1013
- }
1014
- .fa-question:before {
1015
- content: "\f128";
1016
- }
1017
- .fa-info:before {
1018
- content: "\f129";
1019
- }
1020
- .fa-exclamation:before {
1021
- content: "\f12a";
1022
- }
1023
- .fa-superscript:before {
1024
- content: "\f12b";
1025
- }
1026
- .fa-subscript:before {
1027
- content: "\f12c";
1028
- }
1029
- .fa-eraser:before {
1030
- content: "\f12d";
1031
- }
1032
- .fa-puzzle-piece:before {
1033
- content: "\f12e";
1034
- }
1035
- .fa-microphone:before {
1036
- content: "\f130";
1037
- }
1038
- .fa-microphone-slash:before {
1039
- content: "\f131";
1040
- }
1041
- .fa-shield:before {
1042
- content: "\f132";
1043
- }
1044
- .fa-calendar-o:before {
1045
- content: "\f133";
1046
- }
1047
- .fa-fire-extinguisher:before {
1048
- content: "\f134";
1049
- }
1050
- .fa-rocket:before {
1051
- content: "\f135";
1052
- }
1053
- .fa-maxcdn:before {
1054
- content: "\f136";
1055
- }
1056
- .fa-chevron-circle-left:before {
1057
- content: "\f137";
1058
- }
1059
- .fa-chevron-circle-right:before {
1060
- content: "\f138";
1061
- }
1062
- .fa-chevron-circle-up:before {
1063
- content: "\f139";
1064
- }
1065
- .fa-chevron-circle-down:before {
1066
- content: "\f13a";
1067
- }
1068
- .fa-html5:before {
1069
- content: "\f13b";
1070
- }
1071
- .fa-css3:before {
1072
- content: "\f13c";
1073
- }
1074
- .fa-anchor:before {
1075
- content: "\f13d";
1076
- }
1077
- .fa-unlock-alt:before {
1078
- content: "\f13e";
1079
- }
1080
- .fa-bullseye:before {
1081
- content: "\f140";
1082
- }
1083
- .fa-ellipsis-h:before {
1084
- content: "\f141";
1085
- }
1086
- .fa-ellipsis-v:before {
1087
- content: "\f142";
1088
- }
1089
- .fa-rss-square:before {
1090
- content: "\f143";
1091
- }
1092
- .fa-play-circle:before {
1093
- content: "\f144";
1094
- }
1095
- .fa-ticket:before {
1096
- content: "\f145";
1097
- }
1098
- .fa-minus-square:before {
1099
- content: "\f146";
1100
- }
1101
- .fa-minus-square-o:before {
1102
- content: "\f147";
1103
- }
1104
- .fa-level-up:before {
1105
- content: "\f148";
1106
- }
1107
- .fa-level-down:before {
1108
- content: "\f149";
1109
- }
1110
- .fa-check-square:before {
1111
- content: "\f14a";
1112
- }
1113
- .fa-pencil-square:before {
1114
- content: "\f14b";
1115
- }
1116
- .fa-external-link-square:before {
1117
- content: "\f14c";
1118
- }
1119
- .fa-share-square:before {
1120
- content: "\f14d";
1121
- }
1122
- .fa-compass:before {
1123
- content: "\f14e";
1124
- }
1125
- .fa-toggle-down:before,
1126
- .fa-caret-square-o-down:before {
1127
- content: "\f150";
1128
- }
1129
- .fa-toggle-up:before,
1130
- .fa-caret-square-o-up:before {
1131
- content: "\f151";
1132
- }
1133
- .fa-toggle-right:before,
1134
- .fa-caret-square-o-right:before {
1135
- content: "\f152";
1136
- }
1137
- .fa-euro:before,
1138
- .fa-eur:before {
1139
- content: "\f153";
1140
- }
1141
- .fa-gbp:before {
1142
- content: "\f154";
1143
- }
1144
- .fa-dollar:before,
1145
- .fa-usd:before {
1146
- content: "\f155";
1147
- }
1148
- .fa-rupee:before,
1149
- .fa-inr:before {
1150
- content: "\f156";
1151
- }
1152
- .fa-cny:before,
1153
- .fa-rmb:before,
1154
- .fa-yen:before,
1155
- .fa-jpy:before {
1156
- content: "\f157";
1157
- }
1158
- .fa-ruble:before,
1159
- .fa-rouble:before,
1160
- .fa-rub:before {
1161
- content: "\f158";
1162
- }
1163
- .fa-won:before,
1164
- .fa-krw:before {
1165
- content: "\f159";
1166
- }
1167
- .fa-bitcoin:before,
1168
- .fa-btc:before {
1169
- content: "\f15a";
1170
- }
1171
- .fa-file:before {
1172
- content: "\f15b";
1173
- }
1174
- .fa-file-text:before {
1175
- content: "\f15c";
1176
- }
1177
- .fa-sort-alpha-asc:before {
1178
- content: "\f15d";
1179
- }
1180
- .fa-sort-alpha-desc:before {
1181
- content: "\f15e";
1182
- }
1183
- .fa-sort-amount-asc:before {
1184
- content: "\f160";
1185
- }
1186
- .fa-sort-amount-desc:before {
1187
- content: "\f161";
1188
- }
1189
- .fa-sort-numeric-asc:before {
1190
- content: "\f162";
1191
- }
1192
- .fa-sort-numeric-desc:before {
1193
- content: "\f163";
1194
- }
1195
- .fa-thumbs-up:before {
1196
- content: "\f164";
1197
- }
1198
- .fa-thumbs-down:before {
1199
- content: "\f165";
1200
- }
1201
- .fa-youtube-square:before {
1202
- content: "\f166";
1203
- }
1204
- .fa-youtube:before {
1205
- content: "\f167";
1206
- }
1207
- .fa-xing:before {
1208
- content: "\f168";
1209
- }
1210
- .fa-xing-square:before {
1211
- content: "\f169";
1212
- }
1213
- .fa-youtube-play:before {
1214
- content: "\f16a";
1215
- }
1216
- .fa-dropbox:before {
1217
- content: "\f16b";
1218
- }
1219
- .fa-stack-overflow:before {
1220
- content: "\f16c";
1221
- }
1222
- .fa-instagram:before {
1223
- content: "\f16d";
1224
- }
1225
- .fa-flickr:before {
1226
- content: "\f16e";
1227
- }
1228
- .fa-adn:before {
1229
- content: "\f170";
1230
- }
1231
- .fa-bitbucket:before {
1232
- content: "\f171";
1233
- }
1234
- .fa-bitbucket-square:before {
1235
- content: "\f172";
1236
- }
1237
- .fa-tumblr:before {
1238
- content: "\f173";
1239
- }
1240
- .fa-tumblr-square:before {
1241
- content: "\f174";
1242
- }
1243
- .fa-long-arrow-down:before {
1244
- content: "\f175";
1245
- }
1246
- .fa-long-arrow-up:before {
1247
- content: "\f176";
1248
- }
1249
- .fa-long-arrow-left:before {
1250
- content: "\f177";
1251
- }
1252
- .fa-long-arrow-right:before {
1253
- content: "\f178";
1254
- }
1255
- .fa-apple:before {
1256
- content: "\f179";
1257
- }
1258
- .fa-windows:before {
1259
- content: "\f17a";
1260
- }
1261
- .fa-android:before {
1262
- content: "\f17b";
1263
- }
1264
- .fa-linux:before {
1265
- content: "\f17c";
1266
- }
1267
- .fa-dribbble:before {
1268
- content: "\f17d";
1269
- }
1270
- .fa-skype:before {
1271
- content: "\f17e";
1272
- }
1273
- .fa-foursquare:before {
1274
- content: "\f180";
1275
- }
1276
- .fa-trello:before {
1277
- content: "\f181";
1278
- }
1279
- .fa-female:before {
1280
- content: "\f182";
1281
- }
1282
- .fa-male:before {
1283
- content: "\f183";
1284
- }
1285
- .fa-gittip:before,
1286
- .fa-gratipay:before {
1287
- content: "\f184";
1288
- }
1289
- .fa-sun-o:before {
1290
- content: "\f185";
1291
- }
1292
- .fa-moon-o:before {
1293
- content: "\f186";
1294
- }
1295
- .fa-archive:before {
1296
- content: "\f187";
1297
- }
1298
- .fa-bug:before {
1299
- content: "\f188";
1300
- }
1301
- .fa-vk:before {
1302
- content: "\f189";
1303
- }
1304
- .fa-weibo:before {
1305
- content: "\f18a";
1306
- }
1307
- .fa-renren:before {
1308
- content: "\f18b";
1309
- }
1310
- .fa-pagelines:before {
1311
- content: "\f18c";
1312
- }
1313
- .fa-stack-exchange:before {
1314
- content: "\f18d";
1315
- }
1316
- .fa-arrow-circle-o-right:before {
1317
- content: "\f18e";
1318
- }
1319
- .fa-arrow-circle-o-left:before {
1320
- content: "\f190";
1321
- }
1322
- .fa-toggle-left:before,
1323
- .fa-caret-square-o-left:before {
1324
- content: "\f191";
1325
- }
1326
- .fa-dot-circle-o:before {
1327
- content: "\f192";
1328
- }
1329
- .fa-wheelchair:before {
1330
- content: "\f193";
1331
- }
1332
- .fa-vimeo-square:before {
1333
- content: "\f194";
1334
- }
1335
- .fa-turkish-lira:before,
1336
- .fa-try:before {
1337
- content: "\f195";
1338
- }
1339
- .fa-plus-square-o:before {
1340
- content: "\f196";
1341
- }
1342
- .fa-space-shuttle:before {
1343
- content: "\f197";
1344
- }
1345
- .fa-slack:before {
1346
- content: "\f198";
1347
- }
1348
- .fa-envelope-square:before {
1349
- content: "\f199";
1350
- }
1351
- .fa-wordpress:before {
1352
- content: "\f19a";
1353
- }
1354
- .fa-openid:before {
1355
- content: "\f19b";
1356
- }
1357
- .fa-institution:before,
1358
- .fa-bank:before,
1359
- .fa-university:before {
1360
- content: "\f19c";
1361
- }
1362
- .fa-mortar-board:before,
1363
- .fa-graduation-cap:before {
1364
- content: "\f19d";
1365
- }
1366
- .fa-yahoo:before {
1367
- content: "\f19e";
1368
- }
1369
- .fa-google:before {
1370
- content: "\f1a0";
1371
- }
1372
- .fa-reddit:before {
1373
- content: "\f1a1";
1374
- }
1375
- .fa-reddit-square:before {
1376
- content: "\f1a2";
1377
- }
1378
- .fa-stumbleupon-circle:before {
1379
- content: "\f1a3";
1380
- }
1381
- .fa-stumbleupon:before {
1382
- content: "\f1a4";
1383
- }
1384
- .fa-delicious:before {
1385
- content: "\f1a5";
1386
- }
1387
- .fa-digg:before {
1388
- content: "\f1a6";
1389
- }
1390
- .fa-pied-piper:before {
1391
- content: "\f1a7";
1392
- }
1393
- .fa-pied-piper-alt:before {
1394
- content: "\f1a8";
1395
- }
1396
- .fa-drupal:before {
1397
- content: "\f1a9";
1398
- }
1399
- .fa-joomla:before {
1400
- content: "\f1aa";
1401
- }
1402
- .fa-language:before {
1403
- content: "\f1ab";
1404
- }
1405
- .fa-fax:before {
1406
- content: "\f1ac";
1407
- }
1408
- .fa-building:before {
1409
- content: "\f1ad";
1410
- }
1411
- .fa-child:before {
1412
- content: "\f1ae";
1413
- }
1414
- .fa-paw:before {
1415
- content: "\f1b0";
1416
- }
1417
- .fa-spoon:before {
1418
- content: "\f1b1";
1419
- }
1420
- .fa-cube:before {
1421
- content: "\f1b2";
1422
- }
1423
- .fa-cubes:before {
1424
- content: "\f1b3";
1425
- }
1426
- .fa-behance:before {
1427
- content: "\f1b4";
1428
- }
1429
- .fa-behance-square:before {
1430
- content: "\f1b5";
1431
- }
1432
- .fa-steam:before {
1433
- content: "\f1b6";
1434
- }
1435
- .fa-steam-square:before {
1436
- content: "\f1b7";
1437
- }
1438
- .fa-recycle:before {
1439
- content: "\f1b8";
1440
- }
1441
- .fa-automobile:before,
1442
- .fa-car:before {
1443
- content: "\f1b9";
1444
- }
1445
- .fa-cab:before,
1446
- .fa-taxi:before {
1447
- content: "\f1ba";
1448
- }
1449
- .fa-tree:before {
1450
- content: "\f1bb";
1451
- }
1452
- .fa-spotify:before {
1453
- content: "\f1bc";
1454
- }
1455
- .fa-deviantart:before {
1456
- content: "\f1bd";
1457
- }
1458
- .fa-soundcloud:before {
1459
- content: "\f1be";
1460
- }
1461
- .fa-database:before {
1462
- content: "\f1c0";
1463
- }
1464
- .fa-file-pdf-o:before {
1465
- content: "\f1c1";
1466
- }
1467
- .fa-file-word-o:before {
1468
- content: "\f1c2";
1469
- }
1470
- .fa-file-excel-o:before {
1471
- content: "\f1c3";
1472
- }
1473
- .fa-file-powerpoint-o:before {
1474
- content: "\f1c4";
1475
- }
1476
- .fa-file-photo-o:before,
1477
- .fa-file-picture-o:before,
1478
- .fa-file-image-o:before {
1479
- content: "\f1c5";
1480
- }
1481
- .fa-file-zip-o:before,
1482
- .fa-file-archive-o:before {
1483
- content: "\f1c6";
1484
- }
1485
- .fa-file-sound-o:before,
1486
- .fa-file-audio-o:before {
1487
- content: "\f1c7";
1488
- }
1489
- .fa-file-movie-o:before,
1490
- .fa-file-video-o:before {
1491
- content: "\f1c8";
1492
- }
1493
- .fa-file-code-o:before {
1494
- content: "\f1c9";
1495
- }
1496
- .fa-vine:before {
1497
- content: "\f1ca";
1498
- }
1499
- .fa-codepen:before {
1500
- content: "\f1cb";
1501
- }
1502
- .fa-jsfiddle:before {
1503
- content: "\f1cc";
1504
- }
1505
- .fa-life-bouy:before,
1506
- .fa-life-buoy:before,
1507
- .fa-life-saver:before,
1508
- .fa-support:before,
1509
- .fa-life-ring:before {
1510
- content: "\f1cd";
1511
- }
1512
- .fa-circle-o-notch:before {
1513
- content: "\f1ce";
1514
- }
1515
- .fa-ra:before,
1516
- .fa-rebel:before {
1517
- content: "\f1d0";
1518
- }
1519
- .fa-ge:before,
1520
- .fa-empire:before {
1521
- content: "\f1d1";
1522
- }
1523
- .fa-git-square:before {
1524
- content: "\f1d2";
1525
- }
1526
- .fa-git:before {
1527
- content: "\f1d3";
1528
- }
1529
- .fa-y-combinator-square:before,
1530
- .fa-yc-square:before,
1531
- .fa-hacker-news:before {
1532
- content: "\f1d4";
1533
- }
1534
- .fa-tencent-weibo:before {
1535
- content: "\f1d5";
1536
- }
1537
- .fa-qq:before {
1538
- content: "\f1d6";
1539
- }
1540
- .fa-wechat:before,
1541
- .fa-weixin:before {
1542
- content: "\f1d7";
1543
- }
1544
- .fa-send:before,
1545
- .fa-paper-plane:before {
1546
- content: "\f1d8";
1547
- }
1548
- .fa-send-o:before,
1549
- .fa-paper-plane-o:before {
1550
- content: "\f1d9";
1551
- }
1552
- .fa-history:before {
1553
- content: "\f1da";
1554
- }
1555
- .fa-circle-thin:before {
1556
- content: "\f1db";
1557
- }
1558
- .fa-header:before {
1559
- content: "\f1dc";
1560
- }
1561
- .fa-paragraph:before {
1562
- content: "\f1dd";
1563
- }
1564
- .fa-sliders:before {
1565
- content: "\f1de";
1566
- }
1567
- .fa-share-alt:before {
1568
- content: "\f1e0";
1569
- }
1570
- .fa-share-alt-square:before {
1571
- content: "\f1e1";
1572
- }
1573
- .fa-bomb:before {
1574
- content: "\f1e2";
1575
- }
1576
- .fa-soccer-ball-o:before,
1577
- .fa-futbol-o:before {
1578
- content: "\f1e3";
1579
- }
1580
- .fa-tty:before {
1581
- content: "\f1e4";
1582
- }
1583
- .fa-binoculars:before {
1584
- content: "\f1e5";
1585
- }
1586
- .fa-plug:before {
1587
- content: "\f1e6";
1588
- }
1589
- .fa-slideshare:before {
1590
- content: "\f1e7";
1591
- }
1592
- .fa-twitch:before {
1593
- content: "\f1e8";
1594
- }
1595
- .fa-yelp:before {
1596
- content: "\f1e9";
1597
- }
1598
- .fa-newspaper-o:before {
1599
- content: "\f1ea";
1600
- }
1601
- .fa-wifi:before {
1602
- content: "\f1eb";
1603
- }
1604
- .fa-calculator:before {
1605
- content: "\f1ec";
1606
- }
1607
- .fa-paypal:before {
1608
- content: "\f1ed";
1609
- }
1610
- .fa-google-wallet:before {
1611
- content: "\f1ee";
1612
- }
1613
- .fa-cc-visa:before {
1614
- content: "\f1f0";
1615
- }
1616
- .fa-cc-mastercard:before {
1617
- content: "\f1f1";
1618
- }
1619
- .fa-cc-discover:before {
1620
- content: "\f1f2";
1621
- }
1622
- .fa-cc-amex:before {
1623
- content: "\f1f3";
1624
- }
1625
- .fa-cc-paypal:before {
1626
- content: "\f1f4";
1627
- }
1628
- .fa-cc-stripe:before {
1629
- content: "\f1f5";
1630
- }
1631
- .fa-bell-slash:before {
1632
- content: "\f1f6";
1633
- }
1634
- .fa-bell-slash-o:before {
1635
- content: "\f1f7";
1636
- }
1637
- .fa-trash:before {
1638
- content: "\f1f8";
1639
- }
1640
- .fa-copyright:before {
1641
- content: "\f1f9";
1642
- }
1643
- .fa-at:before {
1644
- content: "\f1fa";
1645
- }
1646
- .fa-eyedropper:before {
1647
- content: "\f1fb";
1648
- }
1649
- .fa-paint-brush:before {
1650
- content: "\f1fc";
1651
- }
1652
- .fa-birthday-cake:before {
1653
- content: "\f1fd";
1654
- }
1655
- .fa-area-chart:before {
1656
- content: "\f1fe";
1657
- }
1658
- .fa-pie-chart:before {
1659
- content: "\f200";
1660
- }
1661
- .fa-line-chart:before {
1662
- content: "\f201";
1663
- }
1664
- .fa-lastfm:before {
1665
- content: "\f202";
1666
- }
1667
- .fa-lastfm-square:before {
1668
- content: "\f203";
1669
- }
1670
- .fa-toggle-off:before {
1671
- content: "\f204";
1672
- }
1673
- .fa-toggle-on:before {
1674
- content: "\f205";
1675
- }
1676
- .fa-bicycle:before {
1677
- content: "\f206";
1678
- }
1679
- .fa-bus:before {
1680
- content: "\f207";
1681
- }
1682
- .fa-ioxhost:before {
1683
- content: "\f208";
1684
- }
1685
- .fa-angellist:before {
1686
- content: "\f209";
1687
- }
1688
- .fa-cc:before {
1689
- content: "\f20a";
1690
- }
1691
- .fa-shekel:before,
1692
- .fa-sheqel:before,
1693
- .fa-ils:before {
1694
- content: "\f20b";
1695
- }
1696
- .fa-meanpath:before {
1697
- content: "\f20c";
1698
- }
1699
- .fa-buysellads:before {
1700
- content: "\f20d";
1701
- }
1702
- .fa-connectdevelop:before {
1703
- content: "\f20e";
1704
- }
1705
- .fa-dashcube:before {
1706
- content: "\f210";
1707
- }
1708
- .fa-forumbee:before {
1709
- content: "\f211";
1710
- }
1711
- .fa-leanpub:before {
1712
- content: "\f212";
1713
- }
1714
- .fa-sellsy:before {
1715
- content: "\f213";
1716
- }
1717
- .fa-shirtsinbulk:before {
1718
- content: "\f214";
1719
- }
1720
- .fa-simplybuilt:before {
1721
- content: "\f215";
1722
- }
1723
- .fa-skyatlas:before {
1724
- content: "\f216";
1725
- }
1726
- .fa-cart-plus:before {
1727
- content: "\f217";
1728
- }
1729
- .fa-cart-arrow-down:before {
1730
- content: "\f218";
1731
- }
1732
- .fa-diamond:before {
1733
- content: "\f219";
1734
- }
1735
- .fa-ship:before {
1736
- content: "\f21a";
1737
- }
1738
- .fa-user-secret:before {
1739
- content: "\f21b";
1740
- }
1741
- .fa-motorcycle:before {
1742
- content: "\f21c";
1743
- }
1744
- .fa-street-view:before {
1745
- content: "\f21d";
1746
- }
1747
- .fa-heartbeat:before {
1748
- content: "\f21e";
1749
- }
1750
- .fa-venus:before {
1751
- content: "\f221";
1752
- }
1753
- .fa-mars:before {
1754
- content: "\f222";
1755
- }
1756
- .fa-mercury:before {
1757
- content: "\f223";
1758
- }
1759
- .fa-intersex:before,
1760
- .fa-transgender:before {
1761
- content: "\f224";
1762
- }
1763
- .fa-transgender-alt:before {
1764
- content: "\f225";
1765
- }
1766
- .fa-venus-double:before {
1767
- content: "\f226";
1768
- }
1769
- .fa-mars-double:before {
1770
- content: "\f227";
1771
- }
1772
- .fa-venus-mars:before {
1773
- content: "\f228";
1774
- }
1775
- .fa-mars-stroke:before {
1776
- content: "\f229";
1777
- }
1778
- .fa-mars-stroke-v:before {
1779
- content: "\f22a";
1780
- }
1781
- .fa-mars-stroke-h:before {
1782
- content: "\f22b";
1783
- }
1784
- .fa-neuter:before {
1785
- content: "\f22c";
1786
- }
1787
- .fa-genderless:before {
1788
- content: "\f22d";
1789
- }
1790
- .fa-facebook-official:before {
1791
- content: "\f230";
1792
- }
1793
- .fa-pinterest-p:before {
1794
- content: "\f231";
1795
- }
1796
- .fa-whatsapp:before {
1797
- content: "\f232";
1798
- }
1799
- .fa-server:before {
1800
- content: "\f233";
1801
- }
1802
- .fa-user-plus:before {
1803
- content: "\f234";
1804
- }
1805
- .fa-user-times:before {
1806
- content: "\f235";
1807
- }
1808
- .fa-hotel:before,
1809
- .fa-bed:before {
1810
- content: "\f236";
1811
- }
1812
- .fa-viacoin:before {
1813
- content: "\f237";
1814
- }
1815
- .fa-train:before {
1816
- content: "\f238";
1817
- }
1818
- .fa-subway:before {
1819
- content: "\f239";
1820
- }
1821
- .fa-medium:before {
1822
- content: "\f23a";
1823
- }
1824
- .fa-yc:before,
1825
- .fa-y-combinator:before {
1826
- content: "\f23b";
1827
- }
1828
- .fa-optin-monster:before {
1829
- content: "\f23c";
1830
- }
1831
- .fa-opencart:before {
1832
- content: "\f23d";
1833
- }
1834
- .fa-expeditedssl:before {
1835
- content: "\f23e";
1836
- }
1837
- .fa-battery-4:before,
1838
- .fa-battery-full:before {
1839
- content: "\f240";
1840
- }
1841
- .fa-battery-3:before,
1842
- .fa-battery-three-quarters:before {
1843
- content: "\f241";
1844
- }
1845
- .fa-battery-2:before,
1846
- .fa-battery-half:before {
1847
- content: "\f242";
1848
- }
1849
- .fa-battery-1:before,
1850
- .fa-battery-quarter:before {
1851
- content: "\f243";
1852
- }
1853
- .fa-battery-0:before,
1854
- .fa-battery-empty:before {
1855
- content: "\f244";
1856
- }
1857
- .fa-mouse-pointer:before {
1858
- content: "\f245";
1859
- }
1860
- .fa-i-cursor:before {
1861
- content: "\f246";
1862
- }
1863
- .fa-object-group:before {
1864
- content: "\f247";
1865
- }
1866
- .fa-object-ungroup:before {
1867
- content: "\f248";
1868
- }
1869
- .fa-sticky-note:before {
1870
- content: "\f249";
1871
- }
1872
- .fa-sticky-note-o:before {
1873
- content: "\f24a";
1874
- }
1875
- .fa-cc-jcb:before {
1876
- content: "\f24b";
1877
- }
1878
- .fa-cc-diners-club:before {
1879
- content: "\f24c";
1880
- }
1881
- .fa-clone:before {
1882
- content: "\f24d";
1883
- }
1884
- .fa-balance-scale:before {
1885
- content: "\f24e";
1886
- }
1887
- .fa-hourglass-o:before {
1888
- content: "\f250";
1889
- }
1890
- .fa-hourglass-1:before,
1891
- .fa-hourglass-start:before {
1892
- content: "\f251";
1893
- }
1894
- .fa-hourglass-2:before,
1895
- .fa-hourglass-half:before {
1896
- content: "\f252";
1897
- }
1898
- .fa-hourglass-3:before,
1899
- .fa-hourglass-end:before {
1900
- content: "\f253";
1901
- }
1902
- .fa-hourglass:before {
1903
- content: "\f254";
1904
- }
1905
- .fa-hand-grab-o:before,
1906
- .fa-hand-rock-o:before {
1907
- content: "\f255";
1908
- }
1909
- .fa-hand-stop-o:before,
1910
- .fa-hand-paper-o:before {
1911
- content: "\f256";
1912
- }
1913
- .fa-hand-scissors-o:before {
1914
- content: "\f257";
1915
- }
1916
- .fa-hand-lizard-o:before {
1917
- content: "\f258";
1918
- }
1919
- .fa-hand-spock-o:before {
1920
- content: "\f259";
1921
- }
1922
- .fa-hand-pointer-o:before {
1923
- content: "\f25a";
1924
- }
1925
- .fa-hand-peace-o:before {
1926
- content: "\f25b";
1927
- }
1928
- .fa-trademark:before {
1929
- content: "\f25c";
1930
- }
1931
- .fa-registered:before {
1932
- content: "\f25d";
1933
- }
1934
- .fa-creative-commons:before {
1935
- content: "\f25e";
1936
- }
1937
- .fa-gg:before {
1938
- content: "\f260";
1939
- }
1940
- .fa-gg-circle:before {
1941
- content: "\f261";
1942
- }
1943
- .fa-tripadvisor:before {
1944
- content: "\f262";
1945
- }
1946
- .fa-odnoklassniki:before {
1947
- content: "\f263";
1948
- }
1949
- .fa-odnoklassniki-square:before {
1950
- content: "\f264";
1951
- }
1952
- .fa-get-pocket:before {
1953
- content: "\f265";
1954
- }
1955
- .fa-wikipedia-w:before {
1956
- content: "\f266";
1957
- }
1958
- .fa-safari:before {
1959
- content: "\f267";
1960
- }
1961
- .fa-chrome:before {
1962
- content: "\f268";
1963
- }
1964
- .fa-firefox:before {
1965
- content: "\f269";
1966
- }
1967
- .fa-opera:before {
1968
- content: "\f26a";
1969
- }
1970
- .fa-internet-explorer:before {
1971
- content: "\f26b";
1972
- }
1973
- .fa-tv:before,
1974
- .fa-television:before {
1975
- content: "\f26c";
1976
- }
1977
- .fa-contao:before {
1978
- content: "\f26d";
1979
- }
1980
- .fa-500px:before {
1981
- content: "\f26e";
1982
- }
1983
- .fa-amazon:before {
1984
- content: "\f270";
1985
- }
1986
- .fa-calendar-plus-o:before {
1987
- content: "\f271";
1988
- }
1989
- .fa-calendar-minus-o:before {
1990
- content: "\f272";
1991
- }
1992
- .fa-calendar-times-o:before {
1993
- content: "\f273";
1994
- }
1995
- .fa-calendar-check-o:before {
1996
- content: "\f274";
1997
- }
1998
- .fa-industry:before {
1999
- content: "\f275";
2000
- }
2001
- .fa-map-pin:before {
2002
- content: "\f276";
2003
- }
2004
- .fa-map-signs:before {
2005
- content: "\f277";
2006
- }
2007
- .fa-map-o:before {
2008
- content: "\f278";
2009
- }
2010
- .fa-map:before {
2011
- content: "\f279";
2012
- }
2013
- .fa-commenting:before {
2014
- content: "\f27a";
2015
- }
2016
- .fa-commenting-o:before {
2017
- content: "\f27b";
2018
- }
2019
- .fa-houzz:before {
2020
- content: "\f27c";
2021
- }
2022
- .fa-vimeo:before {
2023
- content: "\f27d";
2024
- }
2025
- .fa-black-tie:before {
2026
- content: "\f27e";
2027
- }
2028
- .fa-fonticons:before {
2029
- content: "\f280";
2030
- }
2031
- .fa-reddit-alien:before {
2032
- content: "\f281";
2033
- }
2034
- .fa-edge:before {
2035
- content: "\f282";
2036
- }
2037
- .fa-credit-card-alt:before {
2038
- content: "\f283";
2039
- }
2040
- .fa-codiepie:before {
2041
- content: "\f284";
2042
- }
2043
- .fa-modx:before {
2044
- content: "\f285";
2045
- }
2046
- .fa-fort-awesome:before {
2047
- content: "\f286";
2048
- }
2049
- .fa-usb:before {
2050
- content: "\f287";
2051
- }
2052
- .fa-product-hunt:before {
2053
- content: "\f288";
2054
- }
2055
- .fa-mixcloud:before {
2056
- content: "\f289";
2057
- }
2058
- .fa-scribd:before {
2059
- content: "\f28a";
2060
- }
2061
- .fa-pause-circle:before {
2062
- content: "\f28b";
2063
- }
2064
- .fa-pause-circle-o:before {
2065
- content: "\f28c";
2066
- }
2067
- .fa-stop-circle:before {
2068
- content: "\f28d";
2069
- }
2070
- .fa-stop-circle-o:before {
2071
- content: "\f28e";
2072
- }
2073
- .fa-shopping-bag:before {
2074
- content: "\f290";
2075
- }
2076
- .fa-shopping-basket:before {
2077
- content: "\f291";
2078
- }
2079
- .fa-hashtag:before {
2080
- content: "\f292";
2081
- }
2082
- .fa-bluetooth:before {
2083
- content: "\f293";
2084
- }
2085
- .fa-bluetooth-b:before {
2086
- content: "\f294";
2087
- }
2088
- .fa-percent:before {
2089
- content: "\f295";
2090
- }
2091
- .fa-gitlab:before {
2092
- content: "\f296";
2093
- }
2094
- .fa-wpbeginner:before {
2095
- content: "\f297";
2096
- }
2097
- .fa-wpforms:before {
2098
- content: "\f298";
2099
- }
2100
- .fa-envira:before {
2101
- content: "\f299";
2102
- }
2103
- .fa-universal-access:before {
2104
- content: "\f29a";
2105
- }
2106
- .fa-wheelchair-alt:before {
2107
- content: "\f29b";
2108
- }
2109
- .fa-question-circle-o:before {
2110
- content: "\f29c";
2111
- }
2112
- .fa-blind:before {
2113
- content: "\f29d";
2114
- }
2115
- .fa-audio-description:before {
2116
- content: "\f29e";
2117
- }
2118
- .fa-volume-control-phone:before {
2119
- content: "\f2a0";
2120
- }
2121
- .fa-braille:before {
2122
- content: "\f2a1";
2123
- }
2124
- .fa-assistive-listening-systems:before {
2125
- content: "\f2a2";
2126
- }
2127
- .fa-asl-interpreting:before,
2128
- .fa-american-sign-language-interpreting:before {
2129
- content: "\f2a3";
2130
- }
2131
- .fa-deafness:before,
2132
- .fa-hard-of-hearing:before,
2133
- .fa-deaf:before {
2134
- content: "\f2a4";
2135
- }
2136
- .fa-glide:before {
2137
- content: "\f2a5";
2138
- }
2139
- .fa-glide-g:before {
2140
- content: "\f2a6";
2141
- }
2142
- .fa-signing:before,
2143
- .fa-sign-language:before {
2144
- content: "\f2a7";
2145
- }
2146
- .fa-low-vision:before {
2147
- content: "\f2a8";
2148
- }
2149
- .fa-viadeo:before {
2150
- content: "\f2a9";
2151
- }
2152
- .fa-viadeo-square:before {
2153
- content: "\f2aa";
2154
- }
2155
- .fa-snapchat:before {
2156
- content: "\f2ab";
2157
- }
2158
- .fa-snapchat-ghost:before {
2159
- content: "\f2ac";
2160
- }
2161
- .fa-snapchat-square:before {
2162
- content: "\f2ad";
2163
- }
202
+ .fa-glass:before { content: "\f000"; }
203
+ .fa-music:before { content: "\f001"; }
204
+ .fa-search:before { content: "\f002"; }
205
+ .fa-envelope-o:before { content: "\f003"; }
206
+ .fa-heart:before { content: "\f004"; }
207
+ .fa-star:before { content: "\f005"; }
208
+ .fa-star-o:before { content: "\f006"; }
209
+ .fa-user:before { content: "\f007"; }
210
+ .fa-film:before { content: "\f008"; }
211
+ .fa-th-large:before { content: "\f009"; }
212
+ .fa-th:before { content: "\f00a"; }
213
+ .fa-th-list:before { content: "\f00b"; }
214
+ .fa-check:before { content: "\f00c"; }
215
+ .fa-remove:before, .fa-close:before, .fa-times:before { content: "\f00d"; }
216
+ .fa-search-plus:before { content: "\f00e"; }
217
+ .fa-search-minus:before { content: "\f010"; }
218
+ .fa-power-off:before { content: "\f011"; }
219
+ .fa-signal:before { content: "\f012"; }
220
+ .fa-gear:before, .fa-cog:before { content: "\f013"; }
221
+ .fa-trash-o:before { content: "\f014"; }
222
+ .fa-home:before { content: "\f015"; }
223
+ .fa-file-o:before { content: "\f016"; }
224
+ .fa-clock-o:before { content: "\f017"; }
225
+ .fa-road:before { content: "\f018"; }
226
+ .fa-download:before { content: "\f019"; }
227
+ .fa-arrow-circle-o-down:before { content: "\f01a"; }
228
+ .fa-arrow-circle-o-up:before { content: "\f01b"; }
229
+ .fa-inbox:before { content: "\f01c"; }
230
+ .fa-play-circle-o:before { content: "\f01d"; }
231
+ .fa-rotate-right:before, .fa-repeat:before { content: "\f01e"; }
232
+ .fa-refresh:before { content: "\f021"; }
233
+ .fa-list-alt:before { content: "\f022"; }
234
+ .fa-lock:before { content: "\f023"; }
235
+ .fa-flag:before { content: "\f024"; }
236
+ .fa-headphones:before { content: "\f025"; }
237
+ .fa-volume-off:before { content: "\f026"; }
238
+ .fa-volume-down:before { content: "\f027"; }
239
+ .fa-volume-up:before { content: "\f028"; }
240
+ .fa-qrcode:before { content: "\f029"; }
241
+ .fa-barcode:before { content: "\f02a"; }
242
+ .fa-tag:before { content: "\f02b"; }
243
+ .fa-tags:before { content: "\f02c"; }
244
+ .fa-book:before { content: "\f02d"; }
245
+ .fa-bookmark:before { content: "\f02e"; }
246
+ .fa-print:before { content: "\f02f"; }
247
+ .fa-camera:before { content: "\f030"; }
248
+ .fa-font:before { content: "\f031"; }
249
+ .fa-bold:before { content: "\f032"; }
250
+ .fa-italic:before { content: "\f033"; }
251
+ .fa-text-height:before { content: "\f034"; }
252
+ .fa-text-width:before { content: "\f035"; }
253
+ .fa-align-left:before { content: "\f036"; }
254
+ .fa-align-center:before { content: "\f037"; }
255
+ .fa-align-right:before { content: "\f038"; }
256
+ .fa-align-justify:before { content: "\f039"; }
257
+ .fa-list:before { content: "\f03a"; }
258
+ .fa-dedent:before, .fa-outdent:before { content: "\f03b"; }
259
+ .fa-indent:before { content: "\f03c"; }
260
+ .fa-video-camera:before { content: "\f03d"; }
261
+ .fa-photo:before, .fa-image:before, .fa-picture-o:before { content: "\f03e"; }
262
+ .fa-pencil:before { content: "\f040"; }
263
+ .fa-map-marker:before { content: "\f041"; }
264
+ .fa-adjust:before { content: "\f042"; }
265
+ .fa-tint:before { content: "\f043"; }
266
+ .fa-edit:before, .fa-pencil-square-o:before { content: "\f044"; }
267
+ .fa-share-square-o:before { content: "\f045"; }
268
+ .fa-check-square-o:before { content: "\f046"; }
269
+ .fa-arrows:before { content: "\f047"; }
270
+ .fa-step-backward:before { content: "\f048"; }
271
+ .fa-fast-backward:before { content: "\f049"; }
272
+ .fa-backward:before { content: "\f04a"; }
273
+ .fa-play:before { content: "\f04b"; }
274
+ .fa-pause:before { content: "\f04c"; }
275
+ .fa-stop:before { content: "\f04d"; }
276
+ .fa-forward:before { content: "\f04e"; }
277
+ .fa-fast-forward:before { content: "\f050"; }
278
+ .fa-step-forward:before { content: "\f051"; }
279
+ .fa-eject:before { content: "\f052"; }
280
+ .fa-chevron-left:before { content: "\f053"; }
281
+ .fa-chevron-right:before { content: "\f054"; }
282
+ .fa-plus-circle:before { content: "\f055"; }
283
+ .fa-minus-circle:before { content: "\f056"; }
284
+ .fa-times-circle:before { content: "\f057"; }
285
+ .fa-check-circle:before { content: "\f058"; }
286
+ .fa-question-circle:before { content: "\f059"; }
287
+ .fa-info-circle:before { content: "\f05a"; }
288
+ .fa-crosshairs:before { content: "\f05b"; }
289
+ .fa-times-circle-o:before { content: "\f05c"; }
290
+ .fa-check-circle-o:before { content: "\f05d"; }
291
+ .fa-ban:before { content: "\f05e"; }
292
+ .fa-arrow-left:before { content: "\f060"; }
293
+ .fa-arrow-right:before { content: "\f061"; }
294
+ .fa-arrow-up:before { content: "\f062"; }
295
+ .fa-arrow-down:before { content: "\f063"; }
296
+ .fa-mail-forward:before, .fa-share:before { content: "\f064"; }
297
+ .fa-expand:before { content: "\f065"; }
298
+ .fa-compress:before { content: "\f066"; }
299
+ .fa-plus:before { content: "\f067"; }
300
+ .fa-minus:before { content: "\f068"; }
301
+ .fa-asterisk:before { content: "\f069"; }
302
+ .fa-exclamation-circle:before { content: "\f06a"; }
303
+ .fa-gift:before { content: "\f06b"; }
304
+ .fa-leaf:before { content: "\f06c"; }
305
+ .fa-fire:before { content: "\f06d"; }
306
+ .fa-eye:before { content: "\f06e"; }
307
+ .fa-eye-slash:before { content: "\f070"; }
308
+ .fa-warning:before, .fa-exclamation-triangle:before { content: "\f071"; }
309
+ .fa-plane:before { content: "\f072"; }
310
+ .fa-calendar:before { content: "\f073"; }
311
+ .fa-random:before { content: "\f074"; }
312
+ .fa-comment:before { content: "\f075"; }
313
+ .fa-magnet:before { content: "\f076"; }
314
+ .fa-chevron-up:before { content: "\f077"; }
315
+ .fa-chevron-down:before { content: "\f078"; }
316
+ .fa-retweet:before { content: "\f079"; }
317
+ .fa-shopping-cart:before { content: "\f07a"; }
318
+ .fa-folder:before { content: "\f07b"; }
319
+ .fa-folder-open:before { content: "\f07c"; }
320
+ .fa-arrows-v:before { content: "\f07d"; }
321
+ .fa-arrows-h:before { content: "\f07e"; }
322
+ .fa-bar-chart-o:before, .fa-bar-chart:before { content: "\f080"; }
323
+ .fa-twitter-square:before { content: "\f081"; }
324
+ .fa-facebook-square:before { content: "\f082"; }
325
+ .fa-camera-retro:before { content: "\f083"; }
326
+ .fa-key:before { content: "\f084"; }
327
+ .fa-gears:before, .fa-cogs:before { content: "\f085"; }
328
+ .fa-comments:before { content: "\f086"; }
329
+ .fa-thumbs-o-up:before { content: "\f087"; }
330
+ .fa-thumbs-o-down:before { content: "\f088"; }
331
+ .fa-star-half:before { content: "\f089"; }
332
+ .fa-heart-o:before { content: "\f08a"; }
333
+ .fa-sign-out:before { content: "\f08b"; }
334
+ .fa-linkedin-square:before { content: "\f08c"; }
335
+ .fa-thumb-tack:before { content: "\f08d"; }
336
+ .fa-external-link:before { content: "\f08e"; }
337
+ .fa-sign-in:before { content: "\f090"; }
338
+ .fa-trophy:before { content: "\f091"; }
339
+ .fa-github-square:before { content: "\f092"; }
340
+ .fa-upload:before { content: "\f093"; }
341
+ .fa-lemon-o:before { content: "\f094"; }
342
+ .fa-phone:before { content: "\f095"; }
343
+ .fa-square-o:before { content: "\f096"; }
344
+ .fa-bookmark-o:before { content: "\f097"; }
345
+ .fa-phone-square:before { content: "\f098"; }
346
+ .fa-twitter:before { content: "\f099"; }
347
+ .fa-facebook-f:before, .fa-facebook:before { content: "\f09a"; }
348
+ .fa-github:before { content: "\f09b"; }
349
+ .fa-unlock:before { content: "\f09c"; }
350
+ .fa-credit-card:before { content: "\f09d"; }
351
+ .fa-feed:before, .fa-rss:before { content: "\f09e"; }
352
+ .fa-hdd-o:before { content: "\f0a0"; }
353
+ .fa-bullhorn:before { content: "\f0a1"; }
354
+ .fa-bell:before { content: "\f0f3"; }
355
+ .fa-certificate:before { content: "\f0a3"; }
356
+ .fa-hand-o-right:before { content: "\f0a4"; }
357
+ .fa-hand-o-left:before { content: "\f0a5"; }
358
+ .fa-hand-o-up:before { content: "\f0a6"; }
359
+ .fa-hand-o-down:before { content: "\f0a7"; }
360
+ .fa-arrow-circle-left:before { content: "\f0a8"; }
361
+ .fa-arrow-circle-right:before { content: "\f0a9"; }
362
+ .fa-arrow-circle-up:before { content: "\f0aa"; }
363
+ .fa-arrow-circle-down:before { content: "\f0ab"; }
364
+ .fa-globe:before { content: "\f0ac"; }
365
+ .fa-wrench:before { content: "\f0ad"; }
366
+ .fa-tasks:before { content: "\f0ae"; }
367
+ .fa-filter:before { content: "\f0b0"; }
368
+ .fa-briefcase:before { content: "\f0b1"; }
369
+ .fa-arrows-alt:before { content: "\f0b2"; }
370
+ .fa-group:before, .fa-users:before { content: "\f0c0"; }
371
+ .fa-chain:before, .fa-link:before { content: "\f0c1"; }
372
+ .fa-cloud:before { content: "\f0c2"; }
373
+ .fa-flask:before { content: "\f0c3"; }
374
+ .fa-cut:before, .fa-scissors:before { content: "\f0c4"; }
375
+ .fa-copy:before, .fa-files-o:before { content: "\f0c5"; }
376
+ .fa-paperclip:before { content: "\f0c6"; }
377
+ .fa-save:before, .fa-floppy-o:before { content: "\f0c7"; }
378
+ .fa-square:before { content: "\f0c8"; }
379
+ .fa-navicon:before, .fa-reorder:before, .fa-bars:before { content: "\f0c9"; }
380
+ .fa-list-ul:before { content: "\f0ca"; }
381
+ .fa-list-ol:before { content: "\f0cb"; }
382
+ .fa-strikethrough:before { content: "\f0cc"; }
383
+ .fa-underline:before { content: "\f0cd"; }
384
+ .fa-table:before { content: "\f0ce"; }
385
+ .fa-magic:before { content: "\f0d0"; }
386
+ .fa-truck:before { content: "\f0d1"; }
387
+ .fa-pinterest:before { content: "\f0d2"; }
388
+ .fa-pinterest-square:before { content: "\f0d3"; }
389
+ .fa-google-plus-square:before { content: "\f0d4"; }
390
+ .fa-google-plus:before { content: "\f0d5"; }
391
+ .fa-money:before { content: "\f0d6"; }
392
+ .fa-caret-down:before { content: "\f0d7"; }
393
+ .fa-caret-up:before { content: "\f0d8"; }
394
+ .fa-caret-left:before { content: "\f0d9"; }
395
+ .fa-caret-right:before { content: "\f0da"; }
396
+ .fa-columns:before { content: "\f0db"; }
397
+ .fa-unsorted:before, .fa-sort:before { content: "\f0dc"; }
398
+ .fa-sort-down:before, .fa-sort-desc:before { content: "\f0dd"; }
399
+ .fa-sort-up:before, .fa-sort-asc:before { content: "\f0de"; }
400
+ .fa-envelope:before { content: "\f0e0"; }
401
+ .fa-linkedin:before { content: "\f0e1"; }
402
+ .fa-rotate-left:before, .fa-undo:before { content: "\f0e2"; }
403
+ .fa-legal:before, .fa-gavel:before { content: "\f0e3"; }
404
+ .fa-dashboard:before, .fa-tachometer:before { content: "\f0e4"; }
405
+ .fa-comment-o:before { content: "\f0e5"; }
406
+ .fa-comments-o:before { content: "\f0e6"; }
407
+ .fa-flash:before, .fa-bolt:before { content: "\f0e7"; }
408
+ .fa-sitemap:before { content: "\f0e8"; }
409
+ .fa-umbrella:before { content: "\f0e9"; }
410
+ .fa-paste:before, .fa-clipboard:before { content: "\f0ea"; }
411
+ .fa-lightbulb-o:before { content: "\f0eb"; }
412
+ .fa-exchange:before { content: "\f0ec"; }
413
+ .fa-cloud-download:before { content: "\f0ed"; }
414
+ .fa-cloud-upload:before { content: "\f0ee"; }
415
+ .fa-user-md:before { content: "\f0f0"; }
416
+ .fa-stethoscope:before { content: "\f0f1"; }
417
+ .fa-suitcase:before { content: "\f0f2"; }
418
+ .fa-bell-o:before { content: "\f0a2"; }
419
+ .fa-coffee:before { content: "\f0f4"; }
420
+ .fa-cutlery:before { content: "\f0f5"; }
421
+ .fa-file-text-o:before { content: "\f0f6"; }
422
+ .fa-building-o:before { content: "\f0f7"; }
423
+ .fa-hospital-o:before { content: "\f0f8"; }
424
+ .fa-ambulance:before { content: "\f0f9"; }
425
+ .fa-medkit:before { content: "\f0fa"; }
426
+ .fa-fighter-jet:before { content: "\f0fb"; }
427
+ .fa-beer:before { content: "\f0fc"; }
428
+ .fa-h-square:before { content: "\f0fd"; }
429
+ .fa-plus-square:before { content: "\f0fe"; }
430
+ .fa-angle-double-left:before { content: "\f100"; }
431
+ .fa-angle-double-right:before { content: "\f101"; }
432
+ .fa-angle-double-up:before { content: "\f102"; }
433
+ .fa-angle-double-down:before { content: "\f103"; }
434
+ .fa-angle-left:before { content: "\f104"; }
435
+ .fa-angle-right:before { content: "\f105"; }
436
+ .fa-angle-up:before { content: "\f106"; }
437
+ .fa-angle-down:before { content: "\f107"; }
438
+ .fa-desktop:before { content: "\f108"; }
439
+ .fa-laptop:before { content: "\f109"; }
440
+ .fa-tablet:before { content: "\f10a"; }
441
+ .fa-mobile-phone:before, .fa-mobile:before { content: "\f10b"; }
442
+ .fa-circle-o:before { content: "\f10c"; }
443
+ .fa-quote-left:before { content: "\f10d"; }
444
+ .fa-quote-right:before { content: "\f10e"; }
445
+ .fa-spinner:before { content: "\f110"; }
446
+ .fa-circle:before { content: "\f111"; }
447
+ .fa-mail-reply:before, .fa-reply:before { content: "\f112"; }
448
+ .fa-github-alt:before { content: "\f113"; }
449
+ .fa-folder-o:before { content: "\f114"; }
450
+ .fa-folder-open-o:before { content: "\f115"; }
451
+ .fa-smile-o:before { content: "\f118"; }
452
+ .fa-frown-o:before { content: "\f119"; }
453
+ .fa-meh-o:before { content: "\f11a"; }
454
+ .fa-gamepad:before { content: "\f11b"; }
455
+ .fa-keyboard-o:before { content: "\f11c"; }
456
+ .fa-flag-o:before { content: "\f11d"; }
457
+ .fa-flag-checkered:before { content: "\f11e"; }
458
+ .fa-terminal:before { content: "\f120"; }
459
+ .fa-code:before { content: "\f121"; }
460
+ .fa-mail-reply-all:before, .fa-reply-all:before { content: "\f122"; }
461
+ .fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before { content: "\f123"; }
462
+ .fa-location-arrow:before { content: "\f124"; }
463
+ .fa-crop:before { content: "\f125"; }
464
+ .fa-code-fork:before { content: "\f126"; }
465
+ .fa-unlink:before, .fa-chain-broken:before { content: "\f127"; }
466
+ .fa-question:before { content: "\f128"; }
467
+ .fa-info:before { content: "\f129"; }
468
+ .fa-exclamation:before { content: "\f12a"; }
469
+ .fa-superscript:before { content: "\f12b"; }
470
+ .fa-subscript:before { content: "\f12c"; }
471
+ .fa-eraser:before { content: "\f12d"; }
472
+ .fa-puzzle-piece:before { content: "\f12e"; }
473
+ .fa-microphone:before { content: "\f130"; }
474
+ .fa-microphone-slash:before { content: "\f131"; }
475
+ .fa-shield:before { content: "\f132"; }
476
+ .fa-calendar-o:before { content: "\f133"; }
477
+ .fa-fire-extinguisher:before { content: "\f134"; }
478
+ .fa-rocket:before { content: "\f135"; }
479
+ .fa-maxcdn:before { content: "\f136"; }
480
+ .fa-chevron-circle-left:before { content: "\f137"; }
481
+ .fa-chevron-circle-right:before { content: "\f138"; }
482
+ .fa-chevron-circle-up:before { content: "\f139"; }
483
+ .fa-chevron-circle-down:before { content: "\f13a"; }
484
+ .fa-html5:before { content: "\f13b"; }
485
+ .fa-css3:before { content: "\f13c"; }
486
+ .fa-anchor:before { content: "\f13d"; }
487
+ .fa-unlock-alt:before { content: "\f13e"; }
488
+ .fa-bullseye:before { content: "\f140"; }
489
+ .fa-ellipsis-h:before { content: "\f141"; }
490
+ .fa-ellipsis-v:before { content: "\f142"; }
491
+ .fa-rss-square:before { content: "\f143"; }
492
+ .fa-play-circle:before { content: "\f144"; }
493
+ .fa-ticket:before { content: "\f145"; }
494
+ .fa-minus-square:before { content: "\f146"; }
495
+ .fa-minus-square-o:before { content: "\f147"; }
496
+ .fa-level-up:before { content: "\f148"; }
497
+ .fa-level-down:before { content: "\f149"; }
498
+ .fa-check-square:before { content: "\f14a"; }
499
+ .fa-pencil-square:before { content: "\f14b"; }
500
+ .fa-external-link-square:before { content: "\f14c"; }
501
+ .fa-share-square:before { content: "\f14d"; }
502
+ .fa-compass:before { content: "\f14e"; }
503
+ .fa-toggle-down:before, .fa-caret-square-o-down:before { content: "\f150"; }
504
+ .fa-toggle-up:before, .fa-caret-square-o-up:before { content: "\f151"; }
505
+ .fa-toggle-right:before, .fa-caret-square-o-right:before { content: "\f152"; }
506
+ .fa-euro:before, .fa-eur:before { content: "\f153"; }
507
+ .fa-gbp:before { content: "\f154"; }
508
+ .fa-dollar:before, .fa-usd:before { content: "\f155"; }
509
+ .fa-rupee:before, .fa-inr:before { content: "\f156"; }
510
+ .fa-cny:before, .fa-rmb:before, .fa-yen:before, .fa-jpy:before { content: "\f157"; }
511
+ .fa-ruble:before, .fa-rouble:before, .fa-rub:before { content: "\f158"; }
512
+ .fa-won:before, .fa-krw:before { content: "\f159"; }
513
+ .fa-bitcoin:before, .fa-btc:before { content: "\f15a"; }
514
+ .fa-file:before { content: "\f15b"; }
515
+ .fa-file-text:before { content: "\f15c"; }
516
+ .fa-sort-alpha-asc:before { content: "\f15d"; }
517
+ .fa-sort-alpha-desc:before { content: "\f15e"; }
518
+ .fa-sort-amount-asc:before { content: "\f160"; }
519
+ .fa-sort-amount-desc:before { content: "\f161"; }
520
+ .fa-sort-numeric-asc:before { content: "\f162"; }
521
+ .fa-sort-numeric-desc:before { content: "\f163"; }
522
+ .fa-thumbs-up:before { content: "\f164"; }
523
+ .fa-thumbs-down:before { content: "\f165"; }
524
+ .fa-youtube-square:before { content: "\f166"; }
525
+ .fa-youtube:before { content: "\f167"; }
526
+ .fa-xing:before { content: "\f168"; }
527
+ .fa-xing-square:before { content: "\f169"; }
528
+ .fa-youtube-play:before { content: "\f16a"; }
529
+ .fa-dropbox:before { content: "\f16b"; }
530
+ .fa-stack-overflow:before { content: "\f16c"; }
531
+ .fa-instagram:before { content: "\f16d"; }
532
+ .fa-flickr:before { content: "\f16e"; }
533
+ .fa-adn:before { content: "\f170"; }
534
+ .fa-bitbucket:before { content: "\f171"; }
535
+ .fa-bitbucket-square:before { content: "\f172"; }
536
+ .fa-tumblr:before { content: "\f173"; }
537
+ .fa-tumblr-square:before { content: "\f174"; }
538
+ .fa-long-arrow-down:before { content: "\f175"; }
539
+ .fa-long-arrow-up:before { content: "\f176"; }
540
+ .fa-long-arrow-left:before { content: "\f177"; }
541
+ .fa-long-arrow-right:before { content: "\f178"; }
542
+ .fa-apple:before { content: "\f179"; }
543
+ .fa-windows:before { content: "\f17a"; }
544
+ .fa-android:before { content: "\f17b"; }
545
+ .fa-linux:before { content: "\f17c"; }
546
+ .fa-dribbble:before { content: "\f17d"; }
547
+ .fa-skype:before { content: "\f17e"; }
548
+ .fa-foursquare:before { content: "\f180"; }
549
+ .fa-trello:before { content: "\f181"; }
550
+ .fa-female:before { content: "\f182"; }
551
+ .fa-male:before { content: "\f183"; }
552
+ .fa-gittip:before, .fa-gratipay:before { content: "\f184"; }
553
+ .fa-sun-o:before { content: "\f185"; }
554
+ .fa-moon-o:before { content: "\f186"; }
555
+ .fa-archive:before { content: "\f187"; }
556
+ .fa-bug:before { content: "\f188"; }
557
+ .fa-vk:before { content: "\f189"; }
558
+ .fa-weibo:before { content: "\f18a"; }
559
+ .fa-renren:before { content: "\f18b"; }
560
+ .fa-pagelines:before { content: "\f18c"; }
561
+ .fa-stack-exchange:before { content: "\f18d"; }
562
+ .fa-arrow-circle-o-right:before { content: "\f18e"; }
563
+ .fa-arrow-circle-o-left:before { content: "\f190"; }
564
+ .fa-toggle-left:before, .fa-caret-square-o-left:before { content: "\f191"; }
565
+ .fa-dot-circle-o:before { content: "\f192"; }
566
+ .fa-wheelchair:before { content: "\f193"; }
567
+ .fa-vimeo-square:before { content: "\f194"; }
568
+ .fa-turkish-lira:before, .fa-try:before { content: "\f195"; }
569
+ .fa-plus-square-o:before { content: "\f196"; }
570
+ .fa-space-shuttle:before { content: "\f197"; }
571
+ .fa-slack:before { content: "\f198"; }
572
+ .fa-envelope-square:before { content: "\f199"; }
573
+ .fa-wordpress:before { content: "\f19a"; }
574
+ .fa-openid:before { content: "\f19b"; }
575
+ .fa-institution:before, .fa-bank:before, .fa-university:before { content: "\f19c"; }
576
+ .fa-mortar-board:before, .fa-graduation-cap:before { content: "\f19d"; }
577
+ .fa-yahoo:before { content: "\f19e"; }
578
+ .fa-google:before { content: "\f1a0"; }
579
+ .fa-reddit:before { content: "\f1a1"; }
580
+ .fa-reddit-square:before { content: "\f1a2"; }
581
+ .fa-stumbleupon-circle:before { content: "\f1a3"; }
582
+ .fa-stumbleupon:before { content: "\f1a4"; }
583
+ .fa-delicious:before { content: "\f1a5"; }
584
+ .fa-digg:before { content: "\f1a6"; }
585
+ .fa-pied-piper:before { content: "\f1a7"; }
586
+ .fa-pied-piper-alt:before { content: "\f1a8"; }
587
+ .fa-drupal:before { content: "\f1a9"; }
588
+ .fa-joomla:before { content: "\f1aa"; }
589
+ .fa-language:before { content: "\f1ab"; }
590
+ .fa-fax:before { content: "\f1ac"; }
591
+ .fa-building:before { content: "\f1ad"; }
592
+ .fa-child:before { content: "\f1ae"; }
593
+ .fa-paw:before { content: "\f1b0"; }
594
+ .fa-spoon:before { content: "\f1b1"; }
595
+ .fa-cube:before { content: "\f1b2"; }
596
+ .fa-cubes:before { content: "\f1b3"; }
597
+ .fa-behance:before { content: "\f1b4"; }
598
+ .fa-behance-square:before { content: "\f1b5"; }
599
+ .fa-steam:before { content: "\f1b6"; }
600
+ .fa-steam-square:before { content: "\f1b7"; }
601
+ .fa-recycle:before { content: "\f1b8"; }
602
+ .fa-automobile:before, .fa-car:before { content: "\f1b9"; }
603
+ .fa-cab:before, .fa-taxi:before { content: "\f1ba"; }
604
+ .fa-tree:before { content: "\f1bb"; }
605
+ .fa-spotify:before { content: "\f1bc"; }
606
+ .fa-deviantart:before { content: "\f1bd"; }
607
+ .fa-soundcloud:before { content: "\f1be"; }
608
+ .fa-database:before { content: "\f1c0"; }
609
+ .fa-file-pdf-o:before { content: "\f1c1"; }
610
+ .fa-file-word-o:before { content: "\f1c2"; }
611
+ .fa-file-excel-o:before { content: "\f1c3"; }
612
+ .fa-file-powerpoint-o:before { content: "\f1c4"; }
613
+ .fa-file-photo-o:before, .fa-file-picture-o:before, .fa-file-image-o:before { content: "\f1c5"; }
614
+ .fa-file-zip-o:before, .fa-file-archive-o:before { content: "\f1c6"; }
615
+ .fa-file-sound-o:before, .fa-file-audio-o:before { content: "\f1c7"; }
616
+ .fa-file-movie-o:before, .fa-file-video-o:before { content: "\f1c8"; }
617
+ .fa-file-code-o:before { content: "\f1c9"; }
618
+ .fa-vine:before { content: "\f1ca"; }
619
+ .fa-codepen:before { content: "\f1cb"; }
620
+ .fa-jsfiddle:before { content: "\f1cc"; }
621
+ .fa-life-bouy:before, .fa-life-buoy:before, .fa-life-saver:before, .fa-support:before, .fa-life-ring:before { content: "\f1cd"; }
622
+ .fa-circle-o-notch:before { content: "\f1ce"; }
623
+ .fa-ra:before, .fa-rebel:before { content: "\f1d0"; }
624
+ .fa-ge:before, .fa-empire:before { content: "\f1d1"; }
625
+ .fa-git-square:before { content: "\f1d2"; }
626
+ .fa-git:before { content: "\f1d3"; }
627
+ .fa-y-combinator-square:before, .fa-yc-square:before, .fa-hacker-news:before { content: "\f1d4"; }
628
+ .fa-tencent-weibo:before { content: "\f1d5"; }
629
+ .fa-qq:before { content: "\f1d6"; }
630
+ .fa-wechat:before, .fa-weixin:before { content: "\f1d7"; }
631
+ .fa-send:before, .fa-paper-plane:before { content: "\f1d8"; }
632
+ .fa-send-o:before, .fa-paper-plane-o:before { content: "\f1d9"; }
633
+ .fa-history:before { content: "\f1da"; }
634
+ .fa-circle-thin:before { content: "\f1db"; }
635
+ .fa-header:before { content: "\f1dc"; }
636
+ .fa-paragraph:before { content: "\f1dd"; }
637
+ .fa-sliders:before { content: "\f1de"; }
638
+ .fa-share-alt:before { content: "\f1e0"; }
639
+ .fa-share-alt-square:before { content: "\f1e1"; }
640
+ .fa-bomb:before { content: "\f1e2"; }
641
+ .fa-soccer-ball-o:before, .fa-futbol-o:before { content: "\f1e3"; }
642
+ .fa-tty:before { content: "\f1e4"; }
643
+ .fa-binoculars:before { content: "\f1e5"; }
644
+ .fa-plug:before { content: "\f1e6"; }
645
+ .fa-slideshare:before { content: "\f1e7"; }
646
+ .fa-twitch:before { content: "\f1e8"; }
647
+ .fa-yelp:before { content: "\f1e9"; }
648
+ .fa-newspaper-o:before { content: "\f1ea"; }
649
+ .fa-wifi:before { content: "\f1eb"; }
650
+ .fa-calculator:before { content: "\f1ec"; }
651
+ .fa-paypal:before { content: "\f1ed"; }
652
+ .fa-google-wallet:before { content: "\f1ee"; }
653
+ .fa-cc-visa:before { content: "\f1f0"; }
654
+ .fa-cc-mastercard:before { content: "\f1f1"; }
655
+ .fa-cc-discover:before { content: "\f1f2"; }
656
+ .fa-cc-amex:before { content: "\f1f3"; }
657
+ .fa-cc-paypal:before { content: "\f1f4"; }
658
+ .fa-cc-stripe:before { content: "\f1f5"; }
659
+ .fa-bell-slash:before { content: "\f1f6"; }
660
+ .fa-bell-slash-o:before { content: "\f1f7"; }
661
+ .fa-trash:before { content: "\f1f8"; }
662
+ .fa-copyright:before { content: "\f1f9"; }
663
+ .fa-at:before { content: "\f1fa"; }
664
+ .fa-eyedropper:before { content: "\f1fb"; }
665
+ .fa-paint-brush:before { content: "\f1fc"; }
666
+ .fa-birthday-cake:before { content: "\f1fd"; }
667
+ .fa-area-chart:before { content: "\f1fe"; }
668
+ .fa-pie-chart:before { content: "\f200"; }
669
+ .fa-line-chart:before { content: "\f201"; }
670
+ .fa-lastfm:before { content: "\f202"; }
671
+ .fa-lastfm-square:before { content: "\f203"; }
672
+ .fa-toggle-off:before { content: "\f204"; }
673
+ .fa-toggle-on:before { content: "\f205"; }
674
+ .fa-bicycle:before { content: "\f206"; }
675
+ .fa-bus:before { content: "\f207"; }
676
+ .fa-ioxhost:before { content: "\f208"; }
677
+ .fa-angellist:before { content: "\f209"; }
678
+ .fa-cc:before { content: "\f20a"; }
679
+ .fa-shekel:before, .fa-sheqel:before, .fa-ils:before { content: "\f20b"; }
680
+ .fa-meanpath:before { content: "\f20c"; }
681
+ .fa-buysellads:before { content: "\f20d"; }
682
+ .fa-connectdevelop:before { content: "\f20e"; }
683
+ .fa-dashcube:before { content: "\f210"; }
684
+ .fa-forumbee:before { content: "\f211"; }
685
+ .fa-leanpub:before { content: "\f212"; }
686
+ .fa-sellsy:before { content: "\f213"; }
687
+ .fa-shirtsinbulk:before { content: "\f214"; }
688
+ .fa-simplybuilt:before { content: "\f215"; }
689
+ .fa-skyatlas:before { content: "\f216"; }
690
+ .fa-cart-plus:before { content: "\f217"; }
691
+ .fa-cart-arrow-down:before { content: "\f218"; }
692
+ .fa-diamond:before { content: "\f219"; }
693
+ .fa-ship:before { content: "\f21a"; }
694
+ .fa-user-secret:before { content: "\f21b"; }
695
+ .fa-motorcycle:before { content: "\f21c"; }
696
+ .fa-street-view:before { content: "\f21d"; }
697
+ .fa-heartbeat:before { content: "\f21e"; }
698
+ .fa-venus:before { content: "\f221"; }
699
+ .fa-mars:before { content: "\f222"; }
700
+ .fa-mercury:before { content: "\f223"; }
701
+ .fa-intersex:before, .fa-transgender:before { content: "\f224"; }
702
+ .fa-transgender-alt:before { content: "\f225"; }
703
+ .fa-venus-double:before { content: "\f226"; }
704
+ .fa-mars-double:before { content: "\f227"; }
705
+ .fa-venus-mars:before { content: "\f228"; }
706
+ .fa-mars-stroke:before { content: "\f229"; }
707
+ .fa-mars-stroke-v:before { content: "\f22a"; }
708
+ .fa-mars-stroke-h:before { content: "\f22b"; }
709
+ .fa-neuter:before { content: "\f22c"; }
710
+ .fa-genderless:before { content: "\f22d"; }
711
+ .fa-facebook-official:before { content: "\f230"; }
712
+ .fa-pinterest-p:before { content: "\f231"; }
713
+ .fa-whatsapp:before { content: "\f232"; }
714
+ .fa-server:before { content: "\f233"; }
715
+ .fa-user-plus:before { content: "\f234"; }
716
+ .fa-user-times:before { content: "\f235"; }
717
+ .fa-hotel:before, .fa-bed:before { content: "\f236"; }
718
+ .fa-viacoin:before { content: "\f237"; }
719
+ .fa-train:before { content: "\f238"; }
720
+ .fa-subway:before { content: "\f239"; }
721
+ .fa-medium:before { content: "\f23a"; }
722
+ .fa-yc:before, .fa-y-combinator:before { content: "\f23b"; }
723
+ .fa-optin-monster:before { content: "\f23c"; }
724
+ .fa-opencart:before { content: "\f23d"; }
725
+ .fa-expeditedssl:before { content: "\f23e"; }
726
+ .fa-battery-4:before, .fa-battery-full:before { content: "\f240"; }
727
+ .fa-battery-3:before, .fa-battery-three-quarters:before { content: "\f241"; }
728
+ .fa-battery-2:before, .fa-battery-half:before { content: "\f242"; }
729
+ .fa-battery-1:before, .fa-battery-quarter:before { content: "\f243"; }
730
+ .fa-battery-0:before, .fa-battery-empty:before { content: "\f244"; }
731
+ .fa-mouse-pointer:before { content: "\f245"; }
732
+ .fa-i-cursor:before { content: "\f246"; }
733
+ .fa-object-group:before { content: "\f247"; }
734
+ .fa-object-ungroup:before { content: "\f248"; }
735
+ .fa-sticky-note:before { content: "\f249"; }
736
+ .fa-sticky-note-o:before { content: "\f24a"; }
737
+ .fa-cc-jcb:before { content: "\f24b"; }
738
+ .fa-cc-diners-club:before { content: "\f24c"; }
739
+ .fa-clone:before { content: "\f24d"; }
740
+ .fa-balance-scale:before { content: "\f24e"; }
741
+ .fa-hourglass-o:before { content: "\f250"; }
742
+ .fa-hourglass-1:before, .fa-hourglass-start:before { content: "\f251"; }
743
+ .fa-hourglass-2:before, .fa-hourglass-half:before { content: "\f252"; }
744
+ .fa-hourglass-3:before, .fa-hourglass-end:before { content: "\f253"; }
745
+ .fa-hourglass:before { content: "\f254"; }
746
+ .fa-hand-grab-o:before, .fa-hand-rock-o:before { content: "\f255"; }
747
+ .fa-hand-stop-o:before, .fa-hand-paper-o:before { content: "\f256"; }
748
+ .fa-hand-scissors-o:before { content: "\f257"; }
749
+ .fa-hand-lizard-o:before { content: "\f258"; }
750
+ .fa-hand-spock-o:before { content: "\f259"; }
751
+ .fa-hand-pointer-o:before { content: "\f25a"; }
752
+ .fa-hand-peace-o:before { content: "\f25b"; }
753
+ .fa-trademark:before { content: "\f25c"; }
754
+ .fa-registered:before { content: "\f25d"; }
755
+ .fa-creative-commons:before { content: "\f25e"; }
756
+ .fa-gg:before { content: "\f260"; }
757
+ .fa-gg-circle:before { content: "\f261"; }
758
+ .fa-tripadvisor:before { content: "\f262"; }
759
+ .fa-odnoklassniki:before { content: "\f263"; }
760
+ .fa-odnoklassniki-square:before { content: "\f264"; }
761
+ .fa-get-pocket:before { content: "\f265"; }
762
+ .fa-wikipedia-w:before { content: "\f266"; }
763
+ .fa-safari:before { content: "\f267"; }
764
+ .fa-chrome:before { content: "\f268"; }
765
+ .fa-firefox:before { content: "\f269"; }
766
+ .fa-opera:before { content: "\f26a"; }
767
+ .fa-internet-explorer:before { content: "\f26b"; }
768
+ .fa-tv:before, .fa-television:before { content: "\f26c"; }
769
+ .fa-contao:before { content: "\f26d"; }
770
+ .fa-500px:before { content: "\f26e"; }
771
+ .fa-amazon:before { content: "\f270"; }
772
+ .fa-calendar-plus-o:before { content: "\f271"; }
773
+ .fa-calendar-minus-o:before { content: "\f272"; }
774
+ .fa-calendar-times-o:before { content: "\f273"; }
775
+ .fa-calendar-check-o:before { content: "\f274"; }
776
+ .fa-industry:before { content: "\f275"; }
777
+ .fa-map-pin:before { content: "\f276"; }
778
+ .fa-map-signs:before { content: "\f277"; }
779
+ .fa-map-o:before { content: "\f278"; }
780
+ .fa-map:before { content: "\f279"; }
781
+ .fa-commenting:before { content: "\f27a"; }
782
+ .fa-commenting-o:before { content: "\f27b"; }
783
+ .fa-houzz:before { content: "\f27c"; }
784
+ .fa-vimeo:before { content: "\f27d"; }
785
+ .fa-black-tie:before { content: "\f27e"; }
786
+ .fa-fonticons:before { content: "\f280"; }
787
+ .fa-reddit-alien:before { content: "\f281"; }
788
+ .fa-edge:before { content: "\f282"; }
789
+ .fa-credit-card-alt:before { content: "\f283"; }
790
+ .fa-codiepie:before { content: "\f284"; }
791
+ .fa-modx:before { content: "\f285"; }
792
+ .fa-fort-awesome:before { content: "\f286"; }
793
+ .fa-usb:before { content: "\f287"; }
794
+ .fa-product-hunt:before { content: "\f288"; }
795
+ .fa-mixcloud:before { content: "\f289"; }
796
+ .fa-scribd:before { content: "\f28a"; }
797
+ .fa-pause-circle:before { content: "\f28b"; }
798
+ .fa-pause-circle-o:before { content: "\f28c"; }
799
+ .fa-stop-circle:before { content: "\f28d"; }
800
+ .fa-stop-circle-o:before { content: "\f28e"; }
801
+ .fa-shopping-bag:before { content: "\f290"; }
802
+ .fa-shopping-basket:before { content: "\f291"; }
803
+ .fa-hashtag:before { content: "\f292"; }
804
+ .fa-bluetooth:before { content: "\f293"; }
805
+ .fa-bluetooth-b:before { content: "\f294"; }
806
+ .fa-percent:before { content: "\f295"; }
807
+ .fa-gitlab:before { content: "\f296"; }
808
+ .fa-wpbeginner:before { content: "\f297"; }
809
+ .fa-wpforms:before { content: "\f298"; }
810
+ .fa-envira:before { content: "\f299"; }
811
+ .fa-universal-access:before { content: "\f29a"; }
812
+ .fa-wheelchair-alt:before { content: "\f29b"; }
813
+ .fa-question-circle-o:before { content: "\f29c"; }
814
+ .fa-blind:before { content: "\f29d"; }
815
+ .fa-audio-description:before { content: "\f29e"; }
816
+ .fa-volume-control-phone:before { content: "\f2a0"; }
817
+ .fa-braille:before { content: "\f2a1"; }
818
+ .fa-assistive-listening-systems:before { content: "\f2a2"; }
819
+ .fa-asl-interpreting:before, .fa-american-sign-language-interpreting:before { content: "\f2a3"; }
820
+ .fa-deafness:before, .fa-hard-of-hearing:before, .fa-deaf:before { content: "\f2a4"; }
821
+ .fa-glide:before { content: "\f2a5"; }
822
+ .fa-glide-g:before { content: "\f2a6"; }
823
+ .fa-signing:before, .fa-sign-language:before { content: "\f2a7"; }
824
+ .fa-low-vision:before { content: "\f2a8"; }
825
+ .fa-viadeo:before { content: "\f2a9"; }
826
+ .fa-viadeo-square:before { content: "\f2aa"; }
827
+ .fa-snapchat:before { content: "\f2ab"; }
828
+ .fa-snapchat-ghost:before { content: "\f2ac"; }
829
+ .fa-snapchat-square:before { content: "\f2ad"; }
830
+
2164
831
  .sr-only {
2165
832
  position: absolute;
2166
833
  width: 1px;