Metform Elementor Contact Form Builder – Flexible and Design-Friendly Contact Form builder plugin for WordPress - Version 1.3.12

Version Description

Metform 1.3.0-beta1 is a major update. We have reconstructed the widgets with react and huge optimization for future proof. If you faced any issue please contact our support team from here https://help.wpmet.com/

Download this release

Release Info

Developer ataurr
Plugin Icon 128x128 Metform Elementor Contact Form Builder – Flexible and Design-Friendly Contact Form builder plugin for WordPress
Version 1.3.12
Comparing to
See all releases

Code changes from version 1.3.11 to 1.3.12

Files changed (39) hide show
  1. base/shortcode.php +173 -173
  2. controls/assets/css/form-picker-editor.css +62 -62
  3. controls/assets/css/form-picker-inspactor.css +436 -423
  4. controls/assets/img/edit_icon.svg +39 -39
  5. controls/assets/js/form-picker-editor.js +210 -210
  6. controls/assets/js/form-picker-inspactor.js +70 -70
  7. controls/base.php +57 -57
  8. controls/control-manager.php +16 -16
  9. controls/form-editor-modal.php +52 -52
  10. controls/form-picker-modal.php +96 -96
  11. controls/form-picker-utils.php +53 -53
  12. controls/form-picker.php +79 -79
  13. core/admin/base.php +95 -95
  14. core/admin/views/settings.php +903 -903
  15. core/entries/action.php +2 -1
  16. core/entries/export.php +89 -89
  17. core/entries/form-data.php +12 -5
  18. core/entries/hooks.php +105 -105
  19. core/entries/meta-data.php +304 -303
  20. core/entries/metform-shortcode.php +60 -60
  21. core/forms/builder.php +55 -55
  22. core/forms/views/modal-editor.php +5 -5
  23. core/integrations/Mail_Adapter.php +17 -17
  24. core/integrations/Mail_Adapter_Contract.php +12 -12
  25. core/integrations/google-recaptcha.php +84 -84
  26. core/integrations/mail-chimp.php +92 -92
  27. core/integrations/slack.php +53 -53
  28. languages/metform.pot +2913 -2913
  29. metform.php +1 -1
  30. plugin.php +403 -371
  31. public/assets/admin-fonts.css +2747 -2747
  32. public/assets/css/admin-style.css +1401 -1
  33. public/assets/css/asRange.min.css +8 -8
  34. public/assets/css/category-top.css +7 -7
  35. public/assets/css/flatpickr.min.css +12 -12
  36. public/assets/css/font-awesome.min.css +4 -4
  37. public/assets/css/select2.min.css +1 -1
  38. public/assets/css/style.css +1044 -1019
  39. public/assets/fonts/fontawesome-webfont.svg +0 -1392
base/shortcode.php CHANGED
@@ -1,173 +1,173 @@
1
- <?php
2
-
3
- namespace MetForm\Base;
4
-
5
- defined('ABSPATH') || exit;
6
-
7
- class Shortcode
8
- {
9
-
10
- use \MetForm\Traits\Singleton;
11
-
12
-
13
- public function __construct()
14
- {
15
- add_shortcode('metform', [$this, 'render_shortcode']);
16
- add_shortcode('mf_thankyou', [$this, 'render_thank_you_page']);
17
- add_shortcode('mf_first_name', [$this, 'render_first_name']);
18
- add_shortcode('mf_last_name', [$this, 'render_last_name']);
19
- add_shortcode('mf_payment_status', [$this, 'render_payment_status']);
20
- add_shortcode('mf_transaction_id', [$this, 'render_transaction_id']);
21
- add_shortcode('mf',[$this,'render_mf_field']);
22
- }
23
-
24
-
25
- public function render_shortcode($atts)
26
- {
27
- $attributes = shortcode_atts(array(
28
- 'form_id' => 'test',
29
- ), $atts);
30
-
31
- return '<div class="mf-form-shortcode">' . \MetForm\Utils\Util::render_form_content($attributes['form_id'], $attributes['form_id']) . '</div>';
32
- }
33
-
34
- public function render_thank_you_page($atts)
35
- {
36
- if($GLOBALS['pagenow'] == 'post.php'){
37
- return;
38
- }
39
- global $post;
40
-
41
- /**
42
- *
43
- * =============================
44
- * Atts for thank you page start
45
- * =============================
46
- *
47
- */
48
-
49
-
50
-
51
- $a = shortcode_atts(array(
52
- 'fname' => '',
53
- 'lname' => '',
54
- ), $atts);
55
-
56
- // return "foo = {$a['foo']}";
57
-
58
- $settings = \MetForm\Core\Admin\Base::instance()->get_settings_option();
59
- $page_id = $settings['mf_thank_you_page'];
60
- $post_id = $_GET['id'];
61
-
62
- error_log($post_id);
63
-
64
- $postMeta = get_post_meta(
65
- $post_id,
66
- 'metform_entries__form_data',
67
- true
68
- );
69
- $first_name = !empty($postMeta[$a['fname']]) ? $postMeta[$a['fname']] : '';
70
-
71
- $payment_status = get_post_meta(
72
- $post_id,
73
- 'metform_entries__payment_status',
74
- true
75
- );
76
-
77
- $tnx_id = get_post_meta(
78
- $post_id,
79
- 'metform_entries__payment_trans',
80
- true
81
- );
82
-
83
- $msg = '';
84
-
85
- if ($payment_status == 'paid') {
86
- $msg = $first_name . ' Thank you for your payment. <br>' . ' Your transcation ID : ' . $tnx_id;
87
- } else {
88
- $msg = 'Thank you . Your payment status : ' . $payment_status;
89
- }
90
-
91
- return $msg;
92
-
93
-
94
- /**
95
- *
96
- *
97
- * ===================================
98
- * Atts for thank you page ends here :D
99
- * ====================================
100
- *
101
- */
102
-
103
-
104
-
105
- }
106
-
107
- public function render_mf_field($atts){
108
- $a = shortcode_atts(array(
109
- 'field' => ''
110
- ),$atts);
111
-
112
- $settings = \MetForm\Core\Admin\Base::instance()->get_settings_option();
113
- $page_id = $settings['mf_thank_you_page'];
114
- $post_id = $_GET['id'];
115
-
116
- $field = get_post_meta(
117
- $post_id,
118
- 'metform_entries__form_data',
119
- true
120
- )[$a['field']];
121
-
122
- return $field;
123
-
124
-
125
-
126
- }
127
-
128
- public function render_first_name($atts)
129
- {
130
-
131
- $post_id = $_GET['id'];
132
- $first_name = get_post_meta(
133
- $post_id,
134
- 'metform_entries__form_data',
135
- true
136
- )['mf-listing-fname'];
137
- return $first_name;
138
- }
139
-
140
- public function render_last_name($atts)
141
- {
142
- $post_id = $_GET['id'];
143
- $last_name = get_post_meta(
144
- $post_id,
145
- 'metform_entries__form_data',
146
- true
147
- )['mf-listing-lname'];
148
- return $last_name;
149
- }
150
-
151
- public function render_payment_status($atts)
152
- {
153
- $post_id = $_GET['id'];
154
- $payment_status = get_post_meta(
155
- $post_id,
156
- 'metform_entries__payment_status',
157
- true
158
- );
159
- return $payment_status;
160
- }
161
-
162
- public function render_transaction_id($atts)
163
- {
164
- $post_id = $_GET['id'];
165
- $tnx_id = get_post_meta(
166
- $post_id,
167
- 'metform_entries__payment_trans',
168
- true
169
- );
170
-
171
- return $tnx_id;
172
- }
173
- }
1
+ <?php
2
+
3
+ namespace MetForm\Base;
4
+
5
+ defined('ABSPATH') || exit;
6
+
7
+ class Shortcode
8
+ {
9
+
10
+ use \MetForm\Traits\Singleton;
11
+
12
+
13
+ public function __construct()
14
+ {
15
+ add_shortcode('metform', [$this, 'render_shortcode']);
16
+ add_shortcode('mf_thankyou', [$this, 'render_thank_you_page']);
17
+ add_shortcode('mf_first_name', [$this, 'render_first_name']);
18
+ add_shortcode('mf_last_name', [$this, 'render_last_name']);
19
+ add_shortcode('mf_payment_status', [$this, 'render_payment_status']);
20
+ add_shortcode('mf_transaction_id', [$this, 'render_transaction_id']);
21
+ add_shortcode('mf',[$this,'render_mf_field']);
22
+ }
23
+
24
+
25
+ public function render_shortcode($atts)
26
+ {
27
+ $attributes = shortcode_atts(array(
28
+ 'form_id' => 'test',
29
+ ), $atts);
30
+
31
+ return '<div class="mf-form-shortcode">' . \MetForm\Utils\Util::render_form_content($attributes['form_id'], $attributes['form_id']) . '</div>';
32
+ }
33
+
34
+ public function render_thank_you_page($atts)
35
+ {
36
+ if($GLOBALS['pagenow'] == 'post.php'){
37
+ return;
38
+ }
39
+ global $post;
40
+
41
+ /**
42
+ *
43
+ * =============================
44
+ * Atts for thank you page start
45
+ * =============================
46
+ *
47
+ */
48
+
49
+
50
+
51
+ $a = shortcode_atts(array(
52
+ 'fname' => '',
53
+ 'lname' => '',
54
+ ), $atts);
55
+
56
+ // return "foo = {$a['foo']}";
57
+
58
+ $settings = \MetForm\Core\Admin\Base::instance()->get_settings_option();
59
+ $page_id = $settings['mf_thank_you_page'];
60
+ $post_id = $_GET['id'];
61
+
62
+ error_log($post_id);
63
+
64
+ $postMeta = get_post_meta(
65
+ $post_id,
66
+ 'metform_entries__form_data',
67
+ true
68
+ );
69
+ $first_name = !empty($postMeta[$a['fname']]) ? $postMeta[$a['fname']] : '';
70
+
71
+ $payment_status = get_post_meta(
72
+ $post_id,
73
+ 'metform_entries__payment_status',
74
+ true
75
+ );
76
+
77
+ $tnx_id = get_post_meta(
78
+ $post_id,
79
+ 'metform_entries__payment_trans',
80
+ true
81
+ );
82
+
83
+ $msg = '';
84
+
85
+ if ($payment_status == 'paid') {
86
+ $msg = $first_name . ' Thank you for your payment. <br>' . ' Your transcation ID : ' . $tnx_id;
87
+ } else {
88
+ $msg = 'Thank you . Your payment status : ' . $payment_status;
89
+ }
90
+
91
+ return $msg;
92
+
93
+
94
+ /**
95
+ *
96
+ *
97
+ * ===================================
98
+ * Atts for thank you page ends here :D
99
+ * ====================================
100
+ *
101
+ */
102
+
103
+
104
+
105
+ }
106
+
107
+ public function render_mf_field($atts){
108
+ $a = shortcode_atts(array(
109
+ 'field' => ''
110
+ ),$atts);
111
+
112
+ $settings = \MetForm\Core\Admin\Base::instance()->get_settings_option();
113
+ $page_id = $settings['mf_thank_you_page'];
114
+ $post_id = $_GET['id'];
115
+
116
+ $field = get_post_meta(
117
+ $post_id,
118
+ 'metform_entries__form_data',
119
+ true
120
+ )[$a['field']];
121
+
122
+ return $field;
123
+
124
+
125
+
126
+ }
127
+
128
+ public function render_first_name($atts)
129
+ {
130
+
131
+ $post_id = $_GET['id'];
132
+ $first_name = get_post_meta(
133
+ $post_id,
134
+ 'metform_entries__form_data',
135
+ true
136
+ )['mf-listing-fname'];
137
+ return $first_name;
138
+ }
139
+
140
+ public function render_last_name($atts)
141
+ {
142
+ $post_id = $_GET['id'];
143
+ $last_name = get_post_meta(
144
+ $post_id,
145
+ 'metform_entries__form_data',
146
+ true
147
+ )['mf-listing-lname'];
148
+ return $last_name;
149
+ }
150
+
151
+ public function render_payment_status($atts)
152
+ {
153
+ $post_id = $_GET['id'];
154
+ $payment_status = get_post_meta(
155
+ $post_id,
156
+ 'metform_entries__payment_status',
157
+ true
158
+ );
159
+ return $payment_status;
160
+ }
161
+
162
+ public function render_transaction_id($atts)
163
+ {
164
+ $post_id = $_GET['id'];
165
+ $tnx_id = get_post_meta(
166
+ $post_id,
167
+ 'metform_entries__payment_trans',
168
+ true
169
+ );
170
+
171
+ return $tnx_id;
172
+ }
173
+ }
controls/assets/css/form-picker-editor.css CHANGED
@@ -1,62 +1,62 @@
1
- /* editor file */
2
-
3
- .formpicker_warper_edit {
4
- display: none;
5
- position: absolute;
6
- top: 0;
7
- right: 0;
8
- bottom: 0;
9
- width: 0;
10
- z-index: 99999;
11
- }
12
-
13
- .formpicker_warper_editable {
14
- min-height: 30px;
15
- min-width: 100px;
16
- position: relative;
17
- }
18
-
19
- .formpicker_iframe_modal {
20
- display: none;
21
- }
22
-
23
- .formpicker_iframe_modal .dialog-widget-content {
24
- position: static !important;
25
- margin-top: 10px;
26
- }
27
-
28
- .elementor-editor-active .formpicker_warper_editable:hover {
29
- outline: 1px solid #71d7f7;
30
- }
31
-
32
- .elementor-editor-active .formpicker_warper_editable:hover>.formpicker_warper_edit {
33
- display: block;
34
- }
35
- .metform-builder-edit{
36
- display: block;
37
- position: sticky;
38
- top: 0;
39
- width: 26px;
40
- height: 26px;
41
- margin-top: -1px;
42
- margin-left: -25px;
43
- background: linear-gradient(45deg, rgba(255,107,17,1) 0%, rgba(255,50,77,1) 100%);
44
- border-bottom-left-radius: 3px;
45
- cursor: pointer;
46
- }
47
- .metform-builder-edit:before {
48
- content: " ";
49
- position: absolute;
50
- top: 0;
51
- left: 0;
52
- width: 100%;
53
- height: 100%;
54
- background-image: url(../img/edit_icon.svg);
55
- background-size: 17px;
56
- background-repeat: no-repeat;
57
- background-position: center;
58
- }
59
- .elementor-editor-active .formpicker_warper_editable .formpicker_warper_editable .formpicker_warper_edit,
60
- .elementor-widget-metform .elementor-element-overlay {
61
- display: none!important;
62
- }
1
+ /* editor file */
2
+
3
+ .formpicker_warper_edit {
4
+ display: none;
5
+ position: absolute;
6
+ top: 0;
7
+ right: 0;
8
+ bottom: 0;
9
+ width: 0;
10
+ z-index: 99999;
11
+ }
12
+
13
+ .formpicker_warper_editable {
14
+ min-height: 30px;
15
+ min-width: 100px;
16
+ position: relative;
17
+ }
18
+
19
+ .formpicker_iframe_modal {
20
+ display: none;
21
+ }
22
+
23
+ .formpicker_iframe_modal .dialog-widget-content {
24
+ position: static !important;
25
+ margin-top: 10px;
26
+ }
27
+
28
+ .elementor-editor-active .formpicker_warper_editable:hover {
29
+ outline: 1px solid #71d7f7;
30
+ }
31
+
32
+ .elementor-editor-active .formpicker_warper_editable:hover>.formpicker_warper_edit {
33
+ display: block;
34
+ }
35
+ .metform-builder-edit{
36
+ display: block;
37
+ position: sticky;
38
+ top: 0;
39
+ width: 26px;
40
+ height: 26px;
41
+ margin-top: -1px;
42
+ margin-left: -25px;
43
+ background: linear-gradient(45deg, rgba(255,107,17,1) 0%, rgba(255,50,77,1) 100%);
44
+ border-bottom-left-radius: 3px;
45
+ cursor: pointer;
46
+ }
47
+ .metform-builder-edit:before {
48
+ content: " ";
49
+ position: absolute;
50
+ top: 0;
51
+ left: 0;
52
+ width: 100%;
53
+ height: 100%;
54
+ background-image: url(../img/edit_icon.svg);
55
+ background-size: 17px;
56
+ background-repeat: no-repeat;
57
+ background-position: center;
58
+ }
59
+ .elementor-editor-active .formpicker_warper_editable .formpicker_warper_editable .formpicker_warper_edit,
60
+ .elementor-widget-metform .elementor-element-overlay {
61
+ display: none!important;
62
+ }
controls/assets/css/form-picker-inspactor.css CHANGED
@@ -1,423 +1,436 @@
1
- /* modal css */
2
-
3
- .formpicker_warper_editable {
4
- position: relative;
5
- }
6
-
7
- .formpicker_warper_editable:hover {
8
- outline: 1px solid #71d7f7;
9
- }
10
-
11
- .formpicker_warper_editable:hover .formpicker_warper_edit {
12
- display: block;
13
- }
14
-
15
- .formpicker_iframe_modal,
16
- .formpicker_iframe_mini_modal {
17
- display: block;
18
- }
19
-
20
- .formpicker_iframe_modal .dialog-message {
21
- position: relative;
22
- }
23
-
24
- .formpicker_iframe_modal iframe {
25
- position: absolute;
26
- top: 0;
27
- bottom: 0;
28
- right: 0;
29
- left: 0;
30
- width: 100%;
31
- height: 100%;
32
- }
33
-
34
- .formpicker_iframe_modal .dialog-widget-content {
35
- position: static !important;
36
- margin-top: 10px;
37
- }
38
-
39
- .formpicker_warper_edit {
40
- display: none;
41
- position: absolute;
42
- top: 0;
43
- right: 0;
44
- color: #fff;
45
- background: #71d7f7;
46
- line-height: 1;
47
- padding: 7px 8px;
48
- font-size: 11px;
49
- border-bottom-left-radius: 3px;
50
- cursor: pointer;
51
- }
52
-
53
- .metform-dynamic-content-modal .dialog-widget-content {
54
- max-width: 90% !important;
55
- margin-top: 20px !important;
56
- margin-bottom: 20px !important;
57
- }
58
- .metform-dynamic-content-modal .elementor-templates-modal__header {
59
- background-color: #F1F3F5;
60
- }
61
-
62
- .elementor-device-desktop #elementor-preview-responsive-wrapper {
63
- min-width: auto !important;
64
- }
65
-
66
- .metform-dynamic-content-modal .dialog-message {
67
- overflow: unset !important;
68
- }
69
-
70
- .formpicker_iframe_mini_modal {
71
- position: fixed;
72
- top: 50%;
73
- left: 50%;
74
- z-index: 9999;
75
- background: #fff;
76
- border: 1px solid;
77
- }
78
-
79
- #metform-open-content-editor{
80
- background-color: rgba(0,0,0, .8);
81
- width: 100%;
82
- height: 100%;
83
- position: fixed;
84
- left: 0;
85
- top: 0;
86
- z-index: 2;
87
- overflow-y: auto;
88
- }
89
- .metform-open-content-inner {
90
- position: relative;
91
- top: 50px;
92
- left: 50%;
93
- transform: translateX(-50%);
94
- z-index: 999;
95
- width: 622px;
96
- background-color: #fff;
97
- box-shadow: -15px 20px 50px rgba(0, 0, 0, 0.16);
98
- padding: 35px 50px;
99
- border-radius: 5px;
100
- text-align: center;
101
- }
102
- .rtl .metform-open-content-inner {
103
- direction: ltr;
104
- left: auto;
105
- right: 50%;
106
- transform: translateX(50%);
107
- }
108
- #metform-open-content-editor .metform-close-editor-modals {
109
- color: #FF433C;
110
- border: 2px solid #FF433C;
111
- width: 30px;
112
- height: 30px;
113
- line-height: 27px;
114
- text-align: center;
115
- border-radius: 100px;
116
- font-size: 17px;
117
- position: absolute;
118
- top: -10px;
119
- right: -10px;
120
- background-color: #fff;
121
- cursor: pointer;
122
- box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
123
- }
124
- .rtl #metform-open-content-editor .metform-close-editor-modals {
125
- left: -10px;
126
- right: auto;
127
- }
128
- .metform-editor-input{
129
- height: 56px;
130
- width: 100%;
131
- display: block;
132
- box-sizing: border-box;
133
- background-color: #fff;
134
- box-shadow: 0 15px 25px rgba(0, 0, 0, 0.07);
135
- border-radius: 10px;
136
- border: none;
137
- padding: 0 25px;
138
- color: #101010;
139
- font-size: 14px;
140
- line-height: 42px;
141
- border: 1px solid #ccc;
142
- }
143
- .metform-open-content-editor-button {
144
- background-color: #4285F4;
145
- border: none;
146
- font-size: 16px;
147
- line-height: 42px;
148
- color: #fff;
149
- border-radius: 5px;
150
- padding: 4px 30px;
151
- min-width: 170px;
152
- box-sizing: border-box;
153
- margin-top: 30px;
154
- cursor: pointer;
155
- }
156
- .metform-open-content-editor-button > span {
157
- margin-right: 12px;
158
- }
159
- .metform-editor-tab-content-item {
160
- display: none;
161
- }
162
- .metform-editor-tab-content-item .metform-error {
163
- color: red;
164
- font-style: italic;
165
- margin-top: 10px;
166
- }
167
- .metform-editor-tab-content-item.active {
168
- display: block;
169
- }
170
- .metform-content-editor-tab {
171
- display: flex;
172
- justify-content: center;
173
- flex-wrap: wrap;
174
- margin-bottom: 20px;
175
- }
176
- .metform-content-editor-tab-item {
177
- padding: 0 15px;
178
- }
179
- #metform-open-content-editor .metform-content-editor-radio {
180
- -webkit-appearance: none;
181
- appearance:none;
182
- outline: none;
183
- width: 20px;
184
- height: 20px;
185
- border: 2px solid #747474;
186
- border-radius: 100px;
187
- position: relative;
188
- margin: 0;
189
- margin-right: 8px;
190
- cursor: pointer;
191
- }
192
- #metform-open-content-editor .metform-content-editor-radio:checked{
193
- border-color: #4285F4;
194
- }
195
- #metform-open-content-editor .metform-content-editor-radio:checked:before {
196
- content: '';
197
- background-color: #4285F4;
198
- width: 10px;
199
- height: 10px;
200
- display: inline-block;
201
- position: absolute;
202
- left: 50%;
203
- border-radius: 100px;
204
- top: 50%;
205
- transform: translate(-50%, -50%);
206
- }
207
- .metform-content-editor-tab-item label {
208
- display: flex;
209
- text-align: left;
210
- cursor: pointer;
211
- }
212
- .metform-content-editor-radio-data p{
213
- color: #101010;
214
- font-size: 16px;
215
- line-height: 20px;
216
- margin: 0;
217
- }
218
- .metform-content-editor-radio-data span{
219
- color: #999999;
220
- font-size: 12px;
221
- line-height: 25px;
222
- margin: 0;
223
- }
224
- .metform-template-input-con{
225
- margin-bottom: 20px;
226
- }
227
- .metform-templates-list {
228
- display: flex;
229
- flex-wrap: wrap;
230
- }
231
- .metform-templates-list li{
232
- margin: 5px;
233
- flex: 0 0 31.4%;
234
- box-sizing: border-box;
235
- }
236
- .metform-templates-list li input{
237
- display: none;
238
- cursor: pointer;
239
- }
240
- .metform-template-radio-data {
241
- min-height: 101px;
242
- border: 1px solid #ccc;
243
- display: flex;
244
- justify-content: center;
245
- align-items: center;
246
- box-shadow: 0 15px 25px rgba(0, 0, 0, 0.07);
247
- cursor: pointer;
248
- height: 100%;
249
- position: relative;
250
- flex-direction: column;
251
- }
252
- .metform-templates-list li input:checked + .metform-template-radio-data {
253
- border: 1px solid #4285F4;
254
- }
255
- .metform-template-radio-data--pro_tag {
256
- background: linear-gradient(45deg, rgba(255,107,17,1) 0%, rgba(255,50,77,1) 100%);
257
- color: #fff;
258
- padding: 3px 5px;
259
- display: inline-block;
260
- position: absolute;
261
- right: 2px;
262
- top: 2px;
263
- text-transform: uppercase;
264
- font-size: 10px;
265
- border-radius: 3px;
266
- text-align: center;
267
- }
268
- .metform-template-radio-data--demo_link {
269
- position: absolute;
270
- left: 0;
271
- top: 0;
272
- background-color: #4285F4;
273
- color: #fff;
274
- font-size: 12px;
275
- border-bottom-right-radius: 5px;
276
- padding: 5px 8px;
277
- opacity: 0;
278
- visibility: hidden;
279
- transition: all .4s;
280
- }
281
- .metform-template-radio-data--demo_link:hover{
282
- color: #fff;
283
- }
284
- .metform-template-radio-data:hover .metform-template-radio-data--demo_link{
285
- opacity: 1;
286
- visibility: visible;
287
- }
288
- .metform-template-item--go_pro .metform-template-radio-data{
289
- cursor: default;
290
- }
291
- .metform-template-footer-content {
292
- align-self: normal;
293
- padding: 10px;
294
- min-height: 50px;
295
- border-top: 1px solid rgba(204, 204, 204, .5);
296
- justify-self: auto;
297
- display: flex;
298
- align-items: center;
299
- }
300
- .metform-template-footer-links a {
301
- color: #4285F4;
302
- font-size: 13px;
303
- line-height: 15px;
304
- }
305
- .metform-template-footer-links--icon {
306
- margin-right: 5px;
307
- }
308
- .metform-template-footer-title{
309
- position: static;
310
- opacity: 1;
311
- visibility: visible;
312
- transition: opacity 1s;
313
- }
314
- .metform-template-footer-title h2{
315
- font-size: 13px;
316
- text-align: left;
317
- font-weight: 500;
318
- color: #6d7882;
319
- }
320
- .metform-template-footer-links {
321
- display: flex;
322
- width: 100%;
323
- justify-content: space-between;
324
- opacity: 0;
325
- visibility: hidden;
326
- position: absolute;
327
- transition: opacity .4s;;
328
- }
329
- .metform-template-radio-data:hover .metform-template-footer-links{
330
- opacity: 1;
331
- visibility: visible;
332
- position: static;
333
- }
334
- .metform-template-radio-data:hover .metform-template-footer-title{
335
- opacity: 0;
336
- visibility: hidden;
337
- position: absolute;
338
- }
339
- .metform-templates-list img {
340
- max-width: 100%;
341
- padding: 5px;
342
- max-height: 180px;
343
- }
344
- .metform-form-edit-btn {
345
- position: absolute;
346
- left: 135px;
347
- top: 0;
348
- color: #4285F4;
349
- font-size: 15px;
350
- text-transform: uppercase;
351
- padding: 18px 0;
352
- }
353
- .metform-form-update-close-btn {
354
- position: absolute;
355
- right: 10px;
356
- top: 7px;
357
- font-size: 14px;
358
- text-transform: uppercase;
359
- background-color: #39b54a;
360
- color: #fff;
361
- padding: 10px 25px;
362
- border-radius: 100px;
363
- z-index: 1;
364
- cursor: pointer;
365
- line-height: 15px;
366
- padding-top: 10px;
367
- transition: all .4s;
368
- }
369
- .metform-form-update-close-btn:hover {
370
- background-color: #2d963c;
371
- color: #fff;
372
- }
373
- .metform-form-edit-btn:hover{
374
- color: #4285F4;
375
- }
376
- .rtl .metform-form-edit-btn {
377
- left: 60px;
378
- right: auto;
379
- }
380
- .metform-form-edit-btn i{
381
- margin-right: 5px;
382
- font-size: 18px;
383
- margin-top: -4px;
384
- }
385
- .rtl .metform-form-edit-btn > i {
386
- margin-left: 5px;
387
- margin-right: 0;
388
- }
389
- .metform-open-content-editor-templates {
390
- -webkit-appearance: none;
391
- -moz-appearance: none;
392
- background: transparent;
393
- background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
394
- background-repeat: no-repeat;
395
- background-position-x: 98%;
396
- background-position-y: 50%;
397
- }
398
- #metform-open-content-editor .metform-picker-close{
399
- display: none;
400
- position: static;
401
- border: none;
402
- background-color: transparent;
403
- box-shadow: none;
404
- margin-left: 10px;
405
- }
406
-
407
- /* form edit button */
408
- .mf-edit-form {
409
- display: block;
410
- background-color: #39b54a;
411
- border: none;
412
- color: #fff;
413
- margin-top: 15px;
414
- padding: 12px 20px;
415
- font-weight: bold;
416
- cursor: pointer;
417
- font-size: 14px;
418
- border-radius: 3px;
419
- transition: all .4s;
420
- }
421
- .mf-edit-form:hover {
422
- background-color: #da3419;
423
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* modal css */
2
+
3
+ .formpicker_warper_editable {
4
+ position: relative;
5
+ }
6
+
7
+ .formpicker_warper_editable:hover {
8
+ outline: 1px solid #71d7f7;
9
+ }
10
+
11
+ .formpicker_warper_editable:hover .formpicker_warper_edit {
12
+ display: block;
13
+ }
14
+
15
+ .formpicker_iframe_modal,
16
+ .formpicker_iframe_mini_modal {
17
+ display: block;
18
+ }
19
+
20
+ .formpicker_iframe_modal .dialog-message {
21
+ position: relative;
22
+ }
23
+
24
+ .formpicker_iframe_modal iframe {
25
+ position: absolute;
26
+ top: 0;
27
+ bottom: 0;
28
+ right: 0;
29
+ left: 0;
30
+ width: 100%;
31
+ height: 100%;
32
+ }
33
+
34
+ .formpicker_iframe_modal .dialog-widget-content {
35
+ position: static !important;
36
+ margin-top: 10px;
37
+ }
38
+
39
+ .formpicker_warper_edit {
40
+ display: none;
41
+ position: absolute;
42
+ top: 0;
43
+ right: 0;
44
+ color: #fff;
45
+ background: #71d7f7;
46
+ line-height: 1;
47
+ padding: 7px 8px;
48
+ font-size: 11px;
49
+ border-bottom-left-radius: 3px;
50
+ cursor: pointer;
51
+ }
52
+
53
+ .metform-dynamic-content-modal .dialog-widget-content {
54
+ max-width: 90% !important;
55
+ margin-top: 20px !important;
56
+ margin-bottom: 20px !important;
57
+ }
58
+ .metform-dynamic-content-modal .elementor-templates-modal__header {
59
+ background-color: #F1F3F5;
60
+ }
61
+
62
+ .elementor-device-desktop #elementor-preview-responsive-wrapper {
63
+ min-width: auto !important;
64
+ }
65
+
66
+ .metform-dynamic-content-modal .dialog-message {
67
+ overflow: unset !important;
68
+ }
69
+
70
+ .formpicker_iframe_mini_modal {
71
+ position: fixed;
72
+ top: 50%;
73
+ left: 50%;
74
+ z-index: 9999;
75
+ background: #fff;
76
+ border: 1px solid;
77
+ }
78
+
79
+ #metform-open-content-editor{
80
+ background-color: rgba(0,0,0, .8);
81
+ width: 100%;
82
+ height: 100%;
83
+ position: fixed;
84
+ left: 0;
85
+ top: 0;
86
+ z-index: 2;
87
+ overflow-y: auto;
88
+ }
89
+ .metform-open-content-inner {
90
+ position: relative;
91
+ top: 50px;
92
+ left: 50%;
93
+ transform: translateX(-50%);
94
+ z-index: 999;
95
+ width: 622px;
96
+ background-color: #fff;
97
+ box-shadow: -15px 20px 50px rgba(0, 0, 0, 0.16);
98
+ padding: 50px 0 80px;
99
+ border-radius: 5px;
100
+ text-align: center;
101
+ }
102
+ .rtl .metform-open-content-inner {
103
+ direction: ltr;
104
+ left: auto;
105
+ right: 50%;
106
+ transform: translateX(50%);
107
+ }
108
+ #metform-open-content-editor .metform-close-editor-modals {
109
+ color: #FF433C;
110
+ border: 2px solid #FF433C;
111
+ width: 30px;
112
+ height: 30px;
113
+ line-height: 27px;
114
+ text-align: center;
115
+ border-radius: 100px;
116
+ font-size: 17px;
117
+ position: absolute;
118
+ top: -10px;
119
+ right: -10px;
120
+ background-color: #fff;
121
+ cursor: pointer;
122
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
123
+ }
124
+ .rtl #metform-open-content-editor .metform-close-editor-modals {
125
+ left: -10px;
126
+ right: auto;
127
+ }
128
+ .metform-editor-input{
129
+ height: 56px;
130
+ width: 100%;
131
+ display: block;
132
+ box-sizing: border-box;
133
+ background-color: #fff;
134
+ box-shadow: 0 15px 25px rgba(0, 0, 0, 0.07);
135
+ border-radius: 10px;
136
+ border: none;
137
+ padding: 0 25px;
138
+ color: #101010;
139
+ font-size: 14px;
140
+ line-height: 42px;
141
+ border: 1px solid #ccc;
142
+ }
143
+ .metform-open-content-editor-button {
144
+ position: fixed;
145
+ bottom: 15px;
146
+ left: 50%;
147
+ transform: translateX(-50%);
148
+ background-color: #4285F4;
149
+ border: none;
150
+ font-size: 16px;
151
+ line-height: 42px;
152
+ color: #fff;
153
+ border-radius: 5px;
154
+ padding: 4px 30px;
155
+ min-width: 170px;
156
+ box-sizing: border-box;
157
+ margin-top: 30px;
158
+ cursor: pointer;
159
+ }
160
+ .metform-open-content-editor-button > span {
161
+ margin-right: 12px;
162
+ }
163
+ .metform-editor-tab-content-item {
164
+ display: none;
165
+ }
166
+ .metform-editor-tab-content-item .metform-error {
167
+ color: red;
168
+ font-style: italic;
169
+ margin-top: 10px;
170
+ }
171
+ .metform-editor-tab-content-item.active {
172
+ display: block;
173
+ }
174
+ .metform-content {
175
+ overflow: scroll;
176
+ max-height: 70vh;
177
+ padding: 0 50px 30px;
178
+ border-bottom: 1px solid #f2f2f2;
179
+ }
180
+ .metform-content::-webkit-scrollbar {
181
+ display: none;
182
+ }
183
+ .metform-content-editor-tab {
184
+ display: flex;
185
+ justify-content: center;
186
+ flex-wrap: wrap;
187
+ margin-bottom: 20px;
188
+ }
189
+ .metform-content-editor-tab-item {
190
+ padding: 0 15px;
191
+ }
192
+ #metform-open-content-editor .metform-content-editor-radio {
193
+ -webkit-appearance: none;
194
+ appearance:none;
195
+ outline: none;
196
+ width: 20px;
197
+ height: 20px;
198
+ border: 2px solid #747474;
199
+ border-radius: 100px;
200
+ position: relative;
201
+ margin: 0;
202
+ margin-right: 8px;
203
+ cursor: pointer;
204
+ }
205
+ #metform-open-content-editor .metform-content-editor-radio:checked{
206
+ border-color: #4285F4;
207
+ }
208
+ #metform-open-content-editor .metform-content-editor-radio:checked:before {
209
+ content: '';
210
+ background-color: #4285F4;
211
+ width: 10px;
212
+ height: 10px;
213
+ display: inline-block;
214
+ position: absolute;
215
+ left: 50%;
216
+ border-radius: 100px;
217
+ top: 50%;
218
+ transform: translate(-50%, -50%);
219
+ }
220
+ .metform-content-editor-tab-item label {
221
+ display: flex;
222
+ text-align: left;
223
+ cursor: pointer;
224
+ }
225
+ .metform-content-editor-radio-data p{
226
+ color: #101010;
227
+ font-size: 16px;
228
+ line-height: 20px;
229
+ margin: 0;
230
+ }
231
+ .metform-content-editor-radio-data span{
232
+ color: #999999;
233
+ font-size: 12px;
234
+ line-height: 25px;
235
+ margin: 0;
236
+ }
237
+ .metform-template-input-con{
238
+ margin-bottom: 20px;
239
+ }
240
+ .metform-templates-list {
241
+ display: flex;
242
+ flex-wrap: wrap;
243
+ }
244
+ .metform-templates-list li{
245
+ margin: 5px;
246
+ flex: 0 0 31.4%;
247
+ box-sizing: border-box;
248
+ }
249
+ .metform-templates-list li input{
250
+ display: none;
251
+ cursor: pointer;
252
+ }
253
+ .metform-template-radio-data {
254
+ min-height: 101px;
255
+ border: 1px solid #ccc;
256
+ display: flex;
257
+ justify-content: center;
258
+ align-items: center;
259
+ box-shadow: 0 15px 25px rgba(0, 0, 0, 0.07);
260
+ cursor: pointer;
261
+ height: 100%;
262
+ position: relative;
263
+ flex-direction: column;
264
+ }
265
+ .metform-templates-list li input:checked + .metform-template-radio-data {
266
+ border: 1px solid #4285F4;
267
+ }
268
+ .metform-template-radio-data--pro_tag {
269
+ background: linear-gradient(45deg, rgba(255,107,17,1) 0%, rgba(255,50,77,1) 100%);
270
+ color: #fff;
271
+ padding: 3px 5px;
272
+ display: inline-block;
273
+ position: absolute;
274
+ right: 2px;
275
+ top: 2px;
276
+ text-transform: uppercase;
277
+ font-size: 10px;
278
+ border-radius: 3px;
279
+ text-align: center;
280
+ }
281
+ .metform-template-radio-data--demo_link {
282
+ position: absolute;
283
+ left: 0;
284
+ top: 0;
285
+ background-color: #4285F4;
286
+ color: #fff;
287
+ font-size: 12px;
288
+ border-bottom-right-radius: 5px;
289
+ padding: 5px 8px;
290
+ opacity: 0;
291
+ visibility: hidden;
292
+ transition: all .4s;
293
+ }
294
+ .metform-template-radio-data--demo_link:hover{
295
+ color: #fff;
296
+ }
297
+ .metform-template-radio-data:hover .metform-template-radio-data--demo_link{
298
+ opacity: 1;
299
+ visibility: visible;
300
+ }
301
+ .metform-template-item--go_pro .metform-template-radio-data{
302
+ cursor: default;
303
+ }
304
+ .metform-template-footer-content {
305
+ align-self: normal;
306
+ padding: 10px;
307
+ min-height: 50px;
308
+ border-top: 1px solid rgba(204, 204, 204, .5);
309
+ justify-self: auto;
310
+ display: flex;
311
+ align-items: center;
312
+ }
313
+ .metform-template-footer-links a {
314
+ color: #4285F4;
315
+ font-size: 13px;
316
+ line-height: 15px;
317
+ }
318
+ .metform-template-footer-links--icon {
319
+ margin-right: 5px;
320
+ }
321
+ .metform-template-footer-title{
322
+ position: static;
323
+ opacity: 1;
324
+ visibility: visible;
325
+ transition: opacity 1s;
326
+ }
327
+ .metform-template-footer-title h2{
328
+ font-size: 13px;
329
+ text-align: left;
330
+ font-weight: 500;
331
+ color: #6d7882;
332
+ }
333
+ .metform-template-footer-links {
334
+ display: flex;
335
+ width: 100%;
336
+ justify-content: space-between;
337
+ opacity: 0;
338
+ visibility: hidden;
339
+ position: absolute;
340
+ transition: opacity .4s;;
341
+ }
342
+ .metform-template-radio-data:hover .metform-template-footer-links{
343
+ opacity: 1;
344
+ visibility: visible;
345
+ position: static;
346
+ }
347
+ .metform-template-radio-data:hover .metform-template-footer-title{
348
+ opacity: 0;
349
+ visibility: hidden;
350
+ position: absolute;
351
+ }
352
+ .metform-templates-list img {
353
+ max-width: 100%;
354
+ padding: 5px;
355
+ max-height: 180px;
356
+ }
357
+ .metform-form-edit-btn {
358
+ position: absolute;
359
+ left: 135px;
360
+ top: 0;
361
+ color: #4285F4;
362
+ font-size: 15px;
363
+ text-transform: uppercase;
364
+ padding: 18px 0;
365
+ }
366
+ .metform-form-update-close-btn {
367
+ position: absolute;
368
+ right: 10px;
369
+ top: 7px;
370
+ font-size: 14px;
371
+ text-transform: uppercase;
372
+ background-color: #39b54a;
373
+ color: #fff;
374
+ padding: 10px 25px;
375
+ border-radius: 100px;
376
+ z-index: 1;
377
+ cursor: pointer;
378
+ line-height: 15px;
379
+ padding-top: 10px;
380
+ transition: all .4s;
381
+ }
382
+ .metform-form-update-close-btn:hover {
383
+ background-color: #2d963c;
384
+ color: #fff;
385
+ }
386
+ .metform-form-edit-btn:hover{
387
+ color: #4285F4;
388
+ }
389
+ .rtl .metform-form-edit-btn {
390
+ left: 60px;
391
+ right: auto;
392
+ }
393
+ .metform-form-edit-btn i{
394
+ margin-right: 5px;
395
+ font-size: 18px;
396
+ margin-top: -4px;
397
+ }
398
+ .rtl .metform-form-edit-btn > i {
399
+ margin-left: 5px;
400
+ margin-right: 0;
401
+ }
402
+ .metform-open-content-editor-templates {
403
+ -webkit-appearance: none;
404
+ -moz-appearance: none;
405
+ background: transparent;
406
+ background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
407
+ background-repeat: no-repeat;
408
+ background-position-x: 98%;
409
+ background-position-y: 50%;
410
+ }
411
+ #metform-open-content-editor .metform-picker-close{
412
+ display: none;
413
+ position: static;
414
+ border: none;
415
+ background-color: transparent;
416
+ box-shadow: none;
417
+ margin-left: 10px;
418
+ }
419
+
420
+ /* form edit button */
421
+ .mf-edit-form {
422
+ display: block;
423
+ background-color: #39b54a;
424
+ border: none;
425
+ color: #fff;
426
+ margin-top: 15px;
427
+ padding: 12px 20px;
428
+ font-weight: bold;
429
+ cursor: pointer;
430
+ font-size: 14px;
431
+ border-radius: 3px;
432
+ transition: all .4s;
433
+ }
434
+ .mf-edit-form:hover {
435
+ background-color: #da3419;
436
+ }
controls/assets/img/edit_icon.svg CHANGED
@@ -1,39 +1,39 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 23.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
- viewBox="0 0 200 216.59" enable-background="new 0 0 512 512" xml:space="preserve">
5
- <g>
6
- <g>
7
- <path style="fill: #ffffff;" d="M72.76,176.77H4.71c-2.6,0-4.71-2.11-4.71-4.71V4.71C0,2.11,2.11,0,4.71,0h172.06c2.6,0,4.71,2.11,4.71,4.71V82.5
8
- c0,2.6-2.11,4.71-4.71,4.71c-2.6,0-4.71-2.11-4.71-4.71V9.42H9.42v157.94h63.34c2.6,0,4.71,2.11,4.71,4.71
9
- S75.36,176.77,72.76,176.77z"/>
10
- </g>
11
- <g>
12
- <path style="fill: #ffffff;" d="M143.81,49.22H37.67c-2.6,0-4.71-2.11-4.71-4.71s2.11-4.71,4.71-4.71h106.14c2.6,0,4.71,2.11,4.71,4.71
13
- S146.41,49.22,143.81,49.22z"/>
14
- </g>
15
- <g>
16
- <path style="fill: #ffffff;" d="M143.81,83.67H37.67c-2.6,0-4.71-2.11-4.71-4.71c0-2.6,2.11-4.71,4.71-4.71h106.14c2.6,0,4.71,2.11,4.71,4.71
17
- C148.52,81.56,146.41,83.67,143.81,83.67z"/>
18
- </g>
19
- <g>
20
- <path style="fill: #ffffff;" d="M101.43,118.12H37.67c-2.6,0-4.71-2.11-4.71-4.71s2.11-4.71,4.71-4.71h63.76c2.6,0,4.71,2.11,4.71,4.71
21
- S104.04,118.12,101.43,118.12z"/>
22
- </g>
23
- <g>
24
- <g>
25
- <path style="fill: #ffffff;" d="M118.37,202.09l-24.55-24.55l66.95-66.95l24.55,24.55L118.37,202.09z M107.14,177.54l11.23,11.23l53.64-53.64
26
- l-11.23-11.23L107.14,177.54z"/>
27
- </g>
28
- <g>
29
- <path style="fill: #ffffff;" d="M182.42,138.04l-24.55-24.55l12.49-12.49c6.77-6.77,17.78-6.77,24.55,0c3.28,3.27,5.09,7.64,5.09,12.27
30
- c0,4.64-1.81,9-5.09,12.28L182.42,138.04z M171.19,113.48l11.23,11.23l5.84-5.84c1.5-1.5,2.33-3.49,2.33-5.62
31
- c0-2.12-0.82-4.12-2.33-5.61c-3.1-3.09-8.13-3.09-11.23,0L171.19,113.48z"/>
32
- </g>
33
- <g>
34
- <path style="fill: #ffffff;" d="M79.55,209.64l7.59-25.42l13.34-13.34l24.55,24.55l-13.34,13.34l-25.42,7.59C82.15,217.58,78.32,213.75,79.55,209.64z
35
- M95.48,189.19L90.7,205.2l16.01-4.78l4.99-4.99l-11.23-11.23L95.48,189.19z"/>
36
- </g>
37
- </g>
38
- </g>
39
- </svg>
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 23.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 200 216.59" enable-background="new 0 0 512 512" xml:space="preserve">
5
+ <g>
6
+ <g>
7
+ <path style="fill: #ffffff;" d="M72.76,176.77H4.71c-2.6,0-4.71-2.11-4.71-4.71V4.71C0,2.11,2.11,0,4.71,0h172.06c2.6,0,4.71,2.11,4.71,4.71V82.5
8
+ c0,2.6-2.11,4.71-4.71,4.71c-2.6,0-4.71-2.11-4.71-4.71V9.42H9.42v157.94h63.34c2.6,0,4.71,2.11,4.71,4.71
9
+ S75.36,176.77,72.76,176.77z"/>
10
+ </g>
11
+ <g>
12
+ <path style="fill: #ffffff;" d="M143.81,49.22H37.67c-2.6,0-4.71-2.11-4.71-4.71s2.11-4.71,4.71-4.71h106.14c2.6,0,4.71,2.11,4.71,4.71
13
+ S146.41,49.22,143.81,49.22z"/>
14
+ </g>
15
+ <g>
16
+ <path style="fill: #ffffff;" d="M143.81,83.67H37.67c-2.6,0-4.71-2.11-4.71-4.71c0-2.6,2.11-4.71,4.71-4.71h106.14c2.6,0,4.71,2.11,4.71,4.71
17
+ C148.52,81.56,146.41,83.67,143.81,83.67z"/>
18
+ </g>
19
+ <g>
20
+ <path style="fill: #ffffff;" d="M101.43,118.12H37.67c-2.6,0-4.71-2.11-4.71-4.71s2.11-4.71,4.71-4.71h63.76c2.6,0,4.71,2.11,4.71,4.71
21
+ S104.04,118.12,101.43,118.12z"/>
22
+ </g>
23
+ <g>
24
+ <g>
25
+ <path style="fill: #ffffff;" d="M118.37,202.09l-24.55-24.55l66.95-66.95l24.55,24.55L118.37,202.09z M107.14,177.54l11.23,11.23l53.64-53.64
26
+ l-11.23-11.23L107.14,177.54z"/>
27
+ </g>
28
+ <g>
29
+ <path style="fill: #ffffff;" d="M182.42,138.04l-24.55-24.55l12.49-12.49c6.77-6.77,17.78-6.77,24.55,0c3.28,3.27,5.09,7.64,5.09,12.27
30
+ c0,4.64-1.81,9-5.09,12.28L182.42,138.04z M171.19,113.48l11.23,11.23l5.84-5.84c1.5-1.5,2.33-3.49,2.33-5.62
31
+ c0-2.12-0.82-4.12-2.33-5.61c-3.1-3.09-8.13-3.09-11.23,0L171.19,113.48z"/>
32
+ </g>
33
+ <g>
34
+ <path style="fill: #ffffff;" d="M79.55,209.64l7.59-25.42l13.34-13.34l24.55,24.55l-13.34,13.34l-25.42,7.59C82.15,217.58,78.32,213.75,79.55,209.64z
35
+ M95.48,189.19L90.7,205.2l16.01-4.78l4.99-4.99l-11.23-11.23L95.48,189.19z"/>
36
+ </g>
37
+ </g>
38
+ </g>
39
+ </svg>
controls/assets/js/form-picker-editor.js CHANGED
@@ -1,210 +1,210 @@
1
- ( function (jQuery, elementor, oElementor) {
2
- "use strict";
3
- if (typeof window.parent != 'undefined') {
4
- // window.parent found
5
- }else{
6
- // window.parent missing
7
- return;
8
- }
9
-
10
- let windowParent = window.parent;
11
- var ElementsKit_WidgetArea = {
12
- init: function () {
13
- elementor.hooks.addAction('frontend/element_ready/metform.default', function (scope) {
14
- /*
15
- * Checks if in the editor, if not stop the rest from executing
16
- */
17
- if ( !elementor.isEditMode() ) {
18
- return;
19
- }
20
-
21
- var formTemplateSelectorOpenButton = scope.find('.formpicker_warper_edit');
22
-
23
- formTemplateSelectorOpenButton.off('click.metform').on('click.metform', function(){
24
- var formTemplateSelector = windowParent.jQuery('#metform-open-content-editor'),
25
- key = formTemplateSelectorOpenButton.attr('data-metform-formpicker-key');
26
- var nonce = jQuery(this).attr('data-nonce');
27
- formTemplateSelector.find('.metform-error').remove();
28
-
29
-
30
-
31
- var popupTab = formTemplateSelector.find('.metform-content-editor-radio');
32
- popupTab.on('click', function(e){
33
- var self = jQuery(this),
34
- dataTarget = self.closest('li').data('target');
35
-
36
- formTemplateSelector.find('#'+ dataTarget).fadeIn().siblings().hide();
37
- });
38
-
39
-
40
- jQuery.ajax({
41
- url: jQuery(this).attr('resturl') + (key || 0),
42
- type: 'get',
43
- headers: {
44
- 'X-WP-Nonce': nonce
45
- },
46
- dataType: 'html',
47
- success: function (output) {
48
- if(output){
49
-
50
- formTemplateSelector.find('.metform-content-editor-radio').first().trigger('click');
51
- formTemplateSelector.find('.metform-open-content-editor-templates').html(output);
52
- } else {
53
- formTemplateSelector.find('.metform-content-editor-radio').last().trigger('click');
54
- formTemplateSelector.find('.metform-open-content-editor-templates').parent().append("<p class='metform-error'>No forms were created yet!</p>")
55
- }
56
-
57
- }
58
- });
59
-
60
- formTemplateSelector.show();
61
- });
62
-
63
- windowParent.jQuery('#metform-open-content-editor').off('click.metform').on('click.metform', '.metform-open-content-editor-button', function() {
64
-
65
- var iframeModal = windowParent.jQuery('.metform-dynamic-content-modal'),
66
- iframe = iframeModal.find('#formpicker-control-iframe'),
67
- iframeLoading = iframeModal.find('.dialog-lightbox-loading'),
68
- modalContainer = iframeModal.find('.dialog-type-lightbox');
69
-
70
-
71
- var conParent = jQuery(this).parents('.metform-open-content-inner'),
72
- content_key = conParent.find('.metform-open-content-editor-templates').val(),
73
- editorTabInput = conParent.find('.metform-content-editor-radio:checked').val(),
74
- editorTamplateInput = conParent.find('.metform-template-radio:checked').val(),
75
- editorTemplateName = conParent.find('.metform-template-input-con input').val();
76
- var nonce = windowParent.jQuery('#metform-form-modalinput-settings').data('nonce');
77
-
78
- if(editorTabInput == 'saved'){
79
- windowParent.jQuery('body').attr('data-metform-template-key', content_key);
80
- }else{
81
- jQuery.ajax({
82
- url: jQuery(this).attr('resturl') + 'builder_form_id/' + editorTamplateInput +'?title=' + editorTemplateName,
83
- type: 'GET',
84
- headers: {
85
- 'X-WP-Nonce': nonce
86
- },
87
- success: function (output) {
88
- windowParent.jQuery('body').attr('data-metform-template-key', output);
89
- conParent.find('.metform-template-input-con input').val('');
90
- conParent.find('.metform-template-radio').removeAttr('checked').first().attr('checked', 'checked');
91
- content_key = output;
92
- },
93
- async: false
94
- });
95
- }
96
-
97
- var url = jQuery(this).attr('resturl') + 'builder/' + content_key;
98
-
99
- windowParent.jQuery('body').attr('data-metform-template-load', 'false');
100
-
101
- modalContainer.show();
102
- iframeModal.show();
103
- iframeLoading.show();
104
- iframe.contents().find('#elementor-loading').show();
105
- iframe.css('z-index', '-1');
106
- iframe.attr('src', url);
107
-
108
- iframe.on('load', function() {
109
- iframeLoading.hide();
110
- iframe.show();
111
- iframe.contents().find('#elementor-loading').hide();
112
- iframe.css('z-index', '1');
113
- });
114
- });
115
-
116
- windowParent.jQuery('#elementor-editor-wrapper').on('click', '#metform-inspactor-edit-button', function(){
117
- console.log('dom found');
118
- // trigger click.metform', '.metform-open-content-editor-button'
119
- });
120
-
121
-
122
- function metformClosingPopup(windowLoc){
123
- windowLoc.jQuery('body').attr('data-metform-template-load', 'true');
124
- windowLoc.jQuery('.metform-dynamic-content-modal').hide();
125
- windowLoc.jQuery('#metform-open-content-editor').hide();
126
- }
127
-
128
- if(typeof windowParent.jQuery !== 'undefined'){
129
- var iframeCloseButton = windowParent.jQuery('.metform-close-editor-modals');
130
- iframeCloseButton.off('click.metform').on('click.metform', function() {
131
-
132
- if(jQuery(this).hasClass('metform-editor-close')) {
133
-
134
- var iframeModal = windowParent.jQuery('.metform-dynamic-content-modal'),
135
- iframe = iframeModal.find('#formpicker-control-iframe'),
136
- iframeWindow = (iframe[0].contentWindow || iframe[0].contentDocument),
137
- saved = iframeWindow.jQuery('#elementor-panel-saver-button-publish').hasClass('elementor-disabled');
138
-
139
- if(!saved){
140
-
141
- if(confirm("Leaving? Changes you made may not be saved.")) {
142
-
143
- iframeWindow.jQuery(iframeWindow).off('beforeunload');
144
-
145
- metformClosingPopup(windowParent);
146
- } else {
147
- iframeWindow.jQuery(iframeWindow).off('beforeunload');
148
- }
149
-
150
- } else {
151
- metformClosingPopup(windowParent);
152
- }
153
- } else if(jQuery(this).hasClass('metform-picker-close')){
154
-
155
- metformClosingPopup(windowParent);
156
-
157
- var pickerContainer = windowParent.jQuery('#metform-open-content-editor'),
158
- tabValue = pickerContainer.find('.metform-content-editor-radio:checked').val(),
159
- templateValue = pickerContainer.find('.metform-open-content-editor-templates').val();
160
-
161
-
162
- if(tabValue == 'saved'){
163
- windowParent.jQuery('body').attr('data-metform-template-key', templateValue);
164
- }
165
- metformClosingPopup(windowParent);
166
- }
167
- else {
168
- metformClosingPopup(windowParent);
169
- }
170
-
171
- windowParent.jQuery('#metform-open-content-editor').find('.metform-picker-close').hide();
172
- windowParent.jQuery('#metform-open-content-editor').find('.metform-template-radio').removeAttr('checked').first().attr('checked', 'checked');
173
-
174
- });
175
- }
176
-
177
- windowParent.jQuery('#metform-open-content-editor').find('.metform-open-content-editor-templates').on('change', function(){
178
- windowParent.jQuery('#metform-open-content-editor').find('.metform-picker-close').fadeIn();
179
- });
180
-
181
- // update and close
182
- var updateClose = windowParent.jQuery('.metform-form-update-close-btn');
183
- updateClose.off('click.metform').on('click.metform', function(){
184
- var iframeModal = windowParent.jQuery('.metform-dynamic-content-modal'),
185
- iframe = iframeModal.find('#formpicker-control-iframe'),
186
- iframeWindow = (iframe[0].contentWindow || iframe[0].contentDocument),
187
- needSaving = iframeWindow.jQuery('#elementor-panel-saver-button-publish:not([disabled])').hasClass('elementor-disabled');
188
-
189
- if(!needSaving){
190
- iframeWindow.jQuery('#elementor-panel-saver-button-publish:not([disabled])').trigger('click');
191
- var checkExist = setInterval(function() {
192
- if(iframeWindow.jQuery('#elementor-panel-saver-button-publish:not([disabled])').hasClass('elementor-disabled')) {
193
- windowParent.jQuery('.metform-close-editor-modals').trigger('click.metform');
194
- clearInterval(checkExist);
195
- }
196
- }, 100); // check every 100ms
197
- } else {
198
- windowParent.jQuery('.metform-close-editor-modals').trigger('click.metform');
199
- }
200
-
201
- });
202
- // end update and close
203
-
204
- });
205
- },
206
- };
207
-
208
- jQuery(window).on('elementor/frontend/init', ElementsKit_WidgetArea.init);
209
-
210
- }(jQuery, window.elementorFrontend) );
1
+ ( function (jQuery, elementor, oElementor) {
2
+ "use strict";
3
+ if (typeof window.parent != 'undefined') {
4
+ // window.parent found
5
+ }else{
6
+ // window.parent missing
7
+ return;
8
+ }
9
+
10
+ let windowParent = window.parent;
11
+ var ElementsKit_WidgetArea = {
12
+ init: function () {
13
+ elementor.hooks.addAction('frontend/element_ready/metform.default', function (scope) {
14
+ /*
15
+ * Checks if in the editor, if not stop the rest from executing
16
+ */
17
+ if ( !elementor.isEditMode() ) {
18
+ return;
19
+ }
20
+
21
+ var formTemplateSelectorOpenButton = scope.find('.formpicker_warper_edit');
22
+
23
+ formTemplateSelectorOpenButton.off('click.metform').on('click.metform', function(){
24
+ var formTemplateSelector = windowParent.jQuery('#metform-open-content-editor'),
25
+ key = formTemplateSelectorOpenButton.attr('data-metform-formpicker-key');
26
+ var nonce = jQuery(this).attr('data-nonce');
27
+ formTemplateSelector.find('.metform-error').remove();
28
+
29
+
30
+
31
+ var popupTab = formTemplateSelector.find('.metform-content-editor-radio');
32
+ popupTab.on('click', function(e){
33
+ var self = jQuery(this),
34
+ dataTarget = self.closest('li').data('target');
35
+
36
+ formTemplateSelector.find('#'+ dataTarget).fadeIn().siblings().hide();
37
+ });
38
+
39
+
40
+ jQuery.ajax({
41
+ url: jQuery(this).attr('resturl') + (key || 0),
42
+ type: 'get',
43
+ headers: {
44
+ 'X-WP-Nonce': nonce
45
+ },
46
+ dataType: 'html',
47
+ success: function (output) {
48
+ if(output){
49
+
50
+ formTemplateSelector.find('.metform-content-editor-radio').first().trigger('click');
51
+ formTemplateSelector.find('.metform-open-content-editor-templates').html(output);
52
+ } else {
53
+ formTemplateSelector.find('.metform-content-editor-radio').last().trigger('click');
54
+ formTemplateSelector.find('.metform-open-content-editor-templates').parent().append("<p class='metform-error'>No forms were created yet!</p>")
55
+ }
56
+
57
+ }
58
+ });
59
+
60
+ formTemplateSelector.show();
61
+ });
62
+
63
+ windowParent.jQuery('#metform-open-content-editor').off('click.metform').on('click.metform', '.metform-open-content-editor-button', function() {
64
+
65
+ var iframeModal = windowParent.jQuery('.metform-dynamic-content-modal'),
66
+ iframe = iframeModal.find('#formpicker-control-iframe'),
67
+ iframeLoading = iframeModal.find('.dialog-lightbox-loading'),
68
+ modalContainer = iframeModal.find('.dialog-type-lightbox');
69
+
70
+
71
+ var conParent = jQuery(this).parents('.metform-open-content-inner'),
72
+ content_key = conParent.find('.metform-open-content-editor-templates').val(),
73
+ editorTabInput = conParent.find('.metform-content-editor-radio:checked').val(),
74
+ editorTamplateInput = conParent.find('.metform-template-radio:checked').val(),
75
+ editorTemplateName = conParent.find('.metform-template-input-con input').val();
76
+ var nonce = windowParent.jQuery('#metform-form-modalinput-settings').data('nonce');
77
+
78
+ if(editorTabInput == 'saved'){
79
+ windowParent.jQuery('body').attr('data-metform-template-key', content_key);
80
+ }else{
81
+ jQuery.ajax({
82
+ url: jQuery(this).attr('resturl') + 'builder_form_id/' + editorTamplateInput +'?title=' + editorTemplateName,
83
+ type: 'GET',
84
+ headers: {
85
+ 'X-WP-Nonce': nonce
86
+ },
87
+ success: function (output) {
88
+ windowParent.jQuery('body').attr('data-metform-template-key', output);
89
+ conParent.find('.metform-template-input-con input').val('');
90
+ conParent.find('.metform-template-radio').removeAttr('checked').first().attr('checked', 'checked');
91
+ content_key = output;
92
+ },
93
+ async: false
94
+ });
95
+ }
96
+
97
+ var url = jQuery(this).attr('resturl') + 'builder/' + content_key;
98
+
99
+ windowParent.jQuery('body').attr('data-metform-template-load', 'false');
100
+
101
+ modalContainer.show();
102
+ iframeModal.show();
103
+ iframeLoading.show();
104
+ iframe.contents().find('#elementor-loading').show();
105
+ iframe.css('z-index', '-1');
106
+ iframe.attr('src', url);
107
+
108
+ iframe.on('load', function() {
109
+ iframeLoading.hide();
110
+ iframe.show();
111
+ iframe.contents().find('#elementor-loading').hide();
112
+ iframe.css('z-index', '1');
113
+ });
114
+ });
115
+
116
+ windowParent.jQuery('#elementor-editor-wrapper').on('click', '#metform-inspactor-edit-button', function(){
117
+ console.log('dom found');
118
+ // trigger click.metform', '.metform-open-content-editor-button'
119
+ });
120
+
121
+
122
+ function metformClosingPopup(windowLoc){
123
+ windowLoc.jQuery('body').attr('data-metform-template-load', 'true');
124
+ windowLoc.jQuery('.metform-dynamic-content-modal').hide();
125
+ windowLoc.jQuery('#metform-open-content-editor').hide();
126
+ }
127
+
128
+ if(typeof windowParent.jQuery !== 'undefined'){
129
+ var iframeCloseButton = windowParent.jQuery('.metform-close-editor-modals');
130
+ iframeCloseButton.off('click.metform').on('click.metform', function() {
131
+
132
+ if(jQuery(this).hasClass('metform-editor-close')) {
133
+
134
+ var iframeModal = windowParent.jQuery('.metform-dynamic-content-modal'),
135
+ iframe = iframeModal.find('#formpicker-control-iframe'),
136
+ iframeWindow = (iframe[0].contentWindow || iframe[0].contentDocument),
137
+ saved = iframeWindow.jQuery('#elementor-panel-saver-button-publish').hasClass('elementor-disabled');
138
+
139
+ if(!saved){
140
+
141
+ if(confirm("Leaving? Changes you made may not be saved.")) {
142
+
143
+ iframeWindow.jQuery(iframeWindow).off('beforeunload');
144
+
145
+ metformClosingPopup(windowParent);
146
+ } else {
147
+ iframeWindow.jQuery(iframeWindow).off('beforeunload');
148
+ }
149
+
150
+ } else {
151
+ metformClosingPopup(windowParent);
152
+ }
153
+ } else if(jQuery(this).hasClass('metform-picker-close')){
154
+
155
+ metformClosingPopup(windowParent);
156
+
157
+ var pickerContainer = windowParent.jQuery('#metform-open-content-editor'),
158
+ tabValue = pickerContainer.find('.metform-content-editor-radio:checked').val(),
159
+ templateValue = pickerContainer.find('.metform-open-content-editor-templates').val();
160
+
161
+
162
+ if(tabValue == 'saved'){
163
+ windowParent.jQuery('body').attr('data-metform-template-key', templateValue);
164
+ }
165
+ metformClosingPopup(windowParent);
166
+ }
167
+ else {
168
+ metformClosingPopup(windowParent);
169
+ }
170
+
171
+ windowParent.jQuery('#metform-open-content-editor').find('.metform-picker-close').hide();
172
+ windowParent.jQuery('#metform-open-content-editor').find('.metform-template-radio').removeAttr('checked').first().attr('checked', 'checked');
173
+
174
+ });
175
+ }
176
+
177
+ windowParent.jQuery('#metform-open-content-editor').find('.metform-open-content-editor-templates').on('change', function(){
178
+ windowParent.jQuery('#metform-open-content-editor').find('.metform-picker-close').fadeIn();
179
+ });
180
+
181
+ // update and close
182
+ var updateClose = windowParent.jQuery('.metform-form-update-close-btn');
183
+ updateClose.off('click.metform').on('click.metform', function(){
184
+ var iframeModal = windowParent.jQuery('.metform-dynamic-content-modal'),
185
+ iframe = iframeModal.find('#formpicker-control-iframe'),
186
+ iframeWindow = (iframe[0].contentWindow || iframe[0].contentDocument),
187
+ needSaving = iframeWindow.jQuery('#elementor-panel-saver-button-publish:not([disabled])').hasClass('elementor-disabled');
188
+
189
+ if(!needSaving){
190
+ iframeWindow.jQuery('#elementor-panel-saver-button-publish:not([disabled])').trigger('click');
191
+ var checkExist = setInterval(function() {
192
+ if(iframeWindow.jQuery('#elementor-panel-saver-button-publish:not([disabled])').hasClass('elementor-disabled')) {
193
+ windowParent.jQuery('.metform-close-editor-modals').trigger('click.metform');
194
+ clearInterval(checkExist);
195
+ }
196
+ }, 100); // check every 100ms
197
+ } else {
198
+ windowParent.jQuery('.metform-close-editor-modals').trigger('click.metform');
199
+ }
200
+
201
+ });
202
+ // end update and close
203
+
204
+ });
205
+ },
206
+ };
207
+
208
+ jQuery(window).on('elementor/frontend/init', ElementsKit_WidgetArea.init);
209
+
210
+ }(jQuery, window.elementorFrontend) );
controls/assets/js/form-picker-inspactor.js CHANGED
@@ -1,70 +1,70 @@
1
- jQuery(window).on('elementor:init', function () {
2
- "use strict";
3
-
4
- var ControlBaseDataView = elementor.modules.controls.BaseData;
5
- var ControlFormPickerItemView = ControlBaseDataView.extend({
6
- interval : null,
7
-
8
- ui: function ui() {
9
- var ui = ControlBaseDataView.prototype.ui.apply(this, arguments);
10
- ui.inputs = 'textarea';
11
- return ui;
12
- },
13
-
14
- events: function events() {
15
- return _.extend(ControlBaseDataView.prototype.events.apply(this, arguments), {
16
- 'change @ui.inputs': 'onBaseInputChange'
17
- });
18
- },
19
-
20
- onBaseInputChange: function onBaseInputChange(event) {
21
- clearTimeout(this.correctionTimeout);
22
-
23
- var input = event.currentTarget,
24
- value = this.getInputValue(input);
25
-
26
- //console.log(event.currentTarget);
27
- //console.log(value);
28
-
29
- this.updateElementModel(value, input);
30
-
31
- //this.triggerMethod('input:change', event);
32
- },
33
-
34
- onDestroy: function onRender() {
35
- // console.log('boo');
36
- clearInterval(window.metFormPickerInterval2555);
37
- },
38
-
39
- onRender: function onRender() {
40
- ControlBaseDataView.prototype.onRender.apply(this, arguments);
41
- var self = this;
42
-
43
- jQuery(document).on('click', '.mf-edit-form', function(){
44
- let IframeDoc = jQuery('#elementor-preview-iframe')[0].contentDocument;
45
- jQuery(IframeDoc).find('.elementor-element-editable .formpicker_warper_edit').trigger('click')
46
- });
47
-
48
- window.metFormPickerInterval2555 = setInterval(function(){
49
-
50
- var formpicker_load = jQuery('body').attr('data-metform-template-load'),
51
- formpicker_key = jQuery('body').attr('data-metform-template-key');
52
-
53
- if(formpicker_load == 'true' && self.isRendered == true && formpicker_key !== undefined){
54
- var time = new Date().getTime(),
55
- new_val,
56
- formpicker_key_spilt = formpicker_key.split('***');
57
-
58
- formpicker_key_spilt = formpicker_key_spilt[0];
59
- new_val = formpicker_key_spilt + '***' + time;
60
-
61
- jQuery('body').attr('data-metform-template-load', 'false');
62
- self.setValue(new_val);
63
- }
64
- }, 200);
65
- }
66
- },{
67
-
68
- });
69
- elementor.addControlView('formpicker', ControlFormPickerItemView);
70
- });
1
+ jQuery(window).on('elementor:init', function () {
2
+ "use strict";
3
+
4
+ var ControlBaseDataView = elementor.modules.controls.BaseData;
5
+ var ControlFormPickerItemView = ControlBaseDataView.extend({
6
+ interval : null,
7
+
8
+ ui: function ui() {
9
+ var ui = ControlBaseDataView.prototype.ui.apply(this, arguments);
10
+ ui.inputs = 'textarea';
11
+ return ui;
12
+ },
13
+
14
+ events: function events() {
15
+ return _.extend(ControlBaseDataView.prototype.events.apply(this, arguments), {
16
+ 'change @ui.inputs': 'onBaseInputChange'
17
+ });
18
+ },
19
+
20
+ onBaseInputChange: function onBaseInputChange(event) {
21
+ clearTimeout(this.correctionTimeout);
22
+
23
+ var input = event.currentTarget,
24
+ value = this.getInputValue(input);
25
+
26
+ //console.log(event.currentTarget);
27
+ //console.log(value);
28
+
29
+ this.updateElementModel(value, input);
30
+
31
+ //this.triggerMethod('input:change', event);
32
+ },
33
+
34
+ onDestroy: function onRender() {
35
+ // console.log('boo');
36
+ clearInterval(window.metFormPickerInterval2555);
37
+ },
38
+
39
+ onRender: function onRender() {
40
+ ControlBaseDataView.prototype.onRender.apply(this, arguments);
41
+ var self = this;
42
+
43
+ jQuery(document).on('click', '.mf-edit-form', function(){
44
+ let IframeDoc = jQuery('#elementor-preview-iframe')[0].contentDocument;
45
+ jQuery(IframeDoc).find('.elementor-element-editable .formpicker_warper_edit').trigger('click')
46
+ });
47
+
48
+ window.metFormPickerInterval2555 = setInterval(function(){
49
+
50
+ var formpicker_load = jQuery('body').attr('data-metform-template-load'),
51
+ formpicker_key = jQuery('body').attr('data-metform-template-key');
52
+
53
+ if(formpicker_load == 'true' && self.isRendered == true && formpicker_key !== undefined){
54
+ var time = new Date().getTime(),
55
+ new_val,
56
+ formpicker_key_spilt = formpicker_key.split('***');
57
+
58
+ formpicker_key_spilt = formpicker_key_spilt[0];
59
+ new_val = formpicker_key_spilt + '***' + time;
60
+
61
+ jQuery('body').attr('data-metform-template-load', 'false');
62
+ self.setValue(new_val);
63
+ }
64
+ }, 200);
65
+ }
66
+ },{
67
+
68
+ });
69
+ elementor.addControlView('formpicker', ControlFormPickerItemView);
70
+ });
controls/base.php CHANGED
@@ -1,57 +1,57 @@
1
- <?php
2
- namespace MetForm\Controls;
3
-
4
- defined( 'ABSPATH' ) || exit;
5
-
6
- class Base{
7
-
8
- use \MetForm\Traits\Singleton;
9
-
10
- // instance of all control's base class
11
- // ##readhere
12
- public static function get_url(){
13
- return \MetForm\Plugin::instance()->plugin_url() . 'controls/';
14
- }
15
- public static function get_dir(){
16
- return \MetForm\Plugin::instance()->plugin_dir() . 'controls/';
17
- }
18
-
19
- public function init() {
20
-
21
- // Includes necessary files
22
- $this->include_files();
23
-
24
- // Initilizating control hooks
25
- add_action('elementor/controls/controls_registered', array( $this, 'formpicker' ), 11 );
26
-
27
- // Initilizating control scripts
28
- add_action( 'elementor/frontend/after_enqueue_styles', array( $this, 'formpicker_enqueue_styles_editor' ) );
29
- add_action( 'elementor/frontend/after_enqueue_scripts', array( $this, 'formpicker_enqueue_scripts_editor' ) );
30
-
31
- // Initilizating control classes
32
- $formpicker_utils = new Form_Picker_Utils();
33
- $formpicker_utils->init();
34
- }
35
-
36
- private function include_files(){
37
- // Controls_Manager
38
- include_once self::get_dir() . 'control-manager.php';
39
-
40
- // formpicker
41
- include_once self::get_dir() . 'form-picker-utils.php';
42
- include_once self::get_dir() . 'form-picker.php';
43
- }
44
-
45
- public function formpicker( $controls_manager ) {
46
- $controls_manager->register_control( 'formpicker', new \MetForm\Controls\Form_Picker());
47
- }
48
-
49
- public function formpicker_enqueue_scripts_editor() {
50
- wp_enqueue_script( 'metform-js-formpicker-control-editor', self::get_url() . 'assets/js/form-picker-editor.js', [], \MetForm\Plugin::instance()->version() );
51
- }
52
-
53
- public function formpicker_enqueue_styles_editor() {
54
- wp_enqueue_style( 'metform-css-formpicker-control-editor', self::get_url() . 'assets/css/form-picker-editor.css', [], '1.0.0' );
55
- }
56
-
57
- }
1
+ <?php
2
+ namespace MetForm\Controls;
3
+
4
+ defined( 'ABSPATH' ) || exit;
5
+
6
+ class Base{
7
+
8
+ use \MetForm\Traits\Singleton;
9
+
10
+ // instance of all control's base class
11
+ // ##readhere
12
+ public static function get_url(){
13
+ return \MetForm\Plugin::instance()->plugin_url() . 'controls/';
14
+ }
15
+ public static function get_dir(){
16
+ return \MetForm\Plugin::instance()->plugin_dir() . 'controls/';
17
+ }
18
+
19
+ public function init() {
20
+
21
+ // Includes necessary files
22
+ $this->include_files();
23
+
24
+ // Initilizating control hooks
25
+ add_action('elementor/controls/controls_registered', array( $this, 'formpicker' ), 11 );
26
+
27
+ // Initilizating control scripts
28
+ add_action( 'elementor/frontend/after_enqueue_styles', array( $this, 'formpicker_enqueue_styles_editor' ) );
29
+ add_action( 'elementor/frontend/after_enqueue_scripts', array( $this, 'formpicker_enqueue_scripts_editor' ) );
30
+
31
+ // Initilizating control classes
32
+ $formpicker_utils = new Form_Picker_Utils();
33
+ $formpicker_utils->init();
34
+ }
35
+
36
+ private function include_files(){
37
+ // Controls_Manager
38
+ include_once self::get_dir() . 'control-manager.php';
39
+
40
+ // formpicker
41
+ include_once self::get_dir() . 'form-picker-utils.php';
42
+ include_once self::get_dir() . 'form-picker.php';
43
+ }
44
+
45
+ public function formpicker( $controls_manager ) {
46
+ $controls_manager->register_control( 'formpicker', new \MetForm\Controls\Form_Picker());
47
+ }
48
+
49
+ public function formpicker_enqueue_scripts_editor() {
50
+ wp_enqueue_script( 'metform-js-formpicker-control-editor', self::get_url() . 'assets/js/form-picker-editor.js', [], \MetForm\Plugin::instance()->version() );
51
+ }
52
+
53
+ public function formpicker_enqueue_styles_editor() {
54
+ wp_enqueue_style( 'metform-css-formpicker-control-editor', self::get_url() . 'assets/css/form-picker-editor.css', [], '1.0.0' );
55
+ }
56
+
57
+ }
controls/control-manager.php CHANGED
@@ -1,17 +1,17 @@
1
- <?php
2
- namespace MetForm\Controls;
3
-
4
- defined( 'ABSPATH' ) || exit;
5
-
6
- /**
7
- * Elementor controls manager.
8
- *
9
- * Elementor controls manager handler class is responsible for registering and
10
- * initializing all the supported controls, both regular controls and the group
11
- * controls.
12
- *
13
- * @since 1.0.0
14
- */
15
- abstract class Controls_Manager extends \Elementor\Controls_Manager{
16
- const FORMPICKER = 'formpicker';
17
  }
1
+ <?php
2
+ namespace MetForm\Controls;
3
+
4
+ defined( 'ABSPATH' ) || exit;
5
+
6
+ /**
7
+ * Elementor controls manager.
8
+ *
9
+ * Elementor controls manager handler class is responsible for registering and
10
+ * initializing all the supported controls, both regular controls and the group
11
+ * controls.
12
+ *
13
+ * @since 1.0.0
14
+ */
15
+ abstract class Controls_Manager extends \Elementor\Controls_Manager{
16
+ const FORMPICKER = 'formpicker';
17
  }
controls/form-editor-modal.php CHANGED
@@ -1,53 +1,53 @@
1
- <?php defined( 'ABSPATH' ) || exit; ?>
2
-
3
- <div class="dialog-widget dialog-lightbox-widget dialog-type-buttons dialog-type-lightbox elementor-templates-modal metform-dynamic-content-modal column-title" id="elementor-template-form-picker-modal-container" style="display: none;">
4
- <div class="dialog-widget-content dialog-lightbox-widget-content">
5
- <div class="dialog-header dialog-lightbox-header">
6
- <div class="elementor-templates-modal__header">
7
- <div class="elementor-templates-modal__header__logo-area">
8
- <div class="elementor-templates-modal__header__logo">
9
- <span class="elementor-templates-modal__header__logo__icon-wrapper">
10
- <i class="eicon-elementor"></i>
11
- </span>
12
- <span class="elementor-templates-modal__header__logo__title"><?php esc_html_e('MetForm', 'metform'); ?></span>
13
- </div>
14
- <a class="metform-form-edit-btn" href="#"><i class="eicon-cog"></i><?php esc_html_e('Form settings', 'metform') ?></a>
15
- <a class="metform-form-update-close-btn" href="#"><?php esc_html_e('Update & Close', 'metform') ?></a>
16
- </div>
17
-
18
- <div class="elementor-templates-modal__header__items-area">
19
- <div class="elementor-templates-modal__header__close elementor-templates-modal__header__close--normal elementor-templates-modal__header__item">
20
- <i class="eicon-close metform-close-editor-modals metform-editor-close" aria-hidden="true" title="<?php echo esc_attr__('Close', 'metform'); ?>"></i>
21
- <span class="elementor-screen-only"><?php esc_html_e('Close', 'metform'); ?></span>
22
- </div>
23
- </div>
24
- </div>
25
- </div>
26
- <div class="dialog-message dialog-lightbox-message">
27
- <div class="dialog-content dialog-lightbox-content" style="display: block;">
28
- <div id="elementor-template-library-templates" data-template-source="remote">
29
-
30
- <div id="elementor-template-library-templates-container">
31
- <iframe id="formpicker-control-iframe"></iframe>
32
- </div>
33
- </div>
34
- </div>
35
- <div class="dialog-loading dialog-lightbox-loading" style="display: block;">
36
- <div id="elementor-template-library-loading">
37
- <div class="elementor-loader-wrapper">
38
- <div class="elementor-loader">
39
- <div class="elementor-loader-boxes">
40
- <div class="elementor-loader-box"></div>
41
- <div class="elementor-loader-box"></div>
42
- <div class="elementor-loader-box"></div>
43
- <div class="elementor-loader-box"></div>
44
- </div>
45
- </div>
46
- <div class="elementor-loading-title"><?php esc_html_e('Loading', 'metform'); ?></div>
47
- </div>
48
- </div>
49
- </div>
50
- </div>
51
- <div class="dialog-buttons-wrapper dialog-lightbox-buttons-wrapper"></div>
52
- </div>
53
  </div>
1
+ <?php defined( 'ABSPATH' ) || exit; ?>
2
+
3
+ <div class="dialog-widget dialog-lightbox-widget dialog-type-buttons dialog-type-lightbox elementor-templates-modal metform-dynamic-content-modal column-title" id="elementor-template-form-picker-modal-container" style="display: none;">
4
+ <div class="dialog-widget-content dialog-lightbox-widget-content">
5
+ <div class="dialog-header dialog-lightbox-header">
6
+ <div class="elementor-templates-modal__header">
7
+ <div class="elementor-templates-modal__header__logo-area">
8
+ <div class="elementor-templates-modal__header__logo">
9
+ <span class="elementor-templates-modal__header__logo__icon-wrapper">
10
+ <i class="eicon-elementor"></i>
11
+ </span>
12
+ <span class="elementor-templates-modal__header__logo__title"><?php esc_html_e('MetForm', 'metform'); ?></span>
13
+ </div>
14
+ <a class="metform-form-edit-btn" href="#"><i class="eicon-cog"></i><?php esc_html_e('Form settings', 'metform') ?></a>
15
+ <a class="metform-form-update-close-btn" href="#"><?php esc_html_e('Update & Close', 'metform') ?></a>
16
+ </div>
17
+
18
+ <div class="elementor-templates-modal__header__items-area">
19
+ <div class="elementor-templates-modal__header__close elementor-templates-modal__header__close--normal elementor-templates-modal__header__item">
20
+ <i class="eicon-close metform-close-editor-modals metform-editor-close" aria-hidden="true" title="<?php echo esc_attr__('Close', 'metform'); ?>"></i>
21
+ <span class="elementor-screen-only"><?php esc_html_e('Close', 'metform'); ?></span>
22
+ </div>
23
+ </div>
24
+ </div>
25
+ </div>
26
+ <div class="dialog-message dialog-lightbox-message">
27
+ <div class="dialog-content dialog-lightbox-content" style="display: block;">
28
+ <div id="elementor-template-library-templates" data-template-source="remote">
29
+
30
+ <div id="elementor-template-library-templates-container">
31
+ <iframe id="formpicker-control-iframe"></iframe>
32
+ </div>
33
+ </div>
34
+ </div>
35
+ <div class="dialog-loading dialog-lightbox-loading" style="display: block;">
36
+ <div id="elementor-template-library-loading">
37
+ <div class="elementor-loader-wrapper">
38
+ <div class="elementor-loader">
39
+ <div class="elementor-loader-boxes">
40
+ <div class="elementor-loader-box"></div>
41
+ <div class="elementor-loader-box"></div>
42
+ <div class="elementor-loader-box"></div>
43
+ <div class="elementor-loader-box"></div>
44
+ </div>
45
+ </div>
46
+ <div class="elementor-loading-title"><?php esc_html_e('Loading', 'metform'); ?></div>
47
+ </div>
48
+ </div>
49
+ </div>
50
+ </div>
51
+ <div class="dialog-buttons-wrapper dialog-lightbox-buttons-wrapper"></div>
52
+ </div>
53
  </div>
controls/form-picker-modal.php CHANGED
@@ -1,96 +1,96 @@
1
- <?php defined('ABSPATH') || exit; ?>
2
-
3
- <div id="metform-open-content-editor" style="display:none;">
4
- <div class="metform-open-content-inner">
5
- <div class="metform-content">
6
- <ul class="metform-content-editor-tab">
7
- <li class="metform-content-editor-tab-item active" data-target="metform-select-form-content">
8
- <label>
9
- <input class="metform-content-editor-radio" name="metform-editor-tab" type="radio" checked value="saved">
10
-
11
- <div class="metform-content-editor-radio-data">
12
- <p><?php esc_html_e('Select Form', 'metform') ?></p>
13
- <span><?php esc_html_e('Select saved form', 'metform') ?></span>
14
- </div>
15
- </label>
16
- </li>
17
-
18
- <li class="metform-content-editor-tab-item" data-target="metform-templates-content">
19
- <label>
20
- <input class="metform-content-editor-radio" name="metform-editor-tab" type="radio" value="template">
21
-
22
- <div class="metform-content-editor-radio-data">
23
- <p><?php esc_html_e('New', 'metform') ?></p>
24
- <span><?php esc_html_e('Create new form', 'metform') ?></span>
25
- </div>
26
- </label>
27
- </li>
28
- </ul>
29
-
30
- <div class="metform-editor-tab-content">
31
- <div class="metform-editor-tab-content-item active" id="metform-select-form-content">
32
- <select name="metform-saved-form" class="metform-open-content-editor-templates metform-editor-input"></select>
33
- </div>
34
- <div class="metform-editor-tab-content-item" id="metform-templates-content">
35
-
36
- <div class="metform-template-input-con">
37
- <input type="text" class="metform-editor-input" placeholder="<?php esc_html_e('Enter a form name', 'metform'); ?>">
38
- </div>
39
-
40
- <ul class="metform-templates-list">
41
- <li>
42
- <label>
43
- <input class="metform-template-radio" name="metform-editor-template" type="radio" value="0" checked>
44
- <div class="metform-template-radio-data"> </div>
45
- </label>
46
- </li>
47
-
48
- <?php foreach(\MetForm\Templates\Base::instance()->get_templates() as $template): ?>
49
- <li class="metform-template-item<?php echo isset($template['package']) ? ' metform-template-item--' . esc_attr($template['package']) : ''; ?> <?php echo (isset($template['package']) && $template['file'] === '') ? ' metform-template-item--go_pro' : ''; ?>">
50
- <label>
51
- <input class="metform-template-radio" name="metform-editor-template" type="radio" value="<?php echo ($template['file'] != '') ? esc_attr($template['id']) : ''; ?>" <?php echo $template['file'] === '' ? 'disabled=disabled' : '' ?>>
52
- <div class="metform-template-radio-data">
53
- <img src="<?php echo esc_url($template['preview-thumb']); ?>" alt="<?php echo esc_attr($template['title']) ?>">
54
-
55
- <?php if(isset($template['package']) && $template['package'] === 'pro') : ?>
56
- <div class="metform-template-radio-data--tag">
57
- <span class="metform-template-radio-data--pro_tag"><?php echo esc_html(ucfirst($template['package'])); ?></span>
58
- </div>
59
- <?php endif; ?>
60
-
61
- <div class="metform-template-footer-content">
62
- <?php if(isset($template['title']) && $template['title'] != '') : ?>
63
- <div class="metform-template-footer-title">
64
- <h2><?php echo esc_html($template['title']); ?></h2>
65
- </div>
66
- <?php endif; ?>
67
-
68
- <div class="metform-template-footer-links">
69
- <?php if(isset($template['package']) && $template['package'] === 'pro' && isset($template['file']) && $template['file'] == '') : ?>
70
- <a target="_blank" href="https://products.wpmet.com/metform/pricing/" class="metform-template-footer-links--pro_tag"><i class="metform-template-footer-links--icon fas fa-external-link-square-alt"></i><?php echo esc_html__('Buy Pro'); ?></a>
71
- <?php endif; ?>
72
-
73
- <?php if(isset($template['demo-url']) && $template['demo-url'] != '') : ?>
74
- <a target="_blank" class="metform-template-footer-links--demo_link" href="<?php echo esc_attr(ucfirst($template['demo-url'])); ?>"><i class="metform-template-footer-links--icon far fa-eye"></i><?php echo esc_html__('Demo', 'metform'); ?></a>
75
- <?php endif; ?>
76
- </div>
77
-
78
- </div>
79
- </div>
80
- </label>
81
- </li>
82
- <?php endforeach; ?>
83
-
84
- </ul>
85
-
86
- </div>
87
- </div>
88
-
89
- <button resturl="<?php echo get_rest_url() ?>metform/v1/forms/" class="metform-open-content-editor-button"><span class="eicon-elementor"></span><?php esc_html_e('Edit form', 'metform') ?></button>
90
-
91
- <span class="metform-close-editor-modals metform-picker-close"><?php esc_html_e('Save & close', 'metform'); ?></span>
92
-
93
- <i class="eicon-close metform-close-editor-modals" aria-hidden="true" title="<?php echo esc_attr__('Close', 'metform'); ?>"></i>
94
- </div>
95
- </div>
96
- </div>
1
+ <?php defined('ABSPATH') || exit; ?>
2
+
3
+ <div id="metform-open-content-editor" style="display:none;">
4
+ <div class="metform-open-content-inner">
5
+ <div class="metform-content">
6
+ <ul class="metform-content-editor-tab">
7
+ <li class="metform-content-editor-tab-item active" data-target="metform-select-form-content">
8
+ <label>
9
+ <input class="metform-content-editor-radio" name="metform-editor-tab" type="radio" checked value="saved">
10
+
11
+ <div class="metform-content-editor-radio-data">
12
+ <p><?php esc_html_e('Select Form', 'metform') ?></p>
13
+ <span><?php esc_html_e('Select saved form', 'metform') ?></span>
14
+ </div>
15
+ </label>
16
+ </li>
17
+
18
+ <li class="metform-content-editor-tab-item" data-target="metform-templates-content">
19
+ <label>
20
+ <input class="metform-content-editor-radio" name="metform-editor-tab" type="radio" value="template">
21
+
22
+ <div class="metform-content-editor-radio-data">
23
+ <p><?php esc_html_e('New', 'metform') ?></p>
24
+ <span><?php esc_html_e('Create new form', 'metform') ?></span>
25
+ </div>
26
+ </label>
27
+ </li>
28
+ </ul>
29
+
30
+ <div class="metform-editor-tab-content">
31
+ <div class="metform-editor-tab-content-item active" id="metform-select-form-content">
32
+ <select name="metform-saved-form" class="metform-open-content-editor-templates metform-editor-input"></select>
33
+ </div>
34
+ <div class="metform-editor-tab-content-item" id="metform-templates-content">
35
+
36
+ <div class="metform-template-input-con">
37
+ <input type="text" class="metform-editor-input" placeholder="<?php esc_html_e('Enter a form name', 'metform'); ?>">
38
+ </div>
39
+
40
+ <ul class="metform-templates-list">
41
+ <li>
42
+ <label>
43
+ <input class="metform-template-radio" name="metform-editor-template" type="radio" value="0" checked>
44
+ <div class="metform-template-radio-data"> </div>
45
+ </label>
46
+ </li>
47
+
48
+ <?php foreach(\MetForm\Templates\Base::instance()->get_templates() as $template): ?>
49
+ <li class="metform-template-item<?php echo isset($template['package']) ? ' metform-template-item--' . esc_attr($template['package']) : ''; ?> <?php echo (isset($template['package']) && $template['file'] === '') ? ' metform-template-item--go_pro' : ''; ?>">
50
+ <label>
51
+ <input class="metform-template-radio" name="metform-editor-template" type="radio" value="<?php echo ($template['file'] != '') ? esc_attr($template['id']) : ''; ?>" <?php echo $template['file'] === '' ? 'disabled=disabled' : '' ?>>
52
+ <div class="metform-template-radio-data">
53
+ <img src="<?php echo esc_url($template['preview-thumb']); ?>" alt="<?php echo esc_attr($template['title']) ?>">
54
+
55
+ <?php if(isset($template['package']) && $template['package'] === 'pro') : ?>
56
+ <div class="metform-template-radio-data--tag">
57
+ <span class="metform-template-radio-data--pro_tag"><?php echo esc_html(ucfirst($template['package'])); ?></span>
58
+ </div>
59
+ <?php endif; ?>
60
+
61
+ <div class="metform-template-footer-content">
62
+ <?php if(isset($template['title']) && $template['title'] != '') : ?>
63
+ <div class="metform-template-footer-title">
64
+ <h2><?php echo esc_html($template['title']); ?></h2>
65
+ </div>
66
+ <?php endif; ?>
67
+
68
+ <div class="metform-template-footer-links">
69
+ <?php if(isset($template['package']) && $template['package'] === 'pro' && isset($template['file']) && $template['file'] == '') : ?>
70
+ <a target="_blank" href="https://products.wpmet.com/metform/pricing/?utm_source=metform&utm_medium=inplugin_campaign&utm_campaign=go_pro" class="metform-template-footer-links--pro_tag"><i class="metform-template-footer-links--icon fas fa-external-link-square-alt"></i><?php echo esc_html__('Buy Pro'); ?></a>
71
+ <?php endif; ?>
72
+
73
+ <?php if(isset($template['demo-url']) && $template['demo-url'] != '') : ?>
74
+ <a target="_blank" class="metform-template-footer-links--demo_link" href="<?php echo esc_attr(ucfirst($template['demo-url'])); ?>"><i class="metform-template-footer-links--icon far fa-eye"></i><?php echo esc_html__('Demo', 'metform'); ?></a>
75
+ <?php endif; ?>
76
+ </div>
77
+
78
+ </div>
79
+ </div>
80
+ </label>
81
+ </li>
82
+ <?php endforeach; ?>
83
+
84
+ </ul>
85
+
86
+ </div>
87
+ </div>
88
+
89
+ <button resturl="<?php echo get_rest_url() ?>metform/v1/forms/" class="metform-open-content-editor-button"><span class="eicon-elementor"></span><?php esc_html_e('Edit form', 'metform') ?></button>
90
+
91
+ <span class="metform-close-editor-modals metform-picker-close"><?php esc_html_e('Save & close', 'metform'); ?></span>
92
+
93
+ <i class="eicon-close metform-close-editor-modals" aria-hidden="true" title="<?php echo esc_attr__('Close', 'metform'); ?>"></i>
94
+ </div>
95
+ </div>
96
+ </div>
controls/form-picker-utils.php CHANGED
@@ -1,53 +1,53 @@
1
- <?php
2
- namespace MetForm\Controls;
3
-
4
- defined( 'ABSPATH' ) || exit;
5
-
6
- class Form_Picker_Utils{
7
-
8
- function init(){
9
- add_action('elementor/editor/after_enqueue_styles', array( $this, 'modal_content' ) );
10
- }
11
-
12
- public function modal_content() {
13
- ?>
14
- <div class="metform_open_content_editor_modal">
15
- <?php include 'form-picker-modal.php'; ?>
16
- <?php include \MetForm\Plugin::instance()->core_dir() . 'forms/views/modal-editor.php'; ?>
17
- </div>
18
- <div class="formpicker_iframe_modal">
19
- <?php include 'form-editor-modal.php'; ?>
20
- </div>
21
- <?php
22
- }
23
-
24
- public static function parse($key, $widget_key){
25
- $extract_key = explode('***', $key);
26
- $extract_key = $extract_key[0];
27
- ob_start(); ?>
28
-
29
- <div class="formpicker_warper formpicker_warper_editable" data-metform-formpicker-key="<?php echo esc_attr($extract_key); ?>" >
30
- <?php if(\Elementor\Plugin::$instance->editor->is_edit_mode() == true) : ?>
31
- <div class="formpicker_warper_edit" data-metform-formpicker-key="<?php echo esc_attr($extract_key); ?>" data-nonce="<?php echo wp_create_nonce('wp_rest');?>" resturl="<?php echo get_rest_url() ?>metform/v1/forms/templates/" >
32
- <i class="metform-builder-edit" aria-hidden="true"></i>
33
- <a href="#" class="elementor-screen-only" title="<?php esc_html_e('Edit Form Content', 'metform'); ?>"><?php esc_html_e('Edit', 'metform'); ?></a>
34
- </div>
35
- <?php endif; ?>
36
-
37
- <div class="elementor-widget-container">
38
- <?php
39
- if($extract_key == ''){
40
- echo esc_html__('No content is added yet.', 'metform');
41
- }else{
42
- echo \MetForm\Utils\Util::render_form_content($extract_key, $widget_key);
43
- }
44
- ?>
45
- </div>
46
- </div>
47
- <?php
48
- $output = ob_get_contents();
49
- ob_end_clean();
50
-
51
- return $output;
52
- }
53
- }
1
+ <?php
2
+ namespace MetForm\Controls;
3
+
4
+ defined( 'ABSPATH' ) || exit;
5
+
6
+ class Form_Picker_Utils{
7
+
8
+ function init(){
9
+ add_action('elementor/editor/after_enqueue_styles', array( $this, 'modal_content' ) );
10
+ }
11
+
12
+ public function modal_content() {
13
+ ?>
14
+ <div class="metform_open_content_editor_modal">
15
+ <?php include 'form-picker-modal.php'; ?>
16
+ <?php include \MetForm\Plugin::instance()->core_dir() . 'forms/views/modal-editor.php'; ?>
17
+ </div>
18
+ <div class="formpicker_iframe_modal">
19
+ <?php include 'form-editor-modal.php'; ?>
20
+ </div>
21
+ <?php
22
+ }
23
+
24
+ public static function parse($key, $widget_key){
25
+ $extract_key = explode('***', $key);
26
+ $extract_key = $extract_key[0];
27
+ ob_start(); ?>
28
+
29
+ <div class="formpicker_warper formpicker_warper_editable" data-metform-formpicker-key="<?php echo esc_attr($extract_key); ?>" >
30
+ <?php if(\Elementor\Plugin::$instance->editor->is_edit_mode() == true) : ?>
31
+ <div class="formpicker_warper_edit" data-metform-formpicker-key="<?php echo esc_attr($extract_key); ?>" data-nonce="<?php echo wp_create_nonce('wp_rest');?>" resturl="<?php echo get_rest_url() ?>metform/v1/forms/templates/" >
32
+ <i class="metform-builder-edit" aria-hidden="true"></i>
33
+ <a href="#" class="elementor-screen-only" title="<?php esc_html_e('Edit Form Content', 'metform'); ?>"><?php esc_html_e('Edit', 'metform'); ?></a>
34
+ </div>
35
+ <?php endif; ?>
36
+
37
+ <div class="elementor-widget-container">
38
+ <?php
39
+ if($extract_key == ''){
40
+ echo esc_html__('No content is added yet.', 'metform');
41
+ }else{
42
+ echo \MetForm\Utils\Util::render_form_content($extract_key, $widget_key);
43
+ }
44
+ ?>
45
+ </div>
46
+ </div>
47
+ <?php
48
+ $output = ob_get_contents();
49
+ ob_end_clean();
50
+
51
+ return $output;
52
+ }
53
+ }
controls/form-picker.php CHANGED
@@ -1,80 +1,80 @@
1
- <?php
2
- namespace MetForm\Controls;
3
-
4
- defined( 'ABSPATH' ) || exit;
5
-
6
- class Form_Picker extends \Elementor\Base_Data_Control {
7
- /**
8
- * Get choose control type.
9
- *
10
- * Retrieve the control type, in this case `choose`.
11
- *
12
- * @since 1.0.0
13
- * @access public
14
- *
15
- * @return string Control type.
16
- */
17
- public function get_type() {
18
- return 'formpicker';
19
- }
20
-
21
- /**
22
- * Enqueue ontrol scripts and styles.
23
- *
24
- * @since 1.0.0
25
- * @access public
26
- */
27
- public function enqueue() {
28
- // styles
29
- wp_register_style( 'metform-css-formpicker-control-inspactor', Base::get_url() . 'assets/css/form-picker-inspactor.css', [], '1.0.0' );
30
- wp_enqueue_style( 'metform-css-formpicker-control-inspactor' );
31
-
32
- // script
33
- wp_register_script( 'metform-js-formpicker-control-inspactor', Base::get_url() . 'assets/js/form-picker-inspactor.js' );
34
- wp_enqueue_script( 'metform-js-formpicker-control-inspactor' );
35
- }
36
-
37
-
38
- /**
39
- * Render choose control output in the editor.
40
- *
41
- * Used to generate the control HTML in the editor using Underscore JS
42
- * template. The variables for the class are available using `data` JS
43
- * object.
44
- *
45
- * @since 1.0.0
46
- * @access public
47
- */
48
- public function content_template() {
49
- $control_uid = $this->get_control_uid();
50
- ?>
51
- <div style="display:none" class="elementor-control-field">
52
- <label for="<?php echo esc_attr($control_uid); ?>" class="elementor-control-title">{{{ data.label }}}</label>
53
- <div class="elementor-control-input-wrapper">
54
- <textarea id="<?php echo $control_uid; ?>" data-setting="{{ data.name }}"></textarea>
55
- </div>
56
- </div>
57
- <!-- <button id="metform-inspactor-edit-button">Edit Form Content</button> -->
58
- <# if ( data.description ) { #>
59
- <div class="elementor-control-field-description">{{{ data.description }}}</div>
60
- <# } #>
61
- <?php
62
- }
63
-
64
- /**
65
- * Get choose control default settings.
66
- *
67
- * Retrieve the default settings of the choose control. Used to return the
68
- * default settings while initializing the choose control.
69
- *
70
- * @since 1.0.0
71
- * @access protected
72
- *
73
- * @return array Control default settings.
74
- */
75
- protected function get_default_settings() {
76
- return [
77
- 'label_block' => true,
78
- ];
79
- }
80
  }
1
+ <?php
2
+ namespace MetForm\Controls;
3
+
4
+ defined( 'ABSPATH' ) || exit;
5
+
6
+ class Form_Picker extends \Elementor\Base_Data_Control {
7
+ /**
8
+ * Get choose control type.
9
+ *
10
+ * Retrieve the control type, in this case `choose`.
11
+ *
12
+ * @since 1.0.0
13
+ * @access public
14
+ *
15
+ * @return string Control type.
16
+ */
17
+ public function get_type() {
18
+ return 'formpicker';
19
+ }
20
+
21
+ /**
22
+ * Enqueue ontrol scripts and styles.
23
+ *
24
+ * @since 1.0.0
25
+ * @access public
26
+ */
27
+ public function enqueue() {
28
+ // styles
29
+ wp_register_style( 'metform-css-formpicker-control-inspactor', Base::get_url() . 'assets/css/form-picker-inspactor.css', [], '1.0.0' );
30
+ wp_enqueue_style( 'metform-css-formpicker-control-inspactor' );
31
+
32
+ // script
33
+ wp_register_script( 'metform-js-formpicker-control-inspactor', Base::get_url() . 'assets/js/form-picker-inspactor.js' );
34
+ wp_enqueue_script( 'metform-js-formpicker-control-inspactor' );
35
+ }
36
+
37
+
38
+ /**
39
+ * Render choose control output in the editor.
40
+ *
41
+ * Used to generate the control HTML in the editor using Underscore JS
42
+ * template. The variables for the class are available using `data` JS
43
+ * object.
44
+ *
45
+ * @since 1.0.0
46
+ * @access public
47
+ */
48
+ public function content_template() {
49
+ $control_uid = $this->get_control_uid();
50
+ ?>
51
+ <div style="display:none" class="elementor-control-field">
52
+ <label for="<?php echo esc_attr($control_uid); ?>" class="elementor-control-title">{{{ data.label }}}</label>
53
+ <div class="elementor-control-input-wrapper">
54
+ <textarea id="<?php echo $control_uid; ?>" data-setting="{{ data.name }}"></textarea>
55
+ </div>
56
+ </div>
57
+ <!-- <button id="metform-inspactor-edit-button">Edit Form Content</button> -->
58
+ <# if ( data.description ) { #>
59
+ <div class="elementor-control-field-description">{{{ data.description }}}</div>
60
+ <# } #>
61
+ <?php
62
+ }
63
+
64
+ /**
65
+ * Get choose control default settings.
66
+ *
67
+ * Retrieve the default settings of the choose control. Used to return the
68
+ * default settings while initializing the choose control.
69
+ *
70
+ * @since 1.0.0
71
+ * @access protected
72
+ *
73
+ * @return array Control default settings.
74
+ */
75
+ protected function get_default_settings() {
76
+ return [
77
+ 'label_block' => true,
78
+ ];
79
+ }
80
  }
core/admin/base.php CHANGED
@@ -1,96 +1,96 @@
1
- <?php
2
- namespace MetForm\Core\Admin;
3
- defined( 'ABSPATH' ) || exit;
4
-
5
- /**
6
- * Metform settings related all functionalities.
7
- *
8
- * @version 1.1.8
9
- */
10
- class Base {
11
- use \MetForm\Traits\Singleton;
12
- private $key_settings_option;
13
-
14
- public function __construct(){
15
- $this->key_settings_option = 'metform_option__settings';
16
- }
17
-
18
- public static function parent_slug(){
19
- return 'metform-menu';
20
- }
21
-
22
- public function init(){
23
- add_action('admin_menu', [$this, 'register_settings'], 999);
24
- add_action('admin_init', [$this, 'register_actions'], 999);
25
- }
26
-
27
- public function register_settings(){
28
- add_submenu_page( self::parent_slug(), esc_html__( 'Settings', 'metform' ), esc_html__( 'Settings', 'metform' ), 'manage_options', self::parent_slug().'-settings', [$this, 'register_settings_contents__settings'], 11);
29
- }
30
-
31
- public function register_settings_contents__settings(){
32
-
33
- $code = '';
34
- $disabledAttr = '';
35
- $selectTheTab= false;
36
-
37
- if(did_action('xpd_metform_pro/plugin_loaded')) {
38
- #must be pro loaded....
39
-
40
- if(!empty($_REQUEST['code'])) {
41
-
42
- $code = $_REQUEST['code'];
43
- $nonce = $_REQUEST['state'];
44
- $option = get_option(\MetForm_Pro\Core\Integrations\Aweber::NONCE_VERIFICATION_KEY);
45
-
46
- if($option == $nonce) {
47
- update_option(\MetForm_Pro\Core\Integrations\Aweber::NONCE_VERIFICATION_KEY, '');
48
- update_option(\MetForm_Pro\Core\Integrations\Aweber::AUTHORIZATION_CODE_KEY, $code);
49
- }
50
-
51
- $disabledAttr = 'disabled';
52
- $selectTheTab = true;
53
-
54
- } else {
55
-
56
- $code = get_option(\MetForm_Pro\Core\Integrations\Aweber::AUTHORIZATION_CODE_KEY);
57
-
58
- $disabledAttr = empty($code)? '': 'disabled';
59
- }
60
- }
61
- #let check if this is returned from aweber..
62
- #give state check
63
-
64
- include('views/settings.php');
65
- }
66
-
67
- public function get_settings_option($key = null , $default = null){
68
- if($key != null){
69
- $this->key_settings_option = $key;
70
- }
71
- return get_option($this->key_settings_option);
72
- }
73
-
74
- public function set_option($key, $default = null){
75
-
76
- }
77
-
78
- public function register_actions(){
79
-
80
- if(isset( $_POST['mf_settings_page_action'])) {
81
- // run a quick security check
82
- //$key = !isset($_POST['metform-settings-page-key']) ? '' : sanitize_text_field($_POST['metform-settings-page-key']);
83
- $request = $_POST;
84
-
85
- if( !check_admin_referer('metform-settings-page', 'metform-settings-page')){
86
- return;
87
- }
88
-
89
- $status = \MetForm\Core\Forms\Action::instance()->store( -1, $request);
90
-
91
- return $status;
92
-
93
- }
94
- }
95
-
96
  }
1
+ <?php
2
+ namespace MetForm\Core\Admin;
3
+ defined( 'ABSPATH' ) || exit;
4
+
5
+ /**
6
+ * Metform settings related all functionalities.
7
+ *
8
+ * @version 1.1.8
9
+ */
10
+ class Base {
11
+ use \MetForm\Traits\Singleton;
12
+ private $key_settings_option;
13
+
14
+ public function __construct(){
15
+ $this->key_settings_option = 'metform_option__settings';
16
+ }
17
+
18
+ public static function parent_slug(){
19
+ return 'metform-menu';
20
+ }
21
+
22
+ public function init(){
23
+ add_action('admin_menu', [$this, 'register_settings'], 999);
24
+ add_action('admin_init', [$this, 'register_actions'], 999);
25
+ }
26
+
27
+ public function register_settings(){
28
+ add_submenu_page( self::parent_slug(), esc_html__( 'Settings', 'metform' ), esc_html__( 'Settings', 'metform' ), 'manage_options', self::parent_slug().'-settings', [$this, 'register_settings_contents__settings'], 11);
29
+ }
30
+
31
+ public function register_settings_contents__settings(){
32
+
33
+ $code = '';
34
+ $disabledAttr = '';
35
+ $selectTheTab= false;
36
+
37
+ if(did_action('xpd_metform_pro/plugin_loaded')) {
38
+ #must be pro loaded....
39
+
40
+ if(!empty($_REQUEST['code'])) {
41
+
42
+ $code = $_REQUEST['code'];
43
+ $nonce = $_REQUEST['state'];
44
+ $option = get_option(\MetForm_Pro\Core\Integrations\Aweber::NONCE_VERIFICATION_KEY);
45
+
46
+ if($option == $nonce) {
47
+ update_option(\MetForm_Pro\Core\Integrations\Aweber::NONCE_VERIFICATION_KEY, '');
48
+ update_option(\MetForm_Pro\Core\Integrations\Aweber::AUTHORIZATION_CODE_KEY, $code);
49
+ }
50
+
51
+ $disabledAttr = 'disabled';
52
+ $selectTheTab = true;
53
+
54
+ } else {
55
+
56
+ $code = get_option(\MetForm_Pro\Core\Integrations\Aweber::AUTHORIZATION_CODE_KEY);
57
+
58
+ $disabledAttr = empty($code)? '': 'disabled';
59
+ }
60
+ }
61
+ #let check if this is returned from aweber..
62
+ #give state check
63
+
64
+ include('views/settings.php');
65
+ }
66
+
67
+ public function get_settings_option($key = null , $default = null){
68
+ if($key != null){
69
+ $this->key_settings_option = $key;
70
+ }
71
+ return get_option($this->key_settings_option);
72
+ }
73
+
74
+ public function set_option($key, $default = null){
75
+
76
+ }
77
+
78
+ public function register_actions(){
79
+
80
+ if(isset( $_POST['mf_settings_page_action'])) {
81
+ // run a quick security check
82
+ //$key = !isset($_POST['metform-settings-page-key']) ? '' : sanitize_text_field($_POST['metform-settings-page-key']);
83
+ $request = $_POST;
84
+
85
+ if( !check_admin_referer('metform-settings-page', 'metform-settings-page')){
86
+ return;
87
+ }
88
+
89
+ $status = \MetForm\Core\Forms\Action::instance()->store( -1, $request);
90
+
91
+ return $status;
92
+
93
+ }
94
+ }
95
+
96
  }
core/admin/views/settings.php CHANGED
@@ -1,903 +1,903 @@
1
- <?php
2
- defined('ABSPATH') || exit;
3
-
4
- $settings = \MetForm\Core\Admin\Base::instance()->get_settings_option();
5
-
6
- ?>
7
- <div class="wrap mf-settings-dashboard">
8
- <div class="attr-row">
9
- <div class="attr-col-lg-3 attr-col-sm-4 mf-setting-sidebar-column">
10
- <div class="mf-setting-sidebar">
11
- <div class="mf_setting_logo">
12
- <img src="<?php echo plugin_dir_url(__FILE__) . '../images/metform_logo.png'; ?>">
13
- </div>
14
- <div class="mf-settings-tab">
15
- <ul class="nav-tab-wrapper">
16
- <li><a href="#" class="mf-setting-nav-link mf-setting-nav-hidden"></a></li>
17
-
18
- <li>
19
- <a href="#mf-dashboard_options" class="mf-setting-nav-link">
20
- <div class="mf-setting-tab-content">
21
- <span class="mf-setting-title"><?php echo esc_html__('Dashboard', 'metform'); ?></span>
22
- <span class="mf-setting-subtitle"><?php echo esc_html__('All dashboard info here', 'metform'); ?></span>
23
- </div>
24
- </a>
25
- </li>
26
-
27
- <li>
28
- <a href="#mf-general_options" class="mf-setting-nav-link">
29
- <div class="mf-setting-tab-content">
30
- <span class="mf-setting-title"><?php echo esc_html__('General', 'metform'); ?></span>
31
- <span class="mf-setting-subtitle"><?php echo esc_html__('All General info here', 'metform'); ?></span>
32
- </div>
33
- </a>
34
- </li>
35
-
36
- <?php if (class_exists('\MetForm_Pro\Core\Integrations\Payment\Paypal') || class_exists('\MetForm_Pro\Core\Integrations\Payment\Stripe')) : ?>
37
- <li>
38
- <a href="#mf-payment_options" class="mf-setting-nav-link">
39
- <div class="mf-setting-tab-content">
40
- <span class="mf-setting-title"><?php echo esc_html__('Payment', 'metform'); ?></span>
41
- <span class="mf-setting-subtitle"><?php echo esc_html__('All payment info here', 'metform'); ?></span>
42
- </div>
43
- </a>
44
- </li>
45
- <?php endif; ?>
46
- <li>
47
- <a href="#mf-newsletter_integration" class="mf-setting-nav-link">
48
- <div class="mf-setting-tab-content">
49
- <span class="mf-setting-title"><?php echo esc_html__('Newsletter Integration', 'metform'); ?></span>
50
- <span class="mf-setting-subtitle"><?php echo esc_html__('All newsletter integration info here', 'metform'); ?></span>
51
- </div>
52
- </a>
53
- </li>
54
-
55
- <?php echo do_action('metform_settings_tab'); ?>
56
-
57
- <li><a href="#" class="mf-setting-nav-link mf-setting-nav-hidden"></a></li>
58
- </ul>
59
- </div>
60
- </div>
61
- </div>
62
-
63
- <div class="attr-col-lg-9 attr-col-sm-8 mf-setting-main-content-column">
64
- <div class="metform-admin-container stuffbox">
65
- <div class="attr-card-body metform-admin-container--body">
66
- <form action="" method="post" class="form-group mf-admin-input-text mf-admin-input-text--metform-license-key">
67
-
68
- <!-- Dashboard Tab -->
69
- <div class="mf-settings-section" id="mf-dashboard_options">
70
- <div class="mf-settings-single-section">
71
- <div class="mf-setting-header">
72
- <h3 class="mf-settings-single-section--title"><span class="mf mf-home"></span><?php esc_html_e('Dashboard', 'metform'); ?></h3>
73
- <button type="submit" name="submit" id="submit" class="mf-admin-setting-btn active"><span class="mf mf-icon-checked-fillpng"></span><?php esc_attr_e('Save Changes', 'metform'); ?></button>
74
- </div>
75
-
76
- <div class="mf-setting-dashboard-banner">
77
- <img src="<?php echo plugin_dir_url(__FILE__) . '../images/banner.png'; ?>" class="mf-admin-dashboard-banner">
78
- </div>
79
-
80
- <div class="mf-set-dash-section">
81
- <div class="mf-setting-dash-section-heading">
82
- <h2 class="mf-setting-dash-section-heading--title">
83
- <?php esc_html_e('Top Notch', 'metform'); ?>
84
- <strong><?php esc_html_e('Features', 'metform'); ?></strong></h2>
85
- <span class="mf-setting-dash-section-heading--subtitle"><?php esc_html_e('features', 'metform'); ?></span>
86
- <div class="mf-setting-dash-section-heading--content">
87
- <p><?php esc_html_e('Get started by spending some time with the documentation to get familiar with ElementsKit.', 'metform') ?>
88
- </p>
89
- </div>
90
- </div> <!-- ./End Section heading -->
91
-
92
- <div class="mf-set-dash-top-notch">
93
- <div class="mf-set-dash-top-notch--item" data-count="01">
94
- <h3 class="mf-set-dash-top-notch--item__title">
95
- <?php esc_html_e('Easy to use', 'metform'); ?></h3>
96
- <p class="mf-set-dash-top-notch--item__desc">
97
- <?php esc_html_e('Get started by spending some time with the documentation to get familiar with MetForm', 'metform'); ?>
98
- </p>
99
- </div>
100
- <div class="mf-set-dash-top-notch--item" data-count="02">
101
- <h3 class="mf-set-dash-top-notch--item__title">
102
- <?php esc_html_e('Moden Typography', 'metform'); ?></h3>
103
- <p class="mf-set-dash-top-notch--item__desc">
104
- <?php esc_html_e('Get started by spending some time with the documentation to get familiar with MetForm', 'metform'); ?>
105
- </p>
106
- </div>
107
- <div class="mf-set-dash-top-notch--item" data-count="03">
108
- <h3 class="mf-set-dash-top-notch--item__title">
109
- <?php esc_html_e('Perfectly Match', 'metform'); ?></h3>
110
- <p class="mf-set-dash-top-notch--item__desc">
111
- <?php esc_html_e('Get started by spending some time with the documentation to get familiar with MetForm', 'metform'); ?>
112
- </p>
113
- </div>
114
- <div class="mf-set-dash-top-notch--item" data-count="04">
115
- <h3 class="mf-set-dash-top-notch--item__title">
116
- <?php esc_html_e('Dynamic Forms', 'metform'); ?></h3>
117
- <p class="mf-set-dash-top-notch--item__desc">
118
- <?php esc_html_e('Get started by spending some time with the documentation to get familiar with MetForm', 'metform'); ?>
119
- </p>
120
- </div>
121
- <div class="mf-set-dash-top-notch--item" data-count="05">
122
- <h3 class="mf-set-dash-top-notch--item__title">
123
- <?php esc_html_e('Create Faster', 'metform'); ?></h3>
124
- <p class="mf-set-dash-top-notch--item__desc">
125
- <?php esc_html_e('Get started by spending some time with the documentation to get familiar with MetForm', 'metform'); ?>
126
- </p>
127
- </div>
128
- <div class="mf-set-dash-top-notch--item" data-count="06">
129
- <h3 class="mf-set-dash-top-notch--item__title">
130
- <?php esc_html_e('Awesome Layout', 'metform'); ?></h3>
131
- <p class="mf-set-dash-top-notch--item__desc">
132
- <?php esc_html_e('Get started by spending some time with the documentation to get familiar with MetForm', 'metform'); ?>
133
- </p>
134
- </div>
135
- </div> <!-- ./End Section heading -->
136
- </div> <!-- setting top notch section -->
137
-
138
- <!-- Dashboard setting free and pro -->
139
- <div id="mf-set-dash-free-pro" class="mf-set-dash-section">
140
- <div class="mf-setting-dash-section-heading">
141
- <h2 class="mf-setting-dash-section-heading--title">
142
- <?php esc_html_e('What included with Free &', 'metform'); ?>
143
- <strong><?php esc_html_e('PRO', 'metform'); ?></strong></h2>
144
- <span class="mf-setting-dash-section-heading--subtitle"><?php esc_html_e('features', 'metform'); ?></span>
145
- <div class="mf-setting-dash-section-heading--content">
146
- <p><?php esc_html_e('Get started by spending some time with the documentation to get familiar with ElementsKit.', 'metform') ?>
147
- </p>
148
- </div>
149
- </div> <!-- ./End Section heading -->
150
-
151
- <div class="mf-set-dash-free-pro-content">
152
- <ul class="attr-nav attr-nav-tabs" id="myTab" role="tablist">
153
- <li class="attr-nav-item attr-active">
154
- <a class="attr-nav-link" data-toggle="tab" href="#mf-set-feature-1"><span class="mf-icon mf mf-document"></span><?php esc_html_e('Easy to use', 'metform'); ?><span class="mf-set-dash-badge"><?php esc_html_e('Pro', 'metform'); ?></span></a>
155
- </li>
156
- <li class="attr-nav-item">
157
- <a class="attr-nav-link" data-toggle="tab" href="#mf-set-feature-2"><span class="mf-icon mf mf-document"></span><?php esc_html_e('Modern Typography', 'metform'); ?><span class="mf-set-dash-badge"><?php esc_html_e('Pro', 'metform'); ?></span></a>
158
- </li>
159
- <li class="attr-nav-item">
160
- <a class="attr-nav-link" id="contact-tab" data-toggle="tab" href="#mf-set-feature-3"><span class="mf-icon mf mf-document"></span><?php esc_html_e('Perfectly Match', 'metform'); ?><span class="mf-set-dash-badge"><?php esc_html_e('Pro', 'metform'); ?></span></a>
161
- </li>
162
- </ul>
163
-
164
- <div class="attr-tab-content" id="myTabContent">
165
- <div class="attr-tab-pane attr-fade attr-active attr-in" id="mf-set-feature-1">
166
- <div class="mf-set-dash-tab-img">
167
- <img src="<?php echo plugin_dir_url(__FILE__) . '../images/feature-preview.png'; ?>" class="">
168
- </div>
169
- <p><?php esc_html_e('Get started by spending some time with the documentation to get familiar with MetForm Get started by spending some time with the documentation to get notification in real time.', 'metform'); ?>
170
- </p>
171
- <ul>
172
- <li><?php esc_html_e('Success Message', 'metform'); ?></li>
173
- <li><?php esc_html_e('Required Login', 'metform'); ?></li>
174
- <li><?php esc_html_e('Hide Form After Submission', 'metform'); ?>
175
- </li>
176
- <li><?php esc_html_e('Store Entries', 'metform'); ?></li>
177
- </ul>
178
-
179
- <a href="#" class="mf-admin-setting-btn medium"><span class="mf mf-icon-checked-fillpng"></span><?php esc_html_e('View Details', 'metform'); ?></a>
180
- </div>
181
- <div class="attr-tab-pane attr-fade" id="mf-set-feature-2">
182
- <div class="mf-set-dash-tab-img">
183
- <img src="<?php echo plugin_dir_url(__FILE__) . '../images/feature-preview.png'; ?>" class="">
184
- </div>
185
- <p><?php esc_html_e('Get started by spending some time with the documentation to get familiar with MetForm Get started by spending some time with the documentation to get notification in real time.', 'metform'); ?>
186
- </p>
187
- <ul>
188
- <li><?php esc_html_e('Success Message', 'metform'); ?></li>
189
- <li><?php esc_html_e('Required Login', 'metform'); ?></li>
190
- <li><?php esc_html_e('Hide Form After Submission', 'metform'); ?>
191
- </li>
192
- <li><?php esc_html_e('Store Entries', 'metform'); ?></li>
193
- </ul>
194
- </div>
195
- <div class="attr-tab-pane attr-fade" id="mf-set-feature-3">
196
- <div class="mf-set-dash-tab-img">
197
- <img src="<?php echo plugin_dir_url(__FILE__) . '../images/feature-preview.png'; ?>" class="">
198
- </div>
199
- <p><?php esc_html_e('Get started by spending some time with the documentation to get familiar with MetForm Get started by spending some time with the documentation to get notification in real time.', 'metform'); ?>
200
- </p>
201
- <ul>
202
- <li><?php esc_html_e('Success Message', 'metform'); ?></li>
203
- <li><?php esc_html_e('Required Login', 'metform'); ?></li>
204
- <li><?php esc_html_e('Hide Form After Submission', 'metform'); ?>
205
- </li>
206
- <li><?php esc_html_e('Store Entries', 'metform'); ?></li>
207
- </ul>
208
- </div>
209
- </div>
210
- </div>
211
- </div> <!-- Dashboard setting free and pro -->
212
-
213
- <!-- Dashboard setting faq -->
214
- <div id="mf-set-dash-faq" class="mf-set-dash-section">
215
- <div class="mf-setting-dash-section-heading">
216
- <h2 class="mf-setting-dash-section-heading--title">
217
- <?php esc_html_e('General Knowledge Base', 'metform'); ?></h2>
218
- <span class="mf-setting-dash-section-heading--subtitle"><?php esc_html_e('FAQ', 'metform'); ?></span>
219
- <div class="mf-setting-dash-section-heading--content">
220
- <p><?php esc_html_e('Get started by spending some time with the documentation to get familiar with ElementsKit.', 'metform') ?>
221
- </p>
222
- </div>
223
- </div> <!-- ./End Section heading -->
224
-
225
- <div class="mf-admin-accordion">
226
- <div class="mf-admin-single-accordion">
227
- <h2 class="mf-admin-single-accordion--heading">
228
- <?php esc_html_e('1. How to create a Invitation Form using MetForm?', 'metform'); ?>
229
- </h2>
230
- <div class="mf-admin-single-accordion--body">
231
- <div class="mf-admin-single-accordion--body__content">
232
- <p><?php esc_html_e('You will get 20+ complete homepages and total 450+ blocks in our layout library and we’re continuously updating the numbers there.', 'metform') ?>
233
- </p>
234
- </div>
235
- </div>
236
- </div>
237
- <div class="mf-admin-single-accordion">
238
- <h2 class="mf-admin-single-accordion--heading">
239
- <?php esc_html_e('2. How to translate language with WPML?', 'metform'); ?>
240
- </h2>
241
- <div class="mf-admin-single-accordion--body">
242
- <div class="mf-admin-single-accordion--body__content">
243
- <p><?php esc_html_e('You will get 20+ complete homepages and total 450+ blocks in our layout library and we’re continuously updating the numbers there.', 'metform') ?>
244
- </p>
245
- </div>
246
- </div>
247
- </div>
248
- <div class="mf-admin-single-accordion">
249
- <h2 class="mf-admin-single-accordion--heading">
250
- <?php esc_html_e('3. How to add custom css in specific section shortcode?', 'metform'); ?>
251
- </h2>
252
- <div class="mf-admin-single-accordion--body">
253
- <div class="mf-admin-single-accordion--body__content">
254
- <p><?php esc_html_e('You will get 20+ complete homepages and total 450+ blocks in our layout library and we’re continuously updating the numbers there.', 'metform') ?>
255
- </p>
256
- </div>
257
- </div>
258
- </div>
259
- </div>
260
-
261
- <a href="#" class="mf-admin-setting-btn fatty active"><span class="mf mf-question"></span><?php esc_html_e('View all faq’s', 'metform'); ?></a>
262
- </div> <!-- Dashboard setting faq -->
263
-
264
- <!-- Dashboard setting rate now -->
265
- <div id="mf-set-dash-rate-now" class="mf-set-dash-section">
266
- <div class="mf-admin-right-content">
267
-
268
- <div class="mf-setting-dash-section-heading">
269
- <h2 class="mf-setting-dash-section-heading--title">
270
- <strong><?php esc_html_e('Satisfied!', 'metform'); ?></strong><br><?php esc_html_e('Don’t forget to rate our item.', 'metform'); ?>
271
- </h2>
272
- <span class="mf-setting-dash-section-heading--subtitle"><?php esc_html_e('review', 'metform'); ?></span>
273
- <div class="mf-setting-dash-section-heading--content">
274
- <p></p>
275
- </div>
276
- </div> <!-- ./End Section heading -->
277
- <div class="mf-admin-right-content--button">
278
- <a target="_blank" href="https://wordpress.org/support/plugin/metform/reviews/?rate=5#new-post" class="mf-admin-setting-btn fatty"><span class="mf mf-star-1"></span><?php esc_html_e('Rate it now', 'elementskit'); ?></a>
279
- </div>
280
- </div>
281
-
282
- <div class="mf-admin-left-thumb">
283
- <img src="<?php echo plugin_dir_url(__FILE__) . '../images/rate-now-thumb.png'; ?>" alt="<?php esc_attr_e('Rate Now Thumb', 'elementskit'); ?>">
284
- </div>
285
- </div>
286
-
287
- </div>
288
- </div>
289
-
290
- <!-- General Tab -->
291
- <div class="mf-settings-section" id="mf-general_options">
292
- <div class="mf-settings-single-section">
293
- <div class="mf-setting-header">
294
- <h3 class="mf-settings-single-section--title"><span class="mf mf-settings"></span><?php esc_html_e('General', 'metform'); ?></h3>
295
- <button type="submit" name="submit" id="submit" class="mf-admin-setting-btn active"><span class="mf mf-icon-checked-fillpng"></span><?php esc_attr_e('Save Changes', 'metform'); ?></button>
296
- </div>
297
- <div class="attr-form-group">
298
- <div class="mf-setting-tab-nav">
299
- <ul class="attr-nav attr-nav-tabs" id="nav-tab" role="attr-tablist">
300
- <li class="attr-active attr-in">
301
- <a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#mf-recaptcha-tab" role="tab"><?php esc_attr_e('reCaptcha', 'metform'); ?></a>
302
- </li>
303
-
304
- <?php if (class_exists('\MetForm_Pro\Base\Package')) : ?>
305
- <li>
306
- <a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#mf-map-tab" role="tab" aria-controls="nav-profile" aria-selected="false"><?php esc_html_e('Map', 'metform'); ?></a>
307
- </li>
308
- <?php endif; ?>
309
-
310
-
311
- </ul>
312
- </div>
313
-
314
- <div class="attr-tab-content" id="nav-tabContent">
315
- <div class="attr-tab-pane attr-fade attr-active attr-in" id="mf-recaptcha-tab" role="tabpanel" aria-labelledby="nav-home-tab">
316
- <div class="attr-row">
317
- <div class="attr-col-lg-6">
318
- <div class="mf-setting-input-group">
319
- <label class="mf-setting-label" for="captcha-method"><?php esc_html_e('Select version:', 'metform'); ?></label>
320
- <div class="mf-setting-select-container">
321
- <select name="mf_recaptcha_version" class="mf-setting-input attr-form-control mf-recaptcha-version" id="captcha-method">
322
- <option <?php echo esc_attr((isset($settings['mf_recaptcha_version']) && ($settings['mf_recaptcha_version'] == 'recaptcha-v2')) ? 'Selected' : ''); ?> value="recaptcha-v2">
323
- <?php esc_html_e('reCAPTCHA V2', 'metform'); ?>
324
- </option>
325
- <option <?php echo esc_attr((isset($settings['mf_recaptcha_version']) && ($settings['mf_recaptcha_version'] == 'recaptcha-v3')) ? 'Selected' : ''); ?> value="recaptcha-v3">
326
- <?php esc_html_e('reCAPTCHA V3', 'metform'); ?>
327
- </option>
328
- </select>
329
- </div>
330
- <p class="description">
331
- <?php esc_html_e('Select google reCaptcha version which one want to use.', 'metform'); ?>
332
- </p>
333
- </div>
334
-
335
- <div class="mf-recaptcha-settings-wrapper">
336
- <div class="mf-recaptcha-settings" id="mf-recaptcha-v2">
337
- <div class="mf-setting-input-group">
338
- <label class="mf-setting-label"><?php esc_html_e('Site key:', 'metform'); ?>
339
- </label>
340
- <input type="text" name="mf_recaptcha_site_key" value="<?php echo esc_attr((isset($settings['mf_recaptcha_site_key'])) ? $settings['mf_recaptcha_site_key'] : ''); ?>" class="mf-setting-input attr-form-control mf-recaptcha-site-key" placeholder="<?php esc_html_e('Insert site key', 'metform'); ?>">
341
- <p class="description">
342
- <?php esc_html_e('Create google reCaptcha site key from reCaptcha admin panel. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://www.google.com/recaptcha/admin/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform'); ?></a>
343
- </p>
344
- </div>
345
- <div class="mf-setting-input-group">
346
- <label class="mf-setting-label"><?php esc_html_e('Secret key:', 'metform'); ?>
347
- </label>
348
- <input type="text" name="mf_recaptcha_secret_key" value="<?php echo esc_attr((isset($settings['mf_recaptcha_secret_key'])) ? $settings['mf_recaptcha_secret_key'] : ''); ?>" class="mf-setting-input attr-form-control mf-recaptcha-secret-key" placeholder="<?php esc_html_e('Insert secret key', 'metform'); ?>">
349
- <p class="description">
350
- <?php esc_html_e('Create google reCaptcha secret key from reCaptcha admin panel. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://www.google.com/recaptcha/admin/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform'); ?></a>
351
- </p>
352
- </div>
353
- </div>
354
-
355
- <div class="mf-recaptcha-settings" id="mf-recaptcha-v3">
356
- <div class="mf-setting-input-group">
357
- <label class="mf-setting-label"><?php esc_html_e('Site key:', 'metform'); ?>
358
- </label>
359
- <input type="text" name="mf_recaptcha_site_key_v3" value="<?php echo esc_attr((isset($settings['mf_recaptcha_site_key_v3'])) ? $settings['mf_recaptcha_site_key_v3'] : ''); ?>" class="mf-setting-input attr-form-control mf-recaptcha-site-key" placeholder="<?php esc_html_e('Insert site key', 'metform'); ?>">
360
- <p class="description">
361
- <?php esc_html_e('Create google reCaptcha site key from reCaptcha admin panel. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://www.google.com/recaptcha/admin/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform'); ?></a>
362
- </p>
363
- </div>
364
- <div class="mf-setting-input-group">
365
- <label class="mf-setting-label"><?php esc_html_e('Secret key:', 'metform'); ?>
366
- </label>
367
- <input type="text" name="mf_recaptcha_secret_key_v3" value="<?php echo esc_attr((isset($settings['mf_recaptcha_secret_key_v3'])) ? $settings['mf_recaptcha_secret_key_v3'] : ''); ?>" class="mf-setting-input attr-form-control mf-recaptcha-secret-key" placeholder="<?php esc_html_e('Insert secret key', 'metform'); ?>">
368
- <p class="description">
369
- <?php esc_html_e('Create google reCaptcha secret key from reCaptcha admin panel. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://www.google.com/recaptcha/admin/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform'); ?></a>
370
- </p>
371
- </div>
372
- </div>
373
- </div>
374
- </div>
375
- </div>
376
- </div>
377
-
378
- <?php if (class_exists('\MetForm_Pro\Base\Package')) : ?>
379
- <div class="attr-tab-pane attr-fade" id="mf-map-tab" role="tabpanel" aria-labelledby="nav-home-tab">
380
- <div class="attr-row">
381
- <div class="attr-col-lg-6">
382
- <div class="mf-setting-input-group">
383
- <label class="mf-setting-label"><?php esc_html_e('API:', 'metform'); ?>
384
- </label>
385
- <input type="text" name="mf_google_map_api_key" value="<?php echo esc_attr((isset($settings['mf_google_map_api_key'])) ? $settings['mf_google_map_api_key'] : ''); ?>" class="mf-setting-input attr-form-control mf-google-map-api-key" placeholder="<?php esc_html_e('Insert map api key', 'metform'); ?>">
386
- <p class="description">
387
- <?php esc_html_e('Create google map api key from google developer console. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://console.cloud.google.com/google/maps-apis/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform'); ?></a>
388
- </p>
389
- </div>
390
- </div>
391
- </div>
392
- </div>
393
- <?php endif; ?>
394
-
395
-
396
-
397
-
398
-
399
-
400
- </div>
401
-
402
-
403
- </div>
404
- </div>
405
-
406
- </div>
407
- <!-- ./End General Tab -->
408
-
409
- <!-- Payment Tab -->
410
- <?php if (class_exists('\MetForm_Pro\Core\Integrations\Payment\Paypal')) : ?>
411
- <div class="mf-settings-section" id="mf-payment_options">
412
- <div class="mf-settings-single-section">
413
-
414
- <div class="mf-setting-header">
415
- <h3 class="mf-settings-single-section--title"><span class="mf mf-settings"></span><?php esc_html_e('Payment', 'metform'); ?></h3>
416
- <button type="submit" name="submit" id="submit" class="mf-admin-setting-btn active"><span class="mf mf-icon-checked-fillpng"></span><?php esc_attr_e('Save Changes', 'metform'); ?></button>
417
- </div>
418
-
419
- <div class="mf-setting-tab-nav">
420
- <ul class="attr-nav attr-nav-tabs" id="nav-tab" role="attr-tablist">
421
- <li class="attr-active attr-in">
422
- <a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#mf-paypal-tab" role="tab"><?php esc_attr_e('Paypal', 'metform'); ?></a>
423
- </li>
424
-
425
- <?php if (class_exists('\MetForm_Pro\Core\Integrations\Payment\Stripe')) : ?>
426
- <li>
427
- <a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#attr-stripe-tab" role="tab" aria-controls="nav-profile" aria-selected="false"><?php esc_html_e('Stripe', 'metform'); ?></a>
428
- </li>
429
- <?php endif; ?>
430
-
431
- <li>
432
- <a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#mf-thankyou-tab" role="tab"><?php esc_attr_e('Tankyou Page', 'metform'); ?></a>
433
- </li>
434
- </ul>
435
- </div>
436
-
437
- <div class="attr-form-group">
438
- <div class="attr-tab-content" id="nav-tabContent">
439
- <div class="attr-tab-pane attr-fade attr-active attr-in" id="mf-paypal-tab" role="tabpanel" aria-labelledby="nav-home-tab">
440
- <div class="attr-row">
441
- <div class="attr-col-lg-6">
442
- <div class="mf-setting-input-group">
443
- <label class="mf-setting-label"><?php esc_html_e('Paypal email:', 'metform'); ?></label>
444
- <input type="email" name="mf_paypal_email" value="<?php echo esc_attr((isset($settings['mf_paypal_email'])) ? $settings['mf_paypal_email'] : ''); ?>" class="mf-setting-input mf-paypal-email attr-form-control" placeholder="<?php esc_html_e('Paypal email', 'metform'); ?>">
445
- <p class="description">
446
- <?php esc_html_e('Enter here your paypal email. ', 'metform'); ?><a class="mf-setting-btn-link" target="__blank" href="<?php echo esc_url('https://www.paypal.com/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform'); ?></a>
447
- </p>
448
- </div>
449
-
450
- <div class="mf-setting-input-group">
451
- <label class="mf-setting-label"><?php esc_html_e('Paypal token:', 'metform'); ?></label>
452
- <input type="text" name="mf_paypal_token" value="<?php echo esc_attr((isset($settings['mf_paypal_token'])) ? $settings['mf_paypal_token'] : ''); ?>" class="mf-setting-input mf-paypal-token attr-form-control" placeholder="<?php esc_html_e('Paypal token', 'metform'); ?>">
453
- <p class="description">
454
- <?php esc_html_e('Enter here your paypal token. This is optional. ', 'metform'); ?><a class="mf-setting-btn-link" target="__blank" href="<?php echo esc_url('https://www.paypal.com/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform'); ?></a>
455
- </p>
456
- </div>
457
-
458
- <div class="mf-setting-input-group">
459
- <label class="mf-setting-label"><?php esc_html_e('Enable sandbox mode:', 'metform'); ?>
460
- <input type="checkbox" value="1" name="mf_paypal_sandbox" <?php echo esc_attr((isset($settings['mf_paypal_sandbox'])) ? 'Checked' : ''); ?> class="mf-admin-control-input mf-form-modalinput-paypal_sandbox">
461
- <p class="description">
462
- <?php esc_html_e('Enable this for testing payment method. ', 'metform'); ?>
463
- </p>
464
- </label>
465
- </div>
466
- </div>
467
- </div>
468
- </div>
469
-
470
- <?php if (class_exists('\MetForm_Pro\Core\Integrations\Payment\Stripe')) : ?>
471
- <div class="attr-tab-pane attr-fade" id="attr-stripe-tab" role="tabpanel" aria-labelledby="nav-profile-tab">
472
- <div class="attr-row">
473
- <div class="attr-col-lg-6">
474
- <div class="mf-setting-input-group">
475
- <label for="attr-input-label" class="mf-setting-label attr-input-label"><?php esc_html_e('Image url:', 'metform'); ?></label>
476
- <input type="text" name="mf_stripe_image_url" value="<?php echo esc_attr((isset($settings['mf_stripe_image_url'])) ? $settings['mf_stripe_image_url'] : ''); ?>" class="mf-setting-input mf-stripe-image-url attr-form-control" placeholder="<?php esc_html_e('Stripe image url', 'metform'); ?>">
477
- <p class="description">
478
- <?php esc_html_e('Enter here your stripe image url. This image will show on stripe payment pop up modal. ', 'metform'); ?>
479
- </p>
480
- </div>
481
-
482
- <div class="mf-setting-input-group">
483
- <label for="attr-input-label" class="mf-setting-label attr-input-label"><?php esc_html_e('Live publishiable key:', 'metform'); ?></label>
484
- <input type="text" name="mf_stripe_live_publishiable_key" value="<?php echo esc_attr((isset($settings['mf_stripe_live_publishiable_key'])) ? $settings['mf_stripe_live_publishiable_key'] : ''); ?>" class="mf-setting-input mf-stripe-live-publishiable-key attr-form-control" placeholder="<?php esc_html_e('Stripe live publishiable key', 'metform'); ?>">
485
- <p class="description">
486
- <?php esc_html_e('Enter here your stripe live publishiable key. ', 'metform'); ?><a class="mf-setting-btn-link" target="__blank" href="<?php echo esc_url('https://stripe.com/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform'); ?></a>
487
- </p>
488
- </div>
489
-
490
- <div class="mf-setting-input-group">
491
- <label for="attr-input-label" class="mf-setting-label attr-input-label"><?php esc_html_e('Live secret key:', 'metform'); ?></label>
492
- <input type="text" name="mf_stripe_live_secret_key" value="<?php echo esc_attr((isset($settings['mf_stripe_live_secret_key'])) ? $settings['mf_stripe_live_secret_key'] : ''); ?>" class="mf-setting-input mf-stripe-live-secret-key attr-form-control" placeholder="<?php esc_html_e('Stripe live secret key', 'metform'); ?>">
493
- <p class="description">
494
- <?php esc_html_e('Enter here your stripe live secret key. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://stripe.com/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform'); ?></a>
495
- </p>
496
- </div>
497
-
498
- <div class="mf-setting-input-group">
499
- <label class="mf-setting-label attr-input-label">
500
- <?php esc_html_e('Enable sandbox mode:', 'metform'); ?>
501
- <input type="checkbox" value="1" name="mf_stripe_sandbox" <?php echo esc_attr((isset($settings['mf_stripe_sandbox'])) ? 'Checked' : ''); ?> class="mf-admin-control-input mf-form-modalinput-stripe_sandbox">
502
- <p class="description">
503
- <?php esc_html_e('Enable this for testing your payment system. ', 'metform'); ?>
504
- </p>
505
- </label>
506
- </div>
507
-
508
- <div class="mf-form-modalinput-stripe_sandbox_keys">
509
- <div class="mf-setting-input-group">
510
- <label for="attr-input-label" class="mf-setting-label attr-input-label"><?php esc_html_e('Test publishiable key:', 'metform'); ?></label>
511
- <input type="text" name="mf_stripe_test_publishiable_key" value="<?php echo esc_attr((isset($settings['mf_stripe_test_publishiable_key'])) ? $settings['mf_stripe_test_publishiable_key'] : ''); ?>" class="mf-setting-input mf-stripe-test-publishiable-key attr-form-control" placeholder="<?php esc_html_e('Stripe test publishiable key', 'metform'); ?>">
512
- <p class="description">
513
- <?php esc_html_e('Enter here your test publishiable key. ', 'metform'); ?><a class="mf-setting-btn-link" target="__blank" href="<?php echo esc_url('https://stripe.com/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform'); ?></a>
514
- </p>
515
- </div>
516
- <div class="mf-setting-input-group">
517
- <label for="attr-input-label" class="mf-setting-label attr-input-label"><?php esc_html_e('Test secret key:', 'metform'); ?></label>
518
- <input type="text" name="mf_stripe_test_secret_key" value="<?php echo esc_attr((isset($settings['mf_stripe_test_secret_key'])) ? $settings['mf_stripe_test_secret_key'] : ''); ?>" class="mf-setting-input mf-stripe-test-secret-key attr-form-control" placeholder="<?php esc_html_e('Stripe test secret key', 'metform'); ?>">
519
- <p class="description">
520
- <?php esc_html_e('Enter here your test secret key. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://stripe.com/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform'); ?></a>
521
- </p>
522
- </div>
523
- </div>
524
-
525
- </div>
526
- </div>
527
- </div>
528
- <?php endif; ?>
529
-
530
- <!-- Thank you page section -->
531
-
532
- <div class="attr-tab-pane attr-fade" id="mf-thankyou-tab" role="tabpanel" aria-labelledby="nav-home-tab">
533
- <div class="attr-row">
534
- <div class="attr-col-lg-6">
535
- <div class="mf-setting-input-group">
536
- <h3>Select Thankyou Page :</h3>
537
- <?php $page_ids = get_all_page_ids(); ?>
538
- <select name="mf_thank_you_page" class="mf-setting-input attr-form-control">
539
- <?php foreach ($page_ids as $page) : ?>
540
- <option <?php
541
- if(isset($settings['mf_thank_you_page'])){
542
- if ($settings['mf_thank_you_page'] == $page) {
543
- echo 'selected';
544
- }
545
-
546
- }
547
-
548
- ?> value="<?php echo $page; ?>"> <?php echo get_the_title($page); ?>
549
- <?php endforeach; ?>
550
-
551
-
552
- </select>
553
- <br><br>
554
- <p>Handle both payment successfull and cancel redirection page. Learn more about Thank you page <a href="https://help.wpmet.com/docs/thank-you-page/" target="_blank">Here</a></p>
555
- <a class="mf-setting-btn-link" href="<?php echo get_admin_url() . 'post-new.php?post_type=page'; ?>">Create Thankyou Page</a>
556
- </div>
557
- </div>
558
- </div>
559
- </div>
560
-
561
- </div>
562
- </div>
563
-
564
-
565
- </div>
566
-
567
- </div>
568
- <?php endif; ?>
569
-
570
- <!-- ./End Payment Tab -->
571
-
572
- <!-- newsletter Integration Tab -->
573
- <div class="mf-settings-section" id="mf-newsletter_integration">
574
- <div class="mf-settings-single-section">
575
- <?php if (class_exists('\MetForm\Core\Integrations\Mail_Chimp')) : ?>
576
- <div class="mf-setting-header">
577
- <h3 class="mf-settings-single-section--title"><span class="mf mf-settings"></span><?php esc_html_e('Newsletter Integration', 'metform'); ?>
578
- </h3>
579
- <button type="submit" name="submit" id="submit" class="mf-admin-setting-btn active"><span class="mf mf-icon-checked-fillpng"></span><?php esc_attr_e('Save Changes', 'metform'); ?></button>
580
- </div>
581
-
582
-
583
- <div class="mf-setting-tab-nav">
584
- <ul class="attr-nav attr-nav-tabs" id="nav-tab" role="attr-tablist">
585
- <li class="attr-active attr-in">
586
- <a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#mf-mailchimp-tab" role="tab"><?php esc_attr_e('MailChimp', 'metform'); ?></a>
587
- </li>
588
-
589
- <?php if (did_action('xpd_metform_pro/plugin_loaded')) : ?>
590
- <li>
591
- <a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#attr-aweber-tab" role="tab" aria-controls="nav-profile" aria-selected="false"><?php esc_html_e('Aweber', 'metform'); ?></a>
592
- </li>
593
-
594
- <li>
595
- <a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#attr-activeCampaign-tab" role="tab" aria-controls="nav-contact" aria-selected="false"><?php esc_html_e('ActiveCampaign', 'metform'); ?></a>
596
- </li>
597
-
598
- <li>
599
- <a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#attr-getresponse-tab" role="tab" aria-controls="nav-contact" aria-selected="false"><?php esc_html_e('Get Response', 'metform'); ?></a>
600
- </li>
601
-
602
- <li>
603
- <a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#attr-ckit-tab" role="tab" aria-controls="nav-profile" aria-selected="false"><?php esc_html_e('ConvertKit', 'metform'); ?></a>
604
- </li>
605
-
606
- <?php endif; ?>
607
- </ul>
608
- </div>
609
- <div class="attr-form-group">
610
- <div class="attr-tab-content" id="nav-tabContent">
611
- <div class="attr-tab-pane attr-fade attr-active attr-in" id="mf-mailchimp-tab" role="tabpanel" aria-labelledby="nav-home-tab">
612
-
613
- <div class="attr-row">
614
- <div class="attr-col-lg-6">
615
- <div class="mf-setting-input-group">
616
- <label for="attr-input-label" class="mf-setting-label mf-setting-label attr-input-label"><?php esc_html_e('API Key:', 'metform'); ?></label>
617
- <input type="text" name="mf_mailchimp_api_key" value="<?php echo esc_attr((isset($settings['mf_mailchimp_api_key'])) ? $settings['mf_mailchimp_api_key'] : ''); ?>" class="mf-setting-input mf-mailchimp-api-key attr-form-control" placeholder="<?php esc_html_e('Mailchimp api key', 'metform'); ?>">
618
- <p class="description">
619
- <?php esc_html_e('Enter here your Mailchimp api key. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://admin.mailchimp.com/'); ?>"><?php esc_html_e('Get API.', 'metform'); ?></a>
620
- </p>
621
- </div>
622
- </div>
623
-
624
- <div class="attr-col-lg-6">
625
- <div class="mf-setting-input-desc">
626
- <div class="mf-setting-input-desc-data">
627
- <h2 class="mf-setting-input-desc--title">
628
- <?php esc_html_e('How To', 'metfrom') ?></h2>
629
- <p><?php esc_html_e('Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.', 'metform') ?>
630
- </p>
631
- <ol>
632
- <li><?php esc_html_e('Item 1', 'metform') ?></li>
633
- <li><?php esc_html_e('Item 2', 'metform') ?></li>
634
- <li><?php esc_html_e('Item 3', 'metform') ?></li>
635
- </ol>
636
- </div>
637
- <a href="https://help.wpmet.com/docs-cat/metform/" class="mf-setting-btn-link" target="_blank"><?php esc_html_e('View Documentation', 'metform'); ?></a>
638
- </div>
639
- </div>
640
- </div>
641
- </div>
642
-
643
- <?php if (did_action('xpd_metform_pro/plugin_loaded')) : ?>
644
-
645
- <div class="attr-tab-pane attr-fade" id="attr-aweber-tab" role="tabpanel" aria-labelledby="nav-profile-tab">
646
- <div class="attr-row">
647
- <div class="attr-col-lg-6">
648
-
649
- <div class="mf-setting-input-group">
650
- <label for="attr-input-label" class="mf-setting-label mf-setting-label attr-input-label"><?php esc_html_e('Developer App ID:', 'metform'); ?></label>
651
- <input type="text" <?php echo $disabledAttr; ?> name="mf_aweber_dev_api_key" id="mf_aweber_dev_api_key" value="<?php echo esc_attr((isset($settings['mf_aweber_dev_api_key'])) ? $settings['mf_aweber_dev_api_key'] : ''); ?>" class="mf-setting-input mf-mailchimp-api-key attr-form-control" placeholder="<?php esc_html_e('Aweber developer clientId key', 'metform'); ?>">
652
- <p class="description">
653
- <?php esc_html_e('Enter here your Aweber developer app key. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://labs.aweber.com/apps/'); ?>"><?php esc_html_e('Get API.', 'metform'); ?></a>
654
- </p>
655
- </div>
656
-
657
- <div class="mf-setting-input-group">
658
- <label for="attr-input-label" class="mf-setting-label mf-setting-label attr-input-label"><?php esc_html_e('Developer App Secret:', 'metform'); ?></label>
659
- <input type="text" <?php echo $disabledAttr; ?> id="mf_aweber_dev_api_sec" name="mf_aweber_dev_api_sec" value="<?php echo esc_attr((isset($settings['mf_aweber_dev_api_sec'])) ? $settings['mf_aweber_dev_api_sec'] : ''); ?>" class="mf-setting-input mf-mailchimp-api-key attr-form-control" placeholder="<?php esc_html_e('Aweber developer secret key', 'metform'); ?>">
660
- <p class="description">
661
- <?php esc_html_e('Enter here your Aweber developer secret key. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://labs.aweber.com/apps/'); ?>"><?php esc_html_e('Get API.', 'metform'); ?></a>
662
- </p>
663
- </div>
664
-
665
- <div class="mf-setting-input-group">
666
- <label for="attr-input-label" class="mf-setting-label mf-setting-label attr-input-label"><?php echo __('Redirect url:', 'metform'); ?></label>
667
- <p class="description">
668
- <?php echo get_admin_url() . 'admin.php?page=metform-menu-settings'; ?>
669
- </p>
670
- </div>
671
-
672
- <?php if (!empty($code)) : ?>
673
- <div class="mf-setting-input-group">
674
- <p class="description">
675
- <a id="met_pro_aweber_propmpt_re_auth" class="button-primary mf-setting-btn"> Re Authorize </a>
676
- </p>
677
- </div>
678
- <?php else : ?>
679
- <div class="mf-setting-input-group">
680
-
681
- <p class="description">
682
- <button class="mf-setting-btn-link" id="met_pro_aweber_authorize"> Get Authorization URL
683
- </button>
684
- </p>
685
- </div>
686
- <?php endif; ?>
687
-
688
- </div>
689
- <div class="attr-col-lg-6">
690
- <div class="mf-setting-input-desc">
691
- <div class="mf-setting-input-desc-data">
692
- <h2 class="mf-setting-input-desc--title">
693
- <?php esc_html_e('How To', 'metfrom') ?></h2>
694
- <p><?php esc_html_e('Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.', 'metform') ?>
695
- </p>
696
- <ol>
697
- <li><?php esc_html_e('Item 1', 'metform') ?></li>
698
- <li><?php esc_html_e('Item 2', 'metform') ?></li>
699
- <li><?php esc_html_e('Item 3', 'metform') ?></li>
700
- </ol>
701
- </div>
702
- <a href="https://help.wpmet.com/docs-cat/metform/" class="mf-setting-btn-link" target="_blank"><?php esc_html_e('View Documentation', 'metform'); ?></a>
703
- </div>
704
- </div>
705
-
706
- </div>
707
- </div>
708
-
709
- <div class="attr-tab-pane attr-fade" id="attr-ckit-tab" role="tabpanel" aria-labelledby="nav-contact-tab">
710
- <div class="attr-row">
711
- <div class="attr-col-lg-6">
712
- <div class="mf-setting-input-group">
713
- <label for="attr-input-label" class="mf-setting-label mf-setting-label attr-input-label"><?php esc_html_e('API Key:', 'metform'); ?></label>
714
- <input type="text" name="mf_ckit_api_key" value="<?php echo esc_attr((isset($settings['mf_ckit_api_key'])) ? $settings['mf_ckit_api_key'] : ''); ?>" class="mf-setting-input mf-mailchimp-api-key attr-form-control" placeholder="<?php esc_html_e('ConvertKit api key', 'metform'); ?>">
715
- <p class="description">
716
- <?php esc_html_e('Enter here your ConvertKit api key. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://app.convertkit.com/users/login'); ?>"><?php esc_html_e('Get API.', 'metform'); ?></a>
717
- </p>
718
- </div>
719
-
720
-
721
- <div class="mf-setting-input-group">
722
- <label for="attr-input-label" class="mf-setting-label mf-setting-label attr-input-label"><?php esc_html_e('Secret Key:', 'metform'); ?></label>
723
- <input type="text" name="mf_ckit_sec_key" value="<?php echo esc_attr((isset($settings['mf_ckit_sec_key'])) ? $settings['mf_ckit_sec_key'] : ''); ?>" class="mf-setting-input mf-mailchimp-api-key attr-form-control" placeholder="<?php esc_html_e('ConvertKit api key', 'metform'); ?>">
724
- <p class="description">
725
- <?php esc_html_e('Enter here your ConvertKit api key. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://app.convertkit.com/users/login'); ?>"><?php esc_html_e('Get API.', 'metform'); ?></a>
726
- </p>
727
- </div>
728
-
729
-
730
- </div>
731
- <div class="attr-col-lg-6">
732
- <div class="mf-setting-input-desc">
733
- <div class="mf-setting-input-desc-data">
734
- <h2 class="mf-setting-input-desc--title">
735
- <?php esc_html_e('How To', 'metfrom') ?></h2>
736
- <p><?php esc_html_e('Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.', 'metform') ?>
737
- </p>
738
- <ol>
739
- <li><?php esc_html_e('Item 1', 'metform') ?></li>
740
- <li><?php esc_html_e('Item 2', 'metform') ?></li>
741
- <li><?php esc_html_e('Item 3', 'metform') ?></li>
742
- </ol>
743
- </div>
744
- <a href="https://help.wpmet.com/docs-cat/metform/" class="mf-setting-btn-link" target="_blank"><?php esc_html_e('View Documentation', 'metform'); ?></a>
745
- </div>
746
- </div>
747
- </div>
748
- </div>
749
-
750
- <?php endif; ?>
751
-
752
- <div class="attr-tab-pane attr-fade" id="attr-activeCampaign-tab" role="tabpanel" aria-labelledby="nav-contact-tab">
753
- <div class="attr-row">
754
- <?php if (class_exists('\MetForm_Pro\Core\Integrations\Email\Activecampaign\Active_Campaign')) : ?>
755
- <div class="attr-col-lg-6">
756
- <div class="mf-setting-input-group">
757
- <label for="attr-input-label" class="mf-setting-label mf-setting-label attr-input-label"><?php esc_html_e('API URL:', 'metform'); ?></label>
758
- <input type="text" name="mf_active_campaign_url" value="<?php echo esc_attr((isset($settings['mf_active_campaign_url'])) ? $settings['mf_active_campaign_url'] : ''); ?>" class="mf-setting-input mf-mailchimp-api-key attr-form-control" placeholder="<?php esc_html_e('ActiveCampaign API URL', 'metform'); ?>">
759
- <p class="description">
760
- <?php esc_html_e('Enter here your ActiveCampaign api key. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://www.activecampaign.com/'); ?>"><?php esc_html_e('Get API.', 'metform'); ?></a>
761
- </p>
762
- </div>
763
-
764
- <div class="mf-setting-input-group">
765
- <label for="attr-input-label" class="mf-setting-label mf-setting-label attr-input-label"><?php esc_html_e('API Key:', 'metform'); ?></label>
766
- <input type="text" name="mf_active_campaign_api_key" value="<?php echo esc_attr((isset($settings['mf_active_campaign_api_key'])) ? $settings['mf_active_campaign_api_key'] : ''); ?>" class="mf-setting-input mf-mailchimp-api-key attr-form-control" placeholder="<?php esc_html_e('ActiveCampaign api key', 'metform'); ?>">
767
- <p class="description">
768
- <?php esc_html_e('Enter here your ActiveCampaign api key. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://www.activecampaign.com/'); ?>"><?php esc_html_e('Get API.', 'metform'); ?></a>
769
- </p>
770
- </div>
771
- </div>
772
- <div class="attr-col-lg-6">
773
- <div class="mf-setting-input-desc">
774
- <div class="mf-setting-input-desc-data">
775
- <h2 class="mf-setting-input-desc--title">
776
- <?php esc_html_e('How To', 'metfrom') ?></h2>
777
- <p><?php esc_html_e('Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.', 'metform') ?>
778
- </p>
779
- <ol>
780
- <li><?php esc_html_e('Item 1', 'metform') ?></li>
781
- <li><?php esc_html_e('Item 2', 'metform') ?></li>
782
- <li><?php esc_html_e('Item 3', 'metform') ?></li>
783
- </ol>
784
- </div>
785
- <a href="https://help.wpmet.com/docs-cat/metform/" class="mf-setting-btn-link" target="_blank"><?php esc_html_e('View Documentation', 'metform'); ?></a>
786
- </div>
787
- </div>
788
-
789
- <?php else : ?>
790
- <div class="attr-col-lg-6">
791
- <div class="mf-setting-input-group">
792
- <label for="attr-input-label" class="mf-setting-label mf-setting-label attr-input-label"><?php esc_html_e('API Key:', 'metform'); ?></label>
793
- <input type="text" disabled name="mf_activecampaign_api_key_field" value="" class="mf-setting-input mf-mailchimp-api-key attr-form-control" placeholder="<?php esc_html_e('ActiveCampaign api key', 'metform'); ?>">
794
- <p class="description">
795
- <?php esc_html_e('Enter here your ActiveCampaign api key. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://admin.mailchimp.com/'); ?>"><?php esc_html_e('Get API.', 'metform'); ?></a>
796
- </p>
797
- </div>
798
- </div>
799
- <div class="attr-col-lg-6">
800
- <div class="mf-setting-input-desc">
801
- <div class="mf-setting-input-desc-data">
802
- <h2 class="mf-setting-input-desc--title">
803
- <?php esc_html_e('How To', 'metfrom') ?></h2>
804
- <p><?php esc_html_e('Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.', 'metform') ?>
805
- </p>
806
- <ol>
807
- <li><?php esc_html_e('Item 1', 'metform') ?></li>
808
- <li><?php esc_html_e('Item 2', 'metform') ?></li>
809
- <li><?php esc_html_e('Item 3', 'metform') ?></li>
810
- </ol>
811
- </div>
812
- <a href="https://help.wpmet.com/docs-cat/metform/" class="mf-setting-btn-link" target="_blank"><?php esc_html_e('View Documentation', 'metform'); ?></a>
813
- </div>
814
- </div>
815
- <?php endif; ?>
816
- </div>
817
- </div>
818
-
819
- <div class="attr-tab-pane attr-fade" id="attr-getresponse-tab" role="tabpanel" aria-labelledby="nav-contact-tab">
820
- <div class="attr-row">
821
-
822
- <?php if (class_exists('\MetForm_Pro\Core\Integrations\Email\Getresponse\Get_Response')) : ?>
823
- <div class="attr-col-lg-6">
824
- <div class="mf-setting-input-group">
825
- <div class="attr-form-group">
826
- <label for="attr-input-label" class="mf-setting-label mf-setting-label attr-input-label"><?php esc_html_e('GetResponse API Key:', 'metform'); ?></label>
827
- <input type="text" name="mf_get_reponse_api_key" value="<?php echo esc_attr((isset($settings['mf_get_reponse_api_key'])) ? $settings['mf_get_reponse_api_key'] : ''); ?>" class="mf-setting-input mf-mailchimp-api-key attr-form-control" placeholder="<?php esc_html_e('GetResponse api key', 'metform'); ?>">
828
-
829
- </div>
830
- </div>
831
- </div>
832
- <div class="attr-col-lg-6">
833
- <div class="mf-setting-input-desc">
834
- <div class="mf-setting-input-desc-data">
835
- <h2 class="mf-setting-input-desc--title">
836
- <?php esc_html_e('How To', 'metfrom') ?></h2>
837
- <p><?php esc_html_e('Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.', 'metform') ?>
838
- </p>
839
- <ol>
840
- <li><?php esc_html_e('Item 1', 'metform') ?></li>
841
- <li><?php esc_html_e('Item 2', 'metform') ?></li>
842
- <li><?php esc_html_e('Item 3', 'metform') ?></li>
843
- </ol>
844
- </div>
845
- <a href="https://help.wpmet.com/docs-cat/metform/" class="mf-setting-btn-link" target="_blank"><?php esc_html_e('View Documentation', 'metform'); ?></a>
846
- </div>
847
- </div>
848
-
849
- <?php else : ?>
850
- <div class="attr-col-lg-6">
851
- <div class="mf-setting-input-group">
852
- <div class="attr-form-group">
853
- <label for="attr-input-label" class="mf-setting-label mf-setting-label attr-input-label"><?php esc_html_e('GetResponse API Key:', 'metform'); ?></label>
854
- <input type="text" name="mf_getreponse_api_key_field" value="" disabled class="mf-setting-input mf-mailchimp-api-key attr-form-control" placeholder="<?php esc_html_e('GetResponse api key', 'metform'); ?>">
855
-
856
- </div>
857
- </div>
858
- </div>
859
- <div class="attr-col-lg-6">
860
- <div class="mf-setting-input-desc">
861
- <div class="mf-setting-input-desc-data">
862
- <h2 class="mf-setting-input-desc--title">
863
- <?php esc_html_e('How To', 'metfrom') ?></h2>
864
- <p><?php esc_html_e('Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.', 'metform') ?>
865
- </p>
866
- <ol>
867
- <li><?php esc_html_e('Item 1', 'metform') ?></li>
868
- <li><?php esc_html_e('Item 2', 'metform') ?></li>
869
- <li><?php esc_html_e('Item 3', 'metform') ?></li>
870
- </ol>
871
- </div>
872
- <a href="https://help.wpmet.com/docs-cat/metform/" class="mf-setting-btn-link" target="_blank"><?php esc_html_e('View Documentation', 'metform'); ?></a>
873
- </div>
874
- </div>
875
-
876
- <?php endif; ?>
877
-
878
- </div>
879
- </div>
880
-
881
-
882
- </div>
883
- </div>
884
- <!-- <hr class="mf-setting-separator"> -->
885
- <?php endif; ?>
886
- </div>
887
- </div>
888
- <!-- ./End Mail Integration Tab -->
889
-
890
- <!-- Integrations settings action -->
891
-
892
- <?php echo do_action('metform_settings_content'); ?>
893
-
894
- <!-- Integrations settings action end -->
895
-
896
- <input type="hidden" name="mf_settings_page_action" value="save">
897
- <?php wp_nonce_field('metform-settings-page', 'metform-settings-page'); ?>
898
- </form>
899
- </div>
900
- </div>
901
- </div>
902
- </div>
903
- </div>
1
+ <?php
2
+ defined('ABSPATH') || exit;
3
+
4
+ $settings = \MetForm\Core\Admin\Base::instance()->get_settings_option();
5
+
6
+ ?>
7
+ <div class="wrap mf-settings-dashboard">
8
+ <div class="attr-row">
9
+ <div class="attr-col-lg-3 attr-col-sm-4 mf-setting-sidebar-column">
10
+ <div class="mf-setting-sidebar">
11
+ <div class="mf_setting_logo">
12
+ <img src="<?php echo plugin_dir_url(__FILE__) . '../images/metform_logo.png'; ?>">
13
+ </div>
14
+ <div class="mf-settings-tab">
15
+ <ul class="nav-tab-wrapper">
16
+ <li><a href="#" class="mf-setting-nav-link mf-setting-nav-hidden"></a></li>
17
+
18
+ <li>
19
+ <a href="#mf-dashboard_options" class="mf-setting-nav-link">
20
+ <div class="mf-setting-tab-content">
21
+ <span class="mf-setting-title"><?php echo esc_html__('Dashboard', 'metform'); ?></span>
22
+ <span class="mf-setting-subtitle"><?php echo esc_html__('All dashboard info here', 'metform'); ?></span>
23
+ </div>
24
+ </a>
25
+ </li>
26
+
27
+ <li>
28
+ <a href="#mf-general_options" class="mf-setting-nav-link">
29
+ <div class="mf-setting-tab-content">
30
+ <span class="mf-setting-title"><?php echo esc_html__('General', 'metform'); ?></span>
31
+ <span class="mf-setting-subtitle"><?php echo esc_html__('All General info here', 'metform'); ?></span>
32
+ </div>
33
+ </a>
34
+ </li>
35
+
36
+ <?php if (class_exists('\MetForm_Pro\Core\Integrations\Payment\Paypal') || class_exists('\MetForm_Pro\Core\Integrations\Payment\Stripe')) : ?>
37
+ <li>
38
+ <a href="#mf-payment_options" class="mf-setting-nav-link">
39
+ <div class="mf-setting-tab-content">
40
+ <span class="mf-setting-title"><?php echo esc_html__('Payment', 'metform'); ?></span>
41
+ <span class="mf-setting-subtitle"><?php echo esc_html__('All payment info here', 'metform'); ?></span>
42
+ </div>
43
+ </a>
44
+ </li>
45
+ <?php endif; ?>
46
+ <li>
47
+ <a href="#mf-newsletter_integration" class="mf-setting-nav-link">
48
+ <div class="mf-setting-tab-content">
49
+ <span class="mf-setting-title"><?php echo esc_html__('Newsletter Integration', 'metform'); ?></span>
50
+ <span class="mf-setting-subtitle"><?php echo esc_html__('All newsletter integration info here', 'metform'); ?></span>
51
+ </div>
52
+ </a>
53
+ </li>
54
+
55
+ <?php echo do_action('metform_settings_tab'); ?>
56
+
57
+ <li><a href="#" class="mf-setting-nav-link mf-setting-nav-hidden"></a></li>
58
+ </ul>
59
+ </div>
60
+ </div>
61
+ </div>
62
+
63
+ <div class="attr-col-lg-9 attr-col-sm-8 mf-setting-main-content-column">
64
+ <div class="metform-admin-container stuffbox">
65
+ <div class="attr-card-body metform-admin-container--body">
66
+ <form action="" method="post" class="form-group mf-admin-input-text mf-admin-input-text--metform-license-key">
67
+
68
+ <!-- Dashboard Tab -->
69
+ <div class="mf-settings-section" id="mf-dashboard_options">
70
+ <div class="mf-settings-single-section">
71
+ <div class="mf-setting-header">
72
+ <h3 class="mf-settings-single-section--title"><span class="mf mf-home"></span><?php esc_html_e('Dashboard', 'metform'); ?></h3>
73
+ <button type="submit" name="submit" id="submit" class="mf-admin-setting-btn active"><span class="mf mf-icon-checked-fillpng"></span><?php esc_attr_e('Save Changes', 'metform'); ?></button>
74
+ </div>
75
+
76
+ <div class="mf-setting-dashboard-banner">
77
+ <img src="<?php echo plugin_dir_url(__FILE__) . '../images/banner.png'; ?>" class="mf-admin-dashboard-banner">
78
+ </div>
79
+
80
+ <div class="mf-set-dash-section">
81
+ <div class="mf-setting-dash-section-heading">
82
+ <h2 class="mf-setting-dash-section-heading--title">
83
+ <?php esc_html_e('Top Notch', 'metform'); ?>
84
+ <strong><?php esc_html_e('Features', 'metform'); ?></strong></h2>
85
+ <span class="mf-setting-dash-section-heading--subtitle"><?php esc_html_e('features', 'metform'); ?></span>
86
+ <div class="mf-setting-dash-section-heading--content">
87
+ <p><?php esc_html_e('Get started by spending some time with the documentation to get familiar with ElementsKit.', 'metform') ?>
88
+ </p>
89
+ </div>
90
+ </div> <!-- ./End Section heading -->
91
+
92
+ <div class="mf-set-dash-top-notch">
93
+ <div class="mf-set-dash-top-notch--item" data-count="01">
94
+ <h3 class="mf-set-dash-top-notch--item__title">
95
+ <?php esc_html_e('Easy to use', 'metform'); ?></h3>
96
+ <p class="mf-set-dash-top-notch--item__desc">
97
+ <?php esc_html_e('Get started by spending some time with the documentation to get familiar with MetForm', 'metform'); ?>
98
+ </p>
99
+ </div>
100
+ <div class="mf-set-dash-top-notch--item" data-count="02">
101
+ <h3 class="mf-set-dash-top-notch--item__title">
102
+ <?php esc_html_e('Moden Typography', 'metform'); ?></h3>
103
+ <p class="mf-set-dash-top-notch--item__desc">
104
+ <?php esc_html_e('Get started by spending some time with the documentation to get familiar with MetForm', 'metform'); ?>
105
+ </p>
106
+ </div>
107
+ <div class="mf-set-dash-top-notch--item" data-count="03">
108
+ <h3 class="mf-set-dash-top-notch--item__title">
109
+ <?php esc_html_e('Perfectly Match', 'metform'); ?></h3>
110
+ <p class="mf-set-dash-top-notch--item__desc">
111
+ <?php esc_html_e('Get started by spending some time with the documentation to get familiar with MetForm', 'metform'); ?>
112
+ </p>
113
+ </div>
114
+ <div class="mf-set-dash-top-notch--item" data-count="04">
115
+ <h3 class="mf-set-dash-top-notch--item__title">
116
+ <?php esc_html_e('Dynamic Forms', 'metform'); ?></h3>
117
+ <p class="mf-set-dash-top-notch--item__desc">
118
+ <?php esc_html_e('Get started by spending some time with the documentation to get familiar with MetForm', 'metform'); ?>
119
+ </p>
120
+ </div>
121
+ <div class="mf-set-dash-top-notch--item" data-count="05">
122
+ <h3 class="mf-set-dash-top-notch--item__title">
123
+ <?php esc_html_e('Create Faster', 'metform'); ?></h3>
124
+ <p class="mf-set-dash-top-notch--item__desc">
125
+ <?php esc_html_e('Get started by spending some time with the documentation to get familiar with MetForm', 'metform'); ?>
126
+ </p>
127
+ </div>
128
+ <div class="mf-set-dash-top-notch--item" data-count="06">
129
+ <h3 class="mf-set-dash-top-notch--item__title">
130
+ <?php esc_html_e('Awesome Layout', 'metform'); ?></h3>
131
+ <p class="mf-set-dash-top-notch--item__desc">
132
+ <?php esc_html_e('Get started by spending some time with the documentation to get familiar with MetForm', 'metform'); ?>
133
+ </p>
134
+ </div>
135
+ </div> <!-- ./End Section heading -->
136
+ </div> <!-- setting top notch section -->
137
+
138
+ <!-- Dashboard setting free and pro -->
139
+ <div id="mf-set-dash-free-pro" class="mf-set-dash-section">
140
+ <div class="mf-setting-dash-section-heading">
141
+ <h2 class="mf-setting-dash-section-heading--title">
142
+ <?php esc_html_e('What included with Free &', 'metform'); ?>
143
+ <strong><?php esc_html_e('PRO', 'metform'); ?></strong></h2>
144
+ <span class="mf-setting-dash-section-heading--subtitle"><?php esc_html_e('features', 'metform'); ?></span>
145
+ <div class="mf-setting-dash-section-heading--content">
146
+ <p><?php esc_html_e('Get started by spending some time with the documentation to get familiar with ElementsKit.', 'metform') ?>
147
+ </p>
148
+ </div>
149
+ </div> <!-- ./End Section heading -->
150
+
151
+ <div class="mf-set-dash-free-pro-content">
152
+ <ul class="attr-nav attr-nav-tabs" id="myTab" role="tablist">
153
+ <li class="attr-nav-item attr-active">
154
+ <a class="attr-nav-link" data-toggle="tab" href="#mf-set-feature-1"><span class="mf-icon mf mf-document"></span><?php esc_html_e('Easy to use', 'metform'); ?><span class="mf-set-dash-badge"><?php esc_html_e('Pro', 'metform'); ?></span></a>
155
+ </li>
156
+ <li class="attr-nav-item">
157
+ <a class="attr-nav-link" data-toggle="tab" href="#mf-set-feature-2"><span class="mf-icon mf mf-document"></span><?php esc_html_e('Modern Typography', 'metform'); ?><span class="mf-set-dash-badge"><?php esc_html_e('Pro', 'metform'); ?></span></a>
158
+ </li>
159
+ <li class="attr-nav-item">
160
+ <a class="attr-nav-link" id="contact-tab" data-toggle="tab" href="#mf-set-feature-3"><span class="mf-icon mf mf-document"></span><?php esc_html_e('Perfectly Match', 'metform'); ?><span class="mf-set-dash-badge"><?php esc_html_e('Pro', 'metform'); ?></span></a>
161
+ </li>
162
+ </ul>
163
+
164
+ <div class="attr-tab-content" id="myTabContent">
165
+ <div class="attr-tab-pane attr-fade attr-active attr-in" id="mf-set-feature-1">
166
+ <div class="mf-set-dash-tab-img">
167
+ <img src="<?php echo plugin_dir_url(__FILE__) . '../images/feature-preview.png'; ?>" class="">
168
+ </div>
169
+ <p><?php esc_html_e('Get started by spending some time with the documentation to get familiar with MetForm Get started by spending some time with the documentation to get notification in real time.', 'metform'); ?>
170
+ </p>
171
+ <ul>
172
+ <li><?php esc_html_e('Success Message', 'metform'); ?></li>
173
+ <li><?php esc_html_e('Required Login', 'metform'); ?></li>
174
+ <li><?php esc_html_e('Hide Form After Submission', 'metform'); ?>
175
+ </li>
176
+ <li><?php esc_html_e('Store Entries', 'metform'); ?></li>
177
+ </ul>
178
+
179
+ <a href="#" class="mf-admin-setting-btn medium"><span class="mf mf-icon-checked-fillpng"></span><?php esc_html_e('View Details', 'metform'); ?></a>
180
+ </div>
181
+ <div class="attr-tab-pane attr-fade" id="mf-set-feature-2">
182
+ <div class="mf-set-dash-tab-img">
183
+ <img src="<?php echo plugin_dir_url(__FILE__) . '../images/feature-preview.png'; ?>" class="">
184
+ </div>
185
+ <p><?php esc_html_e('Get started by spending some time with the documentation to get familiar with MetForm Get started by spending some time with the documentation to get notification in real time.', 'metform'); ?>
186
+ </p>
187
+ <ul>
188
+ <li><?php esc_html_e('Success Message', 'metform'); ?></li>
189
+ <li><?php esc_html_e('Required Login', 'metform'); ?></li>
190
+ <li><?php esc_html_e('Hide Form After Submission', 'metform'); ?>
191
+ </li>
192
+ <li><?php esc_html_e('Store Entries', 'metform'); ?></li>
193
+ </ul>
194
+ </div>
195
+ <div class="attr-tab-pane attr-fade" id="mf-set-feature-3">
196
+ <div class="mf-set-dash-tab-img">
197
+ <img src="<?php echo plugin_dir_url(__FILE__) . '../images/feature-preview.png'; ?>" class="">
198
+ </div>
199
+ <p><?php esc_html_e('Get started by spending some time with the documentation to get familiar with MetForm Get started by spending some time with the documentation to get notification in real time.', 'metform'); ?>
200
+ </p>
201
+ <ul>
202
+ <li><?php esc_html_e('Success Message', 'metform'); ?></li>
203
+ <li><?php esc_html_e('Required Login', 'metform'); ?></li>
204
+ <li><?php esc_html_e('Hide Form After Submission', 'metform'); ?>
205
+ </li>
206
+ <li><?php esc_html_e('Store Entries', 'metform'); ?></li>
207
+ </ul>
208
+ </div>
209
+ </div>
210
+ </div>
211
+ </div> <!-- Dashboard setting free and pro -->
212
+
213
+ <!-- Dashboard setting faq -->
214
+ <div id="mf-set-dash-faq" class="mf-set-dash-section">
215
+ <div class="mf-setting-dash-section-heading">
216
+ <h2 class="mf-setting-dash-section-heading--title">
217
+ <?php esc_html_e('General Knowledge Base', 'metform'); ?></h2>
218
+ <span class="mf-setting-dash-section-heading--subtitle"><?php esc_html_e('FAQ', 'metform'); ?></span>
219
+ <div class="mf-setting-dash-section-heading--content">
220
+ <p><?php esc_html_e('Get started by spending some time with the documentation to get familiar with ElementsKit.', 'metform') ?>
221
+ </p>
222
+ </div>
223
+ </div> <!-- ./End Section heading -->
224
+
225
+ <div class="mf-admin-accordion">
226
+ <div class="mf-admin-single-accordion">
227
+ <h2 class="mf-admin-single-accordion--heading">
228
+ <?php esc_html_e('1. How to create a Invitation Form using MetForm?', 'metform'); ?>
229
+ </h2>
230
+ <div class="mf-admin-single-accordion--body">
231
+ <div class="mf-admin-single-accordion--body__content">
232
+ <p><?php esc_html_e('You will get 20+ complete homepages and total 450+ blocks in our layout library and we’re continuously updating the numbers there.', 'metform') ?>
233
+ </p>
234
+ </div>
235
+ </div>
236
+ </div>
237
+ <div class="mf-admin-single-accordion">
238
+ <h2 class="mf-admin-single-accordion--heading">
239
+ <?php esc_html_e('2. How to translate language with WPML?', 'metform'); ?>
240
+ </h2>
241
+ <div class="mf-admin-single-accordion--body">
242
+ <div class="mf-admin-single-accordion--body__content">
243
+ <p><?php esc_html_e('You will get 20+ complete homepages and total 450+ blocks in our layout library and we’re continuously updating the numbers there.', 'metform') ?>
244
+ </p>
245
+ </div>
246
+ </div>
247
+ </div>
248
+ <div class="mf-admin-single-accordion">
249
+ <h2 class="mf-admin-single-accordion--heading">
250
+ <?php esc_html_e('3. How to add custom css in specific section shortcode?', 'metform'); ?>
251
+ </h2>
252
+ <div class="mf-admin-single-accordion--body">
253
+ <div class="mf-admin-single-accordion--body__content">
254
+ <p><?php esc_html_e('You will get 20+ complete homepages and total 450+ blocks in our layout library and we’re continuously updating the numbers there.', 'metform') ?>
255
+ </p>
256
+ </div>
257
+ </div>
258
+ </div>
259
+ </div>
260
+
261
+ <a href="#" class="mf-admin-setting-btn fatty active"><span class="mf mf-question"></span><?php esc_html_e('View all faq’s', 'metform'); ?></a>
262
+ </div> <!-- Dashboard setting faq -->
263
+
264
+ <!-- Dashboard setting rate now -->
265
+ <div id="mf-set-dash-rate-now" class="mf-set-dash-section">
266
+ <div class="mf-admin-right-content">
267
+
268
+ <div class="mf-setting-dash-section-heading">
269
+ <h2 class="mf-setting-dash-section-heading--title">
270
+ <strong><?php esc_html_e('Satisfied!', 'metform'); ?></strong><br><?php esc_html_e('Don’t forget to rate our item.', 'metform'); ?>
271
+ </h2>
272
+ <span class="mf-setting-dash-section-heading--subtitle"><?php esc_html_e('review', 'metform'); ?></span>
273
+ <div class="mf-setting-dash-section-heading--content">
274
+ <p></p>
275
+ </div>
276
+ </div> <!-- ./End Section heading -->
277
+ <div class="mf-admin-right-content--button">
278
+ <a target="_blank" href="https://wordpress.org/support/plugin/metform/reviews/?rate=5#new-post" class="mf-admin-setting-btn fatty"><span class="mf mf-star-1"></span><?php esc_html_e('Rate it now', 'elementskit'); ?></a>
279
+ </div>
280
+ </div>
281
+
282
+ <div class="mf-admin-left-thumb">
283
+ <img src="<?php echo plugin_dir_url(__FILE__) . '../images/rate-now-thumb.png'; ?>" alt="<?php esc_attr_e('Rate Now Thumb', 'elementskit'); ?>">
284
+ </div>
285
+ </div>
286
+
287
+ </div>
288
+ </div>
289
+
290
+ <!-- General Tab -->
291
+ <div class="mf-settings-section" id="mf-general_options">
292
+ <div class="mf-settings-single-section">
293
+ <div class="mf-setting-header">
294
+ <h3 class="mf-settings-single-section--title"><span class="mf mf-settings"></span><?php esc_html_e('General', 'metform'); ?></h3>
295
+ <button type="submit" name="submit" id="submit" class="mf-admin-setting-btn active"><span class="mf mf-icon-checked-fillpng"></span><?php esc_attr_e('Save Changes', 'metform'); ?></button>
296
+ </div>
297
+ <div class="attr-form-group">
298
+ <div class="mf-setting-tab-nav">
299
+ <ul class="attr-nav attr-nav-tabs" id="nav-tab" role="attr-tablist">
300
+ <li class="attr-active attr-in">
301
+ <a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#mf-recaptcha-tab" role="tab"><?php esc_attr_e('reCaptcha', 'metform'); ?></a>
302
+ </li>
303
+
304
+ <?php if (class_exists('\MetForm_Pro\Base\Package')) : ?>
305
+ <li>
306
+ <a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#mf-map-tab" role="tab" aria-controls="nav-profile" aria-selected="false"><?php esc_html_e('Map', 'metform'); ?></a>
307
+ </li>
308
+ <?php endif; ?>
309
+
310
+
311
+ </ul>
312
+ </div>
313
+
314
+ <div class="attr-tab-content" id="nav-tabContent">
315
+ <div class="attr-tab-pane attr-fade attr-active attr-in" id="mf-recaptcha-tab" role="tabpanel" aria-labelledby="nav-home-tab">
316
+ <div class="attr-row">
317
+ <div class="attr-col-lg-6">
318
+ <div class="mf-setting-input-group">
319
+ <label class="mf-setting-label" for="captcha-method"><?php esc_html_e('Select version:', 'metform'); ?></label>
320
+ <div class="mf-setting-select-container">
321
+ <select name="mf_recaptcha_version" class="mf-setting-input attr-form-control mf-recaptcha-version" id="captcha-method">
322
+ <option <?php echo esc_attr((isset($settings['mf_recaptcha_version']) && ($settings['mf_recaptcha_version'] == 'recaptcha-v2')) ? 'Selected' : ''); ?> value="recaptcha-v2">
323
+ <?php esc_html_e('reCAPTCHA V2', 'metform'); ?>
324
+ </option>
325
+ <option <?php echo esc_attr((isset($settings['mf_recaptcha_version']) && ($settings['mf_recaptcha_version'] == 'recaptcha-v3')) ? 'Selected' : ''); ?> value="recaptcha-v3">
326
+ <?php esc_html_e('reCAPTCHA V3', 'metform'); ?>
327
+ </option>
328
+ </select>
329
+ </div>
330
+ <p class="description">
331
+ <?php esc_html_e('Select google reCaptcha version which one want to use.', 'metform'); ?>
332
+ </p>
333
+ </div>
334
+
335
+ <div class="mf-recaptcha-settings-wrapper">
336
+ <div class="mf-recaptcha-settings" id="mf-recaptcha-v2">
337
+ <div class="mf-setting-input-group">
338
+ <label class="mf-setting-label"><?php esc_html_e('Site key:', 'metform'); ?>
339
+ </label>
340
+ <input type="text" name="mf_recaptcha_site_key" value="<?php echo esc_attr((isset($settings['mf_recaptcha_site_key'])) ? $settings['mf_recaptcha_site_key'] : ''); ?>" class="mf-setting-input attr-form-control mf-recaptcha-site-key" placeholder="<?php esc_html_e('Insert site key', 'metform'); ?>">
341
+ <p class="description">
342
+ <?php esc_html_e('Create google reCaptcha site key from reCaptcha admin panel. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://www.google.com/recaptcha/admin/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform'); ?></a>
343
+ </p>
344
+ </div>
345
+ <div class="mf-setting-input-group">
346
+ <label class="mf-setting-label"><?php esc_html_e('Secret key:', 'metform'); ?>
347
+ </label>
348
+ <input type="text" name="mf_recaptcha_secret_key" value="<?php echo esc_attr((isset($settings['mf_recaptcha_secret_key'])) ? $settings['mf_recaptcha_secret_key'] : ''); ?>" class="mf-setting-input attr-form-control mf-recaptcha-secret-key" placeholder="<?php esc_html_e('Insert secret key', 'metform'); ?>">
349
+ <p class="description">
350
+ <?php esc_html_e('Create google reCaptcha secret key from reCaptcha admin panel. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://www.google.com/recaptcha/admin/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform'); ?></a>
351
+ </p>
352
+ </div>
353
+ </div>
354
+
355
+ <div class="mf-recaptcha-settings" id="mf-recaptcha-v3">
356
+ <div class="mf-setting-input-group">
357
+ <label class="mf-setting-label"><?php esc_html_e('Site key:', 'metform'); ?>
358
+ </label>
359
+ <input type="text" name="mf_recaptcha_site_key_v3" value="<?php echo esc_attr((isset($settings['mf_recaptcha_site_key_v3'])) ? $settings['mf_recaptcha_site_key_v3'] : ''); ?>" class="mf-setting-input attr-form-control mf-recaptcha-site-key" placeholder="<?php esc_html_e('Insert site key', 'metform'); ?>">
360
+ <p class="description">
361
+ <?php esc_html_e('Create google reCaptcha site key from reCaptcha admin panel. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://www.google.com/recaptcha/admin/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform'); ?></a>
362
+ </p>
363
+ </div>
364
+ <div class="mf-setting-input-group">
365
+ <label class="mf-setting-label"><?php esc_html_e('Secret key:', 'metform'); ?>
366
+ </label>
367
+ <input type="text" name="mf_recaptcha_secret_key_v3" value="<?php echo esc_attr((isset($settings['mf_recaptcha_secret_key_v3'])) ? $settings['mf_recaptcha_secret_key_v3'] : ''); ?>" class="mf-setting-input attr-form-control mf-recaptcha-secret-key" placeholder="<?php esc_html_e('Insert secret key', 'metform'); ?>">
368
+ <p class="description">
369
+ <?php esc_html_e('Create google reCaptcha secret key from reCaptcha admin panel. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://www.google.com/recaptcha/admin/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform'); ?></a>
370
+ </p>
371
+ </div>
372
+ </div>
373
+ </div>
374
+ </div>
375
+ </div>
376
+ </div>
377
+
378
+ <?php if (class_exists('\MetForm_Pro\Base\Package')) : ?>
379
+ <div class="attr-tab-pane attr-fade" id="mf-map-tab" role="tabpanel" aria-labelledby="nav-home-tab">
380
+ <div class="attr-row">
381
+ <div class="attr-col-lg-6">
382
+ <div class="mf-setting-input-group">
383
+ <label class="mf-setting-label"><?php esc_html_e('API:', 'metform'); ?>
384
+ </label>
385
+ <input type="text" name="mf_google_map_api_key" value="<?php echo esc_attr((isset($settings['mf_google_map_api_key'])) ? $settings['mf_google_map_api_key'] : ''); ?>" class="mf-setting-input attr-form-control mf-google-map-api-key" placeholder="<?php esc_html_e('Insert map api key', 'metform'); ?>">
386
+ <p class="description">
387
+ <?php esc_html_e('Create google map api key from google developer console. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://console.cloud.google.com/google/maps-apis/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform'); ?></a>
388
+ </p>
389
+ </div>
390
+ </div>
391
+ </div>
392
+ </div>
393
+ <?php endif; ?>
394
+
395
+
396
+
397
+
398
+
399
+
400
+ </div>
401
+
402
+
403
+ </div>
404
+ </div>
405
+
406
+ </div>
407
+ <!-- ./End General Tab -->
408
+
409
+ <!-- Payment Tab -->
410
+ <?php if (class_exists('\MetForm_Pro\Core\Integrations\Payment\Paypal')) : ?>
411
+ <div class="mf-settings-section" id="mf-payment_options">
412
+ <div class="mf-settings-single-section">
413
+
414
+ <div class="mf-setting-header">
415
+ <h3 class="mf-settings-single-section--title"><span class="mf mf-settings"></span><?php esc_html_e('Payment', 'metform'); ?></h3>
416
+ <button type="submit" name="submit" id="submit" class="mf-admin-setting-btn active"><span class="mf mf-icon-checked-fillpng"></span><?php esc_attr_e('Save Changes', 'metform'); ?></button>
417
+ </div>
418
+
419
+ <div class="mf-setting-tab-nav">
420
+ <ul class="attr-nav attr-nav-tabs" id="nav-tab" role="attr-tablist">
421
+ <li class="attr-active attr-in">
422
+ <a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#mf-paypal-tab" role="tab"><?php esc_attr_e('Paypal', 'metform'); ?></a>
423
+ </li>
424
+
425
+ <?php if (class_exists('\MetForm_Pro\Core\Integrations\Payment\Stripe')) : ?>
426
+ <li>
427
+ <a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#attr-stripe-tab" role="tab" aria-controls="nav-profile" aria-selected="false"><?php esc_html_e('Stripe', 'metform'); ?></a>
428
+ </li>
429
+ <?php endif; ?>
430
+
431
+ <li>
432
+ <a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#mf-thankyou-tab" role="tab"><?php esc_attr_e('Tankyou Page', 'metform'); ?></a>
433
+ </li>
434
+ </ul>
435
+ </div>
436
+
437
+ <div class="attr-form-group">
438
+ <div class="attr-tab-content" id="nav-tabContent">
439
+ <div class="attr-tab-pane attr-fade attr-active attr-in" id="mf-paypal-tab" role="tabpanel" aria-labelledby="nav-home-tab">
440
+ <div class="attr-row">
441
+ <div class="attr-col-lg-6">
442
+ <div class="mf-setting-input-group">
443
+ <label class="mf-setting-label"><?php esc_html_e('Paypal email:', 'metform'); ?></label>
444
+ <input type="email" name="mf_paypal_email" value="<?php echo esc_attr((isset($settings['mf_paypal_email'])) ? $settings['mf_paypal_email'] : ''); ?>" class="mf-setting-input mf-paypal-email attr-form-control" placeholder="<?php esc_html_e('Paypal email', 'metform'); ?>">
445
+ <p class="description">
446
+ <?php esc_html_e('Enter here your paypal email. ', 'metform'); ?><a class="mf-setting-btn-link" target="__blank" href="<?php echo esc_url('https://www.paypal.com/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform'); ?></a>
447
+ </p>
448
+ </div>
449
+
450
+ <div class="mf-setting-input-group">
451
+ <label class="mf-setting-label"><?php esc_html_e('Paypal token:', 'metform'); ?></label>
452
+ <input type="text" name="mf_paypal_token" value="<?php echo esc_attr((isset($settings['mf_paypal_token'])) ? $settings['mf_paypal_token'] : ''); ?>" class="mf-setting-input mf-paypal-token attr-form-control" placeholder="<?php esc_html_e('Paypal token', 'metform'); ?>">
453
+ <p class="description">
454
+ <?php esc_html_e('Enter here your paypal token. This is optional. ', 'metform'); ?><a class="mf-setting-btn-link" target="__blank" href="<?php echo esc_url('https://www.paypal.com/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform'); ?></a>
455
+ </p>
456
+ </div>
457
+
458
+ <div class="mf-setting-input-group">
459
+ <label class="mf-setting-label"><?php esc_html_e('Enable sandbox mode:', 'metform'); ?>
460
+ <input type="checkbox" value="1" name="mf_paypal_sandbox" <?php echo esc_attr((isset($settings['mf_paypal_sandbox'])) ? 'Checked' : ''); ?> class="mf-admin-control-input mf-form-modalinput-paypal_sandbox">
461
+ <p class="description">
462
+ <?php esc_html_e('Enable this for testing payment method. ', 'metform'); ?>
463
+ </p>
464
+ </label>
465
+ </div>
466
+ </div>
467
+ </div>
468
+ </div>
469
+
470
+ <?php if (class_exists('\MetForm_Pro\Core\Integrations\Payment\Stripe')) : ?>
471
+ <div class="attr-tab-pane attr-fade" id="attr-stripe-tab" role="tabpanel" aria-labelledby="nav-profile-tab">
472
+ <div class="attr-row">
473
+ <div class="attr-col-lg-6">
474
+ <div class="mf-setting-input-group">
475
+ <label for="attr-input-label" class="mf-setting-label attr-input-label"><?php esc_html_e('Image url:', 'metform'); ?></label>
476
+ <input type="text" name="mf_stripe_image_url" value="<?php echo esc_attr((isset($settings['mf_stripe_image_url'])) ? $settings['mf_stripe_image_url'] : ''); ?>" class="mf-setting-input mf-stripe-image-url attr-form-control" placeholder="<?php esc_html_e('Stripe image url', 'metform'); ?>">
477
+ <p class="description">
478
+ <?php esc_html_e('Enter here your stripe image url. This image will show on stripe payment pop up modal. ', 'metform'); ?>
479
+ </p>
480
+ </div>
481
+
482
+ <div class="mf-setting-input-group">
483
+ <label for="attr-input-label" class="mf-setting-label attr-input-label"><?php esc_html_e('Live publishiable key:', 'metform'); ?></label>
484
+ <input type="text" name="mf_stripe_live_publishiable_key" value="<?php echo esc_attr((isset($settings['mf_stripe_live_publishiable_key'])) ? $settings['mf_stripe_live_publishiable_key'] : ''); ?>" class="mf-setting-input mf-stripe-live-publishiable-key attr-form-control" placeholder="<?php esc_html_e('Stripe live publishiable key', 'metform'); ?>">
485
+ <p class="description">
486
+ <?php esc_html_e('Enter here your stripe live publishiable key. ', 'metform'); ?><a class="mf-setting-btn-link" target="__blank" href="<?php echo esc_url('https://stripe.com/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform'); ?></a>
487
+ </p>
488
+ </div>
489
+
490
+ <div class="mf-setting-input-group">
491
+ <label for="attr-input-label" class="mf-setting-label attr-input-label"><?php esc_html_e('Live secret key:', 'metform'); ?></label>
492
+ <input type="text" name="mf_stripe_live_secret_key" value="<?php echo esc_attr((isset($settings['mf_stripe_live_secret_key'])) ? $settings['mf_stripe_live_secret_key'] : ''); ?>" class="mf-setting-input mf-stripe-live-secret-key attr-form-control" placeholder="<?php esc_html_e('Stripe live secret key', 'metform'); ?>">
493
+ <p class="description">
494
+ <?php esc_html_e('Enter here your stripe live secret key. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://stripe.com/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform'); ?></a>
495
+ </p>
496
+ </div>
497
+
498
+ <div class="mf-setting-input-group">
499
+ <label class="mf-setting-label attr-input-label">
500
+ <?php esc_html_e('Enable sandbox mode:', 'metform'); ?>
501
+ <input type="checkbox" value="1" name="mf_stripe_sandbox" <?php echo esc_attr((isset($settings['mf_stripe_sandbox'])) ? 'Checked' : ''); ?> class="mf-admin-control-input mf-form-modalinput-stripe_sandbox">
502
+ <p class="description">
503
+ <?php esc_html_e('Enable this for testing your payment system. ', 'metform'); ?>
504
+ </p>
505
+ </label>
506
+ </div>
507
+
508
+ <div class="mf-form-modalinput-stripe_sandbox_keys">
509
+ <div class="mf-setting-input-group">
510
+ <label for="attr-input-label" class="mf-setting-label attr-input-label"><?php esc_html_e('Test publishiable key:', 'metform'); ?></label>
511
+ <input type="text" name="mf_stripe_test_publishiable_key" value="<?php echo esc_attr((isset($settings['mf_stripe_test_publishiable_key'])) ? $settings['mf_stripe_test_publishiable_key'] : ''); ?>" class="mf-setting-input mf-stripe-test-publishiable-key attr-form-control" placeholder="<?php esc_html_e('Stripe test publishiable key', 'metform'); ?>">
512
+ <p class="description">
513
+ <?php esc_html_e('Enter here your test publishiable key. ', 'metform'); ?><a class="mf-setting-btn-link" target="__blank" href="<?php echo esc_url('https://stripe.com/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform'); ?></a>
514
+ </p>
515
+ </div>
516
+ <div class="mf-setting-input-group">
517
+ <label for="attr-input-label" class="mf-setting-label attr-input-label"><?php esc_html_e('Test secret key:', 'metform'); ?></label>
518
+ <input type="text" name="mf_stripe_test_secret_key" value="<?php echo esc_attr((isset($settings['mf_stripe_test_secret_key'])) ? $settings['mf_stripe_test_secret_key'] : ''); ?>" class="mf-setting-input mf-stripe-test-secret-key attr-form-control" placeholder="<?php esc_html_e('Stripe test secret key', 'metform'); ?>">
519
+ <p class="description">
520
+ <?php esc_html_e('Enter here your test secret key. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://stripe.com/', 'metform'); ?>"><?php esc_html_e('Create from here', 'metform'); ?></a>
521
+ </p>
522
+ </div>
523
+ </div>
524
+
525
+ </div>
526
+ </div>
527
+ </div>
528
+ <?php endif; ?>
529
+
530
+ <!-- Thank you page section -->
531
+
532
+ <div class="attr-tab-pane attr-fade" id="mf-thankyou-tab" role="tabpanel" aria-labelledby="nav-home-tab">
533
+ <div class="attr-row">
534
+ <div class="attr-col-lg-6">
535
+ <div class="mf-setting-input-group">
536
+ <h3>Select Thankyou Page :</h3>
537
+ <?php $page_ids = get_all_page_ids(); ?>
538
+ <select name="mf_thank_you_page" class="mf-setting-input attr-form-control">
539
+ <?php foreach ($page_ids as $page) : ?>
540
+ <option <?php
541
+ if(isset($settings['mf_thank_you_page'])){
542
+ if ($settings['mf_thank_you_page'] == $page) {
543
+ echo 'selected';
544
+ }
545
+
546
+ }
547
+
548
+ ?> value="<?php echo $page; ?>"> <?php echo get_the_title($page); ?>
549
+ <?php endforeach; ?>
550
+
551
+
552
+ </select>
553
+ <br><br>
554
+ <p>Handle both payment successfull and cancel redirection page. Learn more about Thank you page <a href="https://help.wpmet.com/docs/thank-you-page/" target="_blank">Here</a></p>
555
+ <a class="mf-setting-btn-link" href="<?php echo get_admin_url() . 'post-new.php?post_type=page'; ?>">Create Thankyou Page</a>
556
+ </div>
557
+ </div>
558
+ </div>
559
+ </div>
560
+
561
+ </div>
562
+ </div>
563
+
564
+
565
+ </div>
566
+
567
+ </div>
568
+ <?php endif; ?>
569
+
570
+ <!-- ./End Payment Tab -->
571
+
572
+ <!-- newsletter Integration Tab -->
573
+ <div class="mf-settings-section" id="mf-newsletter_integration">
574
+ <div class="mf-settings-single-section">
575
+ <?php if (class_exists('\MetForm\Core\Integrations\Mail_Chimp')) : ?>
576
+ <div class="mf-setting-header">
577
+ <h3 class="mf-settings-single-section--title"><span class="mf mf-settings"></span><?php esc_html_e('Newsletter Integration', 'metform'); ?>
578
+ </h3>
579
+ <button type="submit" name="submit" id="submit" class="mf-admin-setting-btn active"><span class="mf mf-icon-checked-fillpng"></span><?php esc_attr_e('Save Changes', 'metform'); ?></button>
580
+ </div>
581
+
582
+
583
+ <div class="mf-setting-tab-nav">
584
+ <ul class="attr-nav attr-nav-tabs" id="nav-tab" role="attr-tablist">
585
+ <li class="attr-active attr-in">
586
+ <a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#mf-mailchimp-tab" role="tab"><?php esc_attr_e('MailChimp', 'metform'); ?></a>
587
+ </li>
588
+
589
+ <?php if (did_action('xpd_metform_pro/plugin_loaded')) : ?>
590
+ <li>
591
+ <a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#attr-aweber-tab" role="tab" aria-controls="nav-profile" aria-selected="false"><?php esc_html_e('Aweber', 'metform'); ?></a>
592
+ </li>
593
+
594
+ <li>
595
+ <a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#attr-activeCampaign-tab" role="tab" aria-controls="nav-contact" aria-selected="false"><?php esc_html_e('ActiveCampaign', 'metform'); ?></a>
596
+ </li>
597
+
598
+ <li>
599
+ <a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#attr-getresponse-tab" role="tab" aria-controls="nav-contact" aria-selected="false"><?php esc_html_e('Get Response', 'metform'); ?></a>
600
+ </li>
601
+
602
+ <li>
603
+ <a class="attr-nav-item attr-nav-link" data-toggle="tab" href="#attr-ckit-tab" role="tab" aria-controls="nav-profile" aria-selected="false"><?php esc_html_e('ConvertKit', 'metform'); ?></a>
604
+ </li>
605
+
606
+ <?php endif; ?>
607
+ </ul>
608
+ </div>
609
+ <div class="attr-form-group">
610
+ <div class="attr-tab-content" id="nav-tabContent">
611
+ <div class="attr-tab-pane attr-fade attr-active attr-in" id="mf-mailchimp-tab" role="tabpanel" aria-labelledby="nav-home-tab">
612
+
613
+ <div class="attr-row">
614
+ <div class="attr-col-lg-6">
615
+ <div class="mf-setting-input-group">
616
+ <label for="attr-input-label" class="mf-setting-label mf-setting-label attr-input-label"><?php esc_html_e('API Key:', 'metform'); ?></label>
617
+ <input type="text" name="mf_mailchimp_api_key" value="<?php echo esc_attr((isset($settings['mf_mailchimp_api_key'])) ? $settings['mf_mailchimp_api_key'] : ''); ?>" class="mf-setting-input mf-mailchimp-api-key attr-form-control" placeholder="<?php esc_html_e('Mailchimp api key', 'metform'); ?>">
618
+ <p class="description">
619
+ <?php esc_html_e('Enter here your Mailchimp api key. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://admin.mailchimp.com/'); ?>"><?php esc_html_e('Get API.', 'metform'); ?></a>
620
+ </p>
621
+ </div>
622
+ </div>
623
+
624
+ <div class="attr-col-lg-6">
625
+ <div class="mf-setting-input-desc">
626
+ <div class="mf-setting-input-desc-data">
627
+ <h2 class="mf-setting-input-desc--title">
628
+ <?php esc_html_e('How To', 'metfrom') ?></h2>
629
+ <p><?php esc_html_e('Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.', 'metform') ?>
630
+ </p>
631
+ <ol>
632
+ <li><?php esc_html_e('Item 1', 'metform') ?></li>
633
+ <li><?php esc_html_e('Item 2', 'metform') ?></li>
634
+ <li><?php esc_html_e('Item 3', 'metform') ?></li>
635
+ </ol>
636
+ </div>
637
+ <a href="https://help.wpmet.com/docs-cat/metform/" class="mf-setting-btn-link" target="_blank"><?php esc_html_e('View Documentation', 'metform'); ?></a>
638
+ </div>
639
+ </div>
640
+ </div>
641
+ </div>
642
+
643
+ <?php if (did_action('xpd_metform_pro/plugin_loaded')) : ?>
644
+
645
+ <div class="attr-tab-pane attr-fade" id="attr-aweber-tab" role="tabpanel" aria-labelledby="nav-profile-tab">
646
+ <div class="attr-row">
647
+ <div class="attr-col-lg-6">
648
+
649
+ <div class="mf-setting-input-group">
650
+ <label for="attr-input-label" class="mf-setting-label mf-setting-label attr-input-label"><?php esc_html_e('Developer App ID:', 'metform'); ?></label>
651
+ <input type="text" <?php echo $disabledAttr; ?> name="mf_aweber_dev_api_key" id="mf_aweber_dev_api_key" value="<?php echo esc_attr((isset($settings['mf_aweber_dev_api_key'])) ? $settings['mf_aweber_dev_api_key'] : ''); ?>" class="mf-setting-input mf-mailchimp-api-key attr-form-control" placeholder="<?php esc_html_e('Aweber developer clientId key', 'metform'); ?>">
652
+ <p class="description">
653
+ <?php esc_html_e('Enter here your Aweber developer app key. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://labs.aweber.com/apps/'); ?>"><?php esc_html_e('Get API.', 'metform'); ?></a>
654
+ </p>
655
+ </div>
656
+
657
+ <div class="mf-setting-input-group">
658
+ <label for="attr-input-label" class="mf-setting-label mf-setting-label attr-input-label"><?php esc_html_e('Developer App Secret:', 'metform'); ?></label>
659
+ <input type="text" <?php echo $disabledAttr; ?> id="mf_aweber_dev_api_sec" name="mf_aweber_dev_api_sec" value="<?php echo esc_attr((isset($settings['mf_aweber_dev_api_sec'])) ? $settings['mf_aweber_dev_api_sec'] : ''); ?>" class="mf-setting-input mf-mailchimp-api-key attr-form-control" placeholder="<?php esc_html_e('Aweber developer secret key', 'metform'); ?>">
660
+ <p class="description">
661
+ <?php esc_html_e('Enter here your Aweber developer secret key. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://labs.aweber.com/apps/'); ?>"><?php esc_html_e('Get API.', 'metform'); ?></a>
662
+ </p>
663
+ </div>
664
+
665
+ <div class="mf-setting-input-group">
666
+ <label for="attr-input-label" class="mf-setting-label mf-setting-label attr-input-label"><?php echo __('Redirect url:', 'metform'); ?></label>
667
+ <p class="description">
668
+ <?php echo get_admin_url() . 'admin.php?page=metform-menu-settings'; ?>
669
+ </p>
670
+ </div>
671
+
672
+ <?php if (!empty($code)) : ?>
673
+ <div class="mf-setting-input-group">
674
+ <p class="description">
675
+ <a id="met_pro_aweber_propmpt_re_auth" class="button-primary mf-setting-btn"> Re Authorize </a>
676
+ </p>
677
+ </div>
678
+ <?php else : ?>
679
+ <div class="mf-setting-input-group">
680
+
681
+ <p class="description">
682
+ <button class="mf-setting-btn-link" id="met_pro_aweber_authorize"> Get Authorization URL
683
+ </button>
684
+ </p>
685
+ </div>
686
+ <?php endif; ?>
687
+
688
+ </div>
689
+ <div class="attr-col-lg-6">
690
+ <div class="mf-setting-input-desc">
691
+ <div class="mf-setting-input-desc-data">
692
+ <h2 class="mf-setting-input-desc--title">
693
+ <?php esc_html_e('How To', 'metfrom') ?></h2>
694
+ <p><?php esc_html_e('Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.', 'metform') ?>
695
+ </p>
696
+ <ol>
697
+ <li><?php esc_html_e('Item 1', 'metform') ?></li>
698
+ <li><?php esc_html_e('Item 2', 'metform') ?></li>
699
+ <li><?php esc_html_e('Item 3', 'metform') ?></li>
700
+ </ol>
701
+ </div>
702
+ <a href="https://help.wpmet.com/docs-cat/metform/" class="mf-setting-btn-link" target="_blank"><?php esc_html_e('View Documentation', 'metform'); ?></a>
703
+ </div>
704
+ </div>
705
+
706
+ </div>
707
+ </div>
708
+
709
+ <div class="attr-tab-pane attr-fade" id="attr-ckit-tab" role="tabpanel" aria-labelledby="nav-contact-tab">
710
+ <div class="attr-row">
711
+ <div class="attr-col-lg-6">
712
+ <div class="mf-setting-input-group">
713
+ <label for="attr-input-label" class="mf-setting-label mf-setting-label attr-input-label"><?php esc_html_e('API Key:', 'metform'); ?></label>
714
+ <input type="text" name="mf_ckit_api_key" value="<?php echo esc_attr((isset($settings['mf_ckit_api_key'])) ? $settings['mf_ckit_api_key'] : ''); ?>" class="mf-setting-input mf-mailchimp-api-key attr-form-control" placeholder="<?php esc_html_e('ConvertKit api key', 'metform'); ?>">
715
+ <p class="description">
716
+ <?php esc_html_e('Enter here your ConvertKit api key. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://app.convertkit.com/users/login'); ?>"><?php esc_html_e('Get API.', 'metform'); ?></a>
717
+ </p>
718
+ </div>
719
+
720
+
721
+ <div class="mf-setting-input-group">
722
+ <label for="attr-input-label" class="mf-setting-label mf-setting-label attr-input-label"><?php esc_html_e('Secret Key:', 'metform'); ?></label>
723
+ <input type="text" name="mf_ckit_sec_key" value="<?php echo esc_attr((isset($settings['mf_ckit_sec_key'])) ? $settings['mf_ckit_sec_key'] : ''); ?>" class="mf-setting-input mf-mailchimp-api-key attr-form-control" placeholder="<?php esc_html_e('ConvertKit api key', 'metform'); ?>">
724
+ <p class="description">
725
+ <?php esc_html_e('Enter here your ConvertKit api key. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://app.convertkit.com/users/login'); ?>"><?php esc_html_e('Get API.', 'metform'); ?></a>
726
+ </p>
727
+ </div>
728
+
729
+
730
+ </div>
731
+ <div class="attr-col-lg-6">
732
+ <div class="mf-setting-input-desc">
733
+ <div class="mf-setting-input-desc-data">
734
+ <h2 class="mf-setting-input-desc--title">
735
+ <?php esc_html_e('How To', 'metfrom') ?></h2>
736
+ <p><?php esc_html_e('Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.', 'metform') ?>
737
+ </p>
738
+ <ol>
739
+ <li><?php esc_html_e('Item 1', 'metform') ?></li>
740
+ <li><?php esc_html_e('Item 2', 'metform') ?></li>
741
+ <li><?php esc_html_e('Item 3', 'metform') ?></li>
742
+ </ol>
743
+ </div>
744
+ <a href="https://help.wpmet.com/docs-cat/metform/" class="mf-setting-btn-link" target="_blank"><?php esc_html_e('View Documentation', 'metform'); ?></a>
745
+ </div>
746
+ </div>
747
+ </div>
748
+ </div>
749
+
750
+ <?php endif; ?>
751
+
752
+ <div class="attr-tab-pane attr-fade" id="attr-activeCampaign-tab" role="tabpanel" aria-labelledby="nav-contact-tab">
753
+ <div class="attr-row">
754
+ <?php if (class_exists('\MetForm_Pro\Core\Integrations\Email\Activecampaign\Active_Campaign')) : ?>
755
+ <div class="attr-col-lg-6">
756
+ <div class="mf-setting-input-group">
757
+ <label for="attr-input-label" class="mf-setting-label mf-setting-label attr-input-label"><?php esc_html_e('API URL:', 'metform'); ?></label>
758
+ <input type="text" name="mf_active_campaign_url" value="<?php echo esc_attr((isset($settings['mf_active_campaign_url'])) ? $settings['mf_active_campaign_url'] : ''); ?>" class="mf-setting-input mf-mailchimp-api-key attr-form-control" placeholder="<?php esc_html_e('ActiveCampaign API URL', 'metform'); ?>">
759
+ <p class="description">
760
+ <?php esc_html_e('Enter here your ActiveCampaign api key. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://www.activecampaign.com/'); ?>"><?php esc_html_e('Get API.', 'metform'); ?></a>
761
+ </p>
762
+ </div>
763
+
764
+ <div class="mf-setting-input-group">
765
+ <label for="attr-input-label" class="mf-setting-label mf-setting-label attr-input-label"><?php esc_html_e('API Key:', 'metform'); ?></label>
766
+ <input type="text" name="mf_active_campaign_api_key" value="<?php echo esc_attr((isset($settings['mf_active_campaign_api_key'])) ? $settings['mf_active_campaign_api_key'] : ''); ?>" class="mf-setting-input mf-mailchimp-api-key attr-form-control" placeholder="<?php esc_html_e('ActiveCampaign api key', 'metform'); ?>">
767
+ <p class="description">
768
+ <?php esc_html_e('Enter here your ActiveCampaign api key. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://www.activecampaign.com/'); ?>"><?php esc_html_e('Get API.', 'metform'); ?></a>
769
+ </p>
770
+ </div>
771
+ </div>
772
+ <div class="attr-col-lg-6">
773
+ <div class="mf-setting-input-desc">
774
+ <div class="mf-setting-input-desc-data">
775
+ <h2 class="mf-setting-input-desc--title">
776
+ <?php esc_html_e('How To', 'metfrom') ?></h2>
777
+ <p><?php esc_html_e('Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.', 'metform') ?>
778
+ </p>
779
+ <ol>
780
+ <li><?php esc_html_e('Item 1', 'metform') ?></li>
781
+ <li><?php esc_html_e('Item 2', 'metform') ?></li>
782
+ <li><?php esc_html_e('Item 3', 'metform') ?></li>
783
+ </ol>
784
+ </div>
785
+ <a href="https://help.wpmet.com/docs-cat/metform/" class="mf-setting-btn-link" target="_blank"><?php esc_html_e('View Documentation', 'metform'); ?></a>
786
+ </div>
787
+ </div>
788
+
789
+ <?php else : ?>
790
+ <div class="attr-col-lg-6">
791
+ <div class="mf-setting-input-group">
792
+ <label for="attr-input-label" class="mf-setting-label mf-setting-label attr-input-label"><?php esc_html_e('API Key:', 'metform'); ?></label>
793
+ <input type="text" disabled name="mf_activecampaign_api_key_field" value="" class="mf-setting-input mf-mailchimp-api-key attr-form-control" placeholder="<?php esc_html_e('ActiveCampaign api key', 'metform'); ?>">
794
+ <p class="description">
795
+ <?php esc_html_e('Enter here your ActiveCampaign api key. ', 'metform'); ?><a target="__blank" class="mf-setting-btn-link" href="<?php echo esc_url('https://admin.mailchimp.com/'); ?>"><?php esc_html_e('Get API.', 'metform'); ?></a>
796
+ </p>
797
+ </div>
798
+ </div>
799
+ <div class="attr-col-lg-6">
800
+ <div class="mf-setting-input-desc">
801
+ <div class="mf-setting-input-desc-data">
802
+ <h2 class="mf-setting-input-desc--title">
803
+ <?php esc_html_e('How To', 'metfrom') ?></h2>
804
+ <p><?php esc_html_e('Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.', 'metform') ?>
805
+ </p>
806
+ <ol>
807
+ <li><?php esc_html_e('Item 1', 'metform') ?></li>
808
+ <li><?php esc_html_e('Item 2', 'metform') ?></li>
809
+ <li><?php esc_html_e('Item 3', 'metform') ?></li>
810
+ </ol>
811
+ </div>
812
+ <a href="https://help.wpmet.com/docs-cat/metform/" class="mf-setting-btn-link" target="_blank"><?php esc_html_e('View Documentation', 'metform'); ?></a>
813
+ </div>
814
+ </div>
815
+ <?php endif; ?>
816
+ </div>
817
+ </div>
818
+
819
+ <div class="attr-tab-pane attr-fade" id="attr-getresponse-tab" role="tabpanel" aria-labelledby="nav-contact-tab">
820
+ <div class="attr-row">
821
+
822
+ <?php if (class_exists('\MetForm_Pro\Core\Integrations\Email\Getresponse\Get_Response')) : ?>
823
+ <div class="attr-col-lg-6">
824
+ <div class="mf-setting-input-group">
825
+ <div class="attr-form-group">
826
+ <label for="attr-input-label" class="mf-setting-label mf-setting-label attr-input-label"><?php esc_html_e('GetResponse API Key:', 'metform'); ?></label>
827
+ <input type="text" name="mf_get_reponse_api_key" value="<?php echo esc_attr((isset($settings['mf_get_reponse_api_key'])) ? $settings['mf_get_reponse_api_key'] : ''); ?>" class="mf-setting-input mf-mailchimp-api-key attr-form-control" placeholder="<?php esc_html_e('GetResponse api key', 'metform'); ?>">
828
+
829
+ </div>
830
+ </div>
831
+ </div>
832
+ <div class="attr-col-lg-6">
833
+ <div class="mf-setting-input-desc">
834
+ <div class="mf-setting-input-desc-data">
835
+ <h2 class="mf-setting-input-desc--title">
836
+ <?php esc_html_e('How To', 'metfrom') ?></h2>
837
+ <p><?php esc_html_e('Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.', 'metform') ?>
838
+ </p>
839
+ <ol>
840
+ <li><?php esc_html_e('Item 1', 'metform') ?></li>
841
+ <li><?php esc_html_e('Item 2', 'metform') ?></li>
842
+ <li><?php esc_html_e('Item 3', 'metform') ?></li>
843
+ </ol>
844
+ </div>
845
+ <a href="https://help.wpmet.com/docs-cat/metform/" class="mf-setting-btn-link" target="_blank"><?php esc_html_e('View Documentation', 'metform'); ?></a>
846
+ </div>
847
+ </div>
848
+
849
+ <?php else : ?>
850
+ <div class="attr-col-lg-6">
851
+ <div class="mf-setting-input-group">
852
+ <div class="attr-form-group">
853
+ <label for="attr-input-label" class="mf-setting-label mf-setting-label attr-input-label"><?php esc_html_e('GetResponse API Key:', 'metform'); ?></label>
854
+ <input type="text" name="mf_getreponse_api_key_field" value="" disabled class="mf-setting-input mf-mailchimp-api-key attr-form-control" placeholder="<?php esc_html_e('GetResponse api key', 'metform'); ?>">
855
+
856
+ </div>
857
+ </div>
858
+ </div>
859
+ <div class="attr-col-lg-6">
860
+ <div class="mf-setting-input-desc">
861
+ <div class="mf-setting-input-desc-data">
862
+ <h2 class="mf-setting-input-desc--title">
863
+ <?php esc_html_e('How To', 'metfrom') ?></h2>
864
+ <p><?php esc_html_e('Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.', 'metform') ?>
865
+ </p>
866
+ <ol>
867
+ <li><?php esc_html_e('Item 1', 'metform') ?></li>
868
+ <li><?php esc_html_e('Item 2', 'metform') ?></li>
869
+ <li><?php esc_html_e('Item 3', 'metform') ?></li>
870
+ </ol>
871
+ </div>
872
+ <a href="https://help.wpmet.com/docs-cat/metform/" class="mf-setting-btn-link" target="_blank"><?php esc_html_e('View Documentation', 'metform'); ?></a>
873
+ </div>
874
+ </div>
875
+
876
+ <?php endif; ?>
877
+
878
+ </div>
879
+ </div>
880
+
881
+
882
+ </div>
883
+ </div>
884
+ <!-- <hr class="mf-setting-separator"> -->
885
+ <?php endif; ?>
886
+ </div>
887
+ </div>
888
+ <!-- ./End Mail Integration Tab -->
889
+
890
+ <!-- Integrations settings action -->
891
+
892
+ <?php echo do_action('metform_settings_content'); ?>
893
+
894
+ <!-- Integrations settings action end -->
895
+
896
+ <input type="hidden" name="mf_settings_page_action" value="save">
897
+ <?php wp_nonce_field('metform-settings-page', 'metform-settings-page'); ?>
898
+ </form>
899
+ </div>
900
+ </div>
901
+ </div>
902
+ </div>
903
+ </div>
core/entries/action.php CHANGED
@@ -55,7 +55,7 @@ class Action
55
 
56
  public function submit($form_id, $form_data, $file_data, $page_id = '')
57
  {
58
-
59
  $this->form_id = $form_id;
60
  $this->title = get_the_title($this->form_id);
61
  //$this->form_settings = $this->get_form_settings($form_id);
@@ -642,6 +642,7 @@ class Action
642
  wp_update_post($update);
643
 
644
  $this->response->data['form_id'] = $form_id;
 
645
 
646
  $entry_count = $this->get_entry_count();
647
  $entry_count++;
55
 
56
  public function submit($form_id, $form_data, $file_data, $page_id = '')
57
  {
58
+
59
  $this->form_id = $form_id;
60
  $this->title = get_the_title($this->form_id);
61
  //$this->form_settings = $this->get_form_settings($form_id);
642
  wp_update_post($update);
643
 
644
  $this->response->data['form_id'] = $form_id;
645
+ $this->response->data['entry_id'] = $this->entry_id;
646
 
647
  $entry_count = $this->get_entry_count();
648
  $entry_count++;
core/entries/export.php CHANGED
@@ -1,90 +1,90 @@
1
- <?php
2
-
3
- namespace MetForm\Core\Entries;
4
-
5
- use MetForm\Traits\Singleton;
6
-
7
- defined('ABSPATH') || exit;
8
-
9
- class Export {
10
-
11
- use Singleton;
12
-
13
- public function export_data($form_id) {
14
-
15
- if( !current_user_can( 'manage_options' ) ){
16
- return;
17
- }
18
-
19
- $fields = Action::instance()->get_fields($form_id);
20
- $title = get_the_title( $form_id );
21
-
22
- global $wpdb;
23
-
24
- $entries = $wpdb->get_results( "SELECT `post_id` FROM `".$wpdb->prefix."postmeta` WHERE `meta_key` = 'metform_entries__form_id' AND `meta_value` = $form_id", OBJECT );
25
- $entries = (is_array($entries)) ? $entries : [];
26
- $export = [];
27
- $header = [];
28
-
29
- foreach($entries as $entry){
30
- $entry_modify = [];
31
-
32
- $form_entry = get_post_meta( $entry->post_id, 'metform_entries__form_data', true );
33
- $form_entry = (is_array($form_entry) ? $form_entry : []);
34
- $file_entry = get_post_meta( $entry->post_id, 'metform_entries__file_upload', true );
35
- $file_entry = (is_array($file_entry) ? $file_entry : []);
36
-
37
- $entry_data = array_merge($form_entry, $file_entry);
38
- $entry_data = (is_array($entry_data)) ? $entry_data : [] ;
39
-
40
- $entry_modify ['ID'] = $entry->post_id;
41
- $header['__id'] = 'ID';
42
-
43
- foreach( $fields as $key => $value ) {
44
- $header_key = (($value->mf_input_name != '') ? $value->mf_input_name : $key);
45
- $header[$header_key] = empty($value->mf_input_label) ? $key : $value->mf_input_label;
46
-
47
- if($value->widgetType == 'mf-file-upload'){
48
- $entry_modify[$header_key] = (isset($entry_data[$key]) ? ((isset($entry_data[$key]['url'])) ? $entry_data[$key]['url'] : ' ' ) : ' ' );
49
- }else if($value->widgetType == 'mf-simple-repeater'){
50
- $data_string = '';
51
- if(is_array($entry_data[$key])){
52
- foreach( $entry_data[$key] as $key => $value ){
53
- $data_string .= $key.": ".$value." \n";
54
- }
55
- }
56
- $entry_modify[$header_key] = $data_string;
57
- }else{
58
- $entry_modify[$header_key] = (isset($entry_data[$key]) ? ((is_array($entry_data[$key])) ? implode(', ', $entry_data[$key]) : $entry_data[$key]) : ' ' );
59
- }
60
- }
61
-
62
- $entry_modify ['DATE'] = get_the_date( 'd-m-Y', $entry->post_id );
63
- $export[] = $entry_modify;
64
- $header['__dt'] = 'DATE';
65
- }
66
-
67
- $file_name = $title."-export-".time().".csv";
68
- header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
69
- header('Content-Description: File Transfer');
70
- header("Content-type: text/csv");
71
- header("Content-Disposition: attachment; filename={$file_name}");
72
- header("Expires: 0");
73
- header("Pragma: public");
74
- $file_pointer = @fopen( 'php://output', 'w' );
75
- $csv_header = false;
76
- foreach ( $export as $data ) {
77
- // Add a header row if it hasn't been added yet
78
- if ( !$csv_header ) {
79
- // Use the keys from $data as the titles
80
- fputcsv($file_pointer, $header);
81
- $csv_header = true;
82
- }
83
- // Put the data into the stream
84
- fputcsv($file_pointer, $data);
85
- }
86
- // Close the file
87
- fclose($file_pointer);
88
- exit;
89
- }
90
  }
1
+ <?php
2
+
3
+ namespace MetForm\Core\Entries;
4
+
5
+ use MetForm\Traits\Singleton;
6
+
7
+ defined('ABSPATH') || exit;
8
+
9
+ class Export {
10
+
11
+ use Singleton;
12
+
13
+ public function export_data($form_id) {
14
+
15
+ if( !current_user_can( 'manage_options' ) ){
16
+ return;
17
+ }
18
+
19
+ $fields = Action::instance()->get_fields($form_id);
20
+ $title = get_the_title( $form_id );
21
+
22
+ global $wpdb;
23
+
24
+ $entries = $wpdb->get_results( "SELECT `post_id` FROM `".$wpdb->prefix."postmeta` WHERE `meta_key` = 'metform_entries__form_id' AND `meta_value` = $form_id", OBJECT );
25
+ $entries = (is_array($entries)) ? $entries : [];
26
+ $export = [];
27
+ $header = [];
28
+
29
+ foreach($entries as $entry){
30
+ $entry_modify = [];
31
+
32
+ $form_entry = get_post_meta( $entry->post_id, 'metform_entries__form_data', true );
33
+ $form_entry = (is_array($form_entry) ? $form_entry : []);
34
+ $file_entry = get_post_meta( $entry->post_id, 'metform_entries__file_upload', true );
35
+ $file_entry = (is_array($file_entry) ? $file_entry : []);
36
+
37
+ $entry_data = array_merge($form_entry, $file_entry);
38
+ $entry_data = (is_array($entry_data)) ? $entry_data : [] ;
39
+
40
+ $entry_modify ['ID'] = $entry->post_id;
41
+ $header['__id'] = 'ID';
42
+
43
+ foreach( $fields as $key => $value ) {
44
+ $header_key = (($value->mf_input_name != '') ? $value->mf_input_name : $key);
45
+ $header[$header_key] = empty($value->mf_input_label) ? $key : $value->mf_input_label;
46
+
47
+ if($value->widgetType == 'mf-file-upload'){
48
+ $entry_modify[$header_key] = (isset($entry_data[$key]) ? ((isset($entry_data[$key]['url'])) ? $entry_data[$key]['url'] : ' ' ) : ' ' );
49
+ }else if($value->widgetType == 'mf-simple-repeater'){
50
+ $data_string = '';
51
+ if(is_array($entry_data[$key])){
52
+ foreach( $entry_data[$key] as $key => $value ){
53
+ $data_string .= $key.": ".$value." \n";
54
+ }
55
+ }
56
+ $entry_modify[$header_key] = $data_string;
57
+ }else{
58
+ $entry_modify[$header_key] = (isset($entry_data[$key]) ? ((is_array($entry_data[$key])) ? implode(', ', $entry_data[$key]) : $entry_data[$key]) : ' ' );
59
+ }
60
+ }
61
+
62
+ $entry_modify ['DATE'] = get_the_date( 'd-m-Y', $entry->post_id );
63
+ $export[] = $entry_modify;
64
+ $header['__dt'] = 'DATE';
65
+ }
66
+
67
+ $file_name = $title."-export-".time().".csv";
68
+ header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
69
+ header('Content-Description: File Transfer');
70
+ header("Content-type: text/csv");
71
+ header("Content-Disposition: attachment; filename={$file_name}");
72
+ header("Expires: 0");
73
+ header("Pragma: public");
74
+ $file_pointer = @fopen( 'php://output', 'w' );
75
+ $csv_header = false;
76
+ foreach ( $export as $data ) {
77
+ // Add a header row if it hasn't been added yet
78
+ if ( !$csv_header ) {
79
+ // Use the keys from $data as the titles
80
+ fputcsv($file_pointer, $header);
81
+ $csv_header = true;
82
+ }
83
+ // Put the data into the stream
84
+ fputcsv($file_pointer, $data);
85
+ }
86
+ // Close the file
87
+ fclose($file_pointer);
88
+ exit;
89
+ }
90
  }
core/entries/form-data.php CHANGED
@@ -6,7 +6,6 @@ defined('ABSPATH') || exit;
6
 
7
  class Form_Data
8
  {
9
-
10
  public static function format_form_data($form_id, $form_data)
11
  {
12
  $map_data = \MetForm\Core\Entries\Action::instance()->get_fields($form_id);
@@ -18,7 +17,7 @@ class Form_Data
18
  <tbody>
19
  <?php
20
  foreach ($map_data as $key => $value) {
21
- if (in_array($value['widgetType'], ['mf-simple-captcha', 'mf-recaptcha'])) {
22
  continue;
23
  }
24
 
@@ -28,13 +27,17 @@ class Form_Data
28
  echo "<tr class='mf-data-value'>";
29
  echo "<td class='mf-value-space'>&nbsp;</td>";
30
 
31
- if (!in_array($value['widgetType'], ['mf-file-upload', 'mf-simple-repeater', 'mf-signature', 'mf-like-dislike'])) {
32
  echo "<td>" . esc_html((array_key_exists($key, $form_data) ? ((is_array($form_data[$key])) ? implode(', ', $form_data[$key]) : $form_data[$key]) : ' ')) . "</td>";
33
  }
34
 
35
  if ($value['widgetType'] == 'mf-signature') {
36
  echo "<td><img class='signature-img' src='" . (isset($form_data[$key]) ? $form_data[$key] : '') . "'></td>";
37
  }
 
 
 
 
38
 
39
  if ($value['widgetType'] == 'mf-simple-repeater') {
40
  echo "<td>";
@@ -83,7 +86,7 @@ class Form_Data
83
  <?php
84
  foreach ($map_data as $key => $value) {
85
 
86
- if (in_array($value['widgetType'], ['mf-simple-captcha', 'mf-recaptcha'])) {
87
  continue;
88
  }
89
 
@@ -93,10 +96,14 @@ class Form_Data
93
  echo "<tr bgcolor='#FFFFFF'>";
94
  echo "<td width='20'>&nbsp;</td>";
95
 
96
- if (!in_array($value['widgetType'], ['mf-file-upload', 'mf-simple-repeater', 'mf-signature'])) {
97
  echo "<td>" . esc_html((array_key_exists($key, $form_data) ? ((is_array($form_data[$key])) ? implode(', ', $form_data[$key]) : $form_data[$key]) : ' ')) . "</td>";
98
  }
99
 
 
 
 
 
100
  if ($value['widgetType'] == 'mf-signature') {
101
  echo "<td><img width='200' height='100' src='" . (isset($form_data[$key]) ? $form_data[$key] : '') . "'></td>";
102
  }
6
 
7
  class Form_Data
8
  {
 
9
  public static function format_form_data($form_id, $form_data)
10
  {
11
  $map_data = \MetForm\Core\Entries\Action::instance()->get_fields($form_id);
17
  <tbody>
18
  <?php
19
  foreach ($map_data as $key => $value) {
20
+ if (in_array($value['widgetType'], ['mf-simple-captcha', 'mf-recaptcha', 'mf-file-upload'])) {
21
  continue;
22
  }
23
 
27
  echo "<tr class='mf-data-value'>";
28
  echo "<td class='mf-value-space'>&nbsp;</td>";
29
 
30
+ if (!in_array($value['widgetType'], ['mf-file-upload', 'mf-textarea', 'mf-simple-repeater', 'mf-signature', 'mf-like-dislike'])) {
31
  echo "<td>" . esc_html((array_key_exists($key, $form_data) ? ((is_array($form_data[$key])) ? implode(', ', $form_data[$key]) : $form_data[$key]) : ' ')) . "</td>";
32
  }
33
 
34
  if ($value['widgetType'] == 'mf-signature') {
35
  echo "<td><img class='signature-img' src='" . (isset($form_data[$key]) ? $form_data[$key] : '') . "'></td>";
36
  }
37
+
38
+ if ($value['widgetType'] == 'mf-textarea') {
39
+ echo "<td><pre style='font:inherit;margin:0;'>" . (isset($form_data[$key]) ? $form_data[$key] : '') . "</pre></td>";
40
+ }
41
 
42
  if ($value['widgetType'] == 'mf-simple-repeater') {
43
  echo "<td>";
86
  <?php
87
  foreach ($map_data as $key => $value) {
88
 
89
+ if (in_array($value['widgetType'], ['mf-simple-captcha', 'mf-recaptcha', 'mf-file-upload'])) {
90
  continue;
91
  }
92
 
96
  echo "<tr bgcolor='#FFFFFF'>";
97
  echo "<td width='20'>&nbsp;</td>";
98
 
99
+ if (!in_array($value['widgetType'], ['mf-file-upload', 'mf-textarea', 'mf-simple-repeater', 'mf-signature'])) {
100
  echo "<td>" . esc_html((array_key_exists($key, $form_data) ? ((is_array($form_data[$key])) ? implode(', ', $form_data[$key]) : $form_data[$key]) : ' ')) . "</td>";
101
  }
102
 
103
+ if ($value['widgetType'] == 'mf-textarea') {
104
+ echo "<td><pre style='font:inherit;margin:0;'>" . (isset($form_data[$key]) ? $form_data[$key] : '') . "</pre></td>";
105
+ }
106
+
107
  if ($value['widgetType'] == 'mf-signature') {
108
  echo "<td><img width='200' height='100' src='" . (isset($form_data[$key]) ? $form_data[$key] : '') . "'></td>";
109
  }
core/entries/hooks.php CHANGED
@@ -1,105 +1,105 @@
1
- <?php
2
- namespace MetForm\Core\Entries;
3
-
4
- defined('ABSPATH') || exit;
5
-
6
- class Hooks
7
- {
8
- use \MetForm\Traits\Singleton;
9
-
10
- public function __construct()
11
- {
12
-
13
- add_filter('manage_metform-entry_posts_columns', [$this, 'set_columns']);
14
- add_action('manage_metform-entry_posts_custom_column', [$this, 'render_column'], 10, 2);
15
- add_filter('parse_query', [$this, 'query_filter']);
16
- add_filter('wp_mail_from_name', [$this, 'wp_mail_from']);
17
-
18
- }
19
-
20
- public function set_columns($columns)
21
- {
22
-
23
- $date_column = $columns['date'];
24
-
25
- unset($columns['date']);
26
-
27
- $columns['form_name'] = esc_html__('Form Name', 'metform');
28
-
29
- $columns['referral'] = esc_html__('Referral','metform');
30
-
31
- $columns['date'] = esc_html($date_column);
32
-
33
-
34
-
35
- return $columns;
36
- }
37
-
38
- public function render_column($column, $post_id)
39
- {
40
- switch ($column) {
41
- case 'form_name':
42
- $form_id = get_post_meta($post_id, 'metform_entries__form_id', true);
43
- $form_name = get_post((int) $form_id);
44
- $post_title = (isset($form_name->post_title) ? $form_name->post_title : '');
45
-
46
- global $wp;
47
- $current_url = add_query_arg($wp->query_string . "&mf_form_id=" . $form_id, '', home_url($wp->request));
48
-
49
- echo "<a data-metform-form-id=" . esc_attr($form_id) . " class='mf-entry-filter mf-entry-flter-form_id' href=" . esc_url($current_url) . ">" . esc_html($post_title) . "</a>";
50
- break;
51
-
52
- case 'referral':
53
- $page_id = get_post_meta( $post_id, 'mf_page_id',true );
54
-
55
- global $wp;
56
- $current_url = add_query_arg($wp->query_string . "&mf_ref_id=" . $page_id, '', home_url($wp->request));
57
-
58
- echo "<a class='mf-entry-filter mf-entry-flter-form_id' href='" . esc_url($current_url) . "'>".get_the_title($page_id)."</a>";
59
- break;
60
- }
61
- }
62
-
63
- public function query_filter($query)
64
- {
65
- global $pagenow;
66
- $current_page = isset($_GET['post_type']) ? sanitize_key($_GET['post_type']) : '';
67
-
68
- if (
69
- is_admin()
70
- && 'metform-entry' == $current_page
71
- && 'edit.php' == $pagenow
72
- && $query->query_vars['post_type'] == 'metform-entry'
73
- && isset($_GET['mf_form_id'])
74
- && $_GET['mf_form_id'] != 'all'
75
- ) {
76
- $form_id = sanitize_key($_GET['mf_form_id']);
77
- $query->query_vars['meta_key'] = 'metform_entries__form_id';
78
- $query->query_vars['meta_value'] = $form_id;
79
- $query->query_vars['meta_compare'] = '=';
80
- }
81
-
82
- if (
83
- is_admin()
84
- && 'metform-entry' == $current_page
85
- && 'edit.php' == $pagenow
86
- && $query->query_vars['post_type'] == 'metform-entry'
87
- && isset($_GET['mf_ref_id'])
88
- && $_GET['mf_ref_id'] != 'all'
89
- ) {
90
- $page_id = sanitize_key($_GET['mf_ref_id']);
91
- $query->query_vars['meta_key'] = 'mf_page_id';
92
- $query->query_vars['meta_value'] = $page_id;
93
- $query->query_vars['meta_compare'] = '=';
94
- }
95
- }
96
-
97
-
98
-
99
-
100
- public function wp_mail_from($name)
101
- {
102
- return get_bloginfo('name');
103
- }
104
-
105
- }
1
+ <?php
2
+ namespace MetForm\Core\Entries;
3
+
4
+ defined('ABSPATH') || exit;
5
+
6
+ class Hooks
7
+ {
8
+ use \MetForm\Traits\Singleton;
9
+
10
+ public function __construct()
11
+ {
12
+
13
+ add_filter('manage_metform-entry_posts_columns', [$this, 'set_columns']);
14
+ add_action('manage_metform-entry_posts_custom_column', [$this, 'render_column'], 10, 2);
15
+ add_filter('parse_query', [$this, 'query_filter']);
16
+ add_filter('wp_mail_from_name', [$this, 'wp_mail_from']);
17
+
18
+ }
19
+
20
+ public function set_columns($columns)
21
+ {
22
+
23
+ $date_column = $columns['date'];
24
+
25
+ unset($columns['date']);
26
+
27
+ $columns['form_name'] = esc_html__('Form Name', 'metform');
28
+
29
+ $columns['referral'] = esc_html__('Referral','metform');
30
+
31
+ $columns['date'] = esc_html($date_column);
32
+
33
+
34
+
35
+ return $columns;
36
+ }
37
+
38
+ public function render_column($column, $post_id)
39
+ {
40
+ switch ($column) {
41
+ case 'form_name':
42
+ $form_id = get_post_meta($post_id, 'metform_entries__form_id', true);
43
+ $form_name = get_post((int) $form_id);
44
+ $post_title = (isset($form_name->post_title) ? $form_name->post_title : '');
45
+
46
+ global $wp;
47
+ $current_url = add_query_arg($wp->query_string . "&mf_form_id=" . $form_id, '', home_url($wp->request));
48
+
49
+ echo "<a data-metform-form-id=" . esc_attr($form_id) . " class='mf-entry-filter mf-entry-flter-form_id' href=" . esc_url($current_url) . ">" . esc_html($post_title) . "</a>";
50
+ break;
51
+
52
+ case 'referral':
53
+ $page_id = get_post_meta( $post_id, 'mf_page_id',true );
54
+
55
+ global $wp;
56
+ $current_url = add_query_arg($wp->query_string . "&mf_ref_id=" . $page_id, '', home_url($wp->request));
57
+
58
+ echo "<a class='mf-entry-filter mf-entry-flter-form_id' href='" . esc_url($current_url) . "'>".get_the_title($page_id)."</a>";
59
+ break;
60
+ }
61
+ }
62
+
63
+ public function query_filter($query)
64
+ {
65
+ global $pagenow;
66
+ $current_page = isset($_GET['post_type']) ? sanitize_key($_GET['post_type']) : '';
67
+
68
+ if (
69
+ is_admin()
70
+ && 'metform-entry' == $current_page
71
+ && 'edit.php' == $pagenow
72
+ && $query->query_vars['post_type'] == 'metform-entry'
73
+ && isset($_GET['mf_form_id'])
74
+ && $_GET['mf_form_id'] != 'all'
75
+ ) {
76
+ $form_id = sanitize_key($_GET['mf_form_id']);
77
+ $query->query_vars['meta_key'] = 'metform_entries__form_id';
78
+ $query->query_vars['meta_value'] = $form_id;
79
+ $query->query_vars['meta_compare'] = '=';
80
+ }
81
+
82
+ if (
83
+ is_admin()
84
+ && 'metform-entry' == $current_page
85
+ && 'edit.php' == $pagenow
86
+ && $query->query_vars['post_type'] == 'metform-entry'
87
+ && isset($_GET['mf_ref_id'])
88
+ && $_GET['mf_ref_id'] != 'all'
89
+ ) {
90
+ $page_id = sanitize_key($_GET['mf_ref_id']);
91
+ $query->query_vars['meta_key'] = 'mf_page_id';
92
+ $query->query_vars['meta_value'] = $page_id;
93
+ $query->query_vars['meta_compare'] = '=';
94
+ }
95
+ }
96
+
97
+
98
+
99
+
100
+ public function wp_mail_from($name)
101
+ {
102
+ return get_bloginfo('name');
103
+ }
104
+
105
+ }
core/entries/meta-data.php CHANGED
@@ -1,303 +1,304 @@
1
- <?php
2
-
3
- namespace MetForm\Core\Entries;
4
-
5
- defined('ABSPATH') || exit;
6
-
7
- class Meta_Data
8
- {
9
-
10
- private $browser_data = null;
11
- private $file_meta_data = null;
12
-
13
- private $form_id;
14
- private $form_data;
15
- private $form_settings;
16
-
17
- private $fields;
18
-
19
- public function __construct()
20
- {
21
- $this->cpt = new Cpt();
22
- add_action('save_post', [$this, 'store_form_data_cmb']);
23
- add_action('add_meta_boxes', [$this, 'add_form_id_cmb']);
24
- add_action('add_meta_boxes', [$this, 'add_form_data_cmb']);
25
-
26
- add_action('add_meta_boxes', [$this, 'add_browser_data_cmb']);
27
- add_action('add_meta_boxes', [$this, 'add_file_upload_cmb']);
28
- add_action('add_meta_boxes', [$this, 'add_form_payment_status_cmb']);
29
- add_action('add_meta_boxes', [$this, 'add_woo_payment_status_cmb']);
30
- }
31
-
32
- function add_form_id_cmb()
33
- {
34
- add_meta_box(
35
- 'metform_entries__form_id',
36
- esc_html__('Info', 'metform'),
37
- [$this, 'show_form_id_cmb'],
38
- $this->cpt->get_name(),
39
- 'side',
40
- 'high'
41
- );
42
- }
43
-
44
- function show_form_id_cmb($post)
45
- {
46
- wp_nonce_field('meta_nonce', 'meta_nonce');
47
-
48
- $this->form_id = get_post_meta($post->ID, 'metform_entries__form_id', true);
49
- // get fields by form id for further use
50
- $this->fields = Action::instance()->get_fields($this->form_id);
51
- $form_title = get_the_title((int)$this->form_id);
52
-
53
- ?>
54
-
55
- <div class="metform-entry-data container">
56
- <table class='mf-entry-data' cellpadding="5" cellspacing="0">
57
- <tbody>
58
- <tr class="mf-data-label">
59
- <td colspan='2'><strong><?php esc_html_e('Form Name ', 'metform'); ?></strong></td>
60
- </tr>
61
- <tr class='mf-data-value'>
62
- <td><?php echo esc_attr($form_title); ?></td>
63
- </tr>
64
- <tr class="mf-data-label">
65
- <td colspan='2'><strong><?php esc_html_e('Entry ID', 'metform'); ?></strong></td>
66
- </tr>
67
- <tr class='mf-data-value'>
68
- <td><?php echo esc_attr($post->ID); ?></td>
69
- </tr>
70
-
71
- </tbody>
72
- </table>
73
- </div>
74
-
75
- <?php
76
- }
77
-
78
- function add_form_data_cmb()
79
- {
80
- add_meta_box(
81
- 'metform_entries__form_data',
82
- esc_html__('Data'),
83
- [$this, 'show_form_data_cmb'],
84
- $this->cpt->get_name(),
85
- 'normal',
86
- 'high'
87
- );
88
- }
89
-
90
- function add_browser_data_cmb()
91
- {
92
- // call browser data meta when browser data present
93
- $post_id = (isset($_GET['post']) ? $_GET['post'] : '');
94
- $form_id = get_post_meta($post_id, 'metform_entries__form_id', true);
95
- $form_settings = \MetForm\Core\Forms\Action::instance()->get_all_data($form_id);
96
-
97
- $this->browser_data = get_post_meta($post_id, 'metform_form__entry_browser_data', true);
98
- if ($this->browser_data == '' && !isset($form_settings['capture_user_browser_data'])) {
99
- return;
100
- }
101
-
102
- add_meta_box(
103
- 'metform_form__entry_browser_data',
104
- esc_html__('Browser Data'),
105
- [$this, 'show_browser_data_cmb'],
106
- $this->cpt->get_name(),
107
- 'side',
108
- 'low'
109
- );
110
- }
111
-
112
- function show_browser_data_cmb($post)
113
- {
114
- if ($this->browser_data != '') {
115
- ?>
116
- <div class="metform-entry-data container">
117
- <table class='mf-entry-data' cellpadding="5" cellspacing="0">
118
- <?php
119
- foreach ($this->browser_data as $key => $value) {
120
- ?>
121
- <tbody>
122
- <tr class="mf-data-label">
123
- <td colspan='2'><strong><?php echo esc_attr($key); ?></strong></td>
124
- </tr>
125
- <tr class='mf-data-value'>
126
- <td><?php echo esc_attr($value); ?></td>
127
- </tr>
128
- </tbody>
129
- <?php
130
- }
131
- ?>
132
- </table>
133
- </div>
134
- <?php
135
- } else {
136
- echo esc_html__('Browser data not captured.', 'metform');
137
- }
138
- }
139
-
140
- function add_file_upload_cmb()
141
- {
142
- // call file meta when file data present
143
- $post_id = (isset($_GET['post']) ? $_GET['post'] : '');
144
-
145
- $this->file_meta_data = get_post_meta($post_id, 'metform_entries__file_upload', true);
146
- if (!is_array($this->file_meta_data)) {
147
- return;
148
- }
149
-
150
- add_meta_box(
151
- 'metform_entries__file_upload',
152
- esc_html__('Files'),
153
- [$this, 'show_file_upload_cmb'],
154
- $this->cpt->get_name(),
155
- 'normal',
156
- 'low'
157
- );
158
- }
159
-
160
- function show_form_data_cmb($post)
161
- {
162
- wp_nonce_field('meta_nonce', 'meta_nonce');
163
-
164
- $this->form_data = get_post_meta($post->ID, 'metform_entries__form_data', true);
165
- $this->form_data = (isset($this->form_data)) ? $this->form_data : "";
166
- // format all form data into html table
167
- if ($this->form_data != '') {
168
- $form_html = \MetForm\Core\Entries\Form_Data::format_form_data($this->form_id, $this->form_data);
169
- echo $form_html;
170
- }
171
- }
172
-
173
- function show_file_upload_cmb($post)
174
- {
175
- echo "<div class='mf-file-show'><p><i class='mf mf-file-2'></i> ";
176
- foreach ($this->file_meta_data as $key => $value) {
177
- if (empty($this->fields)) {
178
- return;
179
- }
180
- $file_url = isset($value['url']) ? $value['url'] : '';
181
- $file_type = isset($value['type']) ? $value['type'] : '';
182
- if ($file_url != '') {
183
- echo esc_html(((isset($this->fields[$key]->mf_input_label)) ? $this->fields[$key]->mf_input_label : $key) . " : ") . "<a target='_blank' class='mf-file-url' href=" . esc_url($file_url) . ">" . esc_html__('Download', 'elementskit') . "</a>";
184
- echo((in_array($file_type, ['image/jpeg', 'image/png', 'image/jpg', 'image/gif', 'image/ico'])) ? ' | <a href="#" class="" data-toggle="modal" data-target="#mfFileUploadModal' . $key . '">' . esc_html__('View', 'metform') . '</a>' : '');
185
- } else {
186
- echo esc_html(((isset($this->fields[$key]->mf_input_label)) ? $this->fields[$key]->mf_input_label : $key) . " : ") . esc_html__('This file is not uploaded.', 'metform');
187
- }
188
-
189
- ?>
190
- <!-- Modal -->
191
- <div class="attr-modal attr-fade mf-modal-container" id="mfFileUploadModal<?php echo $key ?>" tabindex="-1"
192
- role="dialog" aria-labelledby="mfFileUploadodalMLabel" aria-hidden="true">
193
- <div class="attr-modal-dialog" role="document">
194
- <div class="attr-modal-content">
195
- <div class="attr-modal-header">
196
- <button type="button" class="attr-close" data-dismiss="modal" aria-label="Close">
197
- <span aria-hidden="true">&times;</span>
198
- </button>
199
- </div>
200
- <div class="attr-modal-body">
201
- <img class="attr-img-responsive" src="<?php echo $file_url ?>">
202
- </div>
203
- </div>
204
- </div>
205
- </div>
206
- <?php
207
- }
208
- echo "</p></div>";
209
- }
210
-
211
- function store_form_data_cmb($post_id)
212
- {
213
-
214
- // add save code here
215
-
216
- }
217
-
218
- function add_woo_payment_status_cmb()
219
- {
220
- add_meta_box(
221
- 'metform_entries__woo_checkout_status',
222
- esc_html__('Woocommerce Checkout'),
223
- [$this, 'show_woo_checkout_status_cmb'],
224
- $this->cpt->get_name(),
225
- 'side',
226
- 'high'
227
- );
228
- }
229
-
230
- function show_woo_checkout_status_cmb($post)
231
- {
232
- $order_id = get_post_meta($post->ID, 'mf_woo_order_id', true);
233
- if($order_id == null) {
234
- return;
235
- }
236
- $order = wc_get_order($order_id);
237
- $order_url = get_admin_url() . 'post.php?post=' . $order_id . '&action=edit';
238
- ?>
239
-
240
- <div class="metform-entry-data container">
241
- <table class='mf-entry-data' cellpadding="5" cellspacing="0">
242
- <tbody>
243
- <tr class="mf-data-label">
244
- <td colspan='2'><strong><?php esc_html_e('Order ID ', 'metform'); ?></strong></td>
245
- </tr>
246
- <tr class='mf-data-value'>
247
- <td><?php echo esc_attr($order_id); ?></td>
248
- </tr>
249
- <tr class="mf-data-label">
250
- <td colspan='2'><strong><?php esc_html_e('Order Status', 'metform'); ?></strong></td>
251
- </tr>
252
- <tr class='mf-data-value'>
253
- <td><?php echo esc_attr($order->get_status()); ?></td>
254
- </tr>
255
-
256
- <tr class="mf-data-label">
257
- <td colspan='2'><strong><?php esc_html_e('Total', 'metform'); ?></strong></td>
258
- </tr>
259
- <tr class='mf-data-value'>
260
- <td><?php echo esc_attr($order->get_total() . ' ' . $order->get_currency()); ?></td>
261
- </tr>
262
-
263
- <tr class="mf-data-label">
264
-
265
- </tr>
266
- <tr class='mf-data-value'>
267
- <td><a class="button" href="<?php echo $order_url; ?>" target="__blank">Order Details</a></td>
268
- </tr>
269
-
270
- </tbody>
271
- </table>
272
- </div>
273
-
274
-
275
- <?php
276
-
277
- }
278
-
279
- function add_form_payment_status_cmb()
280
- {
281
-
282
- add_meta_box(
283
- 'metform_entries__payment_status',
284
- esc_html__('Payment'),
285
- [$this, 'show_form_payment_status_cmb'],
286
- $this->cpt->get_name(),
287
- 'side',
288
- 'high'
289
-
290
- );
291
- }
292
-
293
- function show_form_payment_status_cmb($post)
294
- {
295
- echo "Status : " . get_post_meta($post->ID, 'metform_entries__payment_status', true) . "<br>";
296
-
297
- if (get_post_meta($post->ID, 'metform_entries__payment_invoice', true)) {
298
- echo "Invoice : ";
299
- echo get_post_meta($post->ID, 'metform_entries__payment_invoice', true) . "<br>";
300
- }
301
-
302
- }
303
- }
 
1
+ <?php
2
+
3
+ namespace MetForm\Core\Entries;
4
+
5
+ defined('ABSPATH') || exit;
6
+
7
+ class Meta_Data
8
+ {
9
+
10
+ private $browser_data = null;
11
+ private $file_meta_data = null;
12
+
13
+ private $form_id;
14
+ private $form_data;
15
+ private $form_settings;
16
+
17
+ private $fields;
18
+
19
+ public function __construct()
20
+ {
21
+ $this->cpt = new Cpt();
22
+ add_action('save_post', [$this, 'store_form_data_cmb']);
23
+ add_action('add_meta_boxes', [$this, 'add_form_id_cmb']);
24
+ add_action('add_meta_boxes', [$this, 'add_form_data_cmb']);
25
+
26
+ add_action('add_meta_boxes', [$this, 'add_browser_data_cmb']);
27
+ add_action('add_meta_boxes', [$this, 'add_file_upload_cmb']);
28
+ add_action('add_meta_boxes', [$this, 'add_form_payment_status_cmb']);
29
+ add_action('add_meta_boxes', [$this, 'add_woo_payment_status_cmb']);
30
+ }
31
+
32
+ function add_form_id_cmb()
33
+ {
34
+ add_meta_box(
35
+ 'metform_entries__form_id',
36
+ esc_html__('Info', 'metform'),
37
+ [$this, 'show_form_id_cmb'],
38
+ $this->cpt->get_name(),
39
+ 'side',
40
+ 'high'
41
+ );
42
+ }
43
+
44
+ function show_form_id_cmb($post)
45
+ {
46
+ wp_nonce_field('meta_nonce', 'meta_nonce');
47
+
48
+ $this->form_id = get_post_meta($post->ID, 'metform_entries__form_id', true);
49
+ // get fields by form id for further use
50
+ $this->fields = Action::instance()->get_fields($this->form_id);
51
+ $form_title = get_the_title((int)$this->form_id);
52
+
53
+ ?>
54
+
55
+ <div class="metform-entry-data container">
56
+ <table class='mf-entry-data' cellpadding="5" cellspacing="0">
57
+ <tbody>
58
+ <tr class="mf-data-label">
59
+ <td colspan='2'><strong><?php esc_html_e('Form Name ', 'metform'); ?></strong></td>
60
+ </tr>
61
+ <tr class='mf-data-value'>
62
+ <td><?php echo esc_attr($form_title); ?></td>
63
+ </tr>
64
+ <tr class="mf-data-label">
65
+ <td colspan='2'><strong><?php esc_html_e('Entry ID', 'metform'); ?></strong></td>
66
+ </tr>
67
+ <tr class='mf-data-value'>
68
+ <td><?php echo esc_attr($post->ID); ?></td>
69
+ </tr>
70
+
71
+ </tbody>
72
+ </table>
73
+ </div>
74
+
75
+ <?php
76
+ }
77
+
78
+ function add_form_data_cmb()
79
+ {
80
+ add_meta_box(
81
+ 'metform_entries__form_data',
82
+ esc_html__('Data'),
83
+ [$this, 'show_form_data_cmb'],
84
+ $this->cpt->get_name(),
85
+ 'normal',
86
+ 'high'
87
+ );
88
+ }
89
+
90
+ function add_browser_data_cmb()
91
+ {
92
+ // call browser data meta when browser data present
93
+ $post_id = (isset($_GET['post']) ? $_GET['post'] : '');
94
+ $form_id = get_post_meta($post_id, 'metform_entries__form_id', true);
95
+ $form_settings = \MetForm\Core\Forms\Action::instance()->get_all_data($form_id);
96
+
97
+ $this->browser_data = get_post_meta($post_id, 'metform_form__entry_browser_data', true);
98
+ if ($this->browser_data == '' && !isset($form_settings['capture_user_browser_data'])) {
99
+ return;
100
+ }
101
+
102
+ add_meta_box(
103
+ 'metform_form__entry_browser_data',
104
+ esc_html__('Browser Data'),
105
+ [$this, 'show_browser_data_cmb'],
106
+ $this->cpt->get_name(),
107
+ 'side',
108
+ 'low'
109
+ );
110
+ }
111
+
112
+ function show_browser_data_cmb($post)
113
+ {
114
+ if ($this->browser_data != '') {
115
+ ?>
116
+ <div class="metform-entry-data container">
117
+ <table class='mf-entry-data' cellpadding="5" cellspacing="0">
118
+ <?php
119
+ foreach ($this->browser_data as $key => $value) {
120
+ ?>
121
+ <tbody>
122
+ <tr class="mf-data-label">
123
+ <td colspan='2'><strong><?php echo esc_attr($key); ?></strong></td>
124
+ </tr>
125
+ <tr class='mf-data-value'>
126
+ <td><?php echo esc_attr($value); ?></td>
127
+ </tr>
128
+ </tbody>
129
+ <?php
130
+ }
131
+ ?>
132
+ </table>
133
+ </div>
134
+ <?php
135
+ } else {
136
+ echo esc_html__('Browser data not captured.', 'metform');
137
+ }
138
+ }
139
+
140
+ function add_file_upload_cmb()
141
+ {
142
+ // call file meta when file data present
143
+ $post_id = (isset($_GET['post']) ? $_GET['post'] : '');
144
+
145
+ $this->file_meta_data = get_post_meta($post_id, 'metform_entries__file_upload', true);
146
+ if (!is_array($this->file_meta_data)) {
147
+ return;
148
+ }
149
+
150
+ add_meta_box(
151
+ 'metform_entries__file_upload',
152
+ esc_html__('Files'),
153
+ [$this, 'show_file_upload_cmb'],
154
+ $this->cpt->get_name(),
155
+ 'normal',
156
+ 'low'
157
+ );
158
+ }
159
+
160
+ function show_form_data_cmb($post)
161
+ {
162
+ wp_nonce_field('meta_nonce', 'meta_nonce');
163
+
164
+ $this->form_data = get_post_meta($post->ID, 'metform_entries__form_data', true);
165
+ $this->form_data = (isset($this->form_data)) ? $this->form_data : "";
166
+ // format all form data into html table
167
+ if ($this->form_data != '') {
168
+ $form_html = \MetForm\Core\Entries\Form_Data::format_form_data($this->form_id, $this->form_data);
169
+ echo $form_html;
170
+ }
171
+ }
172
+
173
+ function show_file_upload_cmb($post)
174
+ {
175
+ echo "<div class='mf-file-show'><p>";
176
+ foreach ($this->file_meta_data as $key => $value) {
177
+ if (empty($this->fields)) {
178
+ return;
179
+ }
180
+ echo "<i class='mf mf-file-2'></i> ";
181
+ $file_url = isset($value['url']) ? $value['url'] : '';
182
+ $file_type = isset($value['type']) ? $value['type'] : '';
183
+ if ($file_url != '') {
184
+ echo esc_html(((isset($this->fields[$key]->mf_input_label)) ? $this->fields[$key]->mf_input_label : $key) . " : ") . "<a target='_blank' class='mf-file-url' href=" . esc_url($file_url) . ">" . esc_html__('Download', 'elementskit') . "</a>";
185
+ echo((in_array($file_type, ['image/jpeg', 'image/png', 'image/jpg', 'image/gif', 'image/ico'])) ? ' | <a href="#" class="" data-toggle="modal" data-target="#mfFileUploadModal' . $key . '">' . esc_html__('View', 'metform') . '</a>' : '');
186
+ } else {
187
+ echo esc_html(((isset($this->fields[$key]->mf_input_label)) ? $this->fields[$key]->mf_input_label : $key) . " : ") . esc_html__('This file is not uploaded.', 'metform');
188
+ }
189
+
190
+ ?>
191
+ <!-- Modal -->
192
+ <div class="attr-modal attr-fade mf-modal-container" id="mfFileUploadModal<?php echo $key ?>" tabindex="-1"
193
+ role="dialog" aria-labelledby="mfFileUploadodalMLabel" aria-hidden="true">
194
+ <div class="attr-modal-dialog" role="document">
195
+ <div class="attr-modal-content">
196
+ <div class="attr-modal-header">
197
+ <button type="button" class="attr-close" data-dismiss="modal" aria-label="Close">
198
+ <span aria-hidden="true">&times;</span>
199
+ </button>
200
+ </div>
201
+ <div class="attr-modal-body">
202
+ <img class="attr-img-responsive" src="<?php echo $file_url ?>">
203
+ </div>
204
+ </div>
205
+ </div>
206
+ </div>
207
+ <?php
208
+ }
209
+ echo "</p></div>";
210
+ }
211
+
212
+ function store_form_data_cmb($post_id)
213
+ {
214
+
215
+ // add save code here
216
+
217
+ }
218
+
219
+ function add_woo_payment_status_cmb()
220
+ {
221
+ add_meta_box(
222
+ 'metform_entries__woo_checkout_status',
223
+ esc_html__('Woocommerce Checkout'),
224
+ [$this, 'show_woo_checkout_status_cmb'],
225
+ $this->cpt->get_name(),
226
+ 'side',
227
+ 'high'
228
+ );
229
+ }
230
+
231
+ function show_woo_checkout_status_cmb($post)
232
+ {
233
+ $order_id = get_post_meta($post->ID, 'mf_woo_order_id', true);
234
+ if($order_id == null) {
235
+ return;
236
+ }
237
+ $order = wc_get_order($order_id);
238
+ $order_url = get_admin_url() . 'post.php?post=' . $order_id . '&action=edit';
239
+ ?>
240
+
241
+ <div class="metform-entry-data container">
242
+ <table class='mf-entry-data' cellpadding="5" cellspacing="0">
243
+ <tbody>
244
+ <tr class="mf-data-label">
245
+ <td colspan='2'><strong><?php esc_html_e('Order ID ', 'metform'); ?></strong></td>
246
+ </tr>
247
+ <tr class='mf-data-value'>
248
+ <td><?php echo esc_attr($order_id); ?></td>
249
+ </tr>
250
+ <tr class="mf-data-label">
251
+ <td colspan='2'><strong><?php esc_html_e('Order Status', 'metform'); ?></strong></td>
252
+ </tr>
253
+ <tr class='mf-data-value'>
254
+ <td><?php echo esc_attr($order->get_status()); ?></td>
255
+ </tr>
256
+
257
+ <tr class="mf-data-label">
258
+ <td colspan='2'><strong><?php esc_html_e('Total', 'metform'); ?></strong></td>
259
+ </tr>
260
+ <tr class='mf-data-value'>
261
+ <td><?php echo esc_attr($order->get_total() . ' ' . $order->get_currency()); ?></td>
262
+ </tr>
263
+
264
+ <tr class="mf-data-label">
265
+
266
+ </tr>
267
+ <tr class='mf-data-value'>
268
+ <td><a class="button" href="<?php echo $order_url; ?>" target="__blank">Order Details</a></td>
269
+ </tr>
270
+
271
+ </tbody>
272
+ </table>
273
+ </div>
274
+
275
+
276
+ <?php
277
+
278
+ }
279
+
280
+ function add_form_payment_status_cmb()
281
+ {
282
+
283
+ add_meta_box(
284
+ 'metform_entries__payment_status',
285
+ esc_html__('Payment'),
286
+ [$this, 'show_form_payment_status_cmb'],
287
+ $this->cpt->get_name(),
288
+ 'side',
289
+ 'high'
290
+
291
+ );
292
+ }
293
+
294
+ function show_form_payment_status_cmb($post)
295
+ {
296
+ echo "Status : " . get_post_meta($post->ID, 'metform_entries__payment_status', true) . "<br>";
297
+
298
+ if (get_post_meta($post->ID, 'metform_entries__payment_invoice', true)) {
299
+ echo "Invoice : ";
300
+ echo get_post_meta($post->ID, 'metform_entries__payment_invoice', true) . "<br>";
301
+ }
302
+
303
+ }
304
+ }
core/entries/metform-shortcode.php CHANGED
@@ -1,61 +1,61 @@
1
- <?php
2
- namespace MetForm\Core\Entries;
3
- defined( 'ABSPATH' ) || exit;
4
-
5
- Class Metform_Shortcode{
6
- use \MetForm\Traits\Singleton;
7
-
8
- private $all_keys;
9
- private $all_values;
10
- private $main_data;
11
-
12
- public function get_process_shortcode($string){
13
- $replace = str_replace($this->all_keys, $this->all_values, $string);
14
- return $replace;
15
-
16
- }
17
-
18
- public function set_values($main_data){
19
- $this->main_data = $main_data;
20
- $this->formate_keys();
21
- $this->formate_values();
22
- return $this;
23
- }
24
-
25
- public function get_all_keys(){
26
- return $this->all_keys;
27
- }
28
-
29
- public function get_all_values(){
30
- return $this->all_values;
31
- }
32
-
33
- public function set_all_keys($main_data){
34
- $this->main_data = $main_data;
35
- $this->formate_keys();
36
- return $this;
37
- }
38
-
39
- public function set_all_values($main_data){
40
- $this->main_data = $main_data;
41
- $this->formate_values();
42
- return $this;
43
- }
44
-
45
- public function formate_keys(){
46
-
47
- $this->all_keys = array_map(function($v){
48
- return "[".$v."]";
49
- }, array_keys($this->main_data) );
50
-
51
- }
52
-
53
- public function formate_values(){
54
-
55
- $this->all_values = array_map(function($value){
56
- return (is_array($value) ? implode(', ', $value) : $value);
57
- }, $this->main_data);
58
-
59
- }
60
-
61
  }
1
+ <?php
2
+ namespace MetForm\Core\Entries;
3
+ defined( 'ABSPATH' ) || exit;
4
+
5
+ Class Metform_Shortcode{
6
+ use \MetForm\Traits\Singleton;
7
+
8
+ private $all_keys;
9
+ private $all_values;
10
+ private $main_data;
11
+
12
+ public function get_process_shortcode($string){
13
+ $replace = str_replace($this->all_keys, $this->all_values, $string);
14
+ return $replace;
15
+
16
+ }
17
+
18
+ public function set_values($main_data){
19
+ $this->main_data = $main_data;
20
+ $this->formate_keys();
21
+ $this->formate_values();
22
+ return $this;
23
+ }
24
+
25
+ public function get_all_keys(){
26
+ return $this->all_keys;
27
+ }
28
+
29
+ public function get_all_values(){
30
+ return $this->all_values;
31
+ }
32
+
33
+ public function set_all_keys($main_data){
34
+ $this->main_data = $main_data;
35
+ $this->formate_keys();
36
+ return $this;
37
+ }
38
+
39
+ public function set_all_values($main_data){
40
+ $this->main_data = $main_data;
41
+ $this->formate_values();
42
+ return $this;
43
+ }
44
+
45
+ public function formate_keys(){
46
+
47
+ $this->all_keys = array_map(function($v){
48
+ return "[".$v."]";
49
+ }, array_keys($this->main_data) );
50
+
51
+ }
52
+
53
+ public function formate_values(){
54
+
55
+ $this->all_values = array_map(function($value){
56
+ return (is_array($value) ? implode(', ', $value) : $value);
57
+ }, $this->main_data);
58
+
59
+ }
60
+
61
  }
core/forms/builder.php CHANGED
@@ -1,56 +1,56 @@
1
- <?php
2
- namespace MetForm\Core\Forms;
3
- defined( 'ABSPATH' ) || exit;
4
-
5
- Class Builder{
6
-
7
- use \MetForm\Traits\Singleton;
8
-
9
- public function get_editor( $form_id ){
10
- $builder_form_id = get_post($form_id);
11
- $builder_form_id = $builder_form_id->ID;
12
-
13
- $url = get_admin_url() . '/post.php?post='.$builder_form_id.'&action=elementor';
14
- wp_redirect( $url );
15
- exit;
16
- }
17
-
18
- public function create_form($title, $template_id = 0, $data = []){
19
- $template_id = 'template-' . (($template_id == '') ? 0 : $template_id);
20
- $title = ($title == '' ? 'New Form # ' . time() : $title);
21
- $template_content = \MetForm\Templates\Base::instance()->get_template_contents($template_id);
22
-
23
- $user_id = get_current_user_id();
24
-
25
- $defaults = array(
26
- 'post_author' => $user_id,
27
- 'post_content' => '',
28
- 'post_title' => $title,
29
- 'post_status' => 'publish',
30
- 'post_type' => 'metform-form',
31
- );
32
- $builder_form_id = wp_insert_post($defaults);
33
-
34
- $default_settings = array_map(function(){
35
- return '';
36
- }, \MetForm\Core\Forms\Base::instance()->form->get_form_settings_fields());
37
-
38
- $default_settings['success_message'] = esc_html('Thank you! Form submitted successfully.');
39
- $default_settings['store_entries'] = '1';
40
- $default_settings['form_title'] = $defaults['post_title'];
41
-
42
- update_post_meta( $builder_form_id, '_wp_page_template', 'elementor_canvas' );
43
- update_post_meta( $builder_form_id, \MetForm\Core\Forms\Base::instance()->form->get_key_form_settings(), $default_settings );
44
- update_post_meta( $builder_form_id, '_elementor_edit_mode', 'builder');
45
-
46
- if($data != ''){
47
- update_post_meta( $builder_form_id, '_metform_cloned_id', $template_id);
48
- }
49
-
50
- if($template_content != null){
51
- update_post_meta($builder_form_id, '_elementor_data', json_encode($template_content));
52
- }
53
-
54
- return $builder_form_id;
55
- }
56
  }
1
+ <?php
2
+ namespace MetForm\Core\Forms;
3
+ defined( 'ABSPATH' ) || exit;
4
+
5
+ Class Builder{
6
+
7
+ use \MetForm\Traits\Singleton;
8
+
9
+ public function get_editor( $form_id ){
10
+ $builder_form_id = get_post($form_id);
11
+ $builder_form_id = $builder_form_id->ID;
12
+
13
+ $url = get_admin_url() . '/post.php?post='.$builder_form_id.'&action=elementor';
14
+ wp_redirect( $url );
15
+ exit;
16
+ }
17
+
18
+ public function create_form($title, $template_id = 0, $data = []){
19
+ $template_id = 'template-' . (($template_id == '') ? 0 : $template_id);
20
+ $title = ($title == '' ? 'New Form # ' . time() : $title);
21
+ $template_content = \MetForm\Templates\Base::instance()->get_template_contents($template_id);
22
+
23
+ $user_id = get_current_user_id();
24
+
25
+ $defaults = array(
26
+ 'post_author' => $user_id,
27
+ 'post_content' => '',
28
+ 'post_title' => $title,
29
+ 'post_status' => 'publish',
30
+ 'post_type' => 'metform-form',
31
+ );
32
+ $builder_form_id = wp_insert_post($defaults);
33
+
34
+ $default_settings = array_map(function(){
35
+ return '';
36
+ }, \MetForm\Core\Forms\Base::instance()->form->get_form_settings_fields());
37
+
38
+ $default_settings['success_message'] = esc_html('Thank you! Form submitted successfully.');
39
+ $default_settings['store_entries'] = '1';
40
+ $default_settings['form_title'] = $defaults['post_title'];
41
+
42
+ update_post_meta( $builder_form_id, '_wp_page_template', 'elementor_canvas' );
43
+ update_post_meta( $builder_form_id, \MetForm\Core\Forms\Base::instance()->form->get_key_form_settings(), $default_settings );
44
+ update_post_meta( $builder_form_id, '_elementor_edit_mode', 'builder');
45
+
46
+ if($data != ''){
47
+ update_post_meta( $builder_form_id, '_metform_cloned_id', $template_id);
48
+ }
49
+
50
+ if($template_content != null){
51
+ update_post_meta($builder_form_id, '_elementor_data', json_encode($template_content));
52
+ }
53
+
54
+ return $builder_form_id;
55
+ }
56
  }
core/forms/views/modal-editor.php CHANGED
@@ -680,12 +680,12 @@
680
  <label class="attr-input-label">
681
  <input type="checkbox" value="1" name="mf_hubspot"
682
  class="mf-admin-control-input mf-hubsopt">
683
- <span><?php esc_html_e('Hubsopt Contact:', 'metform'); ?></span>
684
  </label>
685
  <span
686
- class='mf-input-help'><?php esc_html_e('Integrate hubsopt with this form. ', 'metform'); ?><a
687
  target="_blank"
688
- href="<?php echo get_dashboard_url() . 'admin.php?page=metform-menu-settings'; ?>"><?php esc_html_e('Configure Hubsopt.', 'metform'); ?></a></span>
689
  </div>
690
 
691
  <div class="mf-input-group">
@@ -693,7 +693,7 @@
693
  <label class="attr-input-label">
694
  <input type="checkbox" value="1" name="mf_hubspot_forms"
695
  class="mf-admin-control-input mf-hubspot-forms">
696
- <span><?php esc_html_e('Hubsopt Forms:', 'metform'); ?></span>
697
  </label>
698
 
699
 
@@ -701,7 +701,7 @@
701
 
702
  <label class="attr-input-label">
703
 
704
- <span><?php esc_html_e('Fetch hubsopt forms'); ?><span
705
  class="dashicons dashicons-update metfrom-btn-refresh-hubsopt-list"></span></span>
706
  </label>
707
 
680
  <label class="attr-input-label">
681
  <input type="checkbox" value="1" name="mf_hubspot"
682
  class="mf-admin-control-input mf-hubsopt">
683
+ <span><?php esc_html_e('Hubspot Contact:', 'metform'); ?></span>
684
  </label>
685
  <span
686
+ class='mf-input-help'><?php esc_html_e('Integrate hubspot with this form. ', 'metform'); ?><a
687
  target="_blank"
688
+ href="<?php echo get_dashboard_url() . 'admin.php?page=metform-menu-settings'; ?>"><?php esc_html_e('Configure Hubspot.', 'metform'); ?></a></span>
689
  </div>
690
 
691
  <div class="mf-input-group">
693
  <label class="attr-input-label">
694
  <input type="checkbox" value="1" name="mf_hubspot_forms"
695
  class="mf-admin-control-input mf-hubspot-forms">
696
+ <span><?php esc_html_e('Hubspot Forms:', 'metform'); ?></span>
697
  </label>
698
 
699
 
701
 
702
  <label class="attr-input-label">
703
 
704
+ <span><?php esc_html_e('Fetch hubspot forms'); ?><span
705
  class="dashicons dashicons-update metfrom-btn-refresh-hubsopt-list"></span></span>
706
  </label>
707
 
core/integrations/Mail_Adapter.php CHANGED
@@ -1,18 +1,18 @@
1
- <?php
2
-
3
- namespace MetForm\Core\Integrations;
4
-
5
-
6
- class Mail_Adapter implements Mail_Adapter_Contract {
7
-
8
-
9
-
10
- public function get_token() {
11
-
12
- }
13
-
14
-
15
- public function get_adapter(){
16
-
17
- }
18
  }
1
+ <?php
2
+
3
+ namespace MetForm\Core\Integrations;
4
+
5
+
6
+ class Mail_Adapter implements Mail_Adapter_Contract {
7
+
8
+
9
+
10
+ public function get_token() {
11
+
12
+ }
13
+
14
+
15
+ public function get_adapter(){
16
+
17
+ }
18
  }
core/integrations/Mail_Adapter_Contract.php CHANGED
@@ -1,13 +1,13 @@
1
- <?php
2
-
3
- namespace MetForm\Core\Integrations;
4
-
5
-
6
- interface Mail_Adapter_Contract {
7
-
8
-
9
- public function get_token();
10
-
11
- public function get_adapter();
12
-
13
  }
1
+ <?php
2
+
3
+ namespace MetForm\Core\Integrations;
4
+
5
+
6
+ interface Mail_Adapter_Contract {
7
+
8
+
9
+ public function get_token();
10
+
11
+ public function get_adapter();
12
+
13
  }
core/integrations/google-recaptcha.php CHANGED
@@ -1,85 +1,85 @@
1
- <?php
2
- namespace MetForm\Core\Integrations;
3
- defined( 'ABSPATH' ) || exit;
4
-
5
- class Google_Recaptcha {
6
-
7
- use \MetForm\Traits\Singleton;
8
-
9
- private $return;
10
-
11
- public function verify_captcha_v2( $form_data, $form_settings ){
12
-
13
- $secretKey = ((isset($form_settings['mf_recaptcha_secret_key']) && ($form_settings['mf_recaptcha_secret_key'] != '')) ? $form_settings['mf_recaptcha_secret_key'] : '');
14
-
15
- $captcha = (isset($form_data['g-recaptcha-response']) ? $form_data['g-recaptcha-response'] : '');
16
-
17
- $url = 'https://www.google.com/recaptcha/api/siteverify';
18
- $data = array(
19
- 'secret' => $secretKey,
20
- 'response' => $captcha,
21
- 'remoteip' => $_SERVER['REMOTE_ADDR']
22
- );
23
-
24
- $curlConfig = array(
25
- CURLOPT_URL => $url,
26
- CURLOPT_POST => true,
27
- CURLOPT_RETURNTRANSFER => true,
28
- CURLOPT_POSTFIELDS => $data
29
- );
30
-
31
- $ch = curl_init();
32
- curl_setopt_array($ch, $curlConfig);
33
- $response = curl_exec($ch);
34
- curl_close($ch);
35
-
36
- $responseKeys = json_decode($response,true);
37
- $this->return['responseKeys'] = $responseKeys;
38
-
39
- if($responseKeys["success"]) {
40
- $this->return['status'] = 1;
41
- } else {
42
- $this->return['status'] = 0;
43
- $this->return['error'] = esc_html__('Captcha is not verified.','metform');
44
- }
45
-
46
- return $this->return;
47
- }
48
-
49
- public function verify_captcha_v3( $form_data, $form_settings ){
50
-
51
- $secretKey = ((isset($form_settings['mf_recaptcha_secret_key_v3']) && ($form_settings['mf_recaptcha_secret_key_v3'] != '')) ? $form_settings['mf_recaptcha_secret_key_v3'] : '');
52
-
53
- $captcha = (isset($form_data['g-recaptcha-response-v3']) ? $form_data['g-recaptcha-response-v3'] : '');
54
-
55
- $url = 'https://www.google.com/recaptcha/api/siteverify';
56
- $data = array(
57
- 'secret' => $secretKey,
58
- 'response' => $captcha,
59
- );
60
-
61
- $curlConfig = array(
62
- CURLOPT_URL => $url,
63
- CURLOPT_POST => true,
64
- CURLOPT_POSTFIELDS => $data,
65
- CURLOPT_RETURNTRANSFER => true,
66
- );
67
-
68
- $ch = curl_init();
69
- curl_setopt_array($ch, $curlConfig);
70
- $response = curl_exec($ch);
71
- curl_close($ch);
72
-
73
- $responseKeys = json_decode($response,true);
74
- $this->return['responseKeys'] = $responseKeys;
75
-
76
- if($responseKeys["success"]) {
77
- $this->return['status'] = 1;
78
- } else {
79
- $this->return['status'] = 0;
80
- $this->return['error'] = esc_html__('Captcha is not verified.','metform');
81
- }
82
-
83
- return $this->return;
84
- }
85
  }
1
+ <?php
2
+ namespace MetForm\Core\Integrations;
3
+ defined( 'ABSPATH' ) || exit;
4
+
5
+ class Google_Recaptcha {
6
+
7
+ use \MetForm\Traits\Singleton;
8
+
9
+ private $return;
10
+
11
+ public function verify_captcha_v2( $form_data, $form_settings ){
12
+
13
+ $secretKey = ((isset($form_settings['mf_recaptcha_secret_key']) && ($form_settings['mf_recaptcha_secret_key'] != '')) ? $form_settings['mf_recaptcha_secret_key'] : '');
14
+
15
+ $captcha = (isset($form_data['g-recaptcha-response']) ? $form_data['g-recaptcha-response'] : '');
16
+
17
+ $url = 'https://www.google.com/recaptcha/api/siteverify';
18
+ $data = array(
19
+ 'secret' => $secretKey,
20
+ 'response' => $captcha,
21
+ 'remoteip' => $_SERVER['REMOTE_ADDR']
22
+ );
23
+
24
+ $curlConfig = array(
25
+ CURLOPT_URL => $url,
26
+ CURLOPT_POST => true,
27
+ CURLOPT_RETURNTRANSFER => true,
28
+ CURLOPT_POSTFIELDS => $data
29
+ );
30
+
31
+ $ch = curl_init();
32
+ curl_setopt_array($ch, $curlConfig);
33
+ $response = curl_exec($ch);
34
+ curl_close($ch);
35
+
36
+ $responseKeys = json_decode($response,true);
37
+ $this->return['responseKeys'] = $responseKeys;
38
+
39
+ if($responseKeys["success"]) {
40
+ $this->return['status'] = 1;
41
+ } else {
42
+ $this->return['status'] = 0;
43
+ $this->return['error'] = esc_html__('Captcha is not verified.','metform');
44
+ }
45
+
46
+ return $this->return;
47
+ }
48
+
49
+ public function verify_captcha_v3( $form_data, $form_settings ){
50
+
51
+ $secretKey = ((isset($form_settings['mf_recaptcha_secret_key_v3']) && ($form_settings['mf_recaptcha_secret_key_v3'] != '')) ? $form_settings['mf_recaptcha_secret_key_v3'] : '');
52
+
53
+ $captcha = (isset($form_data['g-recaptcha-response-v3']) ? $form_data['g-recaptcha-response-v3'] : '');
54
+
55
+ $url = 'https://www.google.com/recaptcha/api/siteverify';
56
+ $data = array(
57
+ 'secret' => $secretKey,
58
+ 'response' => $captcha,
59
+ );
60
+
61
+ $curlConfig = array(
62
+ CURLOPT_URL => $url,
63
+ CURLOPT_POST => true,
64
+ CURLOPT_POSTFIELDS => $data,
65
+ CURLOPT_RETURNTRANSFER => true,
66
+ );
67
+
68
+ $ch = curl_init();
69
+ curl_setopt_array($ch, $curlConfig);
70
+ $response = curl_exec($ch);
71
+ curl_close($ch);
72
+
73
+ $responseKeys = json_decode($response,true);
74
+ $this->return['responseKeys'] = $responseKeys;
75
+
76
+ if($responseKeys["success"]) {
77
+ $this->return['status'] = 1;
78
+ } else {
79
+ $this->return['status'] = 0;
80
+ $this->return['error'] = esc_html__('Captcha is not verified.','metform');
81
+ }
82
+
83
+ return $this->return;
84
+ }
85
  }
core/integrations/mail-chimp.php CHANGED
@@ -1,92 +1,92 @@
1
- <?php
2
-
3
- namespace MetForm\Core\Integrations;
4
-
5
- defined('ABSPATH') || exit;
6
-
7
- class Mail_Chimp
8
- {
9
-
10
- public function call_api($form_data, $settings)
11
- {
12
-
13
- $return = [];
14
- $auth = [
15
- 'api_key' => ($settings['auth']['mf_mailchimp_api_key'] != '') ? $settings['auth']['mf_mailchimp_api_key'] : null,
16
- 'list_id' => ($settings['auth']['mf_mailchimp_list_id'] != '') ? $settings['auth']['mf_mailchimp_list_id'] : null,
17
-
18
- ];
19
-
20
- $data = [
21
- 'email_address' => (isset($form_data[$settings['email_name']]) ? $form_data[$settings['email_name']] : ''),
22
- 'status' => 'subscribed',
23
- 'status_if_new' => 'subscribed',
24
- 'merge_fields' => [
25
- 'FNAME' => (isset($form_data['mf-listing-fname']) ? $form_data['mf-listing-fname'] : ''),
26
- 'LNAME' => (isset($form_data['mf-listing-lname']) ? $form_data['mf-listing-lname'] : ''),
27
- // 'PHONE' => (isset($form_data['mf-listing-phone']) ? $form_data['mf-listing-phone'] : ''),
28
- ],
29
- ];
30
- $server = explode('-', $auth['api_key']);
31
- $url = 'https://' . $server[1] . '.api.mailchimp.com/3.0/lists/' . $auth['list_id'] . '/members/';
32
-
33
- $response = wp_remote_post(
34
- $url,
35
- [
36
- 'method' => 'POST',
37
- 'data_format' => 'body',
38
- 'timeout' => 45,
39
- 'headers' => [
40
-
41
- 'Authorization' => 'apikey ' . $auth['api_key'],
42
- 'Content-Type' => 'application/json; charset=utf-8'
43
- ],
44
- 'body' => json_encode($data)
45
- ]
46
- );
47
-
48
- if (is_wp_error($response)) {
49
- $error_message = $response->get_error_message();
50
- $return['status'] = 0;
51
- $return['msg'] = "Something went wrong: " . esc_html($error_message);
52
- } else {
53
- $return['status'] = 1;
54
- $return['msg'] = esc_html__('Your data inserted on ActiveCampaign.', 'metform');
55
- }
56
-
57
- return $return;
58
- }
59
-
60
- public static function get_list($api_key){
61
-
62
- $server = explode('-',$api_key);
63
-
64
- $url = 'https://'.$server[1].'.api.mailchimp.com/3.0/lists';
65
-
66
- $response = wp_remote_post( $url, [
67
- 'method' => 'GET',
68
- 'data_format' => 'body',
69
- 'timeout' => 45,
70
- 'headers' => [
71
-
72
- 'Authorization' => 'apikey '.$api_key,
73
- 'Content-Type' => 'application/json; charset=utf-8'
74
- ],
75
- 'body' => ''
76
- ]
77
- );
78
-
79
- return $response;
80
-
81
- // if ( is_wp_error( $response ) ) {
82
- // $error_message = $response->get_error_message();
83
- // $return['status'] = 0;
84
- // $return['msg'] = "Something went wrong: ".esc_html($error_message);
85
- // } else {
86
- // $return['status'] = 1;
87
- // $return['msg'] = esc_html__('Your data inserted on mailchimp.', 'metform');
88
- // }
89
-
90
- // return $return;
91
- }
92
- }
1
+ <?php
2
+
3
+ namespace MetForm\Core\Integrations;
4
+
5
+ defined('ABSPATH') || exit;
6
+
7
+ class Mail_Chimp
8
+ {
9
+
10
+ public function call_api($form_data, $settings)
11
+ {
12
+
13
+ $return = [];
14
+ $auth = [
15
+ 'api_key' => ($settings['auth']['mf_mailchimp_api_key'] != '') ? $settings['auth']['mf_mailchimp_api_key'] : null,
16
+ 'list_id' => ($settings['auth']['mf_mailchimp_list_id'] != '') ? $settings['auth']['mf_mailchimp_list_id'] : null,
17
+
18
+ ];
19
+
20
+ $data = [
21
+ 'email_address' => (isset($form_data[$settings['email_name']]) ? $form_data[$settings['email_name']] : ''),
22
+ 'status' => 'subscribed',
23
+ 'status_if_new' => 'subscribed',
24
+ 'merge_fields' => [
25
+ 'FNAME' => (isset($form_data['mf-listing-fname']) ? $form_data['mf-listing-fname'] : ''),
26
+ 'LNAME' => (isset($form_data['mf-listing-lname']) ? $form_data['mf-listing-lname'] : ''),
27
+ // 'PHONE' => (isset($form_data['mf-listing-phone']) ? $form_data['mf-listing-phone'] : ''),
28
+ ],
29
+ ];
30
+ $server = explode('-', $auth['api_key']);
31
+ $url = 'https://' . $server[1] . '.api.mailchimp.com/3.0/lists/' . $auth['list_id'] . '/members/';
32
+
33
+ $response = wp_remote_post(
34
+ $url,
35
+ [
36
+ 'method' => 'POST',
37
+ 'data_format' => 'body',
38
+ 'timeout' => 45,
39
+ 'headers' => [
40
+
41
+ 'Authorization' => 'apikey ' . $auth['api_key'],
42
+ 'Content-Type' => 'application/json; charset=utf-8'
43
+ ],
44
+ 'body' => json_encode($data)
45
+ ]
46
+ );
47
+
48
+ if (is_wp_error($response)) {
49
+ $error_message = $response->get_error_message();
50
+ $return['status'] = 0;
51
+ $return['msg'] = "Something went wrong: " . esc_html($error_message);
52
+ } else {
53
+ $return['status'] = 1;
54
+ $return['msg'] = esc_html__('Your data inserted on ActiveCampaign.', 'metform');
55
+ }
56
+
57
+ return $return;
58
+ }
59
+
60
+ public static function get_list($api_key){
61
+
62
+ $server = explode('-',$api_key);
63
+
64
+ $url = 'https://'.$server[1].'.api.mailchimp.com/3.0/lists';
65
+
66
+ $response = wp_remote_post( $url, [
67
+ 'method' => 'GET',
68
+ 'data_format' => 'body',
69
+ 'timeout' => 45,
70
+ 'headers' => [
71
+
72
+ 'Authorization' => 'apikey '.$api_key,
73
+ 'Content-Type' => 'application/json; charset=utf-8'
74
+ ],
75
+ 'body' => ''
76
+ ]
77
+ );
78
+
79
+ return $response;
80
+
81
+ // if ( is_wp_error( $response ) ) {
82
+ // $error_message = $response->get_error_message();
83
+ // $return['status'] = 0;
84
+ // $return['msg'] = "Something went wrong: ".esc_html($error_message);
85
+ // } else {
86
+ // $return['status'] = 1;
87
+ // $return['msg'] = esc_html__('Your data inserted on mailchimp.', 'metform');
88
+ // }
89
+
90
+ // return $return;
91
+ }
92
+ }
core/integrations/slack.php CHANGED
@@ -1,54 +1,54 @@
1
- <?php
2
- namespace MetForm\Core\Integrations;
3
- defined( 'ABSPATH' ) || exit;
4
-
5
- class Slack {
6
-
7
- public function call_webhook( $form_data, $settings ){
8
- $msg = [];
9
- $data = [
10
- "text" => "New form submitted.",
11
- "pretext" => "from slack Webhook",
12
- "color" => "#36a64f",
13
- "fields" => [
14
- [
15
- "title" => "First Name",
16
- "value" => isset($form_data["mf-listing-fname"]) ? $form_data["mf-listing-fname"] : '',
17
- ],
18
- [
19
- "title" => "Last Name",
20
- "value" => isset($form_data["mf-listing-lname"]) ? $form_data["mf-listing-lname"] : '',
21
- ],
22
- [
23
- "title" => "Email",
24
- "value" => isset($form_data[$settings['email_name']]) ? $form_data[$settings['email_name']] : '',
25
- ],
26
- // [
27
- // "title" => "Phone",
28
- // "value" => isset($form_data["mf-listing-phone"]) ? $form_data["mf-listing-phone"] : '',
29
- // ],
30
- ],
31
- ];
32
-
33
- $status = wp_remote_post( $settings['url'], array(
34
- 'method' => 'POST',
35
- 'timeout' => 30,
36
- 'redirection' => 5,
37
- 'httpversion' => '1.0',
38
- 'blocking' => true,
39
- 'headers' => array(),
40
- 'body' => json_encode($data),
41
- 'cookies' => array()
42
- )
43
- );
44
-
45
- if(is_wp_error($status)){
46
- $msg['status'] = 0;
47
- $msg['msg'] = "Something went wrong : ".$status->get_error_message();
48
- }else{
49
- $msg['status'] = 1;
50
- $msg['msg'] = esc_html__('Your data inserted on slack.', 'metform');
51
- }
52
- return $msg;
53
- }
54
  }
1
+ <?php
2
+ namespace MetForm\Core\Integrations;
3
+ defined( 'ABSPATH' ) || exit;
4
+
5
+ class Slack {
6
+
7
+ public function call_webhook( $form_data, $settings ){
8
+ $msg = [];
9
+ $data = [
10
+ "text" => "New form submitted.",
11
+ "pretext" => "from slack Webhook",
12
+ "color" => "#36a64f",
13
+ "fields" => [
14
+ [
15
+ "title" => "First Name",
16
+ "value" => isset($form_data["mf-listing-fname"]) ? $form_data["mf-listing-fname"] : '',
17
+ ],
18
+ [
19
+ "title" => "Last Name",
20
+ "value" => isset($form_data["mf-listing-lname"]) ? $form_data["mf-listing-lname"] : '',
21
+ ],
22
+ [
23
+ "title" => "Email",
24
+ "value" => isset($form_data[$settings['email_name']]) ? $form_data[$settings['email_name']] : '',
25
+ ],
26
+ // [
27
+ // "title" => "Phone",
28
+ // "value" => isset($form_data["mf-listing-phone"]) ? $form_data["mf-listing-phone"] : '',
29
+ // ],
30
+ ],
31
+ ];
32
+
33
+ $status = wp_remote_post( $settings['url'], array(
34
+ 'method' => 'POST',
35
+ 'timeout' => 30,
36
+ 'redirection' => 5,
37
+ 'httpversion' => '1.0',
38
+ 'blocking' => true,
39
+ 'headers' => array(),
40
+ 'body' => json_encode($data),
41
+ 'cookies' => array()
42
+ )
43
+ );
44
+
45
+ if(is_wp_error($status)){
46
+ $msg['status'] = 0;
47
+ $msg['msg'] = "Something went wrong : ".$status->get_error_message();
48
+ }else{
49
+ $msg['status'] = 1;
50
+ $msg['msg'] = esc_html__('Your data inserted on slack.', 'metform');
51
+ }
52
+ return $msg;
53
+ }
54
  }
languages/metform.pot CHANGED
@@ -1,2913 +1,2913 @@
1
- #, fuzzy
2
- msgid ""
3
- msgstr ""
4
- "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
- "Project-Id-Version: MetForm\n"
6
- "POT-Creation-Date: 2020-05-05 20:23+0600\n"
7
- "PO-Revision-Date: 2020-05-05 20:23+0600\n"
8
- "Last-Translator: \n"
9
- "Language-Team: \n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 2.3\n"
14
- "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
16
- "X-Poedit-WPHeader: metform.php\n"
17
- "X-Poedit-SourceCharset: UTF-8\n"
18
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
19
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
20
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
21
- "X-Poedit-SearchPath-0: .\n"
22
- "X-Poedit-SearchPathExcluded-0: *.min.js\n"
23
-
24
- #. Plugin Name of the plugin/theme
25
- #: controls/form-editor-modal.php:12 plugin.php:242 plugin.php:243
26
- #: widgets/form.php:16
27
- msgid "MetForm"
28
- msgstr ""
29
-
30
- #: controls/form-editor-modal.php:14
31
- msgid "Form settings"
32
- msgstr ""
33
-
34
- #: controls/form-editor-modal.php:15
35
- msgid "Update & Close"
36
- msgstr ""
37
-
38
- #: controls/form-editor-modal.php:20 controls/form-editor-modal.php:21
39
- #: controls/form-picker-modal.php:93
40
- msgid "Close"
41
- msgstr ""
42
-
43
- #: controls/form-editor-modal.php:46
44
- msgid "Loading"
45
- msgstr ""
46
-
47
- #: controls/form-picker-modal.php:12
48
- msgid "Select Form"
49
- msgstr ""
50
-
51
- #: controls/form-picker-modal.php:13
52
- msgid "Select saved form"
53
- msgstr ""
54
-
55
- #: controls/form-picker-modal.php:23
56
- msgid "New"
57
- msgstr ""
58
-
59
- #: controls/form-picker-modal.php:24
60
- msgid "Create new form"
61
- msgstr ""
62
-
63
- #: controls/form-picker-modal.php:37
64
- msgid "Enter a form name"
65
- msgstr ""
66
-
67
- #: controls/form-picker-modal.php:70
68
- msgid "Buy Pro"
69
- msgstr ""
70
-
71
- #: controls/form-picker-modal.php:74
72
- msgid "Demo"
73
- msgstr ""
74
-
75
- #: controls/form-picker-modal.php:89
76
- msgid "Edit form"
77
- msgstr ""
78
-
79
- #: controls/form-picker-modal.php:91
80
- msgid "Save & close"
81
- msgstr ""
82
-
83
- #: controls/form-picker-utils.php:33
84
- msgid "Edit Form Content"
85
- msgstr ""
86
-
87
- #: controls/form-picker-utils.php:33
88
- msgid "Edit"
89
- msgstr ""
90
-
91
- #: controls/form-picker-utils.php:40
92
- msgid "No content is added yet."
93
- msgstr ""
94
-
95
- #: core/admin/base.php:28 traits/button-controls.php:37
96
- #: widgets/checkbox/checkbox.php:217 widgets/date/date.php:52
97
- #: widgets/email/email.php:48 widgets/file-upload/file-upload.php:79
98
- #: widgets/listing-fname/listing-fname.php:48
99
- #: widgets/listing-lname/listing-lname.php:48
100
- #: widgets/listing-optin/listing-optin.php:156
101
- #: widgets/multi-select/multi-select.php:123 widgets/number/number.php:48
102
- #: widgets/password/password.php:48 widgets/radio/radio.php:218
103
- #: widgets/range/range.php:48 widgets/rating/rating.php:48
104
- #: widgets/select/select.php:123 widgets/summary/summary.php:48
105
- #: widgets/switch/switch.php:65 widgets/telephone/telephone.php:48
106
- #: widgets/text/text.php:48 widgets/textarea/textarea.php:49
107
- #: widgets/time/time.php:52 widgets/url/url.php:49
108
- msgid "Settings"
109
- msgstr ""
110
-
111
- #: core/admin/views/settings.php:21 core/admin/views/settings.php:72
112
- msgid "Dashboard"
113
- msgstr ""
114
-
115
- #: core/admin/views/settings.php:22
116
- msgid "All dashboard info here"
117
- msgstr ""
118
-
119
- #: core/admin/views/settings.php:30 core/admin/views/settings.php:294
120
- #: core/forms/views/modal-editor.php:18
121
- msgid "General"
122
- msgstr ""
123
-
124
- #: core/admin/views/settings.php:31
125
- msgid "All General info here"
126
- msgstr ""
127
-
128
- #: core/admin/views/settings.php:40 core/admin/views/settings.php:406
129
- #: core/entries/meta-data.php:221 core/forms/views/modal-editor.php:27
130
- msgid "Payment"
131
- msgstr ""
132
-
133
- #: core/admin/views/settings.php:41
134
- msgid "All payment info here"
135
- msgstr ""
136
-
137
- #: core/admin/views/settings.php:49 core/admin/views/settings.php:530
138
- msgid "Newsletter Integration"
139
- msgstr ""
140
-
141
- #: core/admin/views/settings.php:50
142
- msgid "All newsletter integration info here"
143
- msgstr ""
144
-
145
- #: core/admin/views/settings.php:73 core/admin/views/settings.php:295
146
- #: core/admin/views/settings.php:407 core/admin/views/settings.php:532
147
- msgid "Save Changes"
148
- msgstr ""
149
-
150
- #: core/admin/views/settings.php:83
151
- msgid "Top Notch"
152
- msgstr ""
153
-
154
- #: core/admin/views/settings.php:84
155
- msgid "Features"
156
- msgstr ""
157
-
158
- #: core/admin/views/settings.php:85 core/admin/views/settings.php:144
159
- msgid "features"
160
- msgstr ""
161
-
162
- #: core/admin/views/settings.php:87 core/admin/views/settings.php:146
163
- #: core/admin/views/settings.php:220
164
- msgid ""
165
- "Get started by spending some time with the documentation to get familiar "
166
- "with ElementsKit."
167
- msgstr ""
168
-
169
- #: core/admin/views/settings.php:95 core/admin/views/settings.php:154
170
- msgid "Easy to use"
171
- msgstr ""
172
-
173
- #: core/admin/views/settings.php:97 core/admin/views/settings.php:104
174
- #: core/admin/views/settings.php:111 core/admin/views/settings.php:118
175
- #: core/admin/views/settings.php:125 core/admin/views/settings.php:132
176
- msgid ""
177
- "Get started by spending some time with the documentation to get familiar "
178
- "with MetForm"
179
- msgstr ""
180
-
181
- #: core/admin/views/settings.php:102
182
- msgid "Moden Typography"
183
- msgstr ""
184
-
185
- #: core/admin/views/settings.php:109 core/admin/views/settings.php:160
186
- msgid "Perfectly Match"
187
- msgstr ""
188
-
189
- #: core/admin/views/settings.php:116
190
- msgid "Dynamic Forms"
191
- msgstr ""
192
-
193
- #: core/admin/views/settings.php:123
194
- msgid "Create Faster"
195
- msgstr ""
196
-
197
- #: core/admin/views/settings.php:130
198
- msgid "Awesome Layout"
199
- msgstr ""
200
-
201
- #: core/admin/views/settings.php:142
202
- msgid "What included with Free &"
203
- msgstr ""
204
-
205
- #: core/admin/views/settings.php:143
206
- msgid "PRO"
207
- msgstr ""
208
-
209
- #: core/admin/views/settings.php:154 core/admin/views/settings.php:157
210
- #: core/admin/views/settings.php:160
211
- msgid "Pro"
212
- msgstr ""
213
-
214
- #: core/admin/views/settings.php:157
215
- msgid "Modern Typography"
216
- msgstr ""
217
-
218
- #: core/admin/views/settings.php:169 core/admin/views/settings.php:185
219
- #: core/admin/views/settings.php:199
220
- msgid ""
221
- "Get started by spending some time with the documentation to get familiar "
222
- "with MetForm Get started by spending some time with the documentation to get "
223
- "notification in real time."
224
- msgstr ""
225
-
226
- #: core/admin/views/settings.php:172 core/admin/views/settings.php:188
227
- #: core/admin/views/settings.php:202
228
- msgid "Success Message"
229
- msgstr ""
230
-
231
- #: core/admin/views/settings.php:173 core/admin/views/settings.php:189
232
- #: core/admin/views/settings.php:203
233
- msgid "Required Login"
234
- msgstr ""
235
-
236
- #: core/admin/views/settings.php:174 core/admin/views/settings.php:190
237
- #: core/admin/views/settings.php:204
238
- msgid "Hide Form After Submission"
239
- msgstr ""
240
-
241
- #: core/admin/views/settings.php:176 core/admin/views/settings.php:192
242
- #: core/admin/views/settings.php:206
243
- msgid "Store Entries"
244
- msgstr ""
245
-
246
- #: core/admin/views/settings.php:179
247
- msgid "View Details"
248
- msgstr ""
249
-
250
- #: core/admin/views/settings.php:217
251
- msgid "General Knowledge Base"
252
- msgstr ""
253
-
254
- #: core/admin/views/settings.php:218
255
- msgid "FAQ"
256
- msgstr ""
257
-
258
- #: core/admin/views/settings.php:228
259
- msgid "1. How to create a Invitation Form using MetForm?"
260
- msgstr ""
261
-
262
- #: core/admin/views/settings.php:232 core/admin/views/settings.php:243
263
- #: core/admin/views/settings.php:254
264
- msgid ""
265
- "You will get 20+ complete homepages and total 450+ blocks in our layout "
266
- "library and we’re continuously updating the numbers there."
267
- msgstr ""
268
-
269
- #: core/admin/views/settings.php:239
270
- msgid "2. How to translate language with WPML?"
271
- msgstr ""
272
-
273
- #: core/admin/views/settings.php:250
274
- msgid "3. How to add custom css in specific section shortcode?"
275
- msgstr ""
276
-
277
- #: core/admin/views/settings.php:261
278
- msgid "View all faq’s"
279
- msgstr ""
280
-
281
- #: core/admin/views/settings.php:270
282
- msgid "Satisfied!"
283
- msgstr ""
284
-
285
- #: core/admin/views/settings.php:270
286
- msgid "Don’t forget to rate our item."
287
- msgstr ""
288
-
289
- #: core/admin/views/settings.php:272
290
- msgid "review"
291
- msgstr ""
292
-
293
- #: core/admin/views/settings.php:278
294
- msgid "Rate it now"
295
- msgstr ""
296
-
297
- #: core/admin/views/settings.php:283
298
- msgid "Rate Now Thumb"
299
- msgstr ""
300
-
301
- #: core/admin/views/settings.php:301
302
- msgid "reCaptcha"
303
- msgstr ""
304
-
305
- #: core/admin/views/settings.php:306
306
- msgid "Map"
307
- msgstr ""
308
-
309
- #: core/admin/views/settings.php:317
310
- msgid "Select version:"
311
- msgstr ""
312
-
313
- #: core/admin/views/settings.php:321
314
- msgid "reCAPTCHA V2"
315
- msgstr ""
316
-
317
- #: core/admin/views/settings.php:324
318
- msgid "reCAPTCHA V3"
319
- msgstr ""
320
-
321
- #: core/admin/views/settings.php:329
322
- msgid "Select google reCaptcha version which one want to use."
323
- msgstr ""
324
-
325
- #: core/admin/views/settings.php:336 core/admin/views/settings.php:355
326
- msgid "Site key:"
327
- msgstr ""
328
-
329
- #: core/admin/views/settings.php:338 core/admin/views/settings.php:357
330
- msgid "Insert site key"
331
- msgstr ""
332
-
333
- #: core/admin/views/settings.php:340 core/admin/views/settings.php:359
334
- msgid "Create google reCaptcha site key from reCaptcha admin panel. "
335
- msgstr ""
336
-
337
- #: core/admin/views/settings.php:340 core/admin/views/settings.php:348
338
- #: core/admin/views/settings.php:359 core/admin/views/settings.php:367
339
- #: core/admin/views/settings.php:385 core/admin/views/settings.php:433
340
- #: core/admin/views/settings.php:441 core/admin/views/settings.php:473
341
- #: core/admin/views/settings.php:481 core/admin/views/settings.php:500
342
- #: core/admin/views/settings.php:507
343
- msgid "Create from here"
344
- msgstr ""
345
-
346
- #: core/admin/views/settings.php:344 core/admin/views/settings.php:363
347
- msgid "Secret key:"
348
- msgstr ""
349
-
350
- #: core/admin/views/settings.php:346 core/admin/views/settings.php:365
351
- msgid "Insert secret key"
352
- msgstr ""
353
-
354
- #: core/admin/views/settings.php:348 core/admin/views/settings.php:367
355
- msgid "Create google reCaptcha secret key from reCaptcha admin panel. "
356
- msgstr ""
357
-
358
- #: core/admin/views/settings.php:381
359
- msgid "API:"
360
- msgstr ""
361
-
362
- #: core/admin/views/settings.php:383
363
- msgid "Insert map api key"
364
- msgstr ""
365
-
366
- #: core/admin/views/settings.php:385
367
- msgid "Create google map api key from google developer console. "
368
- msgstr ""
369
-
370
- #: core/admin/views/settings.php:413
371
- msgid "Paypal"
372
- msgstr ""
373
-
374
- #: core/admin/views/settings.php:418
375
- msgid "Stripe"
376
- msgstr ""
377
-
378
- #: core/admin/views/settings.php:430
379
- msgid "Paypal email:"
380
- msgstr ""
381
-
382
- #: core/admin/views/settings.php:431
383
- msgid "Paypal email"
384
- msgstr ""
385
-
386
- #: core/admin/views/settings.php:433
387
- msgid "Enter here your paypal email. "
388
- msgstr ""
389
-
390
- #: core/admin/views/settings.php:438
391
- msgid "Paypal token:"
392
- msgstr ""
393
-
394
- #: core/admin/views/settings.php:439
395
- msgid "Paypal token"
396
- msgstr ""
397
-
398
- #: core/admin/views/settings.php:441
399
- msgid "Enter here your paypal token. This is optional. "
400
- msgstr ""
401
-
402
- #: core/admin/views/settings.php:446 core/admin/views/settings.php:487
403
- msgid "Enable sandbox mode:"
404
- msgstr ""
405
-
406
- #: core/admin/views/settings.php:449
407
- msgid "Enable this for testing payment method. "
408
- msgstr ""
409
-
410
- #: core/admin/views/settings.php:462
411
- msgid "Image url:"
412
- msgstr ""
413
-
414
- #: core/admin/views/settings.php:463
415
- msgid "Stripe image url"
416
- msgstr ""
417
-
418
- #: core/admin/views/settings.php:465
419
- msgid ""
420
- "Enter here your stripe image url. This image will show on stripe payment pop "
421
- "up modal. "
422
- msgstr ""
423
-
424
- #: core/admin/views/settings.php:470
425
- msgid "Live publishiable key:"
426
- msgstr ""
427
-
428
- #: core/admin/views/settings.php:471
429
- msgid "Stripe live publishiable key"
430
- msgstr ""
431
-
432
- #: core/admin/views/settings.php:473
433
- msgid "Enter here your stripe live publishiable key. "
434
- msgstr ""
435
-
436
- #: core/admin/views/settings.php:478
437
- msgid "Live secret key:"
438
- msgstr ""
439
-
440
- #: core/admin/views/settings.php:479
441
- msgid "Stripe live secret key"
442
- msgstr ""
443
-
444
- #: core/admin/views/settings.php:481
445
- msgid "Enter here your stripe live secret key. "
446
- msgstr ""
447
-
448
- #: core/admin/views/settings.php:490
449
- msgid "Enable this for testing your payment system. "
450
- msgstr ""
451
-
452
- #: core/admin/views/settings.php:497
453
- msgid "Test publishiable key:"
454
- msgstr ""
455
-
456
- #: core/admin/views/settings.php:498
457
- msgid "Stripe test publishiable key"
458
- msgstr ""
459
-
460
- #: core/admin/views/settings.php:500
461
- msgid "Enter here your test publishiable key. "
462
- msgstr ""
463
-
464
- #: core/admin/views/settings.php:504
465
- msgid "Test secret key:"
466
- msgstr ""
467
-
468
- #: core/admin/views/settings.php:505
469
- msgid "Stripe test secret key"
470
- msgstr ""
471
-
472
- #: core/admin/views/settings.php:507
473
- msgid "Enter here your test secret key. "
474
- msgstr ""
475
-
476
- #: core/admin/views/settings.php:539
477
- msgid "MailChimp"
478
- msgstr ""
479
-
480
- #: core/admin/views/settings.php:544
481
- msgid "Aweber"
482
- msgstr ""
483
-
484
- #: core/admin/views/settings.php:548
485
- msgid "ActiveCampaign"
486
- msgstr ""
487
-
488
- #: core/admin/views/settings.php:552
489
- msgid "Get Response"
490
- msgstr ""
491
-
492
- #: core/admin/views/settings.php:556
493
- msgid "ConvertKit"
494
- msgstr ""
495
-
496
- #: core/admin/views/settings.php:569 core/admin/views/settings.php:666
497
- #: core/admin/views/settings.php:718 core/admin/views/settings.php:745
498
- msgid "API Key:"
499
- msgstr ""
500
-
501
- #: core/admin/views/settings.php:570
502
- msgid "Mailchimp api key"
503
- msgstr ""
504
-
505
- #: core/admin/views/settings.php:572
506
- msgid "Enter here your Mailchimp api key. "
507
- msgstr ""
508
-
509
- #: core/admin/views/settings.php:572 core/admin/views/settings.php:606
510
- #: core/admin/views/settings.php:614 core/admin/views/settings.php:669
511
- #: core/admin/views/settings.php:678 core/admin/views/settings.php:713
512
- #: core/admin/views/settings.php:721 core/admin/views/settings.php:748
513
- msgid "Get API."
514
- msgstr ""
515
-
516
- #: core/admin/views/settings.php:581 core/admin/views/settings.php:646
517
- #: core/admin/views/settings.php:688 core/admin/views/settings.php:729
518
- #: core/admin/views/settings.php:756 core/admin/views/settings.php:789
519
- #: core/admin/views/settings.php:816
520
- msgid "How To"
521
- msgstr ""
522
-
523
- #: core/admin/views/settings.php:582 core/admin/views/settings.php:647
524
- #: core/admin/views/settings.php:689 core/admin/views/settings.php:730
525
- #: core/admin/views/settings.php:757 core/admin/views/settings.php:790
526
- #: core/admin/views/settings.php:817
527
- msgid ""
528
- "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. "
529
- "Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse "
530
- "urna nibh, viverra non, semper suscipit, posuere a, pede."
531
- msgstr ""
532
-
533
- #: core/admin/views/settings.php:585 core/admin/views/settings.php:650
534
- #: core/admin/views/settings.php:692 core/admin/views/settings.php:733
535
- #: core/admin/views/settings.php:760 core/admin/views/settings.php:793
536
- #: core/admin/views/settings.php:820
537
- msgid "Item 1"
538
- msgstr ""
539
-
540
- #: core/admin/views/settings.php:586 core/admin/views/settings.php:651
541
- #: core/admin/views/settings.php:693 core/admin/views/settings.php:734
542
- #: core/admin/views/settings.php:761 core/admin/views/settings.php:794
543
- #: core/admin/views/settings.php:821
544
- msgid "Item 2"
545
- msgstr ""
546
-
547
- #: core/admin/views/settings.php:587 core/admin/views/settings.php:652
548
- #: core/admin/views/settings.php:694 core/admin/views/settings.php:735
549
- #: core/admin/views/settings.php:762 core/admin/views/settings.php:795
550
- #: core/admin/views/settings.php:822
551
- msgid "Item 3"
552
- msgstr ""
553
-
554
- #: core/admin/views/settings.php:590 core/admin/views/settings.php:655
555
- #: core/admin/views/settings.php:697 core/admin/views/settings.php:738
556
- #: core/admin/views/settings.php:765 core/admin/views/settings.php:798
557
- #: core/admin/views/settings.php:825
558
- msgid "View Documentation"
559
- msgstr ""
560
-
561
- #: core/admin/views/settings.php:603
562
- msgid "Developer App ID:"
563
- msgstr ""
564
-
565
- #: core/admin/views/settings.php:604
566
- msgid "Aweber developer clientId key"
567
- msgstr ""
568
-
569
- #: core/admin/views/settings.php:606
570
- msgid "Enter here your Aweber developer app key. "
571
- msgstr ""
572
-
573
- #: core/admin/views/settings.php:611
574
- msgid "Developer App Secret:"
575
- msgstr ""
576
-
577
- #: core/admin/views/settings.php:612
578
- msgid "Aweber developer secret key"
579
- msgstr ""
580
-
581
- #: core/admin/views/settings.php:614
582
- msgid "Enter here your Aweber developer secret key. "
583
- msgstr ""
584
-
585
- #: core/admin/views/settings.php:619
586
- msgid "Redirect url:"
587
- msgstr ""
588
-
589
- #: core/admin/views/settings.php:667 core/admin/views/settings.php:676
590
- msgid "ConvertKit api key"
591
- msgstr ""
592
-
593
- #: core/admin/views/settings.php:669 core/admin/views/settings.php:678
594
- msgid "Enter here your ConvertKit api key. "
595
- msgstr ""
596
-
597
- #: core/admin/views/settings.php:675
598
- msgid "Secret Key:"
599
- msgstr ""
600
-
601
- #: core/admin/views/settings.php:710
602
- msgid "API URL:"
603
- msgstr ""
604
-
605
- #: core/admin/views/settings.php:711
606
- msgid "ActiveCampaign API URL"
607
- msgstr ""
608
-
609
- #: core/admin/views/settings.php:713 core/admin/views/settings.php:721
610
- #: core/admin/views/settings.php:748
611
- msgid "Enter here your ActiveCampaign api key. "
612
- msgstr ""
613
-
614
- #: core/admin/views/settings.php:719 core/admin/views/settings.php:746
615
- msgid "ActiveCampaign api key"
616
- msgstr ""
617
-
618
- #: core/admin/views/settings.php:779 core/admin/views/settings.php:806
619
- msgid "GetResponse API Key:"
620
- msgstr ""
621
-
622
- #: core/admin/views/settings.php:780 core/admin/views/settings.php:807
623
- msgid "GetResponse api key"
624
- msgstr ""
625
-
626
- #: core/entries/action.php:39
627
- msgid "Some thing went wrong."
628
- msgstr ""
629
-
630
- #: core/entries/action.php:77
631
- msgid "Unauthorized submission."
632
- msgstr ""
633
-
634
- #: core/entries/action.php:92 core/entries/action.php:122
635
- msgid "Please solve the recaptcha."
636
- msgstr ""
637
-
638
- #: core/entries/action.php:98
639
- msgid "Google captcha token not found."
640
- msgstr ""
641
-
642
- #: core/entries/action.php:144
643
- msgid "Time out of this captcha. Please reload or choose another one."
644
- msgstr ""
645
-
646
- #: core/entries/action.php:153
647
- msgid "Enter correct captcha."
648
- msgstr ""
649
-
650
- #: core/entries/action.php:163
651
- msgid "You must be logged in to submit form."
652
- msgstr ""
653
-
654
- #: core/entries/action.php:173
655
- msgid "Form submission limit execed."
656
- msgstr ""
657
-
658
- #: core/entries/action.php:479
659
- msgid " Please wait... Redirecting to paypal."
660
- msgstr ""
661
-
662
- #: core/entries/action.php:517
663
- msgid " Please wait... Open a Stripe Popup Box."
664
- msgstr ""
665
-
666
- #: core/entries/action.php:645
667
- msgid "Mail not found."
668
- msgstr ""
669
-
670
- #: core/entries/action.php:687
671
- msgid "Admin mail not found to send email."
672
- msgstr ""
673
-
674
- #: core/entries/action.php:754
675
- msgid "There was an error uploading your file. The error is: "
676
- msgstr ""
677
-
678
- #: core/entries/cpt.php:14
679
- msgctxt "Post Type General Name"
680
- msgid "Entries"
681
- msgstr ""
682
-
683
- #: core/entries/cpt.php:15
684
- msgctxt "Post Type Singular Name"
685
- msgid "Entry"
686
- msgstr ""
687
-
688
- #: core/entries/cpt.php:16 core/entries/cpt.php:17
689
- msgid "Entry"
690
- msgstr ""
691
-
692
- #: core/entries/cpt.php:18
693
- msgid "Entry Archives"
694
- msgstr ""
695
-
696
- #: core/entries/cpt.php:19
697
- msgid "Entry Attributes"
698
- msgstr ""
699
-
700
- #: core/entries/cpt.php:20 core/forms/cpt.php:320
701
- msgid "Parent Item:"
702
- msgstr ""
703
-
704
- #: core/entries/cpt.php:21 core/forms/hooks.php:36
705
- msgid "Entries"
706
- msgstr ""
707
-
708
- #: core/entries/cpt.php:22
709
- msgid "Add New Item"
710
- msgstr ""
711
-
712
- #: core/entries/cpt.php:23 core/forms/cpt.php:323
713
- msgid "Add New"
714
- msgstr ""
715
-
716
- #: core/entries/cpt.php:24
717
- msgid "New Item"
718
- msgstr ""
719
-
720
- #: core/entries/cpt.php:25
721
- msgid "Edit Item"
722
- msgstr ""
723
-
724
- #: core/entries/cpt.php:26
725
- msgid "Update Item"
726
- msgstr ""
727
-
728
- #: core/entries/cpt.php:27
729
- msgid "View Item"
730
- msgstr ""
731
-
732
- #: core/entries/cpt.php:28
733
- msgid "View Items"
734
- msgstr ""
735
-
736
- #: core/entries/cpt.php:29
737
- msgid "Search Item"
738
- msgstr ""
739
-
740
- #: core/entries/cpt.php:30 core/forms/cpt.php:330
741
- msgid "Not found"
742
- msgstr ""
743
-
744
- #: core/entries/cpt.php:31 core/forms/cpt.php:331
745
- msgid "Not found in Trash"
746
- msgstr ""
747
-
748
- #: core/entries/cpt.php:32 core/forms/cpt.php:332
749
- msgid "Featured Image"
750
- msgstr ""
751
-
752
- #: core/entries/cpt.php:33 core/forms/cpt.php:333
753
- msgid "Set featured image"
754
- msgstr ""
755
-
756
- #: core/entries/cpt.php:34 core/forms/cpt.php:334
757
- msgid "Remove featured image"
758
- msgstr ""
759
-
760
- #: core/entries/cpt.php:35 core/forms/cpt.php:335
761
- msgid "Use as featured image"
762
- msgstr ""
763
-
764
- #: core/entries/cpt.php:36
765
- msgid "Insert into item"
766
- msgstr ""
767
-
768
- #: core/entries/cpt.php:37
769
- msgid "Uploaded to this item"
770
- msgstr ""
771
-
772
- #: core/entries/cpt.php:38
773
- msgid "Form entries list"
774
- msgstr ""
775
-
776
- #: core/entries/cpt.php:39
777
- msgid "Form entries list navigation"
778
- msgstr ""
779
-
780
- #: core/entries/cpt.php:40
781
- msgid "Filter from entry list"
782
- msgstr ""
783
-
784
- #: core/entries/cpt.php:44
785
- msgid "Form entry"
786
- msgstr ""
787
-
788
- #: core/entries/cpt.php:45
789
- msgid "metform-entry"
790
- msgstr ""
791
-
792
- #: core/entries/hooks.php:27
793
- msgid "Form Name"
794
- msgstr ""
795
-
796
- #: core/entries/hooks.php:29
797
- msgid "Referral"
798
- msgstr ""
799
-
800
- #: core/entries/meta-data.php:35
801
- msgid "Info"
802
- msgstr ""
803
-
804
- #: core/entries/meta-data.php:58
805
- msgid "Form Name "
806
- msgstr ""
807
-
808
- #: core/entries/meta-data.php:64
809
- msgid "Entry ID"
810
- msgstr ""
811
-
812
- #: core/entries/meta-data.php:81
813
- msgid "Data"
814
- msgstr ""
815
-
816
- #: core/entries/meta-data.php:103
817
- msgid "Browser Data"
818
- msgstr ""
819
-
820
- #: core/entries/meta-data.php:135
821
- msgid "Browser data not captured."
822
- msgstr ""
823
-
824
- #: core/entries/meta-data.php:151
825
- msgid "Files"
826
- msgstr ""
827
-
828
- #: core/entries/meta-data.php:182
829
- msgid "Download"
830
- msgstr ""
831
-
832
- #: core/entries/meta-data.php:183
833
- msgid "View"
834
- msgstr ""
835
-
836
- #: core/entries/meta-data.php:185
837
- msgid "This file is not uploaded."
838
- msgstr ""
839
-
840
- #: core/forms/action.php:78 core/forms/action.php:102
841
- msgid "Form settings inserted"
842
- msgstr ""
843
-
844
- #: core/forms/action.php:106
845
- msgid ""
846
- "You must active at least one field of these fields \"store entry/ "
847
- "Confirmation/ Notification/ MailChimp/ Zapier\". "
848
- msgstr ""
849
-
850
- #: core/forms/action.php:110 core/forms/action.php:146
851
- msgid "You must enable \"store entries\" for integrating payment method."
852
- msgstr ""
853
-
854
- #: core/forms/cpt.php:314
855
- msgctxt "Post Type General Name"
856
- msgid "Forms"
857
- msgstr ""
858
-
859
- #: core/forms/cpt.php:315
860
- msgctxt "Post Type Singular Name"
861
- msgid "Form"
862
- msgstr ""
863
-
864
- #: core/forms/cpt.php:316 core/forms/cpt.php:317
865
- msgid "Form"
866
- msgstr ""
867
-
868
- #: core/forms/cpt.php:318
869
- msgid "Form Archives"
870
- msgstr ""
871
-
872
- #: core/forms/cpt.php:319
873
- msgid "Form Attributes"
874
- msgstr ""
875
-
876
- #: core/forms/cpt.php:321 core/forms/cpt.php:349
877
- msgid "Forms"
878
- msgstr ""
879
-
880
- #: core/forms/cpt.php:322
881
- msgid "Add New Form"
882
- msgstr ""
883
-
884
- #: core/forms/cpt.php:324
885
- msgid "New Form"
886
- msgstr ""
887
-
888
- #: core/forms/cpt.php:325
889
- msgid "Edit Form"
890
- msgstr ""
891
-
892
- #: core/forms/cpt.php:326
893
- msgid "Update Form"
894
- msgstr ""
895
-
896
- #: core/forms/cpt.php:327
897
- msgid "View Form"
898
- msgstr ""
899
-
900
- #: core/forms/cpt.php:328
901
- msgid "View Forms"
902
- msgstr ""
903
-
904
- #: core/forms/cpt.php:329
905
- msgid "Search Forms"
906
- msgstr ""
907
-
908
- #: core/forms/cpt.php:336
909
- msgid "Insert into form"
910
- msgstr ""
911
-
912
- #: core/forms/cpt.php:337
913
- msgid "Uploaded to this form"
914
- msgstr ""
915
-
916
- #: core/forms/cpt.php:338
917
- msgid "Forms list"
918
- msgstr ""
919
-
920
- #: core/forms/cpt.php:339
921
- msgid "Forms list navigation"
922
- msgstr ""
923
-
924
- #: core/forms/cpt.php:340
925
- msgid "Filter froms list"
926
- msgstr ""
927
-
928
- #: core/forms/cpt.php:350
929
- msgid "metform form"
930
- msgstr ""
931
-
932
- #: core/forms/hooks.php:35
933
- msgid "Shortcode"
934
- msgstr ""
935
-
936
- #: core/forms/hooks.php:37
937
- msgid "Views/ Conversion"
938
- msgstr ""
939
-
940
- #: core/forms/hooks.php:62
941
- msgid "Export CSV"
942
- msgstr ""
943
-
944
- #: core/forms/views/modal-editor.php:14
945
- msgid "Form Settings"
946
- msgstr ""
947
-
948
- #: core/forms/views/modal-editor.php:20
949
- msgid "Confirmation"
950
- msgstr ""
951
-
952
- #: core/forms/views/modal-editor.php:22
953
- msgid "Notification"
954
- msgstr ""
955
-
956
- #: core/forms/views/modal-editor.php:24
957
- msgid "Integration"
958
- msgstr ""
959
-
960
- #: core/forms/views/modal-editor.php:29
961
- msgid "CRM"
962
- msgstr ""
963
-
964
- #: core/forms/views/modal-editor.php:42
965
- msgid "Title:"
966
- msgstr ""
967
-
968
- #: core/forms/views/modal-editor.php:44
969
- msgid "New Form # "
970
- msgstr ""
971
-
972
- #: core/forms/views/modal-editor.php:46
973
- msgid "This is the form title"
974
- msgstr ""
975
-
976
- #: core/forms/views/modal-editor.php:51
977
- msgid "Success Message:"
978
- msgstr ""
979
-
980
- #: core/forms/views/modal-editor.php:54
981
- msgid "Thank you! Form submitted successfully."
982
- msgstr ""
983
-
984
- #: core/forms/views/modal-editor.php:56
985
- msgid "This mesage will be shown after a successful submission."
986
- msgstr ""
987
-
988
- #: core/forms/views/modal-editor.php:63
989
- msgid "Required Login:"
990
- msgstr ""
991
-
992
- #: core/forms/views/modal-editor.php:66
993
- msgid "Without login, users can't submit the form."
994
- msgstr ""
995
-
996
- #: core/forms/views/modal-editor.php:73
997
- msgid "Capture User Browser Data:"
998
- msgstr ""
999
-
1000
- #: core/forms/views/modal-editor.php:76
1001
- msgid "Store user's browser data (ip, browser name, etc)"
1002
- msgstr ""
1003
-
1004
- #: core/forms/views/modal-editor.php:83
1005
- msgid "Hide Form After Submission:"
1006
- msgstr ""
1007
-
1008
- #: core/forms/views/modal-editor.php:86
1009
- msgid "After submission, hide the form for preventing multiple submission."
1010
- msgstr ""
1011
-
1012
- #: core/forms/views/modal-editor.php:93
1013
- msgid "Store Entries:"
1014
- msgstr ""
1015
-
1016
- #: core/forms/views/modal-editor.php:96
1017
- msgid "Save submitted form data to database."
1018
- msgstr ""
1019
-
1020
- #: core/forms/views/modal-editor.php:101
1021
- msgid "Entry Title"
1022
- msgstr ""
1023
-
1024
- #: core/forms/views/modal-editor.php:105
1025
- msgid "Enter here title of this form entries."
1026
- msgstr ""
1027
-
1028
- #: core/forms/views/modal-editor.php:113
1029
- msgid "Limit Total Entries:"
1030
- msgstr ""
1031
-
1032
- #: core/forms/views/modal-editor.php:121
1033
- msgid "Limit the total number of submissions for this form."
1034
- msgstr ""
1035
-
1036
- #: core/forms/views/modal-editor.php:128
1037
- msgid "Count views:"
1038
- msgstr ""
1039
-
1040
- #: core/forms/views/modal-editor.php:130
1041
- msgid "Track form views."
1042
- msgstr ""
1043
-
1044
- #: core/forms/views/modal-editor.php:137
1045
- msgid "Stop Vertical Scrolling:"
1046
- msgstr ""
1047
-
1048
- #: core/forms/views/modal-editor.php:140
1049
- msgid "Stop scrolling effect when submitting the form."
1050
- msgstr ""
1051
-
1052
- #: core/forms/views/modal-editor.php:145
1053
- msgid "Redirect To:"
1054
- msgstr ""
1055
-
1056
- #: core/forms/views/modal-editor.php:148
1057
- msgid "Redirection link"
1058
- msgstr ""
1059
-
1060
- #: core/forms/views/modal-editor.php:150
1061
- msgid "Users will be redirected to the this link after submission."
1062
- msgstr ""
1063
-
1064
- #: core/forms/views/modal-editor.php:165
1065
- msgid "Confirmation mail to user :"
1066
- msgstr ""
1067
-
1068
- #: core/forms/views/modal-editor.php:168
1069
- msgid "Want to send a submission copy to user by email? Active this one."
1070
- msgstr ""
1071
-
1072
- #: core/forms/views/modal-editor.php:168 core/forms/views/modal-editor.php:520
1073
- msgid "The form must have at least one Email widget and it should be required."
1074
- msgstr ""
1075
-
1076
- #: core/forms/views/modal-editor.php:173 core/forms/views/modal-editor.php:235
1077
- msgid "Email Subject:"
1078
- msgstr ""
1079
-
1080
- #: core/forms/views/modal-editor.php:176 core/forms/views/modal-editor.php:238
1081
- msgid "Email subject"
1082
- msgstr ""
1083
-
1084
- #: core/forms/views/modal-editor.php:178 core/forms/views/modal-editor.php:240
1085
- msgid "Enter here email subject."
1086
- msgstr ""
1087
-
1088
- #: core/forms/views/modal-editor.php:183 core/forms/views/modal-editor.php:255
1089
- msgid "Email From:"
1090
- msgstr ""
1091
-
1092
- #: core/forms/views/modal-editor.php:186
1093
- msgid "From email"
1094
- msgstr ""
1095
-
1096
- #: core/forms/views/modal-editor.php:188
1097
- msgid "Enter the email by which you want to send email to user."
1098
- msgstr ""
1099
-
1100
- #: core/forms/views/modal-editor.php:193 core/forms/views/modal-editor.php:265
1101
- msgid "Email Reply To:"
1102
- msgstr ""
1103
-
1104
- #: core/forms/views/modal-editor.php:196
1105
- msgid "Reply to email"
1106
- msgstr ""
1107
-
1108
- #: core/forms/views/modal-editor.php:198
1109
- msgid "Enter email where user can reply/ you want to get reply."
1110
- msgstr ""
1111
-
1112
- #: core/forms/views/modal-editor.php:203
1113
- msgid "Thank you message :"
1114
- msgstr ""
1115
-
1116
- #: core/forms/views/modal-editor.php:206
1117
- msgid "Thank you message!"
1118
- msgstr ""
1119
-
1120
- #: core/forms/views/modal-editor.php:208
1121
- msgid ""
1122
- "Enter here your message to include it in email body. Which will be send to "
1123
- "user."
1124
- msgstr ""
1125
-
1126
- #: core/forms/views/modal-editor.php:212
1127
- msgid "Email Attached Submission Copy:"
1128
- msgstr ""
1129
-
1130
- #: core/forms/views/modal-editor.php:227
1131
- msgid "Notification mail to admin :"
1132
- msgstr ""
1133
-
1134
- #: core/forms/views/modal-editor.php:230
1135
- msgid "Want to send a submission copy to admin by email? Active this one."
1136
- msgstr ""
1137
-
1138
- #: core/forms/views/modal-editor.php:245
1139
- msgid "Email To:"
1140
- msgstr ""
1141
-
1142
- #: core/forms/views/modal-editor.php:248
1143
- msgid "example@mail.com, example@email.com"
1144
- msgstr ""
1145
-
1146
- #: core/forms/views/modal-editor.php:250
1147
- msgid "Enter admin email where you want to send mail."
1148
- msgstr ""
1149
-
1150
- #: core/forms/views/modal-editor.php:250
1151
- msgid " for multiple email addresses please use \",\" separator."
1152
- msgstr ""
1153
-
1154
- #: core/forms/views/modal-editor.php:258
1155
- msgid "Email from"
1156
- msgstr ""
1157
-
1158
- #: core/forms/views/modal-editor.php:260
1159
- msgid "Enter the email by which you want to send email to admin."
1160
- msgstr ""
1161
-
1162
- #: core/forms/views/modal-editor.php:268
1163
- msgid "Email reply to"
1164
- msgstr ""
1165
-
1166
- #: core/forms/views/modal-editor.php:270
1167
- msgid "Enter email where admin can reply/ you want to get reply."
1168
- msgstr ""
1169
-
1170
- #: core/forms/views/modal-editor.php:275
1171
- msgid "Admin Note : "
1172
- msgstr ""
1173
-
1174
- #: core/forms/views/modal-editor.php:278
1175
- msgid "Admin note!"
1176
- msgstr ""
1177
-
1178
- #: core/forms/views/modal-editor.php:280
1179
- msgid "Enter here your email body. Which will be send to admin."
1180
- msgstr ""
1181
-
1182
- #: core/forms/views/modal-editor.php:294
1183
- msgid "REST API:"
1184
- msgstr ""
1185
-
1186
- #: core/forms/views/modal-editor.php:297
1187
- msgid "Send entry data to third party api/webhook"
1188
- msgstr ""
1189
-
1190
- #: core/forms/views/modal-editor.php:303
1191
- msgid "URL/Webhook:"
1192
- msgstr ""
1193
-
1194
- #: core/forms/views/modal-editor.php:305
1195
- msgid "Rest api url/webhook"
1196
- msgstr ""
1197
-
1198
- #: core/forms/views/modal-editor.php:307
1199
- msgid "Enter rest api url/webhook here."
1200
- msgstr ""
1201
-
1202
- #: core/forms/views/modal-editor.php:312
1203
- msgid "POST"
1204
- msgstr ""
1205
-
1206
- #: core/forms/views/modal-editor.php:313
1207
- msgid "GET"
1208
- msgstr ""
1209
-
1210
- #: core/forms/views/modal-editor.php:327
1211
- msgid "Mail Chimp:"
1212
- msgstr ""
1213
-
1214
- #: core/forms/views/modal-editor.php:330
1215
- msgid "Integrate mailchimp with this form."
1216
- msgstr ""
1217
-
1218
- #: core/forms/views/modal-editor.php:330 core/forms/views/modal-editor.php:365
1219
- #: core/forms/views/modal-editor.php:400 core/forms/views/modal-editor.php:429
1220
- #: core/forms/views/modal-editor.php:463 core/forms/views/modal-editor.php:500
1221
- msgid ""
1222
- "The form must have at least one Email widget and it should be required. "
1223
- msgstr ""
1224
-
1225
- #: core/forms/views/modal-editor.php:332
1226
- msgid "Configure Mail Chimp."
1227
- msgstr ""
1228
-
1229
- #: core/forms/views/modal-editor.php:337
1230
- msgid "MailChimp List ID:"
1231
- msgstr ""
1232
-
1233
- #: core/forms/views/modal-editor.php:346
1234
- msgid "Mailchimp contact list id"
1235
- msgstr ""
1236
-
1237
- #: core/forms/views/modal-editor.php:361
1238
- msgid "MailPoet:"
1239
- msgstr ""
1240
-
1241
- #: core/forms/views/modal-editor.php:364
1242
- msgid "Integrate MailPoet with this form."
1243
- msgstr ""
1244
-
1245
- #: core/forms/views/modal-editor.php:368
1246
- msgid "Configure MailPoet."
1247
- msgstr ""
1248
-
1249
- #: core/forms/views/modal-editor.php:376
1250
- msgid "MailPoet List ID:"
1251
- msgstr ""
1252
-
1253
- #: core/forms/views/modal-editor.php:383
1254
- msgid "Enter here MailPoet list id. "
1255
- msgstr ""
1256
-
1257
- #: core/forms/views/modal-editor.php:385 core/forms/views/modal-editor.php:416
1258
- #: core/forms/views/modal-editor.php:445
1259
- msgid "Refresh List"
1260
- msgstr ""
1261
-
1262
- #: core/forms/views/modal-editor.php:397
1263
- msgid "Aweber:"
1264
- msgstr ""
1265
-
1266
- #: core/forms/views/modal-editor.php:400
1267
- msgid "Integrate aweber with this form."
1268
- msgstr ""
1269
-
1270
- #: core/forms/views/modal-editor.php:402
1271
- msgid "Configure aweber."
1272
- msgstr ""
1273
-
1274
- #: core/forms/views/modal-editor.php:407
1275
- msgid "Aweber List ID:"
1276
- msgstr ""
1277
-
1278
- #: core/forms/views/modal-editor.php:414
1279
- msgid "Enter here aweber list id. "
1280
- msgstr ""
1281
-
1282
- #: core/forms/views/modal-editor.php:426
1283
- msgid "ConvertKit:"
1284
- msgstr ""
1285
-
1286
- #: core/forms/views/modal-editor.php:429
1287
- msgid "Integrate convertKit with this form."
1288
- msgstr ""
1289
-
1290
- #: core/forms/views/modal-editor.php:431
1291
- msgid "Configure ConvertKit."
1292
- msgstr ""
1293
-
1294
- #: core/forms/views/modal-editor.php:436
1295
- msgid "ConvertKit Forms ID:"
1296
- msgstr ""
1297
-
1298
- #: core/forms/views/modal-editor.php:443
1299
- msgid "Enter here ConvertKit form id. "
1300
- msgstr ""
1301
-
1302
- #: core/forms/views/modal-editor.php:459
1303
- msgid "GetResponse:"
1304
- msgstr ""
1305
-
1306
- #: core/forms/views/modal-editor.php:463
1307
- msgid "Integrate GetResponse with this form."
1308
- msgstr ""
1309
-
1310
- #: core/forms/views/modal-editor.php:465
1311
- msgid "Configure GetResponse."
1312
- msgstr ""
1313
-
1314
- #: core/forms/views/modal-editor.php:472
1315
- msgid "GetResponse List ID:"
1316
- msgstr ""
1317
-
1318
- #: core/forms/views/modal-editor.php:483
1319
- msgid "GetResponse contact list id"
1320
- msgstr ""
1321
-
1322
- #: core/forms/views/modal-editor.php:485
1323
- msgid "Enter here GetResponse list id. "
1324
- msgstr ""
1325
-
1326
- #: core/forms/views/modal-editor.php:497
1327
- msgid "ActiveCampaign:"
1328
- msgstr ""
1329
-
1330
- #: core/forms/views/modal-editor.php:500
1331
- msgid "Integrate ActiveCampaign with this form."
1332
- msgstr ""
1333
-
1334
- #: core/forms/views/modal-editor.php:502
1335
- msgid "Configure ActiveCampaign."
1336
- msgstr ""
1337
-
1338
- #: core/forms/views/modal-editor.php:517
1339
- msgid "Zapier:"
1340
- msgstr ""
1341
-
1342
- #: core/forms/views/modal-editor.php:520
1343
- msgid "Integrate zapier with this form."
1344
- msgstr ""
1345
-
1346
- #: core/forms/views/modal-editor.php:525
1347
- msgid "Zapier webhook:"
1348
- msgstr ""
1349
-
1350
- #: core/forms/views/modal-editor.php:527
1351
- msgid "Zapier webhook"
1352
- msgstr ""
1353
-
1354
- #: core/forms/views/modal-editor.php:529
1355
- msgid "Enter here zapier web hook."
1356
- msgstr ""
1357
-
1358
- #: core/forms/views/modal-editor.php:539
1359
- msgid "Slack:"
1360
- msgstr ""
1361
-
1362
- #: core/forms/views/modal-editor.php:542
1363
- msgid "Integrate slack with this form."
1364
- msgstr ""
1365
-
1366
- #: core/forms/views/modal-editor.php:542
1367
- msgid "slack info."
1368
- msgstr ""
1369
-
1370
- #: core/forms/views/modal-editor.php:547
1371
- msgid "Slack webhook:"
1372
- msgstr ""
1373
-
1374
- #: core/forms/views/modal-editor.php:549
1375
- msgid "Slack webhook"
1376
- msgstr ""
1377
-
1378
- #: core/forms/views/modal-editor.php:551
1379
- msgid "Enter here slack web hook."
1380
- msgstr ""
1381
-
1382
- #: core/forms/views/modal-editor.php:552
1383
- msgid "create from here"
1384
- msgstr ""
1385
-
1386
- #: core/forms/views/modal-editor.php:566
1387
- msgid "Success url:"
1388
- msgstr ""
1389
-
1390
- #: core/forms/views/modal-editor.php:569
1391
- msgid "Success url"
1392
- msgstr ""
1393
-
1394
- #: core/forms/views/modal-editor.php:571
1395
- msgid ""
1396
- "Users will be redirected to the this link after successfully form submission."
1397
- msgstr ""
1398
-
1399
- #: core/forms/views/modal-editor.php:576
1400
- msgid "Failed/ Cancel url:"
1401
- msgstr ""
1402
-
1403
- #: core/forms/views/modal-editor.php:579
1404
- msgid "Failed/Cancel url"
1405
- msgstr ""
1406
-
1407
- #: core/forms/views/modal-editor.php:581
1408
- msgid ""
1409
- "Users will be redirected to the this link after any failure/ cancelation of "
1410
- "form submission."
1411
- msgstr ""
1412
-
1413
- #: core/forms/views/modal-editor.php:588
1414
- msgid "Paypal:"
1415
- msgstr ""
1416
-
1417
- #: core/forms/views/modal-editor.php:591
1418
- msgid "Integrate paypal payment with this form."
1419
- msgstr ""
1420
-
1421
- #: core/forms/views/modal-editor.php:593
1422
- msgid "Configure paypal payment."
1423
- msgstr ""
1424
-
1425
- #: core/forms/views/modal-editor.php:603
1426
- msgid "Stripe:"
1427
- msgstr ""
1428
-
1429
- #: core/forms/views/modal-editor.php:606
1430
- msgid "Integrate stripe payment with this form. "
1431
- msgstr ""
1432
-
1433
- #: core/forms/views/modal-editor.php:608
1434
- msgid "Configure stripe payment."
1435
- msgstr ""
1436
-
1437
- #: core/forms/views/modal-editor.php:625
1438
- msgid "Hubsopt Contact:"
1439
- msgstr ""
1440
-
1441
- #: core/forms/views/modal-editor.php:628
1442
- msgid "Integrate hubsopt with this form. "
1443
- msgstr ""
1444
-
1445
- #: core/forms/views/modal-editor.php:630
1446
- msgid "Configure Hubsopt."
1447
- msgstr ""
1448
-
1449
- #: core/forms/views/modal-editor.php:638
1450
- msgid "Hubsopt Forms:"
1451
- msgstr ""
1452
-
1453
- #: core/forms/views/modal-editor.php:646
1454
- msgid "Fetch hubsopt forms"
1455
- msgstr ""
1456
-
1457
- #: core/forms/views/modal-editor.php:671
1458
- msgid "Zoho Contact:"
1459
- msgstr ""
1460
-
1461
- #: core/forms/views/modal-editor.php:674
1462
- msgid "Integrate Zoho contacts with this form. "
1463
- msgstr ""
1464
-
1465
- #: core/forms/views/modal-editor.php:676
1466
- msgid "Configure Zoho."
1467
- msgstr ""
1468
-
1469
- #: core/forms/views/modal-editor.php:692
1470
- msgid "Edit content"
1471
- msgstr ""
1472
-
1473
- #: core/forms/views/modal-editor.php:694
1474
- msgid "Save changes"
1475
- msgstr ""
1476
-
1477
- #: core/integrations/google-recaptcha.php:43
1478
- #: core/integrations/google-recaptcha.php:80
1479
- msgid "Captcha is not verified."
1480
- msgstr ""
1481
-
1482
- #: core/integrations/mail-chimp.php:54
1483
- msgid "Your data inserted on ActiveCampaign."
1484
- msgstr ""
1485
-
1486
- #: core/integrations/slack.php:50
1487
- msgid "Your data inserted on slack."
1488
- msgstr ""
1489
-
1490
- #: plugin.php:258
1491
- msgid "Activate Elementor"
1492
- msgstr ""
1493
-
1494
- #: plugin.php:261
1495
- msgid "Install Elementor"
1496
- msgstr ""
1497
-
1498
- #: plugin.php:271 plugin.php:306
1499
- #, php-format
1500
- msgid ""
1501
- "MetForm requires Elementor version %1$s+, which is currently NOT RUNNING."
1502
- msgstr ""
1503
-
1504
- #: plugin.php:281
1505
- msgid "MetForm Pro"
1506
- msgstr ""
1507
-
1508
- #: plugin.php:290
1509
- msgid "We have MetForm Pro version. Check out our pro feature."
1510
- msgstr ""
1511
-
1512
- #: plugin.php:297
1513
- msgid "Update Elementor"
1514
- msgstr ""
1515
-
1516
- #: traits/button-controls.php:24 widgets/date/date.php:321
1517
- #: widgets/email/email.php:64 widgets/file-upload/file-upload.php:170
1518
- #: widgets/listing-fname/listing-fname.php:64
1519
- #: widgets/listing-lname/listing-lname.php:64
1520
- #: widgets/multi-select/multi-select.php:148 widgets/number/number.php:64
1521
- #: widgets/password/password.php:64 widgets/range/range.php:133
1522
- #: widgets/rating/rating.php:85 widgets/recaptcha/recaptcha.php:59
1523
- #: widgets/select/select.php:148 widgets/simple-captcha/simple-captcha.php:123
1524
- #: widgets/summary/summary.php:69 widgets/switch/switch.php:91
1525
- #: widgets/telephone/telephone.php:64 widgets/text/text.php:64
1526
- #: widgets/textarea/textarea.php:65 widgets/time/time.php:89
1527
- #: widgets/url/url.php:74
1528
- msgid "Label"
1529
- msgstr ""
1530
-
1531
- #: traits/button-controls.php:46
1532
- msgid "Button alignment"
1533
- msgstr ""
1534
-
1535
- #: traits/button-controls.php:50 traits/common-controls.php:47
1536
- #: widgets/checkbox/checkbox.php:69 widgets/gdpr-consent/gdpr-consent.php:62
1537
- #: widgets/listing-optin/listing-optin.php:62 widgets/radio/radio.php:70
1538
- #: widgets/simple-captcha/simple-captcha.php:67
1539
- msgid "Left"
1540
- msgstr ""
1541
-
1542
- #: traits/button-controls.php:54
1543
- msgid "Center"
1544
- msgstr ""
1545
-
1546
- #: traits/button-controls.php:58 widgets/file-upload/file-upload.php:251
1547
- msgid "Right"
1548
- msgstr ""
1549
-
1550
- #: traits/button-controls.php:72 widgets/button/button.php:104
1551
- msgid "Icon"
1552
- msgstr ""
1553
-
1554
- #: traits/button-controls.php:81
1555
- msgid "Icon Position"
1556
- msgstr ""
1557
-
1558
- #: traits/button-controls.php:85 widgets/file-upload/file-upload.php:60
1559
- msgid "Before"
1560
- msgstr ""
1561
-
1562
- #: traits/button-controls.php:86 widgets/file-upload/file-upload.php:61
1563
- msgid "After"
1564
- msgstr ""
1565
-
1566
- #: traits/button-controls.php:97
1567
- msgid "Class"
1568
- msgstr ""
1569
-
1570
- #: traits/button-controls.php:99
1571
- msgid "Class Name"
1572
- msgstr ""
1573
-
1574
- #: traits/button-controls.php:106
1575
- msgid "id"
1576
- msgstr ""
1577
-
1578
- #: traits/button-controls.php:108
1579
- msgid "ID"
1580
- msgstr ""
1581
-
1582
- #: traits/button-controls.php:119
1583
- msgid "Input Name : "
1584
- msgstr ""
1585
-
1586
- #: traits/button-controls.php:127 widgets/multi-select/multi-select.php:58
1587
- #: widgets/select/select.php:58
1588
- msgid "Input Value"
1589
- msgstr ""
1590
-
1591
- #: traits/button-controls.php:136
1592
- msgid "Input Class"
1593
- msgstr ""
1594
-
1595
- #: traits/button-controls.php:145
1596
- msgid "Input List"
1597
- msgstr ""
1598
-
1599
- #: traits/button-controls.php:157 traits/common-controls.php:341
1600
- #: traits/common-controls.php:405 traits/common-controls.php:749
1601
- #: widgets/checkbox/checkbox.php:283 widgets/checkbox/checkbox.php:341
1602
- #: widgets/checkbox/checkbox.php:534 widgets/file-upload/file-upload.php:336
1603
- #: widgets/gdpr-consent/gdpr-consent.php:202
1604
- #: widgets/gdpr-consent/gdpr-consent.php:269
1605
- #: widgets/listing-optin/listing-optin.php:222
1606
- #: widgets/listing-optin/listing-optin.php:292 widgets/radio/radio.php:284
1607
- #: widgets/radio/radio.php:354 widgets/radio/radio.php:547
1608
- #: widgets/rating/rating.php:108 widgets/simple-captcha/simple-captcha.php:192
1609
- #: widgets/simple-captcha/simple-captcha.php:248 widgets/switch/switch.php:208
1610
- #: widgets/switch/switch.php:250
1611
- msgid "Padding"
1612
- msgstr ""
1613
-
1614
- #: traits/button-controls.php:177 traits/common-controls.php:330
1615
- #: traits/common-controls.php:632 traits/common-controls.php:685
1616
- #: traits/common-controls.php:724 widgets/checkbox/checkbox.php:272
1617
- #: widgets/checkbox/checkbox.php:509 widgets/gdpr-consent/gdpr-consent.php:191
1618
- #: widgets/listing-optin/listing-optin.php:211 widgets/radio/radio.php:273
1619
- #: widgets/radio/radio.php:522 widgets/rating/rating.php:250
1620
- #: widgets/simple-captcha/simple-captcha.php:181 widgets/switch/switch.php:200
1621
- #: widgets/switch/switch.php:242
1622
- msgid "Typography"
1623
- msgstr ""
1624
-
1625
- #: traits/button-controls.php:195 traits/button-controls.php:293
1626
- #: traits/common-controls.php:437 widgets/checkbox/checkbox.php:383
1627
- #: widgets/file-upload/file-upload.php:264
1628
- #: widgets/gdpr-consent/gdpr-consent.php:311
1629
- #: widgets/listing-optin/listing-optin.php:334 widgets/radio/radio.php:395
1630
- #: widgets/rating/rating.php:141
1631
- msgid "Normal"
1632
- msgstr ""
1633
-
1634
- #: traits/button-controls.php:202 traits/button-controls.php:231
1635
- #: widgets/checkbox/checkbox.php:364 widgets/gdpr-consent/gdpr-consent.php:292
1636
- #: widgets/listing-optin/listing-optin.php:315 widgets/radio/radio.php:377
1637
- #: widgets/switch/switch.php:187 widgets/switch/switch.php:229
1638
- msgid "Text Color"
1639
- msgstr ""
1640
-
1641
- #: traits/button-controls.php:224 traits/button-controls.php:317
1642
- #: traits/common-controls.php:501 widgets/file-upload/file-upload.php:295
1643
- msgid "Hover"
1644
- msgstr ""
1645
-
1646
- #: traits/button-controls.php:257
1647
- msgctxt "Border Control"
1648
- msgid "Border Type"
1649
- msgstr ""
1650
-
1651
- #: traits/button-controls.php:260 traits/common-controls.php:141
1652
- msgid "None"
1653
- msgstr ""
1654
-
1655
- #: traits/button-controls.php:261
1656
- msgctxt "Border Control"
1657
- msgid "Solid"
1658
- msgstr ""
1659
-
1660
- #: traits/button-controls.php:262
1661
- msgctxt "Border Control"
1662
- msgid "Double"
1663
- msgstr ""
1664
-
1665
- #: traits/button-controls.php:263
1666
- msgctxt "Border Control"
1667
- msgid "Dotted"
1668
- msgstr ""
1669
-
1670
- #: traits/button-controls.php:264
1671
- msgctxt "Border Control"
1672
- msgid "Dashed"
1673
- msgstr ""
1674
-
1675
- #: traits/button-controls.php:265
1676
- msgctxt "Border Control"
1677
- msgid "Groove"
1678
- msgstr ""
1679
-
1680
- #: traits/button-controls.php:277
1681
- msgctxt "Border Control"
1682
- msgid "Width"
1683
- msgstr ""
1684
-
1685
- #: traits/button-controls.php:303 traits/button-controls.php:326
1686
- msgctxt "Border Control"
1687
- msgid "Color"
1688
- msgstr ""
1689
-
1690
- #: traits/button-controls.php:342 traits/common-controls.php:247
1691
- #: traits/common-controls.php:643 widgets/file-upload/file-upload.php:369
1692
- #: widgets/range/range.php:199 widgets/rating/rating.php:212
1693
- msgid "Border Radius"
1694
- msgstr ""
1695
-
1696
- #: traits/button-controls.php:373
1697
- msgid "Icon Color"
1698
- msgstr ""
1699
-
1700
- #: traits/button-controls.php:389
1701
- msgid "Font Size"
1702
- msgstr ""
1703
-
1704
- #: traits/button-controls.php:409
1705
- msgid "Padding Right"
1706
- msgstr ""
1707
-
1708
- #: traits/button-controls.php:435
1709
- msgid "Padding Left"
1710
- msgstr ""
1711
-
1712
- #: traits/button-controls.php:461
1713
- msgid "Vertical Align"
1714
- msgstr ""
1715
-
1716
- #: traits/common-controls.php:29 widgets/checkbox/checkbox.php:51
1717
- #: widgets/gdpr-consent/gdpr-consent.php:44
1718
- #: widgets/listing-optin/listing-optin.php:44 widgets/radio/radio.php:52
1719
- #: widgets/simple-captcha/simple-captcha.php:49
1720
- msgid "Show Label"
1721
- msgstr ""
1722
-
1723
- #: traits/common-controls.php:31 widgets/checkbox/checkbox.php:53
1724
- #: widgets/gdpr-consent/gdpr-consent.php:46
1725
- #: widgets/listing-optin/listing-optin.php:46 widgets/radio/radio.php:54
1726
- #: widgets/simple-captcha/simple-captcha.php:51
1727
- msgid "Show"
1728
- msgstr ""
1729
-
1730
- #: traits/common-controls.php:32 widgets/checkbox/checkbox.php:54
1731
- #: widgets/gdpr-consent/gdpr-consent.php:47
1732
- #: widgets/listing-optin/listing-optin.php:47 widgets/radio/radio.php:55
1733
- #: widgets/simple-captcha/simple-captcha.php:52
1734
- msgid "Hide"
1735
- msgstr ""
1736
-
1737
- #: traits/common-controls.php:35 widgets/checkbox/checkbox.php:57
1738
- #: widgets/gdpr-consent/gdpr-consent.php:50
1739
- #: widgets/listing-optin/listing-optin.php:50 widgets/radio/radio.php:58
1740
- #: widgets/simple-captcha/simple-captcha.php:55
1741
- msgid ""
1742
- "for adding label on input turn it on. Don't want to use label? turn it off."
1743
- msgstr ""
1744
-
1745
- #: traits/common-controls.php:42 widgets/checkbox/checkbox.php:64
1746
- #: widgets/file-upload/file-upload.php:247
1747
- #: widgets/gdpr-consent/gdpr-consent.php:57
1748
- #: widgets/listing-optin/listing-optin.php:57 widgets/radio/radio.php:65
1749
- msgid "Position"
1750
- msgstr ""
1751
-
1752
- #: traits/common-controls.php:46 widgets/checkbox/checkbox.php:68
1753
- #: widgets/file-upload/file-upload.php:62
1754
- #: widgets/gdpr-consent/gdpr-consent.php:61
1755
- #: widgets/listing-optin/listing-optin.php:61 widgets/radio/radio.php:69
1756
- #: widgets/simple-captcha/simple-captcha.php:66
1757
- msgid "Top"
1758
- msgstr ""
1759
-
1760
- #: traits/common-controls.php:55 widgets/checkbox/checkbox.php:78
1761
- #: widgets/gdpr-consent/gdpr-consent.php:71
1762
- #: widgets/listing-optin/listing-optin.php:71 widgets/radio/radio.php:79
1763
- #: widgets/simple-captcha/simple-captcha.php:75
1764
- msgid ""
1765
- "Select label position. where you want to see it. top of the input or left of "
1766
- "the input."
1767
- msgstr ""
1768
-
1769
- #: traits/common-controls.php:63 widgets/simple-captcha/simple-captcha.php:98
1770
- msgid "Label : "
1771
- msgstr ""
1772
-
1773
- #: traits/common-controls.php:66 widgets/checkbox/checkbox.php:89
1774
- #: widgets/gdpr-consent/gdpr-consent.php:82
1775
- #: widgets/listing-optin/listing-optin.php:82 widgets/radio/radio.php:90
1776
- #: widgets/simple-captcha/simple-captcha.php:101
1777
- msgid "Enter here label of input"
1778
- msgstr ""
1779
-
1780
- #: traits/common-controls.php:77 widgets/gdpr-consent/gdpr-consent.php:92
1781
- #: widgets/listing-optin/listing-optin.php:92
1782
- msgid "Name : "
1783
- msgstr ""
1784
-
1785
- #: traits/common-controls.php:89 widgets/checkbox/checkbox.php:99
1786
- #: widgets/radio/radio.php:100
1787
- msgid "Name"
1788
- msgstr ""
1789
-
1790
- #: traits/common-controls.php:92 widgets/checkbox/checkbox.php:102
1791
- #: widgets/radio/radio.php:103
1792
- msgid "Enter here name of the input"
1793
- msgstr ""
1794
-
1795
- #: traits/common-controls.php:93 widgets/checkbox/checkbox.php:103
1796
- msgid ""
1797
- "Name is must required. Enter name without space or any special character. "
1798
- "use only underscore/ hyphen (_/-) for multiple word. Name must be different."
1799
- msgstr ""
1800
-
1801
- #: traits/common-controls.php:103
1802
- msgid "Place holder"
1803
- msgstr ""
1804
-
1805
- #: traits/common-controls.php:106
1806
- msgid "Enter here place holder"
1807
- msgstr ""
1808
-
1809
- #: traits/common-controls.php:114 widgets/checkbox/checkbox.php:205
1810
- #: widgets/gdpr-consent/gdpr-consent.php:145
1811
- #: widgets/listing-optin/listing-optin.php:144 widgets/radio/radio.php:206
1812
- #: widgets/simple-captcha/simple-captcha.php:111
1813
- msgid "Help Text : "
1814
- msgstr ""
1815
-
1816
- #: traits/common-controls.php:117 widgets/checkbox/checkbox.php:208
1817
- #: widgets/gdpr-consent/gdpr-consent.php:148
1818
- #: widgets/listing-optin/listing-optin.php:147 widgets/radio/radio.php:209
1819
- #: widgets/simple-captcha/simple-captcha.php:114
1820
- msgid "Type your help text here"
1821
- msgstr ""
1822
-
1823
- #: traits/common-controls.php:129
1824
- msgid "Required ?"
1825
- msgstr ""
1826
-
1827
- #: traits/common-controls.php:131 widgets/date/date.php:119
1828
- #: widgets/date/date.php:131 widgets/date/date.php:143
1829
- #: widgets/date/date.php:155 widgets/date/date.php:305
1830
- #: widgets/multi-select/multi-select.php:83 widgets/range/range.php:97
1831
- #: widgets/select/select.php:83 widgets/switch/switch.php:48
1832
- #: widgets/time/time.php:73
1833
- msgid "Yes"
1834
- msgstr ""
1835
-
1836
- #: traits/common-controls.php:132 widgets/date/date.php:120
1837
- #: widgets/date/date.php:132 widgets/date/date.php:144
1838
- #: widgets/date/date.php:156 widgets/date/date.php:306
1839
- #: widgets/multi-select/multi-select.php:84 widgets/range/range.php:98
1840
- #: widgets/select/select.php:84 widgets/switch/switch.php:56
1841
- #: widgets/time/time.php:74
1842
- msgid "No"
1843
- msgstr ""
1844
-
1845
- #: traits/common-controls.php:135
1846
- msgid "Is this field is required for submit the form?. Make it \"Yes\"."
1847
- msgstr ""
1848
-
1849
- #: traits/common-controls.php:142
1850
- msgid "By character length"
1851
- msgstr ""
1852
-
1853
- #: traits/common-controls.php:143
1854
- msgid "By Word length"
1855
- msgstr ""
1856
-
1857
- #: traits/common-controls.php:147
1858
- msgid "By expression based"
1859
- msgstr ""
1860
-
1861
- #: traits/common-controls.php:154
1862
- msgid "Validation type"
1863
- msgstr ""
1864
-
1865
- #: traits/common-controls.php:165 widgets/range/range.php:67
1866
- msgid "Min Length"
1867
- msgstr ""
1868
-
1869
- #: traits/common-controls.php:176 widgets/range/range.php:76
1870
- msgid "Max Length"
1871
- msgstr ""
1872
-
1873
- #: traits/common-controls.php:189
1874
- msgid "Expression for validate "
1875
- msgstr ""
1876
-
1877
- #: traits/common-controls.php:192
1878
- msgid "Ex: [a-zA-Z]+ "
1879
- msgstr ""
1880
-
1881
- #: traits/common-controls.php:203 traits/common-controls.php:205
1882
- msgid "Warning message"
1883
- msgstr ""
1884
-
1885
- #: traits/common-controls.php:206 widgets/checkbox/checkbox.php:557
1886
- #: widgets/date/date.php:430 widgets/email/email.php:128
1887
- #: widgets/file-upload/file-upload.php:419
1888
- #: widgets/gdpr-consent/gdpr-consent.php:448
1889
- #: widgets/listing-fname/listing-fname.php:141
1890
- #: widgets/listing-lname/listing-lname.php:141
1891
- #: widgets/listing-optin/listing-optin.php:471
1892
- #: widgets/multi-select/multi-select.php:208 widgets/number/number.php:127
1893
- #: widgets/password/password.php:141 widgets/radio/radio.php:570
1894
- #: widgets/rating/rating.php:295 widgets/select/select.php:218
1895
- #: widgets/switch/switch.php:291 widgets/telephone/telephone.php:127
1896
- #: widgets/text/text.php:127 widgets/textarea/textarea.php:151
1897
- #: widgets/time/time.php:161 widgets/url/url.php:137
1898
- msgid "This field is required."
1899
- msgstr ""
1900
-
1901
- #: traits/common-controls.php:232 traits/common-controls.php:673
1902
- #: widgets/gdpr-consent/gdpr-consent.php:232
1903
- #: widgets/listing-optin/listing-optin.php:252 widgets/radio/radio.php:314
1904
- #: widgets/rating/rating.php:261
1905
- msgid "Box Shadow"
1906
- msgstr ""
1907
-
1908
- #: traits/common-controls.php:240 traits/common-controls.php:489
1909
- #: traits/common-controls.php:547 traits/common-controls.php:610
1910
- #: widgets/button/button.php:80 widgets/file-upload/file-upload.php:361
1911
- #: widgets/rating/rating.php:165 widgets/rating/rating.php:199
1912
- msgid "Border"
1913
- msgstr ""
1914
-
1915
- #: traits/common-controls.php:280 widgets/range/range.php:168
1916
- #: widgets/simple-captcha/simple-captcha.php:134 widgets/switch/switch.php:115
1917
- msgid "Width"
1918
- msgstr ""
1919
-
1920
- #: traits/common-controls.php:311 traits/common-controls.php:694
1921
- #: traits/common-controls.php:733 widgets/checkbox/checkbox.php:253
1922
- #: widgets/checkbox/checkbox.php:518 widgets/file-upload/file-upload.php:271
1923
- #: widgets/file-upload/file-upload.php:302
1924
- #: widgets/gdpr-consent/gdpr-consent.php:172
1925
- #: widgets/listing-optin/listing-optin.php:192 widgets/radio/radio.php:254
1926
- #: widgets/radio/radio.php:531 widgets/simple-captcha/simple-captcha.php:162
1927
- #: widgets/simple-captcha/simple-captcha.php:272
1928
- msgid "Color"
1929
- msgstr ""
1930
-
1931
- #: traits/common-controls.php:355 traits/common-controls.php:420
1932
- #: widgets/checkbox/checkbox.php:297 widgets/checkbox/checkbox.php:352
1933
- #: widgets/file-upload/file-upload.php:348
1934
- #: widgets/gdpr-consent/gdpr-consent.php:216
1935
- #: widgets/gdpr-consent/gdpr-consent.php:280
1936
- #: widgets/listing-optin/listing-optin.php:236
1937
- #: widgets/listing-optin/listing-optin.php:303 widgets/radio/radio.php:298
1938
- #: widgets/radio/radio.php:365 widgets/rating/rating.php:120
1939
- #: widgets/simple-captcha/simple-captcha.php:206
1940
- #: widgets/simple-captcha/simple-captcha.php:260
1941
- msgid "Margin"
1942
- msgstr ""
1943
-
1944
- #: traits/common-controls.php:370 widgets/checkbox/checkbox.php:312
1945
- #: widgets/gdpr-consent/gdpr-consent.php:243
1946
- #: widgets/listing-optin/listing-optin.php:263 widgets/radio/radio.php:325
1947
- #: widgets/recaptcha/recaptcha.php:66
1948
- #: widgets/simple-captcha/simple-captcha.php:221
1949
- msgid "Required Indicator Color:"
1950
- msgstr ""
1951
-
1952
- #: traits/common-controls.php:444 traits/common-controls.php:508
1953
- #: traits/common-controls.php:567 widgets/rating/rating.php:148
1954
- #: widgets/rating/rating.php:182
1955
- msgid "Input Color"
1956
- msgstr ""
1957
-
1958
- #: traits/common-controls.php:476 traits/common-controls.php:535
1959
- #: traits/common-controls.php:596 widgets/file-upload/file-upload.php:284
1960
- #: widgets/file-upload/file-upload.php:315
1961
- msgid "Background"
1962
- msgstr ""
1963
-
1964
- #: traits/common-controls.php:560
1965
- msgid "Focus"
1966
- msgstr ""
1967
-
1968
- #: traits/conditional-controls.php:25
1969
- msgid "Conditional logic"
1970
- msgstr ""
1971
-
1972
- #: traits/conditional-controls.php:33 widgets/multi-select/multi-select.php:70
1973
- #: widgets/select/select.php:70
1974
- msgid "Enable"
1975
- msgstr ""
1976
-
1977
- #: traits/conditional-controls.php:36
1978
- msgid "This feature only works on the frontend."
1979
- msgstr ""
1980
-
1981
- #: traits/conditional-controls.php:47
1982
- msgid "Condition match criteria"
1983
- msgstr ""
1984
-
1985
- #: traits/conditional-controls.php:52
1986
- msgid "AND"
1987
- msgstr ""
1988
-
1989
- #: traits/conditional-controls.php:53
1990
- msgid "OR"
1991
- msgstr ""
1992
-
1993
- #: traits/conditional-controls.php:65
1994
- msgid "Action"
1995
- msgstr ""
1996
-
1997
- #: traits/conditional-controls.php:87
1998
- msgid "If"
1999
- msgstr ""
2000
-
2001
- #: traits/conditional-controls.php:90
2002
- msgid "Input field name"
2003
- msgstr ""
2004
-
2005
- #: traits/conditional-controls.php:97
2006
- msgid "Match ( comparison )"
2007
- msgstr ""
2008
-
2009
- #: traits/conditional-controls.php:101
2010
- msgid "not empty"
2011
- msgstr ""
2012
-
2013
- #: traits/conditional-controls.php:102
2014
- msgid "empty"
2015
- msgstr ""
2016
-
2017
- #: traits/conditional-controls.php:103
2018
- msgid "equals"
2019
- msgstr ""
2020
-
2021
- #: traits/conditional-controls.php:104
2022
- msgid "not equals"
2023
- msgstr ""
2024
-
2025
- #: traits/conditional-controls.php:105
2026
- msgid "greater than"
2027
- msgstr ""
2028
-
2029
- #: traits/conditional-controls.php:106
2030
- msgid "greater than equal"
2031
- msgstr ""
2032
-
2033
- #: traits/conditional-controls.php:107
2034
- msgid "smaller than"
2035
- msgstr ""
2036
-
2037
- #: traits/conditional-controls.php:108
2038
- msgid "smaller than equal"
2039
- msgstr ""
2040
-
2041
- #: traits/conditional-controls.php:117
2042
- msgid "Match value"
2043
- msgstr ""
2044
-
2045
- #: traits/conditional-controls.php:120
2046
- msgid "50"
2047
- msgstr ""
2048
-
2049
- #: traits/conditional-controls.php:132
2050
- msgid "Value for set"
2051
- msgstr ""
2052
-
2053
- #: traits/conditional-controls.php:134
2054
- msgid "Enter value for set"
2055
- msgstr ""
2056
-
2057
- #: traits/conditional-controls.php:135
2058
- msgid "E.g 100, name, anything"
2059
- msgstr ""
2060
-
2061
- #: widgets/button/button.php:16
2062
- msgid "Submit Button"
2063
- msgstr ""
2064
-
2065
- #: widgets/button/button.php:36 widgets/checkbox/checkbox.php:43
2066
- #: widgets/date/date.php:40 widgets/email/email.php:36
2067
- #: widgets/file-upload/file-upload.php:37 widgets/form-basic.php:49
2068
- #: widgets/form.php:36 widgets/gdpr-consent/gdpr-consent.php:36
2069
- #: widgets/listing-fname/listing-fname.php:36
2070
- #: widgets/listing-lname/listing-lname.php:36
2071
- #: widgets/listing-optin/listing-optin.php:36
2072
- #: widgets/multi-select/multi-select.php:36 widgets/number/number.php:36
2073
- #: widgets/password/password.php:36 widgets/radio/radio.php:44
2074
- #: widgets/range/range.php:36 widgets/rating/rating.php:36
2075
- #: widgets/recaptcha/recaptcha.php:32 widgets/select/select.php:36
2076
- #: widgets/simple-captcha/simple-captcha.php:41 widgets/summary/summary.php:36
2077
- #: widgets/switch/switch.php:36 widgets/telephone/telephone.php:36
2078
- #: widgets/text/text.php:36 widgets/textarea/textarea.php:37
2079
- #: widgets/time/time.php:40 widgets/url/url.php:37
2080
- msgid "Content"
2081
- msgstr ""
2082
-
2083
- #: widgets/button/button.php:52
2084
- msgid "Hidden"
2085
- msgstr ""
2086
-
2087
- #: widgets/button/button.php:65
2088
- msgid "Button"
2089
- msgstr ""
2090
-
2091
- #: widgets/button/button.php:92
2092
- msgid "Shadow"
2093
- msgstr ""
2094
-
2095
- #: widgets/checkbox/checkbox.php:24 widgets/checkbox/checkbox.php:333
2096
- #: widgets/gdpr-consent/gdpr-consent.php:261
2097
- #: widgets/listing-optin/listing-optin.php:284
2098
- msgid "Checkbox"
2099
- msgstr ""
2100
-
2101
- #: widgets/checkbox/checkbox.php:86 widgets/gdpr-consent/gdpr-consent.php:79
2102
- #: widgets/listing-optin/listing-optin.php:79 widgets/radio/radio.php:87
2103
- msgid "Input Label : "
2104
- msgstr ""
2105
-
2106
- #: widgets/checkbox/checkbox.php:111 widgets/gdpr-consent/gdpr-consent.php:102
2107
- #: widgets/listing-optin/listing-optin.php:102 widgets/radio/radio.php:112
2108
- msgid "Option Display : "
2109
- msgstr ""
2110
-
2111
- #: widgets/checkbox/checkbox.php:115 widgets/gdpr-consent/gdpr-consent.php:106
2112
- #: widgets/listing-optin/listing-optin.php:106 widgets/radio/radio.php:116
2113
- msgid "Horizontal"
2114
- msgstr ""
2115
-
2116
- #: widgets/checkbox/checkbox.php:116 widgets/gdpr-consent/gdpr-consent.php:107
2117
- #: widgets/listing-optin/listing-optin.php:107 widgets/radio/radio.php:117
2118
- msgid "Vertical"
2119
- msgstr ""
2120
-
2121
- #: widgets/checkbox/checkbox.php:122 widgets/gdpr-consent/gdpr-consent.php:113
2122
- #: widgets/listing-optin/listing-optin.php:113
2123
- msgid "Checkbox option display style. "
2124
- msgstr ""
2125
-
2126
- #: widgets/checkbox/checkbox.php:129 widgets/gdpr-consent/gdpr-consent.php:120
2127
- #: widgets/listing-optin/listing-optin.php:120 widgets/radio/radio.php:130
2128
- msgid "Option Text Position : "
2129
- msgstr ""
2130
-
2131
- #: widgets/checkbox/checkbox.php:132 widgets/gdpr-consent/gdpr-consent.php:123
2132
- #: widgets/listing-optin/listing-optin.php:123
2133
- msgid "After Checkbox"
2134
- msgstr ""
2135
-
2136
- #: widgets/checkbox/checkbox.php:133 widgets/gdpr-consent/gdpr-consent.php:124
2137
- #: widgets/listing-optin/listing-optin.php:124
2138
- msgid "Before Checkbox"
2139
- msgstr ""
2140
-
2141
- #: widgets/checkbox/checkbox.php:136 widgets/gdpr-consent/gdpr-consent.php:127
2142
- #: widgets/listing-optin/listing-optin.php:127 widgets/radio/radio.php:137
2143
- msgid "Where do you want to label?"
2144
- msgstr ""
2145
-
2146
- #: widgets/checkbox/checkbox.php:144 widgets/gdpr-consent/gdpr-consent.php:133
2147
- #: widgets/listing-optin/listing-optin.php:133
2148
- msgid "Checkbox Option Text"
2149
- msgstr ""
2150
-
2151
- #: widgets/checkbox/checkbox.php:146 widgets/radio/radio.php:147
2152
- msgid "Option Text"
2153
- msgstr ""
2154
-
2155
- #: widgets/checkbox/checkbox.php:148 widgets/radio/radio.php:149
2156
- msgid "Select option text that will be show to user."
2157
- msgstr ""
2158
-
2159
- #: widgets/checkbox/checkbox.php:153 widgets/checkbox/checkbox.php:155
2160
- #: widgets/radio/radio.php:154 widgets/radio/radio.php:156
2161
- msgid "Option Value"
2162
- msgstr ""
2163
-
2164
- #: widgets/checkbox/checkbox.php:157 widgets/radio/radio.php:158
2165
- msgid "Select option value that will be store/mail to desired person."
2166
- msgstr ""
2167
-
2168
- #: widgets/checkbox/checkbox.php:162 widgets/radio/radio.php:163
2169
- msgid "Option Status"
2170
- msgstr ""
2171
-
2172
- #: widgets/checkbox/checkbox.php:165 widgets/radio/radio.php:166
2173
- #: widgets/rating/rating.php:175 widgets/switch/switch.php:222
2174
- msgid "Active"
2175
- msgstr ""
2176
-
2177
- #: widgets/checkbox/checkbox.php:166 widgets/multi-select/multi-select.php:71
2178
- #: widgets/radio/radio.php:167 widgets/select/select.php:71
2179
- msgid "Disable"
2180
- msgstr ""
2181
-
2182
- #: widgets/checkbox/checkbox.php:170 widgets/multi-select/multi-select.php:73
2183
- #: widgets/radio/radio.php:171 widgets/select/select.php:73
2184
- msgid ""
2185
- "Want to make a option? which user can see the option but can't select it. "
2186
- "make it disable."
2187
- msgstr ""
2188
-
2189
- #: widgets/checkbox/checkbox.php:177
2190
- msgid "Checkbox Options"
2191
- msgstr ""
2192
-
2193
- #: widgets/checkbox/checkbox.php:198 widgets/multi-select/multi-select.php:114
2194
- #: widgets/radio/radio.php:199 widgets/select/select.php:114
2195
- msgid "You can add/edit here your selector options."
2196
- msgstr ""
2197
-
2198
- #: widgets/checkbox/checkbox.php:227 widgets/date/date.php:62
2199
- #: widgets/file-upload/file-upload.php:89
2200
- #: widgets/listing-optin/listing-optin.php:166
2201
- #: widgets/multi-select/multi-select.php:133 widgets/radio/radio.php:228
2202
- #: widgets/range/range.php:58 widgets/rating/rating.php:58
2203
- #: widgets/select/select.php:133 widgets/summary/summary.php:58
2204
- #: widgets/switch/switch.php:76 widgets/time/time.php:62 widgets/url/url.php:59
2205
- msgid "Validation Type"
2206
- msgstr ""
2207
-
2208
- #: widgets/checkbox/checkbox.php:242 widgets/gdpr-consent/gdpr-consent.php:161
2209
- #: widgets/listing-optin/listing-optin.php:181 widgets/radio/radio.php:243
2210
- msgid "Input Label"
2211
- msgstr ""
2212
-
2213
- #: widgets/checkbox/checkbox.php:390 widgets/checkbox/checkbox.php:415
2214
- #: widgets/gdpr-consent/gdpr-consent.php:318
2215
- #: widgets/gdpr-consent/gdpr-consent.php:343
2216
- #: widgets/listing-optin/listing-optin.php:341
2217
- #: widgets/listing-optin/listing-optin.php:366
2218
- msgid "Checkbox Color"
2219
- msgstr ""
2220
-
2221
- #: widgets/checkbox/checkbox.php:408 widgets/gdpr-consent/gdpr-consent.php:336
2222
- #: widgets/listing-optin/listing-optin.php:359 widgets/radio/radio.php:420
2223
- msgid "Checked"
2224
- msgstr ""
2225
-
2226
- #: widgets/checkbox/checkbox.php:435 widgets/gdpr-consent/gdpr-consent.php:363
2227
- #: widgets/listing-optin/listing-optin.php:386 widgets/radio/radio.php:447
2228
- msgid "Horizontal position of icon"
2229
- msgstr ""
2230
-
2231
- #: widgets/checkbox/checkbox.php:458 widgets/gdpr-consent/gdpr-consent.php:386
2232
- #: widgets/listing-optin/listing-optin.php:409
2233
- msgid "Add space after checkbox"
2234
- msgstr ""
2235
-
2236
- #: widgets/checkbox/checkbox.php:474 widgets/gdpr-consent/gdpr-consent.php:402
2237
- #: widgets/listing-optin/listing-optin.php:425 widgets/radio/radio.php:487
2238
- msgid "Typography for icon"
2239
- msgstr ""
2240
-
2241
- #: widgets/checkbox/checkbox.php:485 widgets/gdpr-consent/gdpr-consent.php:413
2242
- #: widgets/listing-optin/listing-optin.php:436 widgets/radio/radio.php:498
2243
- msgid "Typography for text"
2244
- msgstr ""
2245
-
2246
- #: widgets/checkbox/checkbox.php:497 widgets/date/date.php:371
2247
- #: widgets/email/email.php:103 widgets/file-upload/file-upload.php:384
2248
- #: widgets/gdpr-consent/gdpr-consent.php:424
2249
- #: widgets/listing-fname/listing-fname.php:103
2250
- #: widgets/listing-lname/listing-lname.php:103
2251
- #: widgets/listing-optin/listing-optin.php:447
2252
- #: widgets/multi-select/multi-select.php:175 widgets/number/number.php:103
2253
- #: widgets/password/password.php:103 widgets/radio/radio.php:510
2254
- #: widgets/range/range.php:214 widgets/rating/rating.php:271
2255
- #: widgets/select/select.php:185 widgets/simple-captcha/simple-captcha.php:290
2256
- #: widgets/summary/summary.php:96 widgets/switch/switch.php:267
2257
- #: widgets/telephone/telephone.php:103 widgets/text/text.php:103
2258
- #: widgets/textarea/textarea.php:127 widgets/time/time.php:128
2259
- #: widgets/url/url.php:113
2260
- msgid "Help Text"
2261
- msgstr ""
2262
-
2263
- #: widgets/date/date.php:20
2264
- msgid "Date"
2265
- msgstr ""
2266
-
2267
- #: widgets/date/date.php:71
2268
- msgid "Set minimum date:"
2269
- msgstr ""
2270
-
2271
- #: widgets/date/date.php:82
2272
- msgid "Set maximum date:"
2273
- msgstr ""
2274
-
2275
- #: widgets/date/date.php:95
2276
- msgid "Disable date : "
2277
- msgstr ""
2278
-
2279
- #: widgets/date/date.php:106
2280
- msgid "Disable date List"
2281
- msgstr ""
2282
-
2283
- #: widgets/date/date.php:117
2284
- msgid "Range date input ?"
2285
- msgstr ""
2286
-
2287
- #: widgets/date/date.php:129
2288
- msgid "Year input ?"
2289
- msgstr ""
2290
-
2291
- #: widgets/date/date.php:141
2292
- msgid "Month input ?"
2293
- msgstr ""
2294
-
2295
- #: widgets/date/date.php:153
2296
- msgid "Date input ?"
2297
- msgstr ""
2298
-
2299
- #: widgets/date/date.php:165 widgets/date/date.php:201
2300
- #: widgets/date/date.php:235 widgets/date/date.php:269
2301
- msgid "Date format : "
2302
- msgstr ""
2303
-
2304
- #: widgets/date/date.php:169
2305
- msgid "YYYY-MM-DD"
2306
- msgstr ""
2307
-
2308
- #: widgets/date/date.php:170
2309
- msgid "DD-MM-YYYY"
2310
- msgstr ""
2311
-
2312
- #: widgets/date/date.php:171
2313
- msgid "MM-DD-YYYY"
2314
- msgstr ""
2315
-
2316
- #: widgets/date/date.php:172
2317
- msgid "YYYY.MM.DD"
2318
- msgstr ""
2319
-
2320
- #: widgets/date/date.php:173
2321
- msgid "DD.MM.YYYY"
2322
- msgstr ""
2323
-
2324
- #: widgets/date/date.php:174
2325
- msgid "MM.DD.YYYY"
2326
- msgstr ""
2327
-
2328
- #: widgets/date/date.php:205
2329
- msgid "MM-DD"
2330
- msgstr ""
2331
-
2332
- #: widgets/date/date.php:206
2333
- msgid "DD-MM"
2334
- msgstr ""
2335
-
2336
- #: widgets/date/date.php:207
2337
- msgid "MM.DD"
2338
- msgstr ""
2339
-
2340
- #: widgets/date/date.php:208
2341
- msgid "DD.MM"
2342
- msgstr ""
2343
-
2344
- #: widgets/date/date.php:239
2345
- msgid "MM-YY"
2346
- msgstr ""
2347
-
2348
- #: widgets/date/date.php:240
2349
- msgid "YY-MM"
2350
- msgstr ""
2351
-
2352
- #: widgets/date/date.php:241
2353
- msgid "MM.YY"
2354
- msgstr ""
2355
-
2356
- #: widgets/date/date.php:242
2357
- msgid "YY.MM"
2358
- msgstr ""
2359
-
2360
- #: widgets/date/date.php:273
2361
- msgid "DD-YY"
2362
- msgstr ""
2363
-
2364
- #: widgets/date/date.php:274
2365
- msgid "YY-DD"
2366
- msgstr ""
2367
-
2368
- #: widgets/date/date.php:275
2369
- msgid "DD.YY"
2370
- msgstr ""
2371
-
2372
- #: widgets/date/date.php:276
2373
- msgid "YY.DD"
2374
- msgstr ""
2375
-
2376
- #: widgets/date/date.php:303
2377
- msgid "Want to input time with it ?"
2378
- msgstr ""
2379
-
2380
- #: widgets/date/date.php:336 widgets/email/email.php:79
2381
- #: widgets/file-upload/file-upload.php:185
2382
- #: widgets/listing-fname/listing-fname.php:79
2383
- #: widgets/listing-lname/listing-lname.php:79
2384
- #: widgets/multi-select/multi-select.php:163 widgets/number/number.php:79
2385
- #: widgets/password/password.php:79 widgets/rating/rating.php:100
2386
- #: widgets/summary/summary.php:84 widgets/switch/switch.php:107
2387
- #: widgets/telephone/telephone.php:79 widgets/text/text.php:79
2388
- #: widgets/textarea/textarea.php:80 widgets/time/time.php:104
2389
- #: widgets/url/url.php:89
2390
- msgid "Input"
2391
- msgstr ""
2392
-
2393
- #: widgets/date/date.php:347
2394
- msgid "Calendar Typography"
2395
- msgstr ""
2396
-
2397
- #: widgets/date/date.php:359 widgets/email/email.php:91
2398
- #: widgets/listing-fname/listing-fname.php:91
2399
- #: widgets/listing-lname/listing-lname.php:91 widgets/number/number.php:91
2400
- #: widgets/password/password.php:91 widgets/select/select.php:173
2401
- #: widgets/simple-captcha/simple-captcha.php:305
2402
- #: widgets/telephone/telephone.php:91 widgets/text/text.php:91
2403
- #: widgets/textarea/textarea.php:115 widgets/time/time.php:116
2404
- #: widgets/url/url.php:101
2405
- msgid "Place Holder"
2406
- msgstr ""
2407
-
2408
- #: widgets/email/email.php:16
2409
- msgid "Email"
2410
- msgstr ""
2411
-
2412
- #: widgets/email/email.php:129
2413
- msgid "Please enter a valid Email address"
2414
- msgstr ""
2415
-
2416
- #: widgets/file-upload/file-upload.php:16
2417
- msgid "File Upload"
2418
- msgstr ""
2419
-
2420
- #: widgets/file-upload/file-upload.php:47
2421
- msgid "File Upload Icon:"
2422
- msgstr ""
2423
-
2424
- #: widgets/file-upload/file-upload.php:56
2425
- msgid "File Upload Icon Position"
2426
- msgstr ""
2427
-
2428
- #: widgets/file-upload/file-upload.php:98
2429
- msgid "File Size Limit : "
2430
- msgstr ""
2431
-
2432
- #: widgets/file-upload/file-upload.php:109
2433
- msgid "Maximum File Size (KB) : "
2434
- msgstr ""
2435
-
2436
- #: widgets/file-upload/file-upload.php:111
2437
- msgid "128"
2438
- msgstr ""
2439
-
2440
- #: widgets/file-upload/file-upload.php:121
2441
- msgid "File Types : "
2442
- msgstr ""
2443
-
2444
- #: widgets/file-upload/file-upload.php:125
2445
- msgid ".jpg"
2446
- msgstr ""
2447
-
2448
- #: widgets/file-upload/file-upload.php:126
2449
- msgid ".jpeg"
2450
- msgstr ""
2451
-
2452
- #: widgets/file-upload/file-upload.php:127
2453
- msgid ".gif"
2454
- msgstr ""
2455
-
2456
- #: widgets/file-upload/file-upload.php:128
2457
- msgid ".png"
2458
- msgstr ""
2459
-
2460
- #: widgets/file-upload/file-upload.php:129
2461
- msgid ".ico"
2462
- msgstr ""
2463
-
2464
- #: widgets/file-upload/file-upload.php:130
2465
- msgid ".pdf"
2466
- msgstr ""
2467
-
2468
- #: widgets/file-upload/file-upload.php:131
2469
- msgid ".doc"
2470
- msgstr ""
2471
-
2472
- #: widgets/file-upload/file-upload.php:132
2473
- msgid ".docx"
2474
- msgstr ""
2475
-
2476
- #: widgets/file-upload/file-upload.php:133
2477
- msgid ".ppt"
2478
- msgstr ""
2479
-
2480
- #: widgets/file-upload/file-upload.php:134
2481
- msgid ".pptx"
2482
- msgstr ""
2483
-
2484
- #: widgets/file-upload/file-upload.php:135
2485
- msgid ".pps"
2486
- msgstr ""
2487
-
2488
- #: widgets/file-upload/file-upload.php:136
2489
- msgid ".ppsx"
2490
- msgstr ""
2491
-
2492
- #: widgets/file-upload/file-upload.php:137
2493
- msgid ".odt"
2494
- msgstr ""
2495
-
2496
- #: widgets/file-upload/file-upload.php:138
2497
- msgid ".xls"
2498
- msgstr ""
2499
-
2500
- #: widgets/file-upload/file-upload.php:139
2501
- msgid ".xlsx"
2502
- msgstr ""
2503
-
2504
- #: widgets/file-upload/file-upload.php:140
2505
- msgid ".psd"
2506
- msgstr ""
2507
-
2508
- #: widgets/file-upload/file-upload.php:141
2509
- msgid ".mp3"
2510
- msgstr ""
2511
-
2512
- #: widgets/file-upload/file-upload.php:142
2513
- msgid ".m4a"
2514
- msgstr ""
2515
-
2516
- #: widgets/file-upload/file-upload.php:143
2517
- msgid ".ogg"
2518
- msgstr ""
2519
-
2520
- #: widgets/file-upload/file-upload.php:144
2521
- msgid ".wav"
2522
- msgstr ""
2523
-
2524
- #: widgets/file-upload/file-upload.php:145
2525
- msgid ".mp4"
2526
- msgstr ""
2527
-
2528
- #: widgets/file-upload/file-upload.php:146
2529
- msgid ".m4v"
2530
- msgstr ""
2531
-
2532
- #: widgets/file-upload/file-upload.php:147
2533
- msgid ".mov"
2534
- msgstr ""
2535
-
2536
- #: widgets/file-upload/file-upload.php:148
2537
- msgid ".wmv"
2538
- msgstr ""
2539
-
2540
- #: widgets/file-upload/file-upload.php:149
2541
- msgid ".avi"
2542
- msgstr ""
2543
-
2544
- #: widgets/file-upload/file-upload.php:150
2545
- msgid ".mpg"
2546
- msgstr ""
2547
-
2548
- #: widgets/file-upload/file-upload.php:151
2549
- msgid ".ogv"
2550
- msgstr ""
2551
-
2552
- #: widgets/file-upload/file-upload.php:152
2553
- msgid ".3gp"
2554
- msgstr ""
2555
-
2556
- #: widgets/file-upload/file-upload.php:153
2557
- msgid ".3g2"
2558
- msgstr ""
2559
-
2560
- #: widgets/file-upload/file-upload.php:154
2561
- msgid ".zip"
2562
- msgstr ""
2563
-
2564
- #: widgets/file-upload/file-upload.php:155
2565
- msgid ".csv"
2566
- msgstr ""
2567
-
2568
- #: widgets/file-upload/file-upload.php:195
2569
- msgid "Icon Size"
2570
- msgstr ""
2571
-
2572
- #: widgets/file-upload/file-upload.php:223
2573
- msgid "Icon Spacing"
2574
- msgstr ""
2575
-
2576
- #: widgets/file-upload/file-upload.php:238
2577
- msgid "File Name:"
2578
- msgstr ""
2579
-
2580
- #: widgets/file-upload/file-upload.php:252
2581
- msgid "Bottom"
2582
- msgstr ""
2583
-
2584
- #: widgets/file-upload/file-upload.php:446
2585
- msgid "Choose a file"
2586
- msgstr ""
2587
-
2588
- #: widgets/file-upload/file-upload.php:452
2589
- msgid "No file chosen."
2590
- msgstr ""
2591
-
2592
- #: widgets/form-basic.php:12
2593
- msgid "MetForm Basic"
2594
- msgstr ""
2595
-
2596
- #: widgets/form-basic.php:58
2597
- msgid "Select Form : "
2598
- msgstr ""
2599
-
2600
- #: widgets/form.php:51
2601
- msgid "Select Form: "
2602
- msgstr ""
2603
-
2604
- #: widgets/form.php:54
2605
- msgid "Click on the \"red\" edit icon to edit form content."
2606
- msgstr ""
2607
-
2608
- #: widgets/gdpr-consent/gdpr-consent.php:16
2609
- msgid "GDPR Consent"
2610
- msgstr ""
2611
-
2612
- #: widgets/gdpr-consent/gdpr-consent.php:138
2613
- #: widgets/listing-optin/listing-optin.php:137
2614
- msgid "Select option name that will be show to user."
2615
- msgstr ""
2616
-
2617
- #: widgets/listing-fname/listing-fname.php:16
2618
- msgid "First Name (Listing)"
2619
- msgstr ""
2620
-
2621
- #: widgets/listing-lname/listing-lname.php:16
2622
- msgid "Last Name (Listing)"
2623
- msgstr ""
2624
-
2625
- #: widgets/listing-optin/listing-optin.php:16
2626
- msgid "Opt in ( Listing )"
2627
- msgstr ""
2628
-
2629
- #: widgets/listing-optin/listing-optin.php:135
2630
- msgid "Subscribe to ours newsletter."
2631
- msgstr ""
2632
-
2633
- #: widgets/manifest.php:116
2634
- msgid "Metform"
2635
- msgstr ""
2636
-
2637
- #: widgets/multi-select/multi-select.php:16
2638
- msgid "Multi Select"
2639
- msgstr ""
2640
-
2641
- #: widgets/multi-select/multi-select.php:47 widgets/select/select.php:47
2642
- msgid "Input Field Text"
2643
- msgstr ""
2644
-
2645
- #: widgets/multi-select/multi-select.php:49 widgets/select/select.php:49
2646
- msgid "Input Text"
2647
- msgstr ""
2648
-
2649
- #: widgets/multi-select/multi-select.php:51 widgets/select/select.php:51
2650
- msgid "Select list text that will be show to user."
2651
- msgstr ""
2652
-
2653
- #: widgets/multi-select/multi-select.php:56 widgets/select/select.php:56
2654
- msgid "Input Field Value"
2655
- msgstr ""
2656
-
2657
- #: widgets/multi-select/multi-select.php:60 widgets/select/select.php:60
2658
- msgid "Select list value that will be store/mail to desired person."
2659
- msgstr ""
2660
-
2661
- #: widgets/multi-select/multi-select.php:66 widgets/select/select.php:66
2662
- msgid "Status"
2663
- msgstr ""
2664
-
2665
- #: widgets/multi-select/multi-select.php:79 widgets/select/select.php:79
2666
- msgid "Select it default ? "
2667
- msgstr ""
2668
-
2669
- #: widgets/multi-select/multi-select.php:86 widgets/select/select.php:86
2670
- msgid "Make this option default selected"
2671
- msgstr ""
2672
-
2673
- #: widgets/multi-select/multi-select.php:93
2674
- msgid "Multi Select List"
2675
- msgstr ""
2676
-
2677
- #: widgets/number/number.php:16
2678
- msgid "Number"
2679
- msgstr ""
2680
-
2681
- #: widgets/password/password.php:16
2682
- msgid "Password"
2683
- msgstr ""
2684
-
2685
- #: widgets/radio/radio.php:24 widgets/radio/radio.php:346
2686
- msgid "Radio"
2687
- msgstr ""
2688
-
2689
- #: widgets/radio/radio.php:104
2690
- msgid ""
2691
- "Name is must required. Enter name without space or any special character. "
2692
- "use only underscore/ hyphen (_/-) for multiple word."
2693
- msgstr ""
2694
-
2695
- #: widgets/radio/radio.php:123
2696
- msgid "Radio option display style."
2697
- msgstr ""
2698
-
2699
- #: widgets/radio/radio.php:133
2700
- msgid "After Radio"
2701
- msgstr ""
2702
-
2703
- #: widgets/radio/radio.php:134
2704
- msgid "Before Radio"
2705
- msgstr ""
2706
-
2707
- #: widgets/radio/radio.php:145
2708
- msgid "Radio Option Text"
2709
- msgstr ""
2710
-
2711
- #: widgets/radio/radio.php:178
2712
- msgid "Radio Options"
2713
- msgstr ""
2714
-
2715
- #: widgets/radio/radio.php:402 widgets/radio/radio.php:427
2716
- msgid "Radio Color"
2717
- msgstr ""
2718
-
2719
- #: widgets/radio/radio.php:471
2720
- msgid "Add space after radio"
2721
- msgstr ""
2722
-
2723
- #: widgets/range/range.php:16
2724
- msgid "Range Slider"
2725
- msgstr ""
2726
-
2727
- #: widgets/range/range.php:86
2728
- msgid "Steps"
2729
- msgstr ""
2730
-
2731
- #: widgets/range/range.php:95
2732
- msgid "Dual range input:"
2733
- msgstr ""
2734
-
2735
- #: widgets/range/range.php:108
2736
- msgid ""
2737
- "<strong>Important Note : </strong> For taking dual range input, You have to "
2738
- "enter dual default value in the field Value (Exactly bottom of this notice "
2739
- "field. ). Example: Min:10, Max:20"
2740
- msgstr ""
2741
-
2742
- #: widgets/range/range.php:119
2743
- msgid "Value"
2744
- msgstr ""
2745
-
2746
- #: widgets/range/range.php:148
2747
- msgid "Range"
2748
- msgstr ""
2749
-
2750
- #: widgets/range/range.php:160
2751
- msgid "Counter"
2752
- msgstr ""
2753
-
2754
- #: widgets/range/range.php:183 widgets/switch/switch.php:132
2755
- #: widgets/textarea/textarea.php:88
2756
- msgid "Height"
2757
- msgstr ""
2758
-
2759
- #: widgets/rating/rating.php:16
2760
- msgid "Rating"
2761
- msgstr ""
2762
-
2763
- #: widgets/rating/rating.php:67
2764
- msgid "Number of rating star : "
2765
- msgstr ""
2766
-
2767
- #: widgets/recaptcha/recaptcha.php:13
2768
- msgid "reCAPTCHA"
2769
- msgstr ""
2770
-
2771
- #: widgets/recaptcha/recaptcha.php:40
2772
- msgid "reCAPTCHA configure: "
2773
- msgstr ""
2774
-
2775
- #: widgets/recaptcha/recaptcha.php:50
2776
- msgid "Add Extra Class Name : "
2777
- msgstr ""
2778
-
2779
- #: widgets/recaptcha/recaptcha.php:91
2780
- msgid "reCAPTCHA is required."
2781
- msgstr ""
2782
-
2783
- #: widgets/recaptcha/recaptcha.php:127 widgets/recaptcha/recaptcha.php:144
2784
- msgid "reCAPTCHA will be shown on preview."
2785
- msgstr ""
2786
-
2787
- #: widgets/select/select.php:16 widgets/select/select.php:163
2788
- msgid "Select"
2789
- msgstr ""
2790
-
2791
- #: widgets/select/select.php:93
2792
- msgid "Dropdown List"
2793
- msgstr ""
2794
-
2795
- #: widgets/simple-captcha/simple-captcha.php:22
2796
- msgid "Simple Captcha"
2797
- msgstr ""
2798
-
2799
- #: widgets/simple-captcha/simple-captcha.php:62
2800
- msgid "Label Position"
2801
- msgstr ""
2802
-
2803
- #: widgets/simple-captcha/simple-captcha.php:83
2804
- msgid "Input captcha display"
2805
- msgstr ""
2806
-
2807
- #: widgets/simple-captcha/simple-captcha.php:87
2808
- msgid "Block"
2809
- msgstr ""
2810
-
2811
- #: widgets/simple-captcha/simple-captcha.php:88
2812
- msgid "Inline"
2813
- msgstr ""
2814
-
2815
- #: widgets/simple-captcha/simple-captcha.php:90
2816
- msgid "Select input and captcha display property."
2817
- msgstr ""
2818
-
2819
- #: widgets/simple-captcha/simple-captcha.php:240
2820
- msgid "Refresh Captcha"
2821
- msgstr ""
2822
-
2823
- #: widgets/simple-captcha/simple-captcha.php:333
2824
- msgid "Captcha didn't matched."
2825
- msgstr ""
2826
-
2827
- #: widgets/simple-captcha/simple-captcha.php:366
2828
- msgid "Entry captcha from the picture"
2829
- msgstr ""
2830
-
2831
- #: widgets/summary/summary.php:16
2832
- msgid "Summary"
2833
- msgstr ""
2834
-
2835
- #: widgets/summary/summary.php:141
2836
- msgid "Summary will be shown on preview."
2837
- msgstr ""
2838
-
2839
- #: widgets/switch/switch.php:16
2840
- msgid "Switch"
2841
- msgstr ""
2842
-
2843
- #: widgets/switch/switch.php:46
2844
- msgid "Active Text"
2845
- msgstr ""
2846
-
2847
- #: widgets/switch/switch.php:54
2848
- msgid "Inactive Text"
2849
- msgstr ""
2850
-
2851
- #: widgets/switch/switch.php:148
2852
- msgid "Input Active Color"
2853
- msgstr ""
2854
-
2855
- #: widgets/switch/switch.php:168
2856
- msgid "Active and Inactive Text:"
2857
- msgstr ""
2858
-
2859
- #: widgets/switch/switch.php:180
2860
- msgid "Inactive"
2861
- msgstr ""
2862
-
2863
- #: widgets/telephone/telephone.php:16
2864
- msgid "Telephone"
2865
- msgstr ""
2866
-
2867
- #: widgets/text/text.php:16
2868
- msgid "Text"
2869
- msgstr ""
2870
-
2871
- #: widgets/textarea/textarea.php:17
2872
- msgid "Textarea"
2873
- msgstr ""
2874
-
2875
- #: widgets/time/time.php:20
2876
- msgid "Time"
2877
- msgstr ""
2878
-
2879
- #: widgets/time/time.php:71
2880
- msgid "Use time 24H"
2881
- msgstr ""
2882
-
2883
- #: widgets/url/url.php:16
2884
- msgid "URL"
2885
- msgstr ""
2886
-
2887
- #: widgets/url/url.php:138
2888
- msgid "Please enter a valid URL"
2889
- msgstr ""
2890
-
2891
- #: widgets/widget-notice.php:18
2892
- msgid "Go Pro for More Features"
2893
- msgstr ""
2894
-
2895
- #: widgets/widget-notice.php:25
2896
- msgid "Unlock more possibilities"
2897
- msgstr ""
2898
-
2899
- #. Plugin URI of the plugin/theme
2900
- msgid "http://products.wpmet.com/metform/"
2901
- msgstr ""
2902
-
2903
- #. Description of the plugin/theme
2904
- msgid "Most flexible and design friendly form builder for Elementor"
2905
- msgstr ""
2906
-
2907
- #. Author of the plugin/theme
2908
- msgid "Wpmet"
2909
- msgstr ""
2910
-
2911
- #. Author URI of the plugin/theme
2912
- msgid "https://wpmet.com"
2913
- msgstr ""
1
+ #, fuzzy
2
+ msgid ""
3
+ msgstr ""
4
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
+ "Project-Id-Version: MetForm\n"
6
+ "POT-Creation-Date: 2020-05-05 20:23+0600\n"
7
+ "PO-Revision-Date: 2020-05-05 20:23+0600\n"
8
+ "Last-Translator: \n"
9
+ "Language-Team: \n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 2.3\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
16
+ "X-Poedit-WPHeader: metform.php\n"
17
+ "X-Poedit-SourceCharset: UTF-8\n"
18
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
19
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
20
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+ "X-Poedit-SearchPathExcluded-0: *.min.js\n"
23
+
24
+ #. Plugin Name of the plugin/theme
25
+ #: controls/form-editor-modal.php:12 plugin.php:242 plugin.php:243
26
+ #: widgets/form.php:16
27
+ msgid "MetForm"
28
+ msgstr ""
29
+
30
+ #: controls/form-editor-modal.php:14
31
+ msgid "Form settings"
32
+ msgstr ""
33
+
34
+ #: controls/form-editor-modal.php:15
35
+ msgid "Update & Close"
36
+ msgstr ""
37
+
38
+ #: controls/form-editor-modal.php:20 controls/form-editor-modal.php:21
39
+ #: controls/form-picker-modal.php:93
40
+ msgid "Close"
41
+ msgstr ""
42
+
43
+ #: controls/form-editor-modal.php:46
44
+ msgid "Loading"
45
+ msgstr ""
46
+
47
+ #: controls/form-picker-modal.php:12
48
+ msgid "Select Form"
49
+ msgstr ""
50
+
51
+ #: controls/form-picker-modal.php:13
52
+ msgid "Select saved form"
53
+ msgstr ""
54
+
55
+ #: controls/form-picker-modal.php:23
56
+ msgid "New"
57
+ msgstr ""
58
+
59
+ #: controls/form-picker-modal.php:24
60
+ msgid "Create new form"
61
+ msgstr ""
62
+
63
+ #: controls/form-picker-modal.php:37
64
+ msgid "Enter a form name"
65
+ msgstr ""
66
+
67
+ #: controls/form-picker-modal.php:70
68
+ msgid "Buy Pro"
69
+ msgstr ""
70
+
71
+ #: controls/form-picker-modal.php:74
72
+ msgid "Demo"
73
+ msgstr ""
74
+
75
+ #: controls/form-picker-modal.php:89
76
+ msgid "Edit form"
77
+ msgstr ""
78
+
79
+ #: controls/form-picker-modal.php:91
80
+ msgid "Save & close"
81
+ msgstr ""
82
+
83
+ #: controls/form-picker-utils.php:33
84
+ msgid "Edit Form Content"
85
+ msgstr ""
86
+
87
+ #: controls/form-picker-utils.php:33
88
+ msgid "Edit"
89
+ msgstr ""
90
+
91
+ #: controls/form-picker-utils.php:40
92
+ msgid "No content is added yet."
93
+ msgstr ""
94
+
95
+ #: core/admin/base.php:28 traits/button-controls.php:37
96
+ #: widgets/checkbox/checkbox.php:217 widgets/date/date.php:52
97
+ #: widgets/email/email.php:48 widgets/file-upload/file-upload.php:79
98
+ #: widgets/listing-fname/listing-fname.php:48
99
+ #: widgets/listing-lname/listing-lname.php:48
100
+ #: widgets/listing-optin/listing-optin.php:156
101
+ #: widgets/multi-select/multi-select.php:123 widgets/number/number.php:48
102
+ #: widgets/password/password.php:48 widgets/radio/radio.php:218
103
+ #: widgets/range/range.php:48 widgets/rating/rating.php:48
104
+ #: widgets/select/select.php:123 widgets/summary/summary.php:48
105
+ #: widgets/switch/switch.php:65 widgets/telephone/telephone.php:48
106
+ #: widgets/text/text.php:48 widgets/textarea/textarea.php:49
107
+ #: widgets/time/time.php:52 widgets/url/url.php:49
108
+ msgid "Settings"
109
+ msgstr ""
110
+
111
+ #: core/admin/views/settings.php:21 core/admin/views/settings.php:72
112
+ msgid "Dashboard"
113
+ msgstr ""
114
+
115
+ #: core/admin/views/settings.php:22
116
+ msgid "All dashboard info here"
117
+ msgstr ""
118
+
119
+ #: core/admin/views/settings.php:30 core/admin/views/settings.php:294
120
+ #: core/forms/views/modal-editor.php:18
121
+ msgid "General"
122
+ msgstr ""
123
+
124
+ #: core/admin/views/settings.php:31
125
+ msgid "All General info here"
126
+ msgstr ""
127
+
128
+ #: core/admin/views/settings.php:40 core/admin/views/settings.php:406
129
+ #: core/entries/meta-data.php:221 core/forms/views/modal-editor.php:27
130
+ msgid "Payment"
131
+ msgstr ""
132
+
133
+ #: core/admin/views/settings.php:41
134
+ msgid "All payment info here"
135
+ msgstr ""
136
+
137
+ #: core/admin/views/settings.php:49 core/admin/views/settings.php:530
138
+ msgid "Newsletter Integration"
139
+ msgstr ""
140
+
141
+ #: core/admin/views/settings.php:50
142
+ msgid "All newsletter integration info here"
143
+ msgstr ""
144
+
145
+ #: core/admin/views/settings.php:73 core/admin/views/settings.php:295
146
+ #: core/admin/views/settings.php:407 core/admin/views/settings.php:532
147
+ msgid "Save Changes"
148
+ msgstr ""
149
+
150
+ #: core/admin/views/settings.php:83
151
+ msgid "Top Notch"
152
+ msgstr ""
153
+
154
+ #: core/admin/views/settings.php:84
155
+ msgid "Features"
156
+ msgstr ""
157
+
158
+ #: core/admin/views/settings.php:85 core/admin/views/settings.php:144
159
+ msgid "features"
160
+ msgstr ""
161
+
162
+ #: core/admin/views/settings.php:87 core/admin/views/settings.php:146
163
+ #: core/admin/views/settings.php:220
164
+ msgid ""
165
+ "Get started by spending some time with the documentation to get familiar "
166
+ "with ElementsKit."
167
+ msgstr ""
168
+
169
+ #: core/admin/views/settings.php:95 core/admin/views/settings.php:154
170
+ msgid "Easy to use"
171
+ msgstr ""
172
+
173
+ #: core/admin/views/settings.php:97 core/admin/views/settings.php:104
174
+ #: core/admin/views/settings.php:111 core/admin/views/settings.php:118
175
+ #: core/admin/views/settings.php:125 core/admin/views/settings.php:132
176
+ msgid ""
177
+ "Get started by spending some time with the documentation to get familiar "
178
+ "with MetForm"
179
+ msgstr ""
180
+
181
+ #: core/admin/views/settings.php:102
182
+ msgid "Moden Typography"
183
+ msgstr ""
184
+
185
+ #: core/admin/views/settings.php:109 core/admin/views/settings.php:160
186
+ msgid "Perfectly Match"
187
+ msgstr ""
188
+
189
+ #: core/admin/views/settings.php:116
190
+ msgid "Dynamic Forms"
191
+ msgstr ""
192
+
193
+ #: core/admin/views/settings.php:123
194
+ msgid "Create Faster"
195
+ msgstr ""
196
+
197
+ #: core/admin/views/settings.php:130
198
+ msgid "Awesome Layout"
199
+ msgstr ""
200
+
201
+ #: core/admin/views/settings.php:142
202
+ msgid "What included with Free &"
203
+ msgstr ""
204
+
205
+ #: core/admin/views/settings.php:143
206
+ msgid "PRO"
207
+ msgstr ""
208
+
209
+ #: core/admin/views/settings.php:154 core/admin/views/settings.php:157
210
+ #: core/admin/views/settings.php:160
211
+ msgid "Pro"
212
+ msgstr ""
213
+
214
+ #: core/admin/views/settings.php:157
215
+ msgid "Modern Typography"
216
+ msgstr ""
217
+
218
+ #: core/admin/views/settings.php:169 core/admin/views/settings.php:185
219
+ #: core/admin/views/settings.php:199
220
+ msgid ""
221
+ "Get started by spending some time with the documentation to get familiar "
222
+ "with MetForm Get started by spending some time with the documentation to get "
223
+ "notification in real time."
224
+ msgstr ""
225
+
226
+ #: core/admin/views/settings.php:172 core/admin/views/settings.php:188
227
+ #: core/admin/views/settings.php:202
228
+ msgid "Success Message"
229
+ msgstr ""
230
+
231
+ #: core/admin/views/settings.php:173 core/admin/views/settings.php:189
232
+ #: core/admin/views/settings.php:203
233
+ msgid "Required Login"
234
+ msgstr ""
235
+
236
+ #: core/admin/views/settings.php:174 core/admin/views/settings.php:190
237
+ #: core/admin/views/settings.php:204
238
+ msgid "Hide Form After Submission"
239
+ msgstr ""
240
+
241
+ #: core/admin/views/settings.php:176 core/admin/views/settings.php:192
242
+ #: core/admin/views/settings.php:206
243
+ msgid "Store Entries"
244
+ msgstr ""
245
+
246
+ #: core/admin/views/settings.php:179
247
+ msgid "View Details"
248
+ msgstr ""
249
+
250
+ #: core/admin/views/settings.php:217
251
+ msgid "General Knowledge Base"
252
+ msgstr ""
253
+
254
+ #: core/admin/views/settings.php:218
255
+ msgid "FAQ"
256
+ msgstr ""
257
+
258
+ #: core/admin/views/settings.php:228
259
+ msgid "1. How to create a Invitation Form using MetForm?"
260
+ msgstr ""
261
+
262
+ #: core/admin/views/settings.php:232 core/admin/views/settings.php:243
263
+ #: core/admin/views/settings.php:254
264
+ msgid ""
265
+ "You will get 20+ complete homepages and total 450+ blocks in our layout "
266
+ "library and we’re continuously updating the numbers there."
267
+ msgstr ""
268
+
269
+ #: core/admin/views/settings.php:239
270
+ msgid "2. How to translate language with WPML?"
271
+ msgstr ""
272
+
273
+ #: core/admin/views/settings.php:250
274
+ msgid "3. How to add custom css in specific section shortcode?"
275
+ msgstr ""
276
+
277
+ #: core/admin/views/settings.php:261
278
+ msgid "View all faq’s"
279
+ msgstr ""
280
+
281
+ #: core/admin/views/settings.php:270
282
+ msgid "Satisfied!"
283
+ msgstr ""
284
+
285
+ #: core/admin/views/settings.php:270
286
+ msgid "Don’t forget to rate our item."
287
+ msgstr ""
288
+
289
+ #: core/admin/views/settings.php:272
290
+ msgid "review"
291
+ msgstr ""
292
+
293
+ #: core/admin/views/settings.php:278
294
+ msgid "Rate it now"
295
+ msgstr ""
296
+
297
+ #: core/admin/views/settings.php:283
298
+ msgid "Rate Now Thumb"
299
+ msgstr ""
300
+
301
+ #: core/admin/views/settings.php:301
302
+ msgid "reCaptcha"
303
+ msgstr ""
304
+
305
+ #: core/admin/views/settings.php:306
306
+ msgid "Map"
307
+ msgstr ""
308
+
309
+ #: core/admin/views/settings.php:317
310
+ msgid "Select version:"
311
+ msgstr ""
312
+
313
+ #: core/admin/views/settings.php:321
314
+ msgid "reCAPTCHA V2"
315
+ msgstr ""
316
+
317
+ #: core/admin/views/settings.php:324
318
+ msgid "reCAPTCHA V3"
319
+ msgstr ""
320
+
321
+ #: core/admin/views/settings.php:329
322
+ msgid "Select google reCaptcha version which one want to use."
323
+ msgstr ""
324
+
325
+ #: core/admin/views/settings.php:336 core/admin/views/settings.php:355
326
+ msgid "Site key:"
327
+ msgstr ""
328
+
329
+ #: core/admin/views/settings.php:338 core/admin/views/settings.php:357
330
+ msgid "Insert site key"
331
+ msgstr ""
332
+
333
+ #: core/admin/views/settings.php:340 core/admin/views/settings.php:359
334
+ msgid "Create google reCaptcha site key from reCaptcha admin panel. "
335
+ msgstr ""
336
+
337
+ #: core/admin/views/settings.php:340 core/admin/views/settings.php:348
338
+ #: core/admin/views/settings.php:359 core/admin/views/settings.php:367
339
+ #: core/admin/views/settings.php:385 core/admin/views/settings.php:433
340
+ #: core/admin/views/settings.php:441 core/admin/views/settings.php:473
341
+ #: core/admin/views/settings.php:481 core/admin/views/settings.php:500
342
+ #: core/admin/views/settings.php:507
343
+ msgid "Create from here"
344
+ msgstr ""
345
+
346
+ #: core/admin/views/settings.php:344 core/admin/views/settings.php:363
347
+ msgid "Secret key:"
348
+ msgstr ""
349
+
350
+ #: core/admin/views/settings.php:346 core/admin/views/settings.php:365
351
+ msgid "Insert secret key"
352
+ msgstr ""
353
+
354
+ #: core/admin/views/settings.php:348 core/admin/views/settings.php:367
355
+ msgid "Create google reCaptcha secret key from reCaptcha admin panel. "
356
+ msgstr ""
357
+
358
+ #: core/admin/views/settings.php:381
359
+ msgid "API:"
360
+ msgstr ""
361
+
362
+ #: core/admin/views/settings.php:383
363
+ msgid "Insert map api key"
364
+ msgstr ""
365
+
366
+ #: core/admin/views/settings.php:385
367
+ msgid "Create google map api key from google developer console. "
368
+ msgstr ""
369
+
370
+ #: core/admin/views/settings.php:413
371
+ msgid "Paypal"
372
+ msgstr ""
373
+
374
+ #: core/admin/views/settings.php:418
375
+ msgid "Stripe"
376
+ msgstr ""
377
+
378
+ #: core/admin/views/settings.php:430
379
+ msgid "Paypal email:"
380
+ msgstr ""
381
+
382
+ #: core/admin/views/settings.php:431
383
+ msgid "Paypal email"
384
+ msgstr ""
385
+
386
+ #: core/admin/views/settings.php:433
387
+ msgid "Enter here your paypal email. "
388
+ msgstr ""
389
+
390
+ #: core/admin/views/settings.php:438
391
+ msgid "Paypal token:"
392
+ msgstr ""
393
+
394
+ #: core/admin/views/settings.php:439
395
+ msgid "Paypal token"
396
+ msgstr ""
397
+
398
+ #: core/admin/views/settings.php:441
399
+ msgid "Enter here your paypal token. This is optional. "
400
+ msgstr ""
401
+
402
+ #: core/admin/views/settings.php:446 core/admin/views/settings.php:487
403
+ msgid "Enable sandbox mode:"
404
+ msgstr ""
405
+
406
+ #: core/admin/views/settings.php:449
407
+ msgid "Enable this for testing payment method. "
408
+ msgstr ""
409
+
410
+ #: core/admin/views/settings.php:462
411
+ msgid "Image url:"
412
+ msgstr ""
413
+
414
+ #: core/admin/views/settings.php:463
415
+ msgid "Stripe image url"
416
+ msgstr ""
417
+
418
+ #: core/admin/views/settings.php:465
419
+ msgid ""
420
+ "Enter here your stripe image url. This image will show on stripe payment pop "
421
+ "up modal. "
422
+ msgstr ""
423
+
424
+ #: core/admin/views/settings.php:470
425
+ msgid "Live publishiable key:"
426
+ msgstr ""
427
+
428
+ #: core/admin/views/settings.php:471
429
+ msgid "Stripe live publishiable key"
430
+ msgstr ""
431
+
432
+ #: core/admin/views/settings.php:473
433
+ msgid "Enter here your stripe live publishiable key. "
434
+ msgstr ""
435
+
436
+ #: core/admin/views/settings.php:478
437
+ msgid "Live secret key:"
438
+ msgstr ""
439
+
440
+ #: core/admin/views/settings.php:479
441
+ msgid "Stripe live secret key"
442
+ msgstr ""
443
+
444
+ #: core/admin/views/settings.php:481
445
+ msgid "Enter here your stripe live secret key. "
446
+ msgstr ""
447
+
448
+ #: core/admin/views/settings.php:490
449
+ msgid "Enable this for testing your payment system. "
450
+ msgstr ""
451
+
452
+ #: core/admin/views/settings.php:497
453
+ msgid "Test publishiable key:"
454
+ msgstr ""
455
+
456
+ #: core/admin/views/settings.php:498
457
+ msgid "Stripe test publishiable key"
458
+ msgstr ""
459
+
460
+ #: core/admin/views/settings.php:500
461
+ msgid "Enter here your test publishiable key. "
462
+ msgstr ""
463
+
464
+ #: core/admin/views/settings.php:504
465
+ msgid "Test secret key:"
466
+ msgstr ""
467
+
468
+ #: core/admin/views/settings.php:505
469
+ msgid "Stripe test secret key"
470
+ msgstr ""
471
+
472
+ #: core/admin/views/settings.php:507
473
+ msgid "Enter here your test secret key. "
474
+ msgstr ""
475
+
476
+ #: core/admin/views/settings.php:539
477
+ msgid "MailChimp"
478
+ msgstr ""
479
+
480
+ #: core/admin/views/settings.php:544
481
+ msgid "Aweber"
482
+ msgstr ""
483
+
484
+ #: core/admin/views/settings.php:548
485
+ msgid "ActiveCampaign"
486
+ msgstr ""
487
+
488
+ #: core/admin/views/settings.php:552
489
+ msgid "Get Response"
490
+ msgstr ""
491
+
492
+ #: core/admin/views/settings.php:556
493
+ msgid "ConvertKit"
494
+ msgstr ""
495
+
496
+ #: core/admin/views/settings.php:569 core/admin/views/settings.php:666
497
+ #: core/admin/views/settings.php:718 core/admin/views/settings.php:745
498
+ msgid "API Key:"
499
+ msgstr ""
500
+
501
+ #: core/admin/views/settings.php:570
502
+ msgid "Mailchimp api key"
503
+ msgstr ""
504
+
505
+ #: core/admin/views/settings.php:572
506
+ msgid "Enter here your Mailchimp api key. "
507
+ msgstr ""
508
+
509
+ #: core/admin/views/settings.php:572 core/admin/views/settings.php:606
510
+ #: core/admin/views/settings.php:614 core/admin/views/settings.php:669
511
+ #: core/admin/views/settings.php:678 core/admin/views/settings.php:713
512
+ #: core/admin/views/settings.php:721 core/admin/views/settings.php:748
513
+ msgid "Get API."
514
+ msgstr ""
515
+
516
+ #: core/admin/views/settings.php:581 core/admin/views/settings.php:646
517
+ #: core/admin/views/settings.php:688 core/admin/views/settings.php:729
518
+ #: core/admin/views/settings.php:756 core/admin/views/settings.php:789
519
+ #: core/admin/views/settings.php:816
520
+ msgid "How To"
521
+ msgstr ""
522
+
523
+ #: core/admin/views/settings.php:582 core/admin/views/settings.php:647
524
+ #: core/admin/views/settings.php:689 core/admin/views/settings.php:730
525
+ #: core/admin/views/settings.php:757 core/admin/views/settings.php:790
526
+ #: core/admin/views/settings.php:817
527
+ msgid ""
528
+ "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. "
529
+ "Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse "
530
+ "urna nibh, viverra non, semper suscipit, posuere a, pede."
531
+ msgstr ""
532
+
533
+ #: core/admin/views/settings.php:585 core/admin/views/settings.php:650
534
+ #: core/admin/views/settings.php:692 core/admin/views/settings.php:733
535
+ #: core/admin/views/settings.php:760 core/admin/views/settings.php:793
536
+ #: core/admin/views/settings.php:820
537
+ msgid "Item 1"
538
+ msgstr ""
539
+
540
+ #: core/admin/views/settings.php:586 core/admin/views/settings.php:651
541
+ #: core/admin/views/settings.php:693 core/admin/views/settings.php:734
542
+ #: core/admin/views/settings.php:761 core/admin/views/settings.php:794
543
+ #: core/admin/views/settings.php:821
544
+ msgid "Item 2"
545
+ msgstr ""
546
+
547
+ #: core/admin/views/settings.php:587 core/admin/views/settings.php:652
548
+ #: core/admin/views/settings.php:694 core/admin/views/settings.php:735
549
+ #: core/admin/views/settings.php:762 core/admin/views/settings.php:795
550
+ #: core/admin/views/settings.php:822
551
+ msgid "Item 3"
552
+ msgstr ""
553
+
554
+ #: core/admin/views/settings.php:590 core/admin/views/settings.php:655
555
+ #: core/admin/views/settings.php:697 core/admin/views/settings.php:738
556
+ #: core/admin/views/settings.php:765 core/admin/views/settings.php:798
557
+ #: core/admin/views/settings.php:825
558
+ msgid "View Documentation"
559
+ msgstr ""
560
+
561
+ #: core/admin/views/settings.php:603
562
+ msgid "Developer App ID:"
563
+ msgstr ""
564
+
565
+ #: core/admin/views/settings.php:604
566
+ msgid "Aweber developer clientId key"
567
+ msgstr ""
568
+
569
+ #: core/admin/views/settings.php:606
570
+ msgid "Enter here your Aweber developer app key. "
571
+ msgstr ""
572
+
573
+ #: core/admin/views/settings.php:611
574
+ msgid "Developer App Secret:"
575
+ msgstr ""
576
+
577
+ #: core/admin/views/settings.php:612
578
+ msgid "Aweber developer secret key"
579
+ msgstr ""
580
+
581
+ #: core/admin/views/settings.php:614
582
+ msgid "Enter here your Aweber developer secret key. "
583
+ msgstr ""
584
+
585
+ #: core/admin/views/settings.php:619
586
+ msgid "Redirect url:"
587
+ msgstr ""
588
+
589
+ #: core/admin/views/settings.php:667 core/admin/views/settings.php:676
590
+ msgid "ConvertKit api key"
591
+ msgstr ""
592
+
593
+ #: core/admin/views/settings.php:669 core/admin/views/settings.php:678
594
+ msgid "Enter here your ConvertKit api key. "
595
+ msgstr ""
596
+
597
+ #: core/admin/views/settings.php:675
598
+ msgid "Secret Key:"
599
+ msgstr ""
600
+
601
+ #: core/admin/views/settings.php:710
602
+ msgid "API URL:"
603
+ msgstr ""
604
+
605
+ #: core/admin/views/settings.php:711
606
+ msgid "ActiveCampaign API URL"
607
+ msgstr ""
608
+
609
+ #: core/admin/views/settings.php:713 core/admin/views/settings.php:721
610
+ #: core/admin/views/settings.php:748
611
+ msgid "Enter here your ActiveCampaign api key. "
612
+ msgstr ""
613
+
614
+ #: core/admin/views/settings.php:719 core/admin/views/settings.php:746
615
+ msgid "ActiveCampaign api key"
616
+ msgstr ""
617
+
618
+ #: core/admin/views/settings.php:779 core/admin/views/settings.php:806
619
+ msgid "GetResponse API Key:"
620
+ msgstr ""
621
+
622
+ #: core/admin/views/settings.php:780 core/admin/views/settings.php:807
623
+ msgid "GetResponse api key"
624
+ msgstr ""
625
+
626
+ #: core/entries/action.php:39
627
+ msgid "Some thing went wrong."
628
+ msgstr ""
629
+
630
+ #: core/entries/action.php:77
631
+ msgid "Unauthorized submission."
632
+ msgstr ""
633
+
634
+ #: core/entries/action.php:92 core/entries/action.php:122
635
+ msgid "Please solve the recaptcha."
636
+ msgstr ""
637
+
638
+ #: core/entries/action.php:98
639
+ msgid "Google captcha token not found."
640
+ msgstr ""
641
+
642
+ #: core/entries/action.php:144
643
+ msgid "Time out of this captcha. Please reload or choose another one."
644
+ msgstr ""
645
+
646
+ #: core/entries/action.php:153
647
+ msgid "Enter correct captcha."
648
+ msgstr ""
649
+
650
+ #: core/entries/action.php:163
651
+ msgid "You must be logged in to submit form."
652
+ msgstr ""
653
+
654
+ #: core/entries/action.php:173
655
+ msgid "Form submission limit execed."
656
+ msgstr ""
657
+
658
+ #: core/entries/action.php:479
659
+ msgid " Please wait... Redirecting to paypal."
660
+ msgstr ""
661
+
662
+ #: core/entries/action.php:517
663
+ msgid " Please wait... Open a Stripe Popup Box."
664
+ msgstr ""
665
+
666
+ #: core/entries/action.php:645
667
+ msgid "Mail not found."
668
+ msgstr ""
669
+
670
+ #: core/entries/action.php:687
671
+ msgid "Admin mail not found to send email."
672
+ msgstr ""
673
+
674
+ #: core/entries/action.php:754
675
+ msgid "There was an error uploading your file. The error is: "
676
+ msgstr ""
677
+
678
+ #: core/entries/cpt.php:14
679
+ msgctxt "Post Type General Name"
680
+ msgid "Entries"
681
+ msgstr ""
682
+
683
+ #: core/entries/cpt.php:15
684
+ msgctxt "Post Type Singular Name"
685
+ msgid "Entry"
686
+ msgstr ""
687
+
688
+ #: core/entries/cpt.php:16 core/entries/cpt.php:17
689
+ msgid "Entry"
690
+ msgstr ""
691
+
692
+ #: core/entries/cpt.php:18
693
+ msgid "Entry Archives"
694
+ msgstr ""
695
+
696
+ #: core/entries/cpt.php:19
697
+ msgid "Entry Attributes"
698
+ msgstr ""
699
+
700
+ #: core/entries/cpt.php:20 core/forms/cpt.php:320
701
+ msgid "Parent Item:"
702
+ msgstr ""
703
+
704
+ #: core/entries/cpt.php:21 core/forms/hooks.php:36
705
+ msgid "Entries"
706
+ msgstr ""
707
+
708
+ #: core/entries/cpt.php:22
709
+ msgid "Add New Item"
710
+ msgstr ""
711
+
712
+ #: core/entries/cpt.php:23 core/forms/cpt.php:323
713
+ msgid "Add New"
714
+ msgstr ""
715
+
716
+ #: core/entries/cpt.php:24
717
+ msgid "New Item"
718
+ msgstr ""
719
+
720
+ #: core/entries/cpt.php:25
721
+ msgid "Edit Item"
722
+ msgstr ""
723
+
724
+ #: core/entries/cpt.php:26
725
+ msgid "Update Item"
726
+ msgstr ""
727
+
728
+ #: core/entries/cpt.php:27
729
+ msgid "View Item"
730
+ msgstr ""
731
+
732
+ #: core/entries/cpt.php:28
733
+ msgid "View Items"
734
+ msgstr ""
735
+
736
+ #: core/entries/cpt.php:29
737
+ msgid "Search Item"
738
+ msgstr ""
739
+
740
+ #: core/entries/cpt.php:30 core/forms/cpt.php:330
741
+ msgid "Not found"
742
+ msgstr ""
743
+
744
+ #: core/entries/cpt.php:31 core/forms/cpt.php:331
745
+ msgid "Not found in Trash"
746
+ msgstr ""
747
+
748
+ #: core/entries/cpt.php:32 core/forms/cpt.php:332
749
+ msgid "Featured Image"
750
+ msgstr ""
751
+
752
+ #: core/entries/cpt.php:33 core/forms/cpt.php:333
753
+ msgid "Set featured image"
754
+ msgstr ""
755
+
756
+ #: core/entries/cpt.php:34 core/forms/cpt.php:334
757
+ msgid "Remove featured image"
758
+ msgstr ""
759
+
760
+ #: core/entries/cpt.php:35 core/forms/cpt.php:335
761
+ msgid "Use as featured image"
762
+ msgstr ""
763
+
764
+ #: core/entries/cpt.php:36
765
+ msgid "Insert into item"
766
+ msgstr ""
767
+
768
+ #: core/entries/cpt.php:37
769
+ msgid "Uploaded to this item"
770
+ msgstr ""
771
+
772
+ #: core/entries/cpt.php:38
773
+ msgid "Form entries list"
774
+ msgstr ""
775
+
776
+ #: core/entries/cpt.php:39
777
+ msgid "Form entries list navigation"
778
+ msgstr ""
779
+
780
+ #: core/entries/cpt.php:40
781
+ msgid "Filter from entry list"
782
+ msgstr ""
783
+
784
+ #: core/entries/cpt.php:44
785
+ msgid "Form entry"
786
+ msgstr ""
787
+
788
+ #: core/entries/cpt.php:45
789
+ msgid "metform-entry"
790
+ msgstr ""
791
+
792
+ #: core/entries/hooks.php:27
793
+ msgid "Form Name"
794
+ msgstr ""
795
+
796
+ #: core/entries/hooks.php:29
797
+ msgid "Referral"
798
+ msgstr ""
799
+
800
+ #: core/entries/meta-data.php:35
801
+ msgid "Info"
802
+ msgstr ""
803
+
804
+ #: core/entries/meta-data.php:58
805
+ msgid "Form Name "
806
+ msgstr ""
807
+
808
+ #: core/entries/meta-data.php:64
809
+ msgid "Entry ID"
810
+ msgstr ""
811
+
812
+ #: core/entries/meta-data.php:81
813
+ msgid "Data"
814
+ msgstr ""
815
+
816
+ #: core/entries/meta-data.php:103
817
+ msgid "Browser Data"
818
+ msgstr ""
819
+
820
+ #: core/entries/meta-data.php:135
821
+ msgid "Browser data not captured."
822
+ msgstr ""
823
+
824
+ #: core/entries/meta-data.php:151
825
+ msgid "Files"
826
+ msgstr ""
827
+
828
+ #: core/entries/meta-data.php:182
829
+ msgid "Download"
830
+ msgstr ""
831
+
832
+ #: core/entries/meta-data.php:183
833
+ msgid "View"
834
+ msgstr ""
835
+
836
+ #: core/entries/meta-data.php:185
837
+ msgid "This file is not uploaded."
838
+ msgstr ""
839
+
840
+ #: core/forms/action.php:78 core/forms/action.php:102
841
+ msgid "Form settings inserted"
842
+ msgstr ""
843
+
844
+ #: core/forms/action.php:106
845
+ msgid ""
846
+ "You must active at least one field of these fields \"store entry/ "
847
+ "Confirmation/ Notification/ MailChimp/ Zapier\". "
848
+ msgstr ""
849
+
850
+ #: core/forms/action.php:110 core/forms/action.php:146
851
+ msgid "You must enable \"store entries\" for integrating payment method."
852
+ msgstr ""
853
+
854
+ #: core/forms/cpt.php:314
855
+ msgctxt "Post Type General Name"
856
+ msgid "Forms"
857
+ msgstr ""
858
+
859
+ #: core/forms/cpt.php:315
860
+ msgctxt "Post Type Singular Name"
861
+ msgid "Form"
862
+ msgstr ""
863
+
864
+ #: core/forms/cpt.php:316 core/forms/cpt.php:317
865
+ msgid "Form"
866
+ msgstr ""
867
+
868
+ #: core/forms/cpt.php:318
869
+ msgid "Form Archives"
870
+ msgstr ""
871
+
872
+ #: core/forms/cpt.php:319
873
+ msgid "Form Attributes"
874
+ msgstr ""
875
+
876
+ #: core/forms/cpt.php:321 core/forms/cpt.php:349
877
+ msgid "Forms"
878
+ msgstr ""
879
+
880
+ #: core/forms/cpt.php:322
881
+ msgid "Add New Form"
882
+ msgstr ""
883
+
884
+ #: core/forms/cpt.php:324
885
+ msgid "New Form"
886
+ msgstr ""
887
+
888
+ #: core/forms/cpt.php:325
889
+ msgid "Edit Form"
890
+ msgstr ""
891
+
892
+ #: core/forms/cpt.php:326
893
+ msgid "Update Form"
894
+ msgstr ""
895
+
896
+ #: core/forms/cpt.php:327
897
+ msgid "View Form"
898
+ msgstr ""
899
+
900
+ #: core/forms/cpt.php:328
901
+ msgid "View Forms"
902
+ msgstr ""
903
+
904
+ #: core/forms/cpt.php:329
905
+ msgid "Search Forms"
906
+ msgstr ""
907
+
908
+ #: core/forms/cpt.php:336
909
+ msgid "Insert into form"
910
+ msgstr ""
911
+
912
+ #: core/forms/cpt.php:337
913
+ msgid "Uploaded to this form"
914
+ msgstr ""
915
+
916
+ #: core/forms/cpt.php:338
917
+ msgid "Forms list"
918
+ msgstr ""
919
+
920
+ #: core/forms/cpt.php:339
921
+ msgid "Forms list navigation"
922
+ msgstr ""
923
+
924
+ #: core/forms/cpt.php:340
925
+ msgid "Filter froms list"
926
+ msgstr ""
927
+
928
+ #: core/forms/cpt.php:350
929
+ msgid "metform form"
930
+ msgstr ""
931
+
932
+ #: core/forms/hooks.php:35
933
+ msgid "Shortcode"
934
+ msgstr ""
935
+
936
+ #: core/forms/hooks.php:37
937
+ msgid "Views/ Conversion"
938
+ msgstr ""
939
+
940
+ #: core/forms/hooks.php:62
941
+ msgid "Export CSV"
942
+ msgstr ""
943
+
944
+ #: core/forms/views/modal-editor.php:14
945
+ msgid "Form Settings"
946
+ msgstr ""
947
+
948
+ #: core/forms/views/modal-editor.php:20
949
+ msgid "Confirmation"
950
+ msgstr ""
951
+
952
+ #: core/forms/views/modal-editor.php:22
953
+ msgid "Notification"
954
+ msgstr ""
955
+
956
+ #: core/forms/views/modal-editor.php:24
957
+ msgid "Integration"
958
+ msgstr ""
959
+
960
+ #: core/forms/views/modal-editor.php:29
961
+ msgid "CRM"
962
+ msgstr ""
963
+
964
+ #: core/forms/views/modal-editor.php:42
965
+ msgid "Title:"
966
+ msgstr ""
967
+
968
+ #: core/forms/views/modal-editor.php:44
969
+ msgid "New Form # "
970
+ msgstr ""
971
+
972
+ #: core/forms/views/modal-editor.php:46
973
+ msgid "This is the form title"
974
+ msgstr ""
975
+
976
+ #: core/forms/views/modal-editor.php:51
977
+ msgid "Success Message:"
978
+ msgstr ""
979
+
980
+ #: core/forms/views/modal-editor.php:54
981
+ msgid "Thank you! Form submitted successfully."
982
+ msgstr ""
983
+
984
+ #: core/forms/views/modal-editor.php:56
985
+ msgid "This mesage will be shown after a successful submission."
986
+ msgstr ""
987
+
988
+ #: core/forms/views/modal-editor.php:63
989
+ msgid "Required Login:"
990
+ msgstr ""
991
+
992
+ #: core/forms/views/modal-editor.php:66
993
+ msgid "Without login, users can't submit the form."
994
+ msgstr ""
995
+
996
+ #: core/forms/views/modal-editor.php:73
997
+ msgid "Capture User Browser Data:"
998
+ msgstr ""
999
+
1000
+ #: core/forms/views/modal-editor.php:76
1001
+ msgid "Store user's browser data (ip, browser name, etc)"
1002
+ msgstr ""
1003
+
1004
+ #: core/forms/views/modal-editor.php:83
1005
+ msgid "Hide Form After Submission:"
1006
+ msgstr ""
1007
+
1008
+ #: core/forms/views/modal-editor.php:86
1009
+ msgid "After submission, hide the form for preventing multiple submission."
1010
+ msgstr ""
1011
+
1012
+ #: core/forms/views/modal-editor.php:93
1013
+ msgid "Store Entries:"
1014
+ msgstr ""
1015
+
1016
+ #: core/forms/views/modal-editor.php:96
1017
+ msgid "Save submitted form data to database."
1018
+ msgstr ""
1019
+
1020
+ #: core/forms/views/modal-editor.php:101
1021
+ msgid "Entry Title"
1022
+ msgstr ""
1023
+
1024
+ #: core/forms/views/modal-editor.php:105
1025
+ msgid "Enter here title of this form entries."
1026
+ msgstr ""
1027
+
1028
+ #: core/forms/views/modal-editor.php:113
1029
+ msgid "Limit Total Entries:"
1030
+ msgstr ""
1031
+
1032
+ #: core/forms/views/modal-editor.php:121
1033
+ msgid "Limit the total number of submissions for this form."
1034
+ msgstr ""
1035
+
1036
+ #: core/forms/views/modal-editor.php:128
1037
+ msgid "Count views:"
1038
+ msgstr ""
1039
+
1040
+ #: core/forms/views/modal-editor.php:130
1041
+ msgid "Track form views."
1042
+ msgstr ""
1043
+
1044
+ #: core/forms/views/modal-editor.php:137
1045
+ msgid "Stop Vertical Scrolling:"
1046
+ msgstr ""
1047
+
1048
+ #: core/forms/views/modal-editor.php:140
1049
+ msgid "Stop scrolling effect when submitting the form."
1050
+ msgstr ""
1051
+
1052
+ #: core/forms/views/modal-editor.php:145
1053
+ msgid "Redirect To:"
1054
+ msgstr ""
1055
+
1056
+ #: core/forms/views/modal-editor.php:148
1057
+ msgid "Redirection link"
1058
+ msgstr ""
1059
+
1060
+ #: core/forms/views/modal-editor.php:150
1061
+ msgid "Users will be redirected to the this link after submission."
1062
+ msgstr ""
1063
+
1064
+ #: core/forms/views/modal-editor.php:165
1065
+ msgid "Confirmation mail to user :"
1066
+ msgstr ""
1067
+
1068
+ #: core/forms/views/modal-editor.php:168
1069
+ msgid "Want to send a submission copy to user by email? Active this one."
1070
+ msgstr ""
1071
+
1072
+ #: core/forms/views/modal-editor.php:168 core/forms/views/modal-editor.php:520
1073
+ msgid "The form must have at least one Email widget and it should be required."
1074
+ msgstr ""
1075
+
1076
+ #: core/forms/views/modal-editor.php:173 core/forms/views/modal-editor.php:235
1077
+ msgid "Email Subject:"
1078
+ msgstr ""
1079
+
1080
+ #: core/forms/views/modal-editor.php:176 core/forms/views/modal-editor.php:238
1081
+ msgid "Email subject"
1082
+ msgstr ""
1083
+
1084
+ #: core/forms/views/modal-editor.php:178 core/forms/views/modal-editor.php:240
1085
+ msgid "Enter here email subject."
1086
+ msgstr ""
1087
+
1088
+ #: core/forms/views/modal-editor.php:183 core/forms/views/modal-editor.php:255
1089
+ msgid "Email From:"
1090
+ msgstr ""
1091
+
1092
+ #: core/forms/views/modal-editor.php:186
1093
+ msgid "From email"
1094
+ msgstr ""
1095
+
1096
+ #: core/forms/views/modal-editor.php:188
1097
+ msgid "Enter the email by which you want to send email to user."
1098
+ msgstr ""
1099
+
1100
+ #: core/forms/views/modal-editor.php:193 core/forms/views/modal-editor.php:265
1101
+ msgid "Email Reply To:"
1102
+ msgstr ""
1103
+
1104
+ #: core/forms/views/modal-editor.php:196
1105
+ msgid "Reply to email"
1106
+ msgstr ""
1107
+
1108
+ #: core/forms/views/modal-editor.php:198
1109
+ msgid "Enter email where user can reply/ you want to get reply."
1110
+ msgstr ""
1111
+
1112
+ #: core/forms/views/modal-editor.php:203
1113
+ msgid "Thank you message :"
1114
+ msgstr ""
1115
+
1116
+ #: core/forms/views/modal-editor.php:206
1117
+ msgid "Thank you message!"
1118
+ msgstr ""
1119
+
1120
+ #: core/forms/views/modal-editor.php:208
1121
+ msgid ""
1122
+ "Enter here your message to include it in email body. Which will be send to "
1123
+ "user."
1124
+ msgstr ""
1125
+
1126
+ #: core/forms/views/modal-editor.php:212
1127
+ msgid "Email Attached Submission Copy:"
1128
+ msgstr ""
1129
+
1130
+ #: core/forms/views/modal-editor.php:227
1131
+ msgid "Notification mail to admin :"
1132
+ msgstr ""
1133
+
1134
+ #: core/forms/views/modal-editor.php:230
1135
+ msgid "Want to send a submission copy to admin by email? Active this one."
1136
+ msgstr ""
1137
+
1138
+ #: core/forms/views/modal-editor.php:245
1139
+ msgid "Email To:"
1140
+ msgstr ""
1141
+
1142
+ #: core/forms/views/modal-editor.php:248
1143
+ msgid "example@mail.com, example@email.com"
1144
+ msgstr ""
1145
+
1146
+ #: core/forms/views/modal-editor.php:250
1147
+ msgid "Enter admin email where you want to send mail."
1148
+ msgstr ""
1149
+
1150
+ #: core/forms/views/modal-editor.php:250
1151
+ msgid " for multiple email addresses please use \",\" separator."
1152
+ msgstr ""
1153
+
1154
+ #: core/forms/views/modal-editor.php:258
1155
+ msgid "Email from"
1156
+ msgstr ""
1157
+
1158
+ #: core/forms/views/modal-editor.php:260
1159
+ msgid "Enter the email by which you want to send email to admin."
1160
+ msgstr ""
1161
+
1162
+ #: core/forms/views/modal-editor.php:268
1163
+ msgid "Email reply to"
1164
+ msgstr ""
1165
+
1166
+ #: core/forms/views/modal-editor.php:270
1167
+ msgid "Enter email where admin can reply/ you want to get reply."
1168
+ msgstr ""
1169
+
1170
+ #: core/forms/views/modal-editor.php:275
1171
+ msgid "Admin Note : "
1172
+ msgstr ""
1173
+
1174
+ #: core/forms/views/modal-editor.php:278
1175
+ msgid "Admin note!"
1176
+ msgstr ""
1177
+
1178
+ #: core/forms/views/modal-editor.php:280
1179
+ msgid "Enter here your email body. Which will be send to admin."
1180
+ msgstr ""
1181
+
1182
+ #: core/forms/views/modal-editor.php:294
1183
+ msgid "REST API:"
1184
+ msgstr ""
1185
+
1186
+ #: core/forms/views/modal-editor.php:297
1187
+ msgid "Send entry data to third party api/webhook"
1188
+ msgstr ""
1189
+
1190
+ #: core/forms/views/modal-editor.php:303
1191
+ msgid "URL/Webhook:"
1192
+ msgstr ""
1193
+
1194
+ #: core/forms/views/modal-editor.php:305
1195
+ msgid "Rest api url/webhook"
1196
+ msgstr ""
1197
+
1198
+ #: core/forms/views/modal-editor.php:307
1199
+ msgid "Enter rest api url/webhook here."
1200
+ msgstr ""
1201
+
1202
+ #: core/forms/views/modal-editor.php:312
1203
+ msgid "POST"
1204
+ msgstr ""
1205
+
1206
+ #: core/forms/views/modal-editor.php:313
1207
+ msgid "GET"
1208
+ msgstr ""
1209
+
1210
+ #: core/forms/views/modal-editor.php:327
1211
+ msgid "Mail Chimp:"
1212
+ msgstr ""
1213
+
1214
+ #: core/forms/views/modal-editor.php:330
1215
+ msgid "Integrate mailchimp with this form."
1216
+ msgstr ""
1217
+
1218
+ #: core/forms/views/modal-editor.php:330 core/forms/views/modal-editor.php:365
1219
+ #: core/forms/views/modal-editor.php:400 core/forms/views/modal-editor.php:429
1220
+ #: core/forms/views/modal-editor.php:463 core/forms/views/modal-editor.php:500
1221
+ msgid ""
1222
+ "The form must have at least one Email widget and it should be required. "
1223
+ msgstr ""
1224
+
1225
+ #: core/forms/views/modal-editor.php:332
1226
+ msgid "Configure Mail Chimp."
1227
+ msgstr ""
1228
+
1229
+ #: core/forms/views/modal-editor.php:337
1230
+ msgid "MailChimp List ID:"
1231
+ msgstr ""
1232
+
1233
+ #: core/forms/views/modal-editor.php:346
1234
+ msgid "Mailchimp contact list id"
1235
+ msgstr ""
1236
+
1237
+ #: core/forms/views/modal-editor.php:361
1238
+ msgid "MailPoet:"
1239
+ msgstr ""
1240
+
1241
+ #: core/forms/views/modal-editor.php:364
1242
+ msgid "Integrate MailPoet with this form."
1243
+ msgstr ""
1244
+
1245
+ #: core/forms/views/modal-editor.php:368
1246
+ msgid "Configure MailPoet."
1247
+ msgstr ""
1248
+
1249
+ #: core/forms/views/modal-editor.php:376
1250
+ msgid "MailPoet List ID:"
1251
+ msgstr ""
1252
+
1253
+ #: core/forms/views/modal-editor.php:383
1254
+ msgid "Enter here MailPoet list id. "
1255
+ msgstr ""
1256
+
1257
+ #: core/forms/views/modal-editor.php:385 core/forms/views/modal-editor.php:416
1258
+ #: core/forms/views/modal-editor.php:445
1259
+ msgid "Refresh List"
1260
+ msgstr ""
1261
+
1262
+ #: core/forms/views/modal-editor.php:397
1263
+ msgid "Aweber:"
1264
+ msgstr ""
1265
+
1266
+ #: core/forms/views/modal-editor.php:400
1267
+ msgid "Integrate aweber with this form."
1268
+ msgstr ""
1269
+
1270
+ #: core/forms/views/modal-editor.php:402
1271
+ msgid "Configure aweber."
1272
+ msgstr ""
1273
+
1274
+ #: core/forms/views/modal-editor.php:407
1275
+ msgid "Aweber List ID:"
1276
+ msgstr ""
1277
+
1278
+ #: core/forms/views/modal-editor.php:414
1279
+ msgid "Enter here aweber list id. "
1280
+ msgstr ""
1281
+
1282
+ #: core/forms/views/modal-editor.php:426
1283
+ msgid "ConvertKit:"
1284
+ msgstr ""
1285
+
1286
+ #: core/forms/views/modal-editor.php:429
1287
+ msgid "Integrate convertKit with this form."
1288
+ msgstr ""
1289
+
1290
+ #: core/forms/views/modal-editor.php:431
1291
+ msgid "Configure ConvertKit."
1292
+ msgstr ""
1293
+
1294
+ #: core/forms/views/modal-editor.php:436
1295
+ msgid "ConvertKit Forms ID:"
1296
+ msgstr ""
1297
+
1298
+ #: core/forms/views/modal-editor.php:443
1299
+ msgid "Enter here ConvertKit form id. "
1300
+ msgstr ""
1301
+
1302
+ #: core/forms/views/modal-editor.php:459
1303
+ msgid "GetResponse:"
1304
+ msgstr ""
1305
+
1306
+ #: core/forms/views/modal-editor.php:463
1307
+ msgid "Integrate GetResponse with this form."
1308
+ msgstr ""
1309
+
1310
+ #: core/forms/views/modal-editor.php:465
1311
+ msgid "Configure GetResponse."
1312
+ msgstr ""
1313
+
1314
+ #: core/forms/views/modal-editor.php:472
1315
+ msgid "GetResponse List ID:"
1316
+ msgstr ""
1317
+
1318
+ #: core/forms/views/modal-editor.php:483
1319
+ msgid "GetResponse contact list id"
1320
+ msgstr ""
1321
+
1322
+ #: core/forms/views/modal-editor.php:485
1323
+ msgid "Enter here GetResponse list id. "
1324
+ msgstr ""
1325
+
1326
+ #: core/forms/views/modal-editor.php:497
1327
+ msgid "ActiveCampaign:"
1328
+ msgstr ""
1329
+
1330
+ #: core/forms/views/modal-editor.php:500
1331
+ msgid "Integrate ActiveCampaign with this form."
1332
+ msgstr ""
1333
+
1334
+ #: core/forms/views/modal-editor.php:502
1335
+ msgid "Configure ActiveCampaign."
1336
+ msgstr ""
1337
+
1338
+ #: core/forms/views/modal-editor.php:517
1339
+ msgid "Zapier:"
1340
+ msgstr ""
1341
+
1342
+ #: core/forms/views/modal-editor.php:520
1343
+ msgid "Integrate zapier with this form."
1344
+ msgstr ""
1345
+
1346
+ #: core/forms/views/modal-editor.php:525
1347
+ msgid "Zapier webhook:"
1348
+ msgstr ""
1349
+
1350
+ #: core/forms/views/modal-editor.php:527
1351
+ msgid "Zapier webhook"
1352
+ msgstr ""
1353
+
1354
+ #: core/forms/views/modal-editor.php:529
1355
+ msgid "Enter here zapier web hook."
1356
+ msgstr ""
1357
+
1358
+ #: core/forms/views/modal-editor.php:539
1359
+ msgid "Slack:"
1360
+ msgstr ""
1361
+
1362
+ #: core/forms/views/modal-editor.php:542
1363
+ msgid "Integrate slack with this form."
1364
+ msgstr ""
1365
+
1366
+ #: core/forms/views/modal-editor.php:542
1367
+ msgid "slack info."
1368
+ msgstr ""
1369
+
1370
+ #: core/forms/views/modal-editor.php:547
1371
+ msgid "Slack webhook:"
1372
+ msgstr ""
1373
+
1374
+ #: core/forms/views/modal-editor.php:549
1375
+ msgid "Slack webhook"
1376
+ msgstr ""
1377
+
1378
+ #: core/forms/views/modal-editor.php:551
1379
+ msgid "Enter here slack web hook."
1380
+ msgstr ""
1381
+
1382
+ #: core/forms/views/modal-editor.php:552
1383
+ msgid "create from here"
1384
+ msgstr ""
1385
+
1386
+ #: core/forms/views/modal-editor.php:566
1387
+ msgid "Success url:"
1388
+ msgstr ""
1389
+
1390
+ #: core/forms/views/modal-editor.php:569
1391
+ msgid "Success url"
1392
+ msgstr ""
1393
+
1394
+ #: core/forms/views/modal-editor.php:571
1395
+ msgid ""
1396
+ "Users will be redirected to the this link after successfully form submission."
1397
+ msgstr ""
1398
+
1399
+ #: core/forms/views/modal-editor.php:576
1400
+ msgid "Failed/ Cancel url:"
1401
+ msgstr ""
1402
+
1403
+ #: core/forms/views/modal-editor.php:579
1404
+ msgid "Failed/Cancel url"
1405
+ msgstr ""
1406
+
1407
+ #: core/forms/views/modal-editor.php:581
1408
+ msgid ""
1409
+ "Users will be redirected to the this link after any failure/ cancelation of "
1410
+ "form submission."
1411
+ msgstr ""
1412
+
1413
+ #: core/forms/views/modal-editor.php:588
1414
+ msgid "Paypal:"
1415
+ msgstr ""
1416
+
1417
+ #: core/forms/views/modal-editor.php:591
1418
+ msgid "Integrate paypal payment with this form."
1419
+ msgstr ""
1420
+
1421
+ #: core/forms/views/modal-editor.php:593
1422
+ msgid "Configure paypal payment."
1423
+ msgstr ""
1424
+
1425
+ #: core/forms/views/modal-editor.php:603
1426
+ msgid "Stripe:"
1427
+ msgstr ""
1428
+
1429
+ #: core/forms/views/modal-editor.php:606
1430
+ msgid "Integrate stripe payment with this form. "
1431
+ msgstr ""
1432
+
1433
+ #: core/forms/views/modal-editor.php:608
1434
+ msgid "Configure stripe payment."
1435
+ msgstr ""
1436
+
1437
+ #: core/forms/views/modal-editor.php:625
1438
+ msgid "Hubsopt Contact:"
1439
+ msgstr ""
1440
+
1441
+ #: core/forms/views/modal-editor.php:628
1442
+ msgid "Integrate hubsopt with this form. "
1443
+ msgstr ""
1444
+
1445
+ #: core/forms/views/modal-editor.php:630
1446
+ msgid "Configure Hubsopt."
1447
+ msgstr ""
1448
+
1449
+ #: core/forms/views/modal-editor.php:638
1450
+ msgid "Hubsopt Forms:"
1451
+ msgstr ""
1452
+
1453
+ #: core/forms/views/modal-editor.php:646
1454
+ msgid "Fetch hubsopt forms"
1455
+ msgstr ""
1456
+
1457
+ #: core/forms/views/modal-editor.php:671
1458
+ msgid "Zoho Contact:"
1459
+ msgstr ""
1460
+
1461
+ #: core/forms/views/modal-editor.php:674
1462
+ msgid "Integrate Zoho contacts with this form. "
1463
+ msgstr ""
1464
+
1465
+ #: core/forms/views/modal-editor.php:676
1466
+ msgid "Configure Zoho."
1467
+ msgstr ""
1468
+
1469
+ #: core/forms/views/modal-editor.php:692
1470
+ msgid "Edit content"
1471
+ msgstr ""
1472
+
1473
+ #: core/forms/views/modal-editor.php:694
1474
+ msgid "Save changes"
1475
+ msgstr ""
1476
+
1477
+ #: core/integrations/google-recaptcha.php:43
1478
+ #: core/integrations/google-recaptcha.php:80
1479
+ msgid "Captcha is not verified."
1480
+ msgstr ""
1481
+
1482
+ #: core/integrations/mail-chimp.php:54
1483
+ msgid "Your data inserted on ActiveCampaign."
1484
+ msgstr ""
1485
+
1486
+ #: core/integrations/slack.php:50
1487
+ msgid "Your data inserted on slack."
1488
+ msgstr ""
1489
+
1490
+ #: plugin.php:258
1491
+ msgid "Activate Elementor"
1492
+ msgstr ""
1493
+
1494
+ #: plugin.php:261
1495
+ msgid "Install Elementor"
1496
+ msgstr ""
1497
+
1498
+ #: plugin.php:271 plugin.php:306
1499
+ #, php-format
1500
+ msgid ""
1501
+ "MetForm requires Elementor version %1$s+, which is currently NOT RUNNING."
1502
+ msgstr ""
1503
+
1504
+ #: plugin.php:281
1505
+ msgid "MetForm Pro"
1506
+ msgstr ""
1507
+
1508
+ #: plugin.php:290
1509
+ msgid "We have MetForm Pro version. Check out our pro feature."
1510
+ msgstr ""
1511
+
1512
+ #: plugin.php:297
1513
+ msgid "Update Elementor"
1514
+ msgstr ""
1515
+
1516
+ #: traits/button-controls.php:24 widgets/date/date.php:321
1517
+ #: widgets/email/email.php:64 widgets/file-upload/file-upload.php:170
1518
+ #: widgets/listing-fname/listing-fname.php:64
1519
+ #: widgets/listing-lname/listing-lname.php:64
1520
+ #: widgets/multi-select/multi-select.php:148 widgets/number/number.php:64
1521
+ #: widgets/password/password.php:64 widgets/range/range.php:133
1522
+ #: widgets/rating/rating.php:85 widgets/recaptcha/recaptcha.php:59
1523
+ #: widgets/select/select.php:148 widgets/simple-captcha/simple-captcha.php:123
1524
+ #: widgets/summary/summary.php:69 widgets/switch/switch.php:91
1525
+ #: widgets/telephone/telephone.php:64 widgets/text/text.php:64
1526
+ #: widgets/textarea/textarea.php:65 widgets/time/time.php:89
1527
+ #: widgets/url/url.php:74
1528
+ msgid "Label"
1529
+ msgstr ""
1530
+
1531
+ #: traits/button-controls.php:46
1532
+ msgid "Button alignment"
1533
+ msgstr ""
1534
+
1535
+ #: traits/button-controls.php:50 traits/common-controls.php:47
1536
+ #: widgets/checkbox/checkbox.php:69 widgets/gdpr-consent/gdpr-consent.php:62
1537
+ #: widgets/listing-optin/listing-optin.php:62 widgets/radio/radio.php:70
1538
+ #: widgets/simple-captcha/simple-captcha.php:67
1539
+ msgid "Left"
1540
+ msgstr ""
1541
+
1542
+ #: traits/button-controls.php:54
1543
+ msgid "Center"
1544
+ msgstr ""
1545
+
1546
+ #: traits/button-controls.php:58 widgets/file-upload/file-upload.php:251
1547
+ msgid "Right"
1548
+ msgstr ""
1549
+
1550
+ #: traits/button-controls.php:72 widgets/button/button.php:104
1551
+ msgid "Icon"
1552
+ msgstr ""
1553
+
1554
+ #: traits/button-controls.php:81
1555
+ msgid "Icon Position"
1556
+ msgstr ""
1557
+
1558
+ #: traits/button-controls.php:85 widgets/file-upload/file-upload.php:60
1559
+ msgid "Before"
1560
+ msgstr ""
1561
+
1562
+ #: traits/button-controls.php:86 widgets/file-upload/file-upload.php:61
1563
+ msgid "After"
1564
+ msgstr ""
1565
+
1566
+ #: traits/button-controls.php:97
1567
+ msgid "Class"
1568
+ msgstr ""
1569
+
1570
+ #: traits/button-controls.php:99
1571
+ msgid "Class Name"
1572
+ msgstr ""
1573
+
1574
+ #: traits/button-controls.php:106
1575
+ msgid "id"
1576
+ msgstr ""
1577
+
1578
+ #: traits/button-controls.php:108
1579
+ msgid "ID"
1580
+ msgstr ""
1581
+
1582
+ #: traits/button-controls.php:119
1583
+ msgid "Input Name : "
1584
+ msgstr ""
1585
+
1586
+ #: traits/button-controls.php:127 widgets/multi-select/multi-select.php:58
1587
+ #: widgets/select/select.php:58
1588
+ msgid "Input Value"
1589
+ msgstr ""
1590
+
1591
+ #: traits/button-controls.php:136
1592
+ msgid "Input Class"
1593
+ msgstr ""
1594
+
1595
+ #: traits/button-controls.php:145
1596
+ msgid "Input List"
1597
+ msgstr ""
1598
+
1599
+ #: traits/button-controls.php:157 traits/common-controls.php:341
1600
+ #: traits/common-controls.php:405 traits/common-controls.php:749
1601
+ #: widgets/checkbox/checkbox.php:283 widgets/checkbox/checkbox.php:341
1602
+ #: widgets/checkbox/checkbox.php:534 widgets/file-upload/file-upload.php:336
1603
+ #: widgets/gdpr-consent/gdpr-consent.php:202
1604
+ #: widgets/gdpr-consent/gdpr-consent.php:269
1605
+ #: widgets/listing-optin/listing-optin.php:222
1606
+ #: widgets/listing-optin/listing-optin.php:292 widgets/radio/radio.php:284
1607
+ #: widgets/radio/radio.php:354 widgets/radio/radio.php:547
1608
+ #: widgets/rating/rating.php:108 widgets/simple-captcha/simple-captcha.php:192
1609
+ #: widgets/simple-captcha/simple-captcha.php:248 widgets/switch/switch.php:208
1610
+ #: widgets/switch/switch.php:250
1611
+ msgid "Padding"
1612
+ msgstr ""
1613
+
1614
+ #: traits/button-controls.php:177 traits/common-controls.php:330
1615
+ #: traits/common-controls.php:632 traits/common-controls.php:685
1616
+ #: traits/common-controls.php:724 widgets/checkbox/checkbox.php:272
1617
+ #: widgets/checkbox/checkbox.php:509 widgets/gdpr-consent/gdpr-consent.php:191
1618
+ #: widgets/listing-optin/listing-optin.php:211 widgets/radio/radio.php:273
1619
+ #: widgets/radio/radio.php:522 widgets/rating/rating.php:250
1620
+ #: widgets/simple-captcha/simple-captcha.php:181 widgets/switch/switch.php:200
1621
+ #: widgets/switch/switch.php:242
1622
+ msgid "Typography"
1623
+ msgstr ""
1624
+
1625
+ #: traits/button-controls.php:195 traits/button-controls.php:293
1626
+ #: traits/common-controls.php:437 widgets/checkbox/checkbox.php:383
1627
+ #: widgets/file-upload/file-upload.php:264
1628
+ #: widgets/gdpr-consent/gdpr-consent.php:311
1629
+ #: widgets/listing-optin/listing-optin.php:334 widgets/radio/radio.php:395
1630
+ #: widgets/rating/rating.php:141
1631
+ msgid "Normal"
1632
+ msgstr ""
1633
+
1634
+ #: traits/button-controls.php:202 traits/button-controls.php:231
1635
+ #: widgets/checkbox/checkbox.php:364 widgets/gdpr-consent/gdpr-consent.php:292
1636
+ #: widgets/listing-optin/listing-optin.php:315 widgets/radio/radio.php:377
1637
+ #: widgets/switch/switch.php:187 widgets/switch/switch.php:229
1638
+ msgid "Text Color"
1639
+ msgstr ""
1640
+
1641
+ #: traits/button-controls.php:224 traits/button-controls.php:317
1642
+ #: traits/common-controls.php:501 widgets/file-upload/file-upload.php:295
1643
+ msgid "Hover"
1644
+ msgstr ""
1645
+
1646
+ #: traits/button-controls.php:257
1647
+ msgctxt "Border Control"
1648
+ msgid "Border Type"
1649
+ msgstr ""
1650
+
1651
+ #: traits/button-controls.php:260 traits/common-controls.php:141
1652
+ msgid "None"
1653
+ msgstr ""
1654
+
1655
+ #: traits/button-controls.php:261
1656
+ msgctxt "Border Control"
1657
+ msgid "Solid"
1658
+ msgstr ""
1659
+
1660
+ #: traits/button-controls.php:262
1661
+ msgctxt "Border Control"
1662
+ msgid "Double"
1663
+ msgstr ""
1664
+
1665
+ #: traits/button-controls.php:263
1666
+ msgctxt "Border Control"
1667
+ msgid "Dotted"
1668
+ msgstr ""
1669
+
1670
+ #: traits/button-controls.php:264
1671
+ msgctxt "Border Control"
1672
+ msgid "Dashed"
1673
+ msgstr ""
1674
+
1675
+ #: traits/button-controls.php:265
1676
+ msgctxt "Border Control"
1677
+ msgid "Groove"
1678
+ msgstr ""
1679
+
1680
+ #: traits/button-controls.php:277
1681
+ msgctxt "Border Control"
1682
+ msgid "Width"
1683
+ msgstr ""
1684
+
1685
+ #: traits/button-controls.php:303 traits/button-controls.php:326
1686
+ msgctxt "Border Control"
1687
+ msgid "Color"
1688
+ msgstr ""
1689
+
1690
+ #: traits/button-controls.php:342 traits/common-controls.php:247
1691
+ #: traits/common-controls.php:643 widgets/file-upload/file-upload.php:369
1692
+ #: widgets/range/range.php:199 widgets/rating/rating.php:212
1693
+ msgid "Border Radius"
1694
+ msgstr ""
1695
+
1696
+ #: traits/button-controls.php:373
1697
+ msgid "Icon Color"
1698
+ msgstr ""
1699
+
1700
+ #: traits/button-controls.php:389
1701
+ msgid "Font Size"
1702
+ msgstr ""
1703
+
1704
+ #: traits/button-controls.php:409
1705
+ msgid "Padding Right"
1706
+ msgstr ""
1707
+
1708
+ #: traits/button-controls.php:435
1709
+ msgid "Padding Left"
1710
+ msgstr ""
1711
+
1712
+ #: traits/button-controls.php:461
1713
+ msgid "Vertical Align"
1714
+ msgstr ""
1715
+
1716
+ #: traits/common-controls.php:29 widgets/checkbox/checkbox.php:51
1717
+ #: widgets/gdpr-consent/gdpr-consent.php:44
1718
+ #: widgets/listing-optin/listing-optin.php:44 widgets/radio/radio.php:52
1719
+ #: widgets/simple-captcha/simple-captcha.php:49
1720
+ msgid "Show Label"
1721
+ msgstr ""
1722
+
1723
+ #: traits/common-controls.php:31 widgets/checkbox/checkbox.php:53
1724
+ #: widgets/gdpr-consent/gdpr-consent.php:46
1725
+ #: widgets/listing-optin/listing-optin.php:46 widgets/radio/radio.php:54
1726
+ #: widgets/simple-captcha/simple-captcha.php:51
1727
+ msgid "Show"
1728
+ msgstr ""
1729
+
1730
+ #: traits/common-controls.php:32 widgets/checkbox/checkbox.php:54
1731
+ #: widgets/gdpr-consent/gdpr-consent.php:47
1732
+ #: widgets/listing-optin/listing-optin.php:47 widgets/radio/radio.php:55
1733
+ #: widgets/simple-captcha/simple-captcha.php:52
1734
+ msgid "Hide"
1735
+ msgstr ""
1736
+
1737
+ #: traits/common-controls.php:35 widgets/checkbox/checkbox.php:57
1738
+ #: widgets/gdpr-consent/gdpr-consent.php:50
1739
+ #: widgets/listing-optin/listing-optin.php:50 widgets/radio/radio.php:58
1740
+ #: widgets/simple-captcha/simple-captcha.php:55
1741
+ msgid ""
1742
+ "for adding label on input turn it on. Don't want to use label? turn it off."
1743
+ msgstr ""
1744
+
1745
+ #: traits/common-controls.php:42 widgets/checkbox/checkbox.php:64
1746
+ #: widgets/file-upload/file-upload.php:247
1747
+ #: widgets/gdpr-consent/gdpr-consent.php:57
1748
+ #: widgets/listing-optin/listing-optin.php:57 widgets/radio/radio.php:65
1749
+ msgid "Position"
1750
+ msgstr ""
1751
+
1752
+ #: traits/common-controls.php:46 widgets/checkbox/checkbox.php:68
1753
+ #: widgets/file-upload/file-upload.php:62
1754
+ #: widgets/gdpr-consent/gdpr-consent.php:61
1755
+ #: widgets/listing-optin/listing-optin.php:61 widgets/radio/radio.php:69
1756
+ #: widgets/simple-captcha/simple-captcha.php:66
1757
+ msgid "Top"
1758
+ msgstr ""
1759
+
1760
+ #: traits/common-controls.php:55 widgets/checkbox/checkbox.php:78
1761
+ #: widgets/gdpr-consent/gdpr-consent.php:71
1762
+ #: widgets/listing-optin/listing-optin.php:71 widgets/radio/radio.php:79
1763
+ #: widgets/simple-captcha/simple-captcha.php:75
1764
+ msgid ""
1765
+ "Select label position. where you want to see it. top of the input or left of "
1766
+ "the input."
1767
+ msgstr ""
1768
+
1769
+ #: traits/common-controls.php:63 widgets/simple-captcha/simple-captcha.php:98
1770
+ msgid "Label : "
1771
+ msgstr ""
1772
+
1773
+ #: traits/common-controls.php:66 widgets/checkbox/checkbox.php:89
1774
+ #: widgets/gdpr-consent/gdpr-consent.php:82
1775
+ #: widgets/listing-optin/listing-optin.php:82 widgets/radio/radio.php:90
1776
+ #: widgets/simple-captcha/simple-captcha.php:101
1777
+ msgid "Enter here label of input"
1778
+ msgstr ""
1779
+
1780
+ #: traits/common-controls.php:77 widgets/gdpr-consent/gdpr-consent.php:92
1781
+ #: widgets/listing-optin/listing-optin.php:92
1782
+ msgid "Name : "
1783
+ msgstr ""
1784
+
1785
+ #: traits/common-controls.php:89 widgets/checkbox/checkbox.php:99
1786
+ #: widgets/radio/radio.php:100
1787
+ msgid "Name"
1788
+ msgstr ""
1789
+
1790
+ #: traits/common-controls.php:92 widgets/checkbox/checkbox.php:102
1791
+ #: widgets/radio/radio.php:103
1792
+ msgid "Enter here name of the input"
1793
+ msgstr ""
1794
+
1795
+ #: traits/common-controls.php:93 widgets/checkbox/checkbox.php:103
1796
+ msgid ""
1797
+ "Name is must required. Enter name without space or any special character. "
1798
+ "use only underscore/ hyphen (_/-) for multiple word. Name must be different."
1799
+ msgstr ""
1800
+
1801
+ #: traits/common-controls.php:103
1802
+ msgid "Place holder"
1803
+ msgstr ""
1804
+
1805
+ #: traits/common-controls.php:106
1806
+ msgid "Enter here place holder"
1807
+ msgstr ""
1808
+
1809
+ #: traits/common-controls.php:114 widgets/checkbox/checkbox.php:205
1810
+ #: widgets/gdpr-consent/gdpr-consent.php:145
1811
+ #: widgets/listing-optin/listing-optin.php:144 widgets/radio/radio.php:206
1812
+ #: widgets/simple-captcha/simple-captcha.php:111
1813
+ msgid "Help Text : "
1814
+ msgstr ""
1815
+
1816
+ #: traits/common-controls.php:117 widgets/checkbox/checkbox.php:208
1817
+ #: widgets/gdpr-consent/gdpr-consent.php:148
1818
+ #: widgets/listing-optin/listing-optin.php:147 widgets/radio/radio.php:209
1819
+ #: widgets/simple-captcha/simple-captcha.php:114
1820
+ msgid "Type your help text here"
1821
+ msgstr ""
1822
+
1823
+ #: traits/common-controls.php:129
1824
+ msgid "Required ?"
1825
+ msgstr ""
1826
+
1827
+ #: traits/common-controls.php:131 widgets/date/date.php:119
1828
+ #: widgets/date/date.php:131 widgets/date/date.php:143
1829
+ #: widgets/date/date.php:155 widgets/date/date.php:305
1830
+ #: widgets/multi-select/multi-select.php:83 widgets/range/range.php:97
1831
+ #: widgets/select/select.php:83 widgets/switch/switch.php:48
1832
+ #: widgets/time/time.php:73
1833
+ msgid "Yes"
1834
+ msgstr ""
1835
+
1836
+ #: traits/common-controls.php:132 widgets/date/date.php:120
1837
+ #: widgets/date/date.php:132 widgets/date/date.php:144
1838
+ #: widgets/date/date.php:156 widgets/date/date.php:306
1839
+ #: widgets/multi-select/multi-select.php:84 widgets/range/range.php:98
1840
+ #: widgets/select/select.php:84 widgets/switch/switch.php:56
1841
+ #: widgets/time/time.php:74
1842
+ msgid "No"
1843
+ msgstr ""
1844
+
1845
+ #: traits/common-controls.php:135
1846
+ msgid "Is this field is required for submit the form?. Make it \"Yes\"."
1847
+ msgstr ""
1848
+
1849
+ #: traits/common-controls.php:142
1850
+ msgid "By character length"
1851
+ msgstr ""
1852
+
1853
+ #: traits/common-controls.php:143
1854
+ msgid "By Word length"
1855
+ msgstr ""
1856
+
1857
+ #: traits/common-controls.php:147
1858
+ msgid "By expression based"
1859
+ msgstr ""
1860
+
1861
+ #: traits/common-controls.php:154
1862
+ msgid "Validation type"
1863
+ msgstr ""
1864
+
1865
+ #: traits/common-controls.php:165 widgets/range/range.php:67
1866
+ msgid "Min Length"
1867
+ msgstr ""
1868
+
1869
+ #: traits/common-controls.php:176 widgets/range/range.php:76
1870
+ msgid "Max Length"
1871
+ msgstr ""
1872
+
1873
+ #: traits/common-controls.php:189
1874
+ msgid "Expression for validate "
1875
+ msgstr ""
1876
+
1877
+ #: traits/common-controls.php:192
1878
+ msgid "Ex: [a-zA-Z]+ "
1879
+ msgstr ""
1880
+
1881
+ #: traits/common-controls.php:203 traits/common-controls.php:205
1882
+ msgid "Warning message"
1883
+ msgstr ""
1884
+
1885
+ #: traits/common-controls.php:206 widgets/checkbox/checkbox.php:557
1886
+ #: widgets/date/date.php:430 widgets/email/email.php:128
1887
+ #: widgets/file-upload/file-upload.php:419
1888
+ #: widgets/gdpr-consent/gdpr-consent.php:448
1889
+ #: widgets/listing-fname/listing-fname.php:141
1890
+ #: widgets/listing-lname/listing-lname.php:141
1891
+ #: widgets/listing-optin/listing-optin.php:471
1892
+ #: widgets/multi-select/multi-select.php:208 widgets/number/number.php:127
1893
+ #: widgets/password/password.php:141 widgets/radio/radio.php:570
1894
+ #: widgets/rating/rating.php:295 widgets/select/select.php:218
1895
+ #: widgets/switch/switch.php:291 widgets/telephone/telephone.php:127
1896
+ #: widgets/text/text.php:127 widgets/textarea/textarea.php:151
1897
+ #: widgets/time/time.php:161 widgets/url/url.php:137
1898
+ msgid "This field is required."
1899
+ msgstr ""
1900
+
1901
+ #: traits/common-controls.php:232 traits/common-controls.php:673
1902
+ #: widgets/gdpr-consent/gdpr-consent.php:232
1903
+ #: widgets/listing-optin/listing-optin.php:252 widgets/radio/radio.php:314
1904
+ #: widgets/rating/rating.php:261
1905
+ msgid "Box Shadow"
1906
+ msgstr ""
1907
+
1908
+ #: traits/common-controls.php:240 traits/common-controls.php:489
1909
+ #: traits/common-controls.php:547 traits/common-controls.php:610
1910
+ #: widgets/button/button.php:80 widgets/file-upload/file-upload.php:361
1911
+ #: widgets/rating/rating.php:165 widgets/rating/rating.php:199
1912
+ msgid "Border"
1913
+ msgstr ""
1914
+
1915
+ #: traits/common-controls.php:280 widgets/range/range.php:168
1916
+ #: widgets/simple-captcha/simple-captcha.php:134 widgets/switch/switch.php:115
1917
+ msgid "Width"
1918
+ msgstr ""
1919
+
1920
+ #: traits/common-controls.php:311 traits/common-controls.php:694
1921
+ #: traits/common-controls.php:733 widgets/checkbox/checkbox.php:253
1922
+ #: widgets/checkbox/checkbox.php:518 widgets/file-upload/file-upload.php:271
1923
+ #: widgets/file-upload/file-upload.php:302
1924
+ #: widgets/gdpr-consent/gdpr-consent.php:172
1925
+ #: widgets/listing-optin/listing-optin.php:192 widgets/radio/radio.php:254
1926
+ #: widgets/radio/radio.php:531 widgets/simple-captcha/simple-captcha.php:162
1927
+ #: widgets/simple-captcha/simple-captcha.php:272
1928
+ msgid "Color"
1929
+ msgstr ""
1930
+
1931
+ #: traits/common-controls.php:355 traits/common-controls.php:420
1932
+ #: widgets/checkbox/checkbox.php:297 widgets/checkbox/checkbox.php:352
1933
+ #: widgets/file-upload/file-upload.php:348
1934
+ #: widgets/gdpr-consent/gdpr-consent.php:216
1935
+ #: widgets/gdpr-consent/gdpr-consent.php:280
1936
+ #: widgets/listing-optin/listing-optin.php:236
1937
+ #: widgets/listing-optin/listing-optin.php:303 widgets/radio/radio.php:298
1938
+ #: widgets/radio/radio.php:365 widgets/rating/rating.php:120
1939
+ #: widgets/simple-captcha/simple-captcha.php:206
1940
+ #: widgets/simple-captcha/simple-captcha.php:260
1941
+ msgid "Margin"
1942
+ msgstr ""
1943
+
1944
+ #: traits/common-controls.php:370 widgets/checkbox/checkbox.php:312
1945
+ #: widgets/gdpr-consent/gdpr-consent.php:243
1946
+ #: widgets/listing-optin/listing-optin.php:263 widgets/radio/radio.php:325
1947
+ #: widgets/recaptcha/recaptcha.php:66
1948
+ #: widgets/simple-captcha/simple-captcha.php:221
1949
+ msgid "Required Indicator Color:"
1950
+ msgstr ""
1951
+
1952
+ #: traits/common-controls.php:444 traits/common-controls.php:508
1953
+ #: traits/common-controls.php:567 widgets/rating/rating.php:148
1954
+ #: widgets/rating/rating.php:182
1955
+ msgid "Input Color"
1956
+ msgstr ""
1957
+
1958
+ #: traits/common-controls.php:476 traits/common-controls.php:535
1959
+ #: traits/common-controls.php:596 widgets/file-upload/file-upload.php:284
1960
+ #: widgets/file-upload/file-upload.php:315
1961
+ msgid "Background"
1962
+ msgstr ""
1963
+
1964
+ #: traits/common-controls.php:560
1965
+ msgid "Focus"
1966
+ msgstr ""
1967
+
1968
+ #: traits/conditional-controls.php:25
1969
+ msgid "Conditional logic"
1970
+ msgstr ""
1971
+
1972
+ #: traits/conditional-controls.php:33 widgets/multi-select/multi-select.php:70
1973
+ #: widgets/select/select.php:70
1974
+ msgid "Enable"
1975
+ msgstr ""
1976
+
1977
+ #: traits/conditional-controls.php:36
1978
+ msgid "This feature only works on the frontend."
1979
+ msgstr ""
1980
+
1981
+ #: traits/conditional-controls.php:47
1982
+ msgid "Condition match criteria"
1983
+ msgstr ""
1984
+
1985
+ #: traits/conditional-controls.php:52
1986
+ msgid "AND"
1987
+ msgstr ""
1988
+
1989
+ #: traits/conditional-controls.php:53
1990
+ msgid "OR"
1991
+ msgstr ""
1992
+
1993
+ #: traits/conditional-controls.php:65
1994
+ msgid "Action"
1995
+ msgstr ""
1996
+
1997
+ #: traits/conditional-controls.php:87
1998
+ msgid "If"
1999
+ msgstr ""
2000
+
2001
+ #: traits/conditional-controls.php:90
2002
+ msgid "Input field name"
2003
+ msgstr ""
2004
+
2005
+ #: traits/conditional-controls.php:97
2006
+ msgid "Match ( comparison )"
2007
+ msgstr ""
2008
+
2009
+ #: traits/conditional-controls.php:101
2010
+ msgid "not empty"
2011
+ msgstr ""
2012
+
2013
+ #: traits/conditional-controls.php:102
2014
+ msgid "empty"
2015
+ msgstr ""
2016
+
2017
+ #: traits/conditional-controls.php:103
2018
+ msgid "equals"
2019
+ msgstr ""
2020
+
2021
+ #: traits/conditional-controls.php:104
2022
+ msgid "not equals"
2023
+ msgstr ""
2024
+
2025
+ #: traits/conditional-controls.php:105
2026
+ msgid "greater than"
2027
+ msgstr ""
2028
+
2029
+ #: traits/conditional-controls.php:106
2030
+ msgid "greater than equal"
2031
+ msgstr ""
2032
+
2033
+ #: traits/conditional-controls.php:107
2034
+ msgid "smaller than"
2035
+ msgstr ""
2036
+
2037
+ #: traits/conditional-controls.php:108
2038
+ msgid "smaller than equal"
2039
+ msgstr ""
2040
+
2041
+ #: traits/conditional-controls.php:117
2042
+ msgid "Match value"
2043
+ msgstr ""
2044
+
2045
+ #: traits/conditional-controls.php:120
2046
+ msgid "50"
2047
+ msgstr ""
2048
+
2049
+ #: traits/conditional-controls.php:132
2050
+ msgid "Value for set"
2051
+ msgstr ""
2052
+
2053
+ #: traits/conditional-controls.php:134
2054
+ msgid "Enter value for set"
2055
+ msgstr ""
2056
+
2057
+ #: traits/conditional-controls.php:135
2058
+ msgid "E.g 100, name, anything"
2059
+ msgstr ""
2060
+
2061
+ #: widgets/button/button.php:16
2062
+ msgid "Submit Button"
2063
+ msgstr ""
2064
+
2065
+ #: widgets/button/button.php:36 widgets/checkbox/checkbox.php:43
2066
+ #: widgets/date/date.php:40 widgets/email/email.php:36
2067
+ #: widgets/file-upload/file-upload.php:37 widgets/form-basic.php:49
2068
+ #: widgets/form.php:36 widgets/gdpr-consent/gdpr-consent.php:36
2069
+ #: widgets/listing-fname/listing-fname.php:36
2070
+ #: widgets/listing-lname/listing-lname.php:36
2071
+ #: widgets/listing-optin/listing-optin.php:36
2072
+ #: widgets/multi-select/multi-select.php:36 widgets/number/number.php:36
2073
+ #: widgets/password/password.php:36 widgets/radio/radio.php:44
2074
+ #: widgets/range/range.php:36 widgets/rating/rating.php:36
2075
+ #: widgets/recaptcha/recaptcha.php:32 widgets/select/select.php:36
2076
+ #: widgets/simple-captcha/simple-captcha.php:41 widgets/summary/summary.php:36
2077
+ #: widgets/switch/switch.php:36 widgets/telephone/telephone.php:36
2078
+ #: widgets/text/text.php:36 widgets/textarea/textarea.php:37
2079
+ #: widgets/time/time.php:40 widgets/url/url.php:37
2080
+ msgid "Content"
2081
+ msgstr ""
2082
+
2083
+ #: widgets/button/button.php:52
2084
+ msgid "Hidden"
2085
+ msgstr ""
2086
+
2087
+ #: widgets/button/button.php:65
2088
+ msgid "Button"
2089
+ msgstr ""
2090
+
2091
+ #: widgets/button/button.php:92
2092
+ msgid "Shadow"
2093
+ msgstr ""
2094
+
2095
+ #: widgets/checkbox/checkbox.php:24 widgets/checkbox/checkbox.php:333
2096
+ #: widgets/gdpr-consent/gdpr-consent.php:261
2097
+ #: widgets/listing-optin/listing-optin.php:284
2098
+ msgid "Checkbox"
2099
+ msgstr ""
2100
+
2101
+ #: widgets/checkbox/checkbox.php:86 widgets/gdpr-consent/gdpr-consent.php:79
2102
+ #: widgets/listing-optin/listing-optin.php:79 widgets/radio/radio.php:87
2103
+ msgid "Input Label : "
2104
+ msgstr ""
2105
+
2106
+ #: widgets/checkbox/checkbox.php:111 widgets/gdpr-consent/gdpr-consent.php:102
2107
+ #: widgets/listing-optin/listing-optin.php:102 widgets/radio/radio.php:112
2108
+ msgid "Option Display : "
2109
+ msgstr ""
2110
+
2111
+ #: widgets/checkbox/checkbox.php:115 widgets/gdpr-consent/gdpr-consent.php:106
2112
+ #: widgets/listing-optin/listing-optin.php:106 widgets/radio/radio.php:116
2113
+ msgid "Horizontal"
2114
+ msgstr ""
2115
+
2116
+ #: widgets/checkbox/checkbox.php:116 widgets/gdpr-consent/gdpr-consent.php:107
2117
+ #: widgets/listing-optin/listing-optin.php:107 widgets/radio/radio.php:117
2118
+ msgid "Vertical"
2119
+ msgstr ""
2120
+
2121
+ #: widgets/checkbox/checkbox.php:122 widgets/gdpr-consent/gdpr-consent.php:113
2122
+ #: widgets/listing-optin/listing-optin.php:113
2123
+ msgid "Checkbox option display style. "
2124
+ msgstr ""
2125
+
2126
+ #: widgets/checkbox/checkbox.php:129 widgets/gdpr-consent/gdpr-consent.php:120
2127
+ #: widgets/listing-optin/listing-optin.php:120 widgets/radio/radio.php:130
2128
+ msgid "Option Text Position : "
2129
+ msgstr ""
2130
+
2131
+ #: widgets/checkbox/checkbox.php:132 widgets/gdpr-consent/gdpr-consent.php:123
2132
+ #: widgets/listing-optin/listing-optin.php:123
2133
+ msgid "After Checkbox"
2134
+ msgstr ""
2135
+
2136
+ #: widgets/checkbox/checkbox.php:133 widgets/gdpr-consent/gdpr-consent.php:124
2137
+ #: widgets/listing-optin/listing-optin.php:124
2138
+ msgid "Before Checkbox"
2139
+ msgstr ""
2140
+
2141
+ #: widgets/checkbox/checkbox.php:136 widgets/gdpr-consent/gdpr-consent.php:127
2142
+ #: widgets/listing-optin/listing-optin.php:127 widgets/radio/radio.php:137
2143
+ msgid "Where do you want to label?"
2144
+ msgstr ""
2145
+
2146
+ #: widgets/checkbox/checkbox.php:144 widgets/gdpr-consent/gdpr-consent.php:133
2147
+ #: widgets/listing-optin/listing-optin.php:133
2148
+ msgid "Checkbox Option Text"
2149
+ msgstr ""
2150
+
2151
+ #: widgets/checkbox/checkbox.php:146 widgets/radio/radio.php:147
2152
+ msgid "Option Text"
2153
+ msgstr ""
2154
+
2155
+ #: widgets/checkbox/checkbox.php:148 widgets/radio/radio.php:149
2156
+ msgid "Select option text that will be show to user."
2157
+ msgstr ""
2158
+
2159
+ #: widgets/checkbox/checkbox.php:153 widgets/checkbox/checkbox.php:155
2160
+ #: widgets/radio/radio.php:154 widgets/radio/radio.php:156
2161
+ msgid "Option Value"
2162
+ msgstr ""
2163
+
2164
+ #: widgets/checkbox/checkbox.php:157 widgets/radio/radio.php:158
2165
+ msgid "Select option value that will be store/mail to desired person."
2166
+ msgstr ""
2167
+
2168
+ #: widgets/checkbox/checkbox.php:162 widgets/radio/radio.php:163
2169
+ msgid "Option Status"
2170
+ msgstr ""
2171
+
2172
+ #: widgets/checkbox/checkbox.php:165 widgets/radio/radio.php:166
2173
+ #: widgets/rating/rating.php:175 widgets/switch/switch.php:222
2174
+ msgid "Active"
2175
+ msgstr ""
2176
+
2177
+ #: widgets/checkbox/checkbox.php:166 widgets/multi-select/multi-select.php:71
2178
+ #: widgets/radio/radio.php:167 widgets/select/select.php:71
2179
+ msgid "Disable"
2180
+ msgstr ""
2181
+
2182
+ #: widgets/checkbox/checkbox.php:170 widgets/multi-select/multi-select.php:73
2183
+ #: widgets/radio/radio.php:171 widgets/select/select.php:73
2184
+ msgid ""
2185
+ "Want to make a option? which user can see the option but can't select it. "
2186
+ "make it disable."
2187
+ msgstr ""
2188
+
2189
+ #: widgets/checkbox/checkbox.php:177
2190
+ msgid "Checkbox Options"
2191
+ msgstr ""
2192
+
2193
+ #: widgets/checkbox/checkbox.php:198 widgets/multi-select/multi-select.php:114
2194
+ #: widgets/radio/radio.php:199 widgets/select/select.php:114
2195
+ msgid "You can add/edit here your selector options."
2196
+ msgstr ""
2197
+
2198
+ #: widgets/checkbox/checkbox.php:227 widgets/date/date.php:62
2199
+ #: widgets/file-upload/file-upload.php:89
2200
+ #: widgets/listing-optin/listing-optin.php:166
2201
+ #: widgets/multi-select/multi-select.php:133 widgets/radio/radio.php:228
2202
+ #: widgets/range/range.php:58 widgets/rating/rating.php:58
2203
+ #: widgets/select/select.php:133 widgets/summary/summary.php:58
2204
+ #: widgets/switch/switch.php:76 widgets/time/time.php:62 widgets/url/url.php:59
2205
+ msgid "Validation Type"
2206
+ msgstr ""
2207
+
2208
+ #: widgets/checkbox/checkbox.php:242 widgets/gdpr-consent/gdpr-consent.php:161
2209
+ #: widgets/listing-optin/listing-optin.php:181 widgets/radio/radio.php:243
2210
+ msgid "Input Label"
2211
+ msgstr ""
2212
+
2213
+ #: widgets/checkbox/checkbox.php:390 widgets/checkbox/checkbox.php:415
2214
+ #: widgets/gdpr-consent/gdpr-consent.php:318
2215
+ #: widgets/gdpr-consent/gdpr-consent.php:343
2216
+ #: widgets/listing-optin/listing-optin.php:341
2217
+ #: widgets/listing-optin/listing-optin.php:366
2218
+ msgid "Checkbox Color"
2219
+ msgstr ""
2220
+
2221
+ #: widgets/checkbox/checkbox.php:408 widgets/gdpr-consent/gdpr-consent.php:336
2222
+ #: widgets/listing-optin/listing-optin.php:359 widgets/radio/radio.php:420
2223
+ msgid "Checked"
2224
+ msgstr ""
2225
+
2226
+ #: widgets/checkbox/checkbox.php:435 widgets/gdpr-consent/gdpr-consent.php:363
2227
+ #: widgets/listing-optin/listing-optin.php:386 widgets/radio/radio.php:447
2228
+ msgid "Horizontal position of icon"
2229
+ msgstr ""
2230
+
2231
+ #: widgets/checkbox/checkbox.php:458 widgets/gdpr-consent/gdpr-consent.php:386
2232
+ #: widgets/listing-optin/listing-optin.php:409
2233
+ msgid "Add space after checkbox"
2234
+ msgstr ""
2235
+
2236
+ #: widgets/checkbox/checkbox.php:474 widgets/gdpr-consent/gdpr-consent.php:402
2237
+ #: widgets/listing-optin/listing-optin.php:425 widgets/radio/radio.php:487
2238
+ msgid "Typography for icon"
2239
+ msgstr ""
2240
+
2241
+ #: widgets/checkbox/checkbox.php:485 widgets/gdpr-consent/gdpr-consent.php:413
2242
+ #: widgets/listing-optin/listing-optin.php:436 widgets/radio/radio.php:498
2243
+ msgid "Typography for text"
2244
+ msgstr ""
2245
+
2246
+ #: widgets/checkbox/checkbox.php:497 widgets/date/date.php:371
2247
+ #: widgets/email/email.php:103 widgets/file-upload/file-upload.php:384
2248
+ #: widgets/gdpr-consent/gdpr-consent.php:424
2249
+ #: widgets/listing-fname/listing-fname.php:103
2250
+ #: widgets/listing-lname/listing-lname.php:103
2251
+ #: widgets/listing-optin/listing-optin.php:447
2252
+ #: widgets/multi-select/multi-select.php:175 widgets/number/number.php:103
2253
+ #: widgets/password/password.php:103 widgets/radio/radio.php:510
2254
+ #: widgets/range/range.php:214 widgets/rating/rating.php:271
2255
+ #: widgets/select/select.php:185 widgets/simple-captcha/simple-captcha.php:290
2256
+ #: widgets/summary/summary.php:96 widgets/switch/switch.php:267
2257
+ #: widgets/telephone/telephone.php:103 widgets/text/text.php:103
2258
+ #: widgets/textarea/textarea.php:127 widgets/time/time.php:128
2259
+ #: widgets/url/url.php:113
2260
+ msgid "Help Text"
2261
+ msgstr ""
2262
+
2263
+ #: widgets/date/date.php:20
2264
+ msgid "Date"
2265
+ msgstr ""
2266
+
2267
+ #: widgets/date/date.php:71
2268
+ msgid "Set minimum date:"
2269
+ msgstr ""
2270
+
2271
+ #: widgets/date/date.php:82
2272
+ msgid "Set maximum date:"
2273
+ msgstr ""
2274
+
2275
+ #: widgets/date/date.php:95
2276
+ msgid "Disable date : "
2277
+ msgstr ""
2278
+
2279
+ #: widgets/date/date.php:106
2280
+ msgid "Disable date List"
2281
+ msgstr ""
2282
+
2283
+ #: widgets/date/date.php:117
2284
+ msgid "Range date input ?"
2285
+ msgstr ""
2286
+
2287
+ #: widgets/date/date.php:129
2288
+ msgid "Year input ?"
2289
+ msgstr ""
2290
+
2291
+ #: widgets/date/date.php:141
2292
+ msgid "Month input ?"
2293
+ msgstr ""
2294
+
2295
+ #: widgets/date/date.php:153
2296
+ msgid "Date input ?"
2297
+ msgstr ""
2298
+
2299
+ #: widgets/date/date.php:165 widgets/date/date.php:201
2300
+ #: widgets/date/date.php:235 widgets/date/date.php:269
2301
+ msgid "Date format : "
2302
+ msgstr ""
2303
+
2304
+ #: widgets/date/date.php:169
2305
+ msgid "YYYY-MM-DD"
2306
+ msgstr ""
2307
+
2308
+ #: widgets/date/date.php:170
2309
+ msgid "DD-MM-YYYY"
2310
+ msgstr ""
2311
+
2312
+ #: widgets/date/date.php:171
2313
+ msgid "MM-DD-YYYY"
2314
+ msgstr ""
2315
+
2316
+ #: widgets/date/date.php:172
2317
+ msgid "YYYY.MM.DD"
2318
+ msgstr ""
2319
+
2320
+ #: widgets/date/date.php:173
2321
+ msgid "DD.MM.YYYY"
2322
+ msgstr ""
2323
+
2324
+ #: widgets/date/date.php:174
2325
+ msgid "MM.DD.YYYY"
2326
+ msgstr ""
2327
+
2328
+ #: widgets/date/date.php:205
2329
+ msgid "MM-DD"
2330
+ msgstr ""
2331
+
2332
+ #: widgets/date/date.php:206
2333
+ msgid "DD-MM"
2334
+ msgstr ""
2335
+
2336
+ #: widgets/date/date.php:207
2337
+ msgid "MM.DD"
2338
+ msgstr ""
2339
+
2340
+ #: widgets/date/date.php:208
2341
+ msgid "DD.MM"
2342
+ msgstr ""
2343
+
2344
+ #: widgets/date/date.php:239
2345
+ msgid "MM-YY"
2346
+ msgstr ""
2347
+
2348
+ #: widgets/date/date.php:240
2349
+ msgid "YY-MM"
2350
+ msgstr ""
2351
+
2352
+ #: widgets/date/date.php:241
2353
+ msgid "MM.YY"
2354
+ msgstr ""
2355
+
2356
+ #: widgets/date/date.php:242
2357
+ msgid "YY.MM"
2358
+ msgstr ""
2359
+
2360
+ #: widgets/date/date.php:273
2361
+ msgid "DD-YY"
2362
+ msgstr ""
2363
+
2364
+ #: widgets/date/date.php:274
2365
+ msgid "YY-DD"
2366
+ msgstr ""
2367
+
2368
+ #: widgets/date/date.php:275
2369
+ msgid "DD.YY"
2370
+ msgstr ""
2371
+
2372
+ #: widgets/date/date.php:276
2373
+ msgid "YY.DD"
2374
+ msgstr ""
2375
+
2376
+ #: widgets/date/date.php:303
2377
+ msgid "Want to input time with it ?"
2378
+ msgstr ""
2379
+
2380
+ #: widgets/date/date.php:336 widgets/email/email.php:79
2381
+ #: widgets/file-upload/file-upload.php:185
2382
+ #: widgets/listing-fname/listing-fname.php:79
2383
+ #: widgets/listing-lname/listing-lname.php:79
2384
+ #: widgets/multi-select/multi-select.php:163 widgets/number/number.php:79
2385
+ #: widgets/password/password.php:79 widgets/rating/rating.php:100
2386
+ #: widgets/summary/summary.php:84 widgets/switch/switch.php:107
2387
+ #: widgets/telephone/telephone.php:79 widgets/text/text.php:79
2388
+ #: widgets/textarea/textarea.php:80 widgets/time/time.php:104
2389
+ #: widgets/url/url.php:89
2390
+ msgid "Input"
2391
+ msgstr ""
2392
+
2393
+ #: widgets/date/date.php:347
2394
+ msgid "Calendar Typography"
2395
+ msgstr ""
2396
+
2397
+ #: widgets/date/date.php:359 widgets/email/email.php:91
2398
+ #: widgets/listing-fname/listing-fname.php:91
2399
+ #: widgets/listing-lname/listing-lname.php:91 widgets/number/number.php:91
2400
+ #: widgets/password/password.php:91 widgets/select/select.php:173
2401
+ #: widgets/simple-captcha/simple-captcha.php:305
2402
+ #: widgets/telephone/telephone.php:91 widgets/text/text.php:91
2403
+ #: widgets/textarea/textarea.php:115 widgets/time/time.php:116
2404
+ #: widgets/url/url.php:101
2405
+ msgid "Place Holder"
2406
+ msgstr ""
2407
+
2408
+ #: widgets/email/email.php:16
2409
+ msgid "Email"
2410
+ msgstr ""
2411
+
2412
+ #: widgets/email/email.php:129
2413
+ msgid "Please enter a valid Email address"
2414
+ msgstr ""
2415
+
2416
+ #: widgets/file-upload/file-upload.php:16
2417
+ msgid "File Upload"
2418
+ msgstr ""
2419
+
2420
+ #: widgets/file-upload/file-upload.php:47
2421
+ msgid "File Upload Icon:"
2422
+ msgstr ""
2423
+
2424
+ #: widgets/file-upload/file-upload.php:56
2425
+ msgid "File Upload Icon Position"
2426
+ msgstr ""
2427
+
2428
+ #: widgets/file-upload/file-upload.php:98
2429
+ msgid "File Size Limit : "
2430
+ msgstr ""
2431
+
2432
+ #: widgets/file-upload/file-upload.php:109
2433
+ msgid "Maximum File Size (KB) : "
2434
+ msgstr ""
2435
+
2436
+ #: widgets/file-upload/file-upload.php:111
2437
+ msgid "128"
2438
+ msgstr ""
2439
+
2440
+ #: widgets/file-upload/file-upload.php:121
2441
+ msgid "File Types : "
2442
+ msgstr ""
2443
+
2444
+ #: widgets/file-upload/file-upload.php:125
2445
+ msgid ".jpg"
2446
+ msgstr ""
2447
+
2448
+ #: widgets/file-upload/file-upload.php:126
2449
+ msgid ".jpeg"
2450
+ msgstr ""
2451
+
2452
+ #: widgets/file-upload/file-upload.php:127
2453
+ msgid ".gif"
2454
+ msgstr ""
2455
+
2456
+ #: widgets/file-upload/file-upload.php:128
2457
+ msgid ".png"
2458
+ msgstr ""
2459
+
2460
+ #: widgets/file-upload/file-upload.php:129
2461
+ msgid ".ico"
2462
+ msgstr ""
2463
+
2464
+ #: widgets/file-upload/file-upload.php:130
2465
+ msgid ".pdf"
2466
+ msgstr ""
2467
+
2468
+ #: widgets/file-upload/file-upload.php:131
2469
+ msgid ".doc"
2470
+ msgstr ""
2471
+
2472
+ #: widgets/file-upload/file-upload.php:132
2473
+ msgid ".docx"
2474
+ msgstr ""
2475
+
2476
+ #: widgets/file-upload/file-upload.php:133
2477
+ msgid ".ppt"
2478
+ msgstr ""
2479
+
2480
+ #: widgets/file-upload/file-upload.php:134
2481
+ msgid ".pptx"
2482
+ msgstr ""
2483
+
2484
+ #: widgets/file-upload/file-upload.php:135
2485
+ msgid ".pps"
2486
+ msgstr ""
2487
+
2488
+ #: widgets/file-upload/file-upload.php:136
2489
+ msgid ".ppsx"
2490
+ msgstr ""
2491
+
2492
+ #: widgets/file-upload/file-upload.php:137
2493
+ msgid ".odt"
2494
+ msgstr ""
2495
+
2496
+ #: widgets/file-upload/file-upload.php:138
2497
+ msgid ".xls"
2498
+ msgstr ""
2499
+
2500
+ #: widgets/file-upload/file-upload.php:139
2501
+ msgid ".xlsx"
2502
+ msgstr ""
2503
+
2504
+ #: widgets/file-upload/file-upload.php:140
2505
+ msgid ".psd"
2506
+ msgstr ""
2507
+
2508
+ #: widgets/file-upload/file-upload.php:141
2509
+ msgid ".mp3"
2510
+ msgstr ""
2511
+
2512
+ #: widgets/file-upload/file-upload.php:142
2513
+ msgid ".m4a"
2514
+ msgstr ""
2515
+
2516
+ #: widgets/file-upload/file-upload.php:143
2517
+ msgid ".ogg"
2518
+ msgstr ""
2519
+
2520
+ #: widgets/file-upload/file-upload.php:144
2521
+ msgid ".wav"
2522
+ msgstr ""
2523
+
2524
+ #: widgets/file-upload/file-upload.php:145
2525
+ msgid ".mp4"
2526
+ msgstr ""
2527
+
2528
+ #: widgets/file-upload/file-upload.php:146
2529
+ msgid ".m4v"
2530
+ msgstr ""
2531
+
2532
+ #: widgets/file-upload/file-upload.php:147
2533
+ msgid ".mov"
2534
+ msgstr ""
2535
+
2536
+ #: widgets/file-upload/file-upload.php:148
2537
+ msgid ".wmv"
2538
+ msgstr ""
2539
+
2540
+ #: widgets/file-upload/file-upload.php:149
2541
+ msgid ".avi"
2542
+ msgstr ""
2543
+
2544
+ #: widgets/file-upload/file-upload.php:150
2545
+ msgid ".mpg"
2546
+ msgstr ""
2547
+
2548
+ #: widgets/file-upload/file-upload.php:151
2549
+ msgid ".ogv"
2550
+ msgstr ""
2551
+
2552
+ #: widgets/file-upload/file-upload.php:152
2553
+ msgid ".3gp"
2554
+ msgstr ""
2555
+
2556
+ #: widgets/file-upload/file-upload.php:153
2557
+ msgid ".3g2"
2558
+ msgstr ""
2559
+
2560
+ #: widgets/file-upload/file-upload.php:154
2561
+ msgid ".zip"
2562
+ msgstr ""
2563
+
2564
+ #: widgets/file-upload/file-upload.php:155
2565
+ msgid ".csv"
2566
+ msgstr ""
2567
+
2568
+ #: widgets/file-upload/file-upload.php:195
2569
+ msgid "Icon Size"
2570
+ msgstr ""
2571
+
2572
+ #: widgets/file-upload/file-upload.php:223
2573
+ msgid "Icon Spacing"
2574
+ msgstr ""
2575
+
2576
+ #: widgets/file-upload/file-upload.php:238
2577
+ msgid "File Name:"
2578
+ msgstr ""
2579
+
2580
+ #: widgets/file-upload/file-upload.php:252
2581
+ msgid "Bottom"
2582
+ msgstr ""
2583
+
2584
+ #: widgets/file-upload/file-upload.php:446
2585
+ msgid "Choose a file"
2586
+ msgstr ""
2587
+
2588
+ #: widgets/file-upload/file-upload.php:452
2589
+ msgid "No file chosen."
2590
+ msgstr ""
2591
+
2592
+ #: widgets/form-basic.php:12
2593
+ msgid "MetForm Basic"
2594
+ msgstr ""
2595
+
2596
+ #: widgets/form-basic.php:58
2597
+ msgid "Select Form : "
2598
+ msgstr ""
2599
+
2600
+ #: widgets/form.php:51
2601
+ msgid "Select Form: "
2602
+ msgstr ""
2603
+
2604
+ #: widgets/form.php:54
2605
+ msgid "Click on the \"red\" edit icon to edit form content."
2606
+ msgstr ""
2607
+
2608
+ #: widgets/gdpr-consent/gdpr-consent.php:16
2609
+ msgid "GDPR Consent"
2610
+ msgstr ""
2611
+
2612
+ #: widgets/gdpr-consent/gdpr-consent.php:138
2613
+ #: widgets/listing-optin/listing-optin.php:137
2614
+ msgid "Select option name that will be show to user."
2615
+ msgstr ""
2616
+
2617
+ #: widgets/listing-fname/listing-fname.php:16
2618
+ msgid "First Name (Listing)"
2619
+ msgstr ""
2620
+
2621
+ #: widgets/listing-lname/listing-lname.php:16
2622
+ msgid "Last Name (Listing)"
2623
+ msgstr ""
2624
+
2625
+ #: widgets/listing-optin/listing-optin.php:16
2626
+ msgid "Opt in ( Listing )"
2627
+ msgstr ""
2628
+
2629
+ #: widgets/listing-optin/listing-optin.php:135
2630
+ msgid "Subscribe to ours newsletter."
2631
+ msgstr ""
2632
+
2633
+ #: widgets/manifest.php:116
2634
+ msgid "Metform"
2635
+ msgstr ""
2636
+
2637
+ #: widgets/multi-select/multi-select.php:16
2638
+ msgid "Multi Select"
2639
+ msgstr ""
2640
+
2641
+ #: widgets/multi-select/multi-select.php:47 widgets/select/select.php:47
2642
+ msgid "Input Field Text"
2643
+ msgstr ""
2644
+
2645
+ #: widgets/multi-select/multi-select.php:49 widgets/select/select.php:49
2646
+ msgid "Input Text"
2647
+ msgstr ""
2648
+
2649
+ #: widgets/multi-select/multi-select.php:51 widgets/select/select.php:51
2650
+ msgid "Select list text that will be show to user."
2651
+ msgstr ""
2652
+
2653
+ #: widgets/multi-select/multi-select.php:56 widgets/select/select.php:56
2654
+ msgid "Input Field Value"
2655
+ msgstr ""
2656
+
2657
+ #: widgets/multi-select/multi-select.php:60 widgets/select/select.php:60
2658
+ msgid "Select list value that will be store/mail to desired person."
2659
+ msgstr ""
2660
+
2661
+ #: widgets/multi-select/multi-select.php:66 widgets/select/select.php:66
2662
+ msgid "Status"
2663
+ msgstr ""
2664
+
2665
+ #: widgets/multi-select/multi-select.php:79 widgets/select/select.php:79
2666
+ msgid "Select it default ? "
2667
+ msgstr ""
2668
+
2669
+ #: widgets/multi-select/multi-select.php:86 widgets/select/select.php:86
2670
+ msgid "Make this option default selected"
2671
+ msgstr ""
2672
+
2673
+ #: widgets/multi-select/multi-select.php:93
2674
+ msgid "Multi Select List"
2675
+ msgstr ""
2676
+
2677
+ #: widgets/number/number.php:16
2678
+ msgid "Number"
2679
+ msgstr ""
2680
+
2681
+ #: widgets/password/password.php:16
2682
+ msgid "Password"
2683
+ msgstr ""
2684
+
2685
+ #: widgets/radio/radio.php:24 widgets/radio/radio.php:346
2686
+ msgid "Radio"
2687
+ msgstr ""
2688
+
2689
+ #: widgets/radio/radio.php:104
2690
+ msgid ""
2691
+ "Name is must required. Enter name without space or any special character. "
2692
+ "use only underscore/ hyphen (_/-) for multiple word."
2693
+ msgstr ""
2694
+
2695
+ #: widgets/radio/radio.php:123
2696
+ msgid "Radio option display style."
2697
+ msgstr ""
2698
+
2699
+ #: widgets/radio/radio.php:133
2700
+ msgid "After Radio"
2701
+ msgstr ""
2702
+
2703
+ #: widgets/radio/radio.php:134
2704
+ msgid "Before Radio"
2705
+ msgstr ""
2706
+
2707
+ #: widgets/radio/radio.php:145
2708
+ msgid "Radio Option Text"
2709
+ msgstr ""
2710
+
2711
+ #: widgets/radio/radio.php:178
2712
+ msgid "Radio Options"
2713
+ msgstr ""
2714
+
2715
+ #: widgets/radio/radio.php:402 widgets/radio/radio.php:427
2716
+ msgid "Radio Color"
2717
+ msgstr ""
2718
+
2719
+ #: widgets/radio/radio.php:471
2720
+ msgid "Add space after radio"
2721
+ msgstr ""
2722
+
2723
+ #: widgets/range/range.php:16
2724
+ msgid "Range Slider"
2725
+ msgstr ""
2726
+
2727
+ #: widgets/range/range.php:86
2728
+ msgid "Steps"
2729
+ msgstr ""
2730
+
2731
+ #: widgets/range/range.php:95
2732
+ msgid "Dual range input:"
2733
+ msgstr ""
2734
+
2735
+ #: widgets/range/range.php:108
2736
+ msgid ""
2737
+ "<strong>Important Note : </strong> For taking dual range input, You have to "
2738
+ "enter dual default value in the field Value (Exactly bottom of this notice "
2739
+ "field. ). Example: Min:10, Max:20"
2740
+ msgstr ""
2741
+
2742
+ #: widgets/range/range.php:119
2743
+ msgid "Value"
2744
+ msgstr ""
2745
+
2746
+ #: widgets/range/range.php:148
2747
+ msgid "Range"
2748
+ msgstr ""
2749
+
2750
+ #: widgets/range/range.php:160
2751
+ msgid "Counter"
2752
+ msgstr ""
2753
+
2754
+ #: widgets/range/range.php:183 widgets/switch/switch.php:132
2755
+ #: widgets/textarea/textarea.php:88
2756
+ msgid "Height"
2757
+ msgstr ""
2758
+
2759
+ #: widgets/rating/rating.php:16
2760
+ msgid "Rating"
2761
+ msgstr ""
2762
+
2763
+ #: widgets/rating/rating.php:67
2764
+ msgid "Number of rating star : "
2765
+ msgstr ""
2766
+
2767
+ #: widgets/recaptcha/recaptcha.php:13
2768
+ msgid "reCAPTCHA"
2769
+ msgstr ""
2770
+
2771
+ #: widgets/recaptcha/recaptcha.php:40
2772
+ msgid "reCAPTCHA configure: "
2773
+ msgstr ""
2774
+
2775
+ #: widgets/recaptcha/recaptcha.php:50
2776
+ msgid "Add Extra Class Name : "
2777
+ msgstr ""
2778
+
2779
+ #: widgets/recaptcha/recaptcha.php:91
2780
+ msgid "reCAPTCHA is required."
2781
+ msgstr ""
2782
+
2783
+ #: widgets/recaptcha/recaptcha.php:127 widgets/recaptcha/recaptcha.php:144
2784
+ msgid "reCAPTCHA will be shown on preview."
2785
+ msgstr ""
2786
+
2787
+ #: widgets/select/select.php:16 widgets/select/select.php:163
2788
+ msgid "Select"
2789
+ msgstr ""
2790
+
2791
+ #: widgets/select/select.php:93
2792
+ msgid "Dropdown List"
2793
+ msgstr ""
2794
+
2795
+ #: widgets/simple-captcha/simple-captcha.php:22
2796
+ msgid "Simple Captcha"
2797
+ msgstr ""
2798
+
2799
+ #: widgets/simple-captcha/simple-captcha.php:62
2800
+ msgid "Label Position"
2801
+ msgstr ""
2802
+
2803
+ #: widgets/simple-captcha/simple-captcha.php:83
2804
+ msgid "Input captcha display"
2805
+ msgstr ""
2806
+
2807
+ #: widgets/simple-captcha/simple-captcha.php:87
2808
+ msgid "Block"
2809
+ msgstr ""
2810
+
2811
+ #: widgets/simple-captcha/simple-captcha.php:88
2812
+ msgid "Inline"
2813
+ msgstr ""
2814
+
2815
+ #: widgets/simple-captcha/simple-captcha.php:90
2816
+ msgid "Select input and captcha display property."
2817
+ msgstr ""
2818
+
2819
+ #: widgets/simple-captcha/simple-captcha.php:240
2820
+ msgid "Refresh Captcha"
2821
+ msgstr ""
2822
+
2823
+ #: widgets/simple-captcha/simple-captcha.php:333
2824
+ msgid "Captcha didn't matched."
2825
+ msgstr ""
2826
+
2827
+ #: widgets/simple-captcha/simple-captcha.php:366
2828
+ msgid "Entry captcha from the picture"
2829
+ msgstr ""
2830
+
2831
+ #: widgets/summary/summary.php:16
2832
+ msgid "Summary"
2833
+ msgstr ""
2834
+
2835
+ #: widgets/summary/summary.php:141
2836
+ msgid "Summary will be shown on preview."
2837
+ msgstr ""
2838
+
2839
+ #: widgets/switch/switch.php:16
2840
+ msgid "Switch"
2841
+ msgstr ""
2842
+
2843
+ #: widgets/switch/switch.php:46
2844
+ msgid "Active Text"
2845
+ msgstr ""
2846
+
2847
+ #: widgets/switch/switch.php:54
2848
+ msgid "Inactive Text"
2849
+ msgstr ""
2850
+
2851
+ #: widgets/switch/switch.php:148
2852
+ msgid "Input Active Color"
2853
+ msgstr ""
2854
+
2855
+ #: widgets/switch/switch.php:168
2856
+ msgid "Active and Inactive Text:"
2857
+ msgstr ""
2858
+
2859
+ #: widgets/switch/switch.php:180
2860
+ msgid "Inactive"
2861
+ msgstr ""
2862
+
2863
+ #: widgets/telephone/telephone.php:16
2864
+ msgid "Telephone"
2865
+ msgstr ""
2866
+
2867
+ #: widgets/text/text.php:16
2868
+ msgid "Text"
2869
+ msgstr ""
2870
+
2871
+ #: widgets/textarea/textarea.php:17
2872
+ msgid "Textarea"
2873
+ msgstr ""
2874
+
2875
+ #: widgets/time/time.php:20
2876
+ msgid "Time"
2877
+ msgstr ""
2878
+
2879
+ #: widgets/time/time.php:71
2880
+ msgid "Use time 24H"
2881
+ msgstr ""
2882
+
2883
+ #: widgets/url/url.php:16
2884
+ msgid "URL"
2885
+ msgstr ""
2886
+
2887
+ #: widgets/url/url.php:138
2888
+ msgid "Please enter a valid URL"
2889
+ msgstr ""
2890
+
2891
+ #: widgets/widget-notice.php:18
2892
+ msgid "Go Pro for More Features"
2893
+ msgstr ""
2894
+
2895
+ #: widgets/widget-notice.php:25
2896
+ msgid "Unlock more possibilities"
2897
+ msgstr ""
2898
+
2899
+ #. Plugin URI of the plugin/theme
2900
+ msgid "http://products.wpmet.com/metform/"
2901
+ msgstr ""
2902
+
2903
+ #. Description of the plugin/theme
2904
+ msgid "Most flexible and design friendly form builder for Elementor"
2905
+ msgstr ""
2906
+
2907
+ #. Author of the plugin/theme
2908
+ msgid "Wpmet"
2909
+ msgstr ""
2910
+
2911
+ #. Author URI of the plugin/theme
2912
+ msgid "https://wpmet.com"
2913
+ msgstr ""
metform.php CHANGED
@@ -5,7 +5,7 @@ defined( 'ABSPATH' ) || exit;
5
  * Plugin Name: MetForm
6
  * Plugin URI: http://products.wpmet.com/metform/
7
  * Description: Most flexible and design friendly form builder for Elementor
8
- * Version: 1.3.11
9
  * Author: Wpmet
10
  * Author URI: https://wpmet.com
11
  * Text Domain: metform
5
  * Plugin Name: MetForm
6
  * Plugin URI: http://products.wpmet.com/metform/
7
  * Description: Most flexible and design friendly form builder for Elementor
8
+ * Version: 1.3.12
9
  * Author: Wpmet
10
  * Author URI: https://wpmet.com
11
  * Text Domain: metform
plugin.php CHANGED
@@ -1,371 +1,403 @@
1
- <?php
2
- namespace MetForm;
3
-
4
-
5
- defined( 'ABSPATH' ) || exit;
6
-
7
- final class Plugin{
8
-
9
- private static $instance;
10
-
11
- private $entries;
12
- private $global_settings;
13
-
14
- public function __construct(){
15
- Autoloader::run();
16
- }
17
-
18
- public function version(){
19
- return '1.3.11';
20
- }
21
-
22
- public function package_type(){
23
- return 'free';
24
- }
25
-
26
- public function plugin_url(){
27
- return trailingslashit(plugin_dir_url( __FILE__ ));
28
- }
29
-
30
- public function plugin_dir(){
31
- return trailingslashit(plugin_dir_path( __FILE__ ));
32
- }
33
-
34
- public function core_url(){
35
- return $this->plugin_url() . 'core/';
36
- }
37
-
38
- public function core_dir(){
39
- return $this->plugin_dir() . 'core/';
40
- }
41
-
42
- public function base_url(){
43
- return $this->plugin_url() . 'base/';
44
- }
45
-
46
- public function base_dir(){
47
- return $this->plugin_dir() . 'base/';
48
- }
49
-
50
- public function utils_url(){
51
- return $this->plugin_url() . 'utils/';
52
- }
53
-
54
- public function utils_dir(){
55
- return $this->plugin_dir() . 'utils/';
56
- }
57
-
58
- public function widgets_url(){
59
- return $this->plugin_url() . 'widgets/';
60
- }
61
-
62
- public function widgets_dir(){
63
- return $this->plugin_dir() . 'widgets/';
64
- }
65
-
66
- public function public_url(){
67
- return $this->plugin_url() . 'public/';
68
- }
69
-
70
- public function public_dir(){
71
- return $this->plugin_dir() . 'public/';
72
- }
73
-
74
- public function i18n() {
75
- load_plugin_textdomain( 'metform', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
76
- }
77
-
78
- public function init(){
79
-
80
- new Utils\Notice();
81
-
82
- /**
83
- * Ask for rating
84
- */
85
- require_once 'utils/rating.php';
86
-
87
- (new \Wpmet\Rating\Rating())
88
- ->plugin_name('metform')
89
- ->first_appear_day(7)
90
- ->rating_url('https://wordpress.org/plugins/metform/')
91
- ->init();
92
-
93
- // banner
94
- add_action('admin_head', function() {
95
-
96
- \Wpmet\Libs\Banner\Init::instance()
97
- ->set_text_domain('metform')
98
- // ->is_test(true)
99
- ->set_api_url('https://api.wpmet.com/public/jhanda/index.php')
100
- ->set_plugin_screens('edit-metform-form')
101
- ->set_plugin_screens('edit-metform-entry')
102
- ->set_plugin_screens('metform_page_metform-menu-settings')
103
- ->call();
104
- });
105
-
106
-
107
- // Check if Elementor installed and activated.
108
- if ( ! did_action( 'elementor/loaded' ) ) {
109
- add_action( 'admin_notices', array( $this, 'missing_elementor' ) );
110
- return;
111
- }
112
- // Check for required Elementor version.
113
- if ( ! version_compare( ELEMENTOR_VERSION, '2.6.0', '>=' ) ) {
114
- add_action( 'admin_notices', array( $this, 'failed_elementor_version' ) );
115
- return;
116
- }
117
-
118
- // pro available notice
119
- if( !file_exists( WP_PLUGIN_DIR . '/metform-pro/metform-pro.php' ) ){
120
- add_action( 'admin_notices', [ $this, 'available_metform_pro'] );
121
- }
122
-
123
- if(current_user_can('manage_options')){
124
- add_action( 'admin_menu',[$this,'admin_menu']);
125
- }
126
-
127
- add_action( 'elementor/editor/before_enqueue_scripts', [$this, 'edit_view_scripts'] );
128
-
129
- add_action( 'init', array( $this, 'i18n' ) );
130
-
131
- add_action('admin_enqueue_scripts', [$this,'js_css_admin']);
132
- add_action('wp_enqueue_scripts', [$this,'js_css_public']);
133
- add_action( 'elementor/frontend/before_enqueue_scripts', [$this, 'elementor_js'] );
134
-
135
- add_action( 'elementor/editor/before_enqueue_styles', [ $this, 'elementor_css' ] );
136
-
137
- add_action('admin_footer', [$this, 'footer_data']);
138
-
139
- Core\Forms\Base::instance()->init();
140
- Controls\Base::instance()->init();
141
- $this->entries = Core\Entries\Base::instance();
142
-
143
- Widgets\Manifest::instance()->init();
144
-
145
- // Add banner class
146
- include $this->utils_dir() . 'banner.php';
147
-
148
- // settings page
149
- Core\Admin\Base::instance()->init();
150
-
151
- add_action('admin_notices', function(){
152
- \WpMet_Banner::run();
153
- });
154
- }
155
-
156
- function js_css_public(){
157
- $is_edit_mode = 'metform-form' === get_post_type() && \Elementor\Plugin::$instance->preview->is_preview_mode();
158
-
159
- wp_enqueue_style('metform-ui', $this->public_url().'assets/css/metform-ui.css', false, $this->version());
160
- wp_enqueue_style('metform-style', $this->public_url().'assets/css/style.css', false, $this->version());
161
-
162
- wp_register_style('asRange', $this->public_url().'assets/css/asRange.min.css', false, $this->version());
163
- wp_register_script('asRange', $this->public_url().'assets/js/jquery-asRange.min.js', array(), $this->version(), true);
164
-
165
- wp_register_style('mf-select2', $this->public_url().'assets/css/select2.min.css', false, $this->version());
166
- wp_register_script('mf-select2', $this->public_url().'assets/js/select2.min.js', array(), $this->version(), true);
167
-
168
- wp_register_script('recaptcha-v2', 'https://google.com/recaptcha/api.js', array(), null, true);
169
-
170
- $this->global_settings = \MetForm\Core\Admin\Base::instance()->get_settings_option();
171
-
172
- if(isset($this->global_settings['mf_recaptcha_version']) && ( $this->global_settings['mf_recaptcha_version'] == 'recaptcha-v3' ) && isset($this->global_settings['mf_recaptcha_site_key_v3']) && ( $this->global_settings['mf_recaptcha_site_key_v3'] != '' ) ){
173
- wp_register_script('recaptcha-v3', 'https://www.google.com/recaptcha/api.js?render='. $this->global_settings['mf_recaptcha_site_key_v3'], array(), $this->version(), false);
174
- }
175
-
176
- if(isset($this->global_settings['mf_google_map_api_key']) && ( $this->global_settings['mf_google_map_api_key'] != '' ) ){
177
- wp_register_script( 'maps-api', 'https://maps.googleapis.com/maps/api/js?key='.$this->global_settings['mf_google_map_api_key'].'&libraries=places&&callback=mfMapLocation', array(), '', true );
178
- }
179
-
180
- wp_deregister_style('flatpickr'); // flatpickr stylesheet
181
- wp_register_style('flatpickr', $this->public_url().'assets/css/flatpickr.min.css', false, $this->version()); // flatpickr stylesheet
182
-
183
- wp_enqueue_script('htm', $this->public_url().'assets/js/htm.js', null, $this->version(), true);
184
-
185
- wp_enqueue_script('metform-app', $this->public_url().'assets/js/app.js', array('htm', 'jquery', 'wp-element'), $this->version(), true);
186
- wp_localize_script('metform-app', 'mf', array(
187
- 'postType' => get_post_type(),
188
- 'restURI' => get_rest_url( null, 'metform/v1/forms/views/')
189
- ));
190
-
191
- do_action('metform/onload/enqueue_scripts');
192
- }
193
-
194
- public function edit_view_scripts(){
195
- wp_enqueue_style('metform-ui', $this->public_url().'assets/css/metform-ui.css', false, $this->version());
196
- wp_enqueue_style('metform-admin-style', $this->public_url().'assets/css/admin-style.css', false, null);
197
-
198
-
199
- wp_enqueue_script('metform-ui', $this->public_url().'assets/js/ui.min.js', array(), $this->version(), true);
200
- wp_enqueue_script('metform-admin-script', $this->public_url().'assets/js/admin-script.js', array(), null, true);
201
-
202
- wp_add_inline_script('metform-admin-script', "
203
- var metform_api = {
204
- resturl: '". get_rest_url() ."'
205
- }
206
- ");
207
- }
208
-
209
- public function elementor_js() {
210
- }
211
-
212
- public function elementor_css(){
213
- if('metform-form' == get_post_type()){
214
- wp_enqueue_style('metform-category-top', $this->public_url().'assets/css/category-top.css', false, $this->version());
215
- }
216
- }
217
-
218
- function js_css_admin(){
219
-
220
- $screen = get_current_screen();
221
-
222
- if(in_array($screen->id, ['edit-metform-form','metform_page_mt-form-settings', 'metform-entry', 'metform_page_metform-menu-settings'])){
223
- wp_enqueue_style('metform-admin-fonts', $this->public_url().'assets/admin-fonts.css', false, $this->version());
224
- wp_enqueue_style('metform-ui', $this->public_url().'assets/css/metform-ui.css', false, $this->version());
225
- wp_enqueue_style('metform-admin-style', $this->public_url().'assets/css/admin-style.css', false, null);
226
-
227
- wp_enqueue_script('metform-ui', $this->public_url().'assets/js/ui.min.js', array(), $this->version(), true);
228
- wp_enqueue_script('metform-admin-script', $this->public_url().'assets/js/admin-script.js', array(), null, true);
229
- wp_localize_script('metform-admin-script', 'metform_api', array('resturl' => get_rest_url(), 'admin_url' => get_admin_url()));
230
- }
231
-
232
- if($screen->id == 'edit-metform-entry' || $screen->id == 'metform-entry'){
233
- wp_enqueue_style('metform-ui', $this->public_url().'assets/css/metform-ui.css', false, $this->version());
234
- wp_enqueue_script('metform-entry-script', $this->public_url().'assets/js/admin-entry-script.js', array(), $this->version(), true);
235
- }
236
-
237
- }
238
-
239
- public function footer_data(){
240
-
241
- $screen = get_current_screen();
242
-
243
- if($screen->id == 'edit-metform-entry'){
244
- $args = array(
245
- 'post_type' => 'metform-form',
246
- 'post_status' => 'publish',
247
- );
248
-
249
- $forms = get_posts( $args );
250
-
251
- $get_form_id = isset($_GET['form_id']) ? sanitize_key($_GET['form_id']) : '';
252
- ?>
253
- <div id='metform-formlist' style='display:none;'><select name='form_id' id='metform-form_id'>
254
- <option value='all' <?php echo esc_attr(((($get_form_id == 'all') || ($get_form_id == '')) ? 'selected=selected' : '')); ?>>All</option>
255
- <?php
256
-
257
- foreach($forms as $form){
258
- $form_list[$form->ID] = $form->post_title;
259
- ?>
260
- <option value="<?php echo esc_attr($form->ID); ?>" <?php echo esc_attr(($get_form_id == $form->ID) ? 'selected=selected' : ''); ?> ><?php echo esc_html($form->post_title); ?></option>
261
- <?php
262
- }
263
- echo "</select></div>";
264
- }
265
- }
266
-
267
- function admin_menu() {
268
- add_menu_page(
269
- esc_html__('MetForm'),
270
- esc_html__('MetForm'),
271
- 'read',
272
- 'metform-menu',
273
- '',
274
- 'dashicons-feedback',
275
- 5
276
- );
277
- }
278
-
279
- public function missing_elementor() {
280
- if ( isset( $_GET['activate'] ) ) {
281
- unset( $_GET['activate'] );
282
- }
283
-
284
- if ( file_exists( WP_PLUGIN_DIR . '/elementor/elementor.php' ) ) {
285
- $btn['label'] = esc_html__('Activate Elementor', 'metform');
286
- $btn['url'] = wp_nonce_url( 'plugins.php?action=activate&plugin=elementor/elementor.php&plugin_status=all&paged=1', 'activate-plugin_elementor/elementor.php' );
287
- } else {
288
- $btn['label'] = esc_html__('Install Elementor', 'metform');
289
- $btn['url'] = wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=elementor' ), 'install-plugin_elementor' );
290
- }
291
-
292
- Utils\Notice::push(
293
- [
294
- 'id' => 'unsupported-elementor-version',
295
- 'type' => 'error',
296
- 'dismissible' => true,
297
- 'btn' => $btn,
298
- 'message' => sprintf( esc_html__( 'MetForm requires Elementor version %1$s+, which is currently NOT RUNNING.', 'metform' ), '2.6.0' ),
299
- ]
300
- );
301
- }
302
-
303
- public function available_metform_pro() {
304
- if ( isset( $_GET['activate'] ) ) {
305
- unset( $_GET['activate'] );
306
- }
307
-
308
- $btn['label'] = esc_html__('MetForm Pro', 'metform');
309
- $btn['url'] = esc_url( 'https://products.wpmet.com/metform/');
310
-
311
- if(!$this->should_show_pro_banner())
312
- return;
313
-
314
- Utils\Notice::push(
315
- [
316
- 'id' => 'unsupported-metform-pro-version',
317
- 'type' => 'success',
318
- 'dismissible' => true,
319
- 'btn' => $btn,
320
- 'message' => sprintf( esc_html__( 'We have MetForm Pro version. Check out our pro feature.', 'metform' ), '2.6.0' ),
321
- ]
322
- );
323
- }
324
-
325
- /**
326
- * Check the admin screen and show the pro banner if eligible
327
- */
328
- public function should_show_pro_banner() {
329
- $current_screen = (get_current_screen())->base;
330
- $current_post_type = ( get_current_screen())->post_type;
331
- $eligible_post_type = ['metform-form','metform-entry'];
332
- $eligible_screens = ['plugins','dashboard','metform_page_metform-menu-settings','themes'];
333
-
334
- if(in_array($current_post_type,$eligible_post_type))
335
- return true;
336
-
337
- if(in_array($current_screen,$eligible_screens))
338
- return true;
339
-
340
- return false;
341
- }
342
-
343
- public function failed_elementor_version(){
344
-
345
- $btn['label'] = esc_html__('Update Elementor', 'metform');
346
- $btn['url'] = wp_nonce_url( self_admin_url( 'update.php?action=upgrade-plugin&plugin=elementor' ), 'upgrade-plugin_elementor' );
347
-
348
- Utils\Notice::push(
349
- [
350
- 'id' => 'unsupported-elementor-version',
351
- 'type' => 'error',
352
- 'dismissible' => true,
353
- 'btn' => $btn,
354
- 'message' => sprintf( esc_html__( 'MetForm requires Elementor version %1$s+, which is currently NOT RUNNING.', 'metform' ), '2.6.0' ),
355
- ]
356
- );
357
- }
358
-
359
- public function flush_rewrites(){
360
- $form_cpt = new Core\Forms\Cpt();
361
- $form_cpt->flush_rewrites();
362
- }
363
-
364
- public static function instance(){
365
- if (!self::$instance){
366
- self::$instance = new self();
367
- }
368
- return self::$instance;
369
- }
370
-
371
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace MetForm;
3
+
4
+
5
+ defined( 'ABSPATH' ) || exit;
6
+
7
+ final class Plugin{
8
+
9
+ private static $instance;
10
+
11
+ private $entries;
12
+ private $global_settings;
13
+
14
+ public function __construct(){
15
+ Autoloader::run();
16
+ }
17
+
18
+ public function version(){
19
+ return '1.3.12';
20
+ }
21
+
22
+ public function package_type(){
23
+ return 'free';
24
+ }
25
+
26
+ public function plugin_url(){
27
+ return trailingslashit(plugin_dir_url( __FILE__ ));
28
+ }
29
+
30
+ public function plugin_dir(){
31
+ return trailingslashit(plugin_dir_path( __FILE__ ));
32
+ }
33
+
34
+ public function core_url(){
35
+ return $this->plugin_url() . 'core/';
36
+ }
37
+
38
+ public function core_dir(){
39
+ return $this->plugin_dir() . 'core/';
40
+ }
41
+
42
+ public function base_url(){
43
+ return $this->plugin_url() . 'base/';
44
+ }
45
+
46
+ public function base_dir(){
47
+ return $this->plugin_dir() . 'base/';
48
+ }
49
+
50
+ public function utils_url(){
51
+ return $this->plugin_url() . 'utils/';
52
+ }
53
+
54
+ public function utils_dir(){
55
+ return $this->plugin_dir() . 'utils/';
56
+ }
57
+
58
+ public function widgets_url(){
59
+ return $this->plugin_url() . 'widgets/';
60
+ }
61
+
62
+ public function widgets_dir(){
63
+ return $this->plugin_dir() . 'widgets/';
64
+ }
65
+
66
+ public function public_url(){
67
+ return $this->plugin_url() . 'public/';
68
+ }
69
+
70
+ public function public_dir(){
71
+ return $this->plugin_dir() . 'public/';
72
+ }
73
+
74
+ public function i18n() {
75
+ load_plugin_textdomain( 'metform', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
76
+ }
77
+
78
+ public function init(){
79
+
80
+ new Utils\Notice();
81
+
82
+ /**
83
+ * Ask for rating
84
+ */
85
+ require_once 'utils/rating.php';
86
+ require_once 'utils/announcements/init.php';
87
+ require_once 'utils/pro-awareness/init.php';
88
+
89
+ (new \Wpmet\Rating\Rating())
90
+ ->plugin_name('metform')
91
+ ->first_appear_day(7)
92
+ ->rating_url('https://wordpress.org/plugins/metform/')
93
+ ->init();
94
+
95
+ // banner
96
+ add_action('admin_head', function() {
97
+
98
+ \Wpmet\Libs\Banner\Init::instance('metform')
99
+ ->set_api_url('https://api.wpmet.com/public/jhanda/index.php')
100
+ ->set_plugin_screens('edit-metform-form')
101
+ ->set_plugin_screens('edit-metform-entry')
102
+ ->set_plugin_screens('metform_page_metform-menu-settings')
103
+ ->call();
104
+ });
105
+
106
+ /**
107
+ * Show WPMET announcements widget in dashboard
108
+ */
109
+ \Wpmet\Libs\Announcements\Init::instance('metform')
110
+ ->set_plugin('Metform', 'https://wpmet.com/plugin/metform')
111
+ ->set_api_url('https://api.wpmet.com/public/announcements/index.php')
112
+ ->call();
113
+
114
+
115
+ /**
116
+ * Pro awareness feature;
117
+ */
118
+
119
+ \Wpmet\Libs\Pro_Awareness\Init::init();
120
+ \Wpmet\Libs\Pro_Awareness\Init::instance('metform')
121
+ ->set_parent_menu_slug('metform-menu')
122
+ ->set_pro_link(
123
+ (in_array('metform-pro/metform-pro.php', apply_filters('active_plugins', get_option('active_plugins')))) ? '' :
124
+ 'https://wpmet.com/plugin/metform/?utm_source=metform&utm_medium=inplugin_campaign&utm_campaign=go_pro_menu')
125
+ ->set_default_grid_thumbnail($this->utils_url() . '/pro-awareness/assets/support.png')
126
+ ->set_grid([
127
+ 'url' => 'https://www.facebook.com/groups/1319571704894531',
128
+ 'title' => 'Join the Community',
129
+ 'thumbnail' => $this->utils_url() . '/pro-awareness/assets/community.png',
130
+ ])
131
+ ->set_grid([
132
+ 'url' => 'https://www.youtube.com/playlist?list=PL3t2OjZ6gY8NoB_48DwWKUDRtBEuBOxSc',
133
+ 'title' => 'Video Tutorials',
134
+ 'thumbnail' => $this->utils_url() . '/pro-awareness/assets/videos.png',
135
+ ])
136
+ ->call();
137
+
138
+
139
+ // Check if Elementor installed and activated.
140
+ if ( ! did_action( 'elementor/loaded' ) ) {
141
+ add_action( 'admin_notices', array( $this, 'missing_elementor' ) );
142
+ return;
143
+ }
144
+ // Check for required Elementor version.
145
+ if ( ! version_compare( ELEMENTOR_VERSION, '2.6.0', '>=' ) ) {
146
+ add_action( 'admin_notices', array( $this, 'failed_elementor_version' ) );
147
+ return;
148
+ }
149
+
150
+ // pro available notice
151
+ if( !file_exists( WP_PLUGIN_DIR . '/metform-pro/metform-pro.php' ) ){
152
+ add_action( 'admin_notices', [ $this, 'available_metform_pro'] );
153
+ }
154
+
155
+ if(current_user_can('manage_options')){
156
+ add_action( 'admin_menu',[$this,'admin_menu']);
157
+ }
158
+
159
+ add_action( 'elementor/editor/before_enqueue_scripts', [$this, 'edit_view_scripts'] );
160
+
161
+ add_action( 'init', array( $this, 'i18n' ) );
162
+
163
+ add_action('admin_enqueue_scripts', [$this,'js_css_admin']);
164
+ add_action('wp_enqueue_scripts', [$this,'js_css_public']);
165
+ add_action( 'elementor/frontend/before_enqueue_scripts', [$this, 'elementor_js'] );
166
+
167
+ add_action( 'elementor/editor/before_enqueue_styles', [ $this, 'elementor_css' ] );
168
+
169
+ add_action('admin_footer', [$this, 'footer_data']);
170
+
171
+ Core\Forms\Base::instance()->init();
172
+ Controls\Base::instance()->init();
173
+ $this->entries = Core\Entries\Base::instance();
174
+
175
+ Widgets\Manifest::instance()->init();
176
+
177
+ // Add banner class
178
+ include $this->utils_dir() . 'banner.php';
179
+
180
+ // settings page
181
+ Core\Admin\Base::instance()->init();
182
+
183
+ add_action('admin_notices', function(){
184
+ \WpMet_Banner::run();
185
+ });
186
+ }
187
+
188
+ function js_css_public(){
189
+ $is_edit_mode = 'metform-form' === get_post_type() && \Elementor\Plugin::$instance->preview->is_preview_mode();
190
+
191
+ wp_enqueue_style('metform-ui', $this->public_url().'assets/css/metform-ui.css', false, $this->version());
192
+ wp_enqueue_style('metform-style', $this->public_url().'assets/css/style.css', false, $this->version());
193
+
194
+ wp_register_style('asRange', $this->public_url().'assets/css/asRange.min.css', false, $this->version());
195
+ wp_register_script('asRange', $this->public_url().'assets/js/jquery-asRange.min.js', array(), $this->version(), true);
196
+
197
+ wp_register_style('mf-select2', $this->public_url().'assets/css/select2.min.css', false, $this->version());
198
+ wp_register_script('mf-select2', $this->public_url().'assets/js/select2.min.js', array(), $this->version(), true);
199
+
200
+ wp_register_script('recaptcha-v2', 'https://google.com/recaptcha/api.js', array(), null, true);
201
+
202
+ $this->global_settings = \MetForm\Core\Admin\Base::instance()->get_settings_option();
203
+
204
+ if(isset($this->global_settings['mf_recaptcha_version']) && ( $this->global_settings['mf_recaptcha_version'] == 'recaptcha-v3' ) && isset($this->global_settings['mf_recaptcha_site_key_v3']) && ( $this->global_settings['mf_recaptcha_site_key_v3'] != '' ) ){
205
+ wp_register_script('recaptcha-v3', 'https://www.google.com/recaptcha/api.js?render='. $this->global_settings['mf_recaptcha_site_key_v3'], array(), $this->version(), false);
206
+ }
207
+
208
+ if(isset($this->global_settings['mf_google_map_api_key']) && ( $this->global_settings['mf_google_map_api_key'] != '' ) ){
209
+ wp_register_script( 'maps-api', 'https://maps.googleapis.com/maps/api/js?key='.$this->global_settings['mf_google_map_api_key'].'&libraries=places&&callback=mfMapLocation', array(), '', true );
210
+ }
211
+
212
+ wp_deregister_style('flatpickr'); // flatpickr stylesheet
213
+ wp_register_style('flatpickr', $this->public_url().'assets/css/flatpickr.min.css', false, $this->version()); // flatpickr stylesheet
214
+
215
+ wp_enqueue_script('htm', $this->public_url().'assets/js/htm.js', null, $this->version(), true);
216
+
217
+ wp_enqueue_script('metform-app', $this->public_url().'assets/js/app.js', array('htm', 'jquery', 'wp-element'), $this->version(), true);
218
+ wp_localize_script('metform-app', 'mf', array(
219
+ 'postType' => get_post_type(),
220
+ 'restURI' => get_rest_url( null, 'metform/v1/forms/views/')
221
+ ));
222
+
223
+ do_action('metform/onload/enqueue_scripts');
224
+ }
225
+
226
+ public function edit_view_scripts(){
227
+ wp_enqueue_style('metform-ui', $this->public_url().'assets/css/metform-ui.css', false, $this->version());
228
+ wp_enqueue_style('metform-admin-style', $this->public_url().'assets/css/admin-style.css', false, null);
229
+
230
+
231
+ wp_enqueue_script('metform-ui', $this->public_url().'assets/js/ui.min.js', array(), $this->version(), true);
232
+ wp_enqueue_script('metform-admin-script', $this->public_url().'assets/js/admin-script.js', array(), null, true);
233
+
234
+ wp_add_inline_script('metform-admin-script', "
235
+ var metform_api = {
236
+ resturl: '". get_rest_url() ."'
237
+ }
238
+ ");
239
+ }
240
+
241
+ public function elementor_js() {
242
+ }
243
+
244
+ public function elementor_css(){
245
+ if('metform-form' == get_post_type()){
246
+ wp_enqueue_style('metform-category-top', $this->public_url().'assets/css/category-top.css', false, $this->version());
247
+ }
248
+ }
249
+
250
+ function js_css_admin(){
251
+
252
+ $screen = get_current_screen();
253
+
254
+ if(in_array($screen->id, ['edit-metform-form','metform_page_mt-form-settings', 'metform-entry', 'metform_page_metform-menu-settings'])){
255
+ wp_enqueue_style('metform-admin-fonts', $this->public_url().'assets/admin-fonts.css', false, $this->version());
256
+ wp_enqueue_style('metform-ui', $this->public_url().'assets/css/metform-ui.css', false, $this->version());
257
+ wp_enqueue_style('metform-admin-style', $this->public_url().'assets/css/admin-style.css', false, null);
258
+
259
+ wp_enqueue_script('metform-ui', $this->public_url().'assets/js/ui.min.js', array(), $this->version(), true);
260
+ wp_enqueue_script('metform-admin-script', $this->public_url().'assets/js/admin-script.js', array(), null, true);
261
+ wp_localize_script('metform-admin-script', 'metform_api', array('resturl' => get_rest_url(), 'admin_url' => get_admin_url()));
262
+ }
263
+
264
+ if($screen->id == 'edit-metform-entry' || $screen->id == 'metform-entry'){
265
+ wp_enqueue_style('metform-ui', $this->public_url().'assets/css/metform-ui.css', false, $this->version());
266
+ wp_enqueue_script('metform-entry-script', $this->public_url().'assets/js/admin-entry-script.js', array(), $this->version(), true);
267
+ }
268
+
269
+ }
270
+
271
+ public function footer_data(){
272
+
273
+ $screen = get_current_screen();
274
+
275
+ if($screen->id == 'edit-metform-entry'){
276
+ $args = array(
277
+ 'post_type' => 'metform-form',
278
+ 'post_status' => 'publish',
279
+ );
280
+
281
+ $forms = get_posts( $args );
282
+
283
+ $get_form_id = isset($_GET['form_id']) ? sanitize_key($_GET['form_id']) : '';
284
+ ?>
285
+ <div id='metform-formlist' style='display:none;'><select name='form_id' id='metform-form_id'>
286
+ <option value='all' <?php echo esc_attr(((($get_form_id == 'all') || ($get_form_id == '')) ? 'selected=selected' : '')); ?>>All</option>
287
+ <?php
288
+
289
+ foreach($forms as $form){
290
+ $form_list[$form->ID] = $form->post_title;
291
+ ?>
292
+ <option value="<?php echo esc_attr($form->ID); ?>" <?php echo esc_attr(($get_form_id == $form->ID) ? 'selected=selected' : ''); ?> ><?php echo esc_html($form->post_title); ?></option>
293
+ <?php
294
+ }
295
+ echo "</select></div>";
296
+ }
297
+ }
298
+
299
+ function admin_menu() {
300
+ add_menu_page(
301
+ esc_html__('MetForm'),
302
+ esc_html__('MetForm'),
303
+ 'read',
304
+ 'metform-menu',
305
+ '',
306
+ 'dashicons-feedback',
307
+ 5
308
+ );
309
+ }
310
+
311
+ public function missing_elementor() {
312
+ if ( isset( $_GET['activate'] ) ) {
313
+ unset( $_GET['activate'] );
314
+ }
315
+
316
+ if ( file_exists( WP_PLUGIN_DIR . '/elementor/elementor.php' ) ) {
317
+ $btn['label'] = esc_html__('Activate Elementor', 'metform');
318
+ $btn['url'] = wp_nonce_url( 'plugins.php?action=activate&plugin=elementor/elementor.php&plugin_status=all&paged=1', 'activate-plugin_elementor/elementor.php' );
319
+ } else {
320
+ $btn['label'] = esc_html__('Install Elementor', 'metform');
321
+ $btn['url'] = wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=elementor' ), 'install-plugin_elementor' );
322
+ }
323
+
324
+ Utils\Notice::push(
325
+ [
326
+ 'id' => 'unsupported-elementor-version',
327
+ 'type' => 'error',
328
+ 'dismissible' => true,
329
+ 'btn' => $btn,
330
+ 'message' => sprintf( esc_html__( 'MetForm requires Elementor version %1$s+, which is currently NOT RUNNING.', 'metform' ), '2.6.0' ),
331
+ ]
332
+ );
333
+ }
334
+
335
+ public function available_metform_pro() {
336
+ if ( isset( $_GET['activate'] ) ) {
337
+ unset( $_GET['activate'] );
338
+ }
339
+
340
+ $btn['label'] = esc_html__('MetForm Pro', 'metform');
341
+ $btn['url'] = esc_url( 'https://products.wpmet.com/metform/');
342
+
343
+ if(!$this->should_show_pro_banner())
344
+ return;
345
+
346
+ Utils\Notice::push(
347
+ [
348
+ 'id' => 'unsupported-metform-pro-version',
349
+ 'type' => 'success',
350
+ 'dismissible' => true,
351
+ 'btn' => $btn,
352
+ 'message' => sprintf( esc_html__( 'We have MetForm Pro version. Check out our pro feature.', 'metform' ), '2.6.0' ),
353
+ ]
354
+ );
355
+ }
356
+
357
+ /**
358
+ * Check the admin screen and show the pro banner if eligible
359
+ */
360
+ public function should_show_pro_banner() {
361
+ $current_screen = (get_current_screen())->base;
362
+ $current_post_type = ( get_current_screen())->post_type;
363
+ $eligible_post_type = ['metform-form','metform-entry'];
364
+ $eligible_screens = ['plugins','dashboard','metform_page_metform-menu-settings','themes'];
365
+
366
+ if(in_array($current_post_type,$eligible_post_type))
367
+ return true;
368
+
369
+ if(in_array($current_screen,$eligible_screens))
370
+ return true;
371
+
372
+ return false;
373
+ }
374
+
375
+ public function failed_elementor_version(){
376
+
377
+ $btn['label'] = esc_html__('Update Elementor', 'metform');
378
+ $btn['url'] = wp_nonce_url( self_admin_url( 'update.php?action=upgrade-plugin&plugin=elementor' ), 'upgrade-plugin_elementor' );
379
+
380
+ Utils\Notice::push(
381
+ [
382
+ 'id' => 'unsupported-elementor-version',
383
+ 'type' => 'error',
384
+ 'dismissible' => true,
385
+ 'btn' => $btn,
386
+ 'message' => sprintf( esc_html__( 'MetForm requires Elementor version %1$s+, which is currently NOT RUNNING.', 'metform' ), '2.6.0' ),
387
+ ]
388
+ );
389
+ }
390
+
391
+ public function flush_rewrites(){
392
+ $form_cpt = new Core\Forms\Cpt();
393
+ $form_cpt->flush_rewrites();
394
+ }
395
+
396
+ public static function instance(){
397
+ if (!self::$instance){
398
+ self::$instance = new self();
399
+ }
400
+ return self::$instance;
401
+ }
402
+
403
+ }
public/assets/admin-fonts.css CHANGED
@@ -1,2747 +1,2747 @@
1
- @font-face {
2
- font-family: 'metform';
3
- src:
4
- url('fonts/metform.ttf?eis82y') format('truetype'),
5
- url('fonts/metform.woff?eis82y') format('woff'),
6
- url('fonts/metform.svg?eis82y#metform') format('svg');
7
- font-weight: normal;
8
- font-style: normal;
9
- font-display: block;
10
- }
11
-
12
- .mf {
13
- /* use !important to prevent issues with browser extensions that change fonts */
14
- font-family: 'metform' !important;
15
- speak: none;
16
- font-style: normal;
17
- font-weight: normal;
18
- font-variant: normal;
19
- text-transform: none;
20
- line-height: 1;
21
-
22
- /* Better Font Rendering =========== */
23
- -webkit-font-smoothing: antialiased;
24
- -moz-osx-font-smoothing: grayscale;
25
- }
26
-
27
- .mf-icon-checked-fillpng:before {
28
- content: "\e9c8";
29
- }
30
- .mf-question:before {
31
- content: "\eb1e";
32
- }
33
- .mf-home:before {
34
- content: "\e800";
35
- }
36
- .mf-apartment1:before {
37
- content: "\e801";
38
- }
39
- .mf-pencil:before {
40
- content: "\e802";
41
- }
42
- .mf-magic-wand:before {
43
- content: "\e803";
44
- }
45
- .mf-drop:before {
46
- content: "\e804";
47
- }
48
- .mf-lighter:before {
49
- content: "\e805";
50
- }
51
- .mf-poop:before {
52
- content: "\e806";
53
- }
54
- .mf-sun:before {
55
- content: "\e807";
56
- }
57
- .mf-moon:before {
58
- content: "\e808";
59
- }
60
- .mf-cloud1:before {
61
- content: "\e809";
62
- }
63
- .mf-cloud-upload:before {
64
- content: "\e80a";
65
- }
66
- .mf-cloud-download:before {
67
- content: "\e80b";
68
- }
69
- .mf-cloud-sync:before {
70
- content: "\e80c";
71
- }
72
- .mf-cloud-check:before {
73
- content: "\e80d";
74
- }
75
- .mf-database1:before {
76
- content: "\e80e";
77
- }
78
- .mf-lock:before {
79
- content: "\e80f";
80
- }
81
- .mf-cog:before {
82
- content: "\e810";
83
- }
84
- .mf-trash:before {
85
- content: "\e811";
86
- }
87
- .mf-dice:before {
88
- content: "\e812";
89
- }
90
- .mf-heart1:before {
91
- content: "\e813";
92
- }
93
- .mf-star1:before {
94
- content: "\e814";
95
- }
96
- .mf-star-half:before {
97
- content: "\e815";
98
- }
99
- .mf-star-empty:before {
100
- content: "\e816";
101
- }
102
- .mf-flag:before {
103
- content: "\e817";
104
- }
105
- .mf-envelope1:before {
106
- content: "\e818";
107
- }
108
- .mf-paperclip:before {
109
- content: "\e819";
110
- }
111
- .mf-inbox:before {
112
- content: "\e81a";
113
- }
114
- .mf-eye:before {
115
- content: "\e81b";
116
- }
117
- .mf-printer:before {
118
- content: "\e81c";
119
- }
120
- .mf-file-empty:before {
121
- content: "\e81d";
122
- }
123
- .mf-file-add:before {
124
- content: "\e81e";
125
- }
126
- .mf-enter:before {
127
- content: "\e81f";
128
- }
129
- .mf-exit:before {
130
- content: "\e820";
131
- }
132
- .mf-graduation-hat:before {
133
- content: "\e821";
134
- }
135
- .mf-license:before {
136
- content: "\e822";
137
- }
138
- .mf-music-note:before {
139
- content: "\e823";
140
- }
141
- .mf-film-play:before {
142
- content: "\e824";
143
- }
144
- .mf-camera-video:before {
145
- content: "\e825";
146
- }
147
- .mf-camera:before {
148
- content: "\e826";
149
- }
150
- .mf-picture:before {
151
- content: "\e827";
152
- }
153
- .mf-book:before {
154
- content: "\e828";
155
- }
156
- .mf-bookmark:before {
157
- content: "\e829";
158
- }
159
- .mf-user:before {
160
- content: "\e82a";
161
- }
162
- .mf-users:before {
163
- content: "\e82b";
164
- }
165
- .mf-shirt:before {
166
- content: "\e82c";
167
- }
168
- .mf-store:before {
169
- content: "\e82d";
170
- }
171
- .mf-cart2:before {
172
- content: "\e82e";
173
- }
174
- .mf-tag:before {
175
- content: "\e82f";
176
- }
177
- .mf-phone-handset:before {
178
- content: "\e830";
179
- }
180
- .mf-phone:before {
181
- content: "\e831";
182
- }
183
- .mf-pushpin:before {
184
- content: "\e832";
185
- }
186
- .mf-map-marker:before {
187
- content: "\e833";
188
- }
189
- .mf-map:before {
190
- content: "\e834";
191
- }
192
- .mf-location:before {
193
- content: "\e835";
194
- }
195
- .mf-calendar-full:before {
196
- content: "\e836";
197
- }
198
- .mf-keyboard:before {
199
- content: "\e837";
200
- }
201
- .mf-spell-check:before {
202
- content: "\e838";
203
- }
204
- .mf-screen:before {
205
- content: "\e839";
206
- }
207
- .mf-smartphone:before {
208
- content: "\e83a";
209
- }
210
- .mf-tablet:before {
211
- content: "\e83b";
212
- }
213
- .mf-laptop:before {
214
- content: "\e83c";
215
- }
216
- .mf-laptop-phone:before {
217
- content: "\e83d";
218
- }
219
- .mf-power-switch:before {
220
- content: "\e83e";
221
- }
222
- .mf-bubble:before {
223
- content: "\e83f";
224
- }
225
- .mf-heart-pulse:before {
226
- content: "\e840";
227
- }
228
- .mf-construction:before {
229
- content: "\e841";
230
- }
231
- .mf-pie-chart:before {
232
- content: "\e842";
233
- }
234
- .mf-chart-bars:before {
235
- content: "\e843";
236
- }
237
- .mf-gift1:before {
238
- content: "\e844";
239
- }
240
- .mf-diamond1:before {
241
- content: "\e845";
242
- }
243
- .mf-dinner:before {
244
- content: "\e847";
245
- }
246
- .mf-coffee-cup:before {
247
- content: "\e848";
248
- }
249
- .mf-leaf:before {
250
- content: "\e849";
251
- }
252
- .mf-paw:before {
253
- content: "\e84a";
254
- }
255
- .mf-rocket:before {
256
- content: "\e84b";
257
- }
258
- .mf-briefcase:before {
259
- content: "\e84c";
260
- }
261
- .mf-bus:before {
262
- content: "\e84d";
263
- }
264
- .mf-car1:before {
265
- content: "\e84e";
266
- }
267
- .mf-train:before {
268
- content: "\e84f";
269
- }
270
- .mf-bicycle:before {
271
- content: "\e850";
272
- }
273
- .mf-wheelchair:before {
274
- content: "\e851";
275
- }
276
- .mf-select:before {
277
- content: "\e852";
278
- }
279
- .mf-earth:before {
280
- content: "\e853";
281
- }
282
- .mf-smile:before {
283
- content: "\e854";
284
- }
285
- .mf-sad:before {
286
- content: "\e855";
287
- }
288
- .mf-neutral:before {
289
- content: "\e856";
290
- }
291
- .mf-mustache:before {
292
- content: "\e857";
293
- }
294
- .mf-alarm:before {
295
- content: "\e858";
296
- }
297
- .mf-bullhorn:before {
298
- content: "\e859";
299
- }
300
- .mf-volume-high:before {
301
- content: "\e85a";
302
- }
303
- .mf-volume-medium:before {
304
- content: "\e85b";
305
- }
306
- .mf-volume-low:before {
307
- content: "\e85c";
308
- }
309
- .mf-volume:before {
310
- content: "\e85d";
311
- }
312
- .mf-mic:before {
313
- content: "\e85e";
314
- }
315
- .mf-hourglass:before {
316
- content: "\e85f";
317
- }
318
- .mf-undo:before {
319
- content: "\e860";
320
- }
321
- .mf-redo:before {
322
- content: "\e861";
323
- }
324
- .mf-sync:before {
325
- content: "\e862";
326
- }
327
- .mf-history:before {
328
- content: "\e863";
329
- }
330
- .mf-clock1:before {
331
- content: "\e864";
332
- }
333
- .mf-download:before {
334
- content: "\e865";
335
- }
336
- .mf-upload:before {
337
- content: "\e866";
338
- }
339
- .mf-enter-down:before {
340
- content: "\e867";
341
- }
342
- .mf-exit-up:before {
343
- content: "\e868";
344
- }
345
- .mf-bug:before {
346
- content: "\e869";
347
- }
348
- .mf-code:before {
349
- content: "\e86a";
350
- }
351
- .mf-link:before {
352
- content: "\e86b";
353
- }
354
- .mf-unlink:before {
355
- content: "\e86c";
356
- }
357
- .mf-thumbs-up:before {
358
- content: "\e86d";
359
- }
360
- .mf-thumbs-down:before {
361
- content: "\e86e";
362
- }
363
- .mf-magnifier:before {
364
- content: "\e86f";
365
- }
366
- .mf-cross:before {
367
- content: "\e870";
368
- }
369
- .mf-chevron-up:before {
370
- content: "\e873";
371
- }
372
- .mf-chevron-down:before {
373
- content: "\e874";
374
- }
375
- .mf-chevron-left:before {
376
- content: "\e875";
377
- }
378
- .mf-chevron-right:before {
379
- content: "\e876";
380
- }
381
- .mf-arrow-up:before {
382
- content: "\e877";
383
- }
384
- .mf-arrow-down:before {
385
- content: "\e878";
386
- }
387
- .mf-arrow-left:before {
388
- content: "\e879";
389
- }
390
- .mf-arrow-right:before {
391
- content: "\e87a";
392
- }
393
- .mf-right-arrow:before {
394
- content: "\e9c5";
395
- }
396
- .mf-left-arrow:before {
397
- content: "\e94a";
398
- }
399
- .mf-download-arrow:before {
400
- content: "\e94b";
401
- }
402
- .mf-up-arrow:before {
403
- content: "\e9c3";
404
- }
405
- .mf-arrows:before {
406
- content: "\e9c4";
407
- }
408
- .mf-double-angle-pointing-to-right:before {
409
- content: "\e949";
410
- }
411
- .mf-double-left-chevron:before {
412
- content: "\e948";
413
- }
414
- .mf-left-arrow2:before {
415
- content: "\e94c";
416
- }
417
- .mf-right-arrow2:before {
418
- content: "\e94d";
419
- }
420
- .mf-warning:before {
421
- content: "\e87c";
422
- }
423
- .mf-down-arrow1:before {
424
- content: "\e994";
425
- }
426
- .mf-up-arrow1:before {
427
- content: "\e995";
428
- }
429
- .mf-right-arrow1:before {
430
- content: "\e996";
431
- }
432
- .mf-left-arrows:before {
433
- content: "\e997";
434
- }
435
- .mf-question-circle:before {
436
- content: "\e87d";
437
- }
438
- .mf-menu-circle:before {
439
- content: "\e87e";
440
- }
441
- .mf-checkmark-circle:before {
442
- content: "\e87f";
443
- }
444
- .mf-cross-circle:before {
445
- content: "\e880";
446
- }
447
- .mf-plus-circle:before {
448
- content: "\e881";
449
- }
450
- .mf-move:before {
451
- content: "\e87b";
452
- }
453
- .mf-circle-minus:before {
454
- content: "\e882";
455
- }
456
- .mf-arrow-up-circle:before {
457
- content: "\e883";
458
- }
459
- .mf-arrow-down-circle:before {
460
- content: "\e884";
461
- }
462
- .mf-arrow-left-circle:before {
463
- content: "\e885";
464
- }
465
- .mf-arrow-right-circle:before {
466
- content: "\e886";
467
- }
468
- .mf-chevron-up-circle:before {
469
- content: "\e887";
470
- }
471
- .mf-chevron-down-circle:before {
472
- content: "\e888";
473
- }
474
- .mf-chevron-left-circle:before {
475
- content: "\e889";
476
- }
477
- .mf-chevron-right-circle:before {
478
- content: "\e88a";
479
- }
480
- .mf-crop:before {
481
- content: "\e88b";
482
- }
483
- .mf-frame-expand:before {
484
- content: "\e88c";
485
- }
486
- .mf-frame-contract:before {
487
- content: "\e88d";
488
- }
489
- .mf-layers:before {
490
- content: "\e88e";
491
- }
492
- .mf-funnel:before {
493
- content: "\e88f";
494
- }
495
- .mf-text-format:before {
496
- content: "\e890";
497
- }
498
- .mf-text-size:before {
499
- content: "\e892";
500
- }
501
- .mf-bold:before {
502
- content: "\e893";
503
- }
504
- .mf-italic:before {
505
- content: "\e894";
506
- }
507
- .mf-underline:before {
508
- content: "\e895";
509
- }
510
- .mf-strikethrough:before {
511
- content: "\e896";
512
- }
513
- .mf-highlight:before {
514
- content: "\e897";
515
- }
516
- .mf-text-align-left:before {
517
- content: "\e898";
518
- }
519
- .mf-text-align-center:before {
520
- content: "\e899";
521
- }
522
- .mf-text-align-right:before {
523
- content: "\e89a";
524
- }
525
- .mf-text-align-justify:before {
526
- content: "\e89b";
527
- }
528
- .mf-line-spacing:before {
529
- content: "\e89c";
530
- }
531
- .mf-indent-increase:before {
532
- content: "\e89d";
533
- }
534
- .mf-indent-decrease:before {
535
- content: "\e89e";
536
- }
537
- .mf-page-break:before {
538
- content: "\e8a2";
539
- }
540
- .mf-hand:before {
541
- content: "\e8a5";
542
- }
543
- .mf-pointer-up:before {
544
- content: "\e8a6";
545
- }
546
- .mf-pointer-right:before {
547
- content: "\e8a7";
548
- }
549
- .mf-pointer-down:before {
550
- content: "\e8a8";
551
- }
552
- .mf-pointer-left:before {
553
- content: "\e8a9";
554
- }
555
- .mf-burger:before {
556
- content: "\e94e";
557
- }
558
- .mf-cakes:before {
559
- content: "\e94f";
560
- }
561
- .mf-cheese:before {
562
- content: "\e950";
563
- }
564
- .mf-drink-glass:before {
565
- content: "\e951";
566
- }
567
- .mf-pizza:before {
568
- content: "\e952";
569
- }
570
- .mf-vplay:before {
571
- content: "\e953";
572
- }
573
- .mf-newsletter:before {
574
- content: "\e954";
575
- }
576
- .mf-coins-2:before {
577
- content: "\e955";
578
- }
579
- .mf-commerce-2:before {
580
- content: "\e956";
581
- }
582
- .mf-monitor:before {
583
- content: "\e957";
584
- }
585
- .mf-business:before {
586
- content: "\e958";
587
- }
588
- .mf-graphic-2:before {
589
- content: "\e959";
590
- }
591
- .mf-commerce-1:before {
592
- content: "\e95a";
593
- }
594
- .mf-hammer:before {
595
- content: "\e95b";
596
- }
597
- .mf-justice-1:before {
598
- content: "\e95c";
599
- }
600
- .mf-line:before {
601
- content: "\e95d";
602
- }
603
- .mf-money-3:before {
604
- content: "\e95e";
605
- }
606
- .mf-commerce:before {
607
- content: "\e95f";
608
- }
609
- .mf-agenda:before {
610
- content: "\e960";
611
- }
612
- .mf-justice:before {
613
- content: "\e961";
614
- }
615
- .mf-technology:before {
616
- content: "\e962";
617
- }
618
- .mf-coins-1:before {
619
- content: "\e963";
620
- }
621
- .mf-bank:before {
622
- content: "\e964";
623
- }
624
- .mf-calculator:before {
625
- content: "\e965";
626
- }
627
- .mf-soundcloud:before {
628
- content: "\e966";
629
- }
630
- .mf-chart2:before {
631
- content: "\e967";
632
- }
633
- .mf-checked:before {
634
- content: "\e968";
635
- }
636
- .mf-clock11:before {
637
- content: "\e969";
638
- }
639
- .mf-comment2:before {
640
- content: "\e96a";
641
- }
642
- .mf-comments:before {
643
- content: "\e96b";
644
- }
645
- .mf-consult:before {
646
- content: "\e96c";
647
- }
648
- .mf-consut2:before {
649
- content: "\e96d";
650
- }
651
- .mf-deal:before {
652
- content: "\e96e";
653
- }
654
- .mf-envelope11:before {
655
- content: "\e96f";
656
- }
657
- .mf-folder:before {
658
- content: "\e970";
659
- }
660
- .mf-folder2:before {
661
- content: "\ea6a";
662
- }
663
- .mf-invest:before {
664
- content: "\e971";
665
- }
666
- .mf-loan:before {
667
- content: "\e972";
668
- }
669
- .mf-menu1:before {
670
- content: "\e871";
671
- }
672
- .mf-list1:before {
673
- content: "\e872";
674
- }
675
- .mf-map-marker1:before {
676
- content: "\e973";
677
- }
678
- .mf-mutual-fund:before {
679
- content: "\e974";
680
- }
681
- .mf-google-plus:before {
682
- content: "\e975";
683
- }
684
- .mf-phone1:before {
685
- content: "\e976";
686
- }
687
- .mf-pie-chart1:before {
688
- content: "\e977";
689
- }
690
- .mf-play:before {
691
- content: "\e978";
692
- }
693
- .mf-savings:before {
694
- content: "\e979";
695
- }
696
- .mf-search2:before {
697
- content: "\e97a";
698
- }
699
- .mf-tag1:before {
700
- content: "\e97b";
701
- }
702
- .mf-tags:before {
703
- content: "\e97c";
704
- }
705
- .mf-instagram1:before {
706
- content: "\e97d";
707
- }
708
- .mf-quote:before {
709
- content: "\e97e";
710
- }
711
- .mf-arrow-point-to-down:before {
712
- content: "\e97f";
713
- }
714
- .mf-play-button:before {
715
- content: "\e980";
716
- }
717
- .mf-minus:before {
718
- content: "\e981";
719
- }
720
- .mf-plus:before {
721
- content: "\e982";
722
- }
723
- .mf-tick:before {
724
- content: "\e983";
725
- }
726
- .mf-check:before {
727
- content: "\eaaf";
728
- }
729
- .mf-edit:before {
730
- content: "\e984";
731
- }
732
- .mf-reply:before {
733
- content: "\e985";
734
- }
735
- .mf-cogwheel-outline:before {
736
- content: "\e986";
737
- }
738
- .mf-abacus:before {
739
- content: "\e987";
740
- }
741
- .mf-abacus1:before {
742
- content: "\e988";
743
- }
744
- .mf-agenda1:before {
745
- content: "\e989";
746
- }
747
- .mf-shopping-basket:before {
748
- content: "\e98a";
749
- }
750
- .mf-users1:before {
751
- content: "\e98b";
752
- }
753
- .mf-man:before {
754
- content: "\e98c";
755
- }
756
- .mf-support1:before {
757
- content: "\e98d";
758
- }
759
- .mf-favorites:before {
760
- content: "\e98e";
761
- }
762
- .mf-calendar:before {
763
- content: "\e98f";
764
- }
765
- .mf-paper-plane:before {
766
- content: "\e990";
767
- }
768
- .mf-placeholder:before {
769
- content: "\e991";
770
- }
771
- .mf-phone-call:before {
772
- content: "\e992";
773
- }
774
- .mf-contact:before {
775
- content: "\e993";
776
- }
777
- .mf-email:before {
778
- content: "\e998";
779
- }
780
- .mf-internet:before {
781
- content: "\e999";
782
- }
783
- .mf-quote1:before {
784
- content: "\e99a";
785
- }
786
- .mf-medical:before {
787
- content: "\e99b";
788
- }
789
- .mf-eye1:before {
790
- content: "\e99c";
791
- }
792
- .mf-full-screen:before {
793
- content: "\e99d";
794
- }
795
- .mf-tools:before {
796
- content: "\e99e";
797
- }
798
- .mf-pie-chart2:before {
799
- content: "\e99f";
800
- }
801
- .mf-diamond11:before {
802
- content: "\e9a0";
803
- }
804
- .mf-valentines-heart:before {
805
- content: "\e9a1";
806
- }
807
- .mf-like:before {
808
- content: "\e9a2";
809
- }
810
- .mf-team:before {
811
- content: "\e9a3";
812
- }
813
- .mf-tshirt:before {
814
- content: "\e9a4";
815
- }
816
- .mf-cancel:before {
817
- content: "\e9a5";
818
- }
819
- .mf-drink:before {
820
- content: "\e9a6";
821
- }
822
- .mf-home1:before {
823
- content: "\e9a7";
824
- }
825
- .mf-music:before {
826
- content: "\e9a8";
827
- }
828
- .mf-rich:before {
829
- content: "\e9a9";
830
- }
831
- .mf-brush:before {
832
- content: "\e9aa";
833
- }
834
- .mf-opposite-way:before {
835
- content: "\e9ab";
836
- }
837
- .mf-cloud-computing1:before {
838
- content: "\e9ac";
839
- }
840
- .mf-technology-1:before {
841
- content: "\e9ad";
842
- }
843
- .mf-rotate:before {
844
- content: "\e9ae";
845
- }
846
- .mf-medical1:before {
847
- content: "\e9af";
848
- }
849
- .mf-flash-1:before {
850
- content: "\e9b0";
851
- }
852
- .mf-flash:before {
853
- content: "\e9b1";
854
- }
855
- .mf-uturn:before {
856
- content: "\e9b2";
857
- }
858
- .mf-down-arrow:before {
859
- content: "\e9b3";
860
- }
861
- .mf-hours-support:before {
862
- content: "\e9b4";
863
- }
864
- .mf-bag:before {
865
- content: "\e9b5";
866
- }
867
- .mf-photo-camera:before {
868
- content: "\e9b6";
869
- }
870
- .mf-school:before {
871
- content: "\e9b7";
872
- }
873
- .mf-settings:before {
874
- content: "\e9b8";
875
- }
876
- .mf-smartphone1:before {
877
- content: "\e9b9";
878
- }
879
- .mf-technology-11:before {
880
- content: "\e9ba";
881
- }
882
- .mf-tool:before {
883
- content: "\e9bb";
884
- }
885
- .mf-business1:before {
886
- content: "\e9bc";
887
- }
888
- .mf-shuffle-arrow:before {
889
- content: "\e9bd";
890
- }
891
- .mf-van-1:before {
892
- content: "\e9be";
893
- }
894
- .mf-van:before {
895
- content: "\e9bf";
896
- }
897
- .mf-vegetables:before {
898
- content: "\e9c0";
899
- }
900
- .mf-women:before {
901
- content: "\e9c1";
902
- }
903
- .mf-vintage:before {
904
- content: "\e9c2";
905
- }
906
- .mf-team-1:before {
907
- content: "\e9c6";
908
- }
909
- .mf-team1:before {
910
- content: "\e9c7";
911
- }
912
- .mf-apple:before {
913
- content: "\e9c9";
914
- }
915
- .mf-watch:before {
916
- content: "\e9ca";
917
- }
918
- .mf-cogwheel:before {
919
- content: "\e9cb";
920
- }
921
- .mf-light-bulb:before {
922
- content: "\e9cc";
923
- }
924
- .mf-light-bulb-1:before {
925
- content: "\e9cd";
926
- }
927
- .mf-heart-shape-outline:before {
928
- content: "\e9ce";
929
- }
930
- .mf-online-shopping-cart:before {
931
- content: "\e9cf";
932
- }
933
- .mf-shopping-cart1:before {
934
- content: "\e9d0";
935
- }
936
- .mf-star2:before {
937
- content: "\e9d1";
938
- }
939
- .mf-star-1:before {
940
- content: "\e9d2";
941
- }
942
- .mf-favorite1:before {
943
- content: "\e9d3";
944
- }
945
- .mf-agenda2:before {
946
- content: "\e9d4";
947
- }
948
- .mf-agenda-1:before {
949
- content: "\e9d5";
950
- }
951
- .mf-alarm-clock:before {
952
- content: "\e9d6";
953
- }
954
- .mf-alarm-clock1:before {
955
- content: "\e9d7";
956
- }
957
- .mf-atomic:before {
958
- content: "\e9d8";
959
- }
960
- .mf-auction:before {
961
- content: "\e9d9";
962
- }
963
- .mf-balance:before {
964
- content: "\e9da";
965
- }
966
- .mf-balance1:before {
967
- content: "\e9db";
968
- }
969
- .mf-bank1:before {
970
- content: "\e9dc";
971
- }
972
- .mf-bar-chart:before {
973
- content: "\e9dd";
974
- }
975
- .mf-barrier:before {
976
- content: "\e9de";
977
- }
978
- .mf-battery:before {
979
- content: "\e9df";
980
- }
981
- .mf-battery-1:before {
982
- content: "\e9e0";
983
- }
984
- .mf-bell:before {
985
- content: "\e9e1";
986
- }
987
- .mf-bluetooth:before {
988
- content: "\e9e2";
989
- }
990
- .mf-book1:before {
991
- content: "\e9e3";
992
- }
993
- .mf-briefcase1:before {
994
- content: "\e9e4";
995
- }
996
- .mf-briefcase-1:before {
997
- content: "\e9e5";
998
- }
999
- .mf-briefcase-2:before {
1000
- content: "\e9e6";
1001
- }
1002
- .mf-calculator1:before {
1003
- content: "\e9e7";
1004
- }
1005
- .mf-calculator2:before {
1006
- content: "\e9e8";
1007
- }
1008
- .mf-calculator-1:before {
1009
- content: "\e9e9";
1010
- }
1011
- .mf-calendar1:before {
1012
- content: "\e9ea";
1013
- }
1014
- .mf-calendar2:before {
1015
- content: "\e9eb";
1016
- }
1017
- .mf-calendar-1:before {
1018
- content: "\e9ec";
1019
- }
1020
- .mf-calendar-page-empty:before {
1021
- content: "\eaac";
1022
- }
1023
- .mf-calendar3:before {
1024
- content: "\eb9c";
1025
- }
1026
- .mf-car11:before {
1027
- content: "\e9ed";
1028
- }
1029
- .mf-carrier:before {
1030
- content: "\e9ee";
1031
- }
1032
- .mf-cash:before {
1033
- content: "\e9ef";
1034
- }
1035
- .mf-chat:before {
1036
- content: "\e9f0";
1037
- }
1038
- .mf-chat-1:before {
1039
- content: "\e9f1";
1040
- }
1041
- .mf-checked1:before {
1042
- content: "\e9f2";
1043
- }
1044
- .mf-clip:before {
1045
- content: "\e9f3";
1046
- }
1047
- .mf-clip1:before {
1048
- content: "\e9f4";
1049
- }
1050
- .mf-clipboard1:before {
1051
- content: "\e9f5";
1052
- }
1053
- .mf-clipboard11:before {
1054
- content: "\e9f6";
1055
- }
1056
- .mf-clock2:before {
1057
- content: "\e9f7";
1058
- }
1059
- .mf-clock-1:before {
1060
- content: "\e9f8";
1061
- }
1062
- .mf-cloud11:before {
1063
- content: "\e9f9";
1064
- }
1065
- .mf-cloud-computing11:before {
1066
- content: "\e9fa";
1067
- }
1068
- .mf-cloud-computing-1:before {
1069
- content: "\e9fb";
1070
- }
1071
- .mf-cogwheel1:before {
1072
- content: "\e9fc";
1073
- }
1074
- .mf-coins1:before {
1075
- content: "\e9fd";
1076
- }
1077
- .mf-compass:before {
1078
- content: "\e9fe";
1079
- }
1080
- .mf-contract:before {
1081
- content: "\e9ff";
1082
- }
1083
- .mf-conversation:before {
1084
- content: "\ea00";
1085
- }
1086
- .mf-crane1:before {
1087
- content: "\ea01";
1088
- }
1089
- .mf-crane-2:before {
1090
- content: "\ea02";
1091
- }
1092
- .mf-credit-card:before {
1093
- content: "\ea03";
1094
- }
1095
- .mf-credit-card1:before {
1096
- content: "\ea04";
1097
- }
1098
- .mf-cursor:before {
1099
- content: "\ea05";
1100
- }
1101
- .mf-customer-service:before {
1102
- content: "\ea06";
1103
- }
1104
- .mf-cutlery:before {
1105
- content: "\ea07";
1106
- }
1107
- .mf-dart-board:before {
1108
- content: "\ea08";
1109
- }
1110
- .mf-decision-making:before {
1111
- content: "\ea09";
1112
- }
1113
- .mf-desk-chair:before {
1114
- content: "\ea0a";
1115
- }
1116
- .mf-desk-lamp:before {
1117
- content: "\ea0b";
1118
- }
1119
- .mf-diamond2:before {
1120
- content: "\ea0c";
1121
- }
1122
- .mf-direction:before {
1123
- content: "\ea0d";
1124
- }
1125
- .mf-document:before {
1126
- content: "\ea0e";
1127
- }
1128
- .mf-dollar-bill:before {
1129
- content: "\ea0f";
1130
- }
1131
- .mf-download1:before {
1132
- content: "\ea10";
1133
- }
1134
- .mf-edit1:before {
1135
- content: "\ea11";
1136
- }
1137
- .mf-email1:before {
1138
- content: "\ea12";
1139
- }
1140
- .mf-envelope2:before {
1141
- content: "\ea13";
1142
- }
1143
- .mf-envelope3:before {
1144
- content: "\ea14";
1145
- }
1146
- .mf-eraser:before {
1147
- content: "\ea15";
1148
- }
1149
- .mf-eye2:before {
1150
- content: "\ea16";
1151
- }
1152
- .mf-factory:before {
1153
- content: "\ea17";
1154
- }
1155
- .mf-fast-forward:before {
1156
- content: "\ea18";
1157
- }
1158
- .mf-favorites1:before {
1159
- content: "\ea19";
1160
- }
1161
- .mf-file:before {
1162
- content: "\ea1a";
1163
- }
1164
- .mf-file-1:before {
1165
- content: "\ea1b";
1166
- }
1167
- .mf-file-2:before {
1168
- content: "\ea1c";
1169
- }
1170
- .mf-file-3:before {
1171
- content: "\ea1d";
1172
- }
1173
- .mf-filter:before {
1174
- content: "\ea1e";
1175
- }
1176
- .mf-finance-book:before {
1177
- content: "\ea1f";
1178
- }
1179
- .mf-flag1:before {
1180
- content: "\ea20";
1181
- }
1182
- .mf-folder1:before {
1183
- content: "\ea21";
1184
- }
1185
- .mf-folder-1:before {
1186
- content: "\ea22";
1187
- }
1188
- .mf-folders:before {
1189
- content: "\ea23";
1190
- }
1191
- .mf-folders1:before {
1192
- content: "\ea24";
1193
- }
1194
- .mf-gamepad:before {
1195
- content: "\ea25";
1196
- }
1197
- .mf-gift11:before {
1198
- content: "\ea26";
1199
- }
1200
- .mf-growth:before {
1201
- content: "\ea27";
1202
- }
1203
- .mf-heart11:before {
1204
- content: "\ea28";
1205
- }
1206
- .mf-home2:before {
1207
- content: "\ea29";
1208
- }
1209
- .mf-house:before {
1210
- content: "\ea2a";
1211
- }
1212
- .mf-house-1:before {
1213
- content: "\ea2b";
1214
- }
1215
- .mf-house-2:before {
1216
- content: "\ea2c";
1217
- }
1218
- .mf-id-card:before {
1219
- content: "\ea2d";
1220
- }
1221
- .mf-id-card1:before {
1222
- content: "\ea2e";
1223
- }
1224
- .mf-id-card-1:before {
1225
- content: "\ea2f";
1226
- }
1227
- .mf-idea1:before {
1228
- content: "\ea30";
1229
- }
1230
- .mf-image:before {
1231
- content: "\ea31";
1232
- }
1233
- .mf-improvement:before {
1234
- content: "\ea32";
1235
- }
1236
- .mf-inbox1:before {
1237
- content: "\ea33";
1238
- }
1239
- .mf-information:before {
1240
- content: "\ea34";
1241
- }
1242
- .mf-key:before {
1243
- content: "\ea35";
1244
- }
1245
- .mf-key1:before {
1246
- content: "\ea36";
1247
- }
1248
- .mf-laptop1:before {
1249
- content: "\ea37";
1250
- }
1251
- .mf-layers1:before {
1252
- content: "\ea38";
1253
- }
1254
- .mf-light-bulb1:before {
1255
- content: "\ea39";
1256
- }
1257
- .mf-like1:before {
1258
- content: "\ea3a";
1259
- }
1260
- .mf-line-chart1:before {
1261
- content: "\ea3b";
1262
- }
1263
- .mf-mail:before {
1264
- content: "\ea3c";
1265
- }
1266
- .mf-manager:before {
1267
- content: "\ea3d";
1268
- }
1269
- .mf-map1:before {
1270
- content: "\ea3e";
1271
- }
1272
- .mf-medal1:before {
1273
- content: "\ea3f";
1274
- }
1275
- .mf-megaphone:before {
1276
- content: "\ea40";
1277
- }
1278
- .mf-megaphone1:before {
1279
- content: "\ea41";
1280
- }
1281
- .mf-message:before {
1282
- content: "\ea42";
1283
- }
1284
- .mf-message-1:before {
1285
- content: "\ea43";
1286
- }
1287
- .mf-message-2:before {
1288
- content: "\ea44";
1289
- }
1290
- .mf-microphone:before {
1291
- content: "\ea45";
1292
- }
1293
- .mf-money1:before {
1294
- content: "\ea46";
1295
- }
1296
- .mf-money-bag1:before {
1297
- content: "\ea47";
1298
- }
1299
- .mf-monitor1:before {
1300
- content: "\ea48";
1301
- }
1302
- .mf-music1:before {
1303
- content: "\ea49";
1304
- }
1305
- .mf-next:before {
1306
- content: "\ea4a";
1307
- }
1308
- .mf-open-book1:before {
1309
- content: "\ea4b";
1310
- }
1311
- .mf-padlock:before {
1312
- content: "\ea4c";
1313
- }
1314
- .mf-padlock-1:before {
1315
- content: "\ea4d";
1316
- }
1317
- .mf-paint-brush:before {
1318
- content: "\ea4e";
1319
- }
1320
- .mf-pause:before {
1321
- content: "\ea4f";
1322
- }
1323
- .mf-pen:before {
1324
- content: "\ea50";
1325
- }
1326
- .mf-pencil1:before {
1327
- content: "\ea51";
1328
- }
1329
- .mf-percentage:before {
1330
- content: "\ea52";
1331
- }
1332
- .mf-phone-call1:before {
1333
- content: "\ea53";
1334
- }
1335
- .mf-phone-call2:before {
1336
- content: "\ea54";
1337
- }
1338
- .mf-photo-camera1:before {
1339
- content: "\ea55";
1340
- }
1341
- .mf-pie-chart3:before {
1342
- content: "\ea56";
1343
- }
1344
- .mf-pipe:before {
1345
- content: "\ea57";
1346
- }
1347
- .mf-placeholder1:before {
1348
- content: "\ea58";
1349
- }
1350
- .mf-placeholder2:before {
1351
- content: "\ea59";
1352
- }
1353
- .mf-planet-earth:before {
1354
- content: "\ea5a";
1355
- }
1356
- .mf-play-button1:before {
1357
- content: "\ea5b";
1358
- }
1359
- .mf-power-button:before {
1360
- content: "\ea5c";
1361
- }
1362
- .mf-presentation:before {
1363
- content: "\ea5d";
1364
- }
1365
- .mf-presentation1:before {
1366
- content: "\ea5e";
1367
- }
1368
- .mf-printer1:before {
1369
- content: "\ea5f";
1370
- }
1371
- .mf-push-pin:before {
1372
- content: "\ea60";
1373
- }
1374
- .mf-push-pin1:before {
1375
- content: "\ea61";
1376
- }
1377
- .mf-refresh:before {
1378
- content: "\ea62";
1379
- }
1380
- .mf-reload:before {
1381
- content: "\ea63";
1382
- }
1383
- .mf-return:before {
1384
- content: "\ea64";
1385
- }
1386
- .mf-rocket-ship:before {
1387
- content: "\ea65";
1388
- }
1389
- .mf-rss1:before {
1390
- content: "\ea66";
1391
- }
1392
- .mf-safebox:before {
1393
- content: "\ea67";
1394
- }
1395
- .mf-safebox1:before {
1396
- content: "\ea68";
1397
- }
1398
- .mf-settings1:before {
1399
- content: "\ea69";
1400
- }
1401
- .mf-settings-2:before {
1402
- content: "\ea6b";
1403
- }
1404
- .mf-sewing-machine:before {
1405
- content: "\ea6c";
1406
- }
1407
- .mf-share2:before {
1408
- content: "\ea6d";
1409
- }
1410
- .mf-shield1:before {
1411
- content: "\ea6e";
1412
- }
1413
- .mf-shield11:before {
1414
- content: "\ea6f";
1415
- }
1416
- .mf-shopping:before {
1417
- content: "\ea70";
1418
- }
1419
- .mf-shopping-bag:before {
1420
- content: "\ea71";
1421
- }
1422
- .mf-shopping-bag-1:before {
1423
- content: "\ea72";
1424
- }
1425
- .mf-shopping-bag-2:before {
1426
- content: "\ea73";
1427
- }
1428
- .mf-shopping-cart11:before {
1429
- content: "\ea74";
1430
- }
1431
- .mf-shopping-cart2:before {
1432
- content: "\ea75";
1433
- }
1434
- .mf-shopping-cart-1:before {
1435
- content: "\ea76";
1436
- }
1437
- .mf-shopping-cart-2:before {
1438
- content: "\ea77";
1439
- }
1440
- .mf-shopping-cart-3:before {
1441
- content: "\ea78";
1442
- }
1443
- .mf-smartphone2:before {
1444
- content: "\ea79";
1445
- }
1446
- .mf-speaker:before {
1447
- content: "\ea7a";
1448
- }
1449
- .mf-speakers:before {
1450
- content: "\ea7b";
1451
- }
1452
- .mf-stats:before {
1453
- content: "\ea7c";
1454
- }
1455
- .mf-stats-1:before {
1456
- content: "\ea7d";
1457
- }
1458
- .mf-stats-2:before {
1459
- content: "\ea7e";
1460
- }
1461
- .mf-stats-3:before {
1462
- content: "\ea7f";
1463
- }
1464
- .mf-stats-4:before {
1465
- content: "\ea80";
1466
- }
1467
- .mf-stats-5:before {
1468
- content: "\ea81";
1469
- }
1470
- .mf-stats-6:before {
1471
- content: "\ea82";
1472
- }
1473
- .mf-sticky-note:before {
1474
- content: "\ea83";
1475
- }
1476
- .mf-store1:before {
1477
- content: "\ea84";
1478
- }
1479
- .mf-store-1:before {
1480
- content: "\ea85";
1481
- }
1482
- .mf-suitcase:before {
1483
- content: "\ea86";
1484
- }
1485
- .mf-suitcase-1:before {
1486
- content: "\ea87";
1487
- }
1488
- .mf-tag2:before {
1489
- content: "\ea88";
1490
- }
1491
- .mf-target:before {
1492
- content: "\ea89";
1493
- }
1494
- .mf-team2:before {
1495
- content: "\ea8a";
1496
- }
1497
- .mf-tie:before {
1498
- content: "\ea8b";
1499
- }
1500
- .mf-trash1:before {
1501
- content: "\ea8c";
1502
- }
1503
- .mf-trolley:before {
1504
- content: "\ea8d";
1505
- }
1506
- .mf-trolley-1:before {
1507
- content: "\ea8e";
1508
- }
1509
- .mf-trolley-2:before {
1510
- content: "\ea8f";
1511
- }
1512
- .mf-trophy1:before {
1513
- content: "\ea90";
1514
- }
1515
- .mf-truck1:before {
1516
- content: "\ea91";
1517
- }
1518
- .mf-truck-1:before {
1519
- content: "\ea92";
1520
- }
1521
- .mf-truck-2:before {
1522
- content: "\ea93";
1523
- }
1524
- .mf-umbrella:before {
1525
- content: "\ea94";
1526
- }
1527
- .mf-upload1:before {
1528
- content: "\ea95";
1529
- }
1530
- .mf-user1:before {
1531
- content: "\ea96";
1532
- }
1533
- .mf-user-1:before {
1534
- content: "\ea97";
1535
- }
1536
- .mf-user-2:before {
1537
- content: "\ea98";
1538
- }
1539
- .mf-user-3:before {
1540
- content: "\ea99";
1541
- }
1542
- .mf-users2:before {
1543
- content: "\ea9a";
1544
- }
1545
- .mf-video-camera:before {
1546
- content: "\ea9b";
1547
- }
1548
- .mf-voucher:before {
1549
- content: "\ea9c";
1550
- }
1551
- .mf-voucher-1:before {
1552
- content: "\ea9d";
1553
- }
1554
- .mf-voucher-2:before {
1555
- content: "\ea9e";
1556
- }
1557
- .mf-voucher-3:before {
1558
- content: "\ea9f";
1559
- }
1560
- .mf-voucher-4:before {
1561
- content: "\eaa0";
1562
- }
1563
- .mf-wallet:before {
1564
- content: "\eaa1";
1565
- }
1566
- .mf-wallet1:before {
1567
- content: "\eaa2";
1568
- }
1569
- .mf-wifi:before {
1570
- content: "\eaa3";
1571
- }
1572
- .mf-worker:before {
1573
- content: "\eaa4";
1574
- }
1575
- .mf-zoom-in:before {
1576
- content: "\eaa5";
1577
- }
1578
- .mf-zoom-out:before {
1579
- content: "\eaa6";
1580
- }
1581
- .mf-burger-menu:before {
1582
- content: "\eab8";
1583
- }
1584
- .mf-squares:before {
1585
- content: "\eaa7";
1586
- }
1587
- .mf-options:before {
1588
- content: "\eaa8";
1589
- }
1590
- .mf-apps:before {
1591
- content: "\eaa9";
1592
- }
1593
- .mf-menu-11:before {
1594
- content: "\eaaa";
1595
- }
1596
- .mf-menu11:before {
1597
- content: "\eaab";
1598
- }
1599
- .mf-back_up:before {
1600
- content: "\eaad";
1601
- }
1602
- .mf-cart11:before {
1603
- content: "\eaae";
1604
- }
1605
- .mf-checkmark:before {
1606
- content: "\eab0";
1607
- }
1608
- .mf-dollar:before {
1609
- content: "\eab1";
1610
- }
1611
- .mf-domian:before {
1612
- content: "\eab2";
1613
- }
1614
- .mf-hosting1:before {
1615
- content: "\eab3";
1616
- }
1617
- .mf-key2:before {
1618
- content: "\eab4";
1619
- }
1620
- .mf-migration:before {
1621
- content: "\eab5";
1622
- }
1623
- .mf-play1:before {
1624
- content: "\eab6";
1625
- }
1626
- .mf-quote2:before {
1627
- content: "\eab7";
1628
- }
1629
- .mf-api_setup:before {
1630
- content: "\eab9";
1631
- }
1632
- .mf-coin:before {
1633
- content: "\eaba";
1634
- }
1635
- .mf-hand_shake:before {
1636
- content: "\eabb";
1637
- }
1638
- .mf-idea_generate:before {
1639
- content: "\eabc";
1640
- }
1641
- .mf-page_search:before {
1642
- content: "\eabd";
1643
- }
1644
- .mf-pen_shape:before {
1645
- content: "\eabe";
1646
- }
1647
- .mf-pencil_art:before {
1648
- content: "\eabf";
1649
- }
1650
- .mf-review:before {
1651
- content: "\eac0";
1652
- }
1653
- .mf-star:before {
1654
- content: "\eac1";
1655
- }
1656
- .mf-timing:before {
1657
- content: "\eac2";
1658
- }
1659
- .mf-trophy:before {
1660
- content: "\eac3";
1661
- }
1662
- .mf-communication:before {
1663
- content: "\eac4";
1664
- }
1665
- .mf-money-bag2:before {
1666
- content: "\eac5";
1667
- }
1668
- .mf-dentist:before {
1669
- content: "\eac6";
1670
- }
1671
- .mf-bill:before {
1672
- content: "\eac7";
1673
- }
1674
- .mf-label:before {
1675
- content: "\eac8";
1676
- }
1677
- .mf-money:before {
1678
- content: "\eac9";
1679
- }
1680
- .mf-shield:before {
1681
- content: "\eaca";
1682
- }
1683
- .mf-support:before {
1684
- content: "\eacb";
1685
- }
1686
- .mf-one:before {
1687
- content: "\eacc";
1688
- }
1689
- .mf-clock:before {
1690
- content: "\eacd";
1691
- }
1692
- .mf-cart:before {
1693
- content: "\eace";
1694
- }
1695
- .mf-globe:before {
1696
- content: "\eacf";
1697
- }
1698
- .mf-tooth:before {
1699
- content: "\ead0";
1700
- }
1701
- .mf-tooth-1:before {
1702
- content: "\ead1";
1703
- }
1704
- .mf-tooth-2:before {
1705
- content: "\ead2";
1706
- }
1707
- .mf-brain:before {
1708
- content: "\ead3";
1709
- }
1710
- .mf-view:before {
1711
- content: "\ead4";
1712
- }
1713
- .mf-doctor:before {
1714
- content: "\ead5";
1715
- }
1716
- .mf-heart:before {
1717
- content: "\ead6";
1718
- }
1719
- .mf-medicine:before {
1720
- content: "\ead7";
1721
- }
1722
- .mf-stethoscope:before {
1723
- content: "\ead8";
1724
- }
1725
- .mf-hospital:before {
1726
- content: "\ead9";
1727
- }
1728
- .mf-clipboard:before {
1729
- content: "\eada";
1730
- }
1731
- .mf-medicine-1:before {
1732
- content: "\eadb";
1733
- }
1734
- .mf-hospital-1:before {
1735
- content: "\eadc";
1736
- }
1737
- .mf-customer-support:before {
1738
- content: "\eadd";
1739
- }
1740
- .mf-brickwall:before {
1741
- content: "\eade";
1742
- }
1743
- .mf-crane2:before {
1744
- content: "\eadf";
1745
- }
1746
- .mf-valve:before {
1747
- content: "\eae1";
1748
- }
1749
- .mf-safety:before {
1750
- content: "\eae2";
1751
- }
1752
- .mf-energy-saving:before {
1753
- content: "\eae3";
1754
- }
1755
- .mf-paint-roller:before {
1756
- content: "\eae4";
1757
- }
1758
- .mf-paint-brushes:before {
1759
- content: "\eae5";
1760
- }
1761
- .mf-construction-tool-vehicle-with-crane-lifting-materials:before {
1762
- content: "\eae6";
1763
- }
1764
- .mf-trowel:before {
1765
- content: "\eae7";
1766
- }
1767
- .mf-bucket:before {
1768
- content: "\eae8";
1769
- }
1770
- .mf-smart:before {
1771
- content: "\eae9";
1772
- }
1773
- .mf-repair:before {
1774
- content: "\eaea";
1775
- }
1776
- .mf-saw:before {
1777
- content: "\eaeb";
1778
- }
1779
- .mf-cutter:before {
1780
- content: "\eaec";
1781
- }
1782
- .mf-plier:before {
1783
- content: "\eaed";
1784
- }
1785
- .mf-drill:before {
1786
- content: "\eaee";
1787
- }
1788
- .mf-save-money:before {
1789
- content: "\eaef";
1790
- }
1791
- .mf-planting:before {
1792
- content: "\eaf0";
1793
- }
1794
- .mf-line-chart:before {
1795
- content: "\eaf1";
1796
- }
1797
- .mf-open-book:before {
1798
- content: "\eaf2";
1799
- }
1800
- .mf-money-bag3:before {
1801
- content: "\eaf3";
1802
- }
1803
- .mf-server:before {
1804
- content: "\eaf4";
1805
- }
1806
- .mf-server-1:before {
1807
- content: "\eaf5";
1808
- }
1809
- .mf-server-2:before {
1810
- content: "\eaf6";
1811
- }
1812
- .mf-cloud-computing:before {
1813
- content: "\eaf7";
1814
- }
1815
- .mf-cloud:before {
1816
- content: "\eaf8";
1817
- }
1818
- .mf-database:before {
1819
- content: "\eaf9";
1820
- }
1821
- .mf-computer:before {
1822
- content: "\eafa";
1823
- }
1824
- .mf-server-3:before {
1825
- content: "\eafb";
1826
- }
1827
- .mf-server-4:before {
1828
- content: "\eafc";
1829
- }
1830
- .mf-server-5:before {
1831
- content: "\eafd";
1832
- }
1833
- .mf-server-6:before {
1834
- content: "\eafe";
1835
- }
1836
- .mf-server-7:before {
1837
- content: "\eaff";
1838
- }
1839
- .mf-cloud-1:before {
1840
- content: "\eb00";
1841
- }
1842
- .mf-server-8:before {
1843
- content: "\eb01";
1844
- }
1845
- .mf-business-and-finance:before {
1846
- content: "\eb02";
1847
- }
1848
- .mf-cloud-2:before {
1849
- content: "\eb03";
1850
- }
1851
- .mf-server-9:before {
1852
- content: "\eb04";
1853
- }
1854
- .mf-hosting:before {
1855
- content: "\eb05";
1856
- }
1857
- .mf-car:before {
1858
- content: "\eb06";
1859
- }
1860
- .mf-car-frontal-view:before {
1861
- content: "\eb07";
1862
- }
1863
- .mf-car-1:before {
1864
- content: "\eb08";
1865
- }
1866
- .mf-racing:before {
1867
- content: "\eb09";
1868
- }
1869
- .mf-car-wheel:before {
1870
- content: "\eb0a";
1871
- }
1872
- .mf-steering-wheel:before {
1873
- content: "\eb0b";
1874
- }
1875
- .mf-frontal-taxi-cab:before {
1876
- content: "\eb0c";
1877
- }
1878
- .mf-taxi:before {
1879
- content: "\eb0d";
1880
- }
1881
- .mf-cosmetics:before {
1882
- content: "\eb0e";
1883
- }
1884
- .mf-flower:before {
1885
- content: "\eb0f";
1886
- }
1887
- .mf-mirror:before {
1888
- content: "\eb10";
1889
- }
1890
- .mf-itunes:before {
1891
- content: "\eb6b";
1892
- }
1893
- .mf-salon:before {
1894
- content: "\eb11";
1895
- }
1896
- .mf-hair-dryer:before {
1897
- content: "\eb12";
1898
- }
1899
- .mf-shampoo:before {
1900
- content: "\eb13";
1901
- }
1902
- .mf-download-button:before {
1903
- content: "\e90b";
1904
- }
1905
- .mf-list:before {
1906
- content: "\eb14";
1907
- }
1908
- .mf-loupe:before {
1909
- content: "\eb15";
1910
- }
1911
- .mf-search:before {
1912
- content: "\eb16";
1913
- }
1914
- .mf-search-1:before {
1915
- content: "\eb17";
1916
- }
1917
- .mf-shopping-cart:before {
1918
- content: "\eb18";
1919
- }
1920
- .mf-menu:before {
1921
- content: "\eb19";
1922
- }
1923
- .mf-menu-1:before {
1924
- content: "\eb1a";
1925
- }
1926
- .mf-menu-button-of-three-horizontal-lines:before {
1927
- content: "\eb1b";
1928
- }
1929
- .mf-menu-2:before {
1930
- content: "\eb1c";
1931
- }
1932
- .mf-menu-3:before {
1933
- content: "\eb1d";
1934
- }
1935
- .mf-menu-5:before {
1936
- content: "\eb1f";
1937
- }
1938
- .mf-menu-button:before {
1939
- content: "\eb20";
1940
- }
1941
- .mf-list-1:before {
1942
- content: "\eb21";
1943
- }
1944
- .mf-menu-6:before {
1945
- content: "\eb22";
1946
- }
1947
- .mf-menu-7:before {
1948
- content: "\eb23";
1949
- }
1950
- .mf-menu-8:before {
1951
- content: "\eb24";
1952
- }
1953
- .mf-list-2:before {
1954
- content: "\eb25";
1955
- }
1956
- .mf-dot:before {
1957
- content: "\eb26";
1958
- }
1959
- .mf-menu-9:before {
1960
- content: "\eb27";
1961
- }
1962
- .mf-search11:before {
1963
- content: "\eb28";
1964
- }
1965
- .mf-search-minus:before {
1966
- content: "\eb29";
1967
- }
1968
- .mf-search-11:before {
1969
- content: "\eb2a";
1970
- }
1971
- .mf-search-2:before {
1972
- content: "\eb2b";
1973
- }
1974
- .mf-search-3:before {
1975
- content: "\eb2c";
1976
- }
1977
- .mf-magnifying-glass-search:before {
1978
- content: "\eb2d";
1979
- }
1980
- .mf-loupe1:before {
1981
- content: "\eb2e";
1982
- }
1983
- .mf-speed:before {
1984
- content: "\eb2f";
1985
- }
1986
- .mf-search21:before {
1987
- content: "\eb30";
1988
- }
1989
- .mf-search-4:before {
1990
- content: "\eb31";
1991
- }
1992
- .mf-search-5:before {
1993
- content: "\eb32";
1994
- }
1995
- .mf-detective:before {
1996
- content: "\eb33";
1997
- }
1998
- .mf-cart1:before {
1999
- content: "\eb34";
2000
- }
2001
- .mf-buying-on-smartphone:before {
2002
- content: "\eb35";
2003
- }
2004
- .mf-badge:before {
2005
- content: "\eb36";
2006
- }
2007
- .mf-basket1:before {
2008
- content: "\eb37";
2009
- }
2010
- .mf-commerce-and-shopping:before {
2011
- content: "\eb38";
2012
- }
2013
- .mf-comment:before {
2014
- content: "\eb39";
2015
- }
2016
- .mf-comment-1:before {
2017
- content: "\eb3a";
2018
- }
2019
- .mf-share:before {
2020
- content: "\eb3b";
2021
- }
2022
- .mf-share-1:before {
2023
- content: "\eb3c";
2024
- }
2025
- .mf-share-2:before {
2026
- content: "\eb3d";
2027
- }
2028
- .mf-share-3:before {
2029
- content: "\eb3e";
2030
- }
2031
- .mf-comment1:before {
2032
- content: "\eb3f";
2033
- }
2034
- .mf-favorite:before {
2035
- content: "\eb40";
2036
- }
2037
- .mf-retweet:before {
2038
- content: "\eb41";
2039
- }
2040
- .mf-share1:before {
2041
- content: "\eb42";
2042
- }
2043
- .mf-facebook:before {
2044
- content: "\eb43";
2045
- }
2046
- .mf-twitter:before {
2047
- content: "\eb44";
2048
- }
2049
- .mf-linkedin:before {
2050
- content: "\eb45";
2051
- }
2052
- .mf-whatsapp-1:before {
2053
- content: "\eb46";
2054
- }
2055
- .mf-dribbble:before {
2056
- content: "\eb47";
2057
- }
2058
- .mf-facebook-2:before {
2059
- content: "\eb48";
2060
- }
2061
- .mf-twitter1:before {
2062
- content: "\eb49";
2063
- }
2064
- .mf-vk:before {
2065
- content: "\eb4a";
2066
- }
2067
- .mf-youtube-v:before {
2068
- content: "\eb4b";
2069
- }
2070
- .mf-vimeo:before {
2071
- content: "\eae0";
2072
- }
2073
- .mf-youtube:before {
2074
- content: "\eb4c";
2075
- }
2076
- .mf-snapchat-1:before {
2077
- content: "\eb4d";
2078
- }
2079
- .mf-behance:before {
2080
- content: "\eb4e";
2081
- }
2082
- .mf-github:before {
2083
- content: "\eb4f";
2084
- }
2085
- .mf-pinterest:before {
2086
- content: "\eb50";
2087
- }
2088
- .mf-spotify:before {
2089
- content: "\eb51";
2090
- }
2091
- .mf-soundcloud-1:before {
2092
- content: "\eb52";
2093
- }
2094
- .mf-skype-1:before {
2095
- content: "\eb53";
2096
- }
2097
- .mf-rss:before {
2098
- content: "\eb54";
2099
- }
2100
- .mf-reddit-1:before {
2101
- content: "\eb55";
2102
- }
2103
- .mf-dribbble-1:before {
2104
- content: "\eb56";
2105
- }
2106
- .mf-wordpress-1:before {
2107
- content: "\eb57";
2108
- }
2109
- .mf-logo:before {
2110
- content: "\eb58";
2111
- }
2112
- .mf-dropbox-1:before {
2113
- content: "\eb59";
2114
- }
2115
- .mf-blogger-1:before {
2116
- content: "\eb5a";
2117
- }
2118
- .mf-photo:before {
2119
- content: "\eb5b";
2120
- }
2121
- .mf-hangouts:before {
2122
- content: "\eb5c";
2123
- }
2124
- .mf-xing:before {
2125
- content: "\eb5d";
2126
- }
2127
- .mf-myspace:before {
2128
- content: "\eb5e";
2129
- }
2130
- .mf-flickr-1:before {
2131
- content: "\eb5f";
2132
- }
2133
- .mf-envato:before {
2134
- content: "\eb60";
2135
- }
2136
- .mf-picasa-1:before {
2137
- content: "\eb61";
2138
- }
2139
- .mf-wattpad:before {
2140
- content: "\eb62";
2141
- }
2142
- .mf-emoji:before {
2143
- content: "\eb63";
2144
- }
2145
- .mf-deviantart-1:before {
2146
- content: "\eb64";
2147
- }
2148
- .mf-yahoo-1:before {
2149
- content: "\eb65";
2150
- }
2151
- .mf-vine-1:before {
2152
- content: "\eb66";
2153
- }
2154
- .mf-delicious:before {
2155
- content: "\eb67";
2156
- }
2157
- .mf-kickstarter-1:before {
2158
- content: "\eb68";
2159
- }
2160
- .mf-stumbleupon-1:before {
2161
- content: "\eb69";
2162
- }
2163
- .mf-brands-and-logotypes:before {
2164
- content: "\eb6a";
2165
- }
2166
- .mf-instagram-1:before {
2167
- content: "\eb6c";
2168
- }
2169
- .mf-facebook-1:before {
2170
- content: "\eb6d";
2171
- }
2172
- .mf-instagram-2:before {
2173
- content: "\eb6e";
2174
- }
2175
- .mf-twitter-1:before {
2176
- content: "\eb6f";
2177
- }
2178
- .mf-whatsapp-2:before {
2179
- content: "\eb70";
2180
- }
2181
- .mf-youtube-1:before {
2182
- content: "\eb71";
2183
- }
2184
- .mf-linkedin-1:before {
2185
- content: "\eb72";
2186
- }
2187
- .mf-telegram:before {
2188
- content: "\eb73";
2189
- }
2190
- .mf-github-1:before {
2191
- content: "\eb74";
2192
- }
2193
- .mf-vk-1:before {
2194
- content: "\eb75";
2195
- }
2196
- .mf-pinterest-1:before {
2197
- content: "\eb76";
2198
- }
2199
- .mf-rss-1:before {
2200
- content: "\eb77";
2201
- }
2202
- .mf-twitch:before {
2203
- content: "\eb78";
2204
- }
2205
- .mf-snapchat-2:before {
2206
- content: "\eb79";
2207
- }
2208
- .mf-skype-2:before {
2209
- content: "\eb7a";
2210
- }
2211
- .mf-behance-2:before {
2212
- content: "\eb7b";
2213
- }
2214
- .mf-spotify-1:before {
2215
- content: "\eb7c";
2216
- }
2217
- .mf-periscope:before {
2218
- content: "\eb7d";
2219
- }
2220
- .mf-dribbble-2:before {
2221
- content: "\eb7e";
2222
- }
2223
- .mf-tumblr-1:before {
2224
- content: "\eb7f";
2225
- }
2226
- .mf-soundcloud-2:before {
2227
- content: "\eb80";
2228
- }
2229
- .mf-google-drive-1:before {
2230
- content: "\eb81";
2231
- }
2232
- .mf-dropbox-2:before {
2233
- content: "\eb82";
2234
- }
2235
- .mf-reddit-2:before {
2236
- content: "\eb83";
2237
- }
2238
- .mf-html:before {
2239
- content: "\eb84";
2240
- }
2241
- .mf-vimeo-1:before {
2242
- content: "\eb85";
2243
- }
2244
- .mf-hangout:before {
2245
- content: "\eb86";
2246
- }
2247
- .mf-blogger-2:before {
2248
- content: "\eb87";
2249
- }
2250
- .mf-yahoo-2:before {
2251
- content: "\eb88";
2252
- }
2253
- .mf-path:before {
2254
- content: "\eb89";
2255
- }
2256
- .mf-yelp-1:before {
2257
- content: "\eb8a";
2258
- }
2259
- .mf-slideshare:before {
2260
- content: "\eb8b";
2261
- }
2262
- .mf-picasa-2:before {
2263
- content: "\eb8c";
2264
- }
2265
- .mf-myspace-1:before {
2266
- content: "\eb8d";
2267
- }
2268
- .mf-flickr-2:before {
2269
- content: "\eb8e";
2270
- }
2271
- .mf-xing-1:before {
2272
- content: "\eb8f";
2273
- }
2274
- .mf-envato-1:before {
2275
- content: "\eb90";
2276
- }
2277
- .mf-swarm:before {
2278
- content: "\eb91";
2279
- }
2280
- .mf-wattpad-1:before {
2281
- content: "\eb92";
2282
- }
2283
- .mf-foursquare:before {
2284
- content: "\eb93";
2285
- }
2286
- .mf-deviantart-2:before {
2287
- content: "\eb94";
2288
- }
2289
- .mf-kickstarter-2:before {
2290
- content: "\eb95";
2291
- }
2292
- .mf-delicious-1:before {
2293
- content: "\eb96";
2294
- }
2295
- .mf-vine-2:before {
2296
- content: "\eb97";
2297
- }
2298
- .mf-digg:before {
2299
- content: "\eb98";
2300
- }
2301
- .mf-bebo:before {
2302
- content: "\eb99";
2303
- }
2304
- .mf-stumbleupon-2:before {
2305
- content: "\eb9a";
2306
- }
2307
- .mf-forrst:before {
2308
- content: "\eb9b";
2309
- }
2310
- .mf-eye3:before {
2311
- content: "\eb9d";
2312
- }
2313
- .mf-microscope:before {
2314
- content: "\eb9e";
2315
- }
2316
- .mf-Anti-Lock:before {
2317
- content: "\eb9f";
2318
- }
2319
- .mf-apartment:before {
2320
- content: "\eba0";
2321
- }
2322
- .mf-app:before {
2323
- content: "\eba2";
2324
- }
2325
- .mf-Aroma:before {
2326
- content: "\eba3";
2327
- }
2328
- .mf-bamboo-Leaf:before {
2329
- content: "\eba5";
2330
- }
2331
- .mf-basket:before {
2332
- content: "\eba6";
2333
- }
2334
- .mf-Battery:before {
2335
- content: "\eba7";
2336
- }
2337
- .mf-Bettery:before {
2338
- content: "\eba8";
2339
- }
2340
- .mf-building:before {
2341
- content: "\eba9";
2342
- }
2343
- .mf-car-2:before {
2344
- content: "\ebaa";
2345
- }
2346
- .mf-Car:before {
2347
- content: "\ebab";
2348
- }
2349
- .mf-Child:before {
2350
- content: "\ebac";
2351
- }
2352
- .mf-cityscape:before {
2353
- content: "\ebad";
2354
- }
2355
- .mf-cleaner:before {
2356
- content: "\ebae";
2357
- }
2358
- .mf-Coffee-cup:before {
2359
- content: "\ebaf";
2360
- }
2361
- .mf-coins:before {
2362
- content: "\ebb0";
2363
- }
2364
- .mf-Computer:before {
2365
- content: "\ebb1";
2366
- }
2367
- .mf-Consultancy:before {
2368
- content: "\ebb2";
2369
- }
2370
- .mf-cottage:before {
2371
- content: "\ebb3";
2372
- }
2373
- .mf-crane:before {
2374
- content: "\ebb4";
2375
- }
2376
- .mf-Custom-api:before {
2377
- content: "\ebb5";
2378
- }
2379
- .mf-customer-support-2:before {
2380
- content: "\ebb6";
2381
- }
2382
- .mf-Design-2:before {
2383
- content: "\ebb7";
2384
- }
2385
- .mf-Design-3:before {
2386
- content: "\ebb8";
2387
- }
2388
- .mf-design:before {
2389
- content: "\ebb9";
2390
- }
2391
- .mf-diamond:before {
2392
- content: "\ebba";
2393
- }
2394
- .mf-diploma:before {
2395
- content: "\ebbb";
2396
- }
2397
- .mf-Document-Search:before {
2398
- content: "\ebbc";
2399
- }
2400
- .mf-Download:before {
2401
- content: "\ebbd";
2402
- }
2403
- .mf-drilling:before {
2404
- content: "\ebbe";
2405
- }
2406
- .mf-engine:before {
2407
- content: "\ebbf";
2408
- }
2409
- .mf-engineer:before {
2410
- content: "\ebc0";
2411
- }
2412
- .mf-envelope:before {
2413
- content: "\ebc1";
2414
- }
2415
- .mf-Family:before {
2416
- content: "\ebc2";
2417
- }
2418
- .mf-friendship:before {
2419
- content: "\ebc3";
2420
- }
2421
- .mf-gift:before {
2422
- content: "\ebc4";
2423
- }
2424
- .mf-graph-2:before {
2425
- content: "\ebc5";
2426
- }
2427
- .mf-graph:before {
2428
- content: "\ebc6";
2429
- }
2430
- .mf-hamburger-2:before {
2431
- content: "\ebc7";
2432
- }
2433
- .mf-handshake:before {
2434
- content: "\ebc8";
2435
- }
2436
- .mf-Helmet:before {
2437
- content: "\ebc9";
2438
- }
2439
- .mf-hot-Stone-2:before {
2440
- content: "\ebca";
2441
- }
2442
- .mf-hot-stone:before {
2443
- content: "\ebcb";
2444
- }
2445
- .mf-idea:before {
2446
- content: "\ebcc";
2447
- }
2448
- .mf-Leaf:before {
2449
- content: "\ebcd";
2450
- }
2451
- .mf-management:before {
2452
- content: "\ebce";
2453
- }
2454
- .mf-Massage-table:before {
2455
- content: "\ebcf";
2456
- }
2457
- .mf-Mechanic:before {
2458
- content: "\ebd0";
2459
- }
2460
- .mf-Money-2:before {
2461
- content: "\ebd2";
2462
- }
2463
- .mf-money-bag:before {
2464
- content: "\ebd3";
2465
- }
2466
- .mf-Money:before {
2467
- content: "\ebd4";
2468
- }
2469
- .mf-oil-bottle:before {
2470
- content: "\ebd5";
2471
- }
2472
- .mf-Physiotherapy:before {
2473
- content: "\ebd6";
2474
- }
2475
- .mf-Profile:before {
2476
- content: "\ebd7";
2477
- }
2478
- .mf-Rating:before {
2479
- content: "\ebd8";
2480
- }
2481
- .mf-right-mark:before {
2482
- content: "\ebd9";
2483
- }
2484
- .mf-rings:before {
2485
- content: "\ebda";
2486
- }
2487
- .mf-Safe-house:before {
2488
- content: "\ebdb";
2489
- }
2490
- .mf-Scan:before {
2491
- content: "\ebdc";
2492
- }
2493
- .mf-social-care:before {
2494
- content: "\ebdd";
2495
- }
2496
- .mf-Speed-Clock:before {
2497
- content: "\ebde";
2498
- }
2499
- .mf-stopwatch:before {
2500
- content: "\ebdf";
2501
- }
2502
- .mf-Support-2:before {
2503
- content: "\ebe0";
2504
- }
2505
- .mf-target-2:before {
2506
- content: "\ebe1";
2507
- }
2508
- .mf-Target:before {
2509
- content: "\ebe2";
2510
- }
2511
- .mf-tripod:before {
2512
- content: "\ebe3";
2513
- }
2514
- .mf-truck:before {
2515
- content: "\ebe4";
2516
- }
2517
- .mf-university:before {
2518
- content: "\ebe5";
2519
- }
2520
- .mf-User:before {
2521
- content: "\ebe6";
2522
- }
2523
- .mf-Web-Portals:before {
2524
- content: "\ebe7";
2525
- }
2526
- .mf-window:before {
2527
- content: "\ebe8";
2528
- }
2529
- .mf-ek_line_icon:before {
2530
- content: "\ebe9";
2531
- }
2532
- .mf-ek_stroke_icon:before {
2533
- content: "\eba1";
2534
- }
2535
- .mf-ekit:before {
2536
- content: "\e947";
2537
- }
2538
- .mf-elements-kit-logo:before {
2539
- content: "\e90d";
2540
- }
2541
- .mf-degree-image:before {
2542
- content: "\e900";
2543
- }
2544
- .mf-accordion:before {
2545
- content: "\e901";
2546
- }
2547
- .mf-animated-flip-box:before {
2548
- content: "\e902";
2549
- }
2550
- .mf-animated-text:before {
2551
- content: "\e903";
2552
- }
2553
- .mf-brands:before {
2554
- content: "\e904";
2555
- }
2556
- .mf-business-hour:before {
2557
- content: "\e905";
2558
- }
2559
- .mf-button:before {
2560
- content: "\e906";
2561
- }
2562
- .mf-carousel:before {
2563
- content: "\e907";
2564
- }
2565
- .mf-Circle-progress:before {
2566
- content: "\e908";
2567
- }
2568
- .mf-contact-form:before {
2569
- content: "\e909";
2570
- }
2571
- .mf-countdown-timer:before {
2572
- content: "\e90a";
2573
- }
2574
- .mf-dropbar:before {
2575
- content: "\e90c";
2576
- }
2577
- .mf-faq:before {
2578
- content: "\e90e";
2579
- }
2580
- .mf-full-width-scroll:before {
2581
- content: "\e90f";
2582
- }
2583
- .mf-google-map:before {
2584
- content: "\e910";
2585
- }
2586
- .mf-heading-style:before {
2587
- content: "\e911";
2588
- }
2589
- .mf-help-desk:before {
2590
- content: "\e912";
2591
- }
2592
- .mf-horizontal-timeline:before {
2593
- content: "\e913";
2594
- }
2595
- .mf-iframe:before {
2596
- content: "\e914";
2597
- }
2598
- .mf-image-comparison:before {
2599
- content: "\e915";
2600
- }
2601
- .mf-image-gallery:before {
2602
- content: "\e916";
2603
- }
2604
- .mf-image-justify:before {
2605
- content: "\e917";
2606
- }
2607
- .mf-image-magnifier:before {
2608
- content: "\e918";
2609
- }
2610
- .mf-image-masonry:before {
2611
- content: "\e919";
2612
- }
2613
- .mf-inline-svg:before {
2614
- content: "\e91a";
2615
- }
2616
- .mf-instagram:before {
2617
- content: "\e91b";
2618
- }
2619
- .mf-listing:before {
2620
- content: "\e91c";
2621
- }
2622
- .mf-music-player:before {
2623
- content: "\e91d";
2624
- }
2625
- .mf-news-ticker:before {
2626
- content: "\e91e";
2627
- }
2628
- .mf-off-canvus-menu:before {
2629
- content: "\e91f";
2630
- }
2631
- .mf-parallax:before {
2632
- content: "\e920";
2633
- }
2634
- .mf-portfolio:before {
2635
- content: "\e921";
2636
- }
2637
- .mf-post-banner:before {
2638
- content: "\e922";
2639
- }
2640
- .mf-post-carousel:before {
2641
- content: "\e923";
2642
- }
2643
- .mf-post-grid:before {
2644
- content: "\e924";
2645
- }
2646
- .mf-post-slider:before {
2647
- content: "\e925";
2648
- }
2649
- .mf-pricing-list:before {
2650
- content: "\e926";
2651
- }
2652
- .mf-pricing-table:before {
2653
- content: "\e927";
2654
- }
2655
- .mf-product-featured:before {
2656
- content: "\e928";
2657
- }
2658
- .mf-product-image:before {
2659
- content: "\e929";
2660
- }
2661
- .mf-product-recent:before {
2662
- content: "\e92a";
2663
- }
2664
- .mf-product-sale:before {
2665
- content: "\e92b";
2666
- }
2667
- .mf-product-top-rated:before {
2668
- content: "\e92c";
2669
- }
2670
- .mf-product-top-seller:before {
2671
- content: "\e92d";
2672
- }
2673
- .mf-progress-bar:before {
2674
- content: "\e92e";
2675
- }
2676
- .mf-protected-content-v2:before {
2677
- content: "\e92f";
2678
- }
2679
- .mf-protected-content-v3:before {
2680
- content: "\e930";
2681
- }
2682
- .mf-protected-content:before {
2683
- content: "\e931";
2684
- }
2685
- .mf-qr_code:before {
2686
- content: "\e932";
2687
- }
2688
- .mf-scroll-button:before {
2689
- content: "\e933";
2690
- }
2691
- .mf-search1:before {
2692
- content: "\e934";
2693
- }
2694
- .mf-service:before {
2695
- content: "\e935";
2696
- }
2697
- .mf-slider-image:before {
2698
- content: "\e936";
2699
- }
2700
- .mf-social-share:before {
2701
- content: "\e937";
2702
- }
2703
- .mf-subscribe:before {
2704
- content: "\e938";
2705
- }
2706
- .mf-tab:before {
2707
- content: "\e939";
2708
- }
2709
- .mf-table:before {
2710
- content: "\e93a";
2711
- }
2712
- .mf-team-join:before {
2713
- content: "\e93b";
2714
- }
2715
- .mf-team-member:before {
2716
- content: "\e93c";
2717
- }
2718
- .mf-testimonial-carousel:before {
2719
- content: "\e93d";
2720
- }
2721
- .mf-testimonial-grid:before {
2722
- content: "\e93e";
2723
- }
2724
- .mf-testimonial-quote:before {
2725
- content: "\e93f";
2726
- }
2727
- .mf-testimonial-slider:before {
2728
- content: "\e940";
2729
- }
2730
- .mf-toggle:before {
2731
- content: "\e941";
2732
- }
2733
- .mf-user-login:before {
2734
- content: "\e942";
2735
- }
2736
- .mf-user-registration:before {
2737
- content: "\e943";
2738
- }
2739
- .mf-vertical-timeline:before {
2740
- content: "\e944";
2741
- }
2742
- .mf-video-player:before {
2743
- content: "\e945";
2744
- }
2745
- .mf-weather:before {
2746
- content: "\e946";
2747
- }
1
+ @font-face {
2
+ font-family: 'metform';
3
+ src:
4
+ url('fonts/metform.ttf?eis82y') format('truetype'),
5
+ url('fonts/metform.woff?eis82y') format('woff'),
6
+ url('fonts/metform.svg?eis82y#metform') format('svg');
7
+ font-weight: normal;
8
+ font-style: normal;
9
+ font-display: block;
10
+ }
11
+
12
+ .mf {
13
+ /* use !important to prevent issues with browser extensions that change fonts */
14
+ font-family: 'metform' !important;
15
+ speak: none;
16
+ font-style: normal;
17
+ font-weight: normal;
18
+ font-variant: normal;
19
+ text-transform: none;
20
+ line-height: 1;
21
+
22
+ /* Better Font Rendering =========== */
23
+ -webkit-font-smoothing: antialiased;
24
+ -moz-osx-font-smoothing: grayscale;
25
+ }
26
+
27
+ .mf-icon-checked-fillpng:before {
28
+ content: "\e9c8";
29
+ }
30
+ .mf-question:before {
31
+ content: "\eb1e";
32
+ }
33
+ .mf-home:before {
34
+ content: "\e800";
35
+ }
36
+ .mf-apartment1:before {
37
+ content: "\e801";
38
+ }
39
+ .mf-pencil:before {
40
+ content: "\e802";
41
+ }
42
+ .mf-magic-wand:before {
43
+ content: "\e803";
44
+ }
45
+ .mf-drop:before {
46
+ content: "\e804";
47
+ }
48
+ .mf-lighter:before {
49
+ content: "\e805";
50
+ }
51
+ .mf-poop:before {
52
+ content: "\e806";
53
+ }
54
+ .mf-sun:before {
55
+ content: "\e807";
56
+ }
57
+ .mf-moon:before {
58
+ content: "\e808";
59
+ }
60
+ .mf-cloud1:before {
61
+ content: "\e809";
62
+ }
63
+ .mf-cloud-upload:before {
64
+ content: "\e80a";
65
+ }
66
+ .mf-cloud-download:before {
67
+ content: "\e80b";
68
+ }
69
+ .mf-cloud-sync:before {
70
+ content: "\e80c";
71
+ }
72
+ .mf-cloud-check:before {
73
+ content: "\e80d";
74
+ }
75
+ .mf-database1:before {
76
+ content: "\e80e";
77
+ }
78
+ .mf-lock:before {
79
+ content: "\e80f";
80
+ }
81
+ .mf-cog:before {
82
+ content: "\e810";
83
+ }
84
+ .mf-trash:before {
85
+ content: "\e811";
86
+ }
87
+ .mf-dice:before {
88
+ content: "\e812";
89
+ }
90
+ .mf-heart1:before {
91
+ content: "\e813";
92
+ }
93
+ .mf-star1:before {
94
+ content: "\e814";
95
+ }
96
+ .mf-star-half:before {
97
+ content: "\e815";
98
+ }
99
+ .mf-star-empty:before {
100
+ content: "\e816";
101
+ }
102
+ .mf-flag:before {
103
+ content: "\e817";
104
+ }
105
+ .mf-envelope1:before {
106
+ content: "\e818";
107
+ }
108
+ .mf-paperclip:before {
109
+ content: "\e819";
110
+ }
111
+ .mf-inbox:before {
112
+ content: "\e81a";
113
+ }
114
+ .mf-eye:before {
115
+ content: "\e81b";
116
+ }
117
+ .mf-printer:before {
118
+ content: "\e81c";
119
+ }
120
+ .mf-file-empty:before {
121
+ content: "\e81d";
122
+ }
123
+ .mf-file-add:before {
124
+ content: "\e81e";
125
+ }
126
+ .mf-enter:before {
127
+ content: "\e81f";
128
+ }
129
+ .mf-exit:before {
130
+ content: "\e820";
131
+ }
132
+ .mf-graduation-hat:before {
133
+ content: "\e821";
134
+ }
135
+ .mf-license:before {
136
+ content: "\e822";
137
+ }
138
+ .mf-music-note:before {
139
+ content: "\e823";
140
+ }
141
+ .mf-film-play:before {
142
+ content: "\e824";
143
+ }
144
+ .mf-camera-video:before {
145
+ content: "\e825";
146
+ }
147
+ .mf-camera:before {
148
+ content: "\e826";
149
+ }
150
+ .mf-picture:before {
151
+ content: "\e827";
152
+ }
153
+ .mf-book:before {
154
+ content: "\e828";
155
+ }
156
+ .mf-bookmark:before {
157
+ content: "\e829";
158
+ }
159
+ .mf-user:before {
160
+ content: "\e82a";
161
+ }
162
+ .mf-users:before {
163
+ content: "\e82b";
164
+ }
165
+ .mf-shirt:before {
166
+ content: "\e82c";
167
+ }
168
+ .mf-store:before {
169
+ content: "\e82d";
170
+ }
171
+ .mf-cart2:before {
172
+ content: "\e82e";
173
+ }
174
+ .mf-tag:before {
175
+ content: "\e82f";
176
+ }
177
+ .mf-phone-handset:before {
178
+ content: "\e830";
179
+ }
180
+ .mf-phone:before {
181
+ content: "\e831";
182
+ }
183
+ .mf-pushpin:before {
184
+ content: "\e832";
185
+ }
186
+ .mf-map-marker:before {
187
+ content: "\e833";
188
+ }
189
+ .mf-map:before {
190
+ content: "\e834";
191
+ }
192
+ .mf-location:before {
193
+ content: "\e835";
194
+ }
195
+ .mf-calendar-full:before {
196
+ content: "\e836";
197
+ }
198
+ .mf-keyboard:before {
199
+ content: "\e837";
200
+ }
201
+ .mf-spell-check:before {
202
+ content: "\e838";
203
+ }
204
+ .mf-screen:before {
205
+ content: "\e839";
206
+ }
207
+ .mf-smartphone:before {
208
+ content: "\e83a";
209
+ }
210
+ .mf-tablet:before {
211
+ content: "\e83b";
212
+ }
213
+ .mf-laptop:before {
214
+ content: "\e83c";
215
+ }
216
+ .mf-laptop-phone:before {
217
+ content: "\e83d";
218
+ }
219
+ .mf-power-switch:before {
220
+ content: "\e83e";
221
+ }
222
+ .mf-bubble:before {
223
+ content: "\e83f";
224
+ }
225
+ .mf-heart-pulse:before {
226
+ content: "\e840";
227
+ }
228
+ .mf-construction:before {
229
+ content: "\e841";
230
+ }
231
+ .mf-pie-chart:before {
232
+ content: "\e842";
233
+ }
234
+ .mf-chart-bars:before {
235
+ content: "\e843";
236
+ }
237
+ .mf-gift1:before {
238
+ content: "\e844";
239
+ }
240
+ .mf-diamond1:before {
241
+ content: "\e845";
242
+ }
243
+ .mf-dinner:before {
244
+ content: "\e847";
245
+ }
246
+ .mf-coffee-cup:before {
247
+ content: "\e848";
248
+ }
249
+ .mf-leaf:before {
250
+ content: "\e849";
251
+ }
252
+ .mf-paw:before {
253
+ content: "\e84a";
254
+ }
255
+ .mf-rocket:before {
256
+ content: "\e84b";
257
+ }
258
+ .mf-briefcase:before {
259
+ content: "\e84c";
260
+ }
261
+ .mf-bus:before {
262
+ content: "\e84d";
263
+ }
264
+ .mf-car1:before {
265
+ content: "\e84e";
266
+ }
267
+ .mf-train:before {
268
+ content: "\e84f";
269
+ }
270
+ .mf-bicycle:before {
271
+ content: "\e850";
272
+ }
273
+ .mf-wheelchair:before {
274
+ content: "\e851";
275
+ }
276
+ .mf-select:before {
277
+ content: "\e852";
278
+ }
279
+ .mf-earth:before {
280
+ content: "\e853";
281
+ }
282
+ .mf-smile:before {
283
+ content: "\e854";
284
+ }
285
+ .mf-sad:before {
286
+ content: "\e855";
287
+ }
288
+ .mf-neutral:before {
289
+ content: "\e856";
290
+ }
291
+ .mf-mustache:before {
292
+ content: "\e857";
293
+ }
294
+ .mf-alarm:before {
295
+ content: "\e858";
296
+ }
297
+ .mf-bullhorn:before {
298
+ content: "\e859";
299
+ }
300
+ .mf-volume-high:before {
301
+ content: "\e85a";
302
+ }
303
+ .mf-volume-medium:before {
304
+ content: "\e85b";
305
+ }
306
+ .mf-volume-low:before {
307
+ content: "\e85c";
308
+ }
309
+ .mf-volume:before {
310
+ content: "\e85d";
311
+ }
312
+ .mf-mic:before {
313
+ content: "\e85e";
314
+ }
315
+ .mf-hourglass:before {
316
+ content: "\e85f";
317
+ }
318
+ .mf-undo:before {
319
+ content: "\e860";
320
+ }
321
+ .mf-redo:before {
322
+ content: "\e861";
323
+ }
324
+ .mf-sync:before {
325
+ content: "\e862";
326
+ }
327
+ .mf-history:before {
328
+ content: "\e863";
329
+ }
330
+ .mf-clock1:before {
331
+ content: "\e864";
332
+ }
333
+ .mf-download:before {
334
+ content: "\e865";
335
+ }
336
+ .mf-upload:before {
337
+ content: "\e866";
338
+ }
339
+ .mf-enter-down:before {
340
+ content: "\e867";
341
+ }
342
+ .mf-exit-up:before {
343
+ content: "\e868";
344
+ }
345
+ .mf-bug:before {
346
+ content: "\e869";
347
+ }
348
+ .mf-code:before {
349
+ content: "\e86a";
350
+ }
351
+ .mf-link:before {
352
+ content: "\e86b";
353
+ }
354
+ .mf-unlink:before {
355
+ content: "\e86c";
356
+ }
357
+ .mf-thumbs-up:before {
358
+ content: "\e86d";
359
+ }
360
+ .mf-thumbs-down:before {
361
+ content: "\e86e";
362
+ }
363
+ .mf-magnifier:before {
364
+ content: "\e86f";
365
+ }
366
+ .mf-cross:before {
367
+ content: "\e870";
368
+ }
369
+ .mf-chevron-up:before {
370
+ content: "\e873";
371
+ }
372
+ .mf-chevron-down:before {
373
+ content: "\e874";
374
+ }
375
+ .mf-chevron-left:before {
376
+ content: "\e875";
377
+ }
378
+ .mf-chevron-right:before {
379
+ content: "\e876";
380
+ }
381
+ .mf-arrow-up:before {
382
+ content: "\e877";
383
+ }
384
+ .mf-arrow-down:before {
385
+ content: "\e878";
386
+ }
387
+ .mf-arrow-left:before {
388
+ content: "\e879";
389
+ }
390
+ .mf-arrow-right:before {
391
+ content: "\e87a";
392
+ }
393
+ .mf-right-arrow:before {
394
+ content: "\e9c5";
395
+ }
396
+ .mf-left-arrow:before {
397
+ content: "\e94a";
398
+ }
399
+ .mf-download-arrow:before {
400
+ content: "\e94b";
401
+ }
402
+ .mf-up-arrow:before {
403
+ content: "\e9c3";
404
+ }
405
+ .mf-arrows:before {
406
+ content: "\e9c4";
407
+ }
408
+ .mf-double-angle-pointing-to-right:before {
409
+ content: "\e949";
410
+ }
411
+ .mf-double-left-chevron:before {
412
+ content: "\e948";
413
+ }
414
+ .mf-left-arrow2:before {
415
+ content: "\e94c";
416
+ }
417
+ .mf-right-arrow2:before {
418
+ content: "\e94d";
419
+ }
420
+ .mf-warning:before {
421
+ content: "\e87c";
422
+ }
423
+ .mf-down-arrow1:before {
424
+ content: "\e994";
425
+ }
426
+ .mf-up-arrow1:before {
427
+ content: "\e995";
428
+ }
429
+ .mf-right-arrow1:before {
430
+ content: "\e996";
431
+ }
432
+ .mf-left-arrows:before {
433
+ content: "\e997";
434
+ }
435
+ .mf-question-circle:before {
436
+ content: "\e87d";
437
+ }
438
+ .mf-menu-circle:before {
439
+ content: "\e87e";
440
+ }
441
+ .mf-checkmark-circle:before {
442
+ content: "\e87f";
443
+ }
444
+ .mf-cross-circle:before {
445
+ content: "\e880";
446
+ }
447
+ .mf-plus-circle:before {
448
+ content: "\e881";
449
+ }
450
+ .mf-move:before {
451
+ content: "\e87b";
452
+ }
453
+ .mf-circle-minus:before {
454
+ content: "\e882";
455
+ }
456
+ .mf-arrow-up-circle:before {
457
+ content: "\e883";
458
+ }
459
+ .mf-arrow-down-circle:before {
460
+ content: "\e884";
461
+ }
462
+ .mf-arrow-left-circle:before {
463
+ content: "\e885";
464
+ }
465
+ .mf-arrow-right-circle:before {
466
+ content: "\e886";
467
+ }
468
+ .mf-chevron-up-circle:before {
469
+ content: "\e887";
470
+ }
471
+ .mf-chevron-down-circle:before {
472
+ content: "\e888";
473
+ }
474
+ .mf-chevron-left-circle:before {
475
+ content: "\e889";
476
+ }
477
+ .mf-chevron-right-circle:before {
478
+ content: "\e88a";
479
+ }
480
+ .mf-crop:before {
481
+ content: "\e88b";
482
+ }
483
+ .mf-frame-expand:before {
484
+ content: "\e88c";
485
+ }
486
+ .mf-frame-contract:before {
487
+ content: "\e88d";
488
+ }
489
+ .mf-layers:before {
490
+ content: "\e88e";
491
+ }
492
+ .mf-funnel:before {
493
+ content: "\e88f";
494
+ }
495
+ .mf-text-format:before {
496
+ content: "\e890";
497
+ }
498
+ .mf-text-size:before {
499
+ content: "\e892";
500
+ }
501
+ .mf-bold:before {
502
+ content: "\e893";
503
+ }
504
+ .mf-italic:before {
505
+ content: "\e894";
506
+ }
507
+ .mf-underline:before {
508
+ content: "\e895";
509
+ }
510
+ .mf-strikethrough:before {
511
+ content: "\e896";
512
+ }
513
+ .mf-highlight:before {
514
+ content: "\e897";
515
+ }
516
+ .mf-text-align-left:before {
517
+ content: "\e898";
518
+ }
519
+ .mf-text-align-center:before {
520
+ content: "\e899";
521
+ }
522
+ .mf-text-align-right:before {
523
+ content: "\e89a";
524
+ }
525
+ .mf-text-align-justify:before {
526
+ content: "\e89b";
527
+ }
528
+ .mf-line-spacing:before {
529
+ content: "\e89c";
530
+ }
531
+ .mf-indent-increase:before {
532
+ content: "\e89d";
533
+ }
534
+ .mf-indent-decrease:before {
535
+ content: "\e89e";
536
+ }
537
+ .mf-page-break:before {
538
+ content: "\e8a2";
539
+ }
540
+ .mf-hand:before {
541
+ content: "\e8a5";
542
+ }
543
+ .mf-pointer-up:before {
544
+ content: "\e8a6";
545
+ }
546
+ .mf-pointer-right:before {
547
+ content: "\e8a7";
548
+ }
549
+ .mf-pointer-down:before {
550
+ content: "\e8a8";
551
+ }
552
+ .mf-pointer-left:before {
553
+ content: "\e8a9";
554
+ }
555
+ .mf-burger:before {
556
+ content: "\e94e";
557
+ }
558
+ .mf-cakes:before {
559
+ content: "\e94f";
560
+ }
561
+ .mf-cheese:before {
562
+ content: "\e950";
563
+ }
564
+ .mf-drink-glass:before {
565
+ content: "\e951";
566
+ }
567
+ .mf-pizza:before {
568
+ content: "\e952";
569
+ }
570
+ .mf-vplay:before {
571
+ content: "\e953";
572
+ }
573
+ .mf-newsletter:before {
574
+ content: "\e954";
575
+ }
576
+ .mf-coins-2:before {
577
+ content: "\e955";
578
+ }
579
+ .mf-commerce-2:before {
580
+ content: "\e956";
581
+ }
582
+ .mf-monitor:before {
583
+ content: "\e957";
584
+ }
585
+ .mf-business:before {
586
+ content: "\e958";
587
+ }
588
+ .mf-graphic-2:before {
589
+ content: "\e959";
590
+ }
591
+ .mf-commerce-1:before {
592
+ content: "\e95a";
593
+ }
594
+ .mf-hammer:before {
595
+ content: "\e95b";
596
+ }
597
+ .mf-justice-1:before {
598
+ content: "\e95c";
599
+ }
600
+ .mf-line:before {
601
+ content: "\e95d";
602
+ }
603
+ .mf-money-3:before {
604
+ content: "\e95e";
605
+ }
606
+ .mf-commerce:before {
607
+ content: "\e95f";
608
+ }
609
+ .mf-agenda:before {
610
+ content: "\e960";
611
+ }
612
+ .mf-justice:before {
613
+ content: "\e961";
614
+ }
615
+ .mf-technology:before {
616
+ content: "\e962";
617
+ }
618
+ .mf-coins-1:before {
619
+ content: "\e963";
620
+ }
621
+ .mf-bank:before {
622
+ content: "\e964";
623
+ }
624
+ .mf-calculator:before {
625
+ content: "\e965";
626
+ }
627
+ .mf-soundcloud:before {
628
+ content: "\e966";
629
+ }
630
+ .mf-chart2:before {
631
+ content: "\e967";
632
+ }
633
+ .mf-checked:before {
634
+ content: "\e968";
635
+ }
636
+ .mf-clock11:before {
637
+ content: "\e969";
638
+ }
639
+ .mf-comment2:before {
640
+ content: "\e96a";
641
+ }
642
+ .mf-comments:before {
643
+ content: "\e96b";
644
+ }
645
+ .mf-consult:before {
646
+ content: "\e96c";
647
+ }
648
+ .mf-consut2:before {
649
+ content: "\e96d";
650
+ }
651
+ .mf-deal:before {
652
+ content: "\e96e";
653
+ }
654
+ .mf-envelope11:before {
655
+ content: "\e96f";
656
+ }
657
+ .mf-folder:before {
658
+ content: "\e970";
659
+ }
660
+ .mf-folder2:before {
661
+ content: "\ea6a";
662
+ }
663
+ .mf-invest:before {
664
+ content: "\e971";
665
+ }
666
+ .mf-loan:before {
667
+ content: "\e972";
668
+ }
669
+ .mf-menu1:before {
670
+ content: "\e871";
671
+ }
672
+ .mf-list1:before {
673
+ content: "\e872";
674
+ }
675
+ .mf-map-marker1:before {
676
+ content: "\e973";
677
+ }
678
+ .mf-mutual-fund:before {
679
+ content: "\e974";
680
+ }
681
+ .mf-google-plus:before {
682
+ content: "\e975";
683
+ }
684
+ .mf-phone1:before {
685
+ content: "\e976";
686
+ }
687
+ .mf-pie-chart1:before {
688
+ content: "\e977";
689
+ }
690
+ .mf-play:before {
691
+ content: "\e978";
692
+ }
693
+ .mf-savings:before {
694
+ content: "\e979";
695
+ }
696
+ .mf-search2:before {
697
+ content: "\e97a";
698
+ }
699
+ .mf-tag1:before {
700
+ content: "\e97b";
701
+ }
702
+ .mf-tags:before {
703
+ content: "\e97c";
704
+ }
705
+ .mf-instagram1:before {
706
+ content: "\e97d";
707
+ }
708
+ .mf-quote:before {
709
+ content: "\e97e";
710
+ }
711
+ .mf-arrow-point-to-down:before {
712
+ content: "\e97f";
713
+ }
714
+ .mf-play-button:before {
715
+ content: "\e980";
716
+ }
717
+ .mf-minus:before {
718
+ content: "\e981";
719
+ }
720
+ .mf-plus:before {
721
+ content: "\e982";
722
+ }
723
+ .mf-tick:before {
724
+ content: "\e983";
725
+ }
726
+ .mf-check:before {
727
+ content: "\eaaf";
728
+ }
729
+ .mf-edit:before {
730
+ content: "\e984";
731
+ }
732
+ .mf-reply:before {
733
+ content: "\e985";
734
+ }
735
+ .mf-cogwheel-outline:before {
736
+ content: "\e986";
737
+ }
738
+ .mf-abacus:before {
739
+ content: "\e987";
740
+ }
741
+ .mf-abacus1:before {
742
+ content: "\e988";
743
+ }
744
+ .mf-agenda1:before {
745
+ content: "\e989";
746
+ }
747
+ .mf-shopping-basket:before {
748
+ content: "\e98a";
749
+ }
750
+ .mf-users1:before {
751
+ content: "\e98b";
752
+ }
753
+ .mf-man:before {
754
+ content: "\e98c";
755
+ }
756
+ .mf-support1:before {
757
+ content: "\e98d";
758
+ }
759
+ .mf-favorites:before {
760
+ content: "\e98e";
761
+ }
762
+ .mf-calendar:before {
763
+ content: "\e98f";
764
+ }
765
+ .mf-paper-plane:before {
766
+ content: "\e990";
767
+ }
768
+ .mf-placeholder:before {
769
+ content: "\e991";
770
+ }
771
+ .mf-phone-call:before {
772
+ content: "\e992";
773
+ }
774
+ .mf-contact:before {
775
+ content: "\e993";
776
+ }
777
+ .mf-email:before {
778
+ content: "\e998";
779
+ }
780
+ .mf-internet:before {
781
+ content: "\e999";
782
+ }
783
+ .mf-quote1:before {
784
+ content: "\e99a";
785
+ }
786
+ .mf-medical:before {
787
+ content: "\e99b";
788
+ }
789
+ .mf-eye1:before {
790
+ content: "\e99c";
791
+ }
792
+ .mf-full-screen:before {
793
+ content: "\e99d";
794
+ }
795
+ .mf-tools:before {
796
+ content: "\e99e";
797
+ }
798
+ .mf-pie-chart2:before {
799
+ content: "\e99f";
800
+ }
801
+ .mf-diamond11:before {
802
+ content: "\e9a0";
803
+ }
804
+ .mf-valentines-heart:before {
805
+ content: "\e9a1";
806
+ }
807
+ .mf-like:before {
808
+ content: "\e9a2";
809
+ }
810
+ .mf-team:before {
811
+ content: "\e9a3";
812
+ }
813
+ .mf-tshirt:before {
814
+ content: "\e9a4";
815
+ }
816
+ .mf-cancel:before {
817
+ content: "\e9a5";
818
+ }
819
+ .mf-drink:before {
820
+ content: "\e9a6";
821
+ }
822
+ .mf-home1:before {
823
+ content: "\e9a7";
824
+ }
825
+ .mf-music:before {
826
+ content: "\e9a8";
827
+ }
828
+ .mf-rich:before {
829
+ content: "\e9a9";
830
+ }
831
+ .mf-brush:before {
832
+ content: "\e9aa";
833
+ }
834
+ .mf-opposite-way:before {
835
+ content: "\e9ab";
836
+ }
837
+ .mf-cloud-computing1:before {
838
+ content: "\e9ac";
839
+ }
840
+ .mf-technology-1:before {
841
+ content: "\e9ad";
842
+ }
843
+ .mf-rotate:before {
844
+ content: "\e9ae";
845
+ }
846
+ .mf-medical1:before {
847
+ content: "\e9af";
848
+ }
849
+ .mf-flash-1:before {
850
+ content: "\e9b0";
851
+ }
852
+ .mf-flash:before {
853
+ content: "\e9b1";
854
+ }
855
+ .mf-uturn:before {
856
+ content: "\e9b2";
857
+ }
858
+ .mf-down-arrow:before {
859
+ content: "\e9b3";
860
+ }
861
+ .mf-hours-support:before {
862
+ content: "\e9b4";
863
+ }
864
+ .mf-bag:before {
865
+ content: "\e9b5";
866
+ }
867
+ .mf-photo-camera:before {
868
+ content: "\e9b6";
869
+ }
870
+ .mf-school:before {
871
+ content: "\e9b7";
872
+ }
873
+ .mf-settings:before {
874
+ content: "\e9b8";
875
+ }
876
+ .mf-smartphone1:before {
877
+ content: "\e9b9";
878
+ }
879
+ .mf-technology-11:before {
880
+ content: "\e9ba";
881
+ }
882
+ .mf-tool:before {
883
+ content: "\e9bb";
884
+ }
885
+ .mf-business1:before {
886
+ content: "\e9bc";
887
+ }
888
+ .mf-shuffle-arrow:before {
889
+ content: "\e9bd";
890
+ }
891
+ .mf-van-1:before {
892
+ content: "\e9be";
893
+ }
894
+ .mf-van:before {
895
+ content: "\e9bf";
896
+ }
897
+ .mf-vegetables:before {
898
+ content: "\e9c0";
899
+ }
900
+ .mf-women:before {
901
+ content: "\e9c1";
902
+ }
903
+ .mf-vintage:before {
904
+ content: "\e9c2";
905
+ }
906
+ .mf-team-1:before {
907
+ content: "\e9c6";
908
+ }
909
+ .mf-team1:before {
910
+ content: "\e9c7";
911
+ }
912
+ .mf-apple:before {
913
+ content: "\e9c9";
914
+ }
915
+ .mf-watch:before {
916
+ content: "\e9ca";
917
+ }
918
+ .mf-cogwheel:before {
919
+ content: "\e9cb";
920
+ }
921
+ .mf-light-bulb:before {
922
+ content: "\e9cc";
923
+ }
924
+ .mf-light-bulb-1:before {
925
+ content: "\e9cd";
926
+ }
927
+ .mf-heart-shape-outline:before {
928
+ content: "\e9ce";
929
+ }
930
+ .mf-online-shopping-cart:before {
931
+ content: "\e9cf";
932
+ }
933
+ .mf-shopping-cart1:before {
934
+ content: "\e9d0";
935
+ }
936
+ .mf-star2:before {
937
+ content: "\e9d1";
938
+ }
939
+ .mf-star-1:before {
940
+ content: "\e9d2";
941
+ }
942
+ .mf-favorite1:before {
943
+ content: "\e9d3";
944
+ }
945
+ .mf-agenda2:before {
946
+ content: "\e9d4";
947
+ }
948
+ .mf-agenda-1:before {
949
+ content: "\e9d5";
950
+ }
951
+ .mf-alarm-clock:before {
952
+ content: "\e9d6";
953
+ }
954
+ .mf-alarm-clock1:before {
955
+ content: "\e9d7";
956
+ }
957
+ .mf-atomic:before {
958
+ content: "\e9d8";
959
+ }
960
+ .mf-auction:before {
961
+ content: "\e9d9";
962
+ }
963
+ .mf-balance:before {
964
+ content: "\e9da";
965
+ }
966
+ .mf-balance1:before {
967
+ content: "\e9db";
968
+ }
969
+ .mf-bank1:before {
970
+ content: "\e9dc";
971
+ }
972
+ .mf-bar-chart:before {
973
+ content: "\e9dd";
974
+ }
975
+ .mf-barrier:before {
976
+ content: "\e9de";
977
+ }
978
+ .mf-battery:before {
979
+ content: "\e9df";
980
+ }
981
+ .mf-battery-1:before {
982
+ content: "\e9e0";
983
+ }
984
+ .mf-bell:before {
985
+ content: "\e9e1";
986
+ }
987
+ .mf-bluetooth:before {
988
+ content: "\e9e2";
989
+ }
990
+ .mf-book1:before {
991
+ content: "\e9e3";
992
+ }
993
+ .mf-briefcase1:before {
994
+ content: "\e9e4";
995
+ }
996
+ .mf-briefcase-1:before {
997
+ content: "\e9e5";
998
+ }
999
+ .mf-briefcase-2:before {
1000
+ content: "\e9e6";
1001
+ }
1002
+ .mf-calculator1:before {
1003
+ content: "\e9e7";
1004
+ }
1005
+ .mf-calculator2:before {
1006
+ content: "\e9e8";
1007
+ }
1008
+ .mf-calculator-1:before {
1009
+ content: "\e9e9";
1010
+ }
1011
+ .mf-calendar1:before {
1012
+ content: "\e9ea";
1013
+ }
1014
+ .mf-calendar2:before {
1015
+ content: "\e9eb";
1016
+ }
1017
+ .mf-calendar-1:before {
1018
+ content: "\e9ec";
1019
+ }
1020
+ .mf-calendar-page-empty:before {
1021
+ content: "\eaac";
1022
+ }
1023
+ .mf-calendar3:before {
1024
+ content: "\eb9c";
1025
+ }
1026
+ .mf-car11:before {
1027
+ content: "\e9ed";
1028
+ }
1029
+ .mf-carrier:before {
1030
+ content: "\e9ee";
1031
+ }
1032
+ .mf-cash:before {
1033
+ content: "\e9ef";
1034
+ }
1035
+ .mf-chat:before {
1036
+ content: "\e9f0";
1037
+ }
1038
+ .mf-chat-1:before {
1039
+ content: "\e9f1";
1040
+ }
1041
+ .mf-checked1:before {
1042
+ content: "\e9f2";
1043
+ }
1044
+ .mf-clip:before {
1045
+ content: "\e9f3";
1046
+ }
1047
+ .mf-clip1:before {
1048
+ content: "\e9f4";
1049
+ }
1050
+ .mf-clipboard1:before {
1051
+ content: "\e9f5";
1052
+ }
1053
+ .mf-clipboard11:before {
1054
+ content: "\e9f6";
1055
+ }
1056
+ .mf-clock2:before {
1057
+ content: "\e9f7";
1058
+ }
1059
+ .mf-clock-1:before {
1060
+ content: "\e9f8";
1061
+ }
1062
+ .mf-cloud11:before {
1063
+ content: "\e9f9";
1064
+ }
1065
+ .mf-cloud-computing11:before {
1066
+ content: "\e9fa";
1067
+ }
1068
+ .mf-cloud-computing-1:before {
1069
+ content: "\e9fb";
1070
+ }
1071
+ .mf-cogwheel1:before {
1072
+ content: "\e9fc";
1073
+ }
1074
+ .mf-coins1:before {
1075
+ content: "\e9fd";
1076
+ }
1077
+ .mf-compass:before {
1078
+ content: "\e9fe";
1079
+ }
1080
+ .mf-contract:before {
1081
+ content: "\e9ff";
1082
+ }
1083
+ .mf-conversation:before {
1084
+ content: "\ea00";
1085
+ }
1086
+ .mf-crane1:before {
1087
+ content: "\ea01";
1088
+ }
1089
+ .mf-crane-2:before {
1090
+ content: "\ea02";
1091
+ }
1092
+ .mf-credit-card:before {
1093
+ content: "\ea03";
1094
+ }
1095
+ .mf-credit-card1:before {
1096
+ content: "\ea04";
1097
+ }
1098
+ .mf-cursor:before {
1099
+ content: "\ea05";
1100
+ }
1101
+ .mf-customer-service:before {
1102
+ content: "\ea06";
1103
+ }
1104
+ .mf-cutlery:before {
1105
+ content: "\ea07";
1106
+ }
1107
+ .mf-dart-board:before {
1108
+ content: "\ea08";
1109
+ }
1110
+ .mf-decision-making:before {
1111
+ content: "\ea09";
1112
+ }
1113
+ .mf-desk-chair:before {
1114
+ content: "\ea0a";
1115
+ }
1116
+ .mf-desk-lamp:before {
1117
+ content: "\ea0b";
1118
+ }
1119
+ .mf-diamond2:before {
1120
+ content: "\ea0c";
1121
+ }
1122
+ .mf-direction:before {
1123
+ content: "\ea0d";
1124
+ }
1125
+ .mf-document:before {
1126
+ content: "\ea0e";
1127
+ }
1128
+ .mf-dollar-bill:before {
1129
+ content: "\ea0f";
1130
+ }
1131
+ .mf-download1:before {
1132
+ content: "\ea10";
1133
+ }
1134
+ .mf-edit1:before {
1135
+ content: "\ea11";
1136
+ }
1137
+ .mf-email1:before {
1138
+ content: "\ea12";
1139
+ }
1140
+ .mf-envelope2:before {
1141
+ content: "\ea13";
1142
+ }
1143
+ .mf-envelope3:before {
1144
+ content: "\ea14";
1145
+ }
1146
+ .mf-eraser:before {
1147
+ content: "\ea15";
1148
+ }
1149
+ .mf-eye2:before {
1150
+ content: "\ea16";
1151
+ }
1152
+ .mf-factory:before {
1153
+ content: "\ea17";
1154
+ }
1155
+ .mf-fast-forward:before {
1156
+ content: "\ea18";
1157
+ }
1158
+ .mf-favorites1:before {
1159
+ content: "\ea19";
1160
+ }
1161
+ .mf-file:before {
1162
+ content: "\ea1a";
1163
+ }
1164
+ .mf-file-1:before {
1165
+ content: "\ea1b";
1166
+ }
1167
+ .mf-file-2:before {
1168
+ content: "\ea1c";
1169
+ }
1170
+ .mf-file-3:before {
1171
+ content: "\ea1d";
1172
+ }
1173
+ .mf-filter:before {
1174
+ content: "\ea1e";
1175
+ }
1176
+ .mf-finance-book:before {
1177
+ content: "\ea1f";
1178
+ }
1179
+ .mf-flag1:before {
1180
+ content: "\ea20";
1181
+ }
1182
+ .mf-folder1:before {
1183
+ content: "\ea21";
1184
+ }
1185
+ .mf-folder-1:before {
1186
+ content: "\ea22";
1187
+ }
1188
+ .mf-folders:before {
1189
+ content: "\ea23";
1190
+ }
1191
+ .mf-folders1:before {
1192
+ content: "\ea24";
1193
+ }
1194
+ .mf-gamepad:before {
1195
+ content: "\ea25";
1196
+ }
1197
+ .mf-gift11:before {
1198
+ content: "\ea26";
1199
+ }
1200
+ .mf-growth:before {
1201
+ content: "\ea27";
1202
+ }
1203
+ .mf-heart11:before {
1204
+ content: "\ea28";
1205
+ }
1206
+ .mf-home2:before {
1207
+ content: "\ea29";
1208
+ }
1209
+ .mf-house:before {
1210
+ content: "\ea2a";
1211
+ }
1212
+ .mf-house-1:before {
1213
+ content: "\ea2b";
1214
+ }
1215
+ .mf-house-2:before {
1216
+ content: "\ea2c";
1217
+ }
1218
+ .mf-id-card:before {
1219
+ content: "\ea2d";
1220
+ }
1221
+ .mf-id-card1:before {
1222
+ content: "\ea2e";
1223
+ }
1224
+ .mf-id-card-1:before {
1225
+ content: "\ea2f";
1226
+ }
1227
+ .mf-idea1:before {
1228
+ content: "\ea30";
1229
+ }
1230
+ .mf-image:before {
1231
+ content: "\ea31";
1232
+ }
1233
+ .mf-improvement:before {
1234
+ content: "\ea32";
1235
+ }
1236
+ .mf-inbox1:before {
1237
+ content: "\ea33";
1238
+ }
1239
+ .mf-information:before {
1240
+ content: "\ea34";
1241
+ }
1242
+ .mf-key:before {
1243
+ content: "\ea35";
1244
+ }
1245
+ .mf-key1:before {
1246
+ content: "\ea36";
1247
+ }
1248
+ .mf-laptop1:before {
1249
+ content: "\ea37";
1250
+ }
1251
+ .mf-layers1:before {
1252
+ content: "\ea38";
1253
+ }
1254
+ .mf-light-bulb1:before {
1255
+ content: "\ea39";
1256
+ }
1257
+ .mf-like1:before {
1258
+ content: "\ea3a";
1259
+ }
1260
+ .mf-line-chart1:before {
1261
+ content: "\ea3b";
1262
+ }
1263
+ .mf-mail:before {
1264
+ content: "\ea3c";
1265
+ }
1266
+ .mf-manager:before {
1267
+ content: "\ea3d";
1268
+ }
1269
+ .mf-map1:before {
1270
+ content: "\ea3e";
1271
+ }
1272
+ .mf-medal1:before {
1273
+ content: "\ea3f";
1274
+ }
1275
+ .mf-megaphone:before {
1276
+ content: "\ea40";
1277
+ }
1278
+ .mf-megaphone1:before {
1279
+ content: "\ea41";
1280
+ }
1281
+ .mf-message:before {
1282
+ content: "\ea42";
1283
+ }
1284
+ .mf-message-1:before {
1285
+ content: "\ea43";
1286
+ }
1287
+ .mf-message-2:before {
1288
+ content: "\ea44";
1289
+ }
1290
+ .mf-microphone:before {
1291
+ content: "\ea45";
1292
+ }
1293
+ .mf-money1:before {
1294
+ content: "\ea46";
1295
+ }
1296
+ .mf-money-bag1:before {
1297
+ content: "\ea47";
1298
+ }
1299
+ .mf-monitor1:before {
1300
+ content: "\ea48";
1301
+ }
1302
+ .mf-music1:before {
1303
+ content: "\ea49";
1304
+ }
1305
+ .mf-next:before {
1306
+ content: "\ea4a";
1307
+ }
1308
+ .mf-open-book1:before {
1309
+ content: "\ea4b";
1310
+ }
1311
+ .mf-padlock:before {
1312
+ content: "\ea4c";
1313
+ }
1314
+ .mf-padlock-1:before {
1315
+ content: "\ea4d";
1316
+ }
1317
+ .mf-paint-brush:before {
1318
+ content: "\ea4e";
1319
+ }
1320
+ .mf-pause:before {
1321
+ content: "\ea4f";
1322
+ }
1323
+ .mf-pen:before {
1324
+ content: "\ea50";
1325
+ }
1326
+ .mf-pencil1:before {
1327
+ content: "\ea51";
1328
+ }
1329
+ .mf-percentage:before {
1330
+ content: "\ea52";
1331
+ }
1332
+ .mf-phone-call1:before {
1333
+ content: "\ea53";
1334
+ }
1335
+ .mf-phone-call2:before {
1336
+ content: "\ea54";
1337
+ }
1338
+ .mf-photo-camera1:before {
1339
+ content: "\ea55";
1340
+ }
1341
+ .mf-pie-chart3:before {
1342
+ content: "\ea56";
1343
+ }
1344
+ .mf-pipe:before {
1345
+ content: "\ea57";
1346
+ }
1347
+ .mf-placeholder1:before {
1348
+ content: "\ea58";
1349
+ }
1350
+ .mf-placeholder2:before {
1351
+ content: "\ea59";
1352
+ }
1353
+ .mf-planet-earth:before {
1354
+ content: "\ea5a";
1355
+ }
1356
+ .mf-play-button1:before {
1357
+ content: "\ea5b";
1358
+ }
1359
+ .mf-power-button:before {
1360
+ content: "\ea5c";
1361
+ }
1362
+ .mf-presentation:before {
1363
+ content: "\ea5d";
1364
+ }
1365
+ .mf-presentation1:before {
1366
+ content: "\ea5e";
1367
+ }
1368
+ .mf-printer1:before {
1369
+ content: "\ea5f";
1370
+ }
1371
+ .mf-push-pin:before {
1372
+ content: "\ea60";
1373
+ }
1374
+ .mf-push-pin1:before {
1375
+ content: "\ea61";
1376
+ }
1377
+ .mf-refresh:before {
1378
+ content: "\ea62";
1379
+ }
1380
+ .mf-reload:before {
1381
+ content: "\ea63";
1382
+ }
1383
+ .mf-return:before {
1384
+ content: "\ea64";
1385
+ }
1386
+ .mf-rocket-ship:before {
1387
+ content: "\ea65";
1388
+ }
1389
+ .mf-rss1:before {
1390
+ content: "\ea66";
1391
+ }
1392
+ .mf-safebox:before {
1393
+ content: "\ea67";
1394
+ }
1395
+ .mf-safebox1:before {
1396
+ content: "\ea68";
1397
+ }
1398
+ .mf-settings1:before {
1399
+ content: "\ea69";
1400
+ }
1401
+ .mf-settings-2:before {
1402
+ content: "\ea6b";
1403
+ }
1404
+ .mf-sewing-machine:before {
1405
+ content: "\ea6c";
1406
+ }
1407
+ .mf-share2:before {
1408
+ content: "\ea6d";
1409
+ }
1410
+ .mf-shield1:before {
1411
+ content: "\ea6e";
1412
+ }
1413
+ .mf-shield11:before {
1414
+ content: "\ea6f";
1415
+ }
1416
+ .mf-shopping:before {
1417
+ content: "\ea70";
1418
+ }
1419
+ .mf-shopping-bag:before {
1420
+ content: "\ea71";
1421
+ }
1422
+ .mf-shopping-bag-1:before {
1423
+ content: "\ea72";
1424
+ }
1425
+ .mf-shopping-bag-2:before {
1426
+ content: "\ea73";
1427
+ }
1428
+ .mf-shopping-cart11:before {
1429
+ content: "\ea74";
1430
+ }
1431
+ .mf-shopping-cart2:before {
1432
+ content: "\ea75";
1433
+ }
1434
+ .mf-shopping-cart-1:before {
1435
+ content: "\ea76";
1436
+ }
1437
+ .mf-shopping-cart-2:before {
1438
+ content: "\ea77";
1439
+ }
1440
+ .mf-shopping-cart-3:before {
1441
+ content: "\ea78";
1442
+ }
1443
+ .mf-smartphone2:before {
1444
+ content: "\ea79";
1445
+ }
1446
+ .mf-speaker:before {
1447
+ content: "\ea7a";
1448
+ }
1449
+ .mf-speakers:before {
1450
+ content: "\ea7b";
1451
+ }
1452
+ .mf-stats:before {
1453
+ content: "\ea7c";
1454
+ }
1455
+ .mf-stats-1:before {
1456
+ content: "\ea7d";
1457
+ }
1458
+ .mf-stats-2:before {
1459
+ content: "\ea7e";
1460
+ }
1461
+ .mf-stats-3:before {
1462
+ content: "\ea7f";
1463
+ }
1464
+ .mf-stats-4:before {
1465
+ content: "\ea80";
1466
+ }
1467
+ .mf-stats-5:before {
1468
+ content: "\ea81";
1469
+ }
1470
+ .mf-stats-6:before {
1471
+ content: "\ea82";
1472
+ }
1473
+ .mf-sticky-note:before {
1474
+ content: "\ea83";
1475
+ }
1476
+ .mf-store1:before {
1477
+ content: "\ea84";
1478
+ }
1479
+ .mf-store-1:before {
1480
+ content: "\ea85";
1481
+ }
1482
+ .mf-suitcase:before {
1483
+ content: "\ea86";
1484
+ }
1485
+ .mf-suitcase-1:before {
1486
+ content: "\ea87";
1487
+ }
1488
+ .mf-tag2:before {
1489
+ content: "\ea88";
1490
+ }
1491
+ .mf-target:before {
1492
+ content: "\ea89";
1493
+ }
1494
+ .mf-team2:before {
1495
+ content: "\ea8a";
1496
+ }
1497
+ .mf-tie:before {
1498
+ content: "\ea8b";
1499
+ }
1500
+ .mf-trash1:before {
1501
+ content: "\ea8c";
1502
+ }
1503
+ .mf-trolley:before {
1504
+ content: "\ea8d";
1505
+ }
1506
+ .mf-trolley-1:before {
1507
+ content: "\ea8e";
1508
+ }
1509
+ .mf-trolley-2:before {
1510
+ content: "\ea8f";
1511
+ }
1512
+ .mf-trophy1:before {
1513
+ content: "\ea90";
1514
+ }
1515
+ .mf-truck1:before {
1516
+ content: "\ea91";
1517
+ }
1518
+ .mf-truck-1:before {
1519
+ content: "\ea92";
1520
+ }
1521
+ .mf-truck-2:before {
1522
+ content: "\ea93";
1523
+ }
1524
+ .mf-umbrella:before {
1525
+ content: "\ea94";
1526
+ }
1527
+ .mf-upload1:before {
1528
+ content: "\ea95";
1529
+ }
1530
+ .mf-user1:before {
1531
+ content: "\ea96";
1532
+ }
1533
+ .mf-user-1:before {
1534
+ content: "\ea97";
1535
+ }
1536
+ .mf-user-2:before {
1537
+ content: "\ea98";
1538
+ }
1539
+ .mf-user-3:before {
1540
+ content: "\ea99";
1541
+ }
1542
+ .mf-users2:before {
1543
+ content: "\ea9a";
1544
+ }
1545
+ .mf-video-camera:before {
1546
+ content: "\ea9b";
1547
+ }
1548
+ .mf-voucher:before {
1549
+ content: "\ea9c";
1550
+ }
1551
+ .mf-voucher-1:before {
1552
+ content: "\ea9d";
1553
+ }
1554
+ .mf-voucher-2:before {
1555
+ content: "\ea9e";
1556
+ }
1557
+ .mf-voucher-3:before {
1558
+ content: "\ea9f";
1559
+ }
1560
+ .mf-voucher-4:before {
1561
+ content: "\eaa0";
1562
+ }
1563
+ .mf-wallet:before {
1564
+ content: "\eaa1";
1565
+ }
1566
+ .mf-wallet1:before {
1567
+ content: "\eaa2";
1568
+ }
1569
+ .mf-wifi:before {
1570
+ content: "\eaa3";
1571
+ }
1572
+ .mf-worker:before {
1573
+ content: "\eaa4";
1574
+ }
1575
+ .mf-zoom-in:before {
1576
+ content: "\eaa5";
1577
+ }
1578
+ .mf-zoom-out:before {
1579
+ content: "\eaa6";
1580
+ }
1581
+ .mf-burger-menu:before {
1582
+ content: "\eab8";
1583
+ }
1584
+ .mf-squares:before {
1585
+ content: "\eaa7";
1586
+ }
1587
+ .mf-options:before {
1588
+ content: "\eaa8";
1589
+ }
1590
+ .mf-apps:before {
1591
+ content: "\eaa9";
1592
+ }
1593
+ .mf-menu-11:before {
1594
+ content: "\eaaa";
1595
+ }
1596
+ .mf-menu11:before {
1597
+ content: "\eaab";
1598
+ }
1599
+ .mf-back_up:before {
1600
+ content: "\eaad";
1601
+ }
1602
+ .mf-cart11:before {
1603
+ content: "\eaae";
1604
+ }
1605
+ .mf-checkmark:before {
1606
+ content: "\eab0";
1607
+ }
1608
+ .mf-dollar:before {
1609
+ content: "\eab1";
1610
+ }
1611
+ .mf-domian:before {
1612
+ content: "\eab2";
1613
+ }
1614
+ .mf-hosting1:before {
1615
+ content: "\eab3";
1616
+ }
1617
+ .mf-key2:before {
1618
+ content: "\eab4";
1619
+ }
1620
+ .mf-migration:before {
1621
+ content: "\eab5";
1622
+ }
1623
+ .mf-play1:before {
1624
+ content: "\eab6";
1625
+ }
1626
+ .mf-quote2:before {
1627
+ content: "\eab7";
1628
+ }
1629
+ .mf-api_setup:before {
1630
+ content: "\eab9";
1631
+ }
1632
+ .mf-coin:before {
1633
+ content: "\eaba";
1634
+ }
1635
+ .mf-hand_shake:before {
1636
+ content: "\eabb";
1637
+ }
1638
+ .mf-idea_generate:before {
1639
+ content: "\eabc";
1640
+ }
1641
+ .mf-page_search:before {
1642
+ content: "\eabd";
1643
+ }
1644
+ .mf-pen_shape:before {
1645
+ content: "\eabe";
1646
+ }
1647
+ .mf-pencil_art:before {
1648
+ content: "\eabf";
1649
+ }
1650
+ .mf-review:before {
1651
+ content: "\eac0";
1652
+ }
1653
+ .mf-star:before {
1654
+ content: "\eac1";
1655
+ }
1656
+ .mf-timing:before {
1657
+ content: "\eac2";
1658
+ }
1659
+ .mf-trophy:before {
1660
+ content: "\eac3";
1661
+ }
1662
+ .mf-communication:before {
1663
+ content: "\eac4";
1664
+ }
1665
+ .mf-money-bag2:before {
1666
+ content: "\eac5";
1667
+ }
1668
+ .mf-dentist:before {
1669
+ content: "\eac6";
1670
+ }
1671
+ .mf-bill:before {
1672
+ content: "\eac7";
1673
+ }
1674
+ .mf-label:before {
1675
+ content: "\eac8";
1676
+ }
1677
+ .mf-money:before {
1678
+ content: "\eac9";
1679
+ }
1680
+ .mf-shield:before {
1681
+ content: "\eaca";
1682
+ }
1683
+ .mf-support:before {
1684
+ content: "\eacb";
1685
+ }
1686
+ .mf-one:before {
1687
+ content: "\eacc";
1688
+ }
1689
+ .mf-clock:before {
1690
+ content: "\eacd";
1691
+ }
1692
+ .mf-cart:before {
1693
+ content: "\eace";
1694
+ }
1695
+ .mf-globe:before {
1696
+ content: "\eacf";
1697
+ }
1698
+ .mf-tooth:before {
1699
+ content: "\ead0";
1700
+ }
1701
+ .mf-tooth-1:before {
1702
+ content: "\ead1";
1703
+ }
1704
+ .mf-tooth-2:before {
1705
+ content: "\ead2";
1706
+ }
1707
+ .mf-brain:before {
1708
+ content: "\ead3";
1709
+ }
1710
+ .mf-view:before {
1711
+ content: "\ead4";
1712
+ }
1713
+ .mf-doctor:before {
1714
+ content: "\ead5";
1715
+ }
1716
+ .mf-heart:before {
1717
+ content: "\ead6";
1718
+ }
1719
+ .mf-medicine:before {
1720
+ content: "\ead7";
1721
+ }
1722
+ .mf-stethoscope:before {
1723
+ content: "\ead8";
1724
+ }
1725
+ .mf-hospital:before {
1726
+ content: "\ead9";
1727
+ }
1728
+ .mf-clipboard:before {
1729
+ content: "\eada";
1730
+ }
1731
+ .mf-medicine-1:before {
1732
+ content: "\eadb";
1733
+ }
1734
+ .mf-hospital-1:before {
1735
+ content: "\eadc";
1736
+ }
1737
+ .mf-customer-support:before {
1738
+ content: "\eadd";
1739
+ }
1740
+ .mf-brickwall:before {
1741
+ content: "\eade";
1742
+ }
1743
+ .mf-crane2:before {
1744
+ content: "\eadf";
1745
+ }
1746
+ .mf-valve:before {
1747
+ content: "\eae1";
1748
+ }
1749
+ .mf-safety:before {
1750
+ content: "\eae2";
1751
+ }
1752
+ .mf-energy-saving:before {
1753
+ content: "\eae3";
1754
+ }
1755
+ .mf-paint-roller:before {
1756
+ content: "\eae4";
1757
+ }
1758
+ .mf-paint-brushes:before {
1759
+ content: "\eae5";
1760
+ }
1761
+ .mf-construction-tool-vehicle-with-crane-lifting-materials:before {
1762
+ content: "\eae6";
1763
+ }
1764
+ .mf-trowel:before {
1765
+ content: "\eae7";
1766
+ }
1767
+ .mf-bucket:before {
1768
+ content: "\eae8";
1769
+ }
1770
+ .mf-smart:before {
1771
+ content: "\eae9";
1772
+ }
1773
+ .mf-repair:before {
1774
+ content: "\eaea";
1775
+ }
1776
+ .mf-saw:before {
1777
+ content: "\eaeb";
1778
+ }
1779
+ .mf-cutter:before {
1780
+ content: "\eaec";
1781
+ }
1782
+ .mf-plier:before {
1783
+ content: "\eaed";
1784
+ }
1785
+ .mf-drill:before {
1786
+ content: "\eaee";
1787
+ }
1788
+ .mf-save-money:before {
1789
+ content: "\eaef";
1790
+ }
1791
+ .mf-planting:before {
1792
+ content: "\eaf0";
1793
+ }
1794
+ .mf-line-chart:before {
1795
+ content: "\eaf1";
1796
+ }
1797
+ .mf-open-book:before {
1798
+ content: "\eaf2";
1799
+ }
1800
+ .mf-money-bag3:before {
1801
+ content: "\eaf3";
1802
+ }
1803
+ .mf-server:before {
1804
+ content: "\eaf4";
1805
+ }
1806
+ .mf-server-1:before {
1807
+ content: "\eaf5";
1808
+ }
1809
+ .mf-server-2:before {
1810
+ content: "\eaf6";
1811
+ }
1812
+ .mf-cloud-computing:before {
1813
+ content: "\eaf7";
1814
+ }
1815
+ .mf-cloud:before {
1816
+ content: "\eaf8";
1817
+ }
1818
+ .mf-database:before {
1819
+ content: "\eaf9";
1820
+ }
1821
+ .mf-computer:before {
1822
+ content: "\eafa";
1823
+ }
1824
+ .mf-server-3:before {
1825
+ content: "\eafb";
1826
+ }
1827
+ .mf-server-4:before {
1828
+ content: "\eafc";
1829
+ }
1830
+ .mf-server-5:before {
1831
+ content: "\eafd";
1832
+ }
1833
+ .mf-server-6:before {
1834
+ content: "\eafe";
1835
+ }
1836
+ .mf-server-7:before {
1837
+ content: "\eaff";
1838
+ }
1839
+ .mf-cloud-1:before {
1840
+ content: "\eb00";
1841
+ }
1842
+ .mf-server-8:before {
1843
+ content: "\eb01";
1844
+ }
1845
+ .mf-business-and-finance:before {
1846
+ content: "\eb02";
1847
+ }
1848
+ .mf-cloud-2:before {
1849
+ content: "\eb03";
1850
+ }
1851
+ .mf-server-9:before {
1852
+ content: "\eb04";
1853
+ }
1854
+ .mf-hosting:before {
1855
+ content: "\eb05";
1856
+ }
1857
+ .mf-car:before {
1858
+ content: "\eb06";
1859
+ }
1860
+ .mf-car-frontal-view:before {
1861
+ content: "\eb07";
1862
+ }
1863
+ .mf-car-1:before {
1864
+ content: "\eb08";
1865
+ }
1866
+ .mf-racing:before {
1867
+ content: "\eb09";
1868
+ }
1869
+ .mf-car-wheel:before {
1870
+ content: "\eb0a";
1871
+ }
1872
+ .mf-steering-wheel:before {
1873
+ content: "\eb0b";
1874
+ }
1875
+ .mf-frontal-taxi-cab:before {
1876
+ content: "\eb0c";
1877
+ }
1878
+ .mf-taxi:before {
1879
+ content: "\eb0d";
1880
+ }
1881
+ .mf-cosmetics:before {
1882
+ content: "\eb0e";
1883
+ }
1884
+ .mf-flower:before {
1885
+ content: "\eb0f";
1886
+ }
1887
+ .mf-mirror:before {
1888
+ content: "\eb10";
1889
+ }
1890
+ .mf-itunes:before {
1891
+ content: "\eb6b";
1892
+ }
1893
+ .mf-salon:before {
1894
+ content: "\eb11";
1895
+ }
1896
+ .mf-hair-dryer:before {
1897
+ content: "\eb12";
1898
+ }
1899
+ .mf-shampoo:before {
1900
+ content: "\eb13";
1901
+ }
1902
+ .mf-download-button:before {
1903
+ content: "\e90b";
1904
+ }
1905
+ .mf-list:before {
1906
+ content: "\eb14";
1907
+ }
1908
+ .mf-loupe:before {
1909
+ content: "\eb15";
1910
+ }
1911
+ .mf-search:before {
1912
+ content: "\eb16";
1913
+ }
1914
+ .mf-search-1:before {
1915
+ content: "\eb17";
1916
+ }
1917
+ .mf-shopping-cart:before {
1918
+ content: "\eb18";
1919
+ }
1920
+ .mf-menu:before {
1921
+ content: "\eb19";
1922
+ }
1923
+ .mf-menu-1:before {
1924
+ content: "\eb1a";
1925
+ }
1926
+ .mf-menu-button-of-three-horizontal-lines:before {
1927
+ content: "\eb1b";
1928
+ }
1929
+ .mf-menu-2:before {
1930
+ content: "\eb1c";
1931
+ }
1932
+ .mf-menu-3:before {
1933
+ content: "\eb1d";
1934
+ }
1935
+ .mf-menu-5:before {
1936
+ content: "\eb1f";
1937
+ }
1938
+ .mf-menu-button:before {
1939
+ content: "\eb20";
1940
+ }
1941
+ .mf-list-1:before {
1942
+ content: "\eb21";
1943
+ }
1944
+ .mf-menu-6:before {
1945
+ content: "\eb22";
1946
+ }
1947
+ .mf-menu-7:before {
1948
+ content: "\eb23";
1949
+ }
1950
+ .mf-menu-8:before {
1951
+ content: "\eb24";
1952
+ }
1953
+ .mf-list-2:before {
1954
+ content: "\eb25";
1955
+ }
1956
+ .mf-dot:before {
1957
+ content: "\eb26";
1958
+ }
1959
+ .mf-menu-9:before {
1960
+ content: "\eb27";
1961
+ }
1962
+ .mf-search11:before {
1963
+ content: "\eb28";
1964
+ }
1965
+ .mf-search-minus:before {
1966
+ content: "\eb29";
1967
+ }
1968
+ .mf-search-11:before {
1969
+ content: "\eb2a";
1970
+ }
1971
+ .mf-search-2:before {
1972
+ content: "\eb2b";
1973
+ }
1974
+ .mf-search-3:before {
1975
+ content: "\eb2c";
1976
+ }
1977
+ .mf-magnifying-glass-search:before {
1978
+ content: "\eb2d";
1979
+ }
1980
+ .mf-loupe1:before {
1981
+ content: "\eb2e";
1982
+ }
1983
+ .mf-speed:before {
1984
+ content: "\eb2f";
1985
+ }
1986
+ .mf-search21:before {
1987
+ content: "\eb30";
1988
+ }
1989
+ .mf-search-4:before {
1990
+ content: "\eb31";
1991
+ }
1992
+ .mf-search-5:before {
1993
+ content: "\eb32";
1994
+ }
1995
+ .mf-detective:before {
1996
+ content: "\eb33";
1997
+ }
1998
+ .mf-cart1:before {
1999
+ content: "\eb34";
2000
+ }
2001
+ .mf-buying-on-smartphone:before {
2002
+ content: "\eb35";
2003
+ }
2004
+ .mf-badge:before {
2005
+ content: "\eb36";
2006
+ }
2007
+ .mf-basket1:before {
2008
+ content: "\eb37";
2009
+ }
2010
+ .mf-commerce-and-shopping:before {
2011
+ content: "\eb38";
2012
+ }
2013
+ .mf-comment:before {
2014
+ content: "\eb39";
2015
+ }
2016
+ .mf-comment-1:before {
2017
+ content: "\eb3a";
2018
+ }
2019
+ .mf-share:before {
2020
+ content: "\eb3b";
2021
+ }
2022
+ .mf-share-1:before {
2023
+ content: "\eb3c";
2024
+ }
2025
+ .mf-share-2:before {
2026
+ content: "\eb3d";
2027
+ }
2028
+ .mf-share-3:before {
2029
+ content: "\eb3e";
2030
+ }
2031
+ .mf-comment1:before {
2032
+ content: "\eb3f";
2033
+ }
2034
+ .mf-favorite:before {
2035
+ content: "\eb40";
2036
+ }
2037
+ .mf-retweet:before {
2038
+ content: "\eb41";
2039
+ }
2040
+ .mf-share1:before {
2041
+ content: "\eb42";
2042
+ }
2043
+ .mf-facebook:before {
2044
+ content: "\eb43";
2045
+ }
2046
+ .mf-twitter:before {
2047
+ content: "\eb44";
2048
+ }
2049
+ .mf-linkedin:before {
2050
+ content: "\eb45";
2051
+ }
2052
+ .mf-whatsapp-1:before {
2053
+ content: "\eb46";
2054
+ }
2055
+ .mf-dribbble:before {
2056
+ content: "\eb47";
2057
+ }
2058
+ .mf-facebook-2:before {
2059
+ content: "\eb48";
2060
+ }
2061
+ .mf-twitter1:before {
2062
+ content: "\eb49";
2063
+ }
2064
+ .mf-vk:before {
2065
+ content: "\eb4a";
2066
+ }
2067
+ .mf-youtube-v:before {
2068
+ content: "\eb4b";
2069
+ }
2070
+ .mf-vimeo:before {
2071
+ content: "\eae0";
2072
+ }
2073
+ .mf-youtube:before {
2074
+ content: "\eb4c";
2075
+ }
2076
+ .mf-snapchat-1:before {
2077
+ content: "\eb4d";
2078
+ }
2079
+ .mf-behance:before {
2080
+ content: "\eb4e";
2081
+ }
2082
+ .mf-github:before {
2083
+ content: "\eb4f";
2084
+ }
2085
+ .mf-pinterest:before {
2086
+ content: "\eb50";
2087
+ }
2088
+ .mf-spotify:before {
2089
+ content: "\eb51";
2090
+ }
2091
+ .mf-soundcloud-1:before {
2092
+ content: "\eb52";
2093
+ }
2094
+ .mf-skype-1:before {
2095
+ content: "\eb53";
2096
+ }
2097
+ .mf-rss:before {
2098
+ content: "\eb54";
2099
+ }
2100
+ .mf-reddit-1:before {
2101
+ content: "\eb55";
2102
+ }
2103
+ .mf-dribbble-1:before {
2104
+ content: "\eb56";
2105
+ }
2106
+ .mf-wordpress-1:before {
2107
+ content: "\eb57";
2108
+ }
2109
+ .mf-logo:before {
2110
+ content: "\eb58";
2111
+ }
2112
+ .mf-dropbox-1:before {
2113
+ content: "\eb59";
2114
+ }
2115
+ .mf-blogger-1:before {
2116
+ content: "\eb5a";
2117
+ }
2118
+ .mf-photo:before {
2119
+ content: "\eb5b";
2120
+ }
2121
+ .mf-hangouts:before {
2122
+ content: "\eb5c";
2123
+ }
2124
+ .mf-xing:before {
2125
+ content: "\eb5d";
2126
+ }
2127
+ .mf-myspace:before {
2128
+ content: "\eb5e";
2129
+ }
2130
+ .mf-flickr-1:before {
2131
+ content: "\eb5f";
2132
+ }
2133
+ .mf-envato:before {
2134
+ content: "\eb60";
2135
+ }
2136
+ .mf-picasa-1:before {
2137
+ content: "\eb61";
2138
+ }
2139
+ .mf-wattpad:before {
2140
+ content: "\eb62";
2141
+ }
2142
+ .mf-emoji:before {
2143
+ content: "\eb63";
2144
+ }
2145
+ .mf-deviantart-1:before {
2146
+ content: "\eb64";
2147
+ }
2148
+ .mf-yahoo-1:before {
2149
+ content: "\eb65";
2150
+ }
2151
+ .mf-vine-1:before {
2152
+ content: "\eb66";
2153
+ }
2154
+ .mf-delicious:before {
2155
+ content: "\eb67";
2156
+ }
2157
+ .mf-kickstarter-1:before {
2158
+ content: "\eb68";
2159
+ }
2160
+ .mf-stumbleupon-1:before {
2161
+ content: "\eb69";
2162
+ }
2163
+ .mf-brands-and-logotypes:before {
2164
+ content: "\eb6a";
2165
+ }
2166
+ .mf-instagram-1:before {
2167
+ content: "\eb6c";
2168
+ }
2169
+ .mf-facebook-1:before {
2170
+ content: "\eb6d";
2171
+ }
2172
+ .mf-instagram-2:before {
2173
+ content: "\eb6e";
2174
+ }
2175
+ .mf-twitter-1:before {
2176
+ content: "\eb6f";
2177
+ }
2178
+ .mf-whatsapp-2:before {
2179
+ content: "\eb70";
2180
+ }
2181
+ .mf-youtube-1:before {
2182
+ content: "\eb71";
2183
+ }
2184
+ .mf-linkedin-1:before {
2185
+ content: "\eb72";
2186
+ }
2187
+ .mf-telegram:before {
2188
+ content: "\eb73";
2189
+ }
2190
+ .mf-github-1:before {
2191
+ content: "\eb74";
2192
+ }
2193
+ .mf-vk-1:before {
2194
+ content: "\eb75";
2195
+ }
2196
+ .mf-pinterest-1:before {
2197
+ content: "\eb76";
2198
+ }
2199
+ .mf-rss-1:before {
2200
+ content: "\eb77";
2201
+ }
2202
+ .mf-twitch:before {
2203
+ content: "\eb78";
2204
+ }
2205
+ .mf-snapchat-2:before {
2206
+ content: "\eb79";
2207
+ }
2208
+ .mf-skype-2:before {
2209
+ content: "\eb7a";
2210
+ }
2211
+ .mf-behance-2:before {
2212
+ content: "\eb7b";
2213
+ }
2214
+ .mf-spotify-1:before {
2215
+ content: "\eb7c";
2216
+ }
2217
+ .mf-periscope:before {
2218
+ content: "\eb7d";
2219
+ }
2220
+ .mf-dribbble-2:before {
2221
+ content: "\eb7e";
2222
+ }
2223
+ .mf-tumblr-1:before {
2224
+ content: "\eb7f";
2225
+ }
2226
+ .mf-soundcloud-2:before {
2227
+ content: "\eb80";
2228
+ }
2229
+ .mf-google-drive-1:before {
2230
+ content: "\eb81";
2231
+ }
2232
+ .mf-dropbox-2:before {
2233
+ content: "\eb82";
2234
+ }
2235
+ .mf-reddit-2:before {
2236
+ content: "\eb83";
2237
+ }
2238
+ .mf-html:before {
2239
+ content: "\eb84";
2240
+ }
2241
+ .mf-vimeo-1:before {
2242
+ content: "\eb85";
2243
+ }
2244
+ .mf-hangout:before {
2245
+ content: "\eb86";
2246
+ }
2247
+ .mf-blogger-2:before {
2248
+ content: "\eb87";
2249
+ }
2250
+ .mf-yahoo-2:before {
2251
+ content: "\eb88";
2252
+ }
2253
+ .mf-path:before {
2254
+ content: "\eb89";
2255
+ }
2256
+ .mf-yelp-1:before {
2257
+ content: "\eb8a";
2258
+ }
2259
+ .mf-slideshare:before {
2260
+ content: "\eb8b";
2261
+ }
2262
+ .mf-picasa-2:before {
2263
+ content: "\eb8c";
2264
+ }
2265
+ .mf-myspace-1:before {
2266
+ content: "\eb8d";
2267
+ }
2268
+ .mf-flickr-2:before {
2269
+ content: "\eb8e";
2270
+ }
2271
+ .mf-xing-1:before {
2272
+ content: "\eb8f";
2273
+ }
2274
+ .mf-envato-1:before {
2275
+ content: "\eb90";
2276
+ }
2277
+ .mf-swarm:before {
2278
+ content: "\eb91";
2279
+ }
2280
+ .mf-wattpad-1:before {
2281
+ content: "\eb92";
2282
+ }
2283
+ .mf-foursquare:before {
2284
+ content: "\eb93";
2285
+ }
2286
+ .mf-deviantart-2:before {
2287
+ content: "\eb94";
2288
+ }
2289
+ .mf-kickstarter-2:before {
2290
+ content: "\eb95";
2291
+ }
2292
+ .mf-delicious-1:before {
2293
+ content: "\eb96";
2294
+ }
2295
+ .mf-vine-2:before {
2296
+ content: "\eb97";
2297
+ }
2298
+ .mf-digg:before {
2299
+ content: "\eb98";
2300
+ }
2301
+ .mf-bebo:before {
2302
+ content: "\eb99";
2303
+ }
2304
+ .mf-stumbleupon-2:before {
2305
+ content: "\eb9a";
2306
+ }
2307
+ .mf-forrst:before {
2308
+ content: "\eb9b";
2309
+ }
2310
+ .mf-eye3:before {
2311
+ content: "\eb9d";
2312
+ }
2313
+ .mf-microscope:before {
2314
+ content: "\eb9e";
2315
+ }
2316
+ .mf-Anti-Lock:before {
2317
+ content: "\eb9f";
2318
+ }
2319
+ .mf-apartment:before {
2320
+ content: "\eba0";
2321
+ }
2322
+ .mf-app:before {
2323
+ content: "\eba2";
2324
+ }
2325
+ .mf-Aroma:before {
2326
+ content: "\eba3";
2327
+ }
2328
+ .mf-bamboo-Leaf:before {
2329
+ content: "\eba5";
2330
+ }
2331
+ .mf-basket:before {
2332
+ content: "\eba6";
2333
+ }
2334
+ .mf-Battery:before {
2335
+ content: "\eba7";
2336
+ }
2337
+ .mf-Bettery:before {
2338
+ content: "\eba8";
2339
+ }
2340
+ .mf-building:before {
2341
+ content: "\eba9";
2342
+ }
2343
+ .mf-car-2:before {
2344
+ content: "\ebaa";
2345
+ }
2346
+ .mf-Car:before {
2347
+ content: "\ebab";
2348
+ }
2349
+ .mf-Child:before {
2350
+ content: "\ebac";
2351
+ }
2352
+ .mf-cityscape:before {
2353
+ content: "\ebad";
2354
+ }
2355
+ .mf-cleaner:before {
2356
+ content: "\ebae";
2357
+ }
2358
+ .mf-Coffee-cup:before {
2359
+ content: "\ebaf";
2360
+ }
2361
+ .mf-coins:before {
2362
+ content: "\ebb0";
2363
+ }
2364
+ .mf-Computer:before {
2365
+ content: "\ebb1";
2366
+ }
2367
+ .mf-Consultancy:before {
2368
+ content: "\ebb2";
2369
+ }
2370
+ .mf-cottage:before {
2371
+ content: "\ebb3";
2372
+ }
2373
+ .mf-crane:before {
2374
+ content: "\ebb4";
2375
+ }
2376
+ .mf-Custom-api:before {
2377
+ content: "\ebb5";
2378
+ }
2379
+ .mf-customer-support-2:before {
2380
+ content: "\ebb6";
2381
+ }
2382
+ .mf-Design-2:before {
2383
+ content: "\ebb7";
2384
+ }
2385
+ .mf-Design-3:before {
2386
+ content: "\ebb8";
2387
+ }
2388
+ .mf-design:before {
2389
+ content: "\ebb9";
2390
+ }
2391
+ .mf-diamond:before {
2392
+ content: "\ebba";
2393
+ }
2394
+ .mf-diploma:before {
2395
+ content: "\ebbb";
2396
+ }
2397
+ .mf-Document-Search:before {
2398
+ content: "\ebbc";
2399
+ }
2400
+ .mf-Download:before {
2401
+ content: "\ebbd";
2402
+ }
2403
+ .mf-drilling:before {
2404
+ content: "\ebbe";
2405
+ }
2406
+ .mf-engine:before {
2407
+ content: "\ebbf";
2408
+ }
2409
+ .mf-engineer:before {
2410
+ content: "\ebc0";
2411
+ }
2412
+ .mf-envelope:before {
2413
+ content: "\ebc1";
2414
+ }
2415
+ .mf-Family:before {
2416
+ content: "\ebc2";
2417
+ }
2418
+ .mf-friendship:before {
2419
+ content: "\ebc3";
2420
+ }
2421
+ .mf-gift:before {
2422
+ content: "\ebc4";
2423
+ }
2424
+ .mf-graph-2:before {
2425
+ content: "\ebc5";
2426
+ }
2427
+ .mf-graph:before {
2428
+ content: "\ebc6";
2429
+ }
2430
+ .mf-hamburger-2:before {
2431
+ content: "\ebc7";
2432
+ }
2433
+ .mf-handshake:before {
2434
+ content: "\ebc8";
2435
+ }
2436
+ .mf-Helmet:before {
2437
+ content: "\ebc9";
2438
+ }
2439
+ .mf-hot-Stone-2:before {
2440
+ content: "\ebca";
2441
+ }
2442
+ .mf-hot-stone:before {
2443
+ content: "\ebcb";
2444
+ }
2445
+ .mf-idea:before {
2446
+ content: "\ebcc";
2447
+ }
2448
+ .mf-Leaf:before {
2449
+ content: "\ebcd";
2450
+ }
2451
+ .mf-management:before {
2452
+ content: "\ebce";
2453
+ }
2454
+ .mf-Massage-table:before {
2455
+ content: "\ebcf";
2456
+ }
2457
+ .mf-Mechanic:before {
2458
+ content: "\ebd0";
2459
+ }
2460
+ .mf-Money-2:before {
2461
+ content: "\ebd2";
2462
+ }
2463
+ .mf-money-bag:before {
2464
+ content: "\ebd3";
2465
+ }
2466
+ .mf-Money:before {
2467
+ content: "\ebd4";
2468
+ }
2469
+ .mf-oil-bottle:before {
2470
+ content: "\ebd5";
2471
+ }
2472
+ .mf-Physiotherapy:before {
2473
+ content: "\ebd6";
2474
+ }
2475
+ .mf-Profile:before {
2476
+ content: "\ebd7";
2477
+ }
2478
+ .mf-Rating:before {
2479
+ content: "\ebd8";
2480
+ }
2481
+ .mf-right-mark:before {
2482
+ content: "\ebd9";
2483
+ }
2484
+ .mf-rings:before {
2485
+ content: "\ebda";
2486
+ }
2487
+ .mf-Safe-house:before {
2488
+ content: "\ebdb";
2489
+ }
2490
+ .mf-Scan:before {
2491
+ content: "\ebdc";
2492
+ }
2493
+ .mf-social-care:before {
2494
+ content: "\ebdd";
2495
+ }
2496
+ .mf-Speed-Clock:before {
2497
+ content: "\ebde";
2498
+ }
2499
+ .mf-stopwatch:before {
2500
+ content: "\ebdf";
2501
+ }
2502
+ .mf-Support-2:before {
2503
+ content: "\ebe0";
2504
+ }
2505
+ .mf-target-2:before {
2506
+ content: "\ebe1";
2507
+ }
2508
+ .mf-Target:before {
2509
+ content: "\ebe2";
2510
+ }
2511
+ .mf-tripod:before {
2512
+ content: "\ebe3";
2513
+ }
2514
+ .mf-truck:before {
2515
+ content: "\ebe4";
2516
+ }
2517
+ .mf-university:before {
2518
+ content: "\ebe5";
2519
+ }
2520
+ .mf-User:before {
2521
+ content: "\ebe6";
2522
+ }
2523
+ .mf-Web-Portals:before {
2524
+ content: "\ebe7";
2525
+ }
2526
+ .mf-window:before {
2527
+ content: "\ebe8";
2528
+ }
2529
+ .mf-ek_line_icon:before {
2530
+ content: "\ebe9";
2531
+ }
2532
+ .mf-ek_stroke_icon:before {
2533
+ content: "\eba1";
2534
+ }
2535
+ .mf-ekit:before {
2536
+ content: "\e947";
2537
+ }
2538
+ .mf-elements-kit-logo:before {
2539
+ content: "\e90d";
2540
+ }
2541
+ .mf-degree-image:before {
2542
+ content: "\e900";
2543
+ }
2544
+ .mf-accordion:before {
2545
+ content: "\e901";
2546
+ }
2547
+ .mf-animated-flip-box:before {
2548
+ content: "\e902";
2549
+ }
2550
+ .mf-animated-text:before {
2551
+ content: "\e903";
2552
+ }
2553
+ .mf-brands:before {
2554
+ content: "\e904";
2555
+ }
2556
+ .mf-business-hour:before {
2557
+ content: "\e905";
2558
+ }
2559
+ .mf-button:before {
2560
+ content: "\e906";
2561
+ }
2562
+ .mf-carousel:before {
2563
+ content: "\e907";
2564
+ }
2565
+ .mf-Circle-progress:before {
2566
+ content: "\e908";
2567
+ }
2568
+ .mf-contact-form:before {
2569
+ content: "\e909";
2570
+ }
2571
+ .mf-countdown-timer:before {
2572
+ content: "\e90a";
2573
+ }
2574
+ .mf-dropbar:before {
2575
+ content: "\e90c";
2576
+ }
2577
+ .mf-faq:before {
2578
+ content: "\e90e";
2579
+ }
2580
+ .mf-full-width-scroll:before {
2581
+ content: "\e90f";
2582
+ }
2583
+ .mf-google-map:before {
2584
+ content: "\e910";
2585
+ }
2586
+ .mf-heading-style:before {
2587
+ content: "\e911";
2588
+ }
2589
+ .mf-help-desk:before {
2590
+ content: "\e912";
2591
+ }
2592
+ .mf-horizontal-timeline:before {
2593
+ content: "\e913";
2594
+ }
2595
+ .mf-iframe:before {
2596
+ content: "\e914";
2597
+ }
2598
+ .mf-image-comparison:before {
2599
+ content: "\e915";
2600
+ }
2601
+ .mf-image-gallery:before {
2602
+ content: "\e916";
2603
+ }
2604
+ .mf-image-justify:before {
2605
+ content: "\e917";
2606
+ }
2607
+ .mf-image-magnifier:before {
2608
+ content: "\e918";
2609
+ }
2610
+ .mf-image-masonry:before {
2611
+ content: "\e919";
2612
+ }
2613
+ .mf-inline-svg:before {
2614
+ content: "\e91a";
2615
+ }
2616
+ .mf-instagram:before {
2617
+ content: "\e91b";
2618
+ }
2619
+ .mf-listing:before {
2620
+ content: "\e91c";
2621
+ }
2622
+ .mf-music-player:before {
2623
+ content: "\e91d";
2624
+ }
2625
+ .mf-news-ticker:before {
2626
+ content: "\e91e";
2627
+ }
2628
+ .mf-off-canvus-menu:before {
2629
+ content: "\e91f";
2630
+ }
2631
+ .mf-parallax:before {
2632
+ content: "\e920";
2633
+ }
2634
+ .mf-portfolio:before {
2635
+ content: "\e921";
2636
+ }
2637
+ .mf-post-banner:before {
2638
+ content: "\e922";
2639
+ }
2640
+ .mf-post-carousel:before {
2641
+ content: "\e923";
2642
+ }
2643
+ .mf-post-grid:before {
2644
+ content: "\e924";
2645
+ }
2646
+ .mf-post-slider:before {
2647
+ content: "\e925";
2648
+ }
2649
+ .mf-pricing-list:before {
2650
+ content: "\e926";
2651
+ }
2652
+ .mf-pricing-table:before {
2653
+ content: "\e927";
2654
+ }
2655
+ .mf-product-featured:before {
2656
+ content: "\e928";
2657
+ }
2658
+ .mf-product-image:before {
2659
+ content: "\e929";
2660
+ }
2661
+ .mf-product-recent:before {
2662
+ content: "\e92a";
2663
+ }
2664
+ .mf-product-sale:before {
2665
+ content: "\e92b";
2666
+ }
2667
+ .mf-product-top-rated:before {
2668
+ content: "\e92c";
2669
+ }
2670
+ .mf-product-top-seller:before {
2671
+ content: "\e92d";
2672
+ }
2673
+ .mf-progress-bar:before {
2674
+ content: "\e92e";
2675
+ }
2676
+ .mf-protected-content-v2:before {
2677
+ content: "\e92f";
2678
+ }
2679
+ .mf-protected-content-v3:before {
2680
+ content: "\e930";
2681
+ }
2682
+ .mf-protected-content:before {
2683
+ content: "\e931";
2684
+ }
2685
+ .mf-qr_code:before {
2686
+ content: "\e932";
2687
+ }
2688
+ .mf-scroll-button:before {
2689
+ content: "\e933";
2690
+ }
2691
+ .mf-search1:before {
2692
+ content: "\e934";
2693
+ }
2694
+ .mf-service:before {
2695
+ content: "\e935";
2696
+ }
2697
+ .mf-slider-image:before {
2698
+ content: "\e936";
2699
+ }
2700
+ .mf-social-share:before {
2701
+ content: "\e937";
2702
+ }
2703
+ .mf-subscribe:before {
2704
+ content: "\e938";
2705
+ }
2706
+ .mf-tab:before {
2707
+ content: "\e939";
2708
+ }
2709
+ .mf-table:before {
2710
+ content: "\e93a";
2711
+ }
2712
+ .mf-team-join:before {
2713
+ content: "\e93b";
2714
+ }
2715
+ .mf-team-member:before {
2716
+ content: "\e93c";
2717
+ }
2718
+ .mf-testimonial-carousel:before {
2719
+ content: "\e93d";
2720
+ }
2721
+ .mf-testimonial-grid:before {
2722
+ content: "\e93e";
2723
+ }
2724
+ .mf-testimonial-quote:before {
2725
+ content: "\e93f";
2726
+ }
2727
+ .mf-testimonial-slider:before {
2728
+ content: "\e940";
2729
+ }
2730
+ .mf-toggle:before {
2731
+ content: "\e941";
2732
+ }
2733
+ .mf-user-login:before {
2734
+ content: "\e942";
2735
+ }
2736
+ .mf-user-registration:before {
2737
+ content: "\e943";
2738
+ }
2739
+ .mf-vertical-timeline:before {
2740
+ content: "\e944";
2741
+ }
2742
+ .mf-video-player:before {
2743
+ content: "\e945";
2744
+ }
2745
+ .mf-weather:before {
2746
+ content: "\e946";
2747
+ }
public/assets/css/admin-style.css CHANGED
@@ -1 +1,1401 @@
1
- @charset "UTF-8";body.metform_page_metform-menu-settings{overflow-y:scroll}.mf-settings-dashboard{margin-top:40px}.mf-settings-dashboard .attr-row>div{-webkit-box-sizing:border-box;box-sizing:border-box}.mf-settings-dashboard>.attr-row{margin:0}.mf-settings-dashboard .mf-setting-sidebar{position:fixed;width:415px}.nav-tab-wrapper{border:none;padding:0}.mf-admin-setting-btn{border:2px solid #FF433C;color:#FF433C;font-size:14px;line-height:16px;color:#FF433C;text-decoration:none;text-transform:uppercase;border-radius:100px;padding:10px 23px;-webkit-transition:all 0.4s;-o-transition:all 0.4s;transition:all 0.4s;font-weight:bold;cursor:pointer;background-color:#fff;display:inline-block}.mf-admin-setting-btn span{margin-right:6px}.mf-admin-setting-btn.medium{padding:13px 23px}.mf-admin-setting-btn.fatty{padding:17px 23px}.mf-admin-setting-btn.active,.mf-admin-setting-btn:hover{background-color:#FF433C;color:#fff}.mf-admin-setting-btn:focus{-webkit-box-shadow:none;box-shadow:none;outline:none}.mf-settings-tab{margin-bottom:40px}.mf-settings-tab li{-webkit-box-shadow:none;box-shadow:none;border:none;margin:0;background-color:#fff}.mf-settings-tab li:focus,.mf-settings-tab li:hover{outline:none;-webkit-box-shadow:none;box-shadow:none;border:none}.mf-settings-tab li.nav-tab-active{background-color:#FFFFFF;border-left-color:#FF324D;border-radius:10px}.mf-settings-tab li.nav-tab-active .mf-setting-title{color:#FF433C}.mf-settings-tab li.nav-tab-active .mf-setting-nav-link{background-color:#fff;border-top-left-radius:10px;border-bottom-left-radius:10px}.mf-settings-tab li.nav-tab-active .mf-setting-nav-link:before{content:"";background-color:#FF433C;height:10px;width:10px;position:absolute;left:17px;border-radius:100px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.mf-settings-tab .mf-setting-nav-link{outline:none;float:none;display:-webkit-box;display:-ms-flexbox;display:flex;padding:16px 44px 18px 20px;color:#121116;border:none;-webkit-transition:all 100ms ease-out;-o-transition:all 100ms ease-out;transition:all 100ms ease-out;background-color:#f1f1f1;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:0px;-webkit-box-shadow:none;box-shadow:none;position:relative;padding:23px 40px;text-decoration:none;-webkit-transition:all 0.4s;-o-transition:all 0.4s;transition:all 0.4s}.mf-settings-tab .mf-setting-nav-link:focus,.mf-settings-tab .mf-setting-nav-link:hover{outline:none;-webkit-box-shadow:none;box-shadow:none;border:none}.mf-settings-tab .mf-setting-nav-link.mf-setting-nav-link.top{border-bottom-right-radius:20px}.mf-settings-tab .mf-setting-nav-link.mf-setting-nav-link.bottom{border-top-right-radius:20px}.mf-settings-tab .mf-setting-nav-link.mf-setting-nav-hidden{background-color:#F1F1F1;cursor:default;padding:15px}.mf-settings-tab.nav-tab-active.mf-setting-nav-link{border-radius:10px;background-color:#fff}.mf-settings-tab .mf-setting-tab-content .mf-setting-title{font-size:0.8125rem;font-weight:bold;color:#333;display:block;margin-bottom:2px;line-height:1;text-transform:uppercase}.mf-settings-tab .mf-setting-tab-content .mf-setting-subtitle{color:#72777C;font-size:0.8125rem;-webkit-transition:all 150ms ease-out;-o-transition:all 150ms ease-out;transition:all 150ms ease-out}.mf-settings-section{opacity:0;visibility:hidden;-webkit-transition:opacity 0.4s;-o-transition:opacity 0.4s;transition:opacity 0.4s;position:absolute;top:-9999px;display:none}.mf-settings-section.active{opacity:1;position:static;visibility:visible;display:block}.metform-admin-container{background-color:#FFFFFF;padding:50px;border-radius:20px;border:none;min-height:550px;padding-top:30px;margin-bottom:0}.metform-admin-container--body .mf-settings-single-section--title{margin:0;margin-top:0px;color:#FF433C;font-size:24px;line-height:28px;font-weight:bold;vertical-align:middle;position:relative}.metform-admin-container--body .mf-settings-single-section--title span{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;display:inline-block;width:40px;height:40px;line-height:40px!important;margin-right:24px;background-color:rgba(255,67,60,0.1);color:#FF433C;text-align:center;border-radius:5px;vertical-align:middle;font-size:18px;speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased}.metform-admin-container--body .mf-setting-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:40px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-bottom:17px;position:relative;margin-left:-50px;margin-right:-50px;padding-left:50px;padding-right:51px}.metform-admin-container--body .mf-setting-header:before{content:"";position:absolute;display:block;width:48px;height:2px;bottom:-1px;left:0;background:#FF433C;margin-left:50px;margin-right:50px;z-index:2}.metform-admin-container--body .mf-setting-header:after{content:"";position:absolute;display:block;width:calc(100% - 100px);height:1px;bottom:-1px;left:0;background:#E0E4E9;margin-left:50px;z-index:1}.metform-admin-container--body .mf-setting-header.fixed{position:fixed;top:0px;padding-top:20px;background-color:#fff;z-index:999}.metform-admin-container--body .mf-setting-header.fixed+div{padding-top:88px}.metform-admin-container--body .mf-setting-input{width:100%;max-width:100%;margin:0;-webkit-box-sizing:border-box;box-sizing:border-box}.metform-admin-container--body .mf-setting-label{display:block;margin-bottom:8px;color:#101010;font-size:16px;line-height:19px;font-weight:500}.metform-admin-container--body .mf-admin-control-input{margin:0}.metform-admin-container--body .mf-admin-control-input[type=checkbox]{position:relative;-webkit-box-shadow:none;box-shadow:none;height:16px;width:16px;border:2px solid #FF5D20}.metform-admin-container--body .mf-admin-control-input[type=checkbox]:checked:before{content:"";position:absolute;background-color:#FF3747;width:8px;height:9px;-webkit-box-sizing:border-box;box-sizing:border-box;left:2px;border-radius:2px;text-align:center;margin:0;top:1.6px}.metform-admin-container .mf-setting-input{border-radius:3px;padding:5px 15px;height:40px;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:14px;line-height:17px;display:inline-block;color:#555555;-webkit-box-shadow:none;box-shadow:none;color:#121116;border:1px solid #DEE3EA;font-weight:normal}.metform-admin-container .mf-setting-input:active,.metform-admin-container .mf-setting-input:focus{border-color:#FF324D;-webkit-box-shadow:none;box-shadow:none;outline:none}.metform-admin-container .mf-admin-save-icon{color:#fff;font-size:14px;margin-right:6px;height:14px;width:14px}.metform-admin-container .button-primary{text-decoration:none;text-shadow:none;background-color:#FF324D;border-radius:4px;-webkit-box-shadow:0 7px 15px rgba(242,41,91,0.3);box-shadow:0 7px 15px rgba(242,41,91,0.3);font-size:14px;line-height:16px;text-transform:uppercase;color:#fff;font-weight:500;border:none;padding:12px 23px;-webkit-transition:all 0.4s;-o-transition:all 0.4s;transition:all 0.4s;display:-webkit-box;display:-ms-flexbox;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-image:-o-linear-gradient(45deg,#FF324D,#FF6B11);background-image:linear-gradient(45deg,#FF324D,#FF6B11);position:relative;z-index:9}.metform-admin-container .button-primary:focus,.metform-admin-container .button-primary:hover{border:none;outline:none;-webkit-box-shadow:0 7px 15px rgba(242,41,91,0.3);box-shadow:0 7px 15px rgba(242,41,91,0.3)}.metform-admin-container .button-primary:before{border-radius:inherit;background-image:-o-linear-gradient(45deg,#FF6B11,#FF324D);background-image:linear-gradient(45deg,#FF6B11,#FF324D);content:"";display:block;height:100%;position:absolute;top:0;left:0;opacity:0;width:100%;z-index:-1;-webkit-transition:opacity 0.7s ease-in-out;-o-transition:opacity 0.7s ease-in-out;transition:opacity 0.7s ease-in-out}.metform-admin-container .button-primary:hover{background-color:#dc0420}.metform-admin-container .button-primary:hover:before{opacity:1}.mf-recaptcha-settings{display:none}.mf_setting_logo{padding-top:25px}.mf_setting_logo img{max-width:200px}.mf-setting-dashboard-banner{border-radius:20px;padding-top:0}.mf-setting-dashboard-banner img{width:100%}.mf-setting-dashboard-banner--content{padding:30px}.mf-setting-dashboard-banner--content h3{margin:0;margin-bottom:15px}.mf-setting-btn{text-decoration:none;background-color:#FF324D;padding:8px 15px;border:none;-webkit-box-shadow:none;box-shadow:none;background-image:-o-linear-gradient(45deg,#FF324D,#FF6B11);background-image:linear-gradient(45deg,#FF324D,#FF6B11);font-weight:500}.mf-setting-btn-link{background-image:none;color:#1F55F8;border-radius:0;background-color:transparent;border:none;padding:0;text-decoration:none;border-bottom:1px solid #1F55F8;font-weight:600;font-size:14px;display:inline-block;line-height:18px;-webkit-transition:all 0.4s;-o-transition:all 0.4s;transition:all 0.4s}.mf-setting-btn-link:hover{color:#507bff}.mf-setting-separator{margin:50px 0}.mf-setting-input-group{margin-bottom:30px}.mf-setting-input-group:last-child{margin-bottom:0}.mf-setting-input-group .description{font-weight:normal;font-size:13px;line-height:15px;color:#999999;font-style:normal;margin:0;margin-top:8px}.mf-setting-input-desc{display:none;padding-right:100px}.mf-setting-input-desc .mf-setting-btn-link{margin-top:15px}.mf-setting-input-desc--title{margin-top:0;margin-bottom:8px}.mf-setting-input-desc li,.mf-setting-input-desc p{font-size:14px;line-height:18px;color:#111111}.mf-setting-tab-nav{margin-bottom:30px}.mf-setting-tab-nav li{margin-right:15px;cursor:pointer}.mf-setting-tab-nav li:last-child{margin-right:0}.mf-setting-tab-nav .attr-nav-tabs{border:none}.mf-setting-tab-nav .attr-nav-item{border:none;border-radius:4px;text-decoration:none;text-align:center;color:#111111;font-size:14px;text-transform:capitalize;font-weight:600;padding:8px 14px;border:none;margin-right:0;border:none;display:inline-block;-webkit-box-shadow:none;box-shadow:none;z-index:2}.mf-setting-tab-nav .attr-nav-item:hover{color:#fff;background-color:#FF433C}.mf-setting-tab-nav .attr-active .attr-nav-item{color:#ffffff;background-color:#FF433C;border:none}.mf-setting-tab-nav .attr-active .attr-nav-item:active,.mf-setting-tab-nav .attr-active .attr-nav-item:focus,.mf-setting-tab-nav .attr-active .attr-nav-item:hover{border:none;-webkit-box-shadow:none;box-shadow:none;outline:none;color:#fff;background-color:#FF433C}.mf-setting-input-desc-data{display:none}.mf-setting-select-container{position:relative}.mf-setting-select-container .mf-setting-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:none}.mf-setting-select-container:before{content:"";width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #111;position:absolute;right:15px;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);top:50%}.mf-setting-refresh-btn{margin:0 10px;font-size:18px;line-height:24px}.mf-set-dash-tab-img{text-align:center}.mf-set-dash-section{padding:100px 0}.mf-set-dash-section:not(:first-child):not(:last-child){padding-bottom:20px;display:none}#mf-set-dash-rate-now{margin-top:100px}.mf-setting-dash-section-heading{text-align:center;position:relative;margin:0 auto;margin-bottom:32px}.mf-setting-dash-section-heading--title{font-size:36px;line-height:42px;margin:0;color:#121116;font-weight:bold;letter-spacing:-1px}.mf-setting-dash-section-heading--title strong{color:#FF433C}.mf-setting-dash-section-heading--subtitle{color:rgba(0,0,0,0.05);font-size:60px;line-height:69px;margin:0;font-weight:bold;position:absolute;top:-25px;left:50%;width:100%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.mf-setting-dash-section-heading--content{width:440px;margin:0 auto;margin-top:8px}.mf-setting-dash-section-heading--content p{font-size:16px;line-height:21px;color:#121116}.mf-setting-dash-section-heading--content p:first-child{margin-top:0}.mf-setting-dash-section-heading--content p:last-child{margin-bottom:0}.mf-set-dash-top-notch{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;border-right:1px solid #F0F0F0;border-bottom:1px solid #F0F0F0}.mf-set-dash-top-notch--item{-webkit-box-flex:0;-ms-flex:0 0 33.33%;flex:0 0 33.33%;border:1px solid #F0F0F0;-webkit-box-sizing:border-box;box-sizing:border-box;padding:40px;position:relative;border-right:0;border-bottom:0}.mf-set-dash-top-notch--item__title{font-size:18px;line-height:21px;color:#121116;font-weight:600;margin:0;margin-bottom:17px}.mf-set-dash-top-notch--item__desc{font-weight:400;font-size:16px;line-height:21px;color:#999999}.mf-set-dash-top-notch--item:before{content:attr(data-count);font-size:60px;line-height:69px;position:absolute;top:-5px;right:5px;-webkit-text-stroke:2px;-webkit-text-fill-color:transparent;color:#F0F0F0}.mf-set-dash-free-pro-content{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.mf-set-dash-free-pro-content img{max-width:100%}.mf-set-dash-free-pro-content .attr-nav-tabs{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin:0;border:1px solid #F0F0F0;width:290px}.mf-set-dash-free-pro-content .attr-nav-link{text-decoration:none;font-size:16px;line-height:18px;color:#121116!important;border:none!important;padding:20px 23px;margin:0;border-radius:0;-webkit-transition:all 0.4s;-o-transition:all 0.4s;transition:all 0.4s}.mf-set-dash-free-pro-content .attr-nav-link:focus{outline:none;-webkit-box-shadow:none;box-shadow:none;background-color:transparent;border:none}.mf-set-dash-free-pro-content .attr-nav-link:hover{background-color:transparent}.mf-set-dash-free-pro-content .attr-nav-item{border-bottom:1px solid #F0F0F0}.mf-set-dash-free-pro-content .attr-nav-item:last-child{border-bottom:0}.mf-set-dash-free-pro-content .attr-nav-item:focus{outline:none;-webkit-box-shadow:none;box-shadow:none}.mf-set-dash-free-pro-content .attr-nav-item.attr-active>a{border:none}.mf-set-dash-free-pro-content .attr-nav-item.attr-active .attr-nav-link{background-color:#FF433C;color:#fff!important}.mf-set-dash-free-pro-content .attr-nav-item.attr-active .mf-icon{color:#fff}.mf-set-dash-free-pro-content .attr-nav-item.attr-active .mf-set-dash-badge{background-color:#fff}.mf-set-dash-free-pro-content .mf-icon{font-size:14px;color:#FF433C;margin-right:7px}.mf-set-dash-free-pro-content .mf-set-dash-badge{background-color:rgba(242,41,91,0.1);color:#F2295B;font-size:10px;line-height:11px;border-radius:2px;display:inline-block;padding:3px 6px;margin-left:18px;font-weight:600;text-transform:uppercase}.mf-set-dash-free-pro-content .attr-tab-content{border:1px solid #F0F0F0;border-left:0;padding:50px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-flex:0;-ms-flex:0 0 calc(100% - 292px);flex:0 0 calc(100% - 292px)}.mf-set-dash-free-pro-content .attr-tab-content p{font-size:16px;line-height:24px;font-weight:400;color:#444444}.mf-set-dash-free-pro-content .attr-tab-content ul li{color:#444444;font-size:16px;line-height:21px}.mf-set-dash-free-pro-content .attr-tab-content ul li:before{content:"";height:5px;width:5px;background-color:#F2295B;border-radius:100px;display:inline-block;vertical-align:middle;margin-right:7px}.mf-set-dash-free-pro-content .attr-tab-content .mf-admin-setting-btn{margin-top:35px}.admin-bar .mf-setting-header.fixed{top:30px}#mf-set-dash-faq{background-color:#F1F1F1;padding-bottom:100px;margin:100px 0;text-align:center;margin-left:-50px;margin-right:-50px}#mf-set-dash-faq .mf-admin-setting-btn{margin-top:30px}.mf-admin-accordion{max-width:700px;margin:0 auto;margin-top:30px}.mf-admin-single-accordion{background-color:#FFFFFF;-webkit-box-shadow:0 7px 15px rgba(0,0,0,0.07);box-shadow:0 7px 15px rgba(0,0,0,0.07);margin:10px 0;text-align:left}.mf-admin-single-accordion.active .mf-admin-single-accordion--heading:after{content:"";color:#F2295B}.mf-admin-single-accordion--heading{cursor:pointer;margin:0;color:#121116;font-size:14px;line-height:20px;padding:18px 20px;position:relative}.mf-admin-single-accordion--heading:after{content:"";font-family:"metform";position:absolute;right:30px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);font-size:12px}.mf-admin-single-accordion--body{padding:0;display:none}.mf-admin-single-accordion--body__content{padding:30px;padding-top:0}.mf-admin-single-accordion--body p{margin:0}#mf-set-dash-rate-now{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-bottom:0;padding-top:0;-ms-flex-wrap:wrap;flex-wrap:wrap}#mf-set-dash-rate-now .mf-setting-dash-section-heading{text-align:left}#mf-set-dash-rate-now .mf-admin-left-thumb{margin-bottom:-50px;-ms-flex-item-align:end;align-self:flex-end}#mf-set-dash-rate-now>div{-webkit-box-flex:1;-ms-flex:1;flex:1}.mf-admin-left-thumb img{max-width:100%}@media (min-width:768px){.mf-setting-input-desc-data{display:block}.mf-settings-dashboard>.attr-row>div:last-of-type{padding-left:0}.mf-settings-dashboard>.attr-row>div:first-of-type{padding-right:0}}@media (max-width:767px){.mf-setting-dash-section-heading--content{width:100%}.mf-set-dash-free-pro-content .attr-nav-tabs{min-width:100%}.mf-set-dash-free-pro-content .attr-tab-content{border-left:1px solid #F0F0F0;padding:20px;-webkit-box-flex:100%;-ms-flex:100%;flex:100%}.mf-settings-dashboard .mf-setting-sidebar{position:static;width:100%!important}.metform-admin-container{padding:30px}.metform-admin-container--body .mf-setting-header{margin-left:-30px;margin-right:-30px;padding-left:30px;padding-right:30px}.metform-admin-container--body .mf-setting-header:after,.metform-admin-container--body .mf-setting-header:before{margin-left:30px;margin-right:30px}.metform-admin-container--body .mf-setting-header:after{width:calc(100% - 60px)}.mf-set-dash-top-notch--item{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}.admin-bar .mf-setting-header.fixed{top:0px}#mf-set-dash-faq{margin-left:-30px;margin-right:-30px}.mf-admin-left-thumb{margin-bottom:-30px}.mf-admin-left-thumb{text-align:center;width:100%;margin-top:15px}.metform-admin-container--body .mf-settings-single-section--title{font-size:19px}.metform-admin-container--body .mf-settings-single-section--title span{display:none}.mf-setting-dash-section-heading--title{font-size:25px;line-height:30px}.mf-setting-dash-section-heading--subtitle{font-size:52px;line-height:59px}}.mf-setting-spin{-webkit-animation-name:rotate;animation-name:rotate;-webkit-animation-duration:500ms;animation-duration:500ms;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-timing-function:linear}@-webkit-keyframes rotate{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotate{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.loading .attr-modal-content:before{opacity:0.8;position:absolute;content:"";top:0;left:0;height:100%;width:100%;background-color:#fff;-webkit-transition:opaicty 0.5s ease;-o-transition:opaicty 0.5s ease;transition:opaicty 0.5s ease;z-index:5;border-radius:inherit}.loading .mf-spinner{display:block}#metform_form_modal{overflow-y:scroll}.elementor-editor-active .metform-form-save-btn-editor{display:none!important}.attr-modal-dialog-centered{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-top:30px;width:725px;max-width:100%}.attr-modal-dialog-centered .attr-modal-header{padding:36px 50px;border-bottom:none}.attr-modal-dialog-centered .attr-modal-header .attr-modal-title{font-size:20px;font-weight:bold;color:#111111;text-transform:capitalize;margin-bottom:38px;line-height:1}.attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs{border:none;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs li{-webkit-transition:all 0.4s;-o-transition:all 0.4s;transition:all 0.4s}.attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs a{text-decoration:none;color:#111111;font-size:14px;text-transform:capitalize;font-weight:600;padding:8px 10px;border:none;margin-right:0;border:none;-webkit-transition:all 0.4s;-o-transition:all 0.4s;transition:all 0.4s}.attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs a:hover{border:none;background-color:transparent}.attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs a:focus{outline:none;-webkit-box-shadow:none;box-shadow:none;border:none}.attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs li.attr-active a{border:none;color:#ffffff;background-color:#1F55F8;border-radius:4px;text-align:center}.attr-modal-dialog-centered .attr-modal-header button.attr-close{opacity:0.8;font-size:inherit;outline:none;margin-top:-15px;margin-right:-25px}.attr-modal-dialog-centered .attr-modal-header button.attr-close span{color:#e81123;font-size:35px;font-weight:100;background-color:#FCE7E9;height:36px;width:36px;display:inline-block;line-height:36px;border-radius:100px;outline:none;margin-top:5px;font-family:initial}.attr-modal-dialog-centered .attr-tab-content .attr-modal-body{padding:40px 50px;padding-top:0}.attr-modal-dialog-centered .attr-tab-content div#limit_status.hide_input{display:none}.attr-modal-dialog-centered .attr-tab-content .mf-input-group label.attr-input-label{color:#111111;font-size:16px;margin-bottom:7px;display:block;font-weight:500}.attr-modal-dialog-centered .attr-tab-content .mf-input-group{border-bottom:1px solid #f5f5f5;padding-bottom:14px;margin-bottom:14px}.attr-modal-dialog-centered .attr-tab-content .mf-input-group:last-of-type{border-bottom:none;padding-bottom:0}.attr-modal-dialog-centered .attr-tab-content .mf-input-group .attr-form-control,.attr-modal-dialog-centered .attr-tab-content .mf-input-group input{color:#000;font-size:14px;height:48px;padding:0 22px;border-color:#ededed;margin-top:12px;max-width:100%;background-color:#f9f9f9;-webkit-transition:all 0.4s;-o-transition:all 0.4s;transition:all 0.4s}.attr-modal-dialog-centered .attr-tab-content .mf-input-group .attr-form-control:focus,.attr-modal-dialog-centered .attr-tab-content .mf-input-group .attr-form-control:hover,.attr-modal-dialog-centered .attr-tab-content .mf-input-group input:focus,.attr-modal-dialog-centered .attr-tab-content .mf-input-group input:hover{background-color:#fff}.attr-modal-dialog-centered .attr-tab-content .mf-input-group textarea{padding:22px!important}.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox]{display:none}.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox]+span{position:relative;display:block}.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox]+span:before{content:"No";width:55px;height:25px;background-color:#EDEDED;left:0;border-radius:15px;text-align:right;color:#fff;text-transform:uppercase;font-weight:bold;font-size:10px;padding:3px;-webkit-box-sizing:border-box;box-sizing:border-box;padding-right:10px;-webkit-transition:all 0.4s;-o-transition:all 0.4s;transition:all 0.4s;float:right;line-height:18px;cursor:pointer}.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox]+span:after{content:"";width:20px;height:20px;background-color:#fff;border-radius:100px;display:inline-block;position:absolute;right:31px;top:2px;-webkit-transition:all 0.4s;-o-transition:all 0.4s;transition:all 0.4s}.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox]:checked+span:before{content:"Yes";width:55px;height:25px;background-color:#1F55F8;left:0;border-radius:15px;display:inline-block;text-align:left;color:#fff;text-transform:uppercase;font-weight:bold;font-size:10px;padding:3px;-webkit-box-sizing:border-box;box-sizing:border-box;padding-left:10px}.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox]:checked+span:after{content:"";width:20px;height:20px;background-color:#fff;border-radius:100px;display:inline-block;position:absolute;right:2px;top:2px}.attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-rest-api-method{padding:0 18px;margin:0}.attr-modal-dialog-centered .attr-tab-content .mf-input-group span.mf-input-help{color:#b7b7b7;font-style:italic;font-size:12px}.attr-modal-dialog-centered .attr-tab-content .mf-input-group span.mf-input-help strong{color:#555;font-weight:700}.attr-modal-dialog-centered .attr-tab-content .mf-input-group span.mf-input-help a{color:#1F55F8;text-decoration:none;font-weight:700}.attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-input-group-inner label.attr-input-label{display:inline-block}.attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-input-group-inner #limit_status{width:100px;margin:0;position:relative;margin-left:15px;float:right;margin-top:-2px}.attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-input-group-inner input{margin:0}.attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-input-group-inner input[type=checkbox]+span:before{position:relative;top:-2px;left:5px}.attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-input-group-inner input[type=checkbox]+span:after{right:28px;top:0px}.attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-input-group-inner input[type=checkbox]:checked+span:after{right:-2px;top:0}.attr-modal-dialog-centered .attr-tab-content .mf-input-group.mf-input-group-inline{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.attr-modal-dialog-centered .attr-tab-content .mf-input-group.mf-input-group-inline .attr-input-label,.attr-modal-dialog-centered .attr-tab-content .mf-input-group.mf-input-group-inline .mf-inputs{-webkit-box-flex:1;-ms-flex:1;flex:1}.attr-modal-dialog-centered .attr-tab-content .mf-input-group.mf-input-group-inline .attr-input-label select,.attr-modal-dialog-centered .attr-tab-content .mf-input-group.mf-input-group-inline .mf-inputs select{margin:0}.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=number]+span,.attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=text]+span{display:block;margin-top:5px}.attr-modal-dialog-centered .attr-tab-content #limit_status.show_input{margin-top:32px}.attr-modal-dialog-centered .attr-modal-footer{padding:30px 50px}.attr-modal-dialog-centered .attr-modal-footer button{color:#fff;background-color:#1F55F8;font-size:16px;font-weight:bold;-webkit-box-sizing:border-box;box-sizing:border-box;padding:12px 20px;-webkit-box-shadow:none;box-shadow:none;border:1px solid transparent;-webkit-transition:all 0.4s;-o-transition:all 0.4s;transition:all 0.4s;outline:none}.attr-modal-dialog-centered .attr-modal-footer button:focus{border:none;outline:none}.attr-modal-dialog-centered .attr-modal-footer button.metform-form-save-btn-editor{background-color:#d8d8d8;color:#111111}.attr-modal-dialog-centered>form{width:100%}.modal-backdrop{position:fixed;top:0;left:0;width:100vw;height:100vh;background-color:rgba(0,0,0,0.5)}.modal-backdrop{z-index:9999}.attr-modal{z-index:10000}.mf_multipile_ajax_search_filed .select2-container--default .select2-selection--multiple .select2-selection__choice{line-height:1.5;font-size:0.9em;border:none;border-radius:0;color:#6d7882}.mf-headerfooter-status{display:inline-block;margin-left:5px;padding:2px 5px 3px;color:#FFFFFF;background-color:#9a9a9a;border-radius:3px;font-size:10px;line-height:1;font-weight:700}.mf-headerfooter-status-active{background-color:#00cd00}.irs--round .irs-max,.irs--round .irs-min{display:none}.irs--round .irs-handle{cursor:pointer}.mf-success-msg{position:fixed;z-index:9;text-align:center;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);-webkit-box-shadow:0px 2px 5px rgba(153,153,153,0.2);box-shadow:0px 2px 5px rgba(153,153,153,0.2);min-width:300px}textarea.attr-form-control{height:auto!important}.post-type-metform-form .row-actions .inline{display:none!important}div.metform-entry-browser-data table tbody,div.metform-entry-browser-data table thead,div.metform-entry-data table tbody,div.metform-entry-data table thead{text-align:left}img.form-editor-icon{height:20px;width:20px;margin-right:5px;vertical-align:middle}div.mf-file-show button.attr-btn.attr-btn-primary{margin-left:10px}.mf-file-show a{text-decoration:none}.mf-modal-container{margin-top:50px}.mf-modal-container .attr-modal-body img{margin:0 auto}.mf-entry-input,.mf-entry-label{-webkit-box-sizing:border-box;box-sizing:border-box}.mf-entry-filter{margin-right:10px}.mf-entry-filter{min-width:15%}.mf-entry-export-csv{min-width:20%}.metform_open_content_editor_modal .attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox]+span:before{line-height:20px}.mf-image-select-input,.mf-toggle-select-input{position:absolute;opacity:0;width:0;height:0}.mf-image-select-input+img,.mf-toggle-select-input+p{cursor:pointer}.mf-input-rest-api-group .mf-rest-api-key{width:100px;display:inline-block;position:relative;top:5px}.mf-input-rest-api-group .mf-rest-api{width:calc(100% - 110px);vertical-align:middle;display:inline-block!important}.metform_open_content_editor_modal .mf-rest-api-key{top:0}.metform-entry-data table.mf-entry-data{width:100%;background-color:#FFFFFF;border:1px solid #EAF2FA}.metform-entry-data table.mf-entry-data tbody tr.mf-data-label{background-color:#EAF2FA}.metform-entry-data table.mf-entry-data tbody tr.mf-data-value{background-color:#FFFFFF}.metform-entry-data table.mf-entry-data tbody tr.mf-data-value td.mf-value-space{width:20px}.metform-entry-data table.mf-entry-data tbody tr.mf-data-value .signature-img{max-width:100%}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @charset "UTF-8";
2
+ body.metform_page_metform-menu-settings {
3
+ overflow-y: scroll;
4
+ }
5
+
6
+ .mf-settings-dashboard {
7
+ margin-top: 40px;
8
+ }
9
+ .mf-settings-dashboard .attr-row > div {
10
+ box-sizing: border-box;
11
+ }
12
+ .mf-settings-dashboard > .attr-row {
13
+ margin: 0;
14
+ }
15
+ .mf-settings-dashboard .mf-setting-sidebar {
16
+ position: fixed;
17
+ width: 415px;
18
+ }
19
+
20
+ .nav-tab-wrapper {
21
+ border: none;
22
+ padding: 0;
23
+ }
24
+
25
+ .mf-admin-setting-btn {
26
+ border: 2px solid #FF433C;
27
+ color: #FF433C;
28
+ font-size: 14px;
29
+ line-height: 16px;
30
+ color: #FF433C;
31
+ text-decoration: none;
32
+ text-transform: uppercase;
33
+ border-radius: 100px;
34
+ padding: 10px 23px;
35
+ transition: all 0.4s;
36
+ font-weight: bold;
37
+ cursor: pointer;
38
+ background-color: #fff;
39
+ display: inline-block;
40
+ }
41
+ .mf-admin-setting-btn span {
42
+ margin-right: 6px;
43
+ }
44
+ .mf-admin-setting-btn.medium {
45
+ padding: 13px 23px;
46
+ }
47
+ .mf-admin-setting-btn.fatty {
48
+ padding: 17px 23px;
49
+ }
50
+ .mf-admin-setting-btn:hover, .mf-admin-setting-btn.active {
51
+ background-color: #FF433C;
52
+ color: #fff;
53
+ }
54
+ .mf-admin-setting-btn:focus {
55
+ box-shadow: none;
56
+ outline: none;
57
+ }
58
+
59
+ .mf-settings-tab {
60
+ margin-bottom: 40px;
61
+ }
62
+ .mf-settings-tab li {
63
+ box-shadow: none;
64
+ border: none;
65
+ margin: 0;
66
+ background-color: #fff;
67
+ }
68
+ .mf-settings-tab li:focus, .mf-settings-tab li:hover {
69
+ outline: none;
70
+ box-shadow: none;
71
+ border: none;
72
+ }
73
+ .mf-settings-tab li.nav-tab-active {
74
+ background-color: #FFFFFF;
75
+ border-left-color: #FF324D;
76
+ border-radius: 10px;
77
+ }
78
+ .mf-settings-tab li.nav-tab-active .mf-setting-title {
79
+ color: #FF433C;
80
+ }
81
+ .mf-settings-tab li.nav-tab-active .mf-setting-nav-link {
82
+ background-color: #fff;
83
+ border-top-left-radius: 10px;
84
+ border-bottom-left-radius: 10px;
85
+ }
86
+ .mf-settings-tab li.nav-tab-active .mf-setting-nav-link:before {
87
+ content: "";
88
+ background-color: #FF433C;
89
+ height: 10px;
90
+ width: 10px;
91
+ position: absolute;
92
+ left: 17px;
93
+ border-radius: 100px;
94
+ top: 50%;
95
+ transform: translateY(-50%);
96
+ }
97
+ .mf-settings-tab .mf-setting-nav-link {
98
+ outline: none;
99
+ float: none;
100
+ display: flex;
101
+ padding: 16px 44px 18px 20px;
102
+ color: #121116;
103
+ border: none;
104
+ transition: all 100ms ease-out;
105
+ background-color: #f1f1f1;
106
+ justify-content: space-between;
107
+ align-items: center;
108
+ border-radius: 0px;
109
+ box-shadow: none;
110
+ position: relative;
111
+ padding: 23px 40px;
112
+ text-decoration: none;
113
+ transition: all 0.4s;
114
+ }
115
+ .mf-settings-tab .mf-setting-nav-link:focus, .mf-settings-tab .mf-setting-nav-link:hover {
116
+ outline: none;
117
+ box-shadow: none;
118
+ border: none;
119
+ }
120
+ .mf-settings-tab .mf-setting-nav-link.mf-setting-nav-link.top {
121
+ border-bottom-right-radius: 20px;
122
+ }
123
+ .mf-settings-tab .mf-setting-nav-link.mf-setting-nav-link.bottom {
124
+ border-top-right-radius: 20px;
125
+ }
126
+ .mf-settings-tab .mf-setting-nav-link.mf-setting-nav-hidden {
127
+ background-color: #F1F1F1;
128
+ cursor: default;
129
+ padding: 15px;
130
+ }
131
+ .mf-settings-tab.nav-tab-active.mf-setting-nav-link {
132
+ border-radius: 10px;
133
+ background-color: #fff;
134
+ }
135
+ .mf-settings-tab .mf-setting-tab-content .mf-setting-title {
136
+ font-size: 0.8125rem;
137
+ font-weight: bold;
138
+ color: #333;
139
+ display: block;
140
+ margin-bottom: 2px;
141
+ line-height: 1;
142
+ text-transform: uppercase;
143
+ }
144
+ .mf-settings-tab .mf-setting-tab-content .mf-setting-subtitle {
145
+ color: #72777C;
146
+ font-size: 0.8125rem;
147
+ transition: all 150ms ease-out;
148
+ }
149
+
150
+ .mf-settings-section {
151
+ opacity: 0;
152
+ visibility: hidden;
153
+ transition: opacity 0.4s;
154
+ position: absolute;
155
+ top: -9999px;
156
+ display: none;
157
+ }
158
+ .mf-settings-section.active {
159
+ opacity: 1;
160
+ position: static;
161
+ visibility: visible;
162
+ display: block;
163
+ }
164
+
165
+ .metform-admin-container {
166
+ background-color: #FFFFFF;
167
+ padding: 50px;
168
+ border-radius: 20px;
169
+ border: none;
170
+ min-height: 550px;
171
+ padding-top: 30px;
172
+ margin-bottom: 0;
173
+ }
174
+ .metform-admin-container--body .mf-settings-single-section--title {
175
+ margin: 0;
176
+ margin-top: 0px;
177
+ color: #FF433C;
178
+ font-size: 24px;
179
+ line-height: 28px;
180
+ font-weight: bold;
181
+ vertical-align: middle;
182
+ position: relative;
183
+ }
184
+ .metform-admin-container--body .mf-settings-single-section--title span {
185
+ align-items: center;
186
+ justify-content: center;
187
+ display: inline-block;
188
+ width: 40px;
189
+ height: 40px;
190
+ line-height: 40px !important;
191
+ margin-right: 24px;
192
+ background-color: rgba(255, 67, 60, 0.1);
193
+ color: #FF433C;
194
+ text-align: center;
195
+ border-radius: 5px;
196
+ vertical-align: middle;
197
+ font-size: 18px;
198
+ speak: none;
199
+ font-style: normal;
200
+ font-weight: normal;
201
+ font-variant: normal;
202
+ text-transform: none;
203
+ -webkit-font-smoothing: antialiased;
204
+ }
205
+ .metform-admin-container--body .mf-setting-header {
206
+ display: flex;
207
+ justify-content: space-between;
208
+ margin-bottom: 40px;
209
+ align-items: center;
210
+ padding-bottom: 17px;
211
+ position: relative;
212
+ margin-left: -50px;
213
+ margin-right: -50px;
214
+ padding-left: 50px;
215
+ padding-right: 51px;
216
+ }
217
+ .metform-admin-container--body .mf-setting-header:before {
218
+ content: "";
219
+ position: absolute;
220
+ display: block;
221
+ width: 48px;
222
+ height: 2px;
223
+ bottom: -1px;
224
+ left: 0;
225
+ background: #FF433C;
226
+ margin-left: 50px;
227
+ margin-right: 50px;
228
+ z-index: 2;
229
+ }
230
+ .metform-admin-container--body .mf-setting-header:after {
231
+ content: "";
232
+ position: absolute;
233
+ display: block;
234
+ width: calc(100% - 100px);
235
+ height: 1px;
236
+ bottom: -1px;
237
+ left: 0;
238
+ background: #E0E4E9;
239
+ margin-left: 50px;
240
+ z-index: 1;
241
+ }
242
+ .metform-admin-container--body .mf-setting-header.fixed {
243
+ position: fixed;
244
+ top: 0px;
245
+ padding-top: 20px;
246
+ background-color: #fff;
247
+ z-index: 999;
248
+ }
249
+ .metform-admin-container--body .mf-setting-header.fixed + div {
250
+ padding-top: 88px;
251
+ }
252
+ .metform-admin-container--body .mf-setting-input {
253
+ width: 100%;
254
+ max-width: 100%;
255
+ margin: 0;
256
+ box-sizing: border-box;
257
+ }
258
+ .metform-admin-container--body .mf-setting-label {
259
+ display: block;
260
+ margin-bottom: 8px;
261
+ color: #101010;
262
+ font-size: 16px;
263
+ line-height: 19px;
264
+ font-weight: 500;
265
+ }
266
+ .metform-admin-container--body .mf-admin-control-input {
267
+ margin: 0;
268
+ }
269
+ .metform-admin-container--body .mf-admin-control-input[type=checkbox] {
270
+ position: relative;
271
+ box-shadow: none;
272
+ height: 16px;
273
+ width: 16px;
274
+ border: 2px solid #FF5D20;
275
+ }
276
+ .metform-admin-container--body .mf-admin-control-input[type=checkbox]:checked:before {
277
+ content: "";
278
+ position: absolute;
279
+ background-color: #FF3747;
280
+ width: 8px;
281
+ height: 9px;
282
+ box-sizing: border-box;
283
+ left: 2px;
284
+ border-radius: 2px;
285
+ text-align: center;
286
+ margin: 0;
287
+ top: 1.6px;
288
+ }
289
+ .metform-admin-container .mf-setting-input {
290
+ border-radius: 3px;
291
+ padding: 5px 15px;
292
+ height: 40px;
293
+ box-sizing: border-box;
294
+ font-size: 14px;
295
+ line-height: 17px;
296
+ display: inline-block;
297
+ color: #555555;
298
+ box-shadow: none;
299
+ color: #121116;
300
+ border: 1px solid #DEE3EA;
301
+ font-weight: normal;
302
+ }
303
+ .metform-admin-container .mf-setting-input:focus, .metform-admin-container .mf-setting-input:active {
304
+ border-color: #FF324D;
305
+ box-shadow: none;
306
+ outline: none;
307
+ }
308
+ .metform-admin-container .mf-admin-save-icon {
309
+ color: #fff;
310
+ font-size: 14px;
311
+ margin-right: 6px;
312
+ height: 14px;
313
+ width: 14px;
314
+ }
315
+ .metform-admin-container .button-primary {
316
+ text-decoration: none;
317
+ text-shadow: none;
318
+ background-color: #FF324D;
319
+ border-radius: 4px;
320
+ box-shadow: 0 7px 15px rgba(242, 41, 91, 0.3);
321
+ font-size: 14px;
322
+ line-height: 16px;
323
+ text-transform: uppercase;
324
+ color: #fff;
325
+ font-weight: 500;
326
+ border: none;
327
+ padding: 12px 23px;
328
+ transition: all 0.4s;
329
+ display: inline-flex;
330
+ align-items: center;
331
+ background-image: linear-gradient(45deg, #FF324D, #FF6B11);
332
+ position: relative;
333
+ z-index: 9;
334
+ }
335
+ .metform-admin-container .button-primary:hover, .metform-admin-container .button-primary:focus {
336
+ border: none;
337
+ outline: none;
338
+ box-shadow: 0 7px 15px rgba(242, 41, 91, 0.3);
339
+ }
340
+ .metform-admin-container .button-primary:before {
341
+ border-radius: inherit;
342
+ background-image: linear-gradient(45deg, #FF6B11, #FF324D);
343
+ content: "";
344
+ display: block;
345
+ height: 100%;
346
+ position: absolute;
347
+ top: 0;
348
+ left: 0;
349
+ opacity: 0;
350
+ width: 100%;
351
+ z-index: -1;
352
+ transition: opacity 0.7s ease-in-out;
353
+ }
354
+ .metform-admin-container .button-primary:hover {
355
+ background-color: #dc0420;
356
+ }
357
+ .metform-admin-container .button-primary:hover:before {
358
+ opacity: 1;
359
+ }
360
+
361
+ .mf-recaptcha-settings {
362
+ display: none;
363
+ }
364
+
365
+ .mf_setting_logo {
366
+ padding-top: 25px;
367
+ }
368
+ .mf_setting_logo img {
369
+ max-width: 200px;
370
+ }
371
+
372
+ .mf-setting-dashboard-banner {
373
+ border-radius: 20px;
374
+ padding-top: 0;
375
+ }
376
+ .mf-setting-dashboard-banner img {
377
+ width: 100%;
378
+ }
379
+ .mf-setting-dashboard-banner--content {
380
+ padding: 30px;
381
+ }
382
+ .mf-setting-dashboard-banner--content h3 {
383
+ margin: 0;
384
+ margin-bottom: 15px;
385
+ }
386
+
387
+ .mf-setting-btn {
388
+ text-decoration: none;
389
+ background-color: #FF324D;
390
+ padding: 8px 15px;
391
+ border: none;
392
+ box-shadow: none;
393
+ background-image: linear-gradient(45deg, #FF324D, #FF6B11);
394
+ font-weight: 500;
395
+ }
396
+
397
+ .mf-setting-btn-link {
398
+ background-image: none;
399
+ color: #1F55F8;
400
+ border-radius: 0;
401
+ background-color: transparent;
402
+ border: none;
403
+ padding: 0;
404
+ text-decoration: none;
405
+ border-bottom: 1px solid #1F55F8;
406
+ font-weight: 600;
407
+ font-size: 14px;
408
+ display: inline-block;
409
+ line-height: 18px;
410
+ transition: all 0.4s;
411
+ }
412
+ .mf-setting-btn-link:hover {
413
+ color: #507bff;
414
+ }
415
+
416
+ .mf-setting-separator {
417
+ margin: 50px 0;
418
+ }
419
+
420
+ .mf-setting-input-group {
421
+ margin-bottom: 30px;
422
+ }
423
+ .mf-setting-input-group:last-child {
424
+ margin-bottom: 0;
425
+ }
426
+ .mf-setting-input-group .description {
427
+ font-weight: normal;
428
+ font-size: 13px;
429
+ line-height: 15px;
430
+ color: #999999;
431
+ font-style: normal;
432
+ margin: 0;
433
+ margin-top: 8px;
434
+ }
435
+
436
+ .mf-setting-input-desc {
437
+ display: none;
438
+ padding-right: 100px;
439
+ }
440
+ .mf-setting-input-desc .mf-setting-btn-link {
441
+ margin-top: 15px;
442
+ }
443
+ .mf-setting-input-desc--title {
444
+ margin-top: 0;
445
+ margin-bottom: 8px;
446
+ }
447
+ .mf-setting-input-desc p,
448
+ .mf-setting-input-desc li {
449
+ font-size: 14px;
450
+ line-height: 18px;
451
+ color: #111111;
452
+ }
453
+
454
+ .mf-setting-tab-nav {
455
+ margin-bottom: 30px;
456
+ }
457
+ .mf-setting-tab-nav li {
458
+ margin-right: 15px;
459
+ cursor: pointer;
460
+ }
461
+ .mf-setting-tab-nav li:last-child {
462
+ margin-right: 0;
463
+ }
464
+ .mf-setting-tab-nav .attr-nav-tabs {
465
+ border: none;
466
+ }
467
+ .mf-setting-tab-nav .attr-nav-item {
468
+ border: none;
469
+ border-radius: 4px;
470
+ text-decoration: none;
471
+ text-align: center;
472
+ color: #111111;
473
+ font-size: 14px;
474
+ text-transform: capitalize;
475
+ font-weight: 600;
476
+ padding: 8px 14px;
477
+ border: none;
478
+ margin-right: 0;
479
+ border: none;
480
+ display: inline-block;
481
+ box-shadow: none;
482
+ z-index: 2;
483
+ }
484
+ .mf-setting-tab-nav .attr-nav-item:hover {
485
+ color: #fff;
486
+ background-color: #FF433C;
487
+ }
488
+ .mf-setting-tab-nav .attr-active .attr-nav-item {
489
+ color: #ffffff;
490
+ background-color: #FF433C;
491
+ border: none;
492
+ }
493
+ .mf-setting-tab-nav .attr-active .attr-nav-item:focus, .mf-setting-tab-nav .attr-active .attr-nav-item:hover, .mf-setting-tab-nav .attr-active .attr-nav-item:active {
494
+ border: none;
495
+ box-shadow: none;
496
+ outline: none;
497
+ color: #fff;
498
+ background-color: #FF433C;
499
+ }
500
+
501
+ .mf-setting-input-desc-data {
502
+ display: none;
503
+ }
504
+
505
+ .mf-setting-select-container {
506
+ position: relative;
507
+ }
508
+ .mf-setting-select-container .mf-setting-input {
509
+ -webkit-appearance: none;
510
+ -moz-appearance: none;
511
+ appearance: none;
512
+ background: none;
513
+ }
514
+ .mf-setting-select-container:before {
515
+ content: "";
516
+ width: 0;
517
+ height: 0;
518
+ border-left: 5px solid transparent;
519
+ border-right: 5px solid transparent;
520
+ border-top: 5px solid #111;
521
+ position: absolute;
522
+ right: 15px;
523
+ transform: translateY(-50%);
524
+ top: 50%;
525
+ }
526
+
527
+ .mf-setting-refresh-btn {
528
+ margin: 0 10px;
529
+ font-size: 18px;
530
+ line-height: 24px;
531
+ }
532
+
533
+ .mf-set-dash-tab-img {
534
+ text-align: center;
535
+ }
536
+
537
+ .mf-set-dash-section {
538
+ padding: 100px 0;
539
+ }
540
+ .mf-set-dash-section:not(:first-child):not(:last-child) {
541
+ padding-bottom: 20px;
542
+ display: none;
543
+ }
544
+
545
+ #mf-set-dash-rate-now {
546
+ margin-top: 100px;
547
+ }
548
+
549
+ .mf-setting-dash-section-heading {
550
+ text-align: center;
551
+ position: relative;
552
+ margin: 0 auto;
553
+ margin-bottom: 32px;
554
+ }
555
+ .mf-setting-dash-section-heading--title {
556
+ font-size: 36px;
557
+ line-height: 42px;
558
+ margin: 0;
559
+ color: #121116;
560
+ font-weight: bold;
561
+ letter-spacing: -1px;
562
+ }
563
+ .mf-setting-dash-section-heading--title strong {
564
+ color: #FF433C;
565
+ }
566
+ .mf-setting-dash-section-heading--subtitle {
567
+ color: rgba(0, 0, 0, 0.05);
568
+ font-size: 60px;
569
+ line-height: 69px;
570
+ margin: 0;
571
+ font-weight: bold;
572
+ position: absolute;
573
+ top: -25px;
574
+ left: 50%;
575
+ width: 100%;
576
+ transform: translateX(-50%);
577
+ }
578
+ .mf-setting-dash-section-heading--content {
579
+ width: 440px;
580
+ margin: 0 auto;
581
+ margin-top: 8px;
582
+ }
583
+ .mf-setting-dash-section-heading--content p {
584
+ font-size: 16px;
585
+ line-height: 21px;
586
+ color: #121116;
587
+ }
588
+ .mf-setting-dash-section-heading--content p:first-child {
589
+ margin-top: 0;
590
+ }
591
+ .mf-setting-dash-section-heading--content p:last-child {
592
+ margin-bottom: 0;
593
+ }
594
+
595
+ .mf-set-dash-top-notch {
596
+ display: flex;
597
+ flex-wrap: wrap;
598
+ border-right: 1px solid #F0F0F0;
599
+ border-bottom: 1px solid #F0F0F0;
600
+ }
601
+ .mf-set-dash-top-notch--item {
602
+ flex: 0 0 33.33%;
603
+ border: 1px solid #F0F0F0;
604
+ box-sizing: border-box;
605
+ padding: 40px;
606
+ position: relative;
607
+ border-right: 0;
608
+ border-bottom: 0;
609
+ }
610
+ .mf-set-dash-top-notch--item__title {
611
+ font-size: 18px;
612
+ line-height: 21px;
613
+ color: #121116;
614
+ font-weight: 600;
615
+ margin: 0;
616
+ margin-bottom: 17px;
617
+ }
618
+ .mf-set-dash-top-notch--item__desc {
619
+ font-weight: 400;
620
+ font-size: 16px;
621
+ line-height: 21px;
622
+ color: #999999;
623
+ }
624
+ .mf-set-dash-top-notch--item:before {
625
+ content: attr(data-count);
626
+ font-size: 60px;
627
+ line-height: 69px;
628
+ position: absolute;
629
+ top: -5px;
630
+ right: 5px;
631
+ -webkit-text-stroke: 2px;
632
+ -webkit-text-fill-color: transparent;
633
+ color: #F0F0F0;
634
+ }
635
+
636
+ .mf-set-dash-free-pro-content {
637
+ display: flex;
638
+ flex-wrap: wrap;
639
+ }
640
+ .mf-set-dash-free-pro-content img {
641
+ max-width: 100%;
642
+ }
643
+ .mf-set-dash-free-pro-content .attr-nav-tabs {
644
+ display: flex;
645
+ flex-direction: column;
646
+ margin: 0;
647
+ border: 1px solid #F0F0F0;
648
+ width: 290px;
649
+ }
650
+ .mf-set-dash-free-pro-content .attr-nav-link {
651
+ text-decoration: none;
652
+ font-size: 16px;
653
+ line-height: 18px;
654
+ color: #121116 !important;
655
+ border: none !important;
656
+ padding: 20px 23px;
657
+ margin: 0;
658
+ border-radius: 0;
659
+ transition: all 0.4s;
660
+ }
661
+ .mf-set-dash-free-pro-content .attr-nav-link:focus {
662
+ outline: none;
663
+ box-shadow: none;
664
+ background-color: transparent;
665
+ border: none;
666
+ }
667
+ .mf-set-dash-free-pro-content .attr-nav-link:hover {
668
+ background-color: transparent;
669
+ }
670
+ .mf-set-dash-free-pro-content .attr-nav-item {
671
+ border-bottom: 1px solid #F0F0F0;
672
+ }
673
+ .mf-set-dash-free-pro-content .attr-nav-item:last-child {
674
+ border-bottom: 0;
675
+ }
676
+ .mf-set-dash-free-pro-content .attr-nav-item:focus {
677
+ outline: none;
678
+ box-shadow: none;
679
+ }
680
+ .mf-set-dash-free-pro-content .attr-nav-item.attr-active > a {
681
+ border: none;
682
+ }
683
+ .mf-set-dash-free-pro-content .attr-nav-item.attr-active .attr-nav-link {
684
+ background-color: #FF433C;
685
+ color: #fff !important;
686
+ }
687
+ .mf-set-dash-free-pro-content .attr-nav-item.attr-active .mf-icon {
688
+ color: #fff;
689
+ }
690
+ .mf-set-dash-free-pro-content .attr-nav-item.attr-active .mf-set-dash-badge {
691
+ background-color: #fff;
692
+ }
693
+ .mf-set-dash-free-pro-content .mf-icon {
694
+ font-size: 14px;
695
+ color: #FF433C;
696
+ margin-right: 7px;
697
+ }
698
+ .mf-set-dash-free-pro-content .mf-set-dash-badge {
699
+ background-color: rgba(242, 41, 91, 0.1);
700
+ color: #F2295B;
701
+ font-size: 10px;
702
+ line-height: 11px;
703
+ border-radius: 2px;
704
+ display: inline-block;
705
+ padding: 3px 6px;
706
+ margin-left: 18px;
707
+ font-weight: 600;
708
+ text-transform: uppercase;
709
+ }
710
+ .mf-set-dash-free-pro-content .attr-tab-content {
711
+ border: 1px solid #F0F0F0;
712
+ border-left: 0;
713
+ padding: 50px;
714
+ box-sizing: border-box;
715
+ flex: 0 0 calc(100% - 292px);
716
+ }
717
+ .mf-set-dash-free-pro-content .attr-tab-content p {
718
+ font-size: 16px;
719
+ line-height: 24px;
720
+ font-weight: 400;
721
+ color: #444444;
722
+ }
723
+ .mf-set-dash-free-pro-content .attr-tab-content ul li {
724
+ color: #444444;
725
+ font-size: 16px;
726
+ line-height: 21px;
727
+ }
728
+ .mf-set-dash-free-pro-content .attr-tab-content ul li:before {
729
+ content: "";
730
+ height: 5px;
731
+ width: 5px;
732
+ background-color: #F2295B;
733
+ border-radius: 100px;
734
+ display: inline-block;
735
+ vertical-align: middle;
736
+ margin-right: 7px;
737
+ }
738
+ .mf-set-dash-free-pro-content .attr-tab-content .mf-admin-setting-btn {
739
+ margin-top: 35px;
740
+ }
741
+
742
+ .admin-bar .mf-setting-header.fixed {
743
+ top: 30px;
744
+ }
745
+
746
+ #mf-set-dash-faq {
747
+ background-color: #F1F1F1;
748
+ padding-bottom: 100px;
749
+ margin: 100px 0;
750
+ text-align: center;
751
+ margin-left: -50px;
752
+ margin-right: -50px;
753
+ }
754
+ #mf-set-dash-faq .mf-admin-setting-btn {
755
+ margin-top: 30px;
756
+ }
757
+
758
+ .mf-admin-accordion {
759
+ max-width: 700px;
760
+ margin: 0 auto;
761
+ margin-top: 30px;
762
+ }
763
+
764
+ .mf-admin-single-accordion {
765
+ background-color: #FFFFFF;
766
+ box-shadow: 0 7px 15px rgba(0, 0, 0, 0.07);
767
+ margin: 10px 0;
768
+ text-align: left;
769
+ }
770
+ .mf-admin-single-accordion.active .mf-admin-single-accordion--heading:after {
771
+ content: "";
772
+ color: #F2295B;
773
+ }
774
+ .mf-admin-single-accordion--heading {
775
+ cursor: pointer;
776
+ margin: 0;
777
+ color: #121116;
778
+ font-size: 14px;
779
+ line-height: 20px;
780
+ padding: 18px 20px;
781
+ position: relative;
782
+ }
783
+ .mf-admin-single-accordion--heading:after {
784
+ content: "";
785
+ font-family: "metform";
786
+ position: absolute;
787
+ right: 30px;
788
+ top: 50%;
789
+ transform: translateY(-50%);
790
+ font-size: 12px;
791
+ }
792
+ .mf-admin-single-accordion--body {
793
+ padding: 0;
794
+ display: none;
795
+ }
796
+ .mf-admin-single-accordion--body__content {
797
+ padding: 30px;
798
+ padding-top: 0;
799
+ }
800
+ .mf-admin-single-accordion--body p {
801
+ margin: 0;
802
+ }
803
+
804
+ #mf-set-dash-rate-now {
805
+ display: flex;
806
+ justify-content: space-between;
807
+ align-items: center;
808
+ padding-bottom: 0;
809
+ padding-top: 0;
810
+ flex-wrap: wrap;
811
+ }
812
+ #mf-set-dash-rate-now .mf-setting-dash-section-heading {
813
+ text-align: left;
814
+ }
815
+ #mf-set-dash-rate-now .mf-admin-left-thumb {
816
+ margin-bottom: -50px;
817
+ align-self: flex-end;
818
+ }
819
+ #mf-set-dash-rate-now > div {
820
+ flex: 1;
821
+ }
822
+
823
+ .mf-admin-left-thumb img {
824
+ max-width: 100%;
825
+ }
826
+
827
+ @media (min-width: 768px) {
828
+ .mf-setting-input-desc-data {
829
+ display: block;
830
+ }
831
+
832
+ .mf-settings-dashboard > .attr-row > div:last-of-type {
833
+ padding-left: 0;
834
+ }
835
+
836
+ .mf-settings-dashboard > .attr-row > div:first-of-type {
837
+ padding-right: 0;
838
+ }
839
+ }
840
+ @media (max-width: 767px) {
841
+ .mf-setting-dash-section-heading--content {
842
+ width: 100%;
843
+ }
844
+
845
+ .mf-set-dash-free-pro-content .attr-nav-tabs {
846
+ min-width: 100%;
847
+ }
848
+ .mf-set-dash-free-pro-content .attr-tab-content {
849
+ border-left: 1px solid #F0F0F0;
850
+ padding: 20px;
851
+ flex: 100%;
852
+ }
853
+
854
+ .mf-settings-dashboard .mf-setting-sidebar {
855
+ position: static;
856
+ width: 100% !important;
857
+ }
858
+
859
+ .metform-admin-container {
860
+ padding: 30px;
861
+ }
862
+
863
+ .metform-admin-container--body .mf-setting-header {
864
+ margin-left: -30px;
865
+ margin-right: -30px;
866
+ padding-left: 30px;
867
+ padding-right: 30px;
868
+ }
869
+ .metform-admin-container--body .mf-setting-header:before, .metform-admin-container--body .mf-setting-header:after {
870
+ margin-left: 30px;
871
+ margin-right: 30px;
872
+ }
873
+ .metform-admin-container--body .mf-setting-header:after {
874
+ width: calc(100% - 60px);
875
+ }
876
+
877
+ .mf-set-dash-top-notch--item {
878
+ flex: 0 0 100%;
879
+ }
880
+
881
+ .admin-bar .mf-setting-header.fixed {
882
+ top: 0px;
883
+ }
884
+
885
+ #mf-set-dash-faq {
886
+ margin-left: -30px;
887
+ margin-right: -30px;
888
+ }
889
+
890
+ .mf-admin-left-thumb {
891
+ margin-bottom: -30px;
892
+ }
893
+
894
+ .mf-admin-left-thumb {
895
+ text-align: center;
896
+ width: 100%;
897
+ margin-top: 15px;
898
+ }
899
+
900
+ .metform-admin-container--body .mf-settings-single-section--title {
901
+ font-size: 19px;
902
+ }
903
+ .metform-admin-container--body .mf-settings-single-section--title span {
904
+ display: none;
905
+ }
906
+
907
+ .mf-setting-dash-section-heading--title {
908
+ font-size: 25px;
909
+ line-height: 30px;
910
+ }
911
+ .mf-setting-dash-section-heading--subtitle {
912
+ font-size: 52px;
913
+ line-height: 59px;
914
+ }
915
+ }
916
+ .mf-setting-spin {
917
+ animation-name: rotate;
918
+ animation-duration: 500ms;
919
+ animation-iteration-count: infinite;
920
+ animation-timing-function: linear;
921
+ }
922
+
923
+ @keyframes rotate {
924
+ from {
925
+ transform: rotate(0deg);
926
+ }
927
+ to {
928
+ transform: rotate(360deg);
929
+ }
930
+ }
931
+ .loading .attr-modal-content::before {
932
+ opacity: 0.8;
933
+ position: absolute;
934
+ content: "";
935
+ top: 0;
936
+ left: 0;
937
+ height: 100%;
938
+ width: 100%;
939
+ background-color: #fff;
940
+ transition: opaicty 0.5s ease;
941
+ z-index: 5;
942
+ border-radius: inherit;
943
+ }
944
+ .loading .mf-spinner {
945
+ display: block;
946
+ }
947
+
948
+ #metform_form_modal {
949
+ overflow-y: scroll;
950
+ }
951
+
952
+ .elementor-editor-active .metform-form-save-btn-editor {
953
+ display: none !important;
954
+ }
955
+
956
+ .attr-modal-dialog-centered {
957
+ display: flex;
958
+ align-items: center;
959
+ padding-top: 30px;
960
+ width: 725px;
961
+ max-width: 100%;
962
+ }
963
+ .attr-modal-dialog-centered .attr-modal-header {
964
+ padding: 36px 50px;
965
+ border-bottom: none;
966
+ }
967
+ .attr-modal-dialog-centered .attr-modal-header .attr-modal-title {
968
+ font-size: 20px;
969
+ font-weight: bold;
970
+ color: #111111;
971
+ text-transform: capitalize;
972
+ margin-bottom: 38px;
973
+ line-height: 1;
974
+ }
975
+ .attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs {
976
+ border: none;
977
+ display: flex;
978
+ flex-wrap: wrap;
979
+ }
980
+ .attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs li {
981
+ transition: all 0.4s;
982
+ }
983
+ .attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs a {
984
+ text-decoration: none;
985
+ color: #111111;
986
+ font-size: 14px;
987
+ text-transform: capitalize;
988
+ font-weight: 600;
989
+ padding: 8px 10px;
990
+ border: none;
991
+ margin-right: 0;
992
+ border: none;
993
+ transition: all 0.4s;
994
+ }
995
+ .attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs a:hover {
996
+ border: none;
997
+ background-color: transparent;
998
+ }
999
+ .attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs a:focus {
1000
+ outline: none;
1001
+ box-shadow: none;
1002
+ border: none;
1003
+ }
1004
+ .attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs li.attr-active a {
1005
+ border: none;
1006
+ color: #ffffff;
1007
+ background-color: #1F55F8;
1008
+ border-radius: 4px;
1009
+ text-align: center;
1010
+ }
1011
+ .attr-modal-dialog-centered .attr-modal-header button.attr-close {
1012
+ opacity: 0.8;
1013
+ font-size: inherit;
1014
+ outline: none;
1015
+ margin-top: -15px;
1016
+ margin-right: -25px;
1017
+ }
1018
+ .attr-modal-dialog-centered .attr-modal-header button.attr-close span {
1019
+ color: #e81123;
1020
+ font-size: 35px;
1021
+ font-weight: 100;
1022
+ background-color: #FCE7E9;
1023
+ height: 36px;
1024
+ width: 36px;
1025
+ display: inline-block;
1026
+ line-height: 36px;
1027
+ border-radius: 100px;
1028
+ outline: none;
1029
+ margin-top: 5px;
1030
+ font-family: initial;
1031
+ }
1032
+ .attr-modal-dialog-centered .attr-tab-content .attr-modal-body {
1033
+ padding: 40px 50px;
1034
+ padding-top: 0;
1035
+ }
1036
+ .attr-modal-dialog-centered .attr-tab-content div#limit_status.hide_input {
1037
+ display: none;
1038
+ }
1039
+ .attr-modal-dialog-centered .attr-tab-content .mf-input-group label.attr-input-label {
1040
+ color: #111111;
1041
+ font-size: 16px;
1042
+ margin-bottom: 7px;
1043
+ display: block;
1044
+ font-weight: 500;
1045
+ }
1046
+ .attr-modal-dialog-centered .attr-tab-content .mf-input-group {
1047
+ border-bottom: 1px solid #f5f5f5;
1048
+ padding-bottom: 14px;
1049
+ margin-bottom: 14px;
1050
+ }
1051
+ .attr-modal-dialog-centered .attr-tab-content .mf-input-group:last-of-type {
1052
+ border-bottom: none;
1053
+ padding-bottom: 0;
1054
+ }
1055
+ .attr-modal-dialog-centered .attr-tab-content .mf-input-group input, .attr-modal-dialog-centered .attr-tab-content .mf-input-group .attr-form-control {
1056
+ color: #000;
1057
+ font-size: 14px;
1058
+ height: 48px;
1059
+ padding: 0 22px;
1060
+ border-color: #ededed;
1061
+ margin-top: 12px;
1062
+ max-width: 100%;
1063
+ background-color: #f9f9f9;
1064
+ transition: all 0.4s;
1065
+ }
1066
+ .attr-modal-dialog-centered .attr-tab-content .mf-input-group input:hover, .attr-modal-dialog-centered .attr-tab-content .mf-input-group input:focus, .attr-modal-dialog-centered .attr-tab-content .mf-input-group .attr-form-control:hover, .attr-modal-dialog-centered .attr-tab-content .mf-input-group .attr-form-control:focus {
1067
+ background-color: #fff;
1068
+ }
1069
+ .attr-modal-dialog-centered .attr-tab-content .mf-input-group textarea {
1070
+ padding: 22px !important;
1071
+ }
1072
+ .attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox] {
1073
+ display: none;
1074
+ }
1075
+ .attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox] + span {
1076
+ position: relative;
1077
+ display: block;
1078
+ }
1079
+ .attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox] + span:before {
1080
+ content: "No";
1081
+ width: 55px;
1082
+ height: 25px;
1083
+ background-color: #EDEDED;
1084
+ left: 0;
1085
+ border-radius: 15px;
1086
+ text-align: right;
1087
+ color: #fff;
1088
+ text-transform: uppercase;
1089
+ font-weight: bold;
1090
+ font-size: 10px;
1091
+ padding: 3px;
1092
+ box-sizing: border-box;
1093
+ padding-right: 10px;
1094
+ transition: all 0.4s;
1095
+ float: right;
1096
+ line-height: 18px;
1097
+ cursor: pointer;
1098
+ }
1099
+ .attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox] + span:after {
1100
+ content: "";
1101
+ width: 20px;
1102
+ height: 20px;
1103
+ background-color: #fff;
1104
+ border-radius: 100px;
1105
+ display: inline-block;
1106
+ position: absolute;
1107
+ right: 31px;
1108
+ top: 2px;
1109
+ transition: all 0.4s;
1110
+ }
1111
+ .attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox]:checked + span:before {
1112
+ content: "Yes";
1113
+ width: 55px;
1114
+ height: 25px;
1115
+ background-color: #1F55F8;
1116
+ left: 0;
1117
+ border-radius: 15px;
1118
+ display: inline-block;
1119
+ text-align: left;
1120
+ color: #fff;
1121
+ text-transform: uppercase;
1122
+ font-weight: bold;
1123
+ font-size: 10px;
1124
+ padding: 3px;
1125
+ box-sizing: border-box;
1126
+ padding-left: 10px;
1127
+ }
1128
+ .attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox]:checked + span:after {
1129
+ content: "";
1130
+ width: 20px;
1131
+ height: 20px;
1132
+ background-color: #fff;
1133
+ border-radius: 100px;
1134
+ display: inline-block;
1135
+ position: absolute;
1136
+ right: 2px;
1137
+ top: 2px;
1138
+ }
1139
+ .attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-rest-api-method {
1140
+ padding: 0 18px;
1141
+ margin: 0;
1142
+ }
1143
+ .attr-modal-dialog-centered .attr-tab-content .mf-input-group span.mf-input-help {
1144
+ color: #b7b7b7;
1145
+ font-style: italic;
1146
+ font-size: 12px;
1147
+ }
1148
+ .attr-modal-dialog-centered .attr-tab-content .mf-input-group span.mf-input-help strong {
1149
+ color: #555;
1150
+ font-weight: 700;
1151
+ }
1152
+ .attr-modal-dialog-centered .attr-tab-content .mf-input-group span.mf-input-help a {
1153
+ color: #1F55F8;
1154
+ text-decoration: none;
1155
+ font-weight: 700;
1156
+ }
1157
+ .attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-input-group-inner label.attr-input-label {
1158
+ display: inline-block;
1159
+ }
1160
+ .attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-input-group-inner #limit_status {
1161
+ width: 100px;
1162
+ margin: 0;
1163
+ position: relative;
1164
+ margin-left: 15px;
1165
+ float: right;
1166
+ margin-top: -2px;
1167
+ }
1168
+ .attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-input-group-inner input {
1169
+ margin: 0;
1170
+ }
1171
+ .attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-input-group-inner input[type=checkbox] + span:before {
1172
+ position: relative;
1173
+ top: -2px;
1174
+ left: 5px;
1175
+ }
1176
+ .attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-input-group-inner input[type=checkbox] + span:after {
1177
+ right: 28px;
1178
+ top: 0px;
1179
+ }
1180
+ .attr-modal-dialog-centered .attr-tab-content .mf-input-group .mf-input-group-inner input[type=checkbox]:checked + span:after {
1181
+ right: -2px;
1182
+ top: 0;
1183
+ }
1184
+ .attr-modal-dialog-centered .attr-tab-content .mf-input-group.mf-input-group-inline {
1185
+ display: flex;
1186
+ flex-wrap: wrap;
1187
+ align-items: center;
1188
+ }
1189
+ .attr-modal-dialog-centered .attr-tab-content .mf-input-group.mf-input-group-inline .attr-input-label,
1190
+ .attr-modal-dialog-centered .attr-tab-content .mf-input-group.mf-input-group-inline .mf-inputs {
1191
+ flex: 1;
1192
+ }
1193
+ .attr-modal-dialog-centered .attr-tab-content .mf-input-group.mf-input-group-inline .attr-input-label select,
1194
+ .attr-modal-dialog-centered .attr-tab-content .mf-input-group.mf-input-group-inline .mf-inputs select {
1195
+ margin: 0;
1196
+ }
1197
+ .attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=text] + span,
1198
+ .attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=number] + span {
1199
+ display: block;
1200
+ margin-top: 5px;
1201
+ }
1202
+ .attr-modal-dialog-centered .attr-tab-content #limit_status.show_input {
1203
+ margin-top: 32px;
1204
+ }
1205
+ .attr-modal-dialog-centered .attr-modal-footer {
1206
+ padding: 30px 50px;
1207
+ }
1208
+ .attr-modal-dialog-centered .attr-modal-footer button {
1209
+ color: #fff;
1210
+ background-color: #1F55F8;
1211
+ font-size: 16px;
1212
+ font-weight: bold;
1213
+ box-sizing: border-box;
1214
+ padding: 12px 20px;
1215
+ box-shadow: none;
1216
+ border: 1px solid transparent;
1217
+ transition: all 0.4s;
1218
+ outline: none;
1219
+ }
1220
+ .attr-modal-dialog-centered .attr-modal-footer button:focus {
1221
+ border: none;
1222
+ outline: none;
1223
+ }
1224
+ .attr-modal-dialog-centered .attr-modal-footer button.metform-form-save-btn-editor {
1225
+ background-color: #d8d8d8;
1226
+ color: #111111;
1227
+ }
1228
+ .attr-modal-dialog-centered > form {
1229
+ width: 100%;
1230
+ }
1231
+
1232
+ .modal-backdrop {
1233
+ position: fixed;
1234
+ top: 0;
1235
+ left: 0;
1236
+ width: 100vw;
1237
+ height: 100vh;
1238
+ background-color: rgba(0, 0, 0, 0.5);
1239
+ }
1240
+
1241
+ .modal-backdrop {
1242
+ z-index: 9999;
1243
+ }
1244
+
1245
+ .attr-modal {
1246
+ z-index: 10000;
1247
+ }
1248
+
1249
+ .mf_multipile_ajax_search_filed .select2-container--default .select2-selection--multiple .select2-selection__choice {
1250
+ line-height: 1.5;
1251
+ font-size: 0.9em;
1252
+ border: none;
1253
+ border-radius: 0;
1254
+ color: #6d7882;
1255
+ }
1256
+
1257
+ .mf-headerfooter-status {
1258
+ display: inline-block;
1259
+ margin-left: 5px;
1260
+ padding: 2px 5px 3px;
1261
+ color: #FFFFFF;
1262
+ background-color: #9a9a9a;
1263
+ border-radius: 3px;
1264
+ font-size: 10px;
1265
+ line-height: 1;
1266
+ font-weight: 700;
1267
+ }
1268
+ .mf-headerfooter-status-active {
1269
+ background-color: #00cd00;
1270
+ }
1271
+
1272
+ .irs--round .irs-min, .irs--round .irs-max {
1273
+ display: none;
1274
+ }
1275
+
1276
+ .irs--round .irs-handle {
1277
+ cursor: pointer;
1278
+ }
1279
+
1280
+ .mf-success-msg {
1281
+ position: fixed;
1282
+ z-index: 9;
1283
+ text-align: center;
1284
+ top: 50%;
1285
+ left: 50%;
1286
+ transform: translate(-50%, -50%);
1287
+ box-shadow: 0px 2px 5px rgba(153, 153, 153, 0.2);
1288
+ min-width: 300px;
1289
+ }
1290
+
1291
+ textarea.attr-form-control {
1292
+ height: auto !important;
1293
+ }
1294
+
1295
+ .post-type-metform-form .row-actions .inline {
1296
+ display: none !important;
1297
+ }
1298
+
1299
+ div.metform-entry-data table thead,
1300
+ div.metform-entry-data table tbody,
1301
+ div.metform-entry-browser-data table thead,
1302
+ div.metform-entry-browser-data table tbody {
1303
+ text-align: left;
1304
+ }
1305
+
1306
+ img.form-editor-icon {
1307
+ height: 20px;
1308
+ width: 20px;
1309
+ margin-right: 5px;
1310
+ vertical-align: middle;
1311
+ }
1312
+
1313
+ div.mf-file-show button.attr-btn.attr-btn-primary {
1314
+ margin-left: 10px;
1315
+ }
1316
+
1317
+ .mf-file-show a {
1318
+ text-decoration: none;
1319
+ }
1320
+
1321
+ .mf-modal-container {
1322
+ margin-top: 50px;
1323
+ }
1324
+ .mf-modal-container .attr-modal-body img {
1325
+ margin: 0 auto;
1326
+ }
1327
+
1328
+ .mf-entry-label,
1329
+ .mf-entry-input {
1330
+ box-sizing: border-box;
1331
+ }
1332
+
1333
+ .mf-entry-filter {
1334
+ margin-right: 10px;
1335
+ }
1336
+
1337
+ .mf-entry-filter {
1338
+ min-width: 15%;
1339
+ }
1340
+
1341
+ .mf-entry-export-csv {
1342
+ min-width: 20%;
1343
+ }
1344
+
1345
+ .metform_open_content_editor_modal .attr-modal-dialog-centered .attr-tab-content .mf-input-group input[type=checkbox] + span:before {
1346
+ line-height: 20px;
1347
+ }
1348
+
1349
+ /* HIDE RADIO */
1350
+ .mf-image-select-input,
1351
+ .mf-toggle-select-input {
1352
+ position: absolute;
1353
+ opacity: 0;
1354
+ width: 0;
1355
+ height: 0;
1356
+ }
1357
+
1358
+ /* IMAGE STYLES */
1359
+ .mf-image-select-input + img,
1360
+ .mf-toggle-select-input + p {
1361
+ cursor: pointer;
1362
+ }
1363
+
1364
+ .mf-input-rest-api-group .mf-rest-api-key {
1365
+ width: 100px;
1366
+ display: inline-block;
1367
+ position: relative;
1368
+ top: 5px;
1369
+ }
1370
+
1371
+ .mf-input-rest-api-group .mf-rest-api {
1372
+ width: calc(100% - 110px);
1373
+ vertical-align: middle;
1374
+ display: inline-block !important;
1375
+ }
1376
+
1377
+ .metform_open_content_editor_modal .mf-rest-api-key {
1378
+ top: 0;
1379
+ }
1380
+
1381
+ .metform-entry-data table.mf-entry-data {
1382
+ width: 100%;
1383
+ background-color: #FFFFFF;
1384
+ border: 1px solid #EAF2FA;
1385
+ }
1386
+ .metform-entry-data table.mf-entry-data tbody tr.mf-data-label {
1387
+ background-color: #EAF2FA;
1388
+ }
1389
+ .metform-entry-data table.mf-entry-data tbody tr.mf-data-value {
1390
+ background-color: #FFFFFF;
1391
+ }
1392
+ .metform-entry-data table.mf-entry-data tbody tr.mf-data-value pre {
1393
+ margin: 0;
1394
+ font: inherit;
1395
+ }
1396
+ .metform-entry-data table.mf-entry-data tbody tr.mf-data-value td.mf-value-space {
1397
+ width: 20px;
1398
+ }
1399
+ .metform-entry-data table.mf-entry-data tbody tr.mf-data-value .signature-img {
1400
+ max-width: 100%;
1401
+ }
public/assets/css/asRange.min.css CHANGED
@@ -1,8 +1,8 @@
1
- /**
2
- * asRange v0.3.4
3
- * https://github.com/amazingSurge/jquery-asRange
4
- *
5
- * Copyright (c) amazingSurge
6
- * Released under the LGPL-3.0 license
7
- */
8
- .asRange{position:relative;width:331px;height:8px;background-color:#cfcdc7;border-radius:8px}.asRange .asRange-pointer{position:absolute;left:30%;z-index:2;width:8px;height:8px;margin-left:-4px;background-color:#fff;border-radius:9px}.asRange .asRange-pointer:before{position:absolute;top:-4px;right:-4px;bottom:-4px;left:-4px;content:"";background:#6ba1ad;border-radius:inherit}.asRange .asRange-pointer:after{position:absolute;top:0;right:0;bottom:0;left:0;content:"";background:#fff;border-radius:inherit}.asRange .asRange-pointer.start{left:0;margin-left:4px}.asRange .asRange-pointer.stop{left:100%;margin-left:-12px}.asRange .asRange-pointer .asRange-tip{position:absolute;top:-33px;left:0;width:36px;height:20px;margin-left:-15px;font-family:Bpreplay;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#5d5c58;border:1px solid #5d5c58;border-radius:3px;-webkit-transition:opacity .3s ease-in-out 0s;transition:opacity .3s ease-in-out 0s}.asRange .asRange-pointer .asRange-tip:before{position:absolute;bottom:-3px;left:50%;display:inline-block;width:6px;height:6px;margin-left:-3px;content:"";background-color:#5d5c58;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.asRange .asRange-selected{position:absolute;left:30%;z-index:1;width:40%;height:8px;background-color:#7ebdcb;border-radius:9px}.asRange .asRange-scale{display:none}.asRange-scale{position:relative;width:331px;height:8px;background-color:#cfcdc7;border-radius:8px}.asRange-scale .asRange-pointer{position:absolute;left:30%;z-index:2;width:8px;height:8px;margin-left:-4px;background-color:#fff;border-radius:9px}.asRange-scale .asRange-pointer:before{position:absolute;top:-4px;right:-4px;bottom:-4px;left:-4px;content:"";background:#6ba1ad;border-radius:inherit}.asRange-scale .asRange-pointer:after{position:absolute;top:0;right:0;bottom:0;left:0;content:"";background:#fff;border-radius:inherit}.asRange-scale .asRange-pointer.start{left:0;margin-left:4px}.asRange-scale .asRange-pointer.stop{left:100%;margin-left:-12px}.asRange-scale .asRange-pointer .asRange-tip{position:absolute;top:-33px;left:0;width:36px;height:20px;margin-left:-15px;font-family:Bpreplay;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#5d5c58;border:1px solid #5d5c58;border-radius:3px;-webkit-transition:opacity .3s ease-in-out 0s;transition:opacity .3s ease-in-out 0s}.asRange-scale .asRange-pointer .asRange-tip:before{position:absolute;bottom:-3px;left:50%;display:inline-block;width:6px;height:6px;margin-left:-3px;content:"";background-color:#5d5c58;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.asRange-scale .asRange-selected{position:absolute;left:30%;z-index:1;width:40%;height:8px;background-color:#7ebdcb;border-radius:9px}.asRange-scale .asRange-scale{position:absolute;bottom:-22px;left:0;width:100%;height:20px;padding:0;margin:0;list-style:none;background:url(../image/scale.png) no-repeat 0 transparent}.asRange-scale .asRange-scale li{position:absolute;top:18px;width:30px;height:20px;padding:0;margin:0;margin-left:-15px;text-align:center}.asRange-scale .asRange-scale li:first-child{left:0}.asRange-scale .asRange-scale li:nth-child(2){left:33.3%}.asRange-scale .asRange-scale li:nth-child(3){left:66.6%}.asRange-scale .asRange-scale li:last-child{left:100%}
1
+ /**
2
+ * asRange v0.3.4
3
+ * https://github.com/amazingSurge/jquery-asRange
4
+ *
5
+ * Copyright (c) amazingSurge
6
+ * Released under the LGPL-3.0 license
7
+ */
8
+ .asRange{position:relative;width:331px;height:8px;background-color:#cfcdc7;border-radius:8px}.asRange .asRange-pointer{position:absolute;left:30%;z-index:2;width:8px;height:8px;margin-left:-4px;background-color:#fff;border-radius:9px}.asRange .asRange-pointer:before{position:absolute;top:-4px;right:-4px;bottom:-4px;left:-4px;content:"";background:#6ba1ad;border-radius:inherit}.asRange .asRange-pointer:after{position:absolute;top:0;right:0;bottom:0;left:0;content:"";background:#fff;border-radius:inherit}.asRange .asRange-pointer.start{left:0;margin-left:4px}.asRange .asRange-pointer.stop{left:100%;margin-left:-12px}.asRange .asRange-pointer .asRange-tip{position:absolute;top:-33px;left:0;width:36px;height:20px;margin-left:-15px;font-family:Bpreplay;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#5d5c58;border:1px solid #5d5c58;border-radius:3px;-webkit-transition:opacity .3s ease-in-out 0s;transition:opacity .3s ease-in-out 0s}.asRange .asRange-pointer .asRange-tip:before{position:absolute;bottom:-3px;left:50%;display:inline-block;width:6px;height:6px;margin-left:-3px;content:"";background-color:#5d5c58;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.asRange .asRange-selected{position:absolute;left:30%;z-index:1;width:40%;height:8px;background-color:#7ebdcb;border-radius:9px}.asRange .asRange-scale{display:none}.asRange-scale{position:relative;width:331px;height:8px;background-color:#cfcdc7;border-radius:8px}.asRange-scale .asRange-pointer{position:absolute;left:30%;z-index:2;width:8px;height:8px;margin-left:-4px;background-color:#fff;border-radius:9px}.asRange-scale .asRange-pointer:before{position:absolute;top:-4px;right:-4px;bottom:-4px;left:-4px;content:"";background:#6ba1ad;border-radius:inherit}.asRange-scale .asRange-pointer:after{position:absolute;top:0;right:0;bottom:0;left:0;content:"";background:#fff;border-radius:inherit}.asRange-scale .asRange-pointer.start{left:0;margin-left:4px}.asRange-scale .asRange-pointer.stop{left:100%;margin-left:-12px}.asRange-scale .asRange-pointer .asRange-tip{position:absolute;top:-33px;left:0;width:36px;height:20px;margin-left:-15px;font-family:Bpreplay;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#5d5c58;border:1px solid #5d5c58;border-radius:3px;-webkit-transition:opacity .3s ease-in-out 0s;transition:opacity .3s ease-in-out 0s}.asRange-scale .asRange-pointer .asRange-tip:before{position:absolute;bottom:-3px;left:50%;display:inline-block;width:6px;height:6px;margin-left:-3px;content:"";background-color:#5d5c58;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.asRange-scale .asRange-selected{position:absolute;left:30%;z-index:1;width:40%;height:8px;background-color:#7ebdcb;border-radius:9px}.asRange-scale .asRange-scale{position:absolute;bottom:-22px;left:0;width:100%;height:20px;padding:0;margin:0;list-style:none;background:url(../image/scale.png) no-repeat 0 transparent}.asRange-scale .asRange-scale li{position:absolute;top:18px;width:30px;height:20px;padding:0;margin:0;margin-left:-15px;text-align:center}.asRange-scale .asRange-scale li:first-child{left:0}.asRange-scale .asRange-scale li:nth-child(2){left:33.3%}.asRange-scale .asRange-scale li:nth-child(3){left:66.6%}.asRange-scale .asRange-scale li:last-child{left:100%}
public/assets/css/category-top.css CHANGED
@@ -1,8 +1,8 @@
1
- #elementor-panel-categories {
2
- display: flex;
3
- flex-wrap: wrap;
4
- flex-direction: column;
5
- }
6
- #elementor-panel-category-metform {
7
- order: -10;
8
  }
1
+ #elementor-panel-categories {
2
+ display: flex;
3
+ flex-wrap: wrap;
4
+ flex-direction: column;
5
+ }
6
+ #elementor-panel-category-metform {
7
+ order: -10;
8
  }
public/assets/css/flatpickr.min.css CHANGED
@@ -1,13 +1,13 @@
1
- .flatpickr-calendar{background:transparent;opacity:0;display:none;text-align:center;visibility:hidden;padding:0;-webkit-animation:none;animation:none;direction:ltr;border:0;font-size:14px;line-height:24px;border-radius:5px;position:absolute;width:280px;-webkit-box-sizing:border-box;box-sizing:border-box;-ms-touch-action:manipulation;touch-action:manipulation;background:#fff;-webkit-box-shadow:1px 0 0 #e6e6e6,-1px 0 0 #e6e6e6,0 1px 0 #e6e6e6,0 -1px 0 #e6e6e6,0 3px 13px rgba(0,0,0,0.08);box-shadow:1px 0 0 #e6e6e6,-1px 0 0 #e6e6e6,0 1px 0 #e6e6e6,0 -1px 0 #e6e6e6,0 3px 13px rgba(0,0,0,0.08);}.flatpickr-calendar.open,.flatpickr-calendar.inline{opacity:1;max-height:640px;visibility:visible}.flatpickr-calendar.open{display:inline-block;z-index:99998}.flatpickr-calendar.animate.open{-webkit-animation:fpFadeInDown 300ms cubic-bezier(.23,1,.32,1);animation:fpFadeInDown 300ms cubic-bezier(.23,1,.32,1)}.flatpickr-calendar.inline{display:block;position:relative;top:2px}.flatpickr-calendar.static{position:absolute;top:calc(100% + 2px);}.flatpickr-calendar.static.open{z-index:999;display:block}.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7){-webkit-box-shadow:none !important;box-shadow:none !important}.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1){-webkit-box-shadow:-2px 0 0 #e6e6e6,5px 0 0 #e6e6e6;box-shadow:-2px 0 0 #e6e6e6,5px 0 0 #e6e6e6}.flatpickr-calendar .hasWeeks .dayContainer,.flatpickr-calendar .hasTime .dayContainer{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.flatpickr-calendar .hasWeeks .dayContainer{border-left:0}.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time{height:40px;border-top:1px solid #e6e6e6}.flatpickr-calendar.noCalendar.hasTime .flatpickr-time{height:auto}.flatpickr-calendar:before,.flatpickr-calendar:after{position:absolute;display:block;pointer-events:none;border:solid transparent;content:'';height:0;width:0;left:22px}.flatpickr-calendar.rightMost:before,.flatpickr-calendar.rightMost:after{left:auto;right:22px}.flatpickr-calendar:before{border-width:5px;margin:0 -5px}.flatpickr-calendar:after{border-width:4px;margin:0 -4px}.flatpickr-calendar.arrowTop:before,.flatpickr-calendar.arrowTop:after{bottom:100%}.flatpickr-calendar.arrowTop:before{border-bottom-color:#e6e6e6}.flatpickr-calendar.arrowTop:after{border-bottom-color:#fff}.flatpickr-calendar.arrowBottom:before,.flatpickr-calendar.arrowBottom:after{top:100%}.flatpickr-calendar.arrowBottom:before{border-top-color:#e6e6e6}.flatpickr-calendar.arrowBottom:after{border-top-color:#fff}.flatpickr-calendar:focus{outline:0}.flatpickr-wrapper{position:relative;display:inline-block}.flatpickr-months{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}.flatpickr-months .flatpickr-month{background:transparent;color:rgba(0,0,0,0.9);fill:rgba(0,0,0,0.9);height:34px;line-height:1;text-align:center;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:hidden;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.flatpickr-months .flatpickr-prev-month,.flatpickr-months .flatpickr-next-month{text-decoration:none;cursor:pointer;position:absolute;top:0;height:34px;padding:10px;z-index:3;color:rgba(0,0,0,0.9);fill:rgba(0,0,0,0.9);}.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,.flatpickr-months .flatpickr-next-month.flatpickr-disabled{display:none}.flatpickr-months .flatpickr-prev-month i,.flatpickr-months .flatpickr-next-month i{position:relative}.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,.flatpickr-months .flatpickr-next-month.flatpickr-prev-month{/*
2
- /*rtl:begin:ignore*/left:0;/*
3
- /*rtl:end:ignore*/}/*
4
- /*rtl:begin:ignore*/
5
- /*
6
- /*rtl:end:ignore*/
7
- .flatpickr-months .flatpickr-prev-month.flatpickr-next-month,.flatpickr-months .flatpickr-next-month.flatpickr-next-month{/*
8
- /*rtl:begin:ignore*/right:0;/*
9
- /*rtl:end:ignore*/}/*
10
- /*rtl:begin:ignore*/
11
- /*
12
- /*rtl:end:ignore*/
13
  .flatpickr-months .flatpickr-prev-month:hover,.flatpickr-months .flatpickr-next-month:hover{color:#959ea9;}.flatpickr-months .flatpickr-prev-month:hover svg,.flatpickr-months .flatpickr-next-month:hover svg{fill:#f64747}.flatpickr-months .flatpickr-prev-month svg,.flatpickr-months .flatpickr-next-month svg{width:14px;height:14px;}.flatpickr-months .flatpickr-prev-month svg path,.flatpickr-months .flatpickr-next-month svg path{-webkit-transition:fill .1s;transition:fill .1s;fill:inherit}.numInputWrapper{position:relative;height:auto;}.numInputWrapper input,.numInputWrapper span{display:inline-block}.numInputWrapper input{width:100%;}.numInputWrapper input::-ms-clear{display:none}.numInputWrapper input::-webkit-outer-spin-button,.numInputWrapper input::-webkit-inner-spin-button{margin:0;-webkit-appearance:none}.numInputWrapper span{position:absolute;right:0;width:14px;padding:0 4px 0 2px;height:50%;line-height:50%;opacity:0;cursor:pointer;border:1px solid rgba(57,57,57,0.15);-webkit-box-sizing:border-box;box-sizing:border-box;}.numInputWrapper span:hover{background:rgba(0,0,0,0.1)}.numInputWrapper span:active{background:rgba(0,0,0,0.2)}.numInputWrapper span:after{display:block;content:"";position:absolute}.numInputWrapper span.arrowUp{top:0;border-bottom:0;}.numInputWrapper span.arrowUp:after{border-left:4px solid transparent;border-right:4px solid transparent;border-bottom:4px solid rgba(57,57,57,0.6);top:26%}.numInputWrapper span.arrowDown{top:50%;}.numInputWrapper span.arrowDown:after{border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid rgba(57,57,57,0.6);top:40%}.numInputWrapper span svg{width:inherit;height:auto;}.numInputWrapper span svg path{fill:rgba(0,0,0,0.5)}.numInputWrapper:hover{background:rgba(0,0,0,0.05);}.numInputWrapper:hover span{opacity:1}.flatpickr-current-month{font-size:135%;line-height:inherit;font-weight:300;color:inherit;position:absolute;width:75%;left:12.5%;padding:7.48px 0 0 0;line-height:1;height:34px;display:inline-block;text-align:center;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);}.flatpickr-current-month span.cur-month{font-family:inherit;font-weight:700;color:inherit;display:inline-block;margin-left:.5ch;padding:0;}.flatpickr-current-month span.cur-month:hover{background:rgba(0,0,0,0.05)}.flatpickr-current-month .numInputWrapper{width:6ch;width:7ch\0;display:inline-block;}.flatpickr-current-month .numInputWrapper span.arrowUp:after{border-bottom-color:rgba(0,0,0,0.9)}.flatpickr-current-month .numInputWrapper span.arrowDown:after{border-top-color:rgba(0,0,0,0.9)}.flatpickr-current-month input.cur-year{background:transparent;-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;cursor:text;padding:0 0 0 .5ch;margin:0;display:inline-block;font-size:inherit;font-family:inherit;font-weight:300;line-height:inherit;height:auto;border:0;border-radius:0;vertical-align:initial;-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield;}.flatpickr-current-month input.cur-year:focus{outline:0}.flatpickr-current-month input.cur-year[disabled],.flatpickr-current-month input.cur-year[disabled]:hover{font-size:100%;color:rgba(0,0,0,0.5);background:transparent;pointer-events:none}.flatpickr-current-month .flatpickr-monthDropdown-months{appearance:menulist;background:transparent;border:none;border-radius:0;box-sizing:border-box;color:inherit;cursor:pointer;font-size:inherit;font-family:inherit;font-weight:300;height:auto;line-height:inherit;margin:-1px 0 0 0;outline:none;padding:0 0 0 .5ch;position:relative;vertical-align:initial;-webkit-box-sizing:border-box;-webkit-appearance:menulist;-moz-appearance:menulist;width:auto;}.flatpickr-current-month .flatpickr-monthDropdown-months:focus,.flatpickr-current-month .flatpickr-monthDropdown-months:active{outline:none}.flatpickr-current-month .flatpickr-monthDropdown-months:hover{background:rgba(0,0,0,0.05)}.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month{background-color:transparent;outline:none;padding:0}.flatpickr-weekdays{background:transparent;text-align:center;overflow:hidden;width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;height:28px;}.flatpickr-weekdays .flatpickr-weekdaycontainer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}span.flatpickr-weekday{cursor:default;font-size:90%;background:transparent;color:rgba(0,0,0,0.54);line-height:1;margin:0;text-align:center;display:block;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;font-weight:bolder}.dayContainer,.flatpickr-weeks{padding:1px 0 0 0}.flatpickr-days{position:relative;overflow:hidden;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;width:307.875px;}.flatpickr-days:focus{outline:0}.dayContainer{padding:0;outline:0;text-align:left;width:307.875px;min-width:307.875px;max-width:307.875px;-webkit-box-sizing:border-box;box-sizing:border-box;display:inline-block;display:-ms-flexbox;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-wrap:wrap;-ms-flex-pack:justify;-webkit-justify-content:space-around;justify-content:space-around;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1;}.dayContainer + .dayContainer{-webkit-box-shadow:-1px 0 0 #e6e6e6;box-shadow:-1px 0 0 #e6e6e6}.flatpickr-day{background:none;border:1px solid transparent;border-radius:150px;-webkit-box-sizing:border-box;box-sizing:border-box;color:#393939;cursor:pointer;font-weight:400;width:14.2857143%;-webkit-flex-basis:14.2857143%;-ms-flex-preferred-size:14.2857143%;flex-basis:14.2857143%;max-width:39px;height:39px;line-height:39px;margin:0;display:inline-block;position:relative;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;text-align:center;}.flatpickr-day.inRange,.flatpickr-day.prevMonthDay.inRange,.flatpickr-day.nextMonthDay.inRange,.flatpickr-day.today.inRange,.flatpickr-day.prevMonthDay.today.inRange,.flatpickr-day.nextMonthDay.today.inRange,.flatpickr-day:hover,.flatpickr-day.prevMonthDay:hover,.flatpickr-day.nextMonthDay:hover,.flatpickr-day:focus,.flatpickr-day.prevMonthDay:focus,.flatpickr-day.nextMonthDay:focus{cursor:pointer;outline:0;background:#e6e6e6;border-color:#e6e6e6}.flatpickr-day.today{border-color:#959ea9;}.flatpickr-day.today:hover,.flatpickr-day.today:focus{border-color:#959ea9;background:#959ea9;color:#fff}.flatpickr-day.selected,.flatpickr-day.startRange,.flatpickr-day.endRange,.flatpickr-day.selected.inRange,.flatpickr-day.startRange.inRange,.flatpickr-day.endRange.inRange,.flatpickr-day.selected:focus,.flatpickr-day.startRange:focus,.flatpickr-day.endRange:focus,.flatpickr-day.selected:hover,.flatpickr-day.startRange:hover,.flatpickr-day.endRange:hover,.flatpickr-day.selected.prevMonthDay,.flatpickr-day.startRange.prevMonthDay,.flatpickr-day.endRange.prevMonthDay,.flatpickr-day.selected.nextMonthDay,.flatpickr-day.startRange.nextMonthDay,.flatpickr-day.endRange.nextMonthDay{background:#569ff7;-webkit-box-shadow:none;box-shadow:none;color:#fff;border-color:#569ff7}.flatpickr-day.selected.startRange,.flatpickr-day.startRange.startRange,.flatpickr-day.endRange.startRange{border-radius:50px 0 0 50px}.flatpickr-day.selected.endRange,.flatpickr-day.startRange.endRange,.flatpickr-day.endRange.endRange{border-radius:0 50px 50px 0}.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)){-webkit-box-shadow:-10px 0 0 #569ff7;box-shadow:-10px 0 0 #569ff7}.flatpickr-day.selected.startRange.endRange,.flatpickr-day.startRange.startRange.endRange,.flatpickr-day.endRange.startRange.endRange{border-radius:50px}.flatpickr-day.inRange{border-radius:0;-webkit-box-shadow:-5px 0 0 #e6e6e6,5px 0 0 #e6e6e6;box-shadow:-5px 0 0 #e6e6e6,5px 0 0 #e6e6e6}.flatpickr-day.flatpickr-disabled,.flatpickr-day.flatpickr-disabled:hover,.flatpickr-day.prevMonthDay,.flatpickr-day.nextMonthDay,.flatpickr-day.notAllowed,.flatpickr-day.notAllowed.prevMonthDay,.flatpickr-day.notAllowed.nextMonthDay{color:rgba(57,57,57,0.3);background:transparent;border-color:transparent;cursor:default}.flatpickr-day.flatpickr-disabled,.flatpickr-day.flatpickr-disabled:hover{cursor:not-allowed;color:rgba(57,57,57,0.1)}.flatpickr-day.week.selected{border-radius:0;-webkit-box-shadow:-5px 0 0 #569ff7,5px 0 0 #569ff7;box-shadow:-5px 0 0 #569ff7,5px 0 0 #569ff7}.flatpickr-day.hidden{visibility:hidden}.rangeMode .flatpickr-day{margin-top:1px}.flatpickr-weekwrapper{float:left;}.flatpickr-weekwrapper .flatpickr-weeks{padding:0 12px;-webkit-box-shadow:1px 0 0 #e6e6e6;box-shadow:1px 0 0 #e6e6e6}.flatpickr-weekwrapper .flatpickr-weekday{float:none;width:100%;line-height:28px}.flatpickr-weekwrapper span.flatpickr-day,.flatpickr-weekwrapper span.flatpickr-day:hover{display:block;width:100%;max-width:none;color:rgba(57,57,57,0.3);background:transparent;cursor:default;border:none}.flatpickr-innerContainer{display:block;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;}.flatpickr-rContainer{display:inline-block;padding:0;-webkit-box-sizing:border-box;box-sizing:border-box}.flatpickr-time{text-align:center;outline:0;display:block;height:0;line-height:40px;max-height:40px;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}.flatpickr-time:after{content:"";display:table;clear:both}.flatpickr-time .numInputWrapper{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;width:40%;height:40px;float:left;}.flatpickr-time .numInputWrapper span.arrowUp:after{border-bottom-color:#393939}.flatpickr-time .numInputWrapper span.arrowDown:after{border-top-color:#393939}.flatpickr-time.hasSeconds .numInputWrapper{width:26%}.flatpickr-time.time24hr .numInputWrapper{width:49%}.flatpickr-time input{background:transparent;-webkit-box-shadow:none;box-shadow:none;border:0;border-radius:0;text-align:center;margin:0;padding:0;height:inherit;line-height:inherit;color:#393939;font-size:14px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield;}.flatpickr-time input.flatpickr-hour{font-weight:bold}.flatpickr-time input.flatpickr-minute,.flatpickr-time input.flatpickr-second{font-weight:400}.flatpickr-time input:focus{outline:0;border:0}.flatpickr-time .flatpickr-time-separator,.flatpickr-time .flatpickr-am-pm{height:inherit;float:left;line-height:inherit;color:#393939;font-weight:bold;width:2%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center}.flatpickr-time .flatpickr-am-pm{outline:0;width:18%;cursor:pointer;text-align:center;font-weight:400}.flatpickr-time input:hover,.flatpickr-time .flatpickr-am-pm:hover,.flatpickr-time input:focus,.flatpickr-time .flatpickr-am-pm:focus{background:#eee}.flatpickr-input[readonly]{cursor:pointer}@-webkit-keyframes fpFadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fpFadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}
1
+ .flatpickr-calendar{background:transparent;opacity:0;display:none;text-align:center;visibility:hidden;padding:0;-webkit-animation:none;animation:none;direction:ltr;border:0;font-size:14px;line-height:24px;border-radius:5px;position:absolute;width:280px;-webkit-box-sizing:border-box;box-sizing:border-box;-ms-touch-action:manipulation;touch-action:manipulation;background:#fff;-webkit-box-shadow:1px 0 0 #e6e6e6,-1px 0 0 #e6e6e6,0 1px 0 #e6e6e6,0 -1px 0 #e6e6e6,0 3px 13px rgba(0,0,0,0.08);box-shadow:1px 0 0 #e6e6e6,-1px 0 0 #e6e6e6,0 1px 0 #e6e6e6,0 -1px 0 #e6e6e6,0 3px 13px rgba(0,0,0,0.08);}.flatpickr-calendar.open,.flatpickr-calendar.inline{opacity:1;max-height:640px;visibility:visible}.flatpickr-calendar.open{display:inline-block;z-index:99998}.flatpickr-calendar.animate.open{-webkit-animation:fpFadeInDown 300ms cubic-bezier(.23,1,.32,1);animation:fpFadeInDown 300ms cubic-bezier(.23,1,.32,1)}.flatpickr-calendar.inline{display:block;position:relative;top:2px}.flatpickr-calendar.static{position:absolute;top:calc(100% + 2px);}.flatpickr-calendar.static.open{z-index:999;display:block}.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7){-webkit-box-shadow:none !important;box-shadow:none !important}.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1){-webkit-box-shadow:-2px 0 0 #e6e6e6,5px 0 0 #e6e6e6;box-shadow:-2px 0 0 #e6e6e6,5px 0 0 #e6e6e6}.flatpickr-calendar .hasWeeks .dayContainer,.flatpickr-calendar .hasTime .dayContainer{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.flatpickr-calendar .hasWeeks .dayContainer{border-left:0}.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time{height:40px;border-top:1px solid #e6e6e6}.flatpickr-calendar.noCalendar.hasTime .flatpickr-time{height:auto}.flatpickr-calendar:before,.flatpickr-calendar:after{position:absolute;display:block;pointer-events:none;border:solid transparent;content:'';height:0;width:0;left:22px}.flatpickr-calendar.rightMost:before,.flatpickr-calendar.rightMost:after{left:auto;right:22px}.flatpickr-calendar:before{border-width:5px;margin:0 -5px}.flatpickr-calendar:after{border-width:4px;margin:0 -4px}.flatpickr-calendar.arrowTop:before,.flatpickr-calendar.arrowTop:after{bottom:100%}.flatpickr-calendar.arrowTop:before{border-bottom-color:#e6e6e6}.flatpickr-calendar.arrowTop:after{border-bottom-color:#fff}.flatpickr-calendar.arrowBottom:before,.flatpickr-calendar.arrowBottom:after{top:100%}.flatpickr-calendar.arrowBottom:before{border-top-color:#e6e6e6}.flatpickr-calendar.arrowBottom:after{border-top-color:#fff}.flatpickr-calendar:focus{outline:0}.flatpickr-wrapper{position:relative;display:inline-block}.flatpickr-months{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}.flatpickr-months .flatpickr-month{background:transparent;color:rgba(0,0,0,0.9);fill:rgba(0,0,0,0.9);height:34px;line-height:1;text-align:center;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:hidden;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.flatpickr-months .flatpickr-prev-month,.flatpickr-months .flatpickr-next-month{text-decoration:none;cursor:pointer;position:absolute;top:0;height:34px;padding:10px;z-index:3;color:rgba(0,0,0,0.9);fill:rgba(0,0,0,0.9);}.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,.flatpickr-months .flatpickr-next-month.flatpickr-disabled{display:none}.flatpickr-months .flatpickr-prev-month i,.flatpickr-months .flatpickr-next-month i{position:relative}.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,.flatpickr-months .flatpickr-next-month.flatpickr-prev-month{/*
2
+ /*rtl:begin:ignore*/left:0;/*
3
+ /*rtl:end:ignore*/}/*
4
+ /*rtl:begin:ignore*/
5
+ /*
6
+ /*rtl:end:ignore*/
7
+ .flatpickr-months .flatpickr-prev-month.flatpickr-next-month,.flatpickr-months .flatpickr-next-month.flatpickr-next-month{/*
8
+ /*rtl:begin:ignore*/right:0;/*
9
+ /*rtl:end:ignore*/}/*
10
+ /*rtl:begin:ignore*/
11
+ /*
12
+ /*rtl:end:ignore*/
13
  .flatpickr-months .flatpickr-prev-month:hover,.flatpickr-months .flatpickr-next-month:hover{color:#959ea9;}.flatpickr-months .flatpickr-prev-month:hover svg,.flatpickr-months .flatpickr-next-month:hover svg{fill:#f64747}.flatpickr-months .flatpickr-prev-month svg,.flatpickr-months .flatpickr-next-month svg{width:14px;height:14px;}.flatpickr-months .flatpickr-prev-month svg path,.flatpickr-months .flatpickr-next-month svg path{-webkit-transition:fill .1s;transition:fill .1s;fill:inherit}.numInputWrapper{position:relative;height:auto;}.numInputWrapper input,.numInputWrapper span{display:inline-block}.numInputWrapper input{width:100%;}.numInputWrapper input::-ms-clear{display:none}.numInputWrapper input::-webkit-outer-spin-button,.numInputWrapper input::-webkit-inner-spin-button{margin:0;-webkit-appearance:none}.numInputWrapper span{position:absolute;right:0;width:14px;padding:0 4px 0 2px;height:50%;line-height:50%;opacity:0;cursor:pointer;border:1px solid rgba(57,57,57,0.15);-webkit-box-sizing:border-box;box-sizing:border-box;}.numInputWrapper span:hover{background:rgba(0,0,0,0.1)}.numInputWrapper span:active{background:rgba(0,0,0,0.2)}.numInputWrapper span:after{display:block;content:"";position:absolute}.numInputWrapper span.arrowUp{top:0;border-bottom:0;}.numInputWrapper span.arrowUp:after{border-left:4px solid transparent;border-right:4px solid transparent;border-bottom:4px solid rgba(57,57,57,0.6);top:26%}.numInputWrapper span.arrowDown{top:50%;}.numInputWrapper span.arrowDown:after{border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid rgba(57,57,57,0.6);top:40%}.numInputWrapper span svg{width:inherit;height:auto;}.numInputWrapper span svg path{fill:rgba(0,0,0,0.5)}.numInputWrapper:hover{background:rgba(0,0,0,0.05);}.numInputWrapper:hover span{opacity:1}.flatpickr-current-month{font-size:135%;line-height:inherit;font-weight:300;color:inherit;position:absolute;width:75%;left:12.5%;padding:7.48px 0 0 0;line-height:1;height:34px;display:inline-block;text-align:center;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);}.flatpickr-current-month span.cur-month{font-family:inherit;font-weight:700;color:inherit;display:inline-block;margin-left:.5ch;padding:0;}.flatpickr-current-month span.cur-month:hover{background:rgba(0,0,0,0.05)}.flatpickr-current-month .numInputWrapper{width:6ch;width:7ch\0;display:inline-block;}.flatpickr-current-month .numInputWrapper span.arrowUp:after{border-bottom-color:rgba(0,0,0,0.9)}.flatpickr-current-month .numInputWrapper span.arrowDown:after{border-top-color:rgba(0,0,0,0.9)}.flatpickr-current-month input.cur-year{background:transparent;-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;cursor:text;padding:0 0 0 .5ch;margin:0;display:inline-block;font-size:inherit;font-family:inherit;font-weight:300;line-height:inherit;height:auto;border:0;border-radius:0;vertical-align:initial;-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield;}.flatpickr-current-month input.cur-year:focus{outline:0}.flatpickr-current-month input.cur-year[disabled],.flatpickr-current-month input.cur-year[disabled]:hover{font-size:100%;color:rgba(0,0,0,0.5);background:transparent;pointer-events:none}.flatpickr-current-month .flatpickr-monthDropdown-months{appearance:menulist;background:transparent;border:none;border-radius:0;box-sizing:border-box;color:inherit;cursor:pointer;font-size:inherit;font-family:inherit;font-weight:300;height:auto;line-height:inherit;margin:-1px 0 0 0;outline:none;padding:0 0 0 .5ch;position:relative;vertical-align:initial;-webkit-box-sizing:border-box;-webkit-appearance:menulist;-moz-appearance:menulist;width:auto;}.flatpickr-current-month .flatpickr-monthDropdown-months:focus,.flatpickr-current-month .flatpickr-monthDropdown-months:active{outline:none}.flatpickr-current-month .flatpickr-monthDropdown-months:hover{background:rgba(0,0,0,0.05)}.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month{background-color:transparent;outline:none;padding:0}.flatpickr-weekdays{background:transparent;text-align:center;overflow:hidden;width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;height:28px;}.flatpickr-weekdays .flatpickr-weekdaycontainer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}span.flatpickr-weekday{cursor:default;font-size:90%;background:transparent;color:rgba(0,0,0,0.54);line-height:1;margin:0;text-align:center;display:block;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;font-weight:bolder}.dayContainer,.flatpickr-weeks{padding:1px 0 0 0}.flatpickr-days{position:relative;overflow:hidden;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;width:307.875px;}.flatpickr-days:focus{outline:0}.dayContainer{padding:0;outline:0;text-align:left;width:307.875px;min-width:307.875px;max-width:307.875px;-webkit-box-sizing:border-box;box-sizing:border-box;display:inline-block;display:-ms-flexbox;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-wrap:wrap;-ms-flex-pack:justify;-webkit-justify-content:space-around;justify-content:space-around;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1;}.dayContainer + .dayContainer{-webkit-box-shadow:-1px 0 0 #e6e6e6;box-shadow:-1px 0 0 #e6e6e6}.flatpickr-day{background:none;border:1px solid transparent;border-radius:150px;-webkit-box-sizing:border-box;box-sizing:border-box;color:#393939;cursor:pointer;font-weight:400;width:14.2857143%;-webkit-flex-basis:14.2857143%;-ms-flex-preferred-size:14.2857143%;flex-basis:14.2857143%;max-width:39px;height:39px;line-height:39px;margin:0;display:inline-block;position:relative;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;text-align:center;}.flatpickr-day.inRange,.flatpickr-day.prevMonthDay.inRange,.flatpickr-day.nextMonthDay.inRange,.flatpickr-day.today.inRange,.flatpickr-day.prevMonthDay.today.inRange,.flatpickr-day.nextMonthDay.today.inRange,.flatpickr-day:hover,.flatpickr-day.prevMonthDay:hover,.flatpickr-day.nextMonthDay:hover,.flatpickr-day:focus,.flatpickr-day.prevMonthDay:focus,.flatpickr-day.nextMonthDay:focus{cursor:pointer;outline:0;background:#e6e6e6;border-color:#e6e6e6}.flatpickr-day.today{border-color:#959ea9;}.flatpickr-day.today:hover,.flatpickr-day.today:focus{border-color:#959ea9;background:#959ea9;color:#fff}.flatpickr-day.selected,.flatpickr-day.startRange,.flatpickr-day.endRange,.flatpickr-day.selected.inRange,.flatpickr-day.startRange.inRange,.flatpickr-day.endRange.inRange,.flatpickr-day.selected:focus,.flatpickr-day.startRange:focus,.flatpickr-day.endRange:focus,.flatpickr-day.selected:hover,.flatpickr-day.startRange:hover,.flatpickr-day.endRange:hover,.flatpickr-day.selected.prevMonthDay,.flatpickr-day.startRange.prevMonthDay,.flatpickr-day.endRange.prevMonthDay,.flatpickr-day.selected.nextMonthDay,.flatpickr-day.startRange.nextMonthDay,.flatpickr-day.endRange.nextMonthDay{background:#569ff7;-webkit-box-shadow:none;box-shadow:none;color:#fff;border-color:#569ff7}.flatpickr-day.selected.startRange,.flatpickr-day.startRange.startRange,.flatpickr-day.endRange.startRange{border-radius:50px 0 0 50px}.flatpickr-day.selected.endRange,.flatpickr-day.startRange.endRange,.flatpickr-day.endRange.endRange{border-radius:0 50px 50px 0}.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)){-webkit-box-shadow:-10px 0 0 #569ff7;box-shadow:-10px 0 0 #569ff7}.flatpickr-day.selected.startRange.endRange,.flatpickr-day.startRange.startRange.endRange,.flatpickr-day.endRange.startRange.endRange{border-radius:50px}.flatpickr-day.inRange{border-radius:0;-webkit-box-shadow:-5px 0 0 #e6e6e6,5px 0 0 #e6e6e6;box-shadow:-5px 0 0 #e6e6e6,5px 0 0 #e6e6e6}.flatpickr-day.flatpickr-disabled,.flatpickr-day.flatpickr-disabled:hover,.flatpickr-day.prevMonthDay,.flatpickr-day.nextMonthDay,.flatpickr-day.notAllowed,.flatpickr-day.notAllowed.prevMonthDay,.flatpickr-day.notAllowed.nextMonthDay{color:rgba(57,57,57,0.3);background:transparent;border-color:transparent;cursor:default}.flatpickr-day.flatpickr-disabled,.flatpickr-day.flatpickr-disabled:hover{cursor:not-allowed;color:rgba(57,57,57,0.1)}.flatpickr-day.week.selected{border-radius:0;-webkit-box-shadow:-5px 0 0 #569ff7,5px 0 0 #569ff7;box-shadow:-5px 0 0 #569ff7,5px 0 0 #569ff7}.flatpickr-day.hidden{visibility:hidden}.rangeMode .flatpickr-day{margin-top:1px}.flatpickr-weekwrapper{float:left;}.flatpickr-weekwrapper .flatpickr-weeks{padding:0 12px;-webkit-box-shadow:1px 0 0 #e6e6e6;box-shadow:1px 0 0 #e6e6e6}.flatpickr-weekwrapper .flatpickr-weekday{float:none;width:100%;line-height:28px}.flatpickr-weekwrapper span.flatpickr-day,.flatpickr-weekwrapper span.flatpickr-day:hover{display:block;width:100%;max-width:none;color:rgba(57,57,57,0.3);background:transparent;cursor:default;border:none}.flatpickr-innerContainer{display:block;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;}.flatpickr-rContainer{display:inline-block;padding:0;-webkit-box-sizing:border-box;box-sizing:border-box}.flatpickr-time{text-align:center;outline:0;display:block;height:0;line-height:40px;max-height:40px;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}.flatpickr-time:after{content:"";display:table;clear:both}.flatpickr-time .numInputWrapper{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;width:40%;height:40px;float:left;}.flatpickr-time .numInputWrapper span.arrowUp:after{border-bottom-color:#393939}.flatpickr-time .numInputWrapper span.arrowDown:after{border-top-color:#393939}.flatpickr-time.hasSeconds .numInputWrapper{width:26%}.flatpickr-time.time24hr .numInputWrapper{width:49%}.flatpickr-time input{background:transparent;-webkit-box-shadow:none;box-shadow:none;border:0;border-radius:0;text-align:center;margin:0;padding:0;height:inherit;line-height:inherit;color:#393939;font-size:14px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield;}.flatpickr-time input.flatpickr-hour{font-weight:bold}.flatpickr-time input.flatpickr-minute,.flatpickr-time input.flatpickr-second{font-weight:400}.flatpickr-time input:focus{outline:0;border:0}.flatpickr-time .flatpickr-time-separator,.flatpickr-time .flatpickr-am-pm{height:inherit;float:left;line-height:inherit;color:#393939;font-weight:bold;width:2%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center}.flatpickr-time .flatpickr-am-pm{outline:0;width:18%;cursor:pointer;text-align:center;font-weight:400}.flatpickr-time input:hover,.flatpickr-time .flatpickr-am-pm:hover,.flatpickr-time input:focus,.flatpickr-time .flatpickr-am-pm:focus{background:#eee}.flatpickr-input[readonly]{cursor:pointer}@-webkit-keyframes fpFadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fpFadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}
public/assets/css/font-awesome.min.css CHANGED
@@ -1,4 +1,4 @@
1
- /*!
2
- * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
3
- * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4
- */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
1
+ /*!
2
+ * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
3
+ * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4
+ */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
public/assets/css/select2.min.css CHANGED
@@ -1 +1 @@
1
- .select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text}.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--default .select2-selection--multiple .select2-selection__rendered li{list-style:none}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-top:5px;margin-right:10px;padding:1px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline{float:right}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option[role=group]{padding:0}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}.select2-container--default .select2-results__option[aria-selected=true]{background-color:#ddd}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#5897fb;color:white}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top, #fff 50%, #eee 100%);background-image:-o-linear-gradient(top, #fff 50%, #eee 100%);background-image:linear-gradient(to bottom, #fff 50%, #eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-right:10px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top, #eee 50%, #ccc 100%);background-image:-o-linear-gradient(top, #eee 50%, #ccc 100%);background-image:linear-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top, #fff 0%, #eee 50%);background-image:-o-linear-gradient(top, #fff 0%, #eee 50%);background-image:linear-gradient(to bottom, #fff 0%, #eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top, #eee 50%, #fff 100%);background-image:-o-linear-gradient(top, #eee 50%, #fff 100%);background-image:linear-gradient(to bottom, #eee 50%, #fff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{float:right;margin-left:5px;margin-right:auto}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option[role=group]{padding:0}.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}
1
+ .select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text}.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--default .select2-selection--multiple .select2-selection__rendered li{list-style:none}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-top:5px;margin-right:10px;padding:1px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline{float:right}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option[role=group]{padding:0}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}.select2-container--default .select2-results__option[aria-selected=true]{background-color:#ddd}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#5897fb;color:white}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top, #fff 50%, #eee 100%);background-image:-o-linear-gradient(top, #fff 50%, #eee 100%);background-image:linear-gradient(to bottom, #fff 50%, #eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-right:10px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top, #eee 50%, #ccc 100%);background-image:-o-linear-gradient(top, #eee 50%, #ccc 100%);background-image:linear-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top, #fff 0%, #eee 50%);background-image:-o-linear-gradient(top, #fff 0%, #eee 50%);background-image:linear-gradient(to bottom, #fff 0%, #eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top, #eee 50%, #fff 100%);background-image:-o-linear-gradient(top, #eee 50%, #fff 100%);background-image:linear-gradient(to bottom, #eee 50%, #fff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{float:right;margin-left:5px;margin-right:auto}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option[role=group]{padding:0}.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}
public/assets/css/style.css CHANGED
@@ -1,1020 +1,1045 @@
1
- #elementor .mf-btn-wraper a.metform-btn {
2
- background: #337ab7;
3
- color: #ffffff;
4
- border-radius: 5px;
5
- height: 20%;
6
- font-size: 16px;
7
- padding: 10px;
8
- }
9
-
10
- .mf-form-wrapper section,
11
- .single-metform-form section {
12
- padding-top: 0;
13
- padding-bottom: 0;
14
- }
15
-
16
- .mf-input-switch-control {
17
- position: relative;
18
- display: inline-block;
19
- }
20
- .mf-input-switch-control > input[type="checkbox"] {
21
- display: none !important;
22
- }
23
-
24
- .mf-input-control {
25
- position: absolute;
26
- z-index: -1;
27
- opacity: 0;
28
- }
29
- .mf-input-switch .mf-input-control-label::before {
30
- content: attr(data-disable);
31
- width: 55px;
32
- height: 25px;
33
- background-color: #EDEDED;
34
- left: 0;
35
- border-radius: 15px;
36
- text-align: right;
37
- color: #fff;
38
- text-transform: uppercase;
39
- font-weight: bold;
40
- font-size: 10px;
41
- padding: 3px;
42
- -webkit-box-sizing: border-box;
43
- box-sizing: border-box;
44
- padding-right: 10px;
45
- -webkit-transition: all .4s;
46
- -o-transition: all .4s;
47
- transition: all .4s;
48
- float: right;
49
- line-height: 18px;
50
- cursor: pointer;
51
- display: flex;
52
- align-items: center;
53
- justify-content: flex-end;
54
- }
55
-
56
- .metform-form-content {
57
- position: relative;
58
- z-index: 0;
59
- }
60
-
61
- /** Response Message **/
62
- .mf-response-msg-wrap {
63
- overflow: hidden;
64
- -webkit-transition: height .45s, opacity .45s, visibility .45s;
65
- transition: height .45s, opacity .45s, visibility .45s;
66
-
67
- background-color: #fff;
68
- border: 1px solid #101010;
69
- border-radius: 5px;
70
- }
71
- .mf-response-msg-wrap[data-show="0"] {
72
- height: 0 !important;
73
- opacity: 0;
74
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
75
- visibility: hidden;
76
- }
77
- .mf-response-msg-wrap[data-show="1"] {
78
- height: auto;
79
- opacity: 1;
80
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
81
- visibility: visible;
82
- margin-bottom: 20px;;
83
- }
84
- .mf-response-msg {
85
- margin: 0 auto 20px;
86
- border-radius: 5px;
87
- text-align: center;
88
- padding: 15px 34px;
89
- display: flex;
90
- justify-content: center;
91
- flex-direction: column;
92
- align-items: center;
93
- height: 100%;
94
- }
95
- .wf-error-res{
96
- background-color: #f8d7da;
97
- border-color: #f5c6cb;
98
- }
99
- .wf-error-res .mf-alert-icon,
100
- .mf-success-icon {
101
- color: #721c24;
102
- font-size: 30px;
103
- margin-bottom: 5px;
104
- }
105
- .mf-success-icon {
106
- color: #101010;
107
- }
108
- .mf-response-msg p{
109
- font-size: 17px;
110
- line-height: 20px;
111
- color: #101010;
112
- margin-bottom: 0px;
113
- }
114
- .wf-error-res p{
115
- color: #721c24;
116
- }
117
- .mf-input-control-label::before, .custom-file-label, .custom-select {
118
- transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
119
- }
120
- .mf-input-control-label::after {
121
- position: absolute;
122
- top: 2px;
123
- left: 2px;
124
- display: block;
125
- width: 14px;
126
- height: 14px;
127
- content: "";
128
- background-color: #adb5bd;
129
- border-radius: 100px;
130
- transition: all .4s;
131
- cursor: pointer;
132
- }
133
-
134
- .mf-input-switch label.mf-input-control-label {
135
- display: inline-block;
136
- vertical-align: middle;
137
- position: relative;
138
- margin: 0;
139
- }
140
-
141
- .mf-input-control:checked~.mf-input-control-label::before {
142
- color: #fff;
143
- border-color: #007bff;
144
- background-color: #007bff;
145
- content: attr(data-enable);
146
- text-align: left;
147
- padding-left: 10px;
148
- justify-content: flex-start;
149
- }
150
- .mf-input-switch .mf-input-control:checked~.mf-input-control-label::after {
151
- background-color: #fff;
152
- }
153
- .mf-input-wrapper .mf-input-help{
154
- display: block;
155
- font-size: 0.9em;
156
- margin-top: 5px;
157
- opacity: 0.7;
158
- clear: both;
159
- font-weight: 400;
160
- }
161
- .mf-input-wrapper .mf-input {
162
- width: 100%;
163
- max-width: 100%;
164
- padding: 12px;
165
- height: auto;
166
- border-width: 1px;
167
- border-style: solid;
168
- border-color: #eaeaea;
169
- border-radius: 2px;
170
- background: none;
171
- background-color: #fafafa;
172
- box-shadow: none;
173
- box-sizing: border-box;
174
- transition: all .2s linear;
175
- font-size: 14px;
176
- line-height: 21px;
177
- }
178
-
179
- .mf-input-wrapper.mf-field-error .mf-input,
180
- .mf-input-wrapper.mf-field-error .mf-input:focus,
181
- .mf-input-wrapper .mf-input:focus{
182
- outline: none;
183
- }
184
- .mf-input-wrapper .mf-input:focus{
185
- border-color: #4285f478
186
- }
187
- .mf-input-wrapper .mf-input::placeholder {
188
- color: #c9c1c1;
189
- font-weight: 400;
190
- font-size: 14px;
191
- }
192
- .mf-input-wrapper .mf-input::-webkit-input-placeholder {
193
- color: #c9c1c1;
194
- font-weight: 400;
195
- font-size: 14px;
196
- }
197
- .mf-input-wrapper .mf-input:-moz-placeholder {
198
- color: #c9c1c1;
199
- font-weight: 400;
200
- font-size: 14px;
201
- }
202
-
203
- .mf-input-wrapper .mf-input-label,
204
- .mf-repeater-field-label {
205
- font-family: "Roboto", Sans-serif;
206
- font-weight: 600;
207
- font-size: 14px;
208
- display: block;
209
- color: #000000;
210
- font-size: 14px;
211
- line-height: 16px;
212
- margin-bottom: 5px;
213
- }
214
- .mf-input-wrapper .mf-input-label,
215
- .mf-input-wrapper .mf-input {
216
- vertical-align: middle;
217
- }
218
-
219
- div.mf-input-wrapper > textarea.mf-input {
220
- padding: 15px;
221
- }
222
-
223
- .irs--round .irs-min, .irs--round .irs-max{
224
- display: none;
225
- }
226
- .irs--round .irs-handle{
227
- cursor: pointer;
228
- }
229
- .mf-checkbox-option input[type="checkbox"]{
230
- display: none;
231
- }
232
- .mf-checkbox-option input[type="checkbox"] + span:before {
233
- position: relative;
234
- content: "\f0c8";
235
- font-family: "Font Awesome 5 Free" !important;
236
- font-weight: 500 !important;
237
- display: inline-block;
238
- border: none;
239
- font-size: 18px;
240
- color: #5F7BFF;
241
- font-weight: normal;
242
- width: 25px;
243
- line-height: 1;
244
- top: 2px;
245
- }
246
- .mf-checkbox-option input[type="checkbox"] + span{
247
- font-weight: 400;
248
- font-size: 14px;
249
- cursor: pointer;
250
- }
251
- .mf-checkbox-option input[type="checkbox"]:checked + span:before {
252
- content: "\f14a";
253
- font-family: "Font Awesome 5 Free" !important;
254
- display: inline-block;
255
- border: none;
256
- font-size: 18px;
257
- color: #5F7BFF;
258
- }
259
-
260
- .mf-radio-option input[type="radio"]{
261
- display: none;
262
- }
263
- .mf-radio-option,
264
- .mf-checkbox-option {
265
- padding-right: 15px;
266
- }
267
-
268
- .mf-radio-option input[type="radio"] + span:before {
269
- content: "\f111";
270
- font-family: "Font Awesome 5 Free" !important;
271
- font-weight: 500 !important;
272
- display: inline-block;
273
- border: none;
274
- font-size: 18px;
275
- color: #5F7BFF;
276
- font-weight: normal;
277
- width: 25px;
278
- line-height: 1;
279
- top: 2px;
280
- position: relative;
281
- }
282
- .mf-radio-option input[type="radio"] + span{
283
- font-weight: 400;
284
- font-size: 14px;
285
- cursor: pointer;
286
- }
287
- .mf-radio-option input[type="radio"]:checked + span:before {
288
- content: "\f058";
289
- font-family: "Font Awesome 5 Free" !important;
290
- display: inline-block;
291
- border: none;
292
- font-size: 18px;
293
- color: #5F7BFF;
294
- }
295
-
296
- /* Select Widget */
297
- .mf-input-wrapper .mf-input-select {
298
- padding: 0 !important;
299
- }
300
-
301
- .mf-input-select .mf_select__control {
302
- min-height: 0;
303
- padding: 12px;
304
- border-width: 0;
305
- border-radius: 0;
306
- box-shadow: none;
307
- cursor: pointer;
308
- border-radius: none !Important;
309
- border: 1px solid #eaeaea;
310
- background-color: transparent;
311
- }
312
- .mf-input-select .mf_select__control:hover{
313
- border: 1px solid #eaeaea;
314
- }
315
-
316
- .mf-input-select .mf_select__indicator-separator {
317
- display: none;
318
- }
319
-
320
- .mf-input-select .mf_select__value-container,
321
- .mf-input-select .mf_select__value-container input {
322
- padding: 0;
323
- }
324
-
325
- .mf-input-select .mf_select__placeholder {
326
- margin-left: 0;
327
- margin-right: 0;
328
- color: inherit;
329
- }
330
-
331
- .mf-input-select .mf_select__indicators {
332
- margin-right: 2px;
333
- }
334
- .mf-input-multiselect .mf_multiselect__indicators {
335
- margin-right: 15px;
336
- }
337
- .mf-input-select .mf_select__indicator,
338
- .mf-input-multiselect .mf_multiselect__dropdown-indicator {
339
- padding: 0;
340
- border-style: solid;
341
- border-width: 5px 4px 0;
342
- border-color: currentColor transparent transparent;
343
- }
344
- .mf-input-select .mf_select__control--menu-is-open .mf_select__indicator,
345
- .mf-input-multiselect .mf_multiselect__control--menu-is-open .mf_multiselect__dropdown-indicator {
346
- border-width: 0 4px 5px;
347
- border-color: transparent transparent currentColor;
348
- }
349
- .mf-input-select .mf_select__indicator > svg,
350
- .mf-input-multiselect .mf_multiselect__dropdown-indicator > svg {
351
- display: none;
352
- }
353
-
354
- .mf-input-select .mf_select__menu {
355
- width: 100%;
356
- margin: 0;
357
- /* border: 1px solid #eaeaea; */
358
- border-radius: 0;
359
- box-shadow: none;
360
- background-color: #fff;
361
- }
362
- .mf-input-select .mf_select__menu > div{
363
- overflow-X: hidden;
364
- }
365
- .mf-input-select .mf_select__menu-list {
366
- padding: 0;
367
- }
368
-
369
- .mf-input-select .mf_select__option {
370
- cursor: pointer;
371
- border: 1px solid #eaeaea;
372
- }
373
- .mf-input-select .mf_select__option.mf_select__option--is-selected,
374
- .mf-input-select .mf_select__option.mf_select__option--is-focused,
375
- .mf-input-select .mf_select__option:hover {
376
- background-color: #F0F0F0;
377
- }
378
- .mf-input-select .mf_select__control.mf_select__control--is-focused{
379
- border-color: #4285f478;
380
- background-color: #fff;
381
- }
382
- .mf-input.mf-input-select{
383
- border: none !important;
384
- background-color: #FAFAFA;
385
- }
386
- .mf-input-select .mf_select__single-value {
387
- position: relative;
388
- top: 0;
389
- width: 100%;
390
- max-width: calc(100% - 22px);
391
- margin-left: 0;
392
- margin-right: 0;
393
- transform: none;
394
- }
395
-
396
- .mf-input-wrapper select.mf-input-dropdown {
397
- border: none;
398
- padding: 15px 25px;
399
- font-size: 15px;
400
- font-weight: 500 !important;
401
- -webkit-appearance: none;
402
- -moz-appearance: none;
403
- -o-appearance: none;
404
- appearance: none;
405
- border-width: 1px;
406
- border-style: solid;
407
- border-color: #eaeaea;
408
- }
409
- .mf-input-wrapper select.mf-input-dropdown option {
410
- background-color: #fff;
411
- color: #222222;
412
- font-size: 15px;
413
- }
414
-
415
- .mf-input-switch-control.mf-input-switch.mf-input {
416
- box-shadow: none !important;
417
- vertical-align: -webkit-baseline-middle;
418
- border: none;
419
- padding: 0;
420
- }
421
-
422
- .mf-input-wrapper .range-slider {
423
- display: inline-block;
424
- width: 100%;
425
- }
426
- .mf-input-wrapper .asRange {
427
- width: 100%;
428
- background-color: #F1F4F9;
429
- }
430
- .mf-input-wrapper .asRange .asRange-pointer:before,
431
- .mf-input-wrapper .asRange .asRange-pointer .asRange-tip:before,
432
- .mf-input-wrapper .asRange .asRange-selected {
433
- background-color: #1FB787;
434
- }
435
- .mf-input-wrapper .asRange .asRange-pointer .asRange-tip {
436
- background-color: #1FB787;
437
- border: 1px solid #1FB787;
438
- top: inherit;
439
- bottom: 18px;
440
- left: -50%;
441
- margin-left: 8px;
442
- transform: translateX(-50%);
443
- }
444
- .metform-btn {
445
- background-color: #4285f4;
446
- border: none;
447
- box-shadow: none;
448
- display: inline-block;
449
- max-width: 100%;
450
- padding: 16px 40px;
451
- font-size: 16px;
452
- border-radius: 2px;
453
- cursor: pointer;
454
- box-shadow: 0px 5px 5px 0px rgba(66,133,244,0.3);
455
- line-height: 18px;
456
- transition: all .4s;
457
- font-weight: 500;
458
- text-decoration: none;
459
- }
460
- .metform-btn:hover,
461
- .metform-btn:focus {
462
- background-color: #4285f4;
463
- text-decoration: none;
464
- outline: none;
465
- }
466
- button.metform-btn,
467
- button.metform-btn:not(.toggle) {
468
- background-color: #4285f4;
469
- }
470
- button.metform-btn:hover,
471
- button.metform-btn:focus {
472
- background-color: #4285f4;
473
- }
474
- @media (max-width: 767px) {
475
- .mf-btn--mobile-justify .metform-btn {
476
- width: 100%;
477
- }
478
- }
479
- @media (min-width: 768px) and (max-width: 1024px) {
480
- .mf-btn--tablet-justify .metform-btn {
481
- width: 100%;
482
- }
483
- }
484
- @media (min-width: 1025px) {
485
- .mf-btn--justify .metform-btn {
486
- width: 100%;
487
- }
488
- }
489
-
490
-
491
- /**
492
- * Submit Button
493
- */
494
- .metform-submit-btn {
495
- position: relative;
496
- z-index: 0;
497
- }
498
-
499
- .metform-submit-btn:before,
500
- .metform-submit-btn:after {
501
- content: " ";
502
- position: absolute;
503
- top: 50%;
504
- left: 50%;
505
- width: 22px;
506
- height: 22px;
507
- margin: -11px 0 0 -11px;
508
- border-style: solid;
509
- border-color: currentColor;
510
- border-width: 0;
511
- border-radius: 50%;
512
- opacity: 0;
513
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
514
- -webkit-transition: opacity .3s ease;
515
- transition: opacity .3s ease;
516
- }
517
- .metform-submit-btn[disabled]:before,
518
- .metform-submit-btn[disabled]:after {
519
- opacity: 1;
520
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
521
- -webkit-transition-delay: .15s;
522
- transition-delay: .15s;
523
- }
524
-
525
- .metform-submit-btn:before {
526
- border-width: 2px;
527
- }
528
- .metform-submit-btn[disabled]:before {
529
- opacity: 0.25;
530
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=25)";
531
- }
532
-
533
- .metform-submit-btn:after {
534
- border-top-width: 2px;
535
- -webkit-animation: submitSpin .55s linear infinite;
536
- animation: submitSpin .55s linear infinite;
537
- }
538
-
539
- .metform-submit-btn > span {
540
- -webkit-transition: opacity .15s ease .15s;
541
- transition: opacity .15s ease .15s;
542
- }
543
- .metform-submit-btn[disabled] > span {
544
- opacity: 0;
545
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
546
- -webkit-transition-delay: 0;
547
- transition-delay: 0;
548
- }
549
-
550
- @-webkit-keyframes submitSpin {
551
- to {
552
- -webkit-transform: rotate(360deg);
553
- transform: rotate(360deg);
554
- }
555
- }
556
-
557
- @keyframes submitSpin {
558
- to {
559
- -webkit-transform: rotate(360deg);
560
- transform: rotate(360deg);
561
- }
562
- }
563
-
564
-
565
- /** Mobile Widget **/
566
- .mf-input-wrapper .iti{
567
- display: block;
568
- }
569
- .mf-input-wrapper > .iti{
570
- display: inline-block;
571
- width: 100%;
572
- }
573
-
574
- .mf-input-wrapper .iti .mf-input{
575
- width: 100% !important;
576
- }
577
- .mf-input-wrapper .iti--separate-dial-code .iti__selected-flag {
578
- background-color: #f7f6f6;
579
- }
580
- .mf-input-wrapper .iti .iti__flag-container{
581
- display: none;
582
- }
583
- .mf-input-wrapper .iti > .iti__flag-container{
584
- display: block;
585
- }
586
-
587
- /** Date Widget **/
588
- .flatpickr-calendar {
589
- margin-top: 8px;
590
- }
591
-
592
- .flatpickr-month {
593
- margin-top: 3px;
594
- margin-bottom: 5px;
595
- }
596
-
597
- .mf-input-wrapper > .flatpickr-wrapper {
598
- display: block;
599
- }
600
-
601
- .flatpickr-wrapper select {
602
- display: inline-block;
603
- }
604
-
605
- .elementor-widget-mf-date.elementor-element-edit-mode .flatpickr-calendar,
606
- .elementor-widget-mf-time.elementor-element-edit-mode .flatpickr-calendar {
607
- top: 100% !important;
608
- left: 0 !important;
609
- }
610
-
611
- /** Ratings **/
612
- .mf-ratings {
613
- display: -webkit-inline-box;
614
- display: -ms-inline-flexbox;
615
- display: inline-flex;
616
- -ms-flex-wrap: wrap;
617
- flex-wrap: wrap;
618
- }
619
- .mf-ratings > input {
620
- display: none !important;
621
- }
622
- .mf-ratings > label {
623
- cursor: pointer;
624
- }
625
- .mf-ratings > label:not(:last-child) {
626
- margin-right: 5px;
627
- }
628
- .mf-ratings.is-selected > label,
629
- .mf-ratings:not(.is-selected):hover > label {
630
- color: #ffdb72;
631
- }
632
- .mf-ratings:not(.is-selected),
633
- .mf-ratings.is-selected:not(:hover) > input:checked + label ~ label,
634
- .mf-ratings.is-selected > label:hover ~ label,
635
- .mf-ratings:not(.is-selected) > label:hover ~ label {
636
- color: #ccc;
637
- }
638
-
639
- /** File Upload **/
640
- .mf-input-file-upload{
641
- width: .1px;
642
- height: .1px;
643
- opacity: 0;
644
- visibility: hidden;
645
- position: absolute;
646
- }
647
- .mf-input-file-upload-label {
648
- color: #fff;
649
- margin-right: 10px;
650
- padding: 5px 15px;
651
- display: inline-flex;
652
- align-items: center;
653
- box-shadow: none;
654
- font-size: 16px;
655
- font-weight: normal;
656
- line-height: 28px;
657
- }
658
- .mf-input-file-upload-label i{
659
- font-size: 18px;
660
- }
661
- .mf-input-file-upload-label svg {
662
- max-width: 18px;
663
- height: auto;
664
- vertical-align: middle;
665
- }
666
- .mf-file-name span{
667
- display: inline-block;
668
- font-size: 15px;
669
- }
670
-
671
- .mf-input-wrapper .error {
672
- display: block;
673
- font-size: 14px;
674
- }
675
-
676
- /** Select **/
677
- .mf-input-select,
678
- .mf-input-multiselect {
679
- padding: 0;
680
- cursor: pointer;
681
- }
682
- .mf-input.mf-input-multiselect{
683
- padding: 0 !important;
684
- box-shadow: none !important;
685
- border: none !important;
686
- }
687
- .mf-input-multiselect .mf_multiselect__control{
688
- border: 1px solid #eaeaea;
689
- border-radius: 0;
690
- background-color: #fafafa;
691
- cursor: pointer;
692
- }
693
- .mf-input-multiselect .mf_multiselect__control:hover,
694
- .mf-input-multiselect .mf_multiselect__control:focus{
695
- border: 1px solid #eaeaea;
696
- outline: none;
697
- box-shadow: none;
698
- }
699
- .mf_multiselect__indicator-separator{
700
- display: none;
701
- }
702
- .mf_multiselect__option.mf_multiselect__option--is-focused,
703
- .mf_multiselect__option:hover {
704
- background-color: #F0F0F0;
705
- }
706
- .mf_multiselect__option.mf_multiselect__option--is-focused {
707
- background-color: #fff;
708
- }
709
- .mf_multiselect__option{
710
- border: 1px solid #eaeaea;
711
- background-color: #fff;
712
- padding: 10px 15px;
713
- font-size: 15px;
714
- }
715
- .mf-input-multiselect .mf_multiselect__menu {
716
- margin: 0;
717
- border-radius: 0;
718
- box-shadow: none;
719
- cursor: pointer;
720
- }
721
- .mf-input-multiselect .mf_multiselect__menu-list {
722
- padding: 0;
723
- }
724
- .mf-input-multiselect .mf_multiselect__placeholder {
725
- color: #C9C1C1;
726
- }
727
- .mf_multiselect__menu-notice--no-options {
728
- border: 1px solid #eaeaea;
729
- color: #C9C1C1;
730
- }
731
- .mf_multiselect__control .mf_multiselect__value-container {
732
- padding: 8px 12px;
733
- }
734
- .mf_multiselect__control .mf_multiselect__value-container > div:last-child {
735
- height: 25px;
736
- }
737
- .mf-input-multiselect .mf_multiselect__multi-value {
738
- margin: 0 5px 0 0;
739
- }
740
- .mf_multiselect__multi-value__remove {
741
- border-top-left-radius: 0 !important;
742
- border-bottom-left-radius: 0 !important;
743
- }
744
- .mf_multiselect__multi-value__label {
745
- border-top-right-radius: 0 !important;
746
- border-bottom-right-radius: 0 !important;
747
- }
748
- .mf-input-multiselect .mf_multiselect__input > input {
749
- min-height: 0;
750
- }
751
-
752
- /** Summary **/
753
- .mf-input.mf-input-summary {
754
- padding: 0;
755
- background-color: #fff;
756
- border-width: 0;
757
- }
758
-
759
- .mf-entry-data {
760
- margin: 0;
761
- padding: 0;
762
- list-style: none;
763
- word-break: break-word;
764
- }
765
-
766
- .mf-entry-data > li {
767
- border: 1px solid rgba(0, 0, 0, 0.1);
768
- }
769
-
770
- .mf-entry-data > li:not(:last-child) {
771
- border-bottom-width: 0;
772
- }
773
-
774
- .mf-entry-data > li > strong {
775
- display: block;
776
- padding: 8px;
777
- background-color: #eaf2fa;
778
- border-bottom: 1px solid rgba(0, 0, 0, 0.1);
779
- }
780
-
781
- .mf-entry-data > li > span {
782
- display: block;
783
- padding: 8px 28px;
784
- min-height: 42px;
785
- }
786
-
787
- /** Range **/
788
- .elementor-widget-mf-range .mf-field-error .error {
789
- display: none !important;
790
- }
791
-
792
- /** reCAPTCHA **/
793
- .g-recaptcha > div {
794
- position: relative;
795
- z-index: 0;
796
- }
797
-
798
- .g-recaptcha > div:before,
799
- .g-recaptcha > div:after,
800
- .g-recaptcha > div > div:before,
801
- .g-recaptcha > div > div:after {
802
- content: " ";
803
- position: absolute;
804
- border-style: solid;
805
- border-color: #d3d3d3;
806
- border-width: 0;
807
- z-index: 0;
808
- }
809
-
810
- .g-recaptcha > div:before {
811
- top: 0;
812
- left: 0;
813
- bottom: 2px;
814
- border-left-width: 1px;
815
- }
816
-
817
- .g-recaptcha > div:after {
818
- top: 0;
819
- right: 2px;
820
- bottom: 2px;
821
- border-right-width: 1px;
822
- }
823
-
824
- .g-recaptcha > div > div:before {
825
- top: 0;
826
- left: 0;
827
- right: 2px;
828
- border-top-width: 1px;
829
- }
830
-
831
- .g-recaptcha > div > div:after {
832
- left: 0;
833
- right: 2px;
834
- bottom: 2px;
835
- border-bottom-width: 1px;
836
- }
837
-
838
- .g-recaptcha + .attr-alert {
839
- display: none;
840
- }
841
- .g-recaptcha:empty + .attr-alert {
842
- display: block !important;
843
- }
844
-
845
- /** Simple Captcha **/
846
- .mf-captcha-input-wrapper.mf-captcha-block > i {
847
- padding-left: 25px;
848
- }
849
-
850
- img.mf-input.mf-captcha-image{
851
- max-width: 200px;
852
- border: none;
853
- box-sizing: unset;
854
- background: transparent;
855
- padding: 0;
856
- display: inline-block;
857
- }
858
-
859
- .mf-captcha-block > img.mf-input.mf-captcha-image {
860
- margin: 5px 0 5px 0;
861
- }
862
- .mf-captcha-inline > img.mf-input.mf-captcha-image {
863
- margin: 0 5px 0 0;
864
- }
865
- .mf-captcha-input-wrapper.mf-captcha-inline {
866
- display: inline-flex !important;
867
- align-items: center;
868
- width: 100%;
869
- }
870
-
871
- .mf-captcha-input-wrapper.mf-captcha-inline > i {
872
- margin-left: 25px !important;
873
- order: 1;
874
- }
875
-
876
- .mf-refresh-captcha:before {
877
- content: "\f01e";
878
- font-family: "Font Awesome 5 Free";
879
- font-weight: 700;
880
- font-style: normal;
881
- cursor: pointer;
882
- }
883
-
884
- /** Error Message **/
885
- .mf-error-message {
886
- display: block;
887
- }
888
-
889
- /** Range Slider **/
890
- .mf-input-wrapper .input-range__slider {
891
- -webkit-appearance: none;
892
- -moz-appearance: none;
893
- appearance: none;
894
- background-color: #fff;
895
- border: 4px solid #000000;
896
- border-radius: 100%;
897
- cursor: pointer;
898
- display: block;
899
- height: 15px;
900
- margin-left: -7.5px;
901
- margin-top: -11px;
902
- outline: none;
903
- position: absolute;
904
- top: 50%;
905
- -webkit-transition: box-shadow 0.3s ease-out, -webkit-transform 0.3s ease-out;
906
- transition: box-shadow 0.3s ease-out, -webkit-transform 0.3s ease-out;
907
- transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
908
- transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, -webkit-transform 0.3s ease-out;
909
- width: 15px;
910
- }
911
- .mf-input-wrapper .input-range__slider:active {
912
- /* -webkit-transform: scale(1.3);
913
- transform: scale(1.3); */
914
- }
915
- .mf-input-wrapper .input-range__slider:focus {
916
- box-shadow: 0 0 0 5px rgba(63, 81, 181, 0.2);
917
- }
918
- .input-range--disabled .input-range__slider {
919
- background: #cccccc;
920
- border: 1px solid #cccccc;
921
- box-shadow: none;
922
- -webkit-transform: none;
923
- transform: none;
924
- }
925
-
926
- .mf-input-wrapper .input-range__slider-container {
927
- -webkit-transition: left 0.3s ease-out;
928
- transition: left 0.3s ease-out;
929
- }
930
-
931
- .mf-input-wrapper .input-range__label {
932
- color: #aaaaaa;
933
- font-family: "Helvetica Neue", san-serif;
934
- font-size: 0.8rem;
935
- -webkit-transform: translateZ(0);
936
- transform: translateZ(0);
937
- white-space: nowrap;
938
- }
939
-
940
- .mf-input-wrapper .input-range__label--min,
941
- .mf-input-wrapper .input-range__label--max {
942
- bottom: -1.4rem;
943
- position: absolute;
944
- display: none;
945
- }
946
-
947
- .mf-input-wrapper .input-range__label--min {
948
- left: 0;
949
- }
950
-
951
- .mf-input-wrapper .input-range__label--max {
952
- right: 0;
953
- }
954
-
955
- .mf-input-wrapper .input-range__label--value {
956
- position: absolute;
957
- bottom: 20px;
958
- }
959
-
960
- .mf-input-wrapper .input-range__label-container {
961
- left: -50%;
962
- position: relative;
963
- background-color: #000;
964
- width: 36px;
965
- height: 20px;
966
- display: inline-block;
967
- color: #fff;
968
- font-size: 12px;
969
- text-align: center;
970
- border-radius: 3px;
971
- }
972
- .mf-input-wrapper .input-range__label-container:before {
973
- position: absolute;
974
- bottom: -3px;
975
- left: 50%;
976
- display: inline-block;
977
- width: 6px;
978
- height: 6px;
979
- margin-left: -3px;
980
- content: "";
981
- background-color: #000;
982
- -webkit-transform: rotate(-45deg);
983
- -ms-transform: rotate(-45deg);
984
- transform: rotate(-45deg);
985
- }
986
- .mf-input-wrapper .input-range__label--max .input-range__label-container {
987
- left: 50%;
988
- }
989
-
990
- .mf-input-wrapper .input-range__track {
991
- background: #F1F4F9;
992
- border-radius: 0.3rem;
993
- cursor: pointer;
994
- display: block;
995
- height: 8px;
996
- position: relative;
997
- -webkit-transition: left 0.3s ease-out, width 0.3s ease-out;
998
- transition: left 0.3s ease-out, width 0.3s ease-out;
999
- }
1000
- .mf-input-wrapper .input-range--disabled .input-range__track {
1001
- background: #F1F4F9;
1002
- }
1003
-
1004
- .mf-input-wrapper .input-range__track--background {
1005
- left: 0;
1006
- margin-top: -0.15rem;
1007
- position: absolute;
1008
- right: 0;
1009
- top: 50%;
1010
- }
1011
-
1012
- .mf-input-wrapper .input-range__track--active {
1013
- background: #000;
1014
- }
1015
-
1016
- .mf-input-wrapper .input-range {
1017
- height: 1rem;
1018
- position: relative;
1019
- width: 100%;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1020
  }
1
+ #elementor .mf-btn-wraper a.metform-btn {
2
+ background: #337ab7;
3
+ color: #ffffff;
4
+ border-radius: 5px;
5
+ height: 20%;
6
+ font-size: 16px;
7
+ padding: 10px;
8
+ }
9
+
10
+ .mf-form-wrapper section,
11
+ .single-metform-form section {
12
+ padding-top: 0;
13
+ padding-bottom: 0;
14
+ }
15
+
16
+ .mf-input-switch-control {
17
+ position: relative;
18
+ display: inline-block;
19
+ }
20
+ .mf-input-switch-control > input[type="checkbox"] {
21
+ display: none !important;
22
+ }
23
+
24
+ .mf-input-control {
25
+ position: absolute;
26
+ z-index: -1;
27
+ opacity: 0;
28
+ }
29
+ .mf-input-switch .mf-input-control-label::before {
30
+ content: attr(data-disable);
31
+ width: 55px;
32
+ height: 25px;
33
+ background-color: #EDEDED;
34
+ left: 0;
35
+ border-radius: 15px;
36
+ text-align: right;
37
+ color: #fff;
38
+ text-transform: uppercase;
39
+ font-weight: bold;
40
+ font-size: 10px;
41
+ padding: 3px;
42
+ -webkit-box-sizing: border-box;
43
+ box-sizing: border-box;
44
+ padding-right: 10px;
45
+ -webkit-transition: all .4s;
46
+ -o-transition: all .4s;
47
+ transition: all .4s;
48
+ float: right;
49
+ line-height: 18px;
50
+ cursor: pointer;
51
+ display: flex;
52
+ align-items: center;
53
+ justify-content: flex-end;
54
+ }
55
+
56
+ .metform-form-content {
57
+ position: relative;
58
+ z-index: 0;
59
+ }
60
+
61
+ /** Response Message **/
62
+ .mf-response-msg-wrap {
63
+ overflow: hidden;
64
+ -webkit-transition: height .45s, opacity .45s, visibility .45s;
65
+ transition: height .45s, opacity .45s, visibility .45s;
66
+
67
+ background-color: #fff;
68
+ border: 1px solid #101010;
69
+ border-radius: 5px;
70
+ }
71
+ .mf-response-msg-wrap[data-show="0"] {
72
+ height: 0 !important;
73
+ opacity: 0;
74
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
75
+ visibility: hidden;
76
+ }
77
+ .mf-response-msg-wrap[data-show="1"] {
78
+ height: auto;
79
+ opacity: 1;
80
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
81
+ visibility: visible;
82
+ margin-bottom: 20px;;
83
+ }
84
+ .mf-response-msg {
85
+ margin: 0 auto 20px;
86
+ border-radius: 5px;
87
+ text-align: center;
88
+ padding: 15px 34px;
89
+ display: flex;
90
+ justify-content: center;
91
+ flex-direction: column;
92
+ align-items: center;
93
+ height: 100%;
94
+ }
95
+ .wf-error-res{
96
+ background-color: #f8d7da;
97
+ border-color: #f5c6cb;
98
+ }
99
+ .wf-error-res .mf-alert-icon,
100
+ .mf-success-icon {
101
+ color: #721c24;
102
+ font-size: 30px;
103
+ margin-bottom: 5px;
104
+ }
105
+ .mf-success-icon {
106
+ color: #101010;
107
+ }
108
+ .mf-response-msg p{
109
+ font-size: 17px;
110
+ line-height: 20px;
111
+ color: #101010;
112
+ margin-bottom: 0px;
113
+ }
114
+ .wf-error-res p{
115
+ color: #721c24;
116
+ }
117
+ .mf-input-control-label::before, .custom-file-label, .custom-select {
118
+ transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
119
+ }
120
+ .mf-input-control-label::after {
121
+ position: absolute;
122
+ top: 2px;
123
+ left: 2px;
124
+ display: block;
125
+ width: 14px;
126
+ height: 14px;
127
+ content: "";
128
+ background-color: #adb5bd;
129
+ border-radius: 100px;
130
+ transition: all .4s;
131
+ cursor: pointer;
132
+ }
133
+
134
+ .mf-input-switch label.mf-input-control-label {
135
+ display: inline-block;
136
+ vertical-align: middle;
137
+ position: relative;
138
+ margin: 0;
139
+ }
140
+
141
+ .mf-input-control:checked~.mf-input-control-label::before {
142
+ color: #fff;
143
+ border-color: #007bff;
144
+ background-color: #007bff;
145
+ content: attr(data-enable);
146
+ text-align: left;
147
+ padding-left: 10px;
148
+ justify-content: flex-start;
149
+ }
150
+ .mf-input-switch .mf-input-control:checked~.mf-input-control-label::after {
151
+ background-color: #fff;
152
+ }
153
+ .mf-input-wrapper .mf-input-help{
154
+ display: block;
155
+ font-size: 0.9em;
156
+ margin-top: 5px;
157
+ opacity: 0.7;
158
+ clear: both;
159
+ font-weight: 400;
160
+ }
161
+ .mf-input-wrapper .mf-input {
162
+ width: 100%;
163
+ max-width: 100%;
164
+ padding: 12px;
165
+ height: auto;
166
+ border-width: 1px;
167
+ border-style: solid;
168
+ border-color: #eaeaea;
169
+ border-radius: 2px;
170
+ background: none;
171
+ background-color: #fafafa;
172
+ box-shadow: none;
173
+ box-sizing: border-box;
174
+ transition: all .2s linear;
175
+ font-size: 14px;
176
+ line-height: 21px;
177
+ }
178
+
179
+ .mf-input-wrapper.mf-field-error .mf-input,
180
+ .mf-input-wrapper.mf-field-error .mf-input:focus,
181
+ .mf-input-wrapper .mf-input:focus{
182
+ outline: none;
183
+ }
184
+ .mf-input-wrapper .mf-input:focus{
185
+ border-color: #4285f478
186
+ }
187
+ .mf-input-wrapper .mf-input::placeholder {
188
+ color: #c9c1c1;
189
+ font-weight: 400;
190
+ font-size: 14px;
191
+ }
192
+ .mf-input-wrapper .mf-input::-webkit-input-placeholder {
193
+ color: #c9c1c1;
194
+ font-weight: 400;
195
+ font-size: 14px;
196
+ }
197
+ .mf-input-wrapper .mf-input:-moz-placeholder {
198
+ color: #c9c1c1;
199
+ font-weight: 400;
200
+ font-size: 14px;
201
+ }
202
+ @media (max-width: 767px) {
203
+ .attr-form-group > .attr-control-label,
204
+ .attr-form-group > .mf-input,
205
+ .mf-input-wrapper > .mf-input-label,
206
+ .mf-input-wrapper > .mf-repeater-field-label,
207
+ .mf-input-wrapper > .mf-radio,
208
+ .mf-input-wrapper > .mf-checkbox,
209
+ .mf-input-wrapper > .mf-signature,
210
+ .mf-input-wrapper > .mf-image-select,
211
+ .mf-input-wrapper > .mf-payment-method,
212
+ .mf-input-wrapper > .mf-captcha-input-wrapper,
213
+ .mf-input-wrapper > .mf-input:not(.mf-left-parent) {
214
+ width: 100%;
215
+ min-width: 100%;
216
+ }
217
+ }
218
+ .mf-input-wrapper .mf-input-label,
219
+ .mf-repeater-field-label {
220
+ font-family: "Roboto", Sans-serif;
221
+ font-weight: 600;
222
+ font-size: 14px;
223
+ display: block;
224
+ color: #000000;
225
+ font-size: 14px;
226
+ line-height: 16px;
227
+ margin-bottom: 5px;
228
+ }
229
+ .mf-input-wrapper .mf-input-label,
230
+ .mf-input-wrapper .mf-input {
231
+ vertical-align: middle;
232
+ }
233
+
234
+ div.mf-input-wrapper > textarea.mf-input {
235
+ padding: 15px;
236
+ }
237
+
238
+ .irs--round .irs-min, .irs--round .irs-max{
239
+ display: none;
240
+ }
241
+ .irs--round .irs-handle{
242
+ cursor: pointer;
243
+ }
244
+ .mf-checkbox-option input[type="checkbox"]{
245
+ display: none;
246
+ }
247
+ .mf-checkbox-option:not(.disabled) label {
248
+ cursor: pointer;
249
+ }
250
+ .mf-checkbox-option input[type="checkbox"] + span:before {
251
+ position: relative;
252
+ content: "\f0c8";
253
+ font-family: "Font Awesome 5 Free" !important;
254
+ font-weight: 500 !important;
255
+ display: inline-block;
256
+ border: none;
257
+ font-size: 18px;
258
+ color: #5F7BFF;
259
+ font-weight: normal;
260
+ width: 25px;
261
+ line-height: 1;
262
+ top: 2px;
263
+ }
264
+ .mf-checkbox-option input[type="checkbox"] + span{
265
+ font-weight: 400;
266
+ font-size: 14px;
267
+ cursor: pointer;
268
+ }
269
+ .mf-checkbox-option input[type="checkbox"]:checked + span:before {
270
+ content: "\f14a";
271
+ font-family: "Font Awesome 5 Free" !important;
272
+ display: inline-block;
273
+ border: none;
274
+ font-size: 18px;
275
+ color: #5F7BFF;
276
+ }
277
+
278
+ .mf-radio-option input[type="radio"]{
279
+ display: none;
280
+ }
281
+ .mf-radio-option,
282
+ .mf-checkbox-option {
283
+ padding-right: 15px;
284
+ }
285
+
286
+ .mf-radio-option input[type="radio"] + span:before {
287
+ content: "\f111";
288
+ font-family: "Font Awesome 5 Free" !important;
289
+ font-weight: 500 !important;
290
+ display: inline-block;
291
+ border: none;
292
+ font-size: 18px;
293
+ color: #5F7BFF;
294
+ font-weight: normal;
295
+ width: 25px;
296
+ line-height: 1;
297
+ top: 2px;
298
+ position: relative;
299
+ }
300
+ .mf-radio-option input[type="radio"] + span{
301
+ font-weight: 400;
302
+ font-size: 14px;
303
+ cursor: pointer;
304
+ }
305
+ .mf-radio-option input[type="radio"]:checked + span:before {
306
+ content: "\f058";
307
+ font-family: "Font Awesome 5 Free" !important;
308
+ display: inline-block;
309
+ border: none;
310
+ font-size: 18px;
311
+ color: #5F7BFF;
312
+ }
313
+
314
+ /* Select Widget */
315
+ .mf-input-wrapper .mf-input-select {
316
+ padding: 0 !important;
317
+ }
318
+
319
+ .mf-input-select .mf_select__control {
320
+ min-height: 0;
321
+ padding: 12px;
322
+ border-width: 0;
323
+ border-radius: 0;
324
+ box-shadow: none;
325
+ cursor: pointer;
326
+ border-radius: none !Important;
327
+ border: 1px solid #eaeaea;
328
+ background-color: transparent;
329
+ }
330
+ .mf-input-select .mf_select__control:hover{
331
+ border: 1px solid #eaeaea;
332
+ }
333
+
334
+ .mf-input-select .mf_select__indicator-separator {
335
+ display: none;
336
+ }
337
+
338
+ .mf-input-select .mf_select__value-container,
339
+ .mf-input-select .mf_select__value-container input {
340
+ padding: 0;
341
+ }
342
+
343
+ .mf-input-select .mf_select__placeholder {
344
+ margin-left: 0;
345
+ margin-right: 0;
346
+ color: inherit;
347
+ }
348
+
349
+ .mf-input-select .mf_select__indicators {
350
+ margin-right: 2px;
351
+ }
352
+ .mf-input-multiselect .mf_multiselect__indicators {
353
+ margin-right: 15px;
354
+ }
355
+ .mf-input-select .mf_select__indicator,
356
+ .mf-input-multiselect .mf_multiselect__dropdown-indicator {
357
+ padding: 0;
358
+ border-style: solid;
359
+ border-width: 5px 4px 0;
360
+ border-color: currentColor transparent transparent;
361
+ }
362
+ .mf-input-select .mf_select__control--menu-is-open .mf_select__indicator,
363
+ .mf-input-multiselect .mf_multiselect__control--menu-is-open .mf_multiselect__dropdown-indicator {
364
+ border-width: 0 4px 5px;
365
+ border-color: transparent transparent currentColor;
366
+ }
367
+ .mf-input-select .mf_select__indicator > svg,
368
+ .mf-input-multiselect .mf_multiselect__dropdown-indicator > svg {
369
+ display: none;
370
+ }
371
+
372
+ .mf-input-select .mf_select__menu {
373
+ width: 100%;
374
+ margin: 0;
375
+ /* border: 1px solid #eaeaea; */
376
+ border-radius: 0;
377
+ box-shadow: none;
378
+ background-color: #fff;
379
+ }
380
+ .mf-input-select .mf_select__menu > div{
381
+ overflow-X: hidden;
382
+ }
383
+ .mf-input-select .mf_select__menu-list {
384
+ padding: 0;
385
+ }
386
+
387
+ .mf-input-select .mf_select__option {
388
+ cursor: pointer;
389
+ border: 1px solid #eaeaea;
390
+ }
391
+ .mf-input-select .mf_select__option.mf_select__option--is-selected,
392
+ .mf-input-select .mf_select__option.mf_select__option--is-focused,
393
+ .mf-input-select .mf_select__option:hover {
394
+ background-color: #F0F0F0;
395
+ }
396
+ .mf-input-select .mf_select__control.mf_select__control--is-focused{
397
+ border-color: #4285f478;
398
+ background-color: #fff;
399
+ }
400
+ .mf-input.mf-input-select{
401
+ border: none !important;
402
+ background-color: #FAFAFA;
403
+ }
404
+ .mf-input-select .mf_select__single-value {
405
+ position: relative;
406
+ top: 0;
407
+ width: 100%;
408
+ max-width: calc(100% - 22px);
409
+ margin-left: 0;
410
+ margin-right: 0;
411
+ transform: none;
412
+ }
413
+
414
+ .mf-input-wrapper select.mf-input-dropdown {
415
+ border: none;
416
+ padding: 15px 25px;
417
+ font-size: 15px;
418
+ font-weight: 500 !important;
419
+ -webkit-appearance: none;
420
+ -moz-appearance: none;
421
+ -o-appearance: none;
422
+ appearance: none;
423
+ border-width: 1px;
424
+ border-style: solid;
425
+ border-color: #eaeaea;
426
+ }
427
+ .mf-input-wrapper select.mf-input-dropdown option {
428
+ background-color: #fff;
429
+ color: #222222;
430
+ font-size: 15px;
431
+ }
432
+
433
+ .mf-input-switch-control.mf-input-switch.mf-input {
434
+ box-shadow: none !important;
435
+ vertical-align: -webkit-baseline-middle;
436
+ border: none;
437
+ padding: 0;
438
+ }
439
+
440
+ .mf-input-wrapper .range-slider {
441
+ display: inline-block;
442
+ width: 100%;
443
+ }
444
+ .mf-input-wrapper .asRange {
445
+ width: 100%;
446
+ background-color: #F1F4F9;
447
+ }
448
+ .mf-input-wrapper .asRange .asRange-pointer:before,
449
+ .mf-input-wrapper .asRange .asRange-pointer .asRange-tip:before,
450
+ .mf-input-wrapper .asRange .asRange-selected {
451
+ background-color: #1FB787;
452
+ }
453
+ .mf-input-wrapper .asRange .asRange-pointer .asRange-tip {
454
+ background-color: #1FB787;
455
+ border: 1px solid #1FB787;
456
+ top: inherit;
457
+ bottom: 18px;
458
+ left: -50%;
459
+ margin-left: 8px;
460
+ transform: translateX(-50%);
461
+ }
462
+ .metform-btn {
463
+ background-color: #4285f4;
464
+ border: none;
465
+ box-shadow: none;
466
+ display: inline-block;
467
+ max-width: 100%;
468
+ padding: 16px 40px;
469
+ font-size: 16px;
470
+ border-radius: 2px;
471
+ cursor: pointer;
472
+ box-shadow: 0px 5px 5px 0px rgba(66,133,244,0.3);
473
+ line-height: 18px;
474
+ transition: all .4s;
475
+ font-weight: 500;
476
+ text-decoration: none;
477
+ }
478
+ .metform-btn:hover,
479
+ .metform-btn:focus {
480
+ background-color: #4285f4;
481
+ text-decoration: none;
482
+ outline: none;
483
+ }
484
+ button.metform-btn,
485
+ button.metform-btn:not(.toggle) {
486
+ background-color: #4285f4;
487
+ }
488
+ button.metform-btn:hover,
489
+ button.metform-btn:focus {
490
+ background-color: #4285f4;
491
+ }
492
+ @media (max-width: 767px) {
493
+ .mf-btn--mobile-justify .metform-btn {
494
+ width: 100%;
495
+ }
496
+ }
497
+ @media (min-width: 768px) and (max-width: 1024px) {
498
+ .mf-btn--tablet-justify .metform-btn {
499
+ width: 100%;
500
+ }
501
+ }
502
+ @media (min-width: 1025px) {
503
+ .mf-btn--justify .metform-btn {
504
+ width: 100%;
505
+ }
506
+ }
507
+
508
+
509
+ /**
510
+ * Submit Button
511
+ */
512
+ .metform-submit-btn {
513
+ position: relative;
514
+ z-index: 0;
515
+ }
516
+
517
+ .metform-submit-btn:before,
518
+ .metform-submit-btn:after {
519
+ content: " ";
520
+ position: absolute;
521
+ top: 50%;
522
+ left: 50%;
523
+ width: 22px;
524
+ height: 22px;
525
+ margin: -11px 0 0 -11px;
526
+ border-style: solid;
527
+ border-color: currentColor;
528
+ border-width: 0;
529
+ border-radius: 50%;
530
+ opacity: 0;
531
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
532
+ -webkit-transition: opacity .3s ease;
533
+ transition: opacity .3s ease;
534
+ }
535
+ .metform-submit-btn[disabled]:before,
536
+ .metform-submit-btn[disabled]:after {
537
+ opacity: 1;
538
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
539
+ -webkit-transition-delay: .15s;
540
+ transition-delay: .15s;
541
+ }
542
+
543
+ .metform-submit-btn:before {
544
+ border-width: 2px;
545
+ }
546
+ .metform-submit-btn[disabled]:before {
547
+ opacity: 0.25;
548
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=25)";
549
+ }
550
+
551
+ .metform-submit-btn:after {
552
+ border-top-width: 2px;
553
+ -webkit-animation: submitSpin .55s linear infinite;
554
+ animation: submitSpin .55s linear infinite;
555
+ }
556
+
557
+ .metform-submit-btn > span {
558
+ -webkit-transition: opacity .15s ease .15s;
559
+ transition: opacity .15s ease .15s;
560
+ }
561
+ .metform-submit-btn[disabled] > span {
562
+ opacity: 0;
563
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
564
+ -webkit-transition-delay: 0;
565
+ transition-delay: 0;
566
+ }
567
+
568
+ @-webkit-keyframes submitSpin {
569
+ to {
570
+ -webkit-transform: rotate(360deg);
571
+ transform: rotate(360deg);
572
+ }
573
+ }
574
+
575
+ @keyframes submitSpin {
576
+ to {
577
+ -webkit-transform: rotate(360deg);
578
+ transform: rotate(360deg);
579
+ }
580
+ }
581
+
582
+
583
+ /** Mobile Widget **/
584
+ .mf-input-wrapper .iti{
585
+ display: block;
586
+ }
587
+ .mf-input-wrapper > .iti{
588
+ display: inline-block;
589
+ width: 100%;
590
+ }
591
+
592
+ .mf-input-wrapper .iti .mf-input{
593
+ width: 100% !important;
594
+ }
595
+ .mf-input-wrapper .iti--separate-dial-code .iti__selected-flag {
596
+ background-color: #f7f6f6;
597
+ }
598
+ .mf-input-wrapper .iti .iti__flag-container{
599
+ display: none;
600
+ }
601
+ .mf-input-wrapper .iti > .iti__flag-container{
602
+ display: block;
603
+ }
604
+
605
+ /** Date Widget **/
606
+ .flatpickr-calendar {
607
+ margin-top: 8px;
608
+ }
609
+
610
+ .flatpickr-month {
611
+ margin-top: 3px;
612
+ margin-bottom: 5px;
613
+ }
614
+
615
+ .mf-input-wrapper > .flatpickr-wrapper {
616
+ display: block;
617
+ }
618
+
619
+ .flatpickr-wrapper select {
620
+ display: inline-block;
621
+ }
622
+
623
+ .elementor-widget-mf-date.elementor-element-edit-mode .flatpickr-calendar,
624
+ .elementor-widget-mf-time.elementor-element-edit-mode .flatpickr-calendar {
625
+ top: 100% !important;
626
+ left: 0 !important;
627
+ }
628
+
629
+ /** Ratings **/
630
+ .mf-ratings {
631
+ display: -webkit-inline-box;
632
+ display: -ms-inline-flexbox;
633
+ display: inline-flex;
634
+ -ms-flex-wrap: wrap;
635
+ flex-wrap: wrap;
636
+ cursor: pointer;
637
+ }
638
+ .mf-ratings > input {
639
+ display: none !important;
640
+ }
641
+ .mf-ratings > label {
642
+ cursor: pointer;
643
+ }
644
+ .mf-ratings > label:not(:last-child) {
645
+ padding-right: 5px;
646
+ }
647
+ .mf-ratings.is-selected > label,
648
+ .mf-ratings:not(.is-selected):hover > label {
649
+ color: #ffdb72;
650
+ }
651
+ .mf-ratings:not(.is-selected),
652
+ .mf-ratings.is-selected:not(:hover) > input:checked + label ~ label,
653
+ .mf-ratings.is-selected > label:hover ~ label,
654
+ .mf-ratings:not(.is-selected) > label:hover ~ label {
655
+ color: #ccc;
656
+ }
657
+
658
+ /** File Upload **/
659
+ .mf-input-file-upload{
660
+ width: .1px;
661
+ height: .1px;
662
+ opacity: 0;
663
+ visibility: hidden;
664
+ position: absolute;
665
+ }
666
+ .mf-input-file-upload-label {
667
+ color: #fff;
668
+ margin-right: 10px;
669
+ padding: 5px 15px;
670
+ display: inline-flex;
671
+ align-items: center;
672
+ box-shadow: none;
673
+ font-size: 16px;
674
+ font-weight: normal;
675
+ line-height: 28px;
676
+ }
677
+ .mf-input-file-upload-label i{
678
+ font-size: 18px;
679
+ }
680
+ .mf-input-file-upload-label svg {
681
+ max-width: 18px;
682
+ height: auto;
683
+ vertical-align: middle;
684
+ }
685
+ .mf-file-name span{
686
+ display: inline-block;
687
+ font-size: 15px;
688
+ }
689
+
690
+ .mf-input-wrapper .error {
691
+ display: block;
692
+ font-size: 14px;
693
+ }
694
+
695
+ /** Select **/
696
+ .mf-input-select,
697
+ .mf-input-multiselect {
698
+ padding: 0;
699
+ cursor: pointer;
700
+ }
701
+ .mf-input.mf-input-multiselect{
702
+ padding: 0 !important;
703
+ box-shadow: none !important;
704
+ border: none !important;
705
+ }
706
+ .mf-input-multiselect .mf_multiselect__control{
707
+ border: 1px solid #eaeaea;
708
+ border-radius: 0;
709
+ background-color: #fafafa;
710
+ cursor: pointer;
711
+ }
712
+ .mf-input-multiselect .mf_multiselect__control:hover,
713
+ .mf-input-multiselect .mf_multiselect__control:focus{
714
+ border: 1px solid #eaeaea;
715
+ outline: none;
716
+ box-shadow: none;
717
+ }
718
+ .mf_multiselect__indicator-separator{
719
+ display: none;
720
+ }
721
+ .mf_multiselect__option.mf_multiselect__option--is-focused,
722
+ .mf_multiselect__option:hover {
723
+ background-color: #F0F0F0;
724
+ }
725
+ .mf_multiselect__option.mf_multiselect__option--is-focused {
726
+ background-color: #fff;
727
+ }
728
+ .mf_multiselect__option{
729
+ border: 1px solid #eaeaea;
730
+ background-color: #fff;
731
+ padding: 10px 15px;
732
+ font-size: 15px;
733
+ }
734
+ .mf-input-multiselect .mf_multiselect__menu {
735
+ margin: 0;
736
+ border-radius: 0;
737
+ box-shadow: none;
738
+ cursor: pointer;
739
+ }
740
+ .mf-input-multiselect .mf_multiselect__menu-list {
741
+ padding: 0;
742
+ }
743
+ .mf-input-multiselect .mf_multiselect__placeholder {
744
+ color: #C9C1C1;
745
+ }
746
+ .mf_multiselect__menu-notice--no-options {
747
+ border: 1px solid #eaeaea;
748
+ color: #C9C1C1;
749
+ }
750
+ .mf_multiselect__control .mf_multiselect__value-container {
751
+ padding: 8px 12px;
752
+ }
753
+ .mf_multiselect__control .mf_multiselect__value-container > div:last-child {
754
+ height: 25px;
755
+ }
756
+ .mf-input-multiselect .mf_multiselect__multi-value {
757
+ margin: 0 5px 0 0;
758
+ }
759
+ .mf_multiselect__multi-value__remove {
760
+ border-top-left-radius: 0 !important;
761
+ border-bottom-left-radius: 0 !important;
762
+ }
763
+ .mf_multiselect__multi-value__label {
764
+ border-top-right-radius: 0 !important;
765
+ border-bottom-right-radius: 0 !important;
766
+ }
767
+ .mf-input-multiselect .mf_multiselect__input > input {
768
+ min-height: 0;
769
+ }
770
+
771
+ /** Summary **/
772
+ .mf-input.mf-input-summary {
773
+ padding: 0;
774
+ background-color: #fff;
775
+ border-width: 0;
776
+ }
777
+
778
+ .mf-entry-data {
779
+ margin: 0;
780
+ padding: 0;
781
+ list-style: none;
782
+ word-break: break-word;
783
+ }
784
+
785
+ .mf-entry-data > li {
786
+ border: 1px solid rgba(0, 0, 0, 0.1);
787
+ }
788
+
789
+ .mf-entry-data > li:not(:last-child) {
790
+ border-bottom-width: 0;
791
+ }
792
+
793
+ .mf-entry-data > li > strong {
794
+ display: block;
795
+ padding: 8px;
796
+ background-color: #eaf2fa;
797
+ border-bottom: 1px solid rgba(0, 0, 0, 0.1);
798
+ }
799
+
800
+ .mf-entry-data > li > span {
801
+ display: block;
802
+ padding: 8px 28px;
803
+ min-height: 42px;
804
+ }
805
+
806
+ /** Range **/
807
+ .elementor-widget-mf-range .mf-field-error .error {
808
+ display: none !important;
809
+ }
810
+
811
+ /** reCAPTCHA **/
812
+ .g-recaptcha > div {
813
+ position: relative;
814
+ z-index: 0;
815
+ }
816
+
817
+ .g-recaptcha > div:before,
818
+ .g-recaptcha > div:after,
819
+ .g-recaptcha > div > div:before,
820
+ .g-recaptcha > div > div:after {
821
+ content: " ";
822
+ position: absolute;
823
+ border-style: solid;
824
+ border-color: #d3d3d3;
825
+ border-width: 0;
826
+ z-index: 0;
827
+ }
828
+
829
+ .g-recaptcha > div:before {
830
+ top: 0;
831
+ left: 0;
832
+ bottom: 2px;
833
+ border-left-width: 1px;
834
+ }
835
+
836
+ .g-recaptcha > div:after {
837
+ top: 0;
838
+ right: 2px;
839
+ bottom: 2px;
840
+ border-right-width: 1px;
841
+ }
842
+
843
+ .g-recaptcha > div > div:before {
844
+ top: 0;
845
+ left: 0;
846
+ right: 2px;
847
+ border-top-width: 1px;
848
+ }
849
+
850
+ .g-recaptcha > div > div:after {
851
+ left: 0;
852
+ right: 2px;
853
+ bottom: 2px;
854
+ border-bottom-width: 1px;
855
+ }
856
+
857
+ .g-recaptcha + .attr-alert {
858
+ display: none;
859
+ }
860
+ .g-recaptcha:empty + .attr-alert {
861
+ display: block !important;
862
+ }
863
+
864
+ /** Simple Captcha **/
865
+ .mf-captcha-input-wrapper.mf-captcha-block > i {
866
+ padding-left: 25px;
867
+ }
868
+
869
+ img.mf-input.mf-captcha-image{
870
+ max-width: 200px;
871
+ border: none;
872
+ box-sizing: unset;
873
+ background: transparent;
874
+ padding: 0;
875
+ display: inline-block;
876
+ }
877
+
878
+ .mf-captcha-block > img.mf-input.mf-captcha-image {
879
+ margin: 5px 0 5px 0;
880
+ }
881
+ .mf-captcha-inline > img.mf-input.mf-captcha-image {
882
+ margin: 0 5px 0 0;
883
+ }
884
+ .mf-captcha-input-wrapper.mf-captcha-inline {
885
+ display: inline-flex !important;
886
+ align-items: center;
887
+ width: 100%;
888
+ }
889
+
890
+ .mf-captcha-input-wrapper.mf-captcha-inline > i {
891
+ margin-left: 25px !important;
892
+ order: 1;
893
+ }
894
+
895
+ .mf-refresh-captcha:before {
896
+ content: "\f01e";
897
+ font-family: "Font Awesome 5 Free";
898
+ font-weight: 700;
899
+ font-style: normal;
900
+ cursor: pointer;
901
+ }
902
+
903
+ /** Error Message **/
904
+ .mf-error-message {
905
+ display: block;
906
+ }
907
+
908
+ /** Range Slider **/
909
+ .mf-input-wrapper .input-range__slider {
910
+ -webkit-appearance: none;
911
+ -moz-appearance: none;
912
+ appearance: none;
913
+ background-color: #fff;
914
+ border: 4px solid #000000;
915
+ border-radius: 100%;
916
+ cursor: pointer;
917
+ display: block;
918
+ height: 15px;
919
+ margin-left: -7.5px;
920
+ margin-top: -11px;
921
+ outline: none;
922
+ position: absolute;
923
+ top: 50%;
924
+ -webkit-transition: box-shadow 0.3s ease-out, -webkit-transform 0.3s ease-out;
925
+ transition: box-shadow 0.3s ease-out, -webkit-transform 0.3s ease-out;
926
+ transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
927
+ transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, -webkit-transform 0.3s ease-out;
928
+ width: 15px;
929
+ }
930
+ .mf-input-wrapper .input-range__slider:active {
931
+ /* -webkit-transform: scale(1.3);
932
+ transform: scale(1.3); */
933
+ }
934
+ .mf-input-wrapper .input-range__slider:focus {
935
+ box-shadow: 0 0 0 5px rgba(63, 81, 181, 0.2);
936
+ }
937
+ .input-range--disabled .input-range__slider {
938
+ background: #cccccc;
939
+ border: 1px solid #cccccc;
940
+ box-shadow: none;
941
+ -webkit-transform: none;
942
+ transform: none;
943
+ }
944
+
945
+ .mf-input-wrapper .input-range__slider-container {
946
+ -webkit-transition: left 0.3s ease-out;
947
+ transition: left 0.3s ease-out;
948
+ }
949
+
950
+ .mf-input-wrapper .input-range__label {
951
+ color: #aaaaaa;
952
+ font-family: "Helvetica Neue", san-serif;
953
+ font-size: 0.8rem;
954
+ -webkit-transform: translateZ(0);
955
+ transform: translateZ(0);
956
+ white-space: nowrap;
957
+ }
958
+
959
+ .mf-input-wrapper .input-range__label--min,
960
+ .mf-input-wrapper .input-range__label--max {
961
+ bottom: -1.4rem;
962
+ position: absolute;
963
+ display: none;
964
+ }
965
+
966
+ .mf-input-wrapper .input-range__label--min {
967
+ left: 0;
968
+ }
969
+
970
+ .mf-input-wrapper .input-range__label--max {
971
+ right: 0;
972
+ }
973
+
974
+ .mf-input-wrapper .input-range__label--value {
975
+ position: absolute;
976
+ bottom: 20px;
977
+ }
978
+
979
+ .mf-input-wrapper .input-range__label-container {
980
+ left: -50%;
981
+ position: relative;
982
+ background-color: #000;
983
+ width: 36px;
984
+ height: 20px;
985
+ display: inline-block;
986
+ color: #fff;
987
+ font-size: 12px;
988
+ text-align: center;
989
+ border-radius: 3px;
990
+ }
991
+ .mf-input-wrapper .input-range__label-container:before {
992
+ position: absolute;
993
+ bottom: -3px;
994
+ left: 50%;
995
+ display: inline-block;
996
+ width: 6px;
997
+ height: 6px;
998
+ margin-left: -3px;
999
+ content: "";
1000
+ background-color: #000;
1001
+ -webkit-transform: rotate(-45deg);
1002
+ -ms-transform: rotate(-45deg);
1003
+ transform: rotate(-45deg);
1004
+ }
1005
+ .mf-input-wrapper .input-range__label--max .input-range__label-container {
1006
+ left: 50%;
1007
+ }
1008
+
1009
+ .mf-input-wrapper .input-range__track {
1010
+ background: #F1F4F9;
1011
+ border-radius: 0.3rem;
1012
+ cursor: pointer;
1013
+ display: block;
1014
+ height: 8px;
1015
+ position: relative;
1016
+ -webkit-transition: left 0.3s ease-out, width 0.3s ease-out;
1017
+ transition: left 0.3s ease-out, width 0.3s ease-out;
1018
+ }
1019
+ .mf-input-wrapper .input-range--disabled .input-range__track {
1020
+ background: #F1F4F9;
1021
+ }
1022
+
1023
+ .mf-input-wrapper .input-range__track--background {
1024
+ left: 0;
1025
+ margin-top: -0.15rem;
1026
+ position: absolute;
1027
+ right: 0;
1028
+ top: 50%;
1029
+ }
1030
+
1031
+ .mf-input-wrapper .input-range__track--active {
1032
+ background: #000;
1033
+ }
1034
+
1035
+ .mf-input-wrapper .input-range {
1036
+ height: 1rem;
1037
+ position: relative;
1038
+ width: 100%;
1039
+ }
1040
+
1041
+
1042
+ .mf-condition--hidden {
1043
+ display: none;
1044
+ visibility: hidden;
1045
  }
public/assets/fonts/fontawesome-webfont.svg CHANGED
@@ -1,2671 +1,2671 @@
1
- <?xml version="1.0" standalone="no"?>
2
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
- <svg>
4
- <metadata>
5
- Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016
6
- By ,,,
7
- Copyright Dave Gandy 2016. All rights reserved.
8
- </metadata>
9
- <defs>
10
- <font id="FontAwesome" horiz-adv-x="1536" >
11
- <font-face
12
- font-family="FontAwesome"
13
- font-weight="400"
14
- font-stretch="normal"
15
- units-per-em="1792"
16
- panose-1="0 0 0 0 0 0 0 0 0 0"
17
- ascent="1536"
18
- descent="-256"
19
- bbox="-1.02083 -256.962 2304.6 1537.02"
20
- underline-thickness="0"
21
- underline-position="0"
22
- unicode-range="U+0020-F500"
23
- />
24
- <missing-glyph horiz-adv-x="896"
25
- d="M224 112h448v1312h-448v-1312zM112 0v1536h672v-1536h-672z" />
26
- <glyph glyph-name=".notdef" horiz-adv-x="896"
27
- d="M224 112h448v1312h-448v-1312zM112 0v1536h672v-1536h-672z" />
28
- <glyph glyph-name=".null" horiz-adv-x="0"
29
- />
30
- <glyph glyph-name="nonmarkingreturn" horiz-adv-x="597"
31
- />
32
- <glyph glyph-name="space" unicode=" " horiz-adv-x="448"
33
- />
34
- <glyph glyph-name="dieresis" unicode="&#xa8;" horiz-adv-x="1792"
35
- />
36
- <glyph glyph-name="copyright" unicode="&#xa9;" horiz-adv-x="1792"
37
- />
38
- <glyph glyph-name="registered" unicode="&#xae;" horiz-adv-x="1792"
39
- />
40
- <glyph glyph-name="acute" unicode="&#xb4;" horiz-adv-x="1792"
41
- />
42
- <glyph glyph-name="AE" unicode="&#xc6;" horiz-adv-x="1792"
43
- />
44
- <glyph glyph-name="Oslash" unicode="&#xd8;" horiz-adv-x="1792"
45
- />
46
- <glyph glyph-name="trademark" unicode="&#x2122;" horiz-adv-x="1792"
47
- />
48
- <glyph glyph-name="infinity" unicode="&#x221e;" horiz-adv-x="1792"
49
- />
50
- <glyph glyph-name="notequal" unicode="&#x2260;" horiz-adv-x="1792"
51
- />
52
- <glyph glyph-name="glass" unicode="&#xf000;" horiz-adv-x="1792"
53
- d="M1699 1350q0 -35 -43 -78l-632 -632v-768h320q26 0 45 -19t19 -45t-19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45t45 19h320v768l-632 632q-43 43 -43 78q0 23 18 36.5t38 17.5t43 4h1408q23 0 43 -4t38 -17.5t18 -36.5z" />
54
- <glyph glyph-name="music" unicode="&#xf001;"
55
- d="M1536 1312v-1120q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v537l-768 -237v-709q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89
56
- t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v967q0 31 19 56.5t49 35.5l832 256q12 4 28 4q40 0 68 -28t28 -68z" />
57
- <glyph glyph-name="search" unicode="&#xf002;" horiz-adv-x="1664"
58
- d="M1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -52 -38 -90t-90 -38q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5
59
- t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
60
- <glyph glyph-name="envelope" unicode="&#xf003;" horiz-adv-x="1792"
61
- d="M1664 32v768q-32 -36 -69 -66q-268 -206 -426 -338q-51 -43 -83 -67t-86.5 -48.5t-102.5 -24.5h-1h-1q-48 0 -102.5 24.5t-86.5 48.5t-83 67q-158 132 -426 338q-37 30 -69 66v-768q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1664 1083v11v13.5t-0.5 13
62
- t-3 12.5t-5.5 9t-9 7.5t-14 2.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5q0 -168 147 -284q193 -152 401 -317q6 -5 35 -29.5t46 -37.5t44.5 -31.5t50.5 -27.5t43 -9h1h1q20 0 43 9t50.5 27.5t44.5 31.5t46 37.5t35 29.5q208 165 401 317q54 43 100.5 115.5t46.5 131.5z
63
- M1792 1120v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
64
- <glyph glyph-name="heart" unicode="&#xf004;" horiz-adv-x="1792"
65
- d="M896 -128q-26 0 -44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124t127 -344q0 -221 -229 -450l-623 -600
66
- q-18 -18 -44 -18z" />
67
- <glyph glyph-name="star" unicode="&#xf005;" horiz-adv-x="1664"
68
- d="M1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -21 -10.5 -35.5t-30.5 -14.5q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455
69
- l502 -73q56 -9 56 -46z" />
70
- <glyph glyph-name="star_empty" unicode="&#xf006;" horiz-adv-x="1664"
71
- d="M1137 532l306 297l-422 62l-189 382l-189 -382l-422 -62l306 -297l-73 -421l378 199l377 -199zM1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -50 -41 -50q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500
72
- l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455l502 -73q56 -9 56 -46z" />
73
- <glyph glyph-name="user" unicode="&#xf007;" horiz-adv-x="1280"
74
- d="M1280 137q0 -109 -62.5 -187t-150.5 -78h-854q-88 0 -150.5 78t-62.5 187q0 85 8.5 160.5t31.5 152t58.5 131t94 89t134.5 34.5q131 -128 313 -128t313 128q76 0 134.5 -34.5t94 -89t58.5 -131t31.5 -152t8.5 -160.5zM1024 1024q0 -159 -112.5 -271.5t-271.5 -112.5
75
- t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" />
76
- <glyph glyph-name="film" unicode="&#xf008;" horiz-adv-x="1920"
77
- d="M384 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 320v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 704v128q0 26 -19 45t-45 19h-128
78
- q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 -64v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM384 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45
79
- t45 -19h128q26 0 45 19t19 45zM1792 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 704v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1792 320v128
80
- q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 704v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19
81
- t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1920 1248v-1344q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1344q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
82
- <glyph glyph-name="th_large" unicode="&#xf009;" horiz-adv-x="1664"
83
- d="M768 512v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM768 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 512v-384q0 -52 -38 -90t-90 -38
84
- h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
85
- <glyph glyph-name="th" unicode="&#xf00a;" horiz-adv-x="1792"
86
- d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 288v-192q0 -40 -28 -68t-68 -28h-320
87
- q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28
88
- h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192
89
- q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68z" />
90
- <glyph glyph-name="th_list" unicode="&#xf00b;" horiz-adv-x="1792"
91
- d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-960
92
- q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28
93
- h960q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68z" />
94
- <glyph glyph-name="ok" unicode="&#xf00c;" horiz-adv-x="1792"
95
- d="M1671 970q0 -40 -28 -68l-724 -724l-136 -136q-28 -28 -68 -28t-68 28l-136 136l-362 362q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -295l656 657q28 28 68 28t68 -28l136 -136q28 -28 28 -68z" />
96
- <glyph glyph-name="remove" unicode="&#xf00d;" horiz-adv-x="1408"
97
- d="M1298 214q0 -40 -28 -68l-136 -136q-28 -28 -68 -28t-68 28l-294 294l-294 -294q-28 -28 -68 -28t-68 28l-136 136q-28 28 -28 68t28 68l294 294l-294 294q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -294l294 294q28 28 68 28t68 -28l136 -136q28 -28 28 -68
98
- t-28 -68l-294 -294l294 -294q28 -28 28 -68z" />
99
- <glyph glyph-name="zoom_in" unicode="&#xf00e;" horiz-adv-x="1664"
100
- d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-224q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v224h-224q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h224v224q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5v-224h224
101
- q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5
102
- t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
103
- <glyph glyph-name="zoom_out" unicode="&#xf010;" horiz-adv-x="1664"
104
- d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-576q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h576q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5z
105
- M1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z
106
- " />
107
- <glyph glyph-name="off" unicode="&#xf011;"
108
- d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61t-298 61t-245 164t-164 245t-61 298q0 182 80.5 343t226.5 270q43 32 95.5 25t83.5 -50q32 -42 24.5 -94.5t-49.5 -84.5q-98 -74 -151.5 -181t-53.5 -228q0 -104 40.5 -198.5t109.5 -163.5t163.5 -109.5
109
- t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5q0 121 -53.5 228t-151.5 181q-42 32 -49.5 84.5t24.5 94.5q31 43 84 50t95 -25q146 -109 226.5 -270t80.5 -343zM896 1408v-640q0 -52 -38 -90t-90 -38t-90 38t-38 90v640q0 52 38 90t90 38t90 -38t38 -90z" />
110
- <glyph glyph-name="signal" unicode="&#xf012;" horiz-adv-x="1792"
111
- d="M256 96v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 224v-320q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 480v-576q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23
112
- v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1408 864v-960q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1376v-1472q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1472q0 14 9 23t23 9h192q14 0 23 -9t9 -23z" />
113
- <glyph glyph-name="cog" unicode="&#xf013;"
114
- d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1536 749v-222q0 -12 -8 -23t-20 -13l-185 -28q-19 -54 -39 -91q35 -50 107 -138q10 -12 10 -25t-9 -23q-27 -37 -99 -108t-94 -71q-12 0 -26 9l-138 108q-44 -23 -91 -38
115
- q-16 -136 -29 -186q-7 -28 -36 -28h-222q-14 0 -24.5 8.5t-11.5 21.5l-28 184q-49 16 -90 37l-141 -107q-10 -9 -25 -9q-14 0 -25 11q-126 114 -165 168q-7 10 -7 23q0 12 8 23q15 21 51 66.5t54 70.5q-27 50 -41 99l-183 27q-13 2 -21 12.5t-8 23.5v222q0 12 8 23t19 13
116
- l186 28q14 46 39 92q-40 57 -107 138q-10 12 -10 24q0 10 9 23q26 36 98.5 107.5t94.5 71.5q13 0 26 -10l138 -107q44 23 91 38q16 136 29 186q7 28 36 28h222q14 0 24.5 -8.5t11.5 -21.5l28 -184q49 -16 90 -37l142 107q9 9 24 9q13 0 25 -10q129 -119 165 -170q7 -8 7 -22
117
- q0 -12 -8 -23q-15 -21 -51 -66.5t-54 -70.5q26 -50 41 -98l183 -28q13 -2 21 -12.5t8 -23.5z" />
118
- <glyph glyph-name="trash" unicode="&#xf014;" horiz-adv-x="1408"
119
- d="M512 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM768 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1024 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576
120
- q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1152 76v948h-896v-948q0 -22 7 -40.5t14.5 -27t10.5 -8.5h832q3 0 10.5 8.5t14.5 27t7 40.5zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832
121
- q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
122
- <glyph glyph-name="home" unicode="&#xf015;" horiz-adv-x="1664"
123
- d="M1408 544v-480q0 -26 -19 -45t-45 -19h-384v384h-256v-384h-384q-26 0 -45 19t-19 45v480q0 1 0.5 3t0.5 3l575 474l575 -474q1 -2 1 -6zM1631 613l-62 -74q-8 -9 -21 -11h-3q-13 0 -21 7l-692 577l-692 -577q-12 -8 -24 -7q-13 2 -21 11l-62 74q-8 10 -7 23.5t11 21.5
124
- l719 599q32 26 76 26t76 -26l244 -204v195q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-408l219 -182q10 -8 11 -21.5t-7 -23.5z" />
125
- <glyph glyph-name="file_alt" unicode="&#xf016;"
126
- d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
127
- " />
128
- <glyph glyph-name="time" unicode="&#xf017;"
129
- d="M896 992v-448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640
130
- q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
131
- <glyph glyph-name="road" unicode="&#xf018;" horiz-adv-x="1920"
132
- d="M1111 540v4l-24 320q-1 13 -11 22.5t-23 9.5h-186q-13 0 -23 -9.5t-11 -22.5l-24 -320v-4q-1 -12 8 -20t21 -8h244q12 0 21 8t8 20zM1870 73q0 -73 -46 -73h-704q13 0 22 9.5t8 22.5l-20 256q-1 13 -11 22.5t-23 9.5h-272q-13 0 -23 -9.5t-11 -22.5l-20 -256
133
- q-1 -13 8 -22.5t22 -9.5h-704q-46 0 -46 73q0 54 26 116l417 1044q8 19 26 33t38 14h339q-13 0 -23 -9.5t-11 -22.5l-15 -192q-1 -14 8 -23t22 -9h166q13 0 22 9t8 23l-15 192q-1 13 -11 22.5t-23 9.5h339q20 0 38 -14t26 -33l417 -1044q26 -62 26 -116z" />
134
- <glyph glyph-name="download_alt" unicode="&#xf019;" horiz-adv-x="1664"
135
- d="M1280 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 416v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h465l135 -136
136
- q58 -56 136 -56t136 56l136 136h464q40 0 68 -28t28 -68zM1339 985q17 -41 -14 -70l-448 -448q-18 -19 -45 -19t-45 19l-448 448q-31 29 -14 70q17 39 59 39h256v448q0 26 19 45t45 19h256q26 0 45 -19t19 -45v-448h256q42 0 59 -39z" />
137
- <glyph glyph-name="download" unicode="&#xf01a;"
138
- d="M1120 608q0 -12 -10 -24l-319 -319q-11 -9 -23 -9t-23 9l-320 320q-15 16 -7 35q8 20 30 20h192v352q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-352h192q14 0 23 -9t9 -23zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273
139
- t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
140
- <glyph glyph-name="upload" unicode="&#xf01b;"
141
- d="M1118 660q-8 -20 -30 -20h-192v-352q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v352h-192q-14 0 -23 9t-9 23q0 12 10 24l319 319q11 9 23 9t23 -9l320 -320q15 -16 7 -35zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198
142
- t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
143
- <glyph glyph-name="inbox" unicode="&#xf01c;"
144
- d="M1023 576h316q-1 3 -2.5 8.5t-2.5 7.5l-212 496h-708l-212 -496q-1 -3 -2.5 -8.5t-2.5 -7.5h316l95 -192h320zM1536 546v-482q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v482q0 62 25 123l238 552q10 25 36.5 42t52.5 17h832q26 0 52.5 -17t36.5 -42l238 -552
145
- q25 -61 25 -123z" />
146
- <glyph glyph-name="play_circle" unicode="&#xf01d;"
147
- d="M1184 640q0 -37 -32 -55l-544 -320q-15 -9 -32 -9q-16 0 -32 8q-32 19 -32 56v640q0 37 32 56q33 18 64 -1l544 -320q32 -18 32 -55zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640
148
- q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
149
- <glyph glyph-name="repeat" unicode="&#xf01e;"
150
- d="M1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l138 138q-148 137 -349 137q-104 0 -198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5q119 0 225 52t179 147q7 10 23 12q15 0 25 -9
151
- l137 -138q9 -8 9.5 -20.5t-7.5 -22.5q-109 -132 -264 -204.5t-327 -72.5q-156 0 -298 61t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q147 0 284.5 -55.5t244.5 -156.5l130 129q29 31 70 14q39 -17 39 -59z" />
152
- <glyph glyph-name="refresh" unicode="&#xf021;"
153
- d="M1511 480q0 -5 -1 -7q-64 -268 -268 -434.5t-478 -166.5q-146 0 -282.5 55t-243.5 157l-129 -129q-19 -19 -45 -19t-45 19t-19 45v448q0 26 19 45t45 19h448q26 0 45 -19t19 -45t-19 -45l-137 -137q71 -66 161 -102t187 -36q134 0 250 65t186 179q11 17 53 117
154
- q8 23 30 23h192q13 0 22.5 -9.5t9.5 -22.5zM1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-26 0 -45 19t-19 45t19 45l138 138q-148 137 -349 137q-134 0 -250 -65t-186 -179q-11 -17 -53 -117q-8 -23 -30 -23h-199q-13 0 -22.5 9.5t-9.5 22.5v7q65 268 270 434.5t480 166.5
155
- q146 0 284 -55.5t245 -156.5l130 129q19 19 45 19t45 -19t19 -45z" />
156
- <glyph glyph-name="list_alt" unicode="&#xf022;" horiz-adv-x="1792"
157
- d="M384 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
158
- M384 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1536 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5z
159
- M1536 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5zM1536 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5
160
- t9.5 -22.5zM1664 160v832q0 13 -9.5 22.5t-22.5 9.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1792 1248v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47
161
- t47 -113z" />
162
- <glyph glyph-name="lock" unicode="&#xf023;" horiz-adv-x="1152"
163
- d="M320 768h512v192q0 106 -75 181t-181 75t-181 -75t-75 -181v-192zM1152 672v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v192q0 184 132 316t316 132t316 -132t132 -316v-192h32q40 0 68 -28t28 -68z" />
164
- <glyph glyph-name="flag" unicode="&#xf024;" horiz-adv-x="1792"
165
- d="M320 1280q0 -72 -64 -110v-1266q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v1266q-64 38 -64 110q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -25 -12.5 -38.5t-39.5 -27.5q-215 -116 -369 -116q-61 0 -123.5 22t-108.5 48
166
- t-115.5 48t-142.5 22q-192 0 -464 -146q-17 -9 -33 -9q-26 0 -45 19t-19 45v742q0 32 31 55q21 14 79 43q236 120 421 120q107 0 200 -29t219 -88q38 -19 88 -19q54 0 117.5 21t110 47t88 47t54.5 21q26 0 45 -19t19 -45z" />
167
- <glyph glyph-name="headphones" unicode="&#xf025;" horiz-adv-x="1664"
168
- d="M1664 650q0 -166 -60 -314l-20 -49l-185 -33q-22 -83 -90.5 -136.5t-156.5 -53.5v-32q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-32q71 0 130 -35.5t93 -95.5l68 12q29 95 29 193q0 148 -88 279t-236.5 209t-315.5 78
169
- t-315.5 -78t-236.5 -209t-88 -279q0 -98 29 -193l68 -12q34 60 93 95.5t130 35.5v32q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v32q-88 0 -156.5 53.5t-90.5 136.5l-185 33l-20 49q-60 148 -60 314q0 151 67 291t179 242.5
170
- t266 163.5t320 61t320 -61t266 -163.5t179 -242.5t67 -291z" />
171
- <glyph glyph-name="volume_off" unicode="&#xf026;" horiz-adv-x="768"
172
- d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45z" />
173
- <glyph glyph-name="volume_down" unicode="&#xf027;" horiz-adv-x="1152"
174
- d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 36
175
- t12 56.5t-12 56.5t-29 36t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142z" />
176
- <glyph glyph-name="volume_up" unicode="&#xf028;" horiz-adv-x="1664"
177
- d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 36
178
- t12 56.5t-12 56.5t-29 36t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142zM1408 640q0 -153 -85 -282.5t-225 -188.5q-13 -5 -25 -5q-27 0 -46 19t-19 45q0 39 39 59q56 29 76 44q74 54 115.5 135.5t41.5 173.5t-41.5 173.5
179
- t-115.5 135.5q-20 15 -76 44q-39 20 -39 59q0 26 19 45t45 19q13 0 26 -5q140 -59 225 -188.5t85 -282.5zM1664 640q0 -230 -127 -422.5t-338 -283.5q-13 -5 -26 -5q-26 0 -45 19t-19 45q0 36 39 59q7 4 22.5 10.5t22.5 10.5q46 25 82 51q123 91 192 227t69 289t-69 289
180
- t-192 227q-36 26 -82 51q-7 4 -22.5 10.5t-22.5 10.5q-39 23 -39 59q0 26 19 45t45 19q13 0 26 -5q211 -91 338 -283.5t127 -422.5z" />
181
- <glyph glyph-name="qrcode" unicode="&#xf029;" horiz-adv-x="1408"
182
- d="M384 384v-128h-128v128h128zM384 1152v-128h-128v128h128zM1152 1152v-128h-128v128h128zM128 129h384v383h-384v-383zM128 896h384v384h-384v-384zM896 896h384v384h-384v-384zM640 640v-640h-640v640h640zM1152 128v-128h-128v128h128zM1408 128v-128h-128v128h128z
183
- M1408 640v-384h-384v128h-128v-384h-128v640h384v-128h128v128h128zM640 1408v-640h-640v640h640zM1408 1408v-640h-640v640h640z" />
184
- <glyph glyph-name="barcode" unicode="&#xf02a;" horiz-adv-x="1792"
185
- d="M63 0h-63v1408h63v-1408zM126 1h-32v1407h32v-1407zM220 1h-31v1407h31v-1407zM377 1h-31v1407h31v-1407zM534 1h-62v1407h62v-1407zM660 1h-31v1407h31v-1407zM723 1h-31v1407h31v-1407zM786 1h-31v1407h31v-1407zM943 1h-63v1407h63v-1407zM1100 1h-63v1407h63v-1407z
186
- M1226 1h-63v1407h63v-1407zM1352 1h-63v1407h63v-1407zM1446 1h-63v1407h63v-1407zM1635 1h-94v1407h94v-1407zM1698 1h-32v1407h32v-1407zM1792 0h-63v1408h63v-1408z" />
187
- <glyph glyph-name="tag" unicode="&#xf02b;"
188
- d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5
189
- l715 -714q37 -39 37 -91z" />
190
- <glyph glyph-name="tags" unicode="&#xf02c;" horiz-adv-x="1920"
191
- d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5
192
- l715 -714q37 -39 37 -91zM1899 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-36 0 -59 14t-53 45l470 470q37 37 37 90q0 52 -37 91l-715 714q-38 38 -102 64.5t-117 26.5h224q53 0 117 -26.5t102 -64.5l715 -714q37 -39 37 -91z" />
193
- <glyph glyph-name="book" unicode="&#xf02d;" horiz-adv-x="1664"
194
- d="M1639 1058q40 -57 18 -129l-275 -906q-19 -64 -76.5 -107.5t-122.5 -43.5h-923q-77 0 -148.5 53.5t-99.5 131.5q-24 67 -2 127q0 4 3 27t4 37q1 8 -3 21.5t-3 19.5q2 11 8 21t16.5 23.5t16.5 23.5q23 38 45 91.5t30 91.5q3 10 0.5 30t-0.5 28q3 11 17 28t17 23
195
- q21 36 42 92t25 90q1 9 -2.5 32t0.5 28q4 13 22 30.5t22 22.5q19 26 42.5 84.5t27.5 96.5q1 8 -3 25.5t-2 26.5q2 8 9 18t18 23t17 21q8 12 16.5 30.5t15 35t16 36t19.5 32t26.5 23.5t36 11.5t47.5 -5.5l-1 -3q38 9 51 9h761q74 0 114 -56t18 -130l-274 -906
196
- q-36 -119 -71.5 -153.5t-128.5 -34.5h-869q-27 0 -38 -15q-11 -16 -1 -43q24 -70 144 -70h923q29 0 56 15.5t35 41.5l300 987q7 22 5 57q38 -15 59 -43zM575 1056q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5
197
- t-16.5 -22.5zM492 800q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5t-16.5 -22.5z" />
198
- <glyph glyph-name="bookmark" unicode="&#xf02e;" horiz-adv-x="1280"
199
- d="M1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
200
- <glyph glyph-name="print" unicode="&#xf02f;" horiz-adv-x="1664"
201
- d="M384 0h896v256h-896v-256zM384 640h896v384h-160q-40 0 -68 28t-28 68v160h-640v-640zM1536 576q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 576v-416q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-160q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68
202
- v160h-224q-13 0 -22.5 9.5t-9.5 22.5v416q0 79 56.5 135.5t135.5 56.5h64v544q0 40 28 68t68 28h672q40 0 88 -20t76 -48l152 -152q28 -28 48 -76t20 -88v-256h64q79 0 135.5 -56.5t56.5 -135.5z" />
203
- <glyph glyph-name="camera" unicode="&#xf030;" horiz-adv-x="1920"
204
- d="M960 864q119 0 203.5 -84.5t84.5 -203.5t-84.5 -203.5t-203.5 -84.5t-203.5 84.5t-84.5 203.5t84.5 203.5t203.5 84.5zM1664 1280q106 0 181 -75t75 -181v-896q0 -106 -75 -181t-181 -75h-1408q-106 0 -181 75t-75 181v896q0 106 75 181t181 75h224l51 136
205
- q19 49 69.5 84.5t103.5 35.5h512q53 0 103.5 -35.5t69.5 -84.5l51 -136h224zM960 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
206
- <glyph glyph-name="font" unicode="&#xf031;" horiz-adv-x="1664"
207
- d="M725 977l-170 -450q33 0 136.5 -2t160.5 -2q19 0 57 2q-87 253 -184 452zM0 -128l2 79q23 7 56 12.5t57 10.5t49.5 14.5t44.5 29t31 50.5l237 616l280 724h75h53q8 -14 11 -21l205 -480q33 -78 106 -257.5t114 -274.5q15 -34 58 -144.5t72 -168.5q20 -45 35 -57
208
- q19 -15 88 -29.5t84 -20.5q6 -38 6 -57q0 -5 -0.5 -13.5t-0.5 -12.5q-63 0 -190 8t-191 8q-76 0 -215 -7t-178 -8q0 43 4 78l131 28q1 0 12.5 2.5t15.5 3.5t14.5 4.5t15 6.5t11 8t9 11t2.5 14q0 16 -31 96.5t-72 177.5t-42 100l-450 2q-26 -58 -76.5 -195.5t-50.5 -162.5
209
- q0 -22 14 -37.5t43.5 -24.5t48.5 -13.5t57 -8.5t41 -4q1 -19 1 -58q0 -9 -2 -27q-58 0 -174.5 10t-174.5 10q-8 0 -26.5 -4t-21.5 -4q-80 -14 -188 -14z" />
210
- <glyph glyph-name="bold" unicode="&#xf032;" horiz-adv-x="1408"
211
- d="M555 15q74 -32 140 -32q376 0 376 335q0 114 -41 180q-27 44 -61.5 74t-67.5 46.5t-80.5 25t-84 10.5t-94.5 2q-73 0 -101 -10q0 -53 -0.5 -159t-0.5 -158q0 -8 -1 -67.5t-0.5 -96.5t4.5 -83.5t12 -66.5zM541 761q42 -7 109 -7q82 0 143 13t110 44.5t74.5 89.5t25.5 142
212
- q0 70 -29 122.5t-79 82t-108 43.5t-124 14q-50 0 -130 -13q0 -50 4 -151t4 -152q0 -27 -0.5 -80t-0.5 -79q0 -46 1 -69zM0 -128l2 94q15 4 85 16t106 27q7 12 12.5 27t8.5 33.5t5.5 32.5t3 37.5t0.5 34v35.5v30q0 982 -22 1025q-4 8 -22 14.5t-44.5 11t-49.5 7t-48.5 4.5
213
- t-30.5 3l-4 83q98 2 340 11.5t373 9.5q23 0 68 -0.5t68 -0.5q70 0 136.5 -13t128.5 -42t108 -71t74 -104.5t28 -137.5q0 -52 -16.5 -95.5t-39 -72t-64.5 -57.5t-73 -45t-84 -40q154 -35 256.5 -134t102.5 -248q0 -100 -35 -179.5t-93.5 -130.5t-138 -85.5t-163.5 -48.5
214
- t-176 -14q-44 0 -132 3t-132 3q-106 0 -307 -11t-231 -12z" />
215
- <glyph glyph-name="italic" unicode="&#xf033;" horiz-adv-x="1024"
216
- d="M0 -126l17 85q22 7 61.5 16.5t72 19t59.5 23.5q28 35 41 101q1 7 62 289t114 543.5t52 296.5v25q-24 13 -54.5 18.5t-69.5 8t-58 5.5l19 103q33 -2 120 -6.5t149.5 -7t120.5 -2.5q48 0 98.5 2.5t121 7t98.5 6.5q-5 -39 -19 -89q-30 -10 -101.5 -28.5t-108.5 -33.5
217
- q-8 -19 -14 -42.5t-9 -40t-7.5 -45.5t-6.5 -42q-27 -148 -87.5 -419.5t-77.5 -355.5q-2 -9 -13 -58t-20 -90t-16 -83.5t-6 -57.5l1 -18q17 -4 185 -31q-3 -44 -16 -99q-11 0 -32.5 -1.5t-32.5 -1.5q-29 0 -87 10t-86 10q-138 2 -206 2q-51 0 -143 -9t-121 -11z" />
218
- <glyph glyph-name="text_height" unicode="&#xf034;" horiz-adv-x="1792"
219
- d="M1744 128q33 0 42 -18.5t-11 -44.5l-126 -162q-20 -26 -49 -26t-49 26l-126 162q-20 26 -11 44.5t42 18.5h80v1024h-80q-33 0 -42 18.5t11 44.5l126 162q20 26 49 26t49 -26l126 -162q20 -26 11 -44.5t-42 -18.5h-80v-1024h80zM81 1407l54 -27q12 -5 211 -5q44 0 132 2
220
- t132 2q36 0 107.5 -0.5t107.5 -0.5h293q6 0 21 -0.5t20.5 0t16 3t17.5 9t15 17.5l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 48t-14.5 73.5t-7.5 35.5q-6 8 -12 12.5t-15.5 6t-13 2.5t-18 0.5t-16.5 -0.5
221
- q-17 0 -66.5 0.5t-74.5 0.5t-64 -2t-71 -6q-9 -81 -8 -136q0 -94 2 -388t2 -455q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27
222
- q19 42 19 383q0 101 -3 303t-3 303v117q0 2 0.5 15.5t0.5 25t-1 25.5t-3 24t-5 14q-11 12 -162 12q-33 0 -93 -12t-80 -26q-19 -13 -34 -72.5t-31.5 -111t-42.5 -53.5q-42 26 -56 44v383z" />
223
- <glyph glyph-name="text_width" unicode="&#xf035;"
224
- d="M81 1407l54 -27q12 -5 211 -5q44 0 132 2t132 2q70 0 246.5 1t304.5 0.5t247 -4.5q33 -1 56 31l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 47.5t-15 73.5t-7 36q-10 13 -27 19q-5 2 -66 2q-30 0 -93 1t-103 1
225
- t-94 -2t-96 -7q-9 -81 -8 -136l1 -152v52q0 -55 1 -154t1.5 -180t0.5 -153q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27
226
- q7 16 11.5 74t6 145.5t1.5 155t-0.5 153.5t-0.5 89q0 7 -2.5 21.5t-2.5 22.5q0 7 0.5 44t1 73t0 76.5t-3 67.5t-6.5 32q-11 12 -162 12q-41 0 -163 -13.5t-138 -24.5q-19 -12 -34 -71.5t-31.5 -111.5t-42.5 -54q-42 26 -56 44v383zM1310 125q12 0 42 -19.5t57.5 -41.5
227
- t59.5 -49t36 -30q26 -21 26 -49t-26 -49q-4 -3 -36 -30t-59.5 -49t-57.5 -41.5t-42 -19.5q-13 0 -20.5 10.5t-10 28.5t-2.5 33.5t1.5 33t1.5 19.5h-1024q0 -2 1.5 -19.5t1.5 -33t-2.5 -33.5t-10 -28.5t-20.5 -10.5q-12 0 -42 19.5t-57.5 41.5t-59.5 49t-36 30q-26 21 -26 49
228
- t26 49q4 3 36 30t59.5 49t57.5 41.5t42 19.5q13 0 20.5 -10.5t10 -28.5t2.5 -33.5t-1.5 -33t-1.5 -19.5h1024q0 2 -1.5 19.5t-1.5 33t2.5 33.5t10 28.5t20.5 10.5z" />
229
- <glyph glyph-name="align_left" unicode="&#xf036;" horiz-adv-x="1792"
230
- d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45
231
- t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
232
- <glyph glyph-name="align_center" unicode="&#xf037;" horiz-adv-x="1792"
233
- d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h896q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45t-45 -19
234
- h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h640q26 0 45 -19t19 -45z" />
235
- <glyph glyph-name="align_right" unicode="&#xf038;" horiz-adv-x="1792"
236
- d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45
237
- t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
238
- <glyph glyph-name="align_justify" unicode="&#xf039;" horiz-adv-x="1792"
239
- d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45
240
- t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
241
- <glyph glyph-name="list" unicode="&#xf03a;" horiz-adv-x="1792"
242
- d="M256 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM256 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5
243
- t9.5 -22.5zM256 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344
244
- q13 0 22.5 -9.5t9.5 -22.5zM256 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5
245
- t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192
246
- q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5z" />
247
- <glyph glyph-name="indent_left" unicode="&#xf03b;" horiz-adv-x="1792"
248
- d="M384 992v-576q0 -13 -9.5 -22.5t-22.5 -9.5q-14 0 -23 9l-288 288q-9 9 -9 23t9 23l288 288q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5
249
- t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088
250
- q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
251
- <glyph glyph-name="indent_right" unicode="&#xf03c;" horiz-adv-x="1792"
252
- d="M352 704q0 -14 -9 -23l-288 -288q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v576q0 13 9.5 22.5t22.5 9.5q14 0 23 -9l288 -288q9 -9 9 -23zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5
253
- t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088
254
- q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
255
- <glyph glyph-name="facetime_video" unicode="&#xf03d;" horiz-adv-x="1792"
256
- d="M1792 1184v-1088q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-403 403v-166q0 -119 -84.5 -203.5t-203.5 -84.5h-704q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h704q119 0 203.5 -84.5t84.5 -203.5v-165l403 402q18 19 45 19q12 0 25 -5
257
- q39 -17 39 -59z" />
258
- <glyph glyph-name="picture" unicode="&#xf03e;" horiz-adv-x="1920"
259
- d="M640 960q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 576v-448h-1408v192l320 320l160 -160l512 512zM1760 1280h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5v1216
260
- q0 13 -9.5 22.5t-22.5 9.5zM1920 1248v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
261
- <glyph glyph-name="pencil" unicode="&#xf040;"
262
- d="M363 0l91 91l-235 235l-91 -91v-107h128v-128h107zM886 928q0 22 -22 22q-10 0 -17 -7l-542 -542q-7 -7 -7 -17q0 -22 22 -22q10 0 17 7l542 542q7 7 7 17zM832 1120l416 -416l-832 -832h-416v416zM1515 1024q0 -53 -37 -90l-166 -166l-416 416l166 165q36 38 90 38
263
- q53 0 91 -38l235 -234q37 -39 37 -91z" />
264
- <glyph glyph-name="map_marker" unicode="&#xf041;" horiz-adv-x="1024"
265
- d="M768 896q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1024 896q0 -109 -33 -179l-364 -774q-16 -33 -47.5 -52t-67.5 -19t-67.5 19t-46.5 52l-365 774q-33 70 -33 179q0 212 150 362t362 150t362 -150t150 -362z" />
266
- <glyph glyph-name="adjust" unicode="&#xf042;"
267
- d="M768 96v1088q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
268
- <glyph glyph-name="tint" unicode="&#xf043;" horiz-adv-x="1024"
269
- d="M512 384q0 36 -20 69q-1 1 -15.5 22.5t-25.5 38t-25 44t-21 50.5q-4 16 -21 16t-21 -16q-7 -23 -21 -50.5t-25 -44t-25.5 -38t-15.5 -22.5q-20 -33 -20 -69q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 512q0 -212 -150 -362t-362 -150t-362 150t-150 362
270
- q0 145 81 275q6 9 62.5 90.5t101 151t99.5 178t83 201.5q9 30 34 47t51 17t51.5 -17t33.5 -47q28 -93 83 -201.5t99.5 -178t101 -151t62.5 -90.5q81 -127 81 -275z" />
271
- <glyph glyph-name="edit" unicode="&#xf044;" horiz-adv-x="1792"
272
- d="M888 352l116 116l-152 152l-116 -116v-56h96v-96h56zM1328 1072q-16 16 -33 -1l-350 -350q-17 -17 -1 -33t33 1l350 350q17 17 1 33zM1408 478v-190q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832
273
- q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-14 -14 -32 -8q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v126q0 13 9 22l64 64q15 15 35 7t20 -29zM1312 1216l288 -288l-672 -672h-288v288zM1756 1084l-92 -92
274
- l-288 288l92 92q28 28 68 28t68 -28l152 -152q28 -28 28 -68t-28 -68z" />
275
- <glyph glyph-name="share" unicode="&#xf045;" horiz-adv-x="1664"
276
- d="M1408 547v-259q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h255v0q13 0 22.5 -9.5t9.5 -22.5q0 -27 -26 -32q-77 -26 -133 -60q-10 -4 -16 -4h-112q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832
277
- q66 0 113 47t47 113v214q0 19 18 29q28 13 54 37q16 16 35 8q21 -9 21 -29zM1645 1043l-384 -384q-18 -19 -45 -19q-12 0 -25 5q-39 17 -39 59v192h-160q-323 0 -438 -131q-119 -137 -74 -473q3 -23 -20 -34q-8 -2 -12 -2q-16 0 -26 13q-10 14 -21 31t-39.5 68.5t-49.5 99.5
278
- t-38.5 114t-17.5 122q0 49 3.5 91t14 90t28 88t47 81.5t68.5 74t94.5 61.5t124.5 48.5t159.5 30.5t196.5 11h160v192q0 42 39 59q13 5 25 5q26 0 45 -19l384 -384q19 -19 19 -45t-19 -45z" />
279
- <glyph glyph-name="check" unicode="&#xf046;" horiz-adv-x="1664"
280
- d="M1408 606v-318q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-10 -10 -23 -10q-3 0 -9 2q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832
281
- q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v254q0 13 9 22l64 64q10 10 23 10q6 0 12 -3q20 -8 20 -29zM1639 1095l-814 -814q-24 -24 -57 -24t-57 24l-430 430q-24 24 -24 57t24 57l110 110q24 24 57 24t57 -24l263 -263l647 647q24 24 57 24t57 -24l110 -110
282
- q24 -24 24 -57t-24 -57z" />
283
- <glyph glyph-name="move" unicode="&#xf047;" horiz-adv-x="1792"
284
- d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-384v-384h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v384h-384v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45
285
- t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h384v384h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45t-19 -45t-45 -19h-128v-384h384v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
286
- <glyph glyph-name="step_backward" unicode="&#xf048;" horiz-adv-x="1024"
287
- d="M979 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 10 13 19z" />
288
- <glyph glyph-name="fast_backward" unicode="&#xf049;" horiz-adv-x="1792"
289
- d="M1747 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 10 13 19l710 710
290
- q19 19 32 13t13 -32v-710q4 10 13 19z" />
291
- <glyph glyph-name="backward" unicode="&#xf04a;" horiz-adv-x="1664"
292
- d="M1619 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-19 19 -19 45t19 45l710 710q19 19 32 13t13 -32v-710q4 10 13 19z" />
293
- <glyph glyph-name="play" unicode="&#xf04b;" horiz-adv-x="1408"
294
- d="M1384 609l-1328 -738q-23 -13 -39.5 -3t-16.5 36v1472q0 26 16.5 36t39.5 -3l1328 -738q23 -13 23 -31t-23 -31z" />
295
- <glyph glyph-name="pause" unicode="&#xf04c;"
296
- d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45zM640 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45z" />
297
- <glyph glyph-name="stop" unicode="&#xf04d;"
298
- d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
299
- <glyph glyph-name="forward" unicode="&#xf04e;" horiz-adv-x="1664"
300
- d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q9 -9 13 -19v710q0 26 13 32t32 -13l710 -710q19 -19 19 -45t-19 -45l-710 -710q-19 -19 -32 -13t-13 32v710q-4 -10 -13 -19z" />
301
- <glyph glyph-name="fast_forward" unicode="&#xf050;" horiz-adv-x="1792"
302
- d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q9 -9 13 -19v710q0 26 13 32t32 -13l710 -710q9 -9 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-4 -10 -13 -19l-710 -710
303
- q-19 -19 -32 -13t-13 32v710q-4 -10 -13 -19z" />
304
- <glyph glyph-name="step_forward" unicode="&#xf051;" horiz-adv-x="1024"
305
- d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q9 -9 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-4 -10 -13 -19z" />
306
- <glyph glyph-name="eject" unicode="&#xf052;" horiz-adv-x="1538"
307
- d="M14 557l710 710q19 19 45 19t45 -19l710 -710q19 -19 13 -32t-32 -13h-1472q-26 0 -32 13t13 32zM1473 0h-1408q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1408q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19z" />
308
- <glyph glyph-name="chevron_left" unicode="&#xf053;" horiz-adv-x="1280"
309
- d="M1171 1235l-531 -531l531 -531q19 -19 19 -45t-19 -45l-166 -166q-19 -19 -45 -19t-45 19l-742 742q-19 19 -19 45t19 45l742 742q19 19 45 19t45 -19l166 -166q19 -19 19 -45t-19 -45z" />
310
- <glyph glyph-name="chevron_right" unicode="&#xf054;" horiz-adv-x="1280"
311
- d="M1107 659l-742 -742q-19 -19 -45 -19t-45 19l-166 166q-19 19 -19 45t19 45l531 531l-531 531q-19 19 -19 45t19 45l166 166q19 19 45 19t45 -19l742 -742q19 -19 19 -45t-19 -45z" />
312
- <glyph glyph-name="plus_sign" unicode="&#xf055;"
313
- d="M1216 576v128q0 26 -19 45t-45 19h-256v256q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-256h-256q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h256v-256q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v256h256q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5
314
- t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
315
- <glyph glyph-name="minus_sign" unicode="&#xf056;"
316
- d="M1216 576v128q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5
317
- t103 -385.5z" />
318
- <glyph glyph-name="remove_sign" unicode="&#xf057;"
319
- d="M1149 414q0 26 -19 45l-181 181l181 181q19 19 19 45q0 27 -19 46l-90 90q-19 19 -46 19q-26 0 -45 -19l-181 -181l-181 181q-19 19 -45 19q-27 0 -46 -19l-90 -90q-19 -19 -19 -46q0 -26 19 -45l181 -181l-181 -181q-19 -19 -19 -45q0 -27 19 -46l90 -90q19 -19 46 -19
320
- q26 0 45 19l181 181l181 -181q19 -19 45 -19q27 0 46 19l90 90q19 19 19 46zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
321
- <glyph glyph-name="ok_sign" unicode="&#xf058;"
322
- d="M1284 802q0 28 -18 46l-91 90q-19 19 -45 19t-45 -19l-408 -407l-226 226q-19 19 -45 19t-45 -19l-91 -90q-18 -18 -18 -46q0 -27 18 -45l362 -362q19 -19 45 -19q27 0 46 19l543 543q18 18 18 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103
323
- t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
324
- <glyph glyph-name="question_sign" unicode="&#xf059;"
325
- d="M896 160v192q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h192q14 0 23 9t9 23zM1152 832q0 88 -55.5 163t-138.5 116t-170 41q-243 0 -371 -213q-15 -24 8 -42l132 -100q7 -6 19 -6q16 0 25 12q53 68 86 92q34 24 86 24q48 0 85.5 -26t37.5 -59
326
- q0 -38 -20 -61t-68 -45q-63 -28 -115.5 -86.5t-52.5 -125.5v-36q0 -14 9 -23t23 -9h192q14 0 23 9t9 23q0 19 21.5 49.5t54.5 49.5q32 18 49 28.5t46 35t44.5 48t28 60.5t12.5 81zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
327
- t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
328
- <glyph glyph-name="info_sign" unicode="&#xf05a;"
329
- d="M1024 160v160q0 14 -9 23t-23 9h-96v512q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h96v-320h-96q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h448q14 0 23 9t9 23zM896 1056v160q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23
330
- t23 -9h192q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
331
- <glyph glyph-name="screenshot" unicode="&#xf05b;"
332
- d="M1197 512h-109q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h109q-32 108 -112.5 188.5t-188.5 112.5v-109q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v109q-108 -32 -188.5 -112.5t-112.5 -188.5h109q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-109
333
- q32 -108 112.5 -188.5t188.5 -112.5v109q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-109q108 32 188.5 112.5t112.5 188.5zM1536 704v-128q0 -26 -19 -45t-45 -19h-143q-37 -161 -154.5 -278.5t-278.5 -154.5v-143q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v143
334
- q-161 37 -278.5 154.5t-154.5 278.5h-143q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h143q37 161 154.5 278.5t278.5 154.5v143q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-143q161 -37 278.5 -154.5t154.5 -278.5h143q26 0 45 -19t19 -45z" />
335
- <glyph glyph-name="remove_circle" unicode="&#xf05c;"
336
- d="M1097 457l-146 -146q-10 -10 -23 -10t-23 10l-137 137l-137 -137q-10 -10 -23 -10t-23 10l-146 146q-10 10 -10 23t10 23l137 137l-137 137q-10 10 -10 23t10 23l146 146q10 10 23 10t23 -10l137 -137l137 137q10 10 23 10t23 -10l146 -146q10 -10 10 -23t-10 -23
337
- l-137 -137l137 -137q10 -10 10 -23t-10 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5
338
- t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
339
- <glyph glyph-name="ok_circle" unicode="&#xf05d;"
340
- d="M1171 723l-422 -422q-19 -19 -45 -19t-45 19l-294 294q-19 19 -19 45t19 45l102 102q19 19 45 19t45 -19l147 -147l275 275q19 19 45 19t45 -19l102 -102q19 -19 19 -45t-19 -45zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198
341
- t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
342
- <glyph glyph-name="ban_circle" unicode="&#xf05e;"
343
- d="M1312 643q0 161 -87 295l-754 -753q137 -89 297 -89q111 0 211.5 43.5t173.5 116.5t116 174.5t43 212.5zM313 344l755 754q-135 91 -300 91q-148 0 -273 -73t-198 -199t-73 -274q0 -162 89 -299zM1536 643q0 -157 -61 -300t-163.5 -246t-245 -164t-298.5 -61t-298.5 61
344
- t-245 164t-163.5 246t-61 300t61 299.5t163.5 245.5t245 164t298.5 61t298.5 -61t245 -164t163.5 -245.5t61 -299.5z" />
345
- <glyph glyph-name="arrow_left" unicode="&#xf060;"
346
- d="M1536 640v-128q0 -53 -32.5 -90.5t-84.5 -37.5h-704l293 -294q38 -36 38 -90t-38 -90l-75 -76q-37 -37 -90 -37q-52 0 -91 37l-651 652q-37 37 -37 90q0 52 37 91l651 650q38 38 91 38q52 0 90 -38l75 -74q38 -38 38 -91t-38 -91l-293 -293h704q52 0 84.5 -37.5
347
- t32.5 -90.5z" />
348
- <glyph glyph-name="arrow_right" unicode="&#xf061;"
349
- d="M1472 576q0 -54 -37 -91l-651 -651q-39 -37 -91 -37q-51 0 -90 37l-75 75q-38 38 -38 91t38 91l293 293h-704q-52 0 -84.5 37.5t-32.5 90.5v128q0 53 32.5 90.5t84.5 37.5h704l-293 294q-38 36 -38 90t38 90l75 75q38 38 90 38q53 0 91 -38l651 -651q37 -35 37 -90z" />
350
- <glyph glyph-name="arrow_up" unicode="&#xf062;" horiz-adv-x="1664"
351
- d="M1611 565q0 -51 -37 -90l-75 -75q-38 -38 -91 -38q-54 0 -90 38l-294 293v-704q0 -52 -37.5 -84.5t-90.5 -32.5h-128q-53 0 -90.5 32.5t-37.5 84.5v704l-294 -293q-36 -38 -90 -38t-90 38l-75 75q-38 38 -38 90q0 53 38 91l651 651q35 37 90 37q54 0 91 -37l651 -651
352
- q37 -39 37 -91z" />
353
- <glyph glyph-name="arrow_down" unicode="&#xf063;" horiz-adv-x="1664"
354
- d="M1611 704q0 -53 -37 -90l-651 -652q-39 -37 -91 -37q-53 0 -90 37l-651 652q-38 36 -38 90q0 53 38 91l74 75q39 37 91 37q53 0 90 -37l294 -294v704q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-704l294 294q37 37 90 37q52 0 91 -37l75 -75q37 -39 37 -91z" />
355
- <glyph glyph-name="share_alt" unicode="&#xf064;" horiz-adv-x="1792"
356
- d="M1792 896q0 -26 -19 -45l-512 -512q-19 -19 -45 -19t-45 19t-19 45v256h-224q-98 0 -175.5 -6t-154 -21.5t-133 -42.5t-105.5 -69.5t-80 -101t-48.5 -138.5t-17.5 -181q0 -55 5 -123q0 -6 2.5 -23.5t2.5 -26.5q0 -15 -8.5 -25t-23.5 -10q-16 0 -28 17q-7 9 -13 22
357
- t-13.5 30t-10.5 24q-127 285 -127 451q0 199 53 333q162 403 875 403h224v256q0 26 19 45t45 19t45 -19l512 -512q19 -19 19 -45z" />
358
- <glyph glyph-name="resize_full" unicode="&#xf065;"
359
- d="M755 480q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23zM1536 1344v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332
360
- q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45z" />
361
- <glyph glyph-name="resize_small" unicode="&#xf066;"
362
- d="M768 576v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45zM1523 1248q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45
363
- t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23z" />
364
- <glyph glyph-name="plus" unicode="&#xf067;" horiz-adv-x="1408"
365
- d="M1408 800v-192q0 -40 -28 -68t-68 -28h-416v-416q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v416h-416q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h416v416q0 40 28 68t68 28h192q40 0 68 -28t28 -68v-416h416q40 0 68 -28t28 -68z" />
366
- <glyph glyph-name="minus" unicode="&#xf068;" horiz-adv-x="1408"
367
- d="M1408 800v-192q0 -40 -28 -68t-68 -28h-1216q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h1216q40 0 68 -28t28 -68z" />
368
- <glyph glyph-name="asterisk" unicode="&#xf069;" horiz-adv-x="1664"
369
- d="M1482 486q46 -26 59.5 -77.5t-12.5 -97.5l-64 -110q-26 -46 -77.5 -59.5t-97.5 12.5l-266 153v-307q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v307l-266 -153q-46 -26 -97.5 -12.5t-77.5 59.5l-64 110q-26 46 -12.5 97.5t59.5 77.5l266 154l-266 154
370
- q-46 26 -59.5 77.5t12.5 97.5l64 110q26 46 77.5 59.5t97.5 -12.5l266 -153v307q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-307l266 153q46 26 97.5 12.5t77.5 -59.5l64 -110q26 -46 12.5 -97.5t-59.5 -77.5l-266 -154z" />
371
- <glyph glyph-name="exclamation_sign" unicode="&#xf06a;"
372
- d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM896 161v190q0 14 -9 23.5t-22 9.5h-192q-13 0 -23 -10t-10 -23v-190q0 -13 10 -23t23 -10h192
373
- q13 0 22 9.5t9 23.5zM894 505l18 621q0 12 -10 18q-10 8 -24 8h-220q-14 0 -24 -8q-10 -6 -10 -18l17 -621q0 -10 10 -17.5t24 -7.5h185q14 0 23.5 7.5t10.5 17.5z" />
374
- <glyph glyph-name="gift" unicode="&#xf06b;"
375
- d="M928 180v56v468v192h-320v-192v-468v-56q0 -25 18 -38.5t46 -13.5h192q28 0 46 13.5t18 38.5zM472 1024h195l-126 161q-26 31 -69 31q-40 0 -68 -28t-28 -68t28 -68t68 -28zM1160 1120q0 40 -28 68t-68 28q-43 0 -69 -31l-125 -161h194q40 0 68 28t28 68zM1536 864v-320
376
- q0 -14 -9 -23t-23 -9h-96v-416q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v416h-96q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h440q-93 0 -158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5q107 0 168 -77l128 -165l128 165q61 77 168 77q93 0 158.5 -65.5t65.5 -158.5
377
- t-65.5 -158.5t-158.5 -65.5h440q14 0 23 -9t9 -23z" />
378
- <glyph glyph-name="leaf" unicode="&#xf06c;" horiz-adv-x="1792"
379
- d="M1280 832q0 26 -19 45t-45 19q-172 0 -318 -49.5t-259.5 -134t-235.5 -219.5q-19 -21 -19 -45q0 -26 19 -45t45 -19q24 0 45 19q27 24 74 71t67 66q137 124 268.5 176t313.5 52q26 0 45 19t19 45zM1792 1030q0 -95 -20 -193q-46 -224 -184.5 -383t-357.5 -268
380
- q-214 -108 -438 -108q-148 0 -286 47q-15 5 -88 42t-96 37q-16 0 -39.5 -32t-45 -70t-52.5 -70t-60 -32q-43 0 -63.5 17.5t-45.5 59.5q-2 4 -6 11t-5.5 10t-3 9.5t-1.5 13.5q0 35 31 73.5t68 65.5t68 56t31 48q0 4 -14 38t-16 44q-9 51 -9 104q0 115 43.5 220t119 184.5
381
- t170.5 139t204 95.5q55 18 145 25.5t179.5 9t178.5 6t163.5 24t113.5 56.5l29.5 29.5t29.5 28t27 20t36.5 16t43.5 4.5q39 0 70.5 -46t47.5 -112t24 -124t8 -96z" />
382
- <glyph glyph-name="fire" unicode="&#xf06d;" horiz-adv-x="1408"
383
- d="M1408 -160v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1152 896q0 -78 -24.5 -144t-64 -112.5t-87.5 -88t-96 -77.5t-87.5 -72t-64 -81.5t-24.5 -96.5q0 -96 67 -224l-4 1l1 -1
384
- q-90 41 -160 83t-138.5 100t-113.5 122.5t-72.5 150.5t-27.5 184q0 78 24.5 144t64 112.5t87.5 88t96 77.5t87.5 72t64 81.5t24.5 96.5q0 94 -66 224l3 -1l-1 1q90 -41 160 -83t138.5 -100t113.5 -122.5t72.5 -150.5t27.5 -184z" />
385
- <glyph glyph-name="eye_open" unicode="&#xf06e;" horiz-adv-x="1792"
386
- d="M1664 576q-152 236 -381 353q61 -104 61 -225q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 121 61 225q-229 -117 -381 -353q133 -205 333.5 -326.5t434.5 -121.5t434.5 121.5t333.5 326.5zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5
387
- t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1792 576q0 -34 -20 -69q-140 -230 -376.5 -368.5t-499.5 -138.5t-499.5 139t-376.5 368q-20 35 -20 69t20 69q140 229 376.5 368t499.5 139t499.5 -139t376.5 -368q20 -35 20 -69z" />
388
- <glyph glyph-name="eye_close" unicode="&#xf070;" horiz-adv-x="1792"
389
- d="M555 201l78 141q-87 63 -136 159t-49 203q0 121 61 225q-229 -117 -381 -353q167 -258 427 -375zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1307 1151q0 -7 -1 -9
390
- q-106 -189 -316 -567t-315 -566l-49 -89q-10 -16 -28 -16q-12 0 -134 70q-16 10 -16 28q0 12 44 87q-143 65 -263.5 173t-208.5 245q-20 31 -20 69t20 69q153 235 380 371t496 136q89 0 180 -17l54 97q10 16 28 16q5 0 18 -6t31 -15.5t33 -18.5t31.5 -18.5t19.5 -11.5
391
- q16 -10 16 -27zM1344 704q0 -139 -79 -253.5t-209 -164.5l280 502q8 -45 8 -84zM1792 576q0 -35 -20 -69q-39 -64 -109 -145q-150 -172 -347.5 -267t-419.5 -95l74 132q212 18 392.5 137t301.5 307q-115 179 -282 294l63 112q95 -64 182.5 -153t144.5 -184q20 -34 20 -69z
392
- " />
393
- <glyph glyph-name="warning_sign" unicode="&#xf071;" horiz-adv-x="1792"
394
- d="M1024 161v190q0 14 -9.5 23.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -23.5v-190q0 -14 9.5 -23.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 23.5zM1022 535l18 459q0 12 -10 19q-13 11 -24 11h-220q-11 0 -24 -11q-10 -7 -10 -21l17 -457q0 -10 10 -16.5t24 -6.5h185
395
- q14 0 23.5 6.5t10.5 16.5zM1008 1469l768 -1408q35 -63 -2 -126q-17 -29 -46.5 -46t-63.5 -17h-1536q-34 0 -63.5 17t-46.5 46q-37 63 -2 126l768 1408q17 31 47 49t65 18t65 -18t47 -49z" />
396
- <glyph glyph-name="plane" unicode="&#xf072;" horiz-adv-x="1408"
397
- d="M1376 1376q44 -52 12 -148t-108 -172l-161 -161l160 -696q5 -19 -12 -33l-128 -96q-7 -6 -19 -6q-4 0 -7 1q-15 3 -21 16l-279 508l-259 -259l53 -194q5 -17 -8 -31l-96 -96q-9 -9 -23 -9h-2q-15 2 -24 13l-189 252l-252 189q-11 7 -13 23q-1 13 9 25l96 97q9 9 23 9
398
- q6 0 8 -1l194 -53l259 259l-508 279q-14 8 -17 24q-2 16 9 27l128 128q14 13 30 8l665 -159l160 160q76 76 172 108t148 -12z" />
399
- <glyph glyph-name="calendar" unicode="&#xf073;" horiz-adv-x="1664"
400
- d="M128 -128h288v288h-288v-288zM480 -128h320v288h-320v-288zM128 224h288v320h-288v-320zM480 224h320v320h-320v-320zM128 608h288v288h-288v-288zM864 -128h320v288h-320v-288zM480 608h320v288h-320v-288zM1248 -128h288v288h-288v-288zM864 224h320v320h-320v-320z
401
- M512 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1248 224h288v320h-288v-320zM864 608h320v288h-320v-288zM1248 608h288v288h-288v-288zM1280 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64
402
- q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47
403
- h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
404
- <glyph glyph-name="random" unicode="&#xf074;" horiz-adv-x="1792"
405
- d="M666 1055q-60 -92 -137 -273q-22 45 -37 72.5t-40.5 63.5t-51 56.5t-63 35t-81.5 14.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q250 0 410 -225zM1792 256q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192q-32 0 -85 -0.5t-81 -1t-73 1
406
- t-71 5t-64 10.5t-63 18.5t-58 28.5t-59 40t-55 53.5t-56 69.5q59 93 136 273q22 -45 37 -72.5t40.5 -63.5t51 -56.5t63 -35t81.5 -14.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1792 1152q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5
407
- v192h-256q-48 0 -87 -15t-69 -45t-51 -61.5t-45 -77.5q-32 -62 -78 -171q-29 -66 -49.5 -111t-54 -105t-64 -100t-74 -83t-90 -68.5t-106.5 -42t-128 -16.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q48 0 87 15t69 45t51 61.5t45 77.5q32 62 78 171q29 66 49.5 111
408
- t54 105t64 100t74 83t90 68.5t106.5 42t128 16.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
409
- <glyph glyph-name="comment" unicode="&#xf075;" horiz-adv-x="1792"
410
- d="M1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22q-17 -2 -30.5 9t-17.5 29v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281
411
- q0 130 71 248.5t191 204.5t286 136.5t348 50.5q244 0 450 -85.5t326 -233t120 -321.5z" />
412
- <glyph glyph-name="magnet" unicode="&#xf076;"
413
- d="M1536 704v-128q0 -201 -98.5 -362t-274 -251.5t-395.5 -90.5t-395.5 90.5t-274 251.5t-98.5 362v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-128q0 -52 23.5 -90t53.5 -57t71 -30t64 -13t44 -2t44 2t64 13t71 30t53.5 57t23.5 90v128q0 26 19 45t45 19h384
414
- q26 0 45 -19t19 -45zM512 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45zM1536 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45z" />
415
- <glyph glyph-name="chevron_up" unicode="&#xf077;" horiz-adv-x="1792"
416
- d="M1683 205l-166 -165q-19 -19 -45 -19t-45 19l-531 531l-531 -531q-19 -19 -45 -19t-45 19l-166 165q-19 19 -19 45.5t19 45.5l742 741q19 19 45 19t45 -19l742 -741q19 -19 19 -45.5t-19 -45.5z" />
417
- <glyph glyph-name="chevron_down" unicode="&#xf078;" horiz-adv-x="1792"
418
- d="M1683 728l-742 -741q-19 -19 -45 -19t-45 19l-742 741q-19 19 -19 45.5t19 45.5l166 165q19 19 45 19t45 -19l531 -531l531 531q19 19 45 19t45 -19l166 -165q19 -19 19 -45.5t-19 -45.5z" />
419
- <glyph glyph-name="retweet" unicode="&#xf079;" horiz-adv-x="1920"
420
- d="M1280 32q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-8 0 -13.5 2t-9 7t-5.5 8t-3 11.5t-1 11.5v13v11v160v416h-192q-26 0 -45 19t-19 45q0 24 15 41l320 384q19 22 49 22t49 -22l320 -384q15 -17 15 -41q0 -26 -19 -45t-45 -19h-192v-384h576q16 0 25 -11l160 -192q7 -10 7 -21
421
- zM1920 448q0 -24 -15 -41l-320 -384q-20 -23 -49 -23t-49 23l-320 384q-15 17 -15 41q0 26 19 45t45 19h192v384h-576q-16 0 -25 12l-160 192q-7 9 -7 20q0 13 9.5 22.5t22.5 9.5h960q8 0 13.5 -2t9 -7t5.5 -8t3 -11.5t1 -11.5v-13v-11v-160v-416h192q26 0 45 -19t19 -45z
422
- " />
423
- <glyph glyph-name="shopping_cart" unicode="&#xf07a;" horiz-adv-x="1664"
424
- d="M640 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1536 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1664 1088v-512q0 -24 -16.5 -42.5t-40.5 -21.5l-1044 -122q13 -60 13 -70q0 -16 -24 -64h920q26 0 45 -19t19 -45
425
- t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 11 8 31.5t16 36t21.5 40t15.5 29.5l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t19.5 -15.5t13 -24.5t8 -26t5.5 -29.5t4.5 -26h1201q26 0 45 -19t19 -45z" />
426
- <glyph glyph-name="folder_close" unicode="&#xf07b;" horiz-adv-x="1664"
427
- d="M1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
428
- <glyph glyph-name="folder_open" unicode="&#xf07c;" horiz-adv-x="1920"
429
- d="M1879 584q0 -31 -31 -66l-336 -396q-43 -51 -120.5 -86.5t-143.5 -35.5h-1088q-34 0 -60.5 13t-26.5 43q0 31 31 66l336 396q43 51 120.5 86.5t143.5 35.5h1088q34 0 60.5 -13t26.5 -43zM1536 928v-160h-832q-94 0 -197 -47.5t-164 -119.5l-337 -396l-5 -6q0 4 -0.5 12.5
430
- t-0.5 12.5v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158z" />
431
- <glyph glyph-name="resize_vertical" unicode="&#xf07d;" horiz-adv-x="768"
432
- d="M704 1216q0 -26 -19 -45t-45 -19h-128v-1024h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v1024h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45z" />
433
- <glyph glyph-name="resize_horizontal" unicode="&#xf07e;" horiz-adv-x="1792"
434
- d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-1024v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h1024v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
435
- <glyph glyph-name="bar_chart" unicode="&#xf080;" horiz-adv-x="2048"
436
- d="M640 640v-512h-256v512h256zM1024 1152v-1024h-256v1024h256zM2048 0v-128h-2048v1536h128v-1408h1920zM1408 896v-768h-256v768h256zM1792 1280v-1152h-256v1152h256z" />
437
- <glyph glyph-name="twitter_sign" unicode="&#xf081;"
438
- d="M1280 926q-56 -25 -121 -34q68 40 93 117q-65 -38 -134 -51q-61 66 -153 66q-87 0 -148.5 -61.5t-61.5 -148.5q0 -29 5 -48q-129 7 -242 65t-192 155q-29 -50 -29 -106q0 -114 91 -175q-47 1 -100 26v-2q0 -75 50 -133.5t123 -72.5q-29 -8 -51 -8q-13 0 -39 4
439
- q21 -63 74.5 -104t121.5 -42q-116 -90 -261 -90q-26 0 -50 3q148 -94 322 -94q112 0 210 35.5t168 95t120.5 137t75 162t24.5 168.5q0 18 -1 27q63 45 105 109zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5
440
- t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
441
- <glyph glyph-name="facebook_sign" unicode="&#xf082;"
442
- d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-188v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-532q-119 0 -203.5 84.5t-84.5 203.5v960
443
- q0 119 84.5 203.5t203.5 84.5h960z" />
444
- <glyph glyph-name="camera_retro" unicode="&#xf083;" horiz-adv-x="1792"
445
- d="M928 704q0 14 -9 23t-23 9q-66 0 -113 -47t-47 -113q0 -14 9 -23t23 -9t23 9t9 23q0 40 28 68t68 28q14 0 23 9t9 23zM1152 574q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM128 0h1536v128h-1536v-128zM1280 574q0 159 -112.5 271.5
446
- t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM256 1216h384v128h-384v-128zM128 1024h1536v118v138h-828l-64 -128h-644v-128zM1792 1280v-1280q0 -53 -37.5 -90.5t-90.5 -37.5h-1536q-53 0 -90.5 37.5t-37.5 90.5v1280
447
- q0 53 37.5 90.5t90.5 37.5h1536q53 0 90.5 -37.5t37.5 -90.5z" />
448
- <glyph glyph-name="key" unicode="&#xf084;" horiz-adv-x="1792"
449
- d="M832 1024q0 80 -56 136t-136 56t-136 -56t-56 -136q0 -42 19 -83q-41 19 -83 19q-80 0 -136 -56t-56 -136t56 -136t136 -56t136 56t56 136q0 42 -19 83q41 -19 83 -19q80 0 136 56t56 136zM1683 320q0 -17 -49 -66t-66 -49q-9 0 -28.5 16t-36.5 33t-38.5 40t-24.5 26
450
- l-96 -96l220 -220q28 -28 28 -68q0 -42 -39 -81t-81 -39q-40 0 -68 28l-671 671q-176 -131 -365 -131q-163 0 -265.5 102.5t-102.5 265.5q0 160 95 313t248 248t313 95q163 0 265.5 -102.5t102.5 -265.5q0 -189 -131 -365l355 -355l96 96q-3 3 -26 24.5t-40 38.5t-33 36.5
451
- t-16 28.5q0 17 49 66t66 49q13 0 23 -10q6 -6 46 -44.5t82 -79.5t86.5 -86t73 -78t28.5 -41z" />
452
- <glyph glyph-name="cogs" unicode="&#xf085;" horiz-adv-x="1920"
453
- d="M896 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1664 128q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1152q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5
454
- t90.5 37.5t37.5 90.5zM1280 731v-185q0 -10 -7 -19.5t-16 -10.5l-155 -24q-11 -35 -32 -76q34 -48 90 -115q7 -11 7 -20q0 -12 -7 -19q-23 -30 -82.5 -89.5t-78.5 -59.5q-11 0 -21 7l-115 90q-37 -19 -77 -31q-11 -108 -23 -155q-7 -24 -30 -24h-186q-11 0 -20 7.5t-10 17.5
455
- l-23 153q-34 10 -75 31l-118 -89q-7 -7 -20 -7q-11 0 -21 8q-144 133 -144 160q0 9 7 19q10 14 41 53t47 61q-23 44 -35 82l-152 24q-10 1 -17 9.5t-7 19.5v185q0 10 7 19.5t16 10.5l155 24q11 35 32 76q-34 48 -90 115q-7 11 -7 20q0 12 7 20q22 30 82 89t79 59q11 0 21 -7
456
- l115 -90q34 18 77 32q11 108 23 154q7 24 30 24h186q11 0 20 -7.5t10 -17.5l23 -153q34 -10 75 -31l118 89q8 7 20 7q11 0 21 -8q144 -133 144 -160q0 -8 -7 -19q-12 -16 -42 -54t-45 -60q23 -48 34 -82l152 -23q10 -2 17 -10.5t7 -19.5zM1920 198v-140q0 -16 -149 -31
457
- q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20
458
- t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31zM1920 1222v-140q0 -16 -149 -31q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68
459
- q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70
460
- q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31z" />
461
- <glyph glyph-name="comments" unicode="&#xf086;" horiz-adv-x="1792"
462
- d="M1408 768q0 -139 -94 -257t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224
463
- q0 139 94 257t256.5 186.5t353.5 68.5t353.5 -68.5t256.5 -186.5t94 -257zM1792 512q0 -120 -71 -224.5t-195 -176.5q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7
464
- q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230z" />
465
- <glyph glyph-name="thumbs_up_alt" unicode="&#xf087;"
466
- d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 768q0 51 -39 89.5t-89 38.5h-352q0 58 48 159.5t48 160.5q0 98 -32 145t-128 47q-26 -26 -38 -85t-30.5 -125.5t-59.5 -109.5q-22 -23 -77 -91q-4 -5 -23 -30t-31.5 -41t-34.5 -42.5
467
- t-40 -44t-38.5 -35.5t-40 -27t-35.5 -9h-32v-640h32q13 0 31.5 -3t33 -6.5t38 -11t35 -11.5t35.5 -12.5t29 -10.5q211 -73 342 -73h121q192 0 192 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5q32 1 53.5 47t21.5 81zM1536 769
468
- q0 -89 -49 -163q9 -33 9 -69q0 -77 -38 -144q3 -21 3 -43q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5h-36h-93q-96 0 -189.5 22.5t-216.5 65.5q-116 40 -138 40h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h274q36 24 137 155q58 75 107 128
469
- q24 25 35.5 85.5t30.5 126.5t62 108q39 37 90 37q84 0 151 -32.5t102 -101.5t35 -186q0 -93 -48 -192h176q104 0 180 -76t76 -179z" />
470
- <glyph glyph-name="thumbs_down_alt" unicode="&#xf088;"
471
- d="M256 1088q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 512q0 35 -21.5 81t-53.5 47q15 17 25 47.5t10 55.5q0 69 -53 119q18 31 18 69q0 37 -17.5 73.5t-47.5 52.5q5 30 5 56q0 85 -49 126t-136 41h-128q-131 0 -342 -73q-5 -2 -29 -10.5
472
- t-35.5 -12.5t-35 -11.5t-38 -11t-33 -6.5t-31.5 -3h-32v-640h32q16 0 35.5 -9t40 -27t38.5 -35.5t40 -44t34.5 -42.5t31.5 -41t23 -30q55 -68 77 -91q41 -43 59.5 -109.5t30.5 -125.5t38 -85q96 0 128 47t32 145q0 59 -48 160.5t-48 159.5h352q50 0 89 38.5t39 89.5z
473
- M1536 511q0 -103 -76 -179t-180 -76h-176q48 -99 48 -192q0 -118 -35 -186q-35 -69 -102 -101.5t-151 -32.5q-51 0 -90 37q-34 33 -54 82t-25.5 90.5t-17.5 84.5t-31 64q-48 50 -107 127q-101 131 -137 155h-274q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5
474
- h288q22 0 138 40q128 44 223 66t200 22h112q140 0 226.5 -79t85.5 -216v-5q60 -77 60 -178q0 -22 -3 -43q38 -67 38 -144q0 -36 -9 -69q49 -73 49 -163z" />
475
- <glyph glyph-name="star_half" unicode="&#xf089;" horiz-adv-x="896"
476
- d="M832 1504v-1339l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41z" />
477
- <glyph glyph-name="heart_empty" unicode="&#xf08a;" horiz-adv-x="1792"
478
- d="M1664 940q0 81 -21.5 143t-55 98.5t-81.5 59.5t-94 31t-98 8t-112 -25.5t-110.5 -64t-86.5 -72t-60 -61.5q-18 -22 -49 -22t-49 22q-24 28 -60 61.5t-86.5 72t-110.5 64t-112 25.5t-98 -8t-94 -31t-81.5 -59.5t-55 -98.5t-21.5 -143q0 -168 187 -355l581 -560l580 559
479
- q188 188 188 356zM1792 940q0 -221 -229 -450l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5
480
- q224 0 351 -124t127 -344z" />
481
- <glyph glyph-name="signout" unicode="&#xf08b;" horiz-adv-x="1664"
482
- d="M640 96q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h320q13 0 22.5 -9.5t9.5 -22.5q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-66 0 -113 -47t-47 -113v-704
483
- q0 -66 47 -113t113 -47h288h11h13t11.5 -1t11.5 -3t8 -5.5t7 -9t2 -13.5zM1568 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45z" />
484
- <glyph glyph-name="linkedin_sign" unicode="&#xf08c;"
485
- d="M237 122h231v694h-231v-694zM483 1030q-1 52 -36 86t-93 34t-94.5 -34t-36.5 -86q0 -51 35.5 -85.5t92.5 -34.5h1q59 0 95 34.5t36 85.5zM1068 122h231v398q0 154 -73 233t-193 79q-136 0 -209 -117h2v101h-231q3 -66 0 -694h231v388q0 38 7 56q15 35 45 59.5t74 24.5
486
- q116 0 116 -157v-371zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
487
- <glyph glyph-name="pushpin" unicode="&#xf08d;" horiz-adv-x="1152"
488
- d="M480 672v448q0 14 -9 23t-23 9t-23 -9t-9 -23v-448q0 -14 9 -23t23 -9t23 9t9 23zM1152 320q0 -26 -19 -45t-45 -19h-429l-51 -483q-2 -12 -10.5 -20.5t-20.5 -8.5h-1q-27 0 -32 27l-76 485h-404q-26 0 -45 19t-19 45q0 123 78.5 221.5t177.5 98.5v512q-52 0 -90 38
489
- t-38 90t38 90t90 38h640q52 0 90 -38t38 -90t-38 -90t-90 -38v-512q99 0 177.5 -98.5t78.5 -221.5z" />
490
- <glyph glyph-name="external_link" unicode="&#xf08e;" horiz-adv-x="1792"
491
- d="M1408 608v-320q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v320
492
- q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1792 1472v-512q0 -26 -19 -45t-45 -19t-45 19l-176 176l-652 -652q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l652 652l-176 176q-19 19 -19 45t19 45t45 19h512q26 0 45 -19t19 -45z" />
493
- <glyph glyph-name="signin" unicode="&#xf090;"
494
- d="M1184 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45zM1536 992v-704q0 -119 -84.5 -203.5t-203.5 -84.5h-320q-13 0 -22.5 9.5t-9.5 22.5
495
- q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q66 0 113 47t47 113v704q0 66 -47 113t-113 47h-288h-11h-13t-11.5 1t-11.5 3t-8 5.5t-7 9t-2 13.5q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q119 0 203.5 -84.5t84.5 -203.5z" />
496
- <glyph glyph-name="trophy" unicode="&#xf091;" horiz-adv-x="1664"
497
- d="M458 653q-74 162 -74 371h-256v-96q0 -78 94.5 -162t235.5 -113zM1536 928v96h-256q0 -209 -74 -371q141 29 235.5 113t94.5 162zM1664 1056v-128q0 -71 -41.5 -143t-112 -130t-173 -97.5t-215.5 -44.5q-42 -54 -95 -95q-38 -34 -52.5 -72.5t-14.5 -89.5q0 -54 30.5 -91
498
- t97.5 -37q75 0 133.5 -45.5t58.5 -114.5v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 69 58.5 114.5t133.5 45.5q67 0 97.5 37t30.5 91q0 51 -14.5 89.5t-52.5 72.5q-53 41 -95 95q-113 5 -215.5 44.5t-173 97.5t-112 130t-41.5 143v128q0 40 28 68t68 28h288v96
499
- q0 66 47 113t113 47h576q66 0 113 -47t47 -113v-96h288q40 0 68 -28t28 -68z" />
500
- <glyph glyph-name="github_sign" unicode="&#xf092;"
501
- d="M519 336q4 6 -3 13q-9 7 -14 2q-4 -6 3 -13q9 -7 14 -2zM491 377q-5 7 -12 4q-6 -4 0 -12q7 -8 12 -5q6 4 0 13zM450 417q2 4 -5 8q-7 2 -8 -2q-3 -5 4 -8q8 -2 9 2zM471 394q2 1 1.5 4.5t-3.5 5.5q-6 7 -10 3t1 -11q6 -6 11 -2zM557 319q2 7 -9 11q-9 3 -13 -4
502
- q-2 -7 9 -11q9 -3 13 4zM599 316q0 8 -12 8q-10 0 -10 -8t11 -8t11 8zM638 323q-2 7 -13 5t-9 -9q2 -8 12 -6t10 10zM1280 640q0 212 -150 362t-362 150t-362 -150t-150 -362q0 -167 98 -300.5t252 -185.5q18 -3 26.5 5t8.5 20q0 52 -1 95q-6 -1 -15.5 -2.5t-35.5 -2t-48 4
503
- t-43.5 20t-29.5 41.5q-23 59 -57 74q-2 1 -4.5 3.5l-8 8t-7 9.5t4 7.5t19.5 3.5q6 0 15 -2t30 -15.5t33 -35.5q16 -28 37.5 -42t43.5 -14t38 3.5t30 9.5q7 47 33 69q-49 6 -86 18.5t-73 39t-55.5 76t-19.5 119.5q0 79 53 137q-24 62 5 136q19 6 54.5 -7.5t60.5 -29.5l26 -16
504
- q58 17 128 17t128 -17q11 7 28.5 18t55.5 26t57 9q29 -74 5 -136q53 -58 53 -137q0 -57 -14 -100.5t-35.5 -70t-53.5 -44.5t-62.5 -26t-68.5 -12q35 -31 35 -95q0 -40 -0.5 -89t-0.5 -51q0 -12 8.5 -20t26.5 -5q154 52 252 185.5t98 300.5zM1536 1120v-960
505
- q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
506
- <glyph glyph-name="upload_alt" unicode="&#xf093;" horiz-adv-x="1664"
507
- d="M1280 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 288v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h427q21 -56 70.5 -92
508
- t110.5 -36h256q61 0 110.5 36t70.5 92h427q40 0 68 -28t28 -68zM1339 936q-17 -40 -59 -40h-256v-448q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v448h-256q-42 0 -59 40q-17 39 14 69l448 448q18 19 45 19t45 -19l448 -448q31 -30 14 -69z" />
509
- <glyph glyph-name="lemon" unicode="&#xf094;"
510
- d="M1407 710q0 44 -7 113.5t-18 96.5q-12 30 -17 44t-9 36.5t-4 48.5q0 23 5 68.5t5 67.5q0 37 -10 55q-4 1 -13 1q-19 0 -58 -4.5t-59 -4.5q-60 0 -176 24t-175 24q-43 0 -94.5 -11.5t-85 -23.5t-89.5 -34q-137 -54 -202 -103q-96 -73 -159.5 -189.5t-88 -236t-24.5 -248.5
511
- q0 -40 12.5 -120t12.5 -121q0 -23 -11 -66.5t-11 -65.5t12 -36.5t34 -14.5q24 0 72.5 11t73.5 11q57 0 169.5 -15.5t169.5 -15.5q181 0 284 36q129 45 235.5 152.5t166 245.5t59.5 275zM1535 712q0 -165 -70 -327.5t-196 -288t-281 -180.5q-124 -44 -326 -44
512
- q-57 0 -170 14.5t-169 14.5q-24 0 -72.5 -14.5t-73.5 -14.5q-73 0 -123.5 55.5t-50.5 128.5q0 24 11 68t11 67q0 40 -12.5 120.5t-12.5 121.5q0 111 18 217.5t54.5 209.5t100.5 194t150 156q78 59 232 120q194 78 316 78q60 0 175.5 -24t173.5 -24q19 0 57 5t58 5
513
- q81 0 118 -50.5t37 -134.5q0 -23 -5 -68t-5 -68q0 -13 2 -25t3.5 -16.5t7.5 -20.5t8 -20q16 -40 25 -118.5t9 -136.5z" />
514
- <glyph glyph-name="phone" unicode="&#xf095;" horiz-adv-x="1408"
515
- d="M1408 296q0 -27 -10 -70.5t-21 -68.5q-21 -50 -122 -106q-94 -51 -186 -51q-27 0 -53 3.5t-57.5 12.5t-47 14.5t-55.5 20.5t-49 18q-98 35 -175 83q-127 79 -264 216t-216 264q-48 77 -83 175q-3 9 -18 49t-20.5 55.5t-14.5 47t-12.5 57.5t-3.5 53q0 92 51 186
516
- q56 101 106 122q25 11 68.5 21t70.5 10q14 0 21 -3q18 -6 53 -76q11 -19 30 -54t35 -63.5t31 -53.5q3 -4 17.5 -25t21.5 -35.5t7 -28.5q0 -20 -28.5 -50t-62 -55t-62 -53t-28.5 -46q0 -9 5 -22.5t8.5 -20.5t14 -24t11.5 -19q76 -137 174 -235t235 -174q2 -1 19 -11.5t24 -14
517
- t20.5 -8.5t22.5 -5q18 0 46 28.5t53 62t55 62t50 28.5q14 0 28.5 -7t35.5 -21.5t25 -17.5q25 -15 53.5 -31t63.5 -35t54 -30q70 -35 76 -53q3 -7 3 -21z" />
518
- <glyph glyph-name="check_empty" unicode="&#xf096;" horiz-adv-x="1408"
519
- d="M1120 1280h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v832q0 66 -47 113t-113 47zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832
520
- q119 0 203.5 -84.5t84.5 -203.5z" />
521
- <glyph glyph-name="bookmark_empty" unicode="&#xf097;" horiz-adv-x="1280"
522
- d="M1152 1280h-1024v-1242l423 406l89 85l89 -85l423 -406v1242zM1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289
523
- q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
524
- <glyph glyph-name="phone_sign" unicode="&#xf098;"
525
- d="M1280 343q0 11 -2 16t-18 16.5t-40.5 25t-47.5 26.5t-45.5 25t-28.5 15q-5 3 -19 13t-25 15t-21 5q-15 0 -36.5 -20.5t-39.5 -45t-38.5 -45t-33.5 -20.5q-7 0 -16.5 3.5t-15.5 6.5t-17 9.5t-14 8.5q-99 55 -170 126.5t-127 170.5q-2 3 -8.5 14t-9.5 17t-6.5 15.5
526
- t-3.5 16.5q0 13 20.5 33.5t45 38.5t45 39.5t20.5 36.5q0 10 -5 21t-15 25t-13 19q-3 6 -15 28.5t-25 45.5t-26.5 47.5t-25 40.5t-16.5 18t-16 2q-48 0 -101 -22q-46 -21 -80 -94.5t-34 -130.5q0 -16 2.5 -34t5 -30.5t9 -33t10 -29.5t12.5 -33t11 -30q60 -164 216.5 -320.5
527
- t320.5 -216.5q6 -2 30 -11t33 -12.5t29.5 -10t33 -9t30.5 -5t34 -2.5q57 0 130.5 34t94.5 80q22 53 22 101zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z
528
- " />
529
- <glyph glyph-name="twitter" unicode="&#xf099;" horiz-adv-x="1664"
530
- d="M1620 1128q-67 -98 -162 -167q1 -14 1 -42q0 -130 -38 -259.5t-115.5 -248.5t-184.5 -210.5t-258 -146t-323 -54.5q-271 0 -496 145q35 -4 78 -4q225 0 401 138q-105 2 -188 64.5t-114 159.5q33 -5 61 -5q43 0 85 11q-112 23 -185.5 111.5t-73.5 205.5v4q68 -38 146 -41
531
- q-66 44 -105 115t-39 154q0 88 44 163q121 -149 294.5 -238.5t371.5 -99.5q-8 38 -8 74q0 134 94.5 228.5t228.5 94.5q140 0 236 -102q109 21 205 78q-37 -115 -142 -178q93 10 186 50z" />
532
- <glyph glyph-name="facebook" unicode="&#xf09a;" horiz-adv-x="1024"
533
- d="M959 1524v-264h-157q-86 0 -116 -36t-30 -108v-189h293l-39 -296h-254v-759h-306v759h-255v296h255v218q0 186 104 288.5t277 102.5q147 0 228 -12z" />
534
- <glyph glyph-name="github" unicode="&#xf09b;"
535
- d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5q0 -251 -146.5 -451.5t-378.5 -277.5q-27 -5 -40 7t-13 30q0 3 0.5 76.5t0.5 134.5q0 97 -52 142q57 6 102.5 18t94 39t81 66.5t53 105t20.5 150.5q0 119 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24
536
- q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-85 13.5q-45 -113 -8 -204q-79 -87 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-39 -36 -49 -103q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5
537
- t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -88.5t0.5 -54.5q0 -18 -13 -30t-40 -7q-232 77 -378.5 277.5t-146.5 451.5q0 209 103 385.5t279.5 279.5t385.5 103zM291 305q3 7 -7 12
538
- q-10 3 -13 -2q-3 -7 7 -12q9 -6 13 2zM322 271q7 5 -2 16q-10 9 -16 3q-7 -5 2 -16q10 -10 16 -3zM352 226q9 7 0 19q-8 13 -17 6q-9 -5 0 -18t17 -7zM394 184q8 8 -4 19q-12 12 -20 3q-9 -8 4 -19q12 -12 20 -3zM451 159q3 11 -13 16q-15 4 -19 -7t13 -15q15 -6 19 6z
539
- M514 154q0 13 -17 11q-16 0 -16 -11q0 -13 17 -11q16 0 16 11zM572 164q-2 11 -18 9q-16 -3 -14 -15t18 -8t14 14z" />
540
- <glyph glyph-name="unlock" unicode="&#xf09c;" horiz-adv-x="1664"
541
- d="M1664 960v-256q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-192h96q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h672v192q0 185 131.5 316.5t316.5 131.5
542
- t316.5 -131.5t131.5 -316.5z" />
543
- <glyph glyph-name="credit_card" unicode="&#xf09d;" horiz-adv-x="1920"
544
- d="M1760 1408q66 0 113 -47t47 -113v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600zM160 1280q-13 0 -22.5 -9.5t-9.5 -22.5v-224h1664v224q0 13 -9.5 22.5t-22.5 9.5h-1600zM1760 0q13 0 22.5 9.5t9.5 22.5v608h-1664v-608
545
- q0 -13 9.5 -22.5t22.5 -9.5h1600zM256 128v128h256v-128h-256zM640 128v128h384v-128h-384z" />
546
- <glyph glyph-name="rss" unicode="&#xf09e;" horiz-adv-x="1408"
547
- d="M384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 69q2 -28 -17 -48q-18 -21 -47 -21h-135q-25 0 -43 16.5t-20 41.5q-22 229 -184.5 391.5t-391.5 184.5q-25 2 -41.5 20t-16.5 43v135q0 29 21 47q17 17 43 17h5q160 -13 306 -80.5
548
- t259 -181.5q114 -113 181.5 -259t80.5 -306zM1408 67q2 -27 -18 -47q-18 -20 -46 -20h-143q-26 0 -44.5 17.5t-19.5 42.5q-12 215 -101 408.5t-231.5 336t-336 231.5t-408.5 102q-25 1 -42.5 19.5t-17.5 43.5v143q0 28 20 46q18 18 44 18h3q262 -13 501.5 -120t425.5 -294
549
- q187 -186 294 -425.5t120 -501.5z" />
550
- <glyph glyph-name="hdd" unicode="&#xf0a0;"
551
- d="M1040 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1296 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1408 160v320q0 13 -9.5 22.5t-22.5 9.5
552
- h-1216q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h1216q13 0 22.5 9.5t9.5 22.5zM178 640h1180l-157 482q-4 13 -16 21.5t-26 8.5h-782q-14 0 -26 -8.5t-16 -21.5zM1536 480v-320q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v320q0 25 16 75
553
- l197 606q17 53 63 86t101 33h782q55 0 101 -33t63 -86l197 -606q16 -50 16 -75z" />
554
- <glyph glyph-name="bullhorn" unicode="&#xf0a1;" horiz-adv-x="1792"
555
- d="M1664 896q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5v-384q0 -52 -38 -90t-90 -38q-417 347 -812 380q-58 -19 -91 -66t-31 -100.5t40 -92.5q-20 -33 -23 -65.5t6 -58t33.5 -55t48 -50t61.5 -50.5q-29 -58 -111.5 -83t-168.5 -11.5t-132 55.5q-7 23 -29.5 87.5
556
- t-32 94.5t-23 89t-15 101t3.5 98.5t22 110.5h-122q-66 0 -113 47t-47 113v192q0 66 47 113t113 47h480q435 0 896 384q52 0 90 -38t38 -90v-384zM1536 292v954q-394 -302 -768 -343v-270q377 -42 768 -341z" />
557
- <glyph glyph-name="bell" unicode="&#xf0a2;" horiz-adv-x="1792"
558
- d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM246 128h1300q-266 300 -266 832q0 51 -24 105t-69 103t-121.5 80.5t-169.5 31.5t-169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -532 -266 -832z
559
- M1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5
560
- t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" />
561
- <glyph glyph-name="certificate" unicode="&#xf0a3;"
562
- d="M1376 640l138 -135q30 -28 20 -70q-12 -41 -52 -51l-188 -48l53 -186q12 -41 -19 -70q-29 -31 -70 -19l-186 53l-48 -188q-10 -40 -51 -52q-12 -2 -19 -2q-31 0 -51 22l-135 138l-135 -138q-28 -30 -70 -20q-41 11 -51 52l-48 188l-186 -53q-41 -12 -70 19q-31 29 -19 70
563
- l53 186l-188 48q-40 10 -52 51q-10 42 20 70l138 135l-138 135q-30 28 -20 70q12 41 52 51l188 48l-53 186q-12 41 19 70q29 31 70 19l186 -53l48 188q10 41 51 51q41 12 70 -19l135 -139l135 139q29 30 70 19q41 -10 51 -51l48 -188l186 53q41 12 70 -19q31 -29 19 -70
564
- l-53 -186l188 -48q40 -10 52 -51q10 -42 -20 -70z" />
565
- <glyph glyph-name="hand_right" unicode="&#xf0a4;" horiz-adv-x="1792"
566
- d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 768q0 51 -39 89.5t-89 38.5h-576q0 20 15 48.5t33 55t33 68t15 84.5q0 67 -44.5 97.5t-115.5 30.5q-24 0 -90 -139q-24 -44 -37 -65q-40 -64 -112 -145q-71 -81 -101 -106
567
- q-69 -57 -140 -57h-32v-640h32q72 0 167 -32t193.5 -64t179.5 -32q189 0 189 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5h331q52 0 90 38t38 90zM1792 769q0 -105 -75.5 -181t-180.5 -76h-169q-4 -62 -37 -119q3 -21 3 -43
568
- q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5q-133 0 -322 69q-164 59 -223 59h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h288q10 0 21.5 4.5t23.5 14t22.5 18t24 22.5t20.5 21.5t19 21.5t14 17q65 74 100 129q13 21 33 62t37 72t40.5 63t55 49.5
569
- t69.5 17.5q125 0 206.5 -67t81.5 -189q0 -68 -22 -128h374q104 0 180 -76t76 -179z" />
570
- <glyph glyph-name="hand_left" unicode="&#xf0a5;" horiz-adv-x="1792"
571
- d="M1376 128h32v640h-32q-35 0 -67.5 12t-62.5 37t-50 46t-49 54q-8 9 -12 14q-72 81 -112 145q-14 22 -38 68q-1 3 -10.5 22.5t-18.5 36t-20 35.5t-21.5 30.5t-18.5 11.5q-71 0 -115.5 -30.5t-44.5 -97.5q0 -43 15 -84.5t33 -68t33 -55t15 -48.5h-576q-50 0 -89 -38.5
572
- t-39 -89.5q0 -52 38 -90t90 -38h331q-15 -17 -25 -47.5t-10 -55.5q0 -69 53 -119q-18 -32 -18 -69t17.5 -73.5t47.5 -52.5q-4 -24 -4 -56q0 -85 48.5 -126t135.5 -41q84 0 183 32t194 64t167 32zM1664 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45z
573
- M1792 768v-640q0 -53 -37.5 -90.5t-90.5 -37.5h-288q-59 0 -223 -59q-190 -69 -317 -69q-142 0 -230 77.5t-87 217.5l1 5q-61 76 -61 178q0 22 3 43q-33 57 -37 119h-169q-105 0 -180.5 76t-75.5 181q0 103 76 179t180 76h374q-22 60 -22 128q0 122 81.5 189t206.5 67
574
- q38 0 69.5 -17.5t55 -49.5t40.5 -63t37 -72t33 -62q35 -55 100 -129q2 -3 14 -17t19 -21.5t20.5 -21.5t24 -22.5t22.5 -18t23.5 -14t21.5 -4.5h288q53 0 90.5 -37.5t37.5 -90.5z" />
575
- <glyph glyph-name="hand_up" unicode="&#xf0a6;"
576
- d="M1280 -64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 700q0 189 -167 189q-26 0 -56 -5q-16 30 -52.5 47.5t-73.5 17.5t-69 -18q-50 53 -119 53q-25 0 -55.5 -10t-47.5 -25v331q0 52 -38 90t-90 38q-51 0 -89.5 -39t-38.5 -89v-576
577
- q-20 0 -48.5 15t-55 33t-68 33t-84.5 15q-67 0 -97.5 -44.5t-30.5 -115.5q0 -24 139 -90q44 -24 65 -37q64 -40 145 -112q81 -71 106 -101q57 -69 57 -140v-32h640v32q0 72 32 167t64 193.5t32 179.5zM1536 705q0 -133 -69 -322q-59 -164 -59 -223v-288q0 -53 -37.5 -90.5
578
- t-90.5 -37.5h-640q-53 0 -90.5 37.5t-37.5 90.5v288q0 10 -4.5 21.5t-14 23.5t-18 22.5t-22.5 24t-21.5 20.5t-21.5 19t-17 14q-74 65 -129 100q-21 13 -62 33t-72 37t-63 40.5t-49.5 55t-17.5 69.5q0 125 67 206.5t189 81.5q68 0 128 -22v374q0 104 76 180t179 76
579
- q105 0 181 -75.5t76 -180.5v-169q62 -4 119 -37q21 3 43 3q101 0 178 -60q139 1 219.5 -85t80.5 -227z" />
580
- <glyph glyph-name="hand_down" unicode="&#xf0a7;"
581
- d="M1408 576q0 84 -32 183t-64 194t-32 167v32h-640v-32q0 -35 -12 -67.5t-37 -62.5t-46 -50t-54 -49q-9 -8 -14 -12q-81 -72 -145 -112q-22 -14 -68 -38q-3 -1 -22.5 -10.5t-36 -18.5t-35.5 -20t-30.5 -21.5t-11.5 -18.5q0 -71 30.5 -115.5t97.5 -44.5q43 0 84.5 15t68 33
582
- t55 33t48.5 15v-576q0 -50 38.5 -89t89.5 -39q52 0 90 38t38 90v331q46 -35 103 -35q69 0 119 53q32 -18 69 -18t73.5 17.5t52.5 47.5q24 -4 56 -4q85 0 126 48.5t41 135.5zM1280 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 580
583
- q0 -142 -77.5 -230t-217.5 -87l-5 1q-76 -61 -178 -61q-22 0 -43 3q-54 -30 -119 -37v-169q0 -105 -76 -180.5t-181 -75.5q-103 0 -179 76t-76 180v374q-54 -22 -128 -22q-121 0 -188.5 81.5t-67.5 206.5q0 38 17.5 69.5t49.5 55t63 40.5t72 37t62 33q55 35 129 100
584
- q3 2 17 14t21.5 19t21.5 20.5t22.5 24t18 22.5t14 23.5t4.5 21.5v288q0 53 37.5 90.5t90.5 37.5h640q53 0 90.5 -37.5t37.5 -90.5v-288q0 -59 59 -223q69 -190 69 -317z" />
585
- <glyph glyph-name="circle_arrow_left" unicode="&#xf0a8;"
586
- d="M1280 576v128q0 26 -19 45t-45 19h-502l189 189q19 19 19 45t-19 45l-91 91q-18 18 -45 18t-45 -18l-362 -362l-91 -91q-18 -18 -18 -45t18 -45l91 -91l362 -362q18 -18 45 -18t45 18l91 91q18 18 18 45t-18 45l-189 189h502q26 0 45 19t19 45zM1536 640
587
- q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
588
- <glyph glyph-name="circle_arrow_right" unicode="&#xf0a9;"
589
- d="M1285 640q0 27 -18 45l-91 91l-362 362q-18 18 -45 18t-45 -18l-91 -91q-18 -18 -18 -45t18 -45l189 -189h-502q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h502l-189 -189q-19 -19 -19 -45t19 -45l91 -91q18 -18 45 -18t45 18l362 362l91 91q18 18 18 45zM1536 640
590
- q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
591
- <glyph glyph-name="circle_arrow_up" unicode="&#xf0aa;"
592
- d="M1284 641q0 27 -18 45l-362 362l-91 91q-18 18 -45 18t-45 -18l-91 -91l-362 -362q-18 -18 -18 -45t18 -45l91 -91q18 -18 45 -18t45 18l189 189v-502q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v502l189 -189q19 -19 45 -19t45 19l91 91q18 18 18 45zM1536 640
593
- q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
594
- <glyph glyph-name="circle_arrow_down" unicode="&#xf0ab;"
595
- d="M1284 639q0 27 -18 45l-91 91q-18 18 -45 18t-45 -18l-189 -189v502q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-502l-189 189q-19 19 -45 19t-45 -19l-91 -91q-18 -18 -18 -45t18 -45l362 -362l91 -91q18 -18 45 -18t45 18l91 91l362 362q18 18 18 45zM1536 640
596
- q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
597
- <glyph glyph-name="globe" unicode="&#xf0ac;"
598
- d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1042 887q-2 -1 -9.5 -9.5t-13.5 -9.5q2 0 4.5 5t5 11t3.5 7q6 7 22 15q14 6 52 12q34 8 51 -11
599
- q-2 2 9.5 13t14.5 12q3 2 15 4.5t15 7.5l2 22q-12 -1 -17.5 7t-6.5 21q0 -2 -6 -8q0 7 -4.5 8t-11.5 -1t-9 -1q-10 3 -15 7.5t-8 16.5t-4 15q-2 5 -9.5 11t-9.5 10q-1 2 -2.5 5.5t-3 6.5t-4 5.5t-5.5 2.5t-7 -5t-7.5 -10t-4.5 -5q-3 2 -6 1.5t-4.5 -1t-4.5 -3t-5 -3.5
600
- q-3 -2 -8.5 -3t-8.5 -2q15 5 -1 11q-10 4 -16 3q9 4 7.5 12t-8.5 14h5q-1 4 -8.5 8.5t-17.5 8.5t-13 6q-8 5 -34 9.5t-33 0.5q-5 -6 -4.5 -10.5t4 -14t3.5 -12.5q1 -6 -5.5 -13t-6.5 -12q0 -7 14 -15.5t10 -21.5q-3 -8 -16 -16t-16 -12q-5 -8 -1.5 -18.5t10.5 -16.5
601
- q2 -2 1.5 -4t-3.5 -4.5t-5.5 -4t-6.5 -3.5l-3 -2q-11 -5 -20.5 6t-13.5 26q-7 25 -16 30q-23 8 -29 -1q-5 13 -41 26q-25 9 -58 4q6 1 0 15q-7 15 -19 12q3 6 4 17.5t1 13.5q3 13 12 23q1 1 7 8.5t9.5 13.5t0.5 6q35 -4 50 11q5 5 11.5 17t10.5 17q9 6 14 5.5t14.5 -5.5
602
- t14.5 -5q14 -1 15.5 11t-7.5 20q12 -1 3 17q-4 7 -8 9q-12 4 -27 -5q-8 -4 2 -8q-1 1 -9.5 -10.5t-16.5 -17.5t-16 5q-1 1 -5.5 13.5t-9.5 13.5q-8 0 -16 -15q3 8 -11 15t-24 8q19 12 -8 27q-7 4 -20.5 5t-19.5 -4q-5 -7 -5.5 -11.5t5 -8t10.5 -5.5t11.5 -4t8.5 -3
603
- q14 -10 8 -14q-2 -1 -8.5 -3.5t-11.5 -4.5t-6 -4q-3 -4 0 -14t-2 -14q-5 5 -9 17.5t-7 16.5q7 -9 -25 -6l-10 1q-4 0 -16 -2t-20.5 -1t-13.5 8q-4 8 0 20q1 4 4 2q-4 3 -11 9.5t-10 8.5q-46 -15 -94 -41q6 -1 12 1q5 2 13 6.5t10 5.5q34 14 42 7l5 5q14 -16 20 -25
604
- q-7 4 -30 1q-20 -6 -22 -12q7 -12 5 -18q-4 3 -11.5 10t-14.5 11t-15 5q-16 0 -22 -1q-146 -80 -235 -222q7 -7 12 -8q4 -1 5 -9t2.5 -11t11.5 3q9 -8 3 -19q1 1 44 -27q19 -17 21 -21q3 -11 -10 -18q-1 2 -9 9t-9 4q-3 -5 0.5 -18.5t10.5 -12.5q-7 0 -9.5 -16t-2.5 -35.5
605
- t-1 -23.5l2 -1q-3 -12 5.5 -34.5t21.5 -19.5q-13 -3 20 -43q6 -8 8 -9q3 -2 12 -7.5t15 -10t10 -10.5q4 -5 10 -22.5t14 -23.5q-2 -6 9.5 -20t10.5 -23q-1 0 -2.5 -1t-2.5 -1q3 -7 15.5 -14t15.5 -13q1 -3 2 -10t3 -11t8 -2q2 20 -24 62q-15 25 -17 29q-3 5 -5.5 15.5
606
- t-4.5 14.5q2 0 6 -1.5t8.5 -3.5t7.5 -4t2 -3q-3 -7 2 -17.5t12 -18.5t17 -19t12 -13q6 -6 14 -19.5t0 -13.5q9 0 20 -10.5t17 -19.5q5 -8 8 -26t5 -24q2 -7 8.5 -13.5t12.5 -9.5l16 -8t13 -7q5 -2 18.5 -10.5t21.5 -11.5q10 -4 16 -4t14.5 2.5t13.5 3.5q15 2 29 -15t21 -21
607
- q36 -19 55 -11q-2 -1 0.5 -7.5t8 -15.5t9 -14.5t5.5 -8.5q5 -6 18 -15t18 -15q6 4 7 9q-3 -8 7 -20t18 -10q14 3 14 32q-31 -15 -49 18q0 1 -2.5 5.5t-4 8.5t-2.5 8.5t0 7.5t5 3q9 0 10 3.5t-2 12.5t-4 13q-1 8 -11 20t-12 15q-5 -9 -16 -8t-16 9q0 -1 -1.5 -5.5t-1.5 -6.5
608
- q-13 0 -15 1q1 3 2.5 17.5t3.5 22.5q1 4 5.5 12t7.5 14.5t4 12.5t-4.5 9.5t-17.5 2.5q-19 -1 -26 -20q-1 -3 -3 -10.5t-5 -11.5t-9 -7q-7 -3 -24 -2t-24 5q-13 8 -22.5 29t-9.5 37q0 10 2.5 26.5t3 25t-5.5 24.5q3 2 9 9.5t10 10.5q2 1 4.5 1.5t4.5 0t4 1.5t3 6q-1 1 -4 3
609
- q-3 3 -4 3q7 -3 28.5 1.5t27.5 -1.5q15 -11 22 2q0 1 -2.5 9.5t-0.5 13.5q5 -27 29 -9q3 -3 15.5 -5t17.5 -5q3 -2 7 -5.5t5.5 -4.5t5 0.5t8.5 6.5q10 -14 12 -24q11 -40 19 -44q7 -3 11 -2t4.5 9.5t0 14t-1.5 12.5l-1 8v18l-1 8q-15 3 -18.5 12t1.5 18.5t15 18.5q1 1 8 3.5
610
- t15.5 6.5t12.5 8q21 19 15 35q7 0 11 9q-1 0 -5 3t-7.5 5t-4.5 2q9 5 2 16q5 3 7.5 11t7.5 10q9 -12 21 -2q8 8 1 16q5 7 20.5 10.5t18.5 9.5q7 -2 8 2t1 12t3 12q4 5 15 9t13 5l17 11q3 4 0 4q18 -2 31 11q10 11 -6 20q3 6 -3 9.5t-15 5.5q3 1 11.5 0.5t10.5 1.5
611
- q15 10 -7 16q-17 5 -43 -12zM879 10q206 36 351 189q-3 3 -12.5 4.5t-12.5 3.5q-18 7 -24 8q1 7 -2.5 13t-8 9t-12.5 8t-11 7q-2 2 -7 6t-7 5.5t-7.5 4.5t-8.5 2t-10 -1l-3 -1q-3 -1 -5.5 -2.5t-5.5 -3t-4 -3t0 -2.5q-21 17 -36 22q-5 1 -11 5.5t-10.5 7t-10 1.5t-11.5 -7
612
- q-5 -5 -6 -15t-2 -13q-7 5 0 17.5t2 18.5q-3 6 -10.5 4.5t-12 -4.5t-11.5 -8.5t-9 -6.5t-8.5 -5.5t-8.5 -7.5q-3 -4 -6 -12t-5 -11q-2 4 -11.5 6.5t-9.5 5.5q2 -10 4 -35t5 -38q7 -31 -12 -48q-27 -25 -29 -40q-4 -22 12 -26q0 -7 -8 -20.5t-7 -21.5q0 -6 2 -16z" />
613
- <glyph glyph-name="wrench" unicode="&#xf0ad;" horiz-adv-x="1664"
614
- d="M384 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1028 484l-682 -682q-37 -37 -90 -37q-52 0 -91 37l-106 108q-38 36 -38 90q0 53 38 91l681 681q39 -98 114.5 -173.5t173.5 -114.5zM1662 919q0 -39 -23 -106q-47 -134 -164.5 -217.5
615
- t-258.5 -83.5q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q58 0 121.5 -16.5t107.5 -46.5q16 -11 16 -28t-16 -28l-293 -169v-224l193 -107q5 3 79 48.5t135.5 81t70.5 35.5q15 0 23.5 -10t8.5 -25z" />
616
- <glyph glyph-name="tasks" unicode="&#xf0ae;" horiz-adv-x="1792"
617
- d="M1024 128h640v128h-640v-128zM640 640h1024v128h-1024v-128zM1280 1152h384v128h-384v-128zM1792 320v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 832v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19
618
- t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
619
- <glyph glyph-name="filter" unicode="&#xf0b0;" horiz-adv-x="1408"
620
- d="M1403 1241q17 -41 -14 -70l-493 -493v-742q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-256 256q-19 19 -19 45v486l-493 493q-31 29 -14 70q17 39 59 39h1280q42 0 59 -39z" />
621
- <glyph glyph-name="briefcase" unicode="&#xf0b1;" horiz-adv-x="1792"
622
- d="M640 1280h512v128h-512v-128zM1792 640v-480q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v480h672v-160q0 -26 19 -45t45 -19h320q26 0 45 19t19 45v160h672zM1024 640v-128h-256v128h256zM1792 1120v-384h-1792v384q0 66 47 113t113 47h352v160q0 40 28 68
623
- t68 28h576q40 0 68 -28t28 -68v-160h352q66 0 113 -47t47 -113z" />
624
- <glyph glyph-name="fullscreen" unicode="&#xf0b2;"
625
- d="M1283 995l-355 -355l355 -355l144 144q29 31 70 14q39 -17 39 -59v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l144 144l-355 355l-355 -355l144 -144q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l144 -144
626
- l355 355l-355 355l-144 -144q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v448q0 26 19 45t45 19h448q42 0 59 -40q17 -39 -14 -69l-144 -144l355 -355l355 355l-144 144q-31 30 -14 69q17 40 59 40h448q26 0 45 -19t19 -45v-448q0 -42 -39 -59q-13 -5 -25 -5q-26 0 -45 19z
627
- " />
628
- <glyph glyph-name="group" unicode="&#xf0c0;" horiz-adv-x="1920"
629
- d="M593 640q-162 -5 -265 -128h-134q-82 0 -138 40.5t-56 118.5q0 353 124 353q6 0 43.5 -21t97.5 -42.5t119 -21.5q67 0 133 23q-5 -37 -5 -66q0 -139 81 -256zM1664 3q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5
630
- t43 97.5t62 81t85.5 53.5t111.5 20q10 0 43 -21.5t73 -48t107 -48t135 -21.5t135 21.5t107 48t73 48t43 21.5q61 0 111.5 -20t85.5 -53.5t62 -81t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM640 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75
631
- t75 -181zM1344 896q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5zM1920 671q0 -78 -56 -118.5t-138 -40.5h-134q-103 123 -265 128q81 117 81 256q0 29 -5 66q66 -23 133 -23q59 0 119 21.5t97.5 42.5
632
- t43.5 21q124 0 124 -353zM1792 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181z" />
633
- <glyph glyph-name="link" unicode="&#xf0c1;" horiz-adv-x="1664"
634
- d="M1456 320q0 40 -28 68l-208 208q-28 28 -68 28q-42 0 -72 -32q3 -3 19 -18.5t21.5 -21.5t15 -19t13 -25.5t3.5 -27.5q0 -40 -28 -68t-68 -28q-15 0 -27.5 3.5t-25.5 13t-19 15t-21.5 21.5t-18.5 19q-33 -31 -33 -73q0 -40 28 -68l206 -207q27 -27 68 -27q40 0 68 26
635
- l147 146q28 28 28 67zM753 1025q0 40 -28 68l-206 207q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l208 -208q27 -27 68 -27q42 0 72 31q-3 3 -19 18.5t-21.5 21.5t-15 19t-13 25.5t-3.5 27.5q0 40 28 68t68 28q15 0 27.5 -3.5t25.5 -13t19 -15
636
- t21.5 -21.5t18.5 -19q33 31 33 73zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-206 207q-83 83 -83 203q0 123 88 209l-88 88q-86 -88 -208 -88q-120 0 -204 84l-208 208q-84 84 -84 204t85 203l147 146q83 83 203 83q121 0 204 -85l206 -207
637
- q83 -83 83 -203q0 -123 -88 -209l88 -88q86 88 208 88q120 0 204 -84l208 -208q84 -84 84 -204z" />
638
- <glyph glyph-name="cloud" unicode="&#xf0c2;" horiz-adv-x="1920"
639
- d="M1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088q-185 0 -316.5 131.5t-131.5 316.5q0 132 71 241.5t187 163.5q-2 28 -2 43q0 212 150 362t362 150q158 0 286.5 -88t187.5 -230q70 62 166 62q106 0 181 -75t75 -181q0 -75 -41 -138q129 -30 213 -134.5t84 -239.5z
640
- " />
641
- <glyph glyph-name="beaker" unicode="&#xf0c3;" horiz-adv-x="1664"
642
- d="M1527 88q56 -89 21.5 -152.5t-140.5 -63.5h-1152q-106 0 -140.5 63.5t21.5 152.5l503 793v399h-64q-26 0 -45 19t-19 45t19 45t45 19h512q26 0 45 -19t19 -45t-19 -45t-45 -19h-64v-399zM748 813l-272 -429h712l-272 429l-20 31v37v399h-128v-399v-37z" />
643
- <glyph glyph-name="cut" unicode="&#xf0c4;" horiz-adv-x="1792"
644
- d="M960 640q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1260 576l507 -398q28 -20 25 -56q-5 -35 -35 -51l-128 -64q-13 -7 -29 -7q-17 0 -31 8l-690 387l-110 -66q-8 -4 -12 -5q14 -49 10 -97q-7 -77 -56 -147.5t-132 -123.5q-132 -84 -277 -84
645
- q-136 0 -222 78q-90 84 -79 207q7 76 56 147t131 124q132 84 278 84q83 0 151 -31q9 13 22 22l122 73l-122 73q-13 9 -22 22q-68 -31 -151 -31q-146 0 -278 84q-82 53 -131 124t-56 147q-5 59 15.5 113t63.5 93q85 79 222 79q145 0 277 -84q83 -52 132 -123t56 -148
646
- q4 -48 -10 -97q4 -1 12 -5l110 -66l690 387q14 8 31 8q16 0 29 -7l128 -64q30 -16 35 -51q3 -36 -25 -56zM579 836q46 42 21 108t-106 117q-92 59 -192 59q-74 0 -113 -36q-46 -42 -21 -108t106 -117q92 -59 192 -59q74 0 113 36zM494 91q81 51 106 117t-21 108
647
- q-39 36 -113 36q-100 0 -192 -59q-81 -51 -106 -117t21 -108q39 -36 113 -36q100 0 192 59zM672 704l96 -58v11q0 36 33 56l14 8l-79 47l-26 -26q-3 -3 -10 -11t-12 -12q-2 -2 -4 -3.5t-3 -2.5zM896 480l96 -32l736 576l-128 64l-768 -431v-113l-160 -96l9 -8q2 -2 7 -6
648
- q4 -4 11 -12t11 -12l26 -26zM1600 64l128 64l-520 408l-177 -138q-2 -3 -13 -7z" />
649
- <glyph glyph-name="copy" unicode="&#xf0c5;" horiz-adv-x="1792"
650
- d="M1696 1152q40 0 68 -28t28 -68v-1216q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v288h-544q-40 0 -68 28t-28 68v672q0 40 20 88t48 76l408 408q28 28 76 48t88 20h416q40 0 68 -28t28 -68v-328q68 40 128 40h416zM1152 939l-299 -299h299v299zM512 1323l-299 -299
651
- h299v299zM708 676l316 316v416h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h512v256q0 40 20 88t48 76zM1664 -128v1152h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h896z" />
652
- <glyph glyph-name="paper_clip" unicode="&#xf0c6;" horiz-adv-x="1408"
653
- d="M1404 151q0 -117 -79 -196t-196 -79q-135 0 -235 100l-777 776q-113 115 -113 271q0 159 110 270t269 111q158 0 273 -113l605 -606q10 -10 10 -22q0 -16 -30.5 -46.5t-46.5 -30.5q-13 0 -23 10l-606 607q-79 77 -181 77q-106 0 -179 -75t-73 -181q0 -105 76 -181
654
- l776 -777q63 -63 145 -63q64 0 106 42t42 106q0 82 -63 145l-581 581q-26 24 -60 24q-29 0 -48 -19t-19 -48q0 -32 25 -59l410 -410q10 -10 10 -22q0 -16 -31 -47t-47 -31q-12 0 -22 10l-410 410q-63 61 -63 149q0 82 57 139t139 57q88 0 149 -63l581 -581q100 -98 100 -235
655
- z" />
656
- <glyph glyph-name="save" unicode="&#xf0c7;"
657
- d="M384 0h768v384h-768v-384zM1280 0h128v896q0 14 -10 38.5t-20 34.5l-281 281q-10 10 -34 20t-39 10v-416q0 -40 -28 -68t-68 -28h-576q-40 0 -68 28t-28 68v416h-128v-1280h128v416q0 40 28 68t68 28h832q40 0 68 -28t28 -68v-416zM896 928v320q0 13 -9.5 22.5t-22.5 9.5
658
- h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5zM1536 896v-928q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h928q40 0 88 -20t76 -48l280 -280q28 -28 48 -76t20 -88z" />
659
- <glyph glyph-name="sign_blank" unicode="&#xf0c8;"
660
- d="M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
661
- <glyph glyph-name="reorder" unicode="&#xf0c9;"
662
- d="M1536 192v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 704v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 1216v-128q0 -26 -19 -45
663
- t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
664
- <glyph glyph-name="ul" unicode="&#xf0ca;" horiz-adv-x="1792"
665
- d="M384 128q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 640q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5
666
- t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1152q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z
667
- M1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
668
- <glyph glyph-name="ol" unicode="&#xf0cb;" horiz-adv-x="1792"
669
- d="M381 -84q0 -80 -54.5 -126t-135.5 -46q-106 0 -172 66l57 88q49 -45 106 -45q29 0 50.5 14.5t21.5 42.5q0 64 -105 56l-26 56q8 10 32.5 43.5t42.5 54t37 38.5v1q-16 0 -48.5 -1t-48.5 -1v-53h-106v152h333v-88l-95 -115q51 -12 81 -49t30 -88zM383 543v-159h-362
670
- q-6 36 -6 54q0 51 23.5 93t56.5 68t66 47.5t56.5 43.5t23.5 45q0 25 -14.5 38.5t-39.5 13.5q-46 0 -81 -58l-85 59q24 51 71.5 79.5t105.5 28.5q73 0 123 -41.5t50 -112.5q0 -50 -34 -91.5t-75 -64.5t-75.5 -50.5t-35.5 -52.5h127v60h105zM1792 224v-192q0 -13 -9.5 -22.5
671
- t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1123v-99h-335v99h107q0 41 0.5 121.5t0.5 121.5v12h-2q-8 -17 -50 -54l-71 76l136 127h106v-404h108zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216
672
- q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
673
- <glyph glyph-name="strikethrough" unicode="&#xf0cc;" horiz-adv-x="1792"
674
- d="M1760 640q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1728q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h1728zM483 704q-28 35 -51 80q-48 98 -48 188q0 181 134 309q133 127 393 127q50 0 167 -19q66 -12 177 -48q10 -38 21 -118q14 -123 14 -183q0 -18 -5 -45l-12 -3l-84 6
675
- l-14 2q-50 149 -103 205q-88 91 -210 91q-114 0 -182 -59q-67 -58 -67 -146q0 -73 66 -140t279 -129q69 -20 173 -66q58 -28 95 -52h-743zM990 448h411q7 -39 7 -92q0 -111 -41 -212q-23 -56 -71 -104q-37 -35 -109 -81q-80 -48 -153 -66q-80 -21 -203 -21q-114 0 -195 23
676
- l-140 40q-57 16 -72 28q-8 8 -8 22v13q0 108 -2 156q-1 30 0 68l2 37v44l102 2q15 -34 30 -71t22.5 -56t12.5 -27q35 -57 80 -94q43 -36 105 -57q59 -22 132 -22q64 0 139 27q77 26 122 86q47 61 47 129q0 84 -81 157q-34 29 -137 71z" />
677
- <glyph glyph-name="underline" unicode="&#xf0cd;"
678
- d="M48 1313q-37 2 -45 4l-3 88q13 1 40 1q60 0 112 -4q132 -7 166 -7q86 0 168 3q116 4 146 5q56 0 86 2l-1 -14l2 -64v-9q-60 -9 -124 -9q-60 0 -79 -25q-13 -14 -13 -132q0 -13 0.5 -32.5t0.5 -25.5l1 -229l14 -280q6 -124 51 -202q35 -59 96 -92q88 -47 177 -47
679
- q104 0 191 28q56 18 99 51q48 36 65 64q36 56 53 114q21 73 21 229q0 79 -3.5 128t-11 122.5t-13.5 159.5l-4 59q-5 67 -24 88q-34 35 -77 34l-100 -2l-14 3l2 86h84l205 -10q76 -3 196 10l18 -2q6 -38 6 -51q0 -7 -4 -31q-45 -12 -84 -13q-73 -11 -79 -17q-15 -15 -15 -41
680
- q0 -7 1.5 -27t1.5 -31q8 -19 22 -396q6 -195 -15 -304q-15 -76 -41 -122q-38 -65 -112 -123q-75 -57 -182 -89q-109 -33 -255 -33q-167 0 -284 46q-119 47 -179 122q-61 76 -83 195q-16 80 -16 237v333q0 188 -17 213q-25 36 -147 39zM1536 -96v64q0 14 -9 23t-23 9h-1472
681
- q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h1472q14 0 23 9t9 23z" />
682
- <glyph glyph-name="table" unicode="&#xf0ce;" horiz-adv-x="1664"
683
- d="M512 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23
684
- v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 160v192
685
- q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192
686
- q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1664 1248v-1088q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1344q66 0 113 -47t47 -113
687
- z" />
688
- <glyph glyph-name="magic" unicode="&#xf0d0;" horiz-adv-x="1664"
689
- d="M1190 955l293 293l-107 107l-293 -293zM1637 1248q0 -27 -18 -45l-1286 -1286q-18 -18 -45 -18t-45 18l-198 198q-18 18 -18 45t18 45l1286 1286q18 18 45 18t45 -18l198 -198q18 -18 18 -45zM286 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM636 1276
690
- l196 -60l-196 -60l-60 -196l-60 196l-196 60l196 60l60 196zM1566 798l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM926 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98z" />
691
- <glyph glyph-name="truck" unicode="&#xf0d1;" horiz-adv-x="1792"
692
- d="M640 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM256 640h384v256h-158q-13 0 -22 -9l-195 -195q-9 -9 -9 -22v-30zM1536 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1792 1216v-1024q0 -15 -4 -26.5t-13.5 -18.5
693
- t-16.5 -11.5t-23.5 -6t-22.5 -2t-25.5 0t-22.5 0.5q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-64q-3 0 -22.5 -0.5t-25.5 0t-22.5 2t-23.5 6t-16.5 11.5t-13.5 18.5t-4 26.5q0 26 19 45t45 19v320q0 8 -0.5 35t0 38
694
- t2.5 34.5t6.5 37t14 30.5t22.5 30l198 198q19 19 50.5 32t58.5 13h160v192q0 26 19 45t45 19h1024q26 0 45 -19t19 -45z" />
695
- <glyph glyph-name="pinterest" unicode="&#xf0d2;"
696
- d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103q-111 0 -218 32q59 93 78 164q9 34 54 211q20 -39 73 -67.5t114 -28.5q121 0 216 68.5t147 188.5t52 270q0 114 -59.5 214t-172.5 163t-255 63q-105 0 -196 -29t-154.5 -77t-109 -110.5t-67 -129.5t-21.5 -134
697
- q0 -104 40 -183t117 -111q30 -12 38 20q2 7 8 31t8 30q6 23 -11 43q-51 61 -51 151q0 151 104.5 259.5t273.5 108.5q151 0 235.5 -82t84.5 -213q0 -170 -68.5 -289t-175.5 -119q-61 0 -98 43.5t-23 104.5q8 35 26.5 93.5t30 103t11.5 75.5q0 50 -27 83t-77 33
698
- q-62 0 -105 -57t-43 -142q0 -73 25 -122l-99 -418q-17 -70 -13 -177q-206 91 -333 281t-127 423q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
699
- <glyph glyph-name="pinterest_sign" unicode="&#xf0d3;"
700
- d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-725q85 122 108 210q9 34 53 209q21 -39 73.5 -67t112.5 -28q181 0 295.5 147.5t114.5 373.5q0 84 -35 162.5t-96.5 139t-152.5 97t-197 36.5q-104 0 -194.5 -28.5t-153 -76.5
701
- t-107.5 -109.5t-66.5 -128t-21.5 -132.5q0 -102 39.5 -180t116.5 -110q13 -5 23.5 0t14.5 19q10 44 15 61q6 23 -11 42q-50 62 -50 150q0 150 103.5 256.5t270.5 106.5q149 0 232.5 -81t83.5 -210q0 -168 -67.5 -286t-173.5 -118q-60 0 -97 43.5t-23 103.5q8 34 26.5 92.5
702
- t29.5 102t11 74.5q0 49 -26.5 81.5t-75.5 32.5q-61 0 -103.5 -56.5t-42.5 -139.5q0 -72 24 -121l-98 -414q-24 -100 -7 -254h-183q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960z" />
703
- <glyph glyph-name="google_plus_sign" unicode="&#xf0d4;"
704
- d="M917 631q0 26 -6 64h-362v-132h217q-3 -24 -16.5 -50t-37.5 -53t-66.5 -44.5t-96.5 -17.5q-99 0 -169 71t-70 171t70 171t169 71q92 0 153 -59l104 101q-108 100 -257 100q-160 0 -272 -112.5t-112 -271.5t112 -271.5t272 -112.5q165 0 266.5 105t101.5 270zM1262 585
705
- h109v110h-109v110h-110v-110h-110v-110h110v-110h110v110zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
706
- <glyph glyph-name="google_plus" unicode="&#xf0d5;" horiz-adv-x="2304"
707
- d="M1437 623q0 -208 -87 -370.5t-248 -254t-369 -91.5q-149 0 -285 58t-234 156t-156 234t-58 285t58 285t156 234t234 156t285 58q286 0 491 -192l-199 -191q-117 113 -292 113q-123 0 -227.5 -62t-165.5 -168.5t-61 -232.5t61 -232.5t165.5 -168.5t227.5 -62
708
- q83 0 152.5 23t114.5 57.5t78.5 78.5t49 83t21.5 74h-416v252h692q12 -63 12 -122zM2304 745v-210h-209v-209h-210v209h-209v210h209v209h210v-209h209z" />
709
- <glyph glyph-name="money" unicode="&#xf0d6;" horiz-adv-x="1920"
710
- d="M768 384h384v96h-128v448h-114l-148 -137l77 -80q42 37 55 57h2v-288h-128v-96zM1280 640q0 -70 -21 -142t-59.5 -134t-101.5 -101t-138 -39t-138 39t-101.5 101t-59.5 134t-21 142t21 142t59.5 134t101.5 101t138 39t138 -39t101.5 -101t59.5 -134t21 -142zM1792 384
711
- v512q-106 0 -181 75t-75 181h-1152q0 -106 -75 -181t-181 -75v-512q106 0 181 -75t75 -181h1152q0 106 75 181t181 75zM1920 1216v-1152q0 -26 -19 -45t-45 -19h-1792q-26 0 -45 19t-19 45v1152q0 26 19 45t45 19h1792q26 0 45 -19t19 -45z" />
712
- <glyph glyph-name="caret_down" unicode="&#xf0d7;" horiz-adv-x="1024"
713
- d="M1024 832q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
714
- <glyph glyph-name="caret_up" unicode="&#xf0d8;" horiz-adv-x="1024"
715
- d="M1024 320q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
716
- <glyph glyph-name="caret_left" unicode="&#xf0d9;" horiz-adv-x="640"
717
- d="M640 1088v-896q0 -26 -19 -45t-45 -19t-45 19l-448 448q-19 19 -19 45t19 45l448 448q19 19 45 19t45 -19t19 -45z" />
718
- <glyph glyph-name="caret_right" unicode="&#xf0da;" horiz-adv-x="640"
719
- d="M576 640q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19t-19 45v896q0 26 19 45t45 19t45 -19l448 -448q19 -19 19 -45z" />
720
- <glyph glyph-name="columns" unicode="&#xf0db;" horiz-adv-x="1664"
721
- d="M160 0h608v1152h-640v-1120q0 -13 9.5 -22.5t22.5 -9.5zM1536 32v1120h-640v-1152h608q13 0 22.5 9.5t9.5 22.5zM1664 1248v-1216q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1344q66 0 113 -47t47 -113z" />
722
- <glyph glyph-name="sort" unicode="&#xf0dc;" horiz-adv-x="1024"
723
- d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45zM1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
724
- <glyph glyph-name="sort_down" unicode="&#xf0dd;" horiz-adv-x="1024"
725
- d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
726
- <glyph glyph-name="sort_up" unicode="&#xf0de;" horiz-adv-x="1024"
727
- d="M1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
728
- <glyph glyph-name="envelope_alt" unicode="&#xf0e0;" horiz-adv-x="1792"
729
- d="M1792 826v-794q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v794q44 -49 101 -87q362 -246 497 -345q57 -42 92.5 -65.5t94.5 -48t110 -24.5h1h1q51 0 110 24.5t94.5 48t92.5 65.5q170 123 498 345q57 39 100 87zM1792 1120q0 -79 -49 -151t-122 -123
730
- q-376 -261 -468 -325q-10 -7 -42.5 -30.5t-54 -38t-52 -32.5t-57.5 -27t-50 -9h-1h-1q-23 0 -50 9t-57.5 27t-52 32.5t-54 38t-42.5 30.5q-91 64 -262 182.5t-205 142.5q-62 42 -117 115.5t-55 136.5q0 78 41.5 130t118.5 52h1472q65 0 112.5 -47t47.5 -113z" />
731
- <glyph glyph-name="linkedin" unicode="&#xf0e1;"
732
- d="M349 911v-991h-330v991h330zM370 1217q1 -73 -50.5 -122t-135.5 -49h-2q-82 0 -132 49t-50 122q0 74 51.5 122.5t134.5 48.5t133 -48.5t51 -122.5zM1536 488v-568h-329v530q0 105 -40.5 164.5t-126.5 59.5q-63 0 -105.5 -34.5t-63.5 -85.5q-11 -30 -11 -81v-553h-329
733
- q2 399 2 647t-1 296l-1 48h329v-144h-2q20 32 41 56t56.5 52t87 43.5t114.5 15.5q171 0 275 -113.5t104 -332.5z" />
734
- <glyph glyph-name="undo" unicode="&#xf0e2;"
735
- d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5
736
- t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298z" />
737
- <glyph glyph-name="legal" unicode="&#xf0e3;" horiz-adv-x="1792"
738
- d="M1771 0q0 -53 -37 -90l-107 -108q-39 -37 -91 -37q-53 0 -90 37l-363 364q-38 36 -38 90q0 53 43 96l-256 256l-126 -126q-14 -14 -34 -14t-34 14q2 -2 12.5 -12t12.5 -13t10 -11.5t10 -13.5t6 -13.5t5.5 -16.5t1.5 -18q0 -38 -28 -68q-3 -3 -16.5 -18t-19 -20.5
739
- t-18.5 -16.5t-22 -15.5t-22 -9t-26 -4.5q-40 0 -68 28l-408 408q-28 28 -28 68q0 13 4.5 26t9 22t15.5 22t16.5 18.5t20.5 19t18 16.5q30 28 68 28q10 0 18 -1.5t16.5 -5.5t13.5 -6t13.5 -10t11.5 -10t13 -12.5t12 -12.5q-14 14 -14 34t14 34l348 348q14 14 34 14t34 -14
740
- q-2 2 -12.5 12t-12.5 13t-10 11.5t-10 13.5t-6 13.5t-5.5 16.5t-1.5 18q0 38 28 68q3 3 16.5 18t19 20.5t18.5 16.5t22 15.5t22 9t26 4.5q40 0 68 -28l408 -408q28 -28 28 -68q0 -13 -4.5 -26t-9 -22t-15.5 -22t-16.5 -18.5t-20.5 -19t-18 -16.5q-30 -28 -68 -28
741
- q-10 0 -18 1.5t-16.5 5.5t-13.5 6t-13.5 10t-11.5 10t-13 12.5t-12 12.5q14 -14 14 -34t-14 -34l-126 -126l256 -256q43 43 96 43q52 0 91 -37l363 -363q37 -39 37 -91z" />
742
- <glyph glyph-name="dashboard" unicode="&#xf0e4;" horiz-adv-x="1792"
743
- d="M384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM576 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1004 351l101 382q6 26 -7.5 48.5t-38.5 29.5
744
- t-48 -6.5t-30 -39.5l-101 -382q-60 -5 -107 -43.5t-63 -98.5q-20 -77 20 -146t117 -89t146 20t89 117q16 60 -6 117t-72 91zM1664 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 1024q0 53 -37.5 90.5
745
- t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1472 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 384q0 -261 -141 -483q-19 -29 -54 -29h-1402q-35 0 -54 29
746
- q-141 221 -141 483q0 182 71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
747
- <glyph glyph-name="comment_alt" unicode="&#xf0e5;" horiz-adv-x="1792"
748
- d="M896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640
749
- q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 174 120 321.5
750
- t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" />
751
- <glyph glyph-name="comments_alt" unicode="&#xf0e6;" horiz-adv-x="1792"
752
- d="M704 1152q-153 0 -286 -52t-211.5 -141t-78.5 -191q0 -82 53 -158t149 -132l97 -56l-35 -84q34 20 62 39l44 31l53 -10q78 -14 153 -14q153 0 286 52t211.5 141t78.5 191t-78.5 191t-211.5 141t-286 52zM704 1280q191 0 353.5 -68.5t256.5 -186.5t94 -257t-94 -257
753
- t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224q0 139 94 257t256.5 186.5
754
- t353.5 68.5zM1526 111q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129
755
- q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230q0 -120 -71 -224.5t-195 -176.5z" />
756
- <glyph glyph-name="bolt" unicode="&#xf0e7;" horiz-adv-x="896"
757
- d="M885 970q18 -20 7 -44l-540 -1157q-13 -25 -42 -25q-4 0 -14 2q-17 5 -25.5 19t-4.5 30l197 808l-406 -101q-4 -1 -12 -1q-18 0 -31 11q-18 15 -13 39l201 825q4 14 16 23t28 9h328q19 0 32 -12.5t13 -29.5q0 -8 -5 -18l-171 -463l396 98q8 2 12 2q19 0 34 -15z" />
758
- <glyph glyph-name="sitemap" unicode="&#xf0e8;" horiz-adv-x="1792"
759
- d="M1792 288v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320
760
- q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192q0 52 38 90t90 38h512v192h-96q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h320q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-96v-192h512q52 0 90 -38t38 -90v-192h96q40 0 68 -28t28 -68
761
- z" />
762
- <glyph glyph-name="umbrella" unicode="&#xf0e9;" horiz-adv-x="1664"
763
- d="M896 708v-580q0 -104 -76 -180t-180 -76t-180 76t-76 180q0 26 19 45t45 19t45 -19t19 -45q0 -50 39 -89t89 -39t89 39t39 89v580q33 11 64 11t64 -11zM1664 681q0 -13 -9.5 -22.5t-22.5 -9.5q-11 0 -23 10q-49 46 -93 69t-102 23q-68 0 -128 -37t-103 -97
764
- q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -28 -17q-18 0 -29 17q-4 6 -14.5 24t-17.5 28q-43 60 -102.5 97t-127.5 37t-127.5 -37t-102.5 -97q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -29 -17q-17 0 -28 17q-4 6 -14.5 24t-17.5 28q-43 60 -103 97t-128 37q-58 0 -102 -23t-93 -69
765
- q-12 -10 -23 -10q-13 0 -22.5 9.5t-9.5 22.5q0 5 1 7q45 183 172.5 319.5t298 204.5t360.5 68q140 0 274.5 -40t246.5 -113.5t194.5 -187t115.5 -251.5q1 -2 1 -7zM896 1408v-98q-42 2 -64 2t-64 -2v98q0 26 19 45t45 19t45 -19t19 -45z" />
766
- <glyph glyph-name="paste" unicode="&#xf0ea;" horiz-adv-x="1792"
767
- d="M768 -128h896v640h-416q-40 0 -68 28t-28 68v416h-384v-1152zM1024 1312v64q0 13 -9.5 22.5t-22.5 9.5h-704q-13 0 -22.5 -9.5t-9.5 -22.5v-64q0 -13 9.5 -22.5t22.5 -9.5h704q13 0 22.5 9.5t9.5 22.5zM1280 640h299l-299 299v-299zM1792 512v-672q0 -40 -28 -68t-68 -28
768
- h-960q-40 0 -68 28t-28 68v160h-544q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1088q40 0 68 -28t28 -68v-328q21 -13 36 -28l408 -408q28 -28 48 -76t20 -88z" />
769
- <glyph glyph-name="light_bulb" unicode="&#xf0eb;" horiz-adv-x="1024"
770
- d="M736 960q0 -13 -9.5 -22.5t-22.5 -9.5t-22.5 9.5t-9.5 22.5q0 46 -54 71t-106 25q-13 0 -22.5 9.5t-9.5 22.5t9.5 22.5t22.5 9.5q50 0 99.5 -16t87 -54t37.5 -90zM896 960q0 72 -34.5 134t-90 101.5t-123 62t-136.5 22.5t-136.5 -22.5t-123 -62t-90 -101.5t-34.5 -134
771
- q0 -101 68 -180q10 -11 30.5 -33t30.5 -33q128 -153 141 -298h228q13 145 141 298q10 11 30.5 33t30.5 33q68 79 68 180zM1024 960q0 -155 -103 -268q-45 -49 -74.5 -87t-59.5 -95.5t-34 -107.5q47 -28 47 -82q0 -37 -25 -64q25 -27 25 -64q0 -52 -45 -81q13 -23 13 -47
772
- q0 -46 -31.5 -71t-77.5 -25q-20 -44 -60 -70t-87 -26t-87 26t-60 70q-46 0 -77.5 25t-31.5 71q0 24 13 47q-45 29 -45 81q0 37 25 64q-25 27 -25 64q0 54 47 82q-4 50 -34 107.5t-59.5 95.5t-74.5 87q-103 113 -103 268q0 99 44.5 184.5t117 142t164 89t186.5 32.5
773
- t186.5 -32.5t164 -89t117 -142t44.5 -184.5z" />
774
- <glyph glyph-name="exchange" unicode="&#xf0ec;" horiz-adv-x="1792"
775
- d="M1792 352v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5q-12 0 -24 10l-319 320q-9 9 -9 22q0 14 9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h1376q13 0 22.5 -9.5t9.5 -22.5zM1792 896q0 -14 -9 -23l-320 -320q-9 -9 -23 -9
776
- q-13 0 -22.5 9.5t-9.5 22.5v192h-1376q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1376v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
777
- <glyph glyph-name="cloud_download" unicode="&#xf0ed;" horiz-adv-x="1920"
778
- d="M1280 608q0 14 -9 23t-23 9h-224v352q0 13 -9.5 22.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-352h-224q-13 0 -22.5 -9.5t-9.5 -22.5q0 -14 9 -23l352 -352q9 -9 23 -9t23 9l351 351q10 12 10 24zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088
779
- q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
780
- <glyph glyph-name="cloud_upload" unicode="&#xf0ee;" horiz-adv-x="1920"
781
- d="M1280 672q0 14 -9 23l-352 352q-9 9 -23 9t-23 -9l-351 -351q-10 -12 -10 -24q0 -14 9 -23t23 -9h224v-352q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5v352h224q13 0 22.5 9.5t9.5 22.5zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088
782
- q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
783
- <glyph glyph-name="user_md" unicode="&#xf0f0;" horiz-adv-x="1408"
784
- d="M384 192q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 68 5.5 131t24 138t47.5 132.5t81 103t120 60.5q-22 -52 -22 -120v-203q-58 -20 -93 -70t-35 -111q0 -80 56 -136t136 -56
785
- t136 56t56 136q0 61 -35.5 111t-92.5 70v203q0 62 25 93q132 -104 295 -104t295 104q25 -31 25 -93v-64q-106 0 -181 -75t-75 -181v-89q-32 -29 -32 -71q0 -40 28 -68t68 -28t68 28t28 68q0 42 -32 71v89q0 52 38 90t90 38t90 -38t38 -90v-89q-32 -29 -32 -71q0 -40 28 -68
786
- t68 -28t68 28t28 68q0 42 -32 71v89q0 68 -34.5 127.5t-93.5 93.5q0 10 0.5 42.5t0 48t-2.5 41.5t-7 47t-13 40q68 -15 120 -60.5t81 -103t47.5 -132.5t24 -138t5.5 -131zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5
787
- t271.5 -112.5t112.5 -271.5z" />
788
- <glyph glyph-name="stethoscope" unicode="&#xf0f1;" horiz-adv-x="1408"
789
- d="M1280 832q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 832q0 -62 -35.5 -111t-92.5 -70v-395q0 -159 -131.5 -271.5t-316.5 -112.5t-316.5 112.5t-131.5 271.5v132q-164 20 -274 128t-110 252v512q0 26 19 45t45 19q6 0 16 -2q17 30 47 48
790
- t65 18q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5q-33 0 -64 18v-402q0 -106 94 -181t226 -75t226 75t94 181v402q-31 -18 -64 -18q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5q35 0 65 -18t47 -48q10 2 16 2q26 0 45 -19t19 -45v-512q0 -144 -110 -252
791
- t-274 -128v-132q0 -106 94 -181t226 -75t226 75t94 181v395q-57 21 -92.5 70t-35.5 111q0 80 56 136t136 56t136 -56t56 -136z" />
792
- <glyph glyph-name="suitcase" unicode="&#xf0f2;" horiz-adv-x="1792"
793
- d="M640 1152h512v128h-512v-128zM288 1152v-1280h-64q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h64zM1408 1152v-1280h-1024v1280h128v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h128zM1792 928v-832q0 -92 -66 -158t-158 -66h-64v1280h64q92 0 158 -66
794
- t66 -158z" />
795
- <glyph glyph-name="bell_alt" unicode="&#xf0f3;" horiz-adv-x="1792"
796
- d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5
797
- t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" />
798
- <glyph glyph-name="coffee" unicode="&#xf0f4;" horiz-adv-x="1920"
799
- d="M1664 896q0 80 -56 136t-136 56h-64v-384h64q80 0 136 56t56 136zM0 128h1792q0 -106 -75 -181t-181 -75h-1280q-106 0 -181 75t-75 181zM1856 896q0 -159 -112.5 -271.5t-271.5 -112.5h-64v-32q0 -92 -66 -158t-158 -66h-704q-92 0 -158 66t-66 158v736q0 26 19 45
800
- t45 19h1152q159 0 271.5 -112.5t112.5 -271.5z" />
801
- <glyph glyph-name="food" unicode="&#xf0f5;" horiz-adv-x="1408"
802
- d="M640 1472v-640q0 -61 -35.5 -111t-92.5 -70v-779q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v779q-57 20 -92.5 70t-35.5 111v640q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45
803
- t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45zM1408 1472v-1600q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v512h-224q-13 0 -22.5 9.5t-9.5 22.5v800q0 132 94 226t226 94h256q26 0 45 -19t19 -45z" />
804
- <glyph glyph-name="file_text_alt" unicode="&#xf0f6;"
805
- d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
806
- M384 736q0 14 9 23t23 9h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64zM1120 512q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704zM1120 256q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704
807
- q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704z" />
808
- <glyph glyph-name="building" unicode="&#xf0f7;" horiz-adv-x="1408"
809
- d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
810
- M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
811
- M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
812
- M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
813
- M1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
814
- M640 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
815
- M1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
816
- M640 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
817
- M896 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
818
- M896 -128h384v1536h-1152v-1536h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM1408 1472v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280q26 0 45 -19t19 -45z" />
819
- <glyph glyph-name="hospital" unicode="&#xf0f8;" horiz-adv-x="1408"
820
- d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
821
- M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
822
- M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
823
- M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
824
- M896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
825
- M896 -128h384v1152h-256v-32q0 -40 -28 -68t-68 -28h-448q-40 0 -68 28t-28 68v32h-256v-1152h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM896 1056v320q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-96h-128v96q0 13 -9.5 22.5
826
- t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5v96h128v-96q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1408 1088v-1280q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1280q0 26 19 45t45 19h320
827
- v288q0 40 28 68t68 28h448q40 0 68 -28t28 -68v-288h320q26 0 45 -19t19 -45z" />
828
- <glyph glyph-name="ambulance" unicode="&#xf0f9;" horiz-adv-x="1920"
829
- d="M640 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM256 640h384v256h-158q-14 -2 -22 -9l-195 -195q-7 -12 -9 -22v-30zM1536 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5
830
- t90.5 37.5t37.5 90.5zM1664 800v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM1920 1344v-1152
831
- q0 -26 -19 -45t-45 -19h-192q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-128q-26 0 -45 19t-19 45t19 45t45 19v416q0 26 13 58t32 51l198 198q19 19 51 32t58 13h160v320q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
832
- <glyph glyph-name="medkit" unicode="&#xf0fa;" horiz-adv-x="1792"
833
- d="M1280 416v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM640 1152h512v128h-512v-128zM256 1152v-1280h-32
834
- q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h32zM1440 1152v-1280h-1088v1280h160v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h160zM1792 928v-832q0 -92 -66 -158t-158 -66h-32v1280h32q92 0 158 -66t66 -158z" />
835
- <glyph glyph-name="fighter_jet" unicode="&#xf0fb;" horiz-adv-x="1920"
836
- d="M1920 576q-1 -32 -288 -96l-352 -32l-224 -64h-64l-293 -352h69q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-96h-160h-64v32h64v416h-160l-192 -224h-96l-32 32v192h32v32h128v8l-192 24v128l192 24v8h-128v32h-32v192l32 32h96l192 -224h160v416h-64v32h64h160h96
837
- q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-69l293 -352h64l224 -64l352 -32q128 -28 200 -52t80 -34z" />
838
- <glyph glyph-name="beer" unicode="&#xf0fc;" horiz-adv-x="1664"
839
- d="M640 640v384h-256v-256q0 -53 37.5 -90.5t90.5 -37.5h128zM1664 192v-192h-1152v192l128 192h-128q-159 0 -271.5 112.5t-112.5 271.5v320l-64 64l32 128h480l32 128h960l32 -192l-64 -32v-800z" />
840
- <glyph glyph-name="h_sign" unicode="&#xf0fd;"
841
- d="M1280 192v896q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-512v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-896q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h512v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1536 1120v-960
842
- q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
843
- <glyph glyph-name="f0fe" unicode="&#xf0fe;"
844
- d="M1280 576v128q0 26 -19 45t-45 19h-320v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-320q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h320v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h320q26 0 45 19t19 45zM1536 1120v-960
845
- q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
846
- <glyph glyph-name="double_angle_left" unicode="&#xf100;" horiz-adv-x="1024"
847
- d="M627 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23zM1011 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23
848
- t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23z" />
849
- <glyph glyph-name="double_angle_right" unicode="&#xf101;" horiz-adv-x="1024"
850
- d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM979 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23
851
- l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
852
- <glyph glyph-name="double_angle_up" unicode="&#xf102;" horiz-adv-x="1152"
853
- d="M1075 224q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM1075 608q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393
854
- q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
855
- <glyph glyph-name="double_angle_down" unicode="&#xf103;" horiz-adv-x="1152"
856
- d="M1075 672q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23zM1075 1056q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23
857
- t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
858
- <glyph glyph-name="angle_left" unicode="&#xf104;" horiz-adv-x="640"
859
- d="M627 992q0 -13 -10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
860
- <glyph glyph-name="angle_right" unicode="&#xf105;" horiz-adv-x="640"
861
- d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
862
- <glyph glyph-name="angle_up" unicode="&#xf106;" horiz-adv-x="1152"
863
- d="M1075 352q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
864
- <glyph glyph-name="angle_down" unicode="&#xf107;" horiz-adv-x="1152"
865
- d="M1075 800q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
866
- <glyph glyph-name="desktop" unicode="&#xf108;" horiz-adv-x="1920"
867
- d="M1792 544v832q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1376v-1088q0 -66 -47 -113t-113 -47h-544q0 -37 16 -77.5t32 -71t16 -43.5q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19
868
- t-19 45q0 14 16 44t32 70t16 78h-544q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
869
- <glyph glyph-name="laptop" unicode="&#xf109;" horiz-adv-x="1920"
870
- d="M416 256q-66 0 -113 47t-47 113v704q0 66 47 113t113 47h1088q66 0 113 -47t47 -113v-704q0 -66 -47 -113t-113 -47h-1088zM384 1120v-704q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5v704q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5z
871
- M1760 192h160v-96q0 -40 -47 -68t-113 -28h-1600q-66 0 -113 28t-47 68v96h160h1600zM1040 96q16 0 16 16t-16 16h-160q-16 0 -16 -16t16 -16h160z" />
872
- <glyph glyph-name="tablet" unicode="&#xf10a;" horiz-adv-x="1152"
873
- d="M640 128q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1024 288v960q0 13 -9.5 22.5t-22.5 9.5h-832q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h832q13 0 22.5 9.5t9.5 22.5zM1152 1248v-1088q0 -66 -47 -113t-113 -47h-832
874
- q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h832q66 0 113 -47t47 -113z" />
875
- <glyph glyph-name="mobile_phone" unicode="&#xf10b;" horiz-adv-x="768"
876
- d="M464 128q0 33 -23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5t56.5 23.5t23.5 56.5zM672 288v704q0 13 -9.5 22.5t-22.5 9.5h-512q-13 0 -22.5 -9.5t-9.5 -22.5v-704q0 -13 9.5 -22.5t22.5 -9.5h512q13 0 22.5 9.5t9.5 22.5zM480 1136
877
- q0 16 -16 16h-160q-16 0 -16 -16t16 -16h160q16 0 16 16zM768 1152v-1024q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v1024q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
878
- <glyph glyph-name="circle_blank" unicode="&#xf10c;"
879
- d="M768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103
880
- t279.5 -279.5t103 -385.5z" />
881
- <glyph glyph-name="quote_left" unicode="&#xf10d;" horiz-adv-x="1664"
882
- d="M768 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z
883
- M1664 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z" />
884
- <glyph glyph-name="quote_right" unicode="&#xf10e;" horiz-adv-x="1664"
885
- d="M768 1216v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136zM1664 1216
886
- v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136z" />
887
- <glyph glyph-name="spinner" unicode="&#xf110;" horiz-adv-x="1792"
888
- d="M526 142q0 -53 -37.5 -90.5t-90.5 -37.5q-52 0 -90 38t-38 90q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1024 -64q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM320 640q0 -53 -37.5 -90.5t-90.5 -37.5
889
- t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1522 142q0 -52 -38 -90t-90 -38q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM558 1138q0 -66 -47 -113t-113 -47t-113 47t-47 113t47 113t113 47t113 -47t47 -113z
890
- M1728 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1088 1344q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1618 1138q0 -93 -66 -158.5t-158 -65.5q-93 0 -158.5 65.5t-65.5 158.5
891
- q0 92 65.5 158t158.5 66q92 0 158 -66t66 -158z" />
892
- <glyph glyph-name="circle" unicode="&#xf111;"
893
- d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
894
- <glyph glyph-name="reply" unicode="&#xf112;" horiz-adv-x="1792"
895
- d="M1792 416q0 -166 -127 -451q-3 -7 -10.5 -24t-13.5 -30t-13 -22q-12 -17 -28 -17q-15 0 -23.5 10t-8.5 25q0 9 2.5 26.5t2.5 23.5q5 68 5 123q0 101 -17.5 181t-48.5 138.5t-80 101t-105.5 69.5t-133 42.5t-154 21.5t-175.5 6h-224v-256q0 -26 -19 -45t-45 -19t-45 19
896
- l-512 512q-19 19 -19 45t19 45l512 512q19 19 45 19t45 -19t19 -45v-256h224q713 0 875 -403q53 -134 53 -333z" />
897
- <glyph glyph-name="github_alt" unicode="&#xf113;" horiz-adv-x="1664"
898
- d="M640 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1280 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1440 320
899
- q0 120 -69 204t-187 84q-41 0 -195 -21q-71 -11 -157 -11t-157 11q-152 21 -195 21q-118 0 -187 -84t-69 -204q0 -88 32 -153.5t81 -103t122 -60t140 -29.5t149 -7h168q82 0 149 7t140 29.5t122 60t81 103t32 153.5zM1664 496q0 -207 -61 -331q-38 -77 -105.5 -133t-141 -86
900
- t-170 -47.5t-171.5 -22t-167 -4.5q-78 0 -142 3t-147.5 12.5t-152.5 30t-137 51.5t-121 81t-86 115q-62 123 -62 331q0 237 136 396q-27 82 -27 170q0 116 51 218q108 0 190 -39.5t189 -123.5q147 35 309 35q148 0 280 -32q105 82 187 121t189 39q51 -102 51 -218
901
- q0 -87 -27 -168q136 -160 136 -398z" />
902
- <glyph glyph-name="folder_close_alt" unicode="&#xf114;" horiz-adv-x="1664"
903
- d="M1536 224v704q0 40 -28 68t-68 28h-704q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68v-960q0 -40 28 -68t68 -28h1216q40 0 68 28t28 68zM1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320
904
- q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
905
- <glyph glyph-name="folder_open_alt" unicode="&#xf115;" horiz-adv-x="1920"
906
- d="M1781 605q0 35 -53 35h-1088q-40 0 -85.5 -21.5t-71.5 -52.5l-294 -363q-18 -24 -18 -40q0 -35 53 -35h1088q40 0 86 22t71 53l294 363q18 22 18 39zM640 768h768v160q0 40 -28 68t-68 28h-576q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68
907
- v-853l256 315q44 53 116 87.5t140 34.5zM1909 605q0 -62 -46 -120l-295 -363q-43 -53 -116 -87.5t-140 -34.5h-1088q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158v-160h192q54 0 99 -24.5t67 -70.5q15 -32 15 -68z
908
- " />
909
- <glyph glyph-name="expand_alt" unicode="&#xf116;" horiz-adv-x="1792"
910
- />
911
- <glyph glyph-name="collapse_alt" unicode="&#xf117;" horiz-adv-x="1792"
912
- />
913
- <glyph glyph-name="smile" unicode="&#xf118;"
914
- d="M1134 461q-37 -121 -138 -195t-228 -74t-228 74t-138 195q-8 25 4 48.5t38 31.5q25 8 48.5 -4t31.5 -38q25 -80 92.5 -129.5t151.5 -49.5t151.5 49.5t92.5 129.5q8 26 32 38t49 4t37 -31.5t4 -48.5zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5
915
- t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5
916
- t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
917
- <glyph glyph-name="frown" unicode="&#xf119;"
918
- d="M1134 307q8 -25 -4 -48.5t-37 -31.5t-49 4t-32 38q-25 80 -92.5 129.5t-151.5 49.5t-151.5 -49.5t-92.5 -129.5q-8 -26 -31.5 -38t-48.5 -4q-26 8 -38 31.5t-4 48.5q37 121 138 195t228 74t228 -74t138 -195zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5
919
- t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204
920
- t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
921
- <glyph glyph-name="meh" unicode="&#xf11a;"
922
- d="M1152 448q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h640q26 0 45 -19t19 -45zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5
923
- t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640
924
- q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
925
- <glyph glyph-name="gamepad" unicode="&#xf11b;" horiz-adv-x="1920"
926
- d="M832 448v128q0 14 -9 23t-23 9h-192v192q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-192h-192q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h192v-192q0 -14 9 -23t23 -9h128q14 0 23 9t9 23v192h192q14 0 23 9t9 23zM1408 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5
927
- t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1920 512q0 -212 -150 -362t-362 -150q-192 0 -338 128h-220q-146 -128 -338 -128q-212 0 -362 150
928
- t-150 362t150 362t362 150h896q212 0 362 -150t150 -362z" />
929
- <glyph glyph-name="keyboard" unicode="&#xf11c;" horiz-adv-x="1920"
930
- d="M384 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM512 624v-96q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h224q16 0 16 -16zM384 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 368v-96q0 -16 -16 -16
931
- h-864q-16 0 -16 16v96q0 16 16 16h864q16 0 16 -16zM768 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM640 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1024 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16
932
- h96q16 0 16 -16zM896 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1280 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1152 880v-96
933
- q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 880v-352q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h112v240q0 16 16 16h96q16 0 16 -16zM1792 128v896h-1664v-896
934
- h1664zM1920 1024v-896q0 -53 -37.5 -90.5t-90.5 -37.5h-1664q-53 0 -90.5 37.5t-37.5 90.5v896q0 53 37.5 90.5t90.5 37.5h1664q53 0 90.5 -37.5t37.5 -90.5z" />
935
- <glyph glyph-name="flag_alt" unicode="&#xf11d;" horiz-adv-x="1792"
936
- d="M1664 491v616q-169 -91 -306 -91q-82 0 -145 32q-100 49 -184 76.5t-178 27.5q-173 0 -403 -127v-599q245 113 433 113q55 0 103.5 -7.5t98 -26t77 -31t82.5 -39.5l28 -14q44 -22 101 -22q120 0 293 92zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9
937
- h-64q-14 0 -23 9t-9 23v1266q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102
938
- q-15 -9 -33 -9q-16 0 -32 8q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
939
- <glyph glyph-name="flag_checkered" unicode="&#xf11e;" horiz-adv-x="1792"
940
- d="M832 536v192q-181 -16 -384 -117v-185q205 96 384 110zM832 954v197q-172 -8 -384 -126v-189q215 111 384 118zM1664 491v184q-235 -116 -384 -71v224q-20 6 -39 15q-5 3 -33 17t-34.5 17t-31.5 15t-34.5 15.5t-32.5 13t-36 12.5t-35 8.5t-39.5 7.5t-39.5 4t-44 2
941
- q-23 0 -49 -3v-222h19q102 0 192.5 -29t197.5 -82q19 -9 39 -15v-188q42 -17 91 -17q120 0 293 92zM1664 918v189q-169 -91 -306 -91q-45 0 -78 8v-196q148 -42 384 90zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v1266
942
- q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102q-15 -9 -33 -9q-16 0 -32 8
943
- q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
944
- <glyph glyph-name="terminal" unicode="&#xf120;" horiz-adv-x="1664"
945
- d="M585 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23zM1664 96v-64q0 -14 -9 -23t-23 -9h-960q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h960q14 0 23 -9
946
- t9 -23z" />
947
- <glyph glyph-name="code" unicode="&#xf121;" horiz-adv-x="1920"
948
- d="M617 137l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23zM1208 1204l-373 -1291q-4 -13 -15.5 -19.5t-23.5 -2.5l-62 17q-13 4 -19.5 15.5t-2.5 24.5
949
- l373 1291q4 13 15.5 19.5t23.5 2.5l62 -17q13 -4 19.5 -15.5t2.5 -24.5zM1865 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23z" />
950
- <glyph glyph-name="reply_all" unicode="&#xf122;" horiz-adv-x="1792"
951
- d="M640 454v-70q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-69l-397 -398q-19 -19 -19 -45t19 -45zM1792 416q0 -58 -17 -133.5t-38.5 -138t-48 -125t-40.5 -90.5l-20 -40q-8 -17 -28 -17q-6 0 -9 1
952
- q-25 8 -23 34q43 400 -106 565q-64 71 -170.5 110.5t-267.5 52.5v-251q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-262q411 -28 599 -221q169 -173 169 -509z" />
953
- <glyph glyph-name="star_half_empty" unicode="&#xf123;" horiz-adv-x="1664"
954
- d="M1186 579l257 250l-356 52l-66 10l-30 60l-159 322v-963l59 -31l318 -168l-60 355l-12 66zM1638 841l-363 -354l86 -500q5 -33 -6 -51.5t-34 -18.5q-17 0 -40 12l-449 236l-449 -236q-23 -12 -40 -12q-23 0 -34 18.5t-6 51.5l86 500l-364 354q-32 32 -23 59.5t54 34.5
955
- l502 73l225 455q20 41 49 41q28 0 49 -41l225 -455l502 -73q45 -7 54 -34.5t-24 -59.5z" />
956
- <glyph glyph-name="location_arrow" unicode="&#xf124;" horiz-adv-x="1408"
957
- d="M1401 1187l-640 -1280q-17 -35 -57 -35q-5 0 -15 2q-22 5 -35.5 22.5t-13.5 39.5v576h-576q-22 0 -39.5 13.5t-22.5 35.5t4 42t29 30l1280 640q13 7 29 7q27 0 45 -19q15 -14 18.5 -34.5t-6.5 -39.5z" />
958
- <glyph glyph-name="crop" unicode="&#xf125;" horiz-adv-x="1664"
959
- d="M557 256h595v595zM512 301l595 595h-595v-595zM1664 224v-192q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v224h-864q-14 0 -23 9t-9 23v864h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224v224q0 14 9 23t23 9h192q14 0 23 -9t9 -23
960
- v-224h851l246 247q10 9 23 9t23 -9q9 -10 9 -23t-9 -23l-247 -246v-851h224q14 0 23 -9t9 -23z" />
961
- <glyph glyph-name="code_fork" unicode="&#xf126;" horiz-adv-x="1024"
962
- d="M288 64q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM288 1216q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM928 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1024 1088q0 -52 -26 -96.5t-70 -69.5
963
- q-2 -287 -226 -414q-67 -38 -203 -81q-128 -40 -169.5 -71t-41.5 -100v-26q44 -25 70 -69.5t26 -96.5q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 52 26 96.5t70 69.5v820q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136q0 -52 -26 -96.5t-70 -69.5v-497
964
- q54 26 154 57q55 17 87.5 29.5t70.5 31t59 39.5t40.5 51t28 69.5t8.5 91.5q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136z" />
965
- <glyph glyph-name="unlink" unicode="&#xf127;" horiz-adv-x="1664"
966
- d="M439 265l-256 -256q-11 -9 -23 -9t-23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23zM608 224v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM384 448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23t9 23t23 9h320
967
- q14 0 23 -9t9 -23zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-334 335q-21 21 -42 56l239 18l273 -274q27 -27 68 -27.5t68 26.5l147 146q28 28 28 67q0 40 -28 68l-274 275l18 239q35 -21 56 -42l336 -336q84 -86 84 -204zM1031 1044l-239 -18
968
- l-273 274q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l274 -274l-18 -240q-35 21 -56 42l-336 336q-84 86 -84 204q0 120 85 203l147 146q83 83 203 83q121 0 204 -85l334 -335q21 -21 42 -56zM1664 960q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9
969
- t-9 23t9 23t23 9h320q14 0 23 -9t9 -23zM1120 1504v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM1527 1353l-256 -256q-11 -9 -23 -9t-23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
970
- <glyph glyph-name="question" unicode="&#xf128;" horiz-adv-x="1024"
971
- d="M704 280v-240q0 -16 -12 -28t-28 -12h-240q-16 0 -28 12t-12 28v240q0 16 12 28t28 12h240q16 0 28 -12t12 -28zM1020 880q0 -54 -15.5 -101t-35 -76.5t-55 -59.5t-57.5 -43.5t-61 -35.5q-41 -23 -68.5 -65t-27.5 -67q0 -17 -12 -32.5t-28 -15.5h-240q-15 0 -25.5 18.5
972
- t-10.5 37.5v45q0 83 65 156.5t143 108.5q59 27 84 56t25 76q0 42 -46.5 74t-107.5 32q-65 0 -108 -29q-35 -25 -107 -115q-13 -16 -31 -16q-12 0 -25 8l-164 125q-13 10 -15.5 25t5.5 28q160 266 464 266q80 0 161 -31t146 -83t106 -127.5t41 -158.5z" />
973
- <glyph glyph-name="_279" unicode="&#xf129;" horiz-adv-x="640"
974
- d="M640 192v-128q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64v384h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-576h64q26 0 45 -19t19 -45zM512 1344v-192q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v192
975
- q0 26 19 45t45 19h256q26 0 45 -19t19 -45z" />
976
- <glyph glyph-name="exclamation" unicode="&#xf12a;" horiz-adv-x="640"
977
- d="M512 288v-224q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v224q0 26 19 45t45 19h256q26 0 45 -19t19 -45zM542 1344l-28 -768q-1 -26 -20.5 -45t-45.5 -19h-256q-26 0 -45.5 19t-20.5 45l-28 768q-1 26 17.5 45t44.5 19h320q26 0 44.5 -19t17.5 -45z" />
978
- <glyph glyph-name="superscript" unicode="&#xf12b;"
979
- d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3q-1 -3 -2.5 -6.5t-3.5 -8t-3 -6.5q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109z
980
- M1534 846v-206h-514l-3 27q-4 28 -4 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q83 65 188 65q110 0 178 -59.5t68 -158.5q0 -56 -24.5 -103t-62 -76.5t-81.5 -58.5t-82 -50.5
981
- t-65.5 -51.5t-30.5 -63h232v80h126z" />
982
- <glyph glyph-name="subscript" unicode="&#xf12c;"
983
- d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3q-1 -3 -2.5 -6.5t-3.5 -8t-3 -6.5q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109z
984
- M1536 -50v-206h-514l-4 27q-3 45 -3 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q80 65 188 65q110 0 178 -59.5t68 -158.5q0 -66 -34.5 -118.5t-84 -86t-99.5 -62.5t-87 -63t-41 -73
985
- h232v80h126z" />
986
- <glyph glyph-name="_283" unicode="&#xf12d;" horiz-adv-x="1920"
987
- d="M896 128l336 384h-768l-336 -384h768zM1909 1205q15 -34 9.5 -71.5t-30.5 -65.5l-896 -1024q-38 -44 -96 -44h-768q-38 0 -69.5 20.5t-47.5 54.5q-15 34 -9.5 71.5t30.5 65.5l896 1024q38 44 96 44h768q38 0 69.5 -20.5t47.5 -54.5z" />
988
- <glyph glyph-name="puzzle_piece" unicode="&#xf12e;" horiz-adv-x="1664"
989
- d="M1664 438q0 -81 -44.5 -135t-123.5 -54q-41 0 -77.5 17.5t-59 38t-56.5 38t-71 17.5q-110 0 -110 -124q0 -39 16 -115t15 -115v-5q-22 0 -33 -1q-34 -3 -97.5 -11.5t-115.5 -13.5t-98 -5q-61 0 -103 26.5t-42 83.5q0 37 17.5 71t38 56.5t38 59t17.5 77.5q0 79 -54 123.5
990
- t-135 44.5q-84 0 -143 -45.5t-59 -127.5q0 -43 15 -83t33.5 -64.5t33.5 -53t15 -50.5q0 -45 -46 -89q-37 -35 -117 -35q-95 0 -245 24q-9 2 -27.5 4t-27.5 4l-13 2q-1 0 -3 1q-2 0 -2 1v1024q2 -1 17.5 -3.5t34 -5t21.5 -3.5q150 -24 245 -24q80 0 117 35q46 44 46 89
991
- q0 22 -15 50.5t-33.5 53t-33.5 64.5t-15 83q0 82 59 127.5t144 45.5q80 0 134 -44.5t54 -123.5q0 -41 -17.5 -77.5t-38 -59t-38 -56.5t-17.5 -71q0 -57 42 -83.5t103 -26.5q64 0 180 15t163 17v-2q-1 -2 -3.5 -17.5t-5 -34t-3.5 -21.5q-24 -150 -24 -245q0 -80 35 -117
992
- q44 -46 89 -46q22 0 50.5 15t53 33.5t64.5 33.5t83 15q82 0 127.5 -59t45.5 -143z" />
993
- <glyph glyph-name="microphone" unicode="&#xf130;" horiz-adv-x="1152"
994
- d="M1152 832v-128q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-217 24 -364.5 187.5t-147.5 384.5v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -185 131.5 -316.5t316.5 -131.5
995
- t316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45zM896 1216v-512q0 -132 -94 -226t-226 -94t-226 94t-94 226v512q0 132 94 226t226 94t226 -94t94 -226z" />
996
- <glyph glyph-name="microphone_off" unicode="&#xf131;" horiz-adv-x="1408"
997
- d="M271 591l-101 -101q-42 103 -42 214v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -53 15 -113zM1385 1193l-361 -361v-128q0 -132 -94 -226t-226 -94q-55 0 -109 19l-96 -96q97 -51 205 -51q185 0 316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45v-128
998
- q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-125 13 -235 81l-254 -254q-10 -10 -23 -10t-23 10l-82 82q-10 10 -10 23t10 23l1234 1234q10 10 23 10t23 -10l82 -82q10 -10 10 -23
999
- t-10 -23zM1005 1325l-621 -621v512q0 132 94 226t226 94q102 0 184.5 -59t116.5 -152z" />
1000
- <glyph glyph-name="shield" unicode="&#xf132;" horiz-adv-x="1280"
1001
- d="M1088 576v640h-448v-1137q119 63 213 137q235 184 235 360zM1280 1344v-768q0 -86 -33.5 -170.5t-83 -150t-118 -127.5t-126.5 -103t-121 -77.5t-89.5 -49.5t-42.5 -20q-12 -6 -26 -6t-26 6q-16 7 -42.5 20t-89.5 49.5t-121 77.5t-126.5 103t-118 127.5t-83 150
1002
- t-33.5 170.5v768q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
1003
- <glyph glyph-name="calendar_empty" unicode="&#xf133;" horiz-adv-x="1664"
1004
- d="M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280
1005
- q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
1006
- <glyph glyph-name="fire_extinguisher" unicode="&#xf134;" horiz-adv-x="1408"
1007
- d="M512 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 1376v-320q0 -16 -12 -25q-8 -7 -20 -7q-4 0 -7 1l-448 96q-11 2 -18 11t-7 20h-256v-102q111 -23 183.5 -111t72.5 -203v-800q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v800
1008
- q0 106 62.5 190.5t161.5 114.5v111h-32q-59 0 -115 -23.5t-91.5 -53t-66 -66.5t-40.5 -53.5t-14 -24.5q-17 -35 -57 -35q-16 0 -29 7q-23 12 -31.5 37t3.5 49q5 10 14.5 26t37.5 53.5t60.5 70t85 67t108.5 52.5q-25 42 -25 86q0 66 47 113t113 47t113 -47t47 -113
1009
- q0 -33 -14 -64h302q0 11 7 20t18 11l448 96q3 1 7 1q12 0 20 -7q12 -9 12 -25z" />
1010
- <glyph glyph-name="rocket" unicode="&#xf135;" horiz-adv-x="1664"
1011
- d="M1440 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1664 1376q0 -249 -75.5 -430.5t-253.5 -360.5q-81 -80 -195 -176l-20 -379q-2 -16 -16 -26l-384 -224q-7 -4 -16 -4q-12 0 -23 9l-64 64q-13 14 -8 32l85 276l-281 281l-276 -85q-3 -1 -9 -1
1012
- q-14 0 -23 9l-64 64q-17 19 -5 39l224 384q10 14 26 16l379 20q96 114 176 195q188 187 358 258t431 71q14 0 24 -9.5t10 -22.5z" />
1013
- <glyph glyph-name="maxcdn" unicode="&#xf136;" horiz-adv-x="1792"
1014
- d="M1745 763l-164 -763h-334l178 832q13 56 -15 88q-27 33 -83 33h-169l-204 -953h-334l204 953h-286l-204 -953h-334l204 953l-153 327h1276q101 0 189.5 -40.5t147.5 -113.5q60 -73 81 -168.5t0 -194.5z" />
1015
- <glyph glyph-name="chevron_sign_left" unicode="&#xf137;"
1016
- d="M909 141l102 102q19 19 19 45t-19 45l-307 307l307 307q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
1017
- t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
1018
- <glyph glyph-name="chevron_sign_right" unicode="&#xf138;"
1019
- d="M717 141l454 454q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l307 -307l-307 -307q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
1020
- t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
1021
- <glyph glyph-name="chevron_sign_up" unicode="&#xf139;"
1022
- d="M1165 397l102 102q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l307 307l307 -307q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
1023
- t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
1024
- <glyph glyph-name="chevron_sign_down" unicode="&#xf13a;"
1025
- d="M813 237l454 454q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-307 -307l-307 307q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
1026
- t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
1027
- <glyph glyph-name="html5" unicode="&#xf13b;" horiz-adv-x="1408"
1028
- d="M1130 939l16 175h-884l47 -534h612l-22 -228l-197 -53l-196 53l-13 140h-175l22 -278l362 -100h4v1l359 99l50 544h-644l-15 181h674zM0 1408h1408l-128 -1438l-578 -162l-574 162z" />
1029
- <glyph glyph-name="css3" unicode="&#xf13c;" horiz-adv-x="1792"
1030
- d="M275 1408h1505l-266 -1333l-804 -267l-698 267l71 356h297l-29 -147l422 -161l486 161l68 339h-1208l58 297h1209l38 191h-1208z" />
1031
- <glyph glyph-name="anchor" unicode="&#xf13d;" horiz-adv-x="1792"
1032
- d="M960 1280q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1792 352v-352q0 -22 -20 -30q-8 -2 -12 -2q-12 0 -23 9l-93 93q-119 -143 -318.5 -226.5t-429.5 -83.5t-429.5 83.5t-318.5 226.5l-93 -93q-9 -9 -23 -9q-4 0 -12 2q-20 8 -20 30v352
1033
- q0 14 9 23t23 9h352q22 0 30 -20q8 -19 -7 -35l-100 -100q67 -91 189.5 -153.5t271.5 -82.5v647h-192q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h192v163q-58 34 -93 92.5t-35 128.5q0 106 75 181t181 75t181 -75t75 -181q0 -70 -35 -128.5t-93 -92.5v-163h192q26 0 45 -19
1034
- t19 -45v-128q0 -26 -19 -45t-45 -19h-192v-647q149 20 271.5 82.5t189.5 153.5l-100 100q-15 16 -7 35q8 20 30 20h352q14 0 23 -9t9 -23z" />
1035
- <glyph glyph-name="unlock_alt" unicode="&#xf13e;" horiz-adv-x="1152"
1036
- d="M1056 768q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v320q0 185 131.5 316.5t316.5 131.5t316.5 -131.5t131.5 -316.5q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45q0 106 -75 181t-181 75t-181 -75t-75 -181
1037
- v-320h736z" />
1038
- <glyph glyph-name="bullseye" unicode="&#xf140;"
1039
- d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM1152 640q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM1280 640q0 -212 -150 -362t-362 -150t-362 150
1040
- t-150 362t150 362t362 150t362 -150t150 -362zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640
1041
- q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
1042
- <glyph glyph-name="ellipsis_horizontal" unicode="&#xf141;" horiz-adv-x="1408"
1043
- d="M384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM896 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM1408 800v-192q0 -40 -28 -68t-68 -28h-192
1044
- q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
1045
- <glyph glyph-name="ellipsis_vertical" unicode="&#xf142;" horiz-adv-x="384"
1046
- d="M384 288v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 1312v-192q0 -40 -28 -68t-68 -28h-192
1047
- q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
1048
- <glyph glyph-name="_303" unicode="&#xf143;"
1049
- d="M512 256q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM863 162q-13 233 -176.5 396.5t-396.5 176.5q-14 1 -24 -9t-10 -23v-128q0 -13 8.5 -22t21.5 -10q154 -11 264 -121t121 -264q1 -13 10 -21.5t22 -8.5h128
1050
- q13 0 23 10t9 24zM1247 161q-5 154 -56 297.5t-139.5 260t-205 205t-260 139.5t-297.5 56q-14 1 -23 -9q-10 -10 -10 -23v-128q0 -13 9 -22t22 -10q204 -7 378 -111.5t278.5 -278.5t111.5 -378q1 -13 10 -22t22 -9h128q13 0 23 10q11 9 9 23zM1536 1120v-960
1051
- q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
1052
- <glyph glyph-name="play_sign" unicode="&#xf144;"
1053
- d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1152 585q32 18 32 55t-32 55l-544 320q-31 19 -64 1q-32 -19 -32 -56v-640q0 -37 32 -56
1054
- q16 -8 32 -8q17 0 32 9z" />
1055
- <glyph glyph-name="ticket" unicode="&#xf145;" horiz-adv-x="1792"
1056
- d="M1024 1084l316 -316l-572 -572l-316 316zM813 105l618 618q19 19 19 45t-19 45l-362 362q-18 18 -45 18t-45 -18l-618 -618q-19 -19 -19 -45t19 -45l362 -362q18 -18 45 -18t45 18zM1702 742l-907 -908q-37 -37 -90.5 -37t-90.5 37l-126 126q56 56 56 136t-56 136
1057
- t-136 56t-136 -56l-125 126q-37 37 -37 90.5t37 90.5l907 906q37 37 90.5 37t90.5 -37l125 -125q-56 -56 -56 -136t56 -136t136 -56t136 56l126 -125q37 -37 37 -90.5t-37 -90.5z" />
1058
- <glyph glyph-name="minus_sign_alt" unicode="&#xf146;"
1059
- d="M1280 576v128q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h896q26 0 45 19t19 45zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5
1060
- t84.5 -203.5z" />
1061
- <glyph glyph-name="check_minus" unicode="&#xf147;" horiz-adv-x="1408"
1062
- d="M1152 736v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h832q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5
1063
- t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
1064
- <glyph glyph-name="level_up" unicode="&#xf148;" horiz-adv-x="1024"
1065
- d="M1018 933q-18 -37 -58 -37h-192v-864q0 -14 -9 -23t-23 -9h-704q-21 0 -29 18q-8 20 4 35l160 192q9 11 25 11h320v640h-192q-40 0 -58 37q-17 37 9 68l320 384q18 22 49 22t49 -22l320 -384q27 -32 9 -68z" />
1066
- <glyph glyph-name="level_down" unicode="&#xf149;" horiz-adv-x="1024"
1067
- d="M32 1280h704q13 0 22.5 -9.5t9.5 -23.5v-863h192q40 0 58 -37t-9 -69l-320 -384q-18 -22 -49 -22t-49 22l-320 384q-26 31 -9 69q18 37 58 37h192v640h-320q-14 0 -25 11l-160 192q-13 14 -4 34q9 19 29 19z" />
1068
- <glyph glyph-name="check_sign" unicode="&#xf14a;"
1069
- d="M685 237l614 614q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-467 -467l-211 211q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l358 -358q19 -19 45 -19t45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5
1070
- t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
1071
- <glyph glyph-name="edit_sign" unicode="&#xf14b;"
1072
- d="M404 428l152 -152l-52 -52h-56v96h-96v56zM818 818q14 -13 -3 -30l-291 -291q-17 -17 -30 -3q-14 13 3 30l291 291q17 17 30 3zM544 128l544 544l-288 288l-544 -544v-288h288zM1152 736l92 92q28 28 28 68t-28 68l-152 152q-28 28 -68 28t-68 -28l-92 -92zM1536 1120
1073
- v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
1074
- <glyph glyph-name="_312" unicode="&#xf14c;"
1075
- d="M1280 608v480q0 26 -19 45t-45 19h-480q-42 0 -59 -39q-17 -41 14 -70l144 -144l-534 -534q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l534 534l144 -144q18 -19 45 -19q12 0 25 5q39 17 39 59zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960
1076
- q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
1077
- <glyph glyph-name="share_sign" unicode="&#xf14d;"
1078
- d="M1005 435l352 352q19 19 19 45t-19 45l-352 352q-30 31 -69 14q-40 -17 -40 -59v-160q-119 0 -216 -19.5t-162.5 -51t-114 -79t-76.5 -95.5t-44.5 -109t-21.5 -111.5t-5 -110.5q0 -181 167 -404q11 -12 25 -12q7 0 13 3q22 9 19 33q-44 354 62 473q46 52 130 75.5
1079
- t224 23.5v-160q0 -42 40 -59q12 -5 24 -5q26 0 45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
1080
- <glyph glyph-name="compass" unicode="&#xf14e;"
1081
- d="M640 448l256 128l-256 128v-256zM1024 1039v-542l-512 -256v542zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103
1082
- t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
1083
- <glyph glyph-name="collapse" unicode="&#xf150;"
1084
- d="M1145 861q18 -35 -5 -66l-320 -448q-19 -27 -52 -27t-52 27l-320 448q-23 31 -5 66q17 35 57 35h640q40 0 57 -35zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120
1085
- v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
1086
- <glyph glyph-name="collapse_top" unicode="&#xf151;"
1087
- d="M1145 419q-17 -35 -57 -35h-640q-40 0 -57 35q-18 35 5 66l320 448q19 27 52 27t52 -27l320 -448q23 -31 5 -66zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120v-960
1088
- q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
1089
- <glyph glyph-name="_317" unicode="&#xf152;"
1090
- d="M1088 640q0 -33 -27 -52l-448 -320q-31 -23 -66 -5q-35 17 -35 57v640q0 40 35 57q35 18 66 -5l448 -320q27 -19 27 -52zM1280 160v960q0 14 -9 23t-23 9h-960q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h960q14 0 23 9t9 23zM1536 1120v-960q0 -119 -84.5 -203.5
1091
- t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
1092
- <glyph glyph-name="eur" unicode="&#xf153;" horiz-adv-x="1024"
1093
- d="M976 229l35 -159q3 -12 -3 -22.5t-17 -14.5l-5 -1q-4 -2 -10.5 -3.5t-16 -4.5t-21.5 -5.5t-25.5 -5t-30 -5t-33.5 -4.5t-36.5 -3t-38.5 -1q-234 0 -409 130.5t-238 351.5h-95q-13 0 -22.5 9.5t-9.5 22.5v113q0 13 9.5 22.5t22.5 9.5h66q-2 57 1 105h-67q-14 0 -23 9
1094
- t-9 23v114q0 14 9 23t23 9h98q67 210 243.5 338t400.5 128q102 0 194 -23q11 -3 20 -15q6 -11 3 -24l-43 -159q-3 -13 -14 -19.5t-24 -2.5l-4 1q-4 1 -11.5 2.5l-17.5 3.5t-22.5 3.5t-26 3t-29 2.5t-29.5 1q-126 0 -226 -64t-150 -176h468q16 0 25 -12q10 -12 7 -26
1095
- l-24 -114q-5 -26 -32 -26h-488q-3 -37 0 -105h459q15 0 25 -12q9 -12 6 -27l-24 -112q-2 -11 -11 -18.5t-20 -7.5h-387q48 -117 149.5 -185.5t228.5 -68.5q18 0 36 1.5t33.5 3.5t29.5 4.5t24.5 5t18.5 4.5l12 3l5 2q13 5 26 -2q12 -7 15 -21z" />
1096
- <glyph glyph-name="gbp" unicode="&#xf154;" horiz-adv-x="1024"
1097
- d="M1020 399v-367q0 -14 -9 -23t-23 -9h-956q-14 0 -23 9t-9 23v150q0 13 9.5 22.5t22.5 9.5h97v383h-95q-14 0 -23 9.5t-9 22.5v131q0 14 9 23t23 9h95v223q0 171 123.5 282t314.5 111q185 0 335 -125q9 -8 10 -20.5t-7 -22.5l-103 -127q-9 -11 -22 -12q-13 -2 -23 7
1098
- q-5 5 -26 19t-69 32t-93 18q-85 0 -137 -47t-52 -123v-215h305q13 0 22.5 -9t9.5 -23v-131q0 -13 -9.5 -22.5t-22.5 -9.5h-305v-379h414v181q0 13 9 22.5t23 9.5h162q14 0 23 -9.5t9 -22.5z" />
1099
- <glyph glyph-name="usd" unicode="&#xf155;" horiz-adv-x="1024"
1100
- d="M978 351q0 -153 -99.5 -263.5t-258.5 -136.5v-175q0 -14 -9 -23t-23 -9h-135q-13 0 -22.5 9.5t-9.5 22.5v175q-66 9 -127.5 31t-101.5 44.5t-74 48t-46.5 37.5t-17.5 18q-17 21 -2 41l103 135q7 10 23 12q15 2 24 -9l2 -2q113 -99 243 -125q37 -8 74 -8q81 0 142.5 43
1101
- t61.5 122q0 28 -15 53t-33.5 42t-58.5 37.5t-66 32t-80 32.5q-39 16 -61.5 25t-61.5 26.5t-62.5 31t-56.5 35.5t-53.5 42.5t-43.5 49t-35.5 58t-21 66.5t-8.5 78q0 138 98 242t255 134v180q0 13 9.5 22.5t22.5 9.5h135q14 0 23 -9t9 -23v-176q57 -6 110.5 -23t87 -33.5
1102
- t63.5 -37.5t39 -29t15 -14q17 -18 5 -38l-81 -146q-8 -15 -23 -16q-14 -3 -27 7q-3 3 -14.5 12t-39 26.5t-58.5 32t-74.5 26t-85.5 11.5q-95 0 -155 -43t-60 -111q0 -26 8.5 -48t29.5 -41.5t39.5 -33t56 -31t60.5 -27t70 -27.5q53 -20 81 -31.5t76 -35t75.5 -42.5t62 -50
1103
- t53 -63.5t31.5 -76.5t13 -94z" />
1104
- <glyph glyph-name="inr" unicode="&#xf156;" horiz-adv-x="898"
1105
- d="M898 1066v-102q0 -14 -9 -23t-23 -9h-168q-23 -144 -129 -234t-276 -110q167 -178 459 -536q14 -16 4 -34q-8 -18 -29 -18h-195q-16 0 -25 12q-306 367 -498 571q-9 9 -9 22v127q0 13 9.5 22.5t22.5 9.5h112q132 0 212.5 43t102.5 125h-427q-14 0 -23 9t-9 23v102
1106
- q0 14 9 23t23 9h413q-57 113 -268 113h-145q-13 0 -22.5 9.5t-9.5 22.5v133q0 14 9 23t23 9h832q14 0 23 -9t9 -23v-102q0 -14 -9 -23t-23 -9h-233q47 -61 64 -144h171q14 0 23 -9t9 -23z" />
1107
- <glyph glyph-name="jpy" unicode="&#xf157;" horiz-adv-x="1027"
1108
- d="M603 0h-172q-13 0 -22.5 9t-9.5 23v330h-288q-13 0 -22.5 9t-9.5 23v103q0 13 9.5 22.5t22.5 9.5h288v85h-288q-13 0 -22.5 9t-9.5 23v104q0 13 9.5 22.5t22.5 9.5h214l-321 578q-8 16 0 32q10 16 28 16h194q19 0 29 -18l215 -425q19 -38 56 -125q10 24 30.5 68t27.5 61
1109
- l191 420q8 19 29 19h191q17 0 27 -16q9 -14 1 -31l-313 -579h215q13 0 22.5 -9.5t9.5 -22.5v-104q0 -14 -9.5 -23t-22.5 -9h-290v-85h290q13 0 22.5 -9.5t9.5 -22.5v-103q0 -14 -9.5 -23t-22.5 -9h-290v-330q0 -13 -9.5 -22.5t-22.5 -9.5z" />
1110
- <glyph glyph-name="rub" unicode="&#xf158;" horiz-adv-x="1280"
1111
- d="M1043 971q0 100 -65 162t-171 62h-320v-448h320q106 0 171 62t65 162zM1280 971q0 -193 -126.5 -315t-326.5 -122h-340v-118h505q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-505v-192q0 -14 -9.5 -23t-22.5 -9h-167q-14 0 -23 9t-9 23v192h-224q-14 0 -23 9t-9 23v128
1112
- q0 14 9 23t23 9h224v118h-224q-14 0 -23 9t-9 23v149q0 13 9 22.5t23 9.5h224v629q0 14 9 23t23 9h539q200 0 326.5 -122t126.5 -315z" />
1113
- <glyph glyph-name="krw" unicode="&#xf159;" horiz-adv-x="1792"
1114
- d="M514 341l81 299h-159l75 -300q1 -1 1 -3t1 -3q0 1 0.5 3.5t0.5 3.5zM630 768l35 128h-292l32 -128h225zM822 768h139l-35 128h-70zM1271 340l78 300h-162l81 -299q0 -1 0.5 -3.5t1.5 -3.5q0 1 0.5 3t0.5 3zM1382 768l33 128h-297l34 -128h230zM1792 736v-64q0 -14 -9 -23
1115
- t-23 -9h-213l-164 -616q-7 -24 -31 -24h-159q-24 0 -31 24l-166 616h-209l-167 -616q-7 -24 -31 -24h-159q-11 0 -19.5 7t-10.5 17l-160 616h-208q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h175l-33 128h-142q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h109l-89 344q-5 15 5 28
1116
- q10 12 26 12h137q26 0 31 -24l90 -360h359l97 360q7 24 31 24h126q24 0 31 -24l98 -360h365l93 360q5 24 31 24h137q16 0 26 -12q10 -13 5 -28l-91 -344h111q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-145l-34 -128h179q14 0 23 -9t9 -23z" />
1117
- <glyph glyph-name="btc" unicode="&#xf15a;" horiz-adv-x="1280"
1118
- d="M1167 896q18 -182 -131 -258q117 -28 175 -103t45 -214q-7 -71 -32.5 -125t-64.5 -89t-97 -58.5t-121.5 -34.5t-145.5 -15v-255h-154v251q-80 0 -122 1v-252h-154v255q-18 0 -54 0.5t-55 0.5h-200l31 183h111q50 0 58 51v402h16q-6 1 -16 1v287q-13 68 -89 68h-111v164
1119
- l212 -1q64 0 97 1v252h154v-247q82 2 122 2v245h154v-252q79 -7 140 -22.5t113 -45t82.5 -78t36.5 -114.5zM952 351q0 36 -15 64t-37 46t-57.5 30.5t-65.5 18.5t-74 9t-69 3t-64.5 -1t-47.5 -1v-338q8 0 37 -0.5t48 -0.5t53 1.5t58.5 4t57 8.5t55.5 14t47.5 21t39.5 30
1120
- t24.5 40t9.5 51zM881 827q0 33 -12.5 58.5t-30.5 42t-48 28t-55 16.5t-61.5 8t-58 2.5t-54 -1t-39.5 -0.5v-307q5 0 34.5 -0.5t46.5 0t50 2t55 5.5t51.5 11t48.5 18.5t37 27t27 38.5t9 51z" />
1121
- <glyph glyph-name="file" unicode="&#xf15b;"
1122
- d="M1024 1024v472q22 -14 36 -28l408 -408q14 -14 28 -36h-472zM896 992q0 -40 28 -68t68 -28h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544z" />
1123
- <glyph glyph-name="file_text" unicode="&#xf15c;"
1124
- d="M1468 1060q14 -14 28 -36h-472v472q22 -14 36 -28zM992 896h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544q0 -40 28 -68t68 -28zM1152 160v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704
1125
- q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23z" />
1126
- <glyph glyph-name="sort_by_alphabet" unicode="&#xf15d;" horiz-adv-x="1664"
1127
- d="M1191 1128h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1572 -23
1128
- v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -11v-2l14 2q9 2 30 2h248v119h121zM1661 874v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162
1129
- l230 -662h70z" />
1130
- <glyph glyph-name="_329" unicode="&#xf15e;" horiz-adv-x="1664"
1131
- d="M1191 104h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1661 -150
1132
- v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162l230 -662h70zM1572 1001v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -10v-3l14 3q9 1 30 1h248
1133
- v119h121z" />
1134
- <glyph glyph-name="sort_by_attributes" unicode="&#xf160;" horiz-adv-x="1792"
1135
- d="M736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1792 -32v-192q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832
1136
- q14 0 23 -9t9 -23zM1600 480v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1408 992v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1216 1504v-192q0 -14 -9 -23t-23 -9h-256
1137
- q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23z" />
1138
- <glyph glyph-name="sort_by_attributes_alt" unicode="&#xf161;" horiz-adv-x="1792"
1139
- d="M1216 -32v-192q0 -14 -9 -23t-23 -9h-256q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192
1140
- q14 0 23 -9t9 -23zM1408 480v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1600 992v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1792 1504v-192q0 -14 -9 -23t-23 -9h-832
1141
- q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832q14 0 23 -9t9 -23z" />
1142
- <glyph glyph-name="sort_by_order" unicode="&#xf162;"
1143
- d="M1346 223q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23
1144
- zM1486 165q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5
1145
- t82 -252.5zM1456 882v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165z" />
1146
- <glyph glyph-name="sort_by_order_alt" unicode="&#xf163;"
1147
- d="M1346 1247q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9
1148
- t9 -23zM1456 -142v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165zM1486 1189q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13
1149
- q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5t82 -252.5z" />
1150
- <glyph glyph-name="_334" unicode="&#xf164;" horiz-adv-x="1664"
1151
- d="M256 192q0 26 -19 45t-45 19q-27 0 -45.5 -19t-18.5 -45q0 -27 18.5 -45.5t45.5 -18.5q26 0 45 18.5t19 45.5zM416 704v-640q0 -26 -19 -45t-45 -19h-288q-26 0 -45 19t-19 45v640q0 26 19 45t45 19h288q26 0 45 -19t19 -45zM1600 704q0 -86 -55 -149q15 -44 15 -76
1152
- q3 -76 -43 -137q17 -56 0 -117q-15 -57 -54 -94q9 -112 -49 -181q-64 -76 -197 -78h-36h-76h-17q-66 0 -144 15.5t-121.5 29t-120.5 39.5q-123 43 -158 44q-26 1 -45 19.5t-19 44.5v641q0 25 18 43.5t43 20.5q24 2 76 59t101 121q68 87 101 120q18 18 31 48t17.5 48.5
1153
- t13.5 60.5q7 39 12.5 61t19.5 52t34 50q19 19 45 19q46 0 82.5 -10.5t60 -26t40 -40.5t24 -45t12 -50t5 -45t0.5 -39q0 -38 -9.5 -76t-19 -60t-27.5 -56q-3 -6 -10 -18t-11 -22t-8 -24h277q78 0 135 -57t57 -135z" />
1154
- <glyph glyph-name="_335" unicode="&#xf165;" horiz-adv-x="1664"
1155
- d="M256 960q0 -26 -19 -45t-45 -19q-27 0 -45.5 19t-18.5 45q0 27 18.5 45.5t45.5 18.5q26 0 45 -18.5t19 -45.5zM416 448v640q0 26 -19 45t-45 19h-288q-26 0 -45 -19t-19 -45v-640q0 -26 19 -45t45 -19h288q26 0 45 19t19 45zM1545 597q55 -61 55 -149q-1 -78 -57.5 -135
1156
- t-134.5 -57h-277q4 -14 8 -24t11 -22t10 -18q18 -37 27 -57t19 -58.5t10 -76.5q0 -24 -0.5 -39t-5 -45t-12 -50t-24 -45t-40 -40.5t-60 -26t-82.5 -10.5q-26 0 -45 19q-20 20 -34 50t-19.5 52t-12.5 61q-9 42 -13.5 60.5t-17.5 48.5t-31 48q-33 33 -101 120q-49 64 -101 121
1157
- t-76 59q-25 2 -43 20.5t-18 43.5v641q0 26 19 44.5t45 19.5q35 1 158 44q77 26 120.5 39.5t121.5 29t144 15.5h17h76h36q133 -2 197 -78q58 -69 49 -181q39 -37 54 -94q17 -61 0 -117q46 -61 43 -137q0 -32 -15 -76z" />
1158
- <glyph glyph-name="youtube_sign" unicode="&#xf166;"
1159
- d="M919 233v157q0 50 -29 50q-17 0 -33 -16v-224q16 -16 33 -16q29 0 29 49zM1103 355h66v34q0 51 -33 51t-33 -51v-34zM532 621v-70h-80v-423h-74v423h-78v70h232zM733 495v-367h-67v40q-39 -45 -76 -45q-33 0 -42 28q-6 17 -6 54v290h66v-270q0 -24 1 -26q1 -15 15 -15
1160
- q20 0 42 31v280h67zM985 384v-146q0 -52 -7 -73q-12 -42 -53 -42q-35 0 -68 41v-36h-67v493h67v-161q32 40 68 40q41 0 53 -42q7 -21 7 -74zM1236 255v-9q0 -29 -2 -43q-3 -22 -15 -40q-27 -40 -80 -40q-52 0 -81 38q-21 27 -21 86v129q0 59 20 86q29 38 80 38t78 -38
1161
- q21 -29 21 -86v-76h-133v-65q0 -51 34 -51q24 0 30 26q0 1 0.5 7t0.5 16.5v21.5h68zM785 1079v-156q0 -51 -32 -51t-32 51v156q0 52 32 52t32 -52zM1318 366q0 177 -19 260q-10 44 -43 73.5t-76 34.5q-136 15 -412 15q-275 0 -411 -15q-44 -5 -76.5 -34.5t-42.5 -73.5
1162
- q-20 -87 -20 -260q0 -176 20 -260q10 -43 42.5 -73t75.5 -35q137 -15 412 -15t412 15q43 5 75.5 35t42.5 73q20 84 20 260zM563 1017l90 296h-75l-51 -195l-53 195h-78q7 -23 23 -69l24 -69q35 -103 46 -158v-201h74v201zM852 936v130q0 58 -21 87q-29 38 -78 38
1163
- q-51 0 -78 -38q-21 -29 -21 -87v-130q0 -58 21 -87q27 -38 78 -38q49 0 78 38q21 27 21 87zM1033 816h67v370h-67v-283q-22 -31 -42 -31q-15 0 -16 16q-1 2 -1 26v272h-67v-293q0 -37 6 -55q11 -27 43 -27q36 0 77 45v-40zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5
1164
- h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
1165
- <glyph glyph-name="youtube" unicode="&#xf167;"
1166
- d="M971 292v-211q0 -67 -39 -67q-23 0 -45 22v301q22 22 45 22q39 0 39 -67zM1309 291v-46h-90v46q0 68 45 68t45 -68zM343 509h107v94h-312v-94h105v-569h100v569zM631 -60h89v494h-89v-378q-30 -42 -57 -42q-18 0 -21 21q-1 3 -1 35v364h-89v-391q0 -49 8 -73
1167
- q12 -37 58 -37q48 0 102 61v-54zM1060 88v197q0 73 -9 99q-17 56 -71 56q-50 0 -93 -54v217h-89v-663h89v48q45 -55 93 -55q54 0 71 55q9 27 9 100zM1398 98v13h-91q0 -51 -2 -61q-7 -36 -40 -36q-46 0 -46 69v87h179v103q0 79 -27 116q-39 51 -106 51q-68 0 -107 -51
1168
- q-28 -37 -28 -116v-173q0 -79 29 -116q39 -51 108 -51q72 0 108 53q18 27 21 54q2 9 2 58zM790 1011v210q0 69 -43 69t-43 -69v-210q0 -70 43 -70t43 70zM1509 260q0 -234 -26 -350q-14 -59 -58 -99t-102 -46q-184 -21 -555 -21t-555 21q-58 6 -102.5 46t-57.5 99
1169
- q-26 112 -26 350q0 234 26 350q14 59 58 99t103 47q183 20 554 20t555 -20q58 -7 102.5 -47t57.5 -99q26 -112 26 -350zM511 1536h102l-121 -399v-271h-100v271q-14 74 -61 212q-37 103 -65 187h106l71 -263zM881 1203v-175q0 -81 -28 -118q-38 -51 -106 -51q-67 0 -105 51
1170
- q-28 38 -28 118v175q0 80 28 117q38 51 105 51q68 0 106 -51q28 -37 28 -117zM1216 1365v-499h-91v55q-53 -62 -103 -62q-46 0 -59 37q-8 24 -8 75v394h91v-367q0 -33 1 -35q3 -22 21 -22q27 0 57 43v381h91z" />
1171
- <glyph glyph-name="xing" unicode="&#xf168;" horiz-adv-x="1408"
1172
- d="M597 869q-10 -18 -257 -456q-27 -46 -65 -46h-239q-21 0 -31 17t0 36l253 448q1 0 0 1l-161 279q-12 22 -1 37q9 15 32 15h239q40 0 66 -45zM1403 1511q11 -16 0 -37l-528 -934v-1l336 -615q11 -20 1 -37q-10 -15 -32 -15h-239q-42 0 -66 45l-339 622q18 32 531 942
1173
- q25 45 64 45h241q22 0 31 -15z" />
1174
- <glyph glyph-name="xing_sign" unicode="&#xf169;"
1175
- d="M685 771q0 1 -126 222q-21 34 -52 34h-184q-18 0 -26 -11q-7 -12 1 -29l125 -216v-1l-196 -346q-9 -14 0 -28q8 -13 24 -13h185q31 0 50 36zM1309 1268q-7 12 -24 12h-187q-30 0 -49 -35l-411 -729q1 -2 262 -481q20 -35 52 -35h184q18 0 25 12q8 13 -1 28l-260 476v1
1176
- l409 723q8 16 0 28zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
1177
- <glyph glyph-name="youtube_play" unicode="&#xf16a;" horiz-adv-x="1792"
1178
- d="M711 408l484 250l-484 253v-503zM896 1270q168 0 324.5 -4.5t229.5 -9.5l73 -4q1 0 17 -1.5t23 -3t23.5 -4.5t28.5 -8t28 -13t31 -19.5t29 -26.5q6 -6 15.5 -18.5t29 -58.5t26.5 -101q8 -64 12.5 -136.5t5.5 -113.5v-40v-136q1 -145 -18 -290q-7 -55 -25 -99.5t-32 -61.5
1179
- l-14 -17q-14 -15 -29 -26.5t-31 -19t-28 -12.5t-28.5 -8t-24 -4.5t-23 -3t-16.5 -1.5q-251 -19 -627 -19q-207 2 -359.5 6.5t-200.5 7.5l-49 4l-36 4q-36 5 -54.5 10t-51 21t-56.5 41q-6 6 -15.5 18.5t-29 58.5t-26.5 101q-8 64 -12.5 136.5t-5.5 113.5v40v136
1180
- q-1 145 18 290q7 55 25 99.5t32 61.5l14 17q14 15 29 26.5t31 19.5t28 13t28.5 8t23.5 4.5t23 3t17 1.5q251 18 627 18z" />
1181
- <glyph glyph-name="dropbox" unicode="&#xf16b;" horiz-adv-x="1792"
1182
- d="M402 829l494 -305l-342 -285l-490 319zM1388 274v-108l-490 -293v-1l-1 1l-1 -1v1l-489 293v108l147 -96l342 284v2l1 -1l1 1v-2l343 -284zM554 1418l342 -285l-494 -304l-338 270zM1390 829l338 -271l-489 -319l-343 285zM1239 1418l489 -319l-338 -270l-494 304z" />
1183
- <glyph glyph-name="stackexchange" unicode="&#xf16c;"
1184
- d="M1289 -96h-1118v480h-160v-640h1438v640h-160v-480zM347 428l33 157l783 -165l-33 -156zM450 802l67 146l725 -339l-67 -145zM651 1158l102 123l614 -513l-102 -123zM1048 1536l477 -641l-128 -96l-477 641zM330 65v159h800v-159h-800z" />
1185
- <glyph glyph-name="instagram" unicode="&#xf16d;"
1186
- d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1162 640q0 -164 -115 -279t-279 -115t-279 115t-115 279t115 279t279 115t279 -115t115 -279zM1270 1050q0 -38 -27 -65t-65 -27t-65 27t-27 65t27 65t65 27t65 -27t27 -65zM768 1270
1187
- q-7 0 -76.5 0.5t-105.5 0t-96.5 -3t-103 -10t-71.5 -18.5q-50 -20 -88 -58t-58 -88q-11 -29 -18.5 -71.5t-10 -103t-3 -96.5t0 -105.5t0.5 -76.5t-0.5 -76.5t0 -105.5t3 -96.5t10 -103t18.5 -71.5q20 -50 58 -88t88 -58q29 -11 71.5 -18.5t103 -10t96.5 -3t105.5 0t76.5 0.5
1188
- t76.5 -0.5t105.5 0t96.5 3t103 10t71.5 18.5q50 20 88 58t58 88q11 29 18.5 71.5t10 103t3 96.5t0 105.5t-0.5 76.5t0.5 76.5t0 105.5t-3 96.5t-10 103t-18.5 71.5q-20 50 -58 88t-88 58q-29 11 -71.5 18.5t-103 10t-96.5 3t-105.5 0t-76.5 -0.5zM1536 640q0 -229 -5 -317
1189
- q-10 -208 -124 -322t-322 -124q-88 -5 -317 -5t-317 5q-208 10 -322 124t-124 322q-5 88 -5 317t5 317q10 208 124 322t322 124q88 5 317 5t317 -5q208 -10 322 -124t124 -322q5 -88 5 -317z" />
1190
- <glyph glyph-name="flickr" unicode="&#xf16e;"
1191
- d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM698 640q0 88 -62 150t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150zM1262 640q0 88 -62 150
1192
- t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150z" />
1193
- <glyph glyph-name="adn" unicode="&#xf170;"
1194
- d="M768 914l201 -306h-402zM1133 384h94l-459 691l-459 -691h94l104 160h522zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
1195
- <glyph glyph-name="f171" unicode="&#xf171;" horiz-adv-x="1408"
1196
- d="M815 677q8 -63 -50.5 -101t-111.5 -6q-39 17 -53.5 58t-0.5 82t52 58q36 18 72.5 12t64 -35.5t27.5 -67.5zM926 698q-14 107 -113 164t-197 13q-63 -28 -100.5 -88.5t-34.5 -129.5q4 -91 77.5 -155t165.5 -56q91 8 152 84t50 168zM1165 1240q-20 27 -56 44.5t-58 22
1197
- t-71 12.5q-291 47 -566 -2q-43 -7 -66 -12t-55 -22t-50 -43q30 -28 76 -45.5t73.5 -22t87.5 -11.5q228 -29 448 -1q63 8 89.5 12t72.5 21.5t75 46.5zM1222 205q-8 -26 -15.5 -76.5t-14 -84t-28.5 -70t-58 -56.5q-86 -48 -189.5 -71.5t-202 -22t-201.5 18.5q-46 8 -81.5 18
1198
- t-76.5 27t-73 43.5t-52 61.5q-25 96 -57 292l6 16l18 9q223 -148 506.5 -148t507.5 148q21 -6 24 -23t-5 -45t-8 -37zM1403 1166q-26 -167 -111 -655q-5 -30 -27 -56t-43.5 -40t-54.5 -31q-252 -126 -610 -88q-248 27 -394 139q-15 12 -25.5 26.5t-17 35t-9 34t-6 39.5
1199
- t-5.5 35q-9 50 -26.5 150t-28 161.5t-23.5 147.5t-22 158q3 26 17.5 48.5t31.5 37.5t45 30t46 22.5t48 18.5q125 46 313 64q379 37 676 -50q155 -46 215 -122q16 -20 16.5 -51t-5.5 -54z" />
1200
- <glyph glyph-name="bitbucket_sign" unicode="&#xf172;"
1201
- d="M848 666q0 43 -41 66t-77 1q-43 -20 -42.5 -72.5t43.5 -70.5q39 -23 81 4t36 72zM928 682q8 -66 -36 -121t-110 -61t-119 40t-56 113q-2 49 25.5 93t72.5 64q70 31 141.5 -10t81.5 -118zM1100 1073q-20 -21 -53.5 -34t-53 -16t-63.5 -8q-155 -20 -324 0q-44 6 -63 9.5
1202
- t-52.5 16t-54.5 32.5q13 19 36 31t40 15.5t47 8.5q198 35 408 1q33 -5 51 -8.5t43 -16t39 -31.5zM1142 327q0 7 5.5 26.5t3 32t-17.5 16.5q-161 -106 -365 -106t-366 106l-12 -6l-5 -12q26 -154 41 -210q47 -81 204 -108q249 -46 428 53q34 19 49 51.5t22.5 85.5t12.5 71z
1203
- M1272 1020q9 53 -8 75q-43 55 -155 88q-216 63 -487 36q-132 -12 -226 -46q-38 -15 -59.5 -25t-47 -34t-29.5 -54q8 -68 19 -138t29 -171t24 -137q1 -5 5 -31t7 -36t12 -27t22 -28q105 -80 284 -100q259 -28 440 63q24 13 39.5 23t31 29t19.5 40q48 267 80 473zM1536 1120
1204
- v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
1205
- <glyph glyph-name="tumblr" unicode="&#xf173;" horiz-adv-x="1024"
1206
- d="M944 207l80 -237q-23 -35 -111 -66t-177 -32q-104 -2 -190.5 26t-142.5 74t-95 106t-55.5 120t-16.5 118v544h-168v215q72 26 129 69.5t91 90t58 102t34 99t15 88.5q1 5 4.5 8.5t7.5 3.5h244v-424h333v-252h-334v-518q0 -30 6.5 -56t22.5 -52.5t49.5 -41.5t81.5 -14
1207
- q78 2 134 29z" />
1208
- <glyph glyph-name="tumblr_sign" unicode="&#xf174;"
1209
- d="M1136 75l-62 183q-44 -22 -103 -22q-36 -1 -62 10.5t-38.5 31.5t-17.5 40.5t-5 43.5v398h257v194h-256v326h-188q-8 0 -9 -10q-5 -44 -17.5 -87t-39 -95t-77 -95t-118.5 -68v-165h130v-418q0 -57 21.5 -115t65 -111t121 -85.5t176.5 -30.5q69 1 136.5 25t85.5 50z
1210
- M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
1211
- <glyph glyph-name="long_arrow_down" unicode="&#xf175;" horiz-adv-x="768"
1212
- d="M765 237q8 -19 -5 -35l-350 -384q-10 -10 -23 -10q-14 0 -24 10l-355 384q-13 16 -5 35q9 19 29 19h224v1248q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1248h224q21 0 29 -19z" />
1213
- <glyph glyph-name="long_arrow_up" unicode="&#xf176;" horiz-adv-x="768"
1214
- d="M765 1043q-9 -19 -29 -19h-224v-1248q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1248h-224q-21 0 -29 19t5 35l350 384q10 10 23 10q14 0 24 -10l355 -384q13 -16 5 -35z" />
1215
- <glyph glyph-name="long_arrow_left" unicode="&#xf177;" horiz-adv-x="1792"
1216
- d="M1792 736v-192q0 -14 -9 -23t-23 -9h-1248v-224q0 -21 -19 -29t-35 5l-384 350q-10 10 -10 23q0 14 10 24l384 354q16 14 35 6q19 -9 19 -29v-224h1248q14 0 23 -9t9 -23z" />
1217
- <glyph glyph-name="long_arrow_right" unicode="&#xf178;" horiz-adv-x="1792"
1218
- d="M1728 643q0 -14 -10 -24l-384 -354q-16 -14 -35 -6q-19 9 -19 29v224h-1248q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h1248v224q0 21 19 29t35 -5l384 -350q10 -10 10 -23z" />
1219
- <glyph glyph-name="apple" unicode="&#xf179;" horiz-adv-x="1408"
1220
- d="M1393 321q-39 -125 -123 -250q-129 -196 -257 -196q-49 0 -140 32q-86 32 -151 32q-61 0 -142 -33q-81 -34 -132 -34q-152 0 -301 259q-147 261 -147 503q0 228 113 374q113 144 284 144q72 0 177 -30q104 -30 138 -30q45 0 143 34q102 34 173 34q119 0 213 -65
1221
- q52 -36 104 -100q-79 -67 -114 -118q-65 -94 -65 -207q0 -124 69 -223t158 -126zM1017 1494q0 -61 -29 -136q-30 -75 -93 -138q-54 -54 -108 -72q-37 -11 -104 -17q3 149 78 257q74 107 250 148q1 -3 2.5 -11t2.5 -11q0 -4 0.5 -10t0.5 -10z" />
1222
- <glyph glyph-name="windows" unicode="&#xf17a;" horiz-adv-x="1664"
1223
- d="M682 530v-651l-682 94v557h682zM682 1273v-659h-682v565zM1664 530v-786l-907 125v661h907zM1664 1408v-794h-907v669z" />
1224
- <glyph glyph-name="android" unicode="&#xf17b;" horiz-adv-x="1408"
1225
- d="M493 1053q16 0 27.5 11.5t11.5 27.5t-11.5 27.5t-27.5 11.5t-27 -11.5t-11 -27.5t11 -27.5t27 -11.5zM915 1053q16 0 27 11.5t11 27.5t-11 27.5t-27 11.5t-27.5 -11.5t-11.5 -27.5t11.5 -27.5t27.5 -11.5zM103 869q42 0 72 -30t30 -72v-430q0 -43 -29.5 -73t-72.5 -30
1226
- t-73 30t-30 73v430q0 42 30 72t73 30zM1163 850v-666q0 -46 -32 -78t-77 -32h-75v-227q0 -43 -30 -73t-73 -30t-73 30t-30 73v227h-138v-227q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73l-1 227h-74q-46 0 -78 32t-32 78v666h918zM931 1255q107 -55 171 -153.5t64 -215.5
1227
- h-925q0 117 64 215.5t172 153.5l-71 131q-7 13 5 20q13 6 20 -6l72 -132q95 42 201 42t201 -42l72 132q7 12 20 6q12 -7 5 -20zM1408 767v-430q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73v430q0 43 30 72.5t72 29.5q43 0 73 -29.5t30 -72.5z" />
1228
- <glyph glyph-name="linux" unicode="&#xf17c;"
1229
- d="M663 1125q-11 -1 -15.5 -10.5t-8.5 -9.5q-5 -1 -5 5q0 12 19 15h10zM750 1111q-4 -1 -11.5 6.5t-17.5 4.5q24 11 32 -2q3 -6 -3 -9zM399 684q-4 1 -6 -3t-4.5 -12.5t-5.5 -13.5t-10 -13q-10 -11 -1 -12q4 -1 12.5 7t12.5 18q1 3 2 7t2 6t1.5 4.5t0.5 4v3t-1 2.5t-3 2z
1230
- M1254 325q0 18 -55 42q4 15 7.5 27.5t5 26t3 21.5t0.5 22.5t-1 19.5t-3.5 22t-4 20.5t-5 25t-5.5 26.5q-10 48 -47 103t-72 75q24 -20 57 -83q87 -162 54 -278q-11 -40 -50 -42q-31 -4 -38.5 18.5t-8 83.5t-11.5 107q-9 39 -19.5 69t-19.5 45.5t-15.5 24.5t-13 15t-7.5 7
1231
- q-14 62 -31 103t-29.5 56t-23.5 33t-15 40q-4 21 6 53.5t4.5 49.5t-44.5 25q-15 3 -44.5 18t-35.5 16q-8 1 -11 26t8 51t36 27q37 3 51 -30t4 -58q-11 -19 -2 -26.5t30 -0.5q13 4 13 36v37q-5 30 -13.5 50t-21 30.5t-23.5 15t-27 7.5q-107 -8 -89 -134q0 -15 -1 -15
1232
- q-9 9 -29.5 10.5t-33 -0.5t-15.5 5q1 57 -16 90t-45 34q-27 1 -41.5 -27.5t-16.5 -59.5q-1 -15 3.5 -37t13 -37.5t15.5 -13.5q10 3 16 14q4 9 -7 8q-7 0 -15.5 14.5t-9.5 33.5q-1 22 9 37t34 14q17 0 27 -21t9.5 -39t-1.5 -22q-22 -15 -31 -29q-8 -12 -27.5 -23.5
1233
- t-20.5 -12.5q-13 -14 -15.5 -27t7.5 -18q14 -8 25 -19.5t16 -19t18.5 -13t35.5 -6.5q47 -2 102 15q2 1 23 7t34.5 10.5t29.5 13t21 17.5q9 14 20 8q5 -3 6.5 -8.5t-3 -12t-16.5 -9.5q-20 -6 -56.5 -21.5t-45.5 -19.5q-44 -19 -70 -23q-25 -5 -79 2q-10 2 -9 -2t17 -19
1234
- q25 -23 67 -22q17 1 36 7t36 14t33.5 17.5t30 17t24.5 12t17.5 2.5t8.5 -11q0 -2 -1 -4.5t-4 -5t-6 -4.5t-8.5 -5t-9 -4.5t-10 -5t-9.5 -4.5q-28 -14 -67.5 -44t-66.5 -43t-49 -1q-21 11 -63 73q-22 31 -25 22q-1 -3 -1 -10q0 -25 -15 -56.5t-29.5 -55.5t-21 -58t11.5 -63
1235
- q-23 -6 -62.5 -90t-47.5 -141q-2 -18 -1.5 -69t-5.5 -59q-8 -24 -29 -3q-32 31 -36 94q-2 28 4 56q4 19 -1 18q-2 -1 -4 -5q-36 -65 10 -166q5 -12 25 -28t24 -20q20 -23 104 -90.5t93 -76.5q16 -15 17.5 -38t-14 -43t-45.5 -23q8 -15 29 -44.5t28 -54t7 -70.5q46 24 7 92
1236
- q-4 8 -10.5 16t-9.5 12t-2 6q3 5 13 9.5t20 -2.5q46 -52 166 -36q133 15 177 87q23 38 34 30q12 -6 10 -52q-1 -25 -23 -92q-9 -23 -6 -37.5t24 -15.5q3 19 14.5 77t13.5 90q2 21 -6.5 73.5t-7.5 97t23 70.5q15 18 51 18q1 37 34.5 53t72.5 10.5t60 -22.5zM626 1152
1237
- q3 17 -2.5 30t-11.5 15q-9 2 -9 -7q2 -5 5 -6q10 0 7 -15q-3 -20 8 -20q3 0 3 3zM1045 955q-2 8 -6.5 11.5t-13 5t-14.5 5.5q-5 3 -9.5 8t-7 8t-5.5 6.5t-4 4t-4 -1.5q-14 -16 7 -43.5t39 -31.5q9 -1 14.5 8t3.5 20zM867 1168q0 11 -5 19.5t-11 12.5t-9 3q-6 0 -8 -2t0 -4
1238
- t5 -3q14 -4 18 -31q0 -3 8 2q2 2 2 3zM921 1401q0 2 -2.5 5t-9 7t-9.5 6q-15 15 -24 15q-9 -1 -11.5 -7.5t-1 -13t-0.5 -12.5q-1 -4 -6 -10.5t-6 -9t3 -8.5q4 -3 8 0t11 9t15 9q1 1 9 1t15 2t9 7zM1486 60q20 -12 31 -24.5t12 -24t-2.5 -22.5t-15.5 -22t-23.5 -19.5
1239
- t-30 -18.5t-31.5 -16.5t-32 -15.5t-27 -13q-38 -19 -85.5 -56t-75.5 -64q-17 -16 -68 -19.5t-89 14.5q-18 9 -29.5 23.5t-16.5 25.5t-22 19.5t-47 9.5q-44 1 -130 1q-19 0 -57 -1.5t-58 -2.5q-44 -1 -79.5 -15t-53.5 -30t-43.5 -28.5t-53.5 -11.5q-29 1 -111 31t-146 43
1240
- q-19 4 -51 9.5t-50 9t-39.5 9.5t-33.5 14.5t-17 19.5q-10 23 7 66.5t18 54.5q1 16 -4 40t-10 42.5t-4.5 36.5t10.5 27q14 12 57 14t60 12q30 18 42 35t12 51q21 -73 -32 -106q-32 -20 -83 -15q-34 3 -43 -10q-13 -15 5 -57q2 -6 8 -18t8.5 -18t4.5 -17t1 -22q0 -15 -17 -49
1241
- t-14 -48q3 -17 37 -26q20 -6 84.5 -18.5t99.5 -20.5q24 -6 74 -22t82.5 -23t55.5 -4q43 6 64.5 28t23 48t-7.5 58.5t-19 52t-20 36.5q-121 190 -169 242q-68 74 -113 40q-11 -9 -15 15q-3 16 -2 38q1 29 10 52t24 47t22 42q8 21 26.5 72t29.5 78t30 61t39 54
1242
- q110 143 124 195q-12 112 -16 310q-2 90 24 151.5t106 104.5q39 21 104 21q53 1 106 -13.5t89 -41.5q57 -42 91.5 -121.5t29.5 -147.5q-5 -95 30 -214q34 -113 133 -218q55 -59 99.5 -163t59.5 -191q8 -49 5 -84.5t-12 -55.5t-20 -22q-10 -2 -23.5 -19t-27 -35.5
1243
- t-40.5 -33.5t-61 -14q-18 1 -31.5 5t-22.5 13.5t-13.5 15.5t-11.5 20.5t-9 19.5q-22 37 -41 30t-28 -49t7 -97q20 -70 1 -195q-10 -65 18 -100.5t73 -33t85 35.5q59 49 89.5 66.5t103.5 42.5q53 18 77 36.5t18.5 34.5t-25 28.5t-51.5 23.5q-33 11 -49.5 48t-15 72.5
1244
- t15.5 47.5q1 -31 8 -56.5t14.5 -40.5t20.5 -28.5t21 -19t21.5 -13t16.5 -9.5z" />
1245
- <glyph glyph-name="dribble" unicode="&#xf17d;"
1246
- d="M1024 36q-42 241 -140 498h-2l-2 -1q-16 -6 -43 -16.5t-101 -49t-137 -82t-131 -114.5t-103 -148l-15 11q184 -150 418 -150q132 0 256 52zM839 643q-21 49 -53 111q-311 -93 -673 -93q-1 -7 -1 -21q0 -124 44 -236.5t124 -201.5q50 89 123.5 166.5t142.5 124.5t130.5 81
1247
- t99.5 48l37 13q4 1 13 3.5t13 4.5zM732 855q-120 213 -244 378q-138 -65 -234 -186t-128 -272q302 0 606 80zM1416 536q-210 60 -409 29q87 -239 128 -469q111 75 185 189.5t96 250.5zM611 1277q-1 0 -2 -1q1 1 2 1zM1201 1132q-185 164 -433 164q-76 0 -155 -19
1248
- q131 -170 246 -382q69 26 130 60.5t96.5 61.5t65.5 57t37.5 40.5zM1424 647q-3 232 -149 410l-1 -1q-9 -12 -19 -24.5t-43.5 -44.5t-71 -60.5t-100 -65t-131.5 -64.5q25 -53 44 -95q2 -5 6.5 -17t7.5 -17q36 5 74.5 7t73.5 2t69 -1.5t64 -4t56.5 -5.5t48 -6.5t36.5 -6
1249
- t25 -4.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
1250
- <glyph glyph-name="skype" unicode="&#xf17e;"
1251
- d="M1173 473q0 50 -19.5 91.5t-48.5 68.5t-73 49t-82.5 34t-87.5 23l-104 24q-30 7 -44 10.5t-35 11.5t-30 16t-16.5 21t-7.5 30q0 77 144 77q43 0 77 -12t54 -28.5t38 -33.5t40 -29t48 -12q47 0 75.5 32t28.5 77q0 55 -56 99.5t-142 67.5t-182 23q-68 0 -132 -15.5
1252
- t-119.5 -47t-89 -87t-33.5 -128.5q0 -61 19 -106.5t56 -75.5t80 -48.5t103 -32.5l146 -36q90 -22 112 -36q32 -20 32 -60q0 -39 -40 -64.5t-105 -25.5q-51 0 -91.5 16t-65 38.5t-45.5 45t-46 38.5t-54 16q-50 0 -75.5 -30t-25.5 -75q0 -92 122 -157.5t291 -65.5
1253
- q73 0 140 18.5t122.5 53.5t88.5 93.5t33 131.5zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5q-130 0 -234 80q-77 -16 -150 -16q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5q0 73 16 150q-80 104 -80 234q0 159 112.5 271.5t271.5 112.5q130 0 234 -80
1254
- q77 16 150 16q143 0 273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -73 -16 -150q80 -104 80 -234z" />
1255
- <glyph glyph-name="foursquare" unicode="&#xf180;" horiz-adv-x="1280"
1256
- d="M1000 1102l37 194q5 23 -9 40t-35 17h-712q-23 0 -38.5 -17t-15.5 -37v-1101q0 -7 6 -1l291 352q23 26 38 33.5t48 7.5h239q22 0 37 14.5t18 29.5q24 130 37 191q4 21 -11.5 40t-36.5 19h-294q-29 0 -48 19t-19 48v42q0 29 19 47.5t48 18.5h346q18 0 35 13.5t20 29.5z
1257
- M1227 1324q-15 -73 -53.5 -266.5t-69.5 -350t-35 -173.5q-6 -22 -9 -32.5t-14 -32.5t-24.5 -33t-38.5 -21t-58 -10h-271q-13 0 -22 -10q-8 -9 -426 -494q-22 -25 -58.5 -28.5t-48.5 5.5q-55 22 -55 98v1410q0 55 38 102.5t120 47.5h888q95 0 127 -53t10 -159zM1227 1324
1258
- l-158 -790q4 17 35 173.5t69.5 350t53.5 266.5z" />
1259
- <glyph glyph-name="trello" unicode="&#xf181;"
1260
- d="M704 192v1024q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-1024q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1376 576v640q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-640q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408
1261
- q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
1262
- <glyph glyph-name="female" unicode="&#xf182;" horiz-adv-x="1280"
1263
- d="M1280 480q0 -40 -28 -68t-68 -28q-51 0 -80 43l-227 341h-45v-132l247 -411q9 -15 9 -33q0 -26 -19 -45t-45 -19h-192v-272q0 -46 -33 -79t-79 -33h-160q-46 0 -79 33t-33 79v272h-192q-26 0 -45 19t-19 45q0 18 9 33l247 411v132h-45l-227 -341q-29 -43 -80 -43
1264
- q-40 0 -68 28t-28 68q0 29 16 53l256 384q73 107 176 107h384q103 0 176 -107l256 -384q16 -24 16 -53zM864 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
1265
- <glyph glyph-name="male" unicode="&#xf183;" horiz-adv-x="1024"
1266
- d="M1024 832v-416q0 -40 -28 -68t-68 -28t-68 28t-28 68v352h-64v-912q0 -46 -33 -79t-79 -33t-79 33t-33 79v464h-64v-464q0 -46 -33 -79t-79 -33t-79 33t-33 79v912h-64v-352q0 -40 -28 -68t-68 -28t-68 28t-28 68v416q0 80 56 136t136 56h640q80 0 136 -56t56 -136z
1267
- M736 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
1268
- <glyph glyph-name="gittip" unicode="&#xf184;"
1269
- d="M773 234l350 473q16 22 24.5 59t-6 85t-61.5 79q-40 26 -83 25.5t-73.5 -17.5t-54.5 -45q-36 -40 -96 -40q-59 0 -95 40q-24 28 -54.5 45t-73.5 17.5t-84 -25.5q-46 -31 -60.5 -79t-6 -85t24.5 -59zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103
1270
- t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
1271
- <glyph glyph-name="sun" unicode="&#xf185;" horiz-adv-x="1792"
1272
- d="M1472 640q0 117 -45.5 223.5t-123 184t-184 123t-223.5 45.5t-223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5t45.5 -223.5t123 -184t184 -123t223.5 -45.5t223.5 45.5t184 123t123 184t45.5 223.5zM1748 363q-4 -15 -20 -20l-292 -96v-306q0 -16 -13 -26q-15 -10 -29 -4
1273
- l-292 94l-180 -248q-10 -13 -26 -13t-26 13l-180 248l-292 -94q-14 -6 -29 4q-13 10 -13 26v306l-292 96q-16 5 -20 20q-5 17 4 29l180 248l-180 248q-9 13 -4 29q4 15 20 20l292 96v306q0 16 13 26q15 10 29 4l292 -94l180 248q9 12 26 12t26 -12l180 -248l292 94
1274
- q14 6 29 -4q13 -10 13 -26v-306l292 -96q16 -5 20 -20q5 -16 -4 -29l-180 -248l180 -248q9 -12 4 -29z" />
1275
- <glyph glyph-name="_366" unicode="&#xf186;"
1276
- d="M1262 233q-54 -9 -110 -9q-182 0 -337 90t-245 245t-90 337q0 192 104 357q-201 -60 -328.5 -229t-127.5 -384q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51q144 0 273.5 61.5t220.5 171.5zM1465 318q-94 -203 -283.5 -324.5t-413.5 -121.5q-156 0 -298 61
1277
- t-245 164t-164 245t-61 298q0 153 57.5 292.5t156 241.5t235.5 164.5t290 68.5q44 2 61 -39q18 -41 -15 -72q-86 -78 -131.5 -181.5t-45.5 -218.5q0 -148 73 -273t198 -198t273 -73q118 0 228 51q41 18 72 -13q14 -14 17.5 -34t-4.5 -38z" />
1278
- <glyph glyph-name="archive" unicode="&#xf187;" horiz-adv-x="1792"
1279
- d="M1088 704q0 26 -19 45t-45 19h-256q-26 0 -45 -19t-19 -45t19 -45t45 -19h256q26 0 45 19t19 45zM1664 896v-960q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v960q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1728 1344v-256q0 -26 -19 -45t-45 -19h-1536
1280
- q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1536q26 0 45 -19t19 -45z" />
1281
- <glyph glyph-name="bug" unicode="&#xf188;" horiz-adv-x="1664"
1282
- d="M1632 576q0 -26 -19 -45t-45 -19h-224q0 -171 -67 -290l208 -209q19 -19 19 -45t-19 -45q-18 -19 -45 -19t-45 19l-198 197q-5 -5 -15 -13t-42 -28.5t-65 -36.5t-82 -29t-97 -13v896h-128v-896q-51 0 -101.5 13.5t-87 33t-66 39t-43.5 32.5l-15 14l-183 -207
1283
- q-20 -21 -48 -21q-24 0 -43 16q-19 18 -20.5 44.5t15.5 46.5l202 227q-58 114 -58 274h-224q-26 0 -45 19t-19 45t19 45t45 19h224v294l-173 173q-19 19 -19 45t19 45t45 19t45 -19l173 -173h844l173 173q19 19 45 19t45 -19t19 -45t-19 -45l-173 -173v-294h224q26 0 45 -19
1284
- t19 -45zM1152 1152h-640q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5z" />
1285
- <glyph glyph-name="vk" unicode="&#xf189;" horiz-adv-x="1920"
1286
- d="M1917 1016q23 -64 -150 -294q-24 -32 -65 -85q-40 -51 -55 -72t-30.5 -49.5t-12 -42t13 -34.5t32.5 -43t57 -53q4 -2 5 -4q141 -131 191 -221q3 -5 6.5 -12.5t7 -26.5t-0.5 -34t-25 -27.5t-59 -12.5l-256 -4q-24 -5 -56 5t-52 22l-20 12q-30 21 -70 64t-68.5 77.5t-61 58
1287
- t-56.5 15.5q-3 -1 -8 -3.5t-17 -14.5t-21.5 -29.5t-17 -52t-6.5 -77.5q0 -15 -3.5 -27.5t-7.5 -18.5l-4 -5q-18 -19 -53 -22h-115q-71 -4 -146 16.5t-131.5 53t-103 66t-70.5 57.5l-25 24q-10 10 -27.5 30t-71.5 91t-106 151t-122.5 211t-130.5 272q-6 16 -6 27t3 16l4 6
1288
- q15 19 57 19l274 2q12 -2 23 -6.5t16 -8.5l5 -3q16 -11 24 -32q20 -50 46 -103.5t41 -81.5l16 -29q29 -60 56 -104t48.5 -68.5t41.5 -38.5t34 -14t27 5q2 1 5 5t12 22t13.5 47t9.5 81t0 125q-2 40 -9 73t-14 46l-6 12q-25 34 -85 43q-13 2 5 24q16 19 38 30q53 26 239 24
1289
- q82 -1 135 -13q20 -5 33.5 -13.5t20.5 -24t10.5 -32t3.5 -45.5t-1 -55t-2.5 -70.5t-1.5 -82.5q0 -11 -1 -42t-0.5 -48t3.5 -40.5t11.5 -39t22.5 -24.5q8 -2 17 -4t26 11t38 34.5t52 67t68 107.5q60 104 107 225q4 10 10 17.5t11 10.5l4 3l5 2.5t13 3t20 0.5l288 2
1290
- q39 5 64 -2.5t31 -16.5z" />
1291
- <glyph glyph-name="weibo" unicode="&#xf18a;" horiz-adv-x="1792"
1292
- d="M675 252q21 34 11 69t-45 50q-34 14 -73 1t-60 -46q-22 -34 -13 -68.5t43 -50.5t74.5 -2.5t62.5 47.5zM769 373q8 13 3.5 26.5t-17.5 18.5q-14 5 -28.5 -0.5t-21.5 -18.5q-17 -31 13 -45q14 -5 29 0.5t22 18.5zM943 266q-45 -102 -158 -150t-224 -12
1293
- q-107 34 -147.5 126.5t6.5 187.5q47 93 151.5 139t210.5 19q111 -29 158.5 -119.5t2.5 -190.5zM1255 426q-9 96 -89 170t-208.5 109t-274.5 21q-223 -23 -369.5 -141.5t-132.5 -264.5q9 -96 89 -170t208.5 -109t274.5 -21q223 23 369.5 141.5t132.5 264.5zM1563 422
1294
- q0 -68 -37 -139.5t-109 -137t-168.5 -117.5t-226 -83t-270.5 -31t-275 33.5t-240.5 93t-171.5 151t-65 199.5q0 115 69.5 245t197.5 258q169 169 341.5 236t246.5 -7q65 -64 20 -209q-4 -14 -1 -20t10 -7t14.5 0.5t13.5 3.5l6 2q139 59 246 59t153 -61q45 -63 0 -178
1295
- q-2 -13 -4.5 -20t4.5 -12.5t12 -7.5t17 -6q57 -18 103 -47t80 -81.5t34 -116.5zM1489 1046q42 -47 54.5 -108.5t-6.5 -117.5q-8 -23 -29.5 -34t-44.5 -4q-23 8 -34 29.5t-4 44.5q20 63 -24 111t-107 35q-24 -5 -45 8t-25 37q-5 24 8 44.5t37 25.5q60 13 119 -5.5t101 -65.5z
1296
- M1670 1209q87 -96 112.5 -222.5t-13.5 -241.5q-9 -27 -34 -40t-52 -4t-40 34t-5 52q28 82 10 172t-80 158q-62 69 -148 95.5t-173 8.5q-28 -6 -52 9.5t-30 43.5t9.5 51.5t43.5 29.5q123 26 244 -11.5t208 -134.5z" />
1297
- <glyph glyph-name="renren" unicode="&#xf18b;"
1298
- d="M1133 -34q-171 -94 -368 -94q-196 0 -367 94q138 87 235.5 211t131.5 268q35 -144 132.5 -268t235.5 -211zM638 1394v-485q0 -252 -126.5 -459.5t-330.5 -306.5q-181 215 -181 495q0 187 83.5 349.5t229.5 269.5t325 137zM1536 638q0 -280 -181 -495
1299
- q-204 99 -330.5 306.5t-126.5 459.5v485q179 -30 325 -137t229.5 -269.5t83.5 -349.5z" />
1300
- <glyph glyph-name="_372" unicode="&#xf18c;" horiz-adv-x="1408"
1301
- d="M1402 433q-32 -80 -76 -138t-91 -88.5t-99 -46.5t-101.5 -14.5t-96.5 8.5t-86.5 22t-69.5 27.5t-46 22.5l-17 10q-113 -228 -289.5 -359.5t-384.5 -132.5q-19 0 -32 13t-13 32t13 31.5t32 12.5q173 1 322.5 107.5t251.5 294.5q-36 -14 -72 -23t-83 -13t-91 2.5t-93 28.5
1302
- t-92 59t-84.5 100t-74.5 146q114 47 214 57t167.5 -7.5t124.5 -56.5t88.5 -77t56.5 -82q53 131 79 291q-7 -1 -18 -2.5t-46.5 -2.5t-69.5 0.5t-81.5 10t-88.5 23t-84 42.5t-75 65t-54.5 94.5t-28.5 127.5q70 28 133.5 36.5t112.5 -1t92 -30t73.5 -50t56 -61t42 -63t27.5 -56
1303
- t16 -39.5l4 -16q12 122 12 195q-8 6 -21.5 16t-49 44.5t-63.5 71.5t-54 93t-33 112.5t12 127t70 138.5q73 -25 127.5 -61.5t84.5 -76.5t48 -85t20.5 -89t-0.5 -85.5t-13 -76.5t-19 -62t-17 -42l-7 -15q1 -4 1 -50t-1 -72q3 7 10 18.5t30.5 43t50.5 58t71 55.5t91.5 44.5
1304
- t112 14.5t132.5 -24q-2 -78 -21.5 -141.5t-50 -104.5t-69.5 -71.5t-81.5 -45.5t-84.5 -24t-80 -9.5t-67.5 1t-46.5 4.5l-17 3q-23 -147 -73 -283q6 7 18 18.5t49.5 41t77.5 52.5t99.5 42t117.5 20t129 -23.5t137 -77.5z" />
1305
- <glyph glyph-name="stack_exchange" unicode="&#xf18d;" horiz-adv-x="1280"
1306
- d="M1259 283v-66q0 -85 -57.5 -144.5t-138.5 -59.5h-57l-260 -269v269h-529q-81 0 -138.5 59.5t-57.5 144.5v66h1238zM1259 609v-255h-1238v255h1238zM1259 937v-255h-1238v255h1238zM1259 1077v-67h-1238v67q0 84 57.5 143.5t138.5 59.5h846q81 0 138.5 -59.5t57.5 -143.5z
1307
- " />
1308
- <glyph glyph-name="_374" unicode="&#xf18e;"
1309
- d="M1152 640q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198
1310
- t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
1311
- <glyph glyph-name="arrow_circle_alt_left" unicode="&#xf190;"
1312
- d="M1152 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-192q0 -14 -9 -23t-23 -9q-12 0 -24 10l-319 319q-9 9 -9 23t9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h352q13 0 22.5 -9.5t9.5 -22.5zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198
1313
- t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
1314
- <glyph glyph-name="_376" unicode="&#xf191;"
1315
- d="M1024 960v-640q0 -26 -19 -45t-45 -19q-20 0 -37 12l-448 320q-27 19 -27 52t27 52l448 320q17 12 37 12q26 0 45 -19t19 -45zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5z
1316
- M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
1317
- <glyph glyph-name="dot_circle_alt" unicode="&#xf192;"
1318
- d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5
1319
- t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
1320
- <glyph glyph-name="_378" unicode="&#xf193;" horiz-adv-x="1664"
1321
- d="M1023 349l102 -204q-58 -179 -210 -290t-339 -111q-156 0 -288.5 77.5t-210 210t-77.5 288.5q0 181 104.5 330t274.5 211l17 -131q-122 -54 -195 -165.5t-73 -244.5q0 -185 131.5 -316.5t316.5 -131.5q126 0 232.5 65t165 175.5t49.5 236.5zM1571 249l58 -114l-256 -128
1322
- q-13 -7 -29 -7q-40 0 -57 35l-239 477h-472q-24 0 -42.5 16.5t-21.5 40.5l-96 779q-2 17 6 42q14 51 57 82.5t97 31.5q66 0 113 -47t47 -113q0 -69 -52 -117.5t-120 -41.5l37 -289h423v-128h-407l16 -128h455q40 0 57 -35l228 -455z" />
1323
- <glyph glyph-name="vimeo_square" unicode="&#xf194;"
1324
- d="M1292 898q10 216 -161 222q-231 8 -312 -261q44 19 82 19q85 0 74 -96q-4 -57 -74 -167t-105 -110q-43 0 -82 169q-13 54 -45 255q-30 189 -160 177q-59 -7 -164 -100l-81 -72l-81 -72l52 -67q76 52 87 52q57 0 107 -179q15 -55 45 -164.5t45 -164.5q68 -179 164 -179
1325
- q157 0 383 294q220 283 226 444zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
1326
- <glyph glyph-name="_380" unicode="&#xf195;" horiz-adv-x="1152"
1327
- d="M1152 704q0 -191 -94.5 -353t-256.5 -256.5t-353 -94.5h-160q-14 0 -23 9t-9 23v611l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v93l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v250q0 14 9 23t23 9h160
1328
- q14 0 23 -9t9 -23v-181l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-93l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-487q188 13 318 151t130 328q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
1329
- <glyph glyph-name="plus_square_o" unicode="&#xf196;" horiz-adv-x="1408"
1330
- d="M1152 736v-64q0 -14 -9 -23t-23 -9h-352v-352q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v352h-352q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h352v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-352h352q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832
1331
- q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
1332
- <glyph glyph-name="_382" unicode="&#xf197;" horiz-adv-x="2176"
1333
- d="M620 416q-110 -64 -268 -64h-128v64h-64q-13 0 -22.5 23.5t-9.5 56.5q0 24 7 49q-58 2 -96.5 10.5t-38.5 20.5t38.5 20.5t96.5 10.5q-7 25 -7 49q0 33 9.5 56.5t22.5 23.5h64v64h128q158 0 268 -64h1113q42 -7 106.5 -18t80.5 -14q89 -15 150 -40.5t83.5 -47.5t22.5 -40
1334
- t-22.5 -40t-83.5 -47.5t-150 -40.5q-16 -3 -80.5 -14t-106.5 -18h-1113zM1739 668q53 -36 53 -92t-53 -92l81 -30q68 48 68 122t-68 122zM625 400h1015q-217 -38 -456 -80q-57 0 -113 -24t-83 -48l-28 -24l-288 -288q-26 -26 -70.5 -45t-89.5 -19h-96l-93 464h29
1335
- q157 0 273 64zM352 816h-29l93 464h96q46 0 90 -19t70 -45l288 -288q4 -4 11 -10.5t30.5 -23t48.5 -29t61.5 -23t72.5 -10.5l456 -80h-1015q-116 64 -273 64z" />
1336
- <glyph glyph-name="_383" unicode="&#xf198;" horiz-adv-x="1664"
1337
- d="M1519 760q62 0 103.5 -40.5t41.5 -101.5q0 -97 -93 -130l-172 -59l56 -167q7 -21 7 -47q0 -59 -42 -102t-101 -43q-47 0 -85.5 27t-53.5 72l-55 165l-310 -106l55 -164q8 -24 8 -47q0 -59 -42 -102t-102 -43q-47 0 -85 27t-53 72l-55 163l-153 -53q-29 -9 -50 -9
1338
- q-61 0 -101.5 40t-40.5 101q0 47 27.5 85t71.5 53l156 53l-105 313l-156 -54q-26 -8 -48 -8q-60 0 -101 40.5t-41 100.5q0 47 27.5 85t71.5 53l157 53l-53 159q-8 24 -8 47q0 60 42 102.5t102 42.5q47 0 85 -27t53 -72l54 -160l310 105l-54 160q-8 24 -8 47q0 59 42.5 102
1339
- t101.5 43q47 0 85.5 -27.5t53.5 -71.5l53 -161l162 55q21 6 43 6q60 0 102.5 -39.5t42.5 -98.5q0 -45 -30 -81.5t-74 -51.5l-157 -54l105 -316l164 56q24 8 46 8zM725 498l310 105l-105 315l-310 -107z" />
1340
- <glyph glyph-name="_384" unicode="&#xf199;"
1341
- d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM1280 352v436q-31 -35 -64 -55q-34 -22 -132.5 -85t-151.5 -99q-98 -69 -164 -69v0v0q-66 0 -164 69
1342
- q-47 32 -142 92.5t-142 92.5q-12 8 -33 27t-31 27v-436q0 -40 28 -68t68 -28h832q40 0 68 28t28 68zM1280 925q0 41 -27.5 70t-68.5 29h-832q-40 0 -68 -28t-28 -68q0 -37 30.5 -76.5t67.5 -64.5q47 -32 137.5 -89t129.5 -83q3 -2 17 -11.5t21 -14t21 -13t23.5 -13
1343
- t21.5 -9.5t22.5 -7.5t20.5 -2.5t20.5 2.5t22.5 7.5t21.5 9.5t23.5 13t21 13t21 14t17 11.5l267 174q35 23 66.5 62.5t31.5 73.5z" />
1344
- <glyph glyph-name="_385" unicode="&#xf19a;" horiz-adv-x="1792"
1345
- d="M127 640q0 163 67 313l367 -1005q-196 95 -315 281t-119 411zM1415 679q0 -19 -2.5 -38.5t-10 -49.5t-11.5 -44t-17.5 -59t-17.5 -58l-76 -256l-278 826q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-75 1 -202 10q-12 1 -20.5 -5t-11.5 -15t-1.5 -18.5t9 -16.5
1346
- t19.5 -8l80 -8l120 -328l-168 -504l-280 832q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-7 0 -23 0.5t-26 0.5q105 160 274.5 253.5t367.5 93.5q147 0 280.5 -53t238.5 -149h-10q-55 0 -92 -40.5t-37 -95.5q0 -12 2 -24t4 -21.5t8 -23t9 -21t12 -22.5t12.5 -21
1347
- t14.5 -24t14 -23q63 -107 63 -212zM909 573l237 -647q1 -6 5 -11q-126 -44 -255 -44q-112 0 -217 32zM1570 1009q95 -174 95 -369q0 -209 -104 -385.5t-279 -278.5l235 678q59 169 59 276q0 42 -6 79zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286
1348
- t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 -215q173 0 331.5 68t273 182.5t182.5 273t68 331.5t-68 331.5t-182.5 273t-273 182.5t-331.5 68t-331.5 -68t-273 -182.5t-182.5 -273t-68 -331.5t68 -331.5t182.5 -273
1349
- t273 -182.5t331.5 -68z" />
1350
- <glyph glyph-name="_386" unicode="&#xf19b;" horiz-adv-x="1792"
1351
- d="M1086 1536v-1536l-272 -128q-228 20 -414 102t-293 208.5t-107 272.5q0 140 100.5 263.5t275 205.5t391.5 108v-172q-217 -38 -356.5 -150t-139.5 -255q0 -152 154.5 -267t388.5 -145v1360zM1755 954l37 -390l-525 114l147 83q-119 70 -280 99v172q277 -33 481 -157z" />
1352
- <glyph glyph-name="_387" unicode="&#xf19c;" horiz-adv-x="2048"
1353
- d="M960 1536l960 -384v-128h-128q0 -26 -20.5 -45t-48.5 -19h-1526q-28 0 -48.5 19t-20.5 45h-128v128zM256 896h256v-768h128v768h256v-768h128v768h256v-768h128v768h256v-768h59q28 0 48.5 -19t20.5 -45v-64h-1664v64q0 26 20.5 45t48.5 19h59v768zM1851 -64
1354
- q28 0 48.5 -19t20.5 -45v-128h-1920v128q0 26 20.5 45t48.5 19h1782z" />
1355
- <glyph glyph-name="_388" unicode="&#xf19d;" horiz-adv-x="2304"
1356
- d="M1774 700l18 -316q4 -69 -82 -128t-235 -93.5t-323 -34.5t-323 34.5t-235 93.5t-82 128l18 316l574 -181q22 -7 48 -7t48 7zM2304 1024q0 -23 -22 -31l-1120 -352q-4 -1 -10 -1t-10 1l-652 206q-43 -34 -71 -111.5t-34 -178.5q63 -36 63 -109q0 -69 -58 -107l58 -433
1357
- q2 -14 -8 -25q-9 -11 -24 -11h-192q-15 0 -24 11q-10 11 -8 25l58 433q-58 38 -58 107q0 73 65 111q11 207 98 330l-333 104q-22 8 -22 31t22 31l1120 352q4 1 10 1t10 -1l1120 -352q22 -8 22 -31z" />
1358
- <glyph glyph-name="_389" unicode="&#xf19e;"
1359
- d="M859 579l13 -707q-62 11 -105 11q-41 0 -105 -11l13 707q-40 69 -168.5 295.5t-216.5 374.5t-181 287q58 -15 108 -15q44 0 111 15q63 -111 133.5 -229.5t167 -276.5t138.5 -227q37 61 109.5 177.5t117.5 190t105 176t107 189.5q54 -14 107 -14q56 0 114 14v0
1360
- q-28 -39 -60 -88.5t-49.5 -78.5t-56.5 -96t-49 -84q-146 -248 -353 -610z" />
1361
- <glyph glyph-name="uniF1A0" unicode="&#xf1a0;"
1362
- d="M768 750h725q12 -67 12 -128q0 -217 -91 -387.5t-259.5 -266.5t-386.5 -96q-157 0 -299 60.5t-245 163.5t-163.5 245t-60.5 299t60.5 299t163.5 245t245 163.5t299 60.5q300 0 515 -201l-209 -201q-123 119 -306 119q-129 0 -238.5 -65t-173.5 -176.5t-64 -243.5
1363
- t64 -243.5t173.5 -176.5t238.5 -65q87 0 160 24t120 60t82 82t51.5 87t22.5 78h-436v264z" />
1364
- <glyph glyph-name="f1a1" unicode="&#xf1a1;" horiz-adv-x="1792"
1365
- d="M1095 369q16 -16 0 -31q-62 -62 -199 -62t-199 62q-16 15 0 31q6 6 15 6t15 -6q48 -49 169 -49q120 0 169 49q6 6 15 6t15 -6zM788 550q0 -37 -26 -63t-63 -26t-63.5 26t-26.5 63q0 38 26.5 64t63.5 26t63 -26.5t26 -63.5zM1183 550q0 -37 -26.5 -63t-63.5 -26t-63 26
1366
- t-26 63t26 63.5t63 26.5t63.5 -26t26.5 -64zM1434 670q0 49 -35 84t-85 35t-86 -36q-130 90 -311 96l63 283l200 -45q0 -37 26 -63t63 -26t63.5 26.5t26.5 63.5t-26.5 63.5t-63.5 26.5q-54 0 -80 -50l-221 49q-19 5 -25 -16l-69 -312q-180 -7 -309 -97q-35 37 -87 37
1367
- q-50 0 -85 -35t-35 -84q0 -35 18.5 -64t49.5 -44q-6 -27 -6 -56q0 -142 140 -243t337 -101q198 0 338 101t140 243q0 32 -7 57q30 15 48 43.5t18 63.5zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191
1368
- t348 71t348 -71t286 -191t191 -286t71 -348z" />
1369
- <glyph glyph-name="_392" unicode="&#xf1a2;"
1370
- d="M939 407q13 -13 0 -26q-53 -53 -171 -53t-171 53q-13 13 0 26q5 6 13 6t13 -6q42 -42 145 -42t145 42q5 6 13 6t13 -6zM676 563q0 -31 -23 -54t-54 -23t-54 23t-23 54q0 32 22.5 54.5t54.5 22.5t54.5 -22.5t22.5 -54.5zM1014 563q0 -31 -23 -54t-54 -23t-54 23t-23 54
1371
- q0 32 22.5 54.5t54.5 22.5t54.5 -22.5t22.5 -54.5zM1229 666q0 42 -30 72t-73 30q-42 0 -73 -31q-113 78 -267 82l54 243l171 -39q1 -32 23.5 -54t53.5 -22q32 0 54.5 22.5t22.5 54.5t-22.5 54.5t-54.5 22.5q-48 0 -69 -43l-189 42q-17 5 -21 -13l-60 -268q-154 -6 -265 -83
1372
- q-30 32 -74 32q-43 0 -73 -30t-30 -72q0 -30 16 -55t42 -38q-5 -25 -5 -48q0 -122 120 -208.5t289 -86.5q170 0 290 86.5t120 208.5q0 25 -6 49q25 13 40.5 37.5t15.5 54.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960
1373
- q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
1374
- <glyph glyph-name="_393" unicode="&#xf1a3;"
1375
- d="M866 697l90 27v62q0 79 -58 135t-138 56t-138 -55.5t-58 -134.5v-283q0 -20 -14 -33.5t-33 -13.5t-32.5 13.5t-13.5 33.5v120h-151v-122q0 -82 57.5 -139t139.5 -57q81 0 138.5 56.5t57.5 136.5v280q0 19 13.5 33t33.5 14q19 0 32.5 -14t13.5 -33v-54zM1199 502v122h-150
1376
- v-126q0 -20 -13.5 -33.5t-33.5 -13.5q-19 0 -32.5 14t-13.5 33v123l-90 -26l-60 28v-123q0 -80 58 -137t139 -57t138.5 57t57.5 139zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103
1377
- t385.5 -103t279.5 -279.5t103 -385.5z" />
1378
- <glyph glyph-name="f1a4" unicode="&#xf1a4;" horiz-adv-x="1920"
1379
- d="M1062 824v118q0 42 -30 72t-72 30t-72 -30t-30 -72v-612q0 -175 -126 -299t-303 -124q-178 0 -303.5 125.5t-125.5 303.5v266h328v-262q0 -43 30 -72.5t72 -29.5t72 29.5t30 72.5v620q0 171 126.5 292t301.5 121q176 0 302 -122t126 -294v-136l-195 -58zM1592 602h328
1380
- v-266q0 -178 -125.5 -303.5t-303.5 -125.5q-177 0 -303 124.5t-126 300.5v268l131 -61l195 58v-270q0 -42 30 -71.5t72 -29.5t72 29.5t30 71.5v275z" />
1381
- <glyph glyph-name="_395" unicode="&#xf1a5;"
1382
- d="M1472 160v480h-704v704h-480q-93 0 -158.5 -65.5t-65.5 -158.5v-480h704v-704h480q93 0 158.5 65.5t65.5 158.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5
1383
- t84.5 -203.5z" />
1384
- <glyph glyph-name="_396" unicode="&#xf1a6;" horiz-adv-x="2048"
1385
- d="M328 1254h204v-983h-532v697h328v286zM328 435v369h-123v-369h123zM614 968v-697h205v697h-205zM614 1254v-204h205v204h-205zM901 968h533v-942h-533v163h328v82h-328v697zM1229 435v369h-123v-369h123zM1516 968h532v-942h-532v163h327v82h-327v697zM1843 435v369h-123
1386
- v-369h123z" />
1387
- <glyph glyph-name="_397" unicode="&#xf1a7;"
1388
- d="M1046 516q0 -64 -38 -109t-91 -45q-43 0 -70 15v277q28 17 70 17q53 0 91 -45.5t38 -109.5zM703 944q0 -64 -38 -109.5t-91 -45.5q-43 0 -70 15v277q28 17 70 17q53 0 91 -45t38 -109zM1265 513q0 134 -88 229t-213 95q-20 0 -39 -3q-23 -78 -78 -136q-87 -95 -211 -101
1389
- v-636l211 41v206q51 -19 117 -19q125 0 213 95t88 229zM922 940q0 134 -88.5 229t-213.5 95q-74 0 -141 -36h-186v-840l211 41v206q55 -19 116 -19q125 0 213.5 95t88.5 229zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960
1390
- q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
1391
- <glyph glyph-name="_398" unicode="&#xf1a8;" horiz-adv-x="2038"
1392
- d="M1222 607q75 3