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

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://wpmet.com/support-ticket

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.4.5
Comparing to
See all releases

Code changes from version 1.4.4 to 1.4.5

base/shortcode.php CHANGED
@@ -1,171 +1,171 @@
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
- $settings = \MetForm\Core\Admin\Base::instance()->get_settings_option();
57
- $page_id = $settings['mf_thank_you_page'];
58
- $post_id = $_GET['id'];
59
-
60
- error_log($post_id);
61
-
62
- $postMeta = get_post_meta(
63
- $post_id,
64
- 'metform_entries__form_data',
65
- true
66
- );
67
- $first_name = !empty($postMeta[$a['fname']]) ? $postMeta[$a['fname']] : '';
68
-
69
- $payment_status = get_post_meta(
70
- $post_id,
71
- 'metform_entries__payment_status',
72
- true
73
- );
74
-
75
- $tnx_id = get_post_meta(
76
- $post_id,
77
- 'metform_entries__payment_trans',
78
- true
79
- );
80
-
81
- $msg = '';
82
-
83
- if ($payment_status == 'paid') {
84
- $msg = $first_name . ' Thank you for your payment. <br>' . ' Your transcation ID : ' . $tnx_id;
85
- } else {
86
- $msg = 'Thank you . Your payment status : ' . $payment_status;
87
- }
88
-
89
- return $msg;
90
-
91
-
92
- /**
93
- *
94
- *
95
- * ===================================
96
- * Atts for thank you page ends here :D
97
- * ====================================
98
- *
99
- */
100
-
101
-
102
-
103
- }
104
-
105
- public function render_mf_field($atts){
106
- $a = shortcode_atts(array(
107
- 'field' => ''
108
- ),$atts);
109
-
110
- $settings = \MetForm\Core\Admin\Base::instance()->get_settings_option();
111
- $page_id = $settings['mf_thank_you_page'];
112
- $post_id = $_GET['id'];
113
-
114
- $field = get_post_meta(
115
- $post_id,
116
- 'metform_entries__form_data',
117
- true
118
- )[$a['field']];
119
-
120
- return $field;
121
-
122
-
123
-
124
- }
125
-
126
- public function render_first_name($atts)
127
- {
128
-
129
- $post_id = $_GET['id'];
130
- $first_name = get_post_meta(
131
- $post_id,
132
- 'metform_entries__form_data',
133
- true
134
- )['mf-listing-fname'];
135
- return $first_name;
136
- }
137
-
138
- public function render_last_name($atts)
139
- {
140
- $post_id = $_GET['id'];
141
- $last_name = get_post_meta(
142
- $post_id,
143
- 'metform_entries__form_data',
144
- true
145
- )['mf-listing-lname'];
146
- return $last_name;
147
- }
148
-
149
- public function render_payment_status($atts)
150
- {
151
- $post_id = $_GET['id'];
152
- $payment_status = get_post_meta(
153
- $post_id,
154
- 'metform_entries__payment_status',
155
- true
156
- );
157
- return $payment_status;
158
- }
159
-
160
- public function render_transaction_id($atts)
161
- {
162
- $post_id = $_GET['id'];
163
- $tnx_id = get_post_meta(
164
- $post_id,
165
- 'metform_entries__payment_trans',
166
- true
167
- );
168
-
169
- return $tnx_id;
170
- }
171
- }
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
+ $settings = \MetForm\Core\Admin\Base::instance()->get_settings_option();
57
+ $page_id = $settings['mf_thank_you_page'];
58
+ $post_id = $_GET['id'];
59
+
60
+ error_log($post_id);
61
+
62
+ $postMeta = get_post_meta(
63
+ $post_id,
64
+ 'metform_entries__form_data',
65
+ true
66
+ );
67
+ $first_name = !empty($postMeta[$a['fname']]) ? $postMeta[$a['fname']] : '';
68
+
69
+ $payment_status = get_post_meta(
70
+ $post_id,
71
+ 'metform_entries__payment_status',
72
+ true
73
+ );
74
+
75
+ $tnx_id = get_post_meta(
76
+ $post_id,
77
+ 'metform_entries__payment_trans',
78
+ true
79
+ );
80
+
81
+ $msg = '';
82
+
83
+ if ($payment_status == 'paid') {
84
+ $msg = $first_name . ' Thank you for your payment. <br>' . ' Your transcation ID : ' . $tnx_id;
85
+ } else {
86
+ $msg = 'Thank you . Your payment status : ' . $payment_status;
87
+ }
88
+
89
+ return $msg;
90
+
91
+
92
+ /**
93
+ *
94
+ *
95
+ * ===================================
96
+ * Atts for thank you page ends here :D
97
+ * ====================================
98
+ *
99
+ */
100
+
101
+
102
+
103
+ }
104
+
105
+ public function render_mf_field($atts){
106
+ $a = shortcode_atts(array(
107
+ 'field' => ''
108
+ ),$atts);
109
+
110
+ $settings = \MetForm\Core\Admin\Base::instance()->get_settings_option();
111
+ $page_id = $settings['mf_thank_you_page'];
112
+ $post_id = $_GET['id'];
113
+
114
+ $field = get_post_meta(
115
+ $post_id,
116
+ 'metform_entries__form_data',
117
+ true
118
+ )[$a['field']];
119
+
120
+ return $field;
121
+
122
+
123
+
124
+ }
125
+
126
+ public function render_first_name($atts)
127
+ {
128
+
129
+ $post_id = $_GET['id'];
130
+ $first_name = get_post_meta(
131
+ $post_id,
132
+ 'metform_entries__form_data',
133
+ true
134
+ )['mf-listing-fname'];
135
+ return $first_name;
136
+ }
137
+
138
+ public function render_last_name($atts)
139
+ {
140
+ $post_id = $_GET['id'];
141
+ $last_name = get_post_meta(
142
+ $post_id,
143
+ 'metform_entries__form_data',
144
+ true
145
+ )['mf-listing-lname'];
146
+ return $last_name;
147
+ }
148
+
149
+ public function render_payment_status($atts)
150
+ {
151
+ $post_id = $_GET['id'];
152
+ $payment_status = get_post_meta(
153
+ $post_id,
154
+ 'metform_entries__payment_status',
155
+ true
156
+ );
157
+ return $payment_status;
158
+ }
159
+
160
+ public function render_transaction_id($atts)
161
+ {
162
+ $post_id = $_GET['id'];
163
+ $tnx_id = get_post_meta(
164
+ $post_id,
165
+ 'metform_entries__payment_trans',
166
+ true
167
+ );
168
+
169
+ return $tnx_id;
170
+ }
171
+ }
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 +1 @@
1
- !function(e,t,o){"use strict";if(void 0===window.parent)return;let r=window.parent;var n=function(){t.hooks.addAction("frontend/element_ready/metform.default",function(o){if(t.isEditMode()){var n=o.find(".formpicker_warper_edit");if(n.off("click.metform").on("click.metform",function(){var t=r.jQuery("#metform-open-content-editor"),o=n.attr("data-metform-formpicker-key"),i=e(this).attr("data-nonce");t.find(".metform-error").remove(),t.find(".metform-content-editor-radio").on("click",function(o){var r=e(this).closest("li").data("target");t.find("#"+r).fadeIn().siblings().hide()}),e.ajax({url:e(this).attr("resturl")+(o||0),type:"get",headers:{"X-WP-Nonce":i},dataType:"html",success:function(e){e?(t.find(".metform-content-editor-radio").first().trigger("click"),t.find(".metform-open-content-editor-templates").html(e)):(t.find(".metform-content-editor-radio").last().trigger("click"),t.find(".metform-open-content-editor-templates").parent().append("<p class='metform-error'>No forms were created yet!</p>"))}}),t.show()}),r.jQuery("#metform-open-content-editor").off("click.metform").on("click.metform",".metform-open-content-editor-button",function(){var t=r.jQuery(".metform-dynamic-content-modal"),o=t.find("#formpicker-control-iframe"),n=t.find(".dialog-lightbox-loading"),i=t.find(".dialog-type-lightbox"),m=e(this).parents(".metform-open-content-inner"),a=m.find(".metform-open-content-editor-templates").val(),d=m.find(".metform-content-editor-radio:checked").val(),f=m.find(".metform-template-radio:checked").val(),c=m.find(".metform-template-input-con input").val(),l=r.jQuery("#metform-form-modalinput-settings").data("nonce");"saved"==d?r.jQuery("body").attr("data-metform-template-key",a):e.ajax({url:e(this).attr("resturl")+"builder_form_id/"+f+"?title="+c,type:"GET",headers:{"X-WP-Nonce":l},success:function(e){r.jQuery("body").attr("data-metform-template-key",e),m.find(".metform-template-input-con input").val(""),m.find(".metform-template-radio").removeAttr("checked").first().attr("checked","checked"),a=e},async:!1});var s=e(this).attr("resturl")+"builder/"+a;r.jQuery("body").attr("data-metform-template-load","false"),i.show(),t.show(),n.show(),o.contents().find("#elementor-loading").show(),o.css("z-index","-1"),o.attr("src",s),o.on("load",function(){n.hide(),o.show(),o.contents().find("#elementor-loading").hide(),o.css("z-index","1")})}),r.jQuery("#elementor-editor-wrapper").on("click","#metform-inspactor-edit-button",function(){}),void 0!==r.jQuery)r.jQuery(".metform-close-editor-modals").off("click.metform").on("click.metform",function(){if(e(this).hasClass("metform-editor-close")){var t=r.jQuery(".metform-dynamic-content-modal").find("#formpicker-control-iframe"),o=t[0].contentWindow||t[0].contentDocument;o.jQuery("#elementor-panel-saver-button-publish").hasClass("elementor-disabled")?i(r):confirm("Leaving? Changes you made may not be saved.")?(o.jQuery(o).off("beforeunload"),i(r)):o.jQuery(o).off("beforeunload")}else if(e(this).hasClass("metform-picker-close")){i(r);var n=r.jQuery("#metform-open-content-editor"),m=n.find(".metform-content-editor-radio:checked").val(),a=n.find(".metform-open-content-editor-templates").val();"saved"==m&&r.jQuery("body").attr("data-metform-template-key",a),i(r)}else i(r);r.jQuery("#metform-open-content-editor").find(".metform-picker-close").hide(),r.jQuery("#metform-open-content-editor").find(".metform-template-radio").removeAttr("checked").first().attr("checked","checked")});r.jQuery("#metform-open-content-editor").find(".metform-open-content-editor-templates").on("change",function(){r.jQuery("#metform-open-content-editor").find(".metform-picker-close").fadeIn()}),r.jQuery(".metform-form-update-close-btn").off("click.metform").on("click.metform",function(){var e=r.jQuery(".metform-dynamic-content-modal").find("#formpicker-control-iframe"),t=e[0].contentWindow||e[0].contentDocument;if(t.jQuery("#elementor-panel-saver-button-publish:not([disabled])").hasClass("elementor-disabled"))r.jQuery(".metform-close-editor-modals").trigger("click.metform");else{t.jQuery("#elementor-panel-saver-button-publish:not([disabled])").trigger("click");var o=setInterval(function(){t.jQuery("#elementor-panel-saver-button-publish:not([disabled])").hasClass("elementor-disabled")&&(r.jQuery(".metform-close-editor-modals").trigger("click.metform"),clearInterval(o))},100)}})}function i(e){e.jQuery("body").attr("data-metform-template-load","true"),e.jQuery(".metform-dynamic-content-modal").hide(),e.jQuery("#metform-open-content-editor").hide()}})};e(window).on("elementor/frontend/init",n)}(jQuery,window.elementorFrontend);
1
+ !function(e,t,o){"use strict";var r;if("undefined"==typeof window.parent)return;let n=window.parent;r={init:function(){t.hooks.addAction("frontend/element_ready/metform.default",function(o){var r,i,m,d;function a(e){e.jQuery("body").attr("data-metform-template-load","true"),e.jQuery(".metform-dynamic-content-modal").hide(),e.jQuery("#metform-open-content-editor").hide()}t.isEditMode()&&((r=o.find(".formpicker_warper_edit")).off("click.metform").on("click.metform",function(){var t=n.jQuery("#metform-open-content-editor"),o=r.attr("data-metform-formpicker-key"),i=e(this).attr("data-nonce");t.find(".metform-error").remove(),t.find(".metform-content-editor-radio").on("click",function(o){var r=e(this).closest("li").data("target");t.find("#"+r).fadeIn().siblings().hide()}),e.ajax({url:e(this).attr("resturl")+(o||0),type:"get",headers:{"X-WP-Nonce":i},dataType:"html",success:function(e){e?(t.find(".metform-content-editor-radio").first().trigger("click"),t.find(".metform-open-content-editor-templates").html(e)):(t.find(".metform-content-editor-radio").last().trigger("click"),t.find(".metform-open-content-editor-templates").parent().append("<p class='metform-error'>No forms were created yet!</p>"))}}),t.show()}),n.jQuery("#metform-open-content-editor").off("click.metform").on("click.metform",".metform-open-content-editor-button",function(){var t,o=n.jQuery(".metform-dynamic-content-modal"),r=o.find("#formpicker-control-iframe"),i=o.find(".dialog-lightbox-loading"),m=o.find(".dialog-type-lightbox"),d=e(this).parents(".metform-open-content-inner"),a=d.find(".metform-open-content-editor-templates").val(),f=d.find(".metform-content-editor-radio:checked").val(),c=d.find(".metform-template-radio:checked").val(),l=d.find(".metform-template-input-con input").val(),s=n.jQuery("#metform-form-modalinput-settings").data("nonce");"saved"===f?n.jQuery("body").attr("data-metform-template-key",a):e.ajax({url:e(this).attr("resturl")+"builder_form_id/"+c+"?title="+l,type:"GET",headers:{"X-WP-Nonce":s},success:function(e){n.jQuery("body").attr("data-metform-template-key",e),d.find(".metform-template-input-con input").val(""),d.find(".metform-template-radio").removeAttr("checked").first().attr("checked","checked"),a=e},async:!1}),t=e(this).attr("resturl")+"builder/"+a,n.jQuery("body").attr("data-metform-template-load","false"),m.show(),o.show(),i.show(),r.contents().find("#elementor-loading").show(),r.css("z-index","-1"),r.attr("src",t),r.on("load",function(){i.hide(),r.show(),r.contents().find("#elementor-loading").hide(),r.css("z-index","1")})}),n.jQuery("#elementor-editor-wrapper").on("click","#metform-inspactor-edit-button",function(){}),"undefined"!=typeof n.jQuery&&n.jQuery(".metform-close-editor-modals").off("click.metform").on("click.metform",function(){if(e(this).hasClass("metform-editor-close")){var t=n.jQuery(".metform-dynamic-content-modal").find("#formpicker-control-iframe"),o=t[0].contentWindow||t[0].contentDocument;o.jQuery("#elementor-panel-saver-button-publish").hasClass("elementor-disabled")?a(n):confirm("Leaving? Changes you made may not be saved.")?(o.jQuery(o).off("beforeunload"),a(n)):o.jQuery(o).off("beforeunload")}else e(this).hasClass("metform-picker-close")?(a(n),i=n.jQuery("#metform-open-content-editor"),m=i.find(".metform-content-editor-radio:checked").val(),d=i.find(".metform-open-content-editor-templates").val(),"saved"===m&&n.jQuery("body").attr("data-metform-template-key",d),a(n)):a(n);n.jQuery("#metform-open-content-editor").find(".metform-picker-close").hide(),n.jQuery("#metform-open-content-editor").find(".metform-template-radio").removeAttr("checked").first().attr("checked","checked")}),n.jQuery("#metform-open-content-editor").find(".metform-open-content-editor-templates").on("change",function(){n.jQuery("#metform-open-content-editor").find(".metform-picker-close").fadeIn()}),n.jQuery(".metform-form-update-close-btn").off("click.metform").on("click.metform",function(){var e,t=n.jQuery(".metform-dynamic-content-modal").find("#formpicker-control-iframe"),o=t[0].contentWindow||t[0].contentDocument;o.jQuery("#elementor-panel-saver-button-publish:not([disabled])").hasClass("elementor-disabled")?n.jQuery(".metform-close-editor-modals").trigger("click.metform"):(o.jQuery("#elementor-panel-saver-button-publish:not([disabled])").trigger("click"),e=setInterval(function(){o.jQuery("#elementor-panel-saver-button-publish:not([disabled])").hasClass("elementor-disabled")&&(n.jQuery(".metform-close-editor-modals").trigger("click.metform"),clearInterval(e))},100))}))})}},e(window).on("elementor/frontend/init",r.init)}(jQuery,window.elementorFrontend);
controls/assets/js/form-picker-inspactor.js CHANGED
@@ -1 +1 @@
1
- jQuery(window).on("elementor:init",function(){"use strict";var e=elementor.modules.controls.BaseData,t=e.extend({interval:null,ui:function(){var t=e.prototype.ui.apply(this,arguments);return t.inputs="textarea",t},events:function(){return _.extend(e.prototype.events.apply(this,arguments),{"change @ui.inputs":"onBaseInputChange"})},onBaseInputChange:function(e){clearTimeout(this.correctionTimeout);var t=e.currentTarget,n=this.getInputValue(t);this.updateElementModel(n,t)},onDestroy:function(){clearInterval(window.metFormPickerInterval2555)},onRender:function(){e.prototype.onRender.apply(this,arguments);var t=this;jQuery(document).on("click",".mf-edit-form",function(){let e=jQuery("#elementor-preview-iframe")[0].contentDocument;jQuery(e).find(".elementor-element-editable .formpicker_warper_edit").trigger("click")}),window.metFormPickerInterval2555=setInterval(function(){var e=jQuery("body").attr("data-metform-template-load"),n=jQuery("body").attr("data-metform-template-key");if("true"==e&&1==t.isRendered&&void 0!==n){var r,o=(new Date).getTime(),a=n.split("***");r=(a=a[0])+"***"+o,jQuery("body").attr("data-metform-template-load","false"),t.setValue(r)}},200)}},{});elementor.addControlView("formpicker",t)});
1
+ jQuery(window).on("elementor:init",function(){"use strict";var e=elementor.modules.controls.BaseData,t=e.extend({interval:null,ui:function(){var t=e.prototype.ui.apply(this,arguments);return t.inputs="textarea",t},events:function(){return _.extend(e.prototype.events.apply(this,arguments),{"change @ui.inputs":"onBaseInputChange"})},onBaseInputChange:function(e){clearTimeout(this.correctionTimeout);var t=e.currentTarget,n=this.getInputValue(t);this.updateElementModel(n,t)},onDestroy:function(){clearInterval(window.metFormPickerInterval2555)},onRender:function(){e.prototype.onRender.apply(this,arguments);var t=this;jQuery(document).on("click",".mf-edit-form",function(){let e=jQuery("#elementor-preview-iframe")[0].contentDocument;jQuery(e).find(".elementor-element-editable .formpicker_warper_edit").trigger("click")}),window.metFormPickerInterval2555=setInterval(function(){var e=jQuery("body").attr("data-metform-template-load"),n=jQuery("body").attr("data-metform-template-key");if("true"==e&&1==t.isRendered&&n!==undefined){var r,o=(new Date).getTime(),a=n.split("***");r=(a=a[0])+"***"+o,jQuery("body").attr("data-metform-template-load","false"),t.setValue(r)}},200)}},{});elementor.addControlView("formpicker",t)});
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="metform-formpicker-header elementor-templates-modal__header">
7
- <div class="elementor-templates-modal__header__logo-area">
8
- <div class="metform-form-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="metform-formpicker-header elementor-templates-modal__header">
7
+ <div class="elementor-templates-modal__header__logo-area">
8
+ <div class="metform-form-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/?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>
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', 'metform'); ?></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 style="display:none;" 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 style="display:none;" 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,95 +1,95 @@
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
- $request = $_POST;
83
-
84
- if( !check_admin_referer('metform-settings-page', 'metform-settings-page')){
85
- return;
86
- }
87
-
88
- $status = \MetForm\Core\Forms\Action::instance()->store( -1, $request);
89
-
90
- return $status;
91
-
92
- }
93
- }
94
-
95
  }
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
+ $request = $_POST;
83
+
84
+ if( !check_admin_referer('metform-settings-page', 'metform-settings-page')){
85
+ return;
86
+ }
87
+
88
+ $status = \MetForm\Core\Forms\Action::instance()->store( -1, $request);
89
+
90
+ return $status;
91
+
92
+ }
93
+ }
94
+
95
  }
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', 'metform'); ?></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', 'metform'); ?>">
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', 'metform') ?></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', 'metform') ?></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', 'metform') ?></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', 'metform') ?></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', 'metform') ?></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', 'metform') ?></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', 'metform') ?></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
@@ -38,7 +38,7 @@ class Action
38
  $this->response = (object) [
39
  'status' => 0,
40
  'error' => [
41
- esc_html__('Some thing went wrong.', 'metrom'),
42
  ],
43
  'data' => [
44
  'message' => '',
@@ -199,6 +199,14 @@ class Action
199
  //$this->response->data['signature_input'] = $signature_input;
200
  }
201
 
 
 
 
 
 
 
 
 
202
  // Hubspot CRM integration
203
 
204
  if (class_exists('\MetForm_Pro\Core\Integrations\Crm\Hubspot\Hubspot')) {
@@ -244,10 +252,18 @@ class Action
244
  // Check if settings exists and enabled
245
 
246
  if (isset($this->form_settings['mf_helpscout']) && $this->form_settings['mf_helpscout'] == '1') {
 
 
 
 
 
247
  (new \Metform_Pro\Core\Integrations\Crm\Helpscout\Helpscout)
248
  ->create_ticket(
249
  $form_data,
250
- $this->form_settings
 
 
 
251
  );
252
  }
253
  }
@@ -424,13 +440,7 @@ class Action
424
  }
425
  }
426
 
427
- // file upload check and action
428
- $file_input_names = $this->get_input_name_by_widget_type('mf-file-upload');
429
-
430
- if ((!empty($file_data)) && ($file_input_names != null)) {
431
- $this->upload_file($file_data, $file_input_names);
432
- }
433
-
434
  // sanitize form submitted data
435
  $this->sanitize($form_data);
436
 
38
  $this->response = (object) [
39
  'status' => 0,
40
  'error' => [
41
+ esc_html__('Some thing went wrong.', 'metform'),
42
  ],
43
  'data' => [
44
  'message' => '',
199
  //$this->response->data['signature_input'] = $signature_input;
200
  }
201
 
202
+ // file upload check and action
203
+ $file_input_names = $this->get_input_name_by_widget_type('mf-file-upload');
204
+
205
+ if ((!empty($file_data)) && ($file_input_names != null)) {
206
+ $this->upload_file($file_data, $file_input_names);
207
+ }
208
+
209
+
210
  // Hubspot CRM integration
211
 
212
  if (class_exists('\MetForm_Pro\Core\Integrations\Crm\Hubspot\Hubspot')) {
252
  // Check if settings exists and enabled
253
 
254
  if (isset($this->form_settings['mf_helpscout']) && $this->form_settings['mf_helpscout'] == '1') {
255
+
256
+ $file_input_names = $this->get_input_name_by_widget_type('mf-file-upload');
257
+
258
+ // error_log( serialize( $this->file_upload_info ));
259
+
260
  (new \Metform_Pro\Core\Integrations\Crm\Helpscout\Helpscout)
261
  ->create_ticket(
262
  $form_data,
263
+ $this->form_settings,
264
+ $file_input_names,
265
+ $file_data,
266
+ $this->file_upload_info
267
  );
268
  }
269
  }
440
  }
441
  }
442
 
443
+
 
 
 
 
 
 
444
  // sanitize form submitted data
445
  $this->sanitize($form_data);
446
 
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/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,305 +1,305 @@
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'>";
176
- foreach ($this->file_meta_data as $key => $value) {
177
- if (empty($this->fields)) {
178
- return;
179
- }
180
- echo "<p><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) . " download>" . 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
- </p>
208
- <?php
209
- }
210
- echo "</div>";
211
- }
212
-
213
- function store_form_data_cmb($post_id)
214
- {
215
-
216
- // add save code here
217
-
218
- }
219
-
220
- function add_woo_payment_status_cmb()
221
- {
222
- add_meta_box(
223
- 'metform_entries__woo_checkout_status',
224
- esc_html__('Woocommerce Checkout'),
225
- [$this, 'show_woo_checkout_status_cmb'],
226
- $this->cpt->get_name(),
227
- 'side',
228
- 'high'
229
- );
230
- }
231
-
232
- function show_woo_checkout_status_cmb($post)
233
- {
234
- $order_id = get_post_meta($post->ID, 'mf_woo_order_id', true);
235
- if($order_id == null) {
236
- return;
237
- }
238
- $order = wc_get_order($order_id);
239
- $order_url = get_admin_url() . 'post.php?post=' . $order_id . '&action=edit';
240
- ?>
241
-
242
- <div class="metform-entry-data container">
243
- <table class='mf-entry-data' cellpadding="5" cellspacing="0">
244
- <tbody>
245
- <tr class="mf-data-label">
246
- <td colspan='2'><strong><?php esc_html_e('Order ID ', 'metform'); ?></strong></td>
247
- </tr>
248
- <tr class='mf-data-value'>
249
- <td><?php echo esc_attr($order_id); ?></td>
250
- </tr>
251
- <tr class="mf-data-label">
252
- <td colspan='2'><strong><?php esc_html_e('Order Status', 'metform'); ?></strong></td>
253
- </tr>
254
- <tr class='mf-data-value'>
255
- <td><?php echo esc_attr($order->get_status()); ?></td>
256
- </tr>
257
-
258
- <tr class="mf-data-label">
259
- <td colspan='2'><strong><?php esc_html_e('Total', 'metform'); ?></strong></td>
260
- </tr>
261
- <tr class='mf-data-value'>
262
- <td><?php echo esc_attr($order->get_total() . ' ' . $order->get_currency()); ?></td>
263
- </tr>
264
-
265
- <tr class="mf-data-label">
266
-
267
- </tr>
268
- <tr class='mf-data-value'>
269
- <td><a class="button" href="<?php echo $order_url; ?>" target="__blank">Order Details</a></td>
270
- </tr>
271
-
272
- </tbody>
273
- </table>
274
- </div>
275
-
276
-
277
- <?php
278
-
279
- }
280
-
281
- function add_form_payment_status_cmb()
282
- {
283
-
284
- add_meta_box(
285
- 'metform_entries__payment_status',
286
- esc_html__('Payment'),
287
- [$this, 'show_form_payment_status_cmb'],
288
- $this->cpt->get_name(),
289
- 'side',
290
- 'high'
291
-
292
- );
293
- }
294
-
295
- function show_form_payment_status_cmb($post)
296
- {
297
- echo "Status : " . get_post_meta($post->ID, 'metform_entries__payment_status', true) . "<br>";
298
-
299
- if (get_post_meta($post->ID, 'metform_entries__payment_invoice', true)) {
300
- echo "Invoice : ";
301
- echo get_post_meta($post->ID, 'metform_entries__payment_invoice', true) . "<br>";
302
- }
303
-
304
- }
305
- }
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', 'metform'),
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', 'metform'),
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', 'metform'),
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'>";
176
+ foreach ($this->file_meta_data as $key => $value) {
177
+ if (empty($this->fields)) {
178
+ return;
179
+ }
180
+ echo "<p><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) . " download>" . esc_html__('Download', 'metform') . "</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
+ </p>
208
+ <?php
209
+ }
210
+ echo "</div>";
211
+ }
212
+
213
+ function store_form_data_cmb($post_id)
214
+ {
215
+
216
+ // add save code here
217
+
218
+ }
219
+
220
+ function add_woo_payment_status_cmb()
221
+ {
222
+ add_meta_box(
223
+ 'metform_entries__woo_checkout_status',
224
+ esc_html__('Woocommerce Checkout', 'metform'),
225
+ [$this, 'show_woo_checkout_status_cmb'],
226
+ $this->cpt->get_name(),
227
+ 'side',
228
+ 'high'
229
+ );
230
+ }
231
+
232
+ function show_woo_checkout_status_cmb($post)
233
+ {
234
+ $order_id = get_post_meta($post->ID, 'mf_woo_order_id', true);
235
+ if($order_id == null) {
236
+ return;
237
+ }
238
+ $order = wc_get_order($order_id);
239
+ $order_url = get_admin_url() . 'post.php?post=' . $order_id . '&action=edit';
240
+ ?>
241
+
242
+ <div class="metform-entry-data container">
243
+ <table class='mf-entry-data' cellpadding="5" cellspacing="0">
244
+ <tbody>
245
+ <tr class="mf-data-label">
246
+ <td colspan='2'><strong><?php esc_html_e('Order ID ', 'metform'); ?></strong></td>
247
+ </tr>
248
+ <tr class='mf-data-value'>
249
+ <td><?php echo esc_attr($order_id); ?></td>
250
+ </tr>
251
+ <tr class="mf-data-label">
252
+ <td colspan='2'><strong><?php esc_html_e('Order Status', 'metform'); ?></strong></td>
253
+ </tr>
254
+ <tr class='mf-data-value'>
255
+ <td><?php echo esc_attr($order->get_status()); ?></td>
256
+ </tr>
257
+
258
+ <tr class="mf-data-label">
259
+ <td colspan='2'><strong><?php esc_html_e('Total', 'metform'); ?></strong></td>
260
+ </tr>
261
+ <tr class='mf-data-value'>
262
+ <td><?php echo esc_attr($order->get_total() . ' ' . $order->get_currency()); ?></td>
263
+ </tr>
264
+
265
+ <tr class="mf-data-label">
266
+
267
+ </tr>
268
+ <tr class='mf-data-value'>
269
+ <td><a class="button" href="<?php echo $order_url; ?>" target="__blank">Order Details</a></td>
270
+ </tr>
271
+
272
+ </tbody>
273
+ </table>
274
+ </div>
275
+
276
+
277
+ <?php
278
+
279
+ }
280
+
281
+ function add_form_payment_status_cmb()
282
+ {
283
+
284
+ add_meta_box(
285
+ 'metform_entries__payment_status',
286
+ esc_html__('Payment', 'metform'),
287
+ [$this, 'show_form_payment_status_cmb'],
288
+ $this->cpt->get_name(),
289
+ 'side',
290
+ 'high'
291
+
292
+ );
293
+ }
294
+
295
+ function show_form_payment_status_cmb($post)
296
+ {
297
+ echo "Status : " . get_post_meta($post->ID, 'metform_entries__payment_status', true) . "<br>";
298
+
299
+ if (get_post_meta($post->ID, 'metform_entries__payment_invoice', true)) {
300
+ echo "Invoice : ";
301
+ echo get_post_meta($post->ID, 'metform_entries__payment_invoice', true) . "<br>";
302
+ }
303
+
304
+ }
305
+ }
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/action.php CHANGED
@@ -121,7 +121,7 @@ Class Action{
121
  return;
122
  }
123
 
124
- $this->title = ($this->form_setting['form_title'] != '') ? $this->form_setting['form_title'] : 'New Form # '.time();
125
 
126
  if( isset( $this->form_setting['form_title'] ) ){
127
  $update_post = array(
121
  return;
122
  }
123
 
124
+ $this->title = ($this->form_setting['form_title'] != '') ? $this->form_setting['form_title'] : 'Form # '.time();
125
 
126
  if( isset( $this->form_setting['form_title'] ) ){
127
  $update_post = array(
core/forms/api.php CHANGED
@@ -314,7 +314,35 @@ class Api extends \MetForm\Base\Api
314
  $return['msg'] = 'Helpscout access token';
315
  $return['access_token'] = $access_token;
316
  update_option('mf_helpscout_access_token',$access_token);
317
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
318
 
319
  return $return;
320
  }
314
  $return['msg'] = 'Helpscout access token';
315
  $return['access_token'] = $access_token;
316
  update_option('mf_helpscout_access_token',$access_token);
317
+ }
318
+
319
+ $url = 'https://api.helpscout.net/v2/mailboxes';
320
+
321
+ $mailboxes = [];
322
+
323
+ $token = $access_token;
324
+
325
+ $response = wp_remote_get($url, [
326
+ 'method' => 'GET',
327
+ 'headers' => [
328
+
329
+ 'Authorization' => 'Bearer ' . $token,
330
+ 'Content-Type' => 'application/json; charset=utf-8'
331
+ ],
332
+ ]);
333
+
334
+ $data = json_decode( wp_remote_retrieve_body( $response ) , true);
335
+
336
+ foreach ($data['_embedded']['mailboxes'] as $mailbox) {
337
+
338
+ array_push( $mailboxes, [
339
+ 'id' => $mailbox['id'],
340
+ 'name' => $mailbox['name']
341
+ ]);
342
+
343
+ }
344
+
345
+ update_option('mf_helpscout_mailboxes',$mailboxes);
346
 
347
  return $return;
348
  }
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
@@ -35,7 +35,7 @@
35
  <div class="attr-modal-body" id="metform_form_modal_body">
36
  <div class="mf-input-group">
37
  <label for="attr-input-label" class="attr-input-label"><?php esc_html_e('Title:', 'metform'); ?></label>
38
- <input type="text" name="form_title" class="mf-form-modalinput-title attr-form-control" data-default-value="<?php echo esc_html__('New Form # ', 'meform') . time(); ?>">
39
  <span class='mf-input-help'><?php esc_html_e('This is the form title', 'metform'); ?></span>
40
  </div>
41
 
@@ -418,7 +418,7 @@
418
  $forms = mailster('forms')->get();
419
  foreach ($forms as $form) :
420
  ?>
421
- <option value="<?php esc_html_e($form->ID); ?>"><?php esc_html_e($form->name); ?></option>
422
  <?php
423
  endforeach;
424
 
@@ -547,7 +547,7 @@
547
 
548
  <label class="attr-input-label">
549
 
550
- <span><?php esc_html_e('Fetch hubspot forms'); ?><span class="dashicons dashicons-update metfrom-btn-refresh-hubsopt-list"></span></span>
551
  </label>
552
 
553
  <select name='hubspot_forms' class="attr-form-control hubspot_forms">
@@ -589,9 +589,9 @@
589
  <div style="display: none;" class="helpscout_forms_section">
590
 
591
  <label class="attr-input-label">
592
- <span><?php esc_html_e('Available Mailboxes'); ?></span>
593
  </label>
594
- <?php echo 'Saved mailbox ' . \MetForm\Utils\Util::get_form_settings('mf_helpscout_mailbox'); ?>
595
  <?php if(get_option('mf_helpscout_mailboxes') && is_array(get_option('mf_helpscout_mailboxes'))): ?>
596
  <select id="mf_helpscout_mailbox" name='mf_helpscout_mailbox' class="attr-form-control helpscout_mailboxes">
597
  <?php foreach(get_option('mf_helpscout_mailboxes') as $mailbox): ?>
35
  <div class="attr-modal-body" id="metform_form_modal_body">
36
  <div class="mf-input-group">
37
  <label for="attr-input-label" class="attr-input-label"><?php esc_html_e('Title:', 'metform'); ?></label>
38
+ <input type="text" name="form_title" class="mf-form-modalinput-title attr-form-control" data-default-value="<?php echo esc_html__('New Form # ', 'metform') . time(); ?>">
39
  <span class='mf-input-help'><?php esc_html_e('This is the form title', 'metform'); ?></span>
40
  </div>
41
 
418
  $forms = mailster('forms')->get();
419
  foreach ($forms as $form) :
420
  ?>
421
+ <option value="<?php esc_html_e($form->ID, 'metform'); ?>"><?php esc_html_e($form->name, 'metform'); ?></option>
422
  <?php
423
  endforeach;
424
 
547
 
548
  <label class="attr-input-label">
549
 
550
+ <span><?php esc_html_e('Fetch hubspot forms', 'metform'); ?><span class="dashicons dashicons-update metfrom-btn-refresh-hubsopt-list"></span></span>
551
  </label>
552
 
553
  <select name='hubspot_forms' class="attr-form-control hubspot_forms">
589
  <div style="display: none;" class="helpscout_forms_section">
590
 
591
  <label class="attr-input-label">
592
+ <span><?php esc_html_e('Available Mailboxes', 'metform'); ?></span>
593
  </label>
594
+
595
  <?php if(get_option('mf_helpscout_mailboxes') && is_array(get_option('mf_helpscout_mailboxes'))): ?>
596
  <select id="mf_helpscout_mailbox" name='mf_helpscout_mailbox' class="attr-form-control helpscout_mailboxes">
597
  <?php foreach(get_option('mf_helpscout_mailboxes') as $mailbox): ?>
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,80 +1,80 @@
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
- ],
28
- ];
29
- $server = explode('-', $auth['api_key']);
30
- $url = 'https://' . $server[1] . '.api.mailchimp.com/3.0/lists/' . $auth['list_id'] . '/members/';
31
-
32
- $response = wp_remote_post(
33
- $url,
34
- [
35
- 'method' => 'POST',
36
- 'data_format' => 'body',
37
- 'timeout' => 45,
38
- 'headers' => [
39
-
40
- 'Authorization' => 'apikey ' . $auth['api_key'],
41
- 'Content-Type' => 'application/json; charset=utf-8'
42
- ],
43
- 'body' => json_encode($data)
44
- ]
45
- );
46
-
47
- if (is_wp_error($response)) {
48
- $error_message = $response->get_error_message();
49
- $return['status'] = 0;
50
- $return['msg'] = "Something went wrong: " . esc_html($error_message);
51
- } else {
52
- $return['status'] = 1;
53
- $return['msg'] = esc_html__('Your data inserted on ActiveCampaign.', 'metform');
54
- }
55
-
56
- return $return;
57
- }
58
-
59
- public static function get_list($api_key){
60
-
61
- $server = explode('-',$api_key);
62
-
63
- $url = 'https://'.$server[1].'.api.mailchimp.com/3.0/lists';
64
-
65
- $response = wp_remote_post( $url, [
66
- 'method' => 'GET',
67
- 'data_format' => 'body',
68
- 'timeout' => 45,
69
- 'headers' => [
70
-
71
- 'Authorization' => 'apikey '.$api_key,
72
- 'Content-Type' => 'application/json; charset=utf-8'
73
- ],
74
- 'body' => ''
75
- ]
76
- );
77
-
78
- return $response;
79
- }
80
- }
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
+ ],
28
+ ];
29
+ $server = explode('-', $auth['api_key']);
30
+ $url = 'https://' . $server[1] . '.api.mailchimp.com/3.0/lists/' . $auth['list_id'] . '/members/';
31
+
32
+ $response = wp_remote_post(
33
+ $url,
34
+ [
35
+ 'method' => 'POST',
36
+ 'data_format' => 'body',
37
+ 'timeout' => 45,
38
+ 'headers' => [
39
+
40
+ 'Authorization' => 'apikey ' . $auth['api_key'],
41
+ 'Content-Type' => 'application/json; charset=utf-8'
42
+ ],
43
+ 'body' => json_encode($data)
44
+ ]
45
+ );
46
+
47
+ if (is_wp_error($response)) {
48
+ $error_message = $response->get_error_message();
49
+ $return['status'] = 0;
50
+ $return['msg'] = "Something went wrong: " . esc_html($error_message);
51
+ } else {
52
+ $return['status'] = 1;
53
+ $return['msg'] = esc_html__('Your data inserted on ActiveCampaign.', 'metform');
54
+ }
55
+
56
+ return $return;
57
+ }
58
+
59
+ public static function get_list($api_key){
60
+
61
+ $server = explode('-',$api_key);
62
+
63
+ $url = 'https://'.$server[1].'.api.mailchimp.com/3.0/lists';
64
+
65
+ $response = wp_remote_post( $url, [
66
+ 'method' => 'GET',
67
+ 'data_format' => 'body',
68
+ 'timeout' => 45,
69
+ 'headers' => [
70
+
71
+ 'Authorization' => 'apikey '.$api_key,
72
+ 'Content-Type' => 'application/json; charset=utf-8'
73
+ ],
74
+ 'body' => ''
75
+ ]
76
+ );
77
+
78
+ return $response;
79
+ }
80
+ }
core/integrations/slack.php CHANGED
@@ -1,50 +1,50 @@
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
- ];
28
-
29
- $status = wp_remote_post( $settings['url'], array(
30
- 'method' => 'POST',
31
- 'timeout' => 30,
32
- 'redirection' => 5,
33
- 'httpversion' => '1.0',
34
- 'blocking' => true,
35
- 'headers' => array(),
36
- 'body' => json_encode($data),
37
- 'cookies' => array()
38
- )
39
- );
40
-
41
- if(is_wp_error($status)){
42
- $msg['status'] = 0;
43
- $msg['msg'] = "Something went wrong : ".$status->get_error_message();
44
- }else{
45
- $msg['status'] = 1;
46
- $msg['msg'] = esc_html__('Your data inserted on slack.', 'metform');
47
- }
48
- return $msg;
49
- }
50
  }
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
+ ];
28
+
29
+ $status = wp_remote_post( $settings['url'], array(
30
+ 'method' => 'POST',
31
+ 'timeout' => 30,
32
+ 'redirection' => 5,
33
+ 'httpversion' => '1.0',
34
+ 'blocking' => true,
35
+ 'headers' => array(),
36
+ 'body' => json_encode($data),
37
+ 'cookies' => array()
38
+ )
39
+ );
40
+
41
+ if(is_wp_error($status)){
42
+ $msg['status'] = 0;
43
+ $msg['msg'] = "Something went wrong : ".$status->get_error_message();
44
+ }else{
45
+ $msg['status'] = 1;
46
+ $msg['msg'] = esc_html__('Your data inserted on slack.', 'metform');
47
+ }
48
+ return $msg;
49
+ }
50
  }
languages/metform.pot CHANGED
@@ -1,2913 +1,3190 @@
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
+ # Copyright (C) 2021 Wpmet
2
+ # This file is distributed under the GPL-2.0+.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: MetForm 1.4.5\n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/metform\n"
7
+ "POT-Creation-Date: 2021-02-15 06:36:40+00:00\n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=utf-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
12
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
+ "Language-Team: LANGUAGE <LL@li.org>\n"
14
+ "X-Generator: grunt-wp-i18n 1.0.3\n"
15
+
16
+ #: traits/conditional-controls.php:120
17
+ msgid "50"
18
+ msgstr ""
19
+
20
+ #: widgets/file-upload/file-upload.php:128
21
+ msgid "128"
22
+ msgstr ""
23
+
24
+ #. Plugin Name of the plugin/theme
25
+ msgid "MetForm"
26
+ msgstr ""
27
+
28
+ #: controls/form-editor-modal.php:14
29
+ msgid "Form settings"
30
+ msgstr ""
31
+
32
+ #: controls/form-editor-modal.php:15
33
+ msgid "Update & Close"
34
+ msgstr ""
35
+
36
+ #: controls/form-editor-modal.php:20 controls/form-editor-modal.php:21
37
+ #: controls/form-picker-modal.php:93
38
+ msgid "Close"
39
+ msgstr ""
40
+
41
+ #: controls/form-editor-modal.php:46
42
+ msgid "Loading"
43
+ msgstr ""
44
+
45
+ #: controls/form-picker-modal.php:12
46
+ msgid "Select Form"
47
+ msgstr ""
48
+
49
+ #: controls/form-picker-modal.php:13
50
+ msgid "Select saved form"
51
+ msgstr ""
52
+
53
+ #: controls/form-picker-modal.php:23
54
+ msgid "New"
55
+ msgstr ""
56
+
57
+ #: controls/form-picker-modal.php:24
58
+ msgid "Create new form"
59
+ msgstr ""
60
+
61
+ #: controls/form-picker-modal.php:37
62
+ msgid "Enter a form name"
63
+ msgstr ""
64
+
65
+ #: controls/form-picker-modal.php:70
66
+ msgid "Buy Pro"
67
+ msgstr ""
68
+
69
+ #: controls/form-picker-modal.php:74
70
+ msgid "Demo"
71
+ msgstr ""
72
+
73
+ #: controls/form-picker-modal.php:89
74
+ msgid "Edit form"
75
+ msgstr ""
76
+
77
+ #: controls/form-picker-modal.php:91
78
+ msgid "Save & close"
79
+ msgstr ""
80
+
81
+ #: controls/form-picker-utils.php:33
82
+ msgid "Edit Form Content"
83
+ msgstr ""
84
+
85
+ #: controls/form-picker-utils.php:33
86
+ msgid "Edit"
87
+ msgstr ""
88
+
89
+ #: controls/form-picker-utils.php:40
90
+ msgid "No content is added yet."
91
+ msgstr ""
92
+
93
+ #: core/admin/base.php:28 traits/button-controls.php:37
94
+ #: widgets/checkbox/checkbox.php:165 widgets/date/date.php:120
95
+ #: widgets/email/email.php:71 widgets/file-upload/file-upload.php:96
96
+ #: widgets/listing-fname/listing-fname.php:48
97
+ #: widgets/listing-lname/listing-lname.php:48
98
+ #: widgets/listing-optin/listing-optin.php:74
99
+ #: widgets/multi-select/multi-select.php:123 widgets/number/number.php:48
100
+ #: widgets/password/password.php:48 widgets/radio/radio.php:165
101
+ #: widgets/range/range.php:48 widgets/rating/rating.php:48
102
+ #: widgets/select/select.php:123 widgets/summary/summary.php:48
103
+ #: widgets/switch/switch.php:65 widgets/telephone/telephone.php:48
104
+ #: widgets/text/text.php:48 widgets/textarea/textarea.php:49
105
+ #: widgets/time/time.php:52 widgets/url/url.php:49
106
+ msgid "Settings"
107
+ msgstr ""
108
+
109
+ #: core/admin/views/settings.php:21 core/admin/views/settings.php:72
110
+ msgid "Dashboard"
111
+ msgstr ""
112
+
113
+ #: core/admin/views/settings.php:22
114
+ msgid "All dashboard info here"
115
+ msgstr ""
116
+
117
+ #: core/admin/views/settings.php:30 core/admin/views/settings.php:294
118
+ #: core/forms/views/modal-editor.php:14
119
+ msgid "General"
120
+ msgstr ""
121
+
122
+ #: core/admin/views/settings.php:31
123
+ msgid "All General info here"
124
+ msgstr ""
125
+
126
+ #: core/admin/views/settings.php:40 core/admin/views/settings.php:415
127
+ #: core/entries/meta-data.php:286 core/forms/views/modal-editor.php:23
128
+ msgid "Payment"
129
+ msgstr ""
130
+
131
+ #: core/admin/views/settings.php:41
132
+ msgid "All payment info here"
133
+ msgstr ""
134
+
135
+ #: core/admin/views/settings.php:49 core/admin/views/settings.php:577
136
+ msgid "Newsletter Integration"
137
+ msgstr ""
138
+
139
+ #: core/admin/views/settings.php:50
140
+ msgid "All newsletter integration info here"
141
+ msgstr ""
142
+
143
+ #: core/admin/views/settings.php:73 core/admin/views/settings.php:295
144
+ #: core/admin/views/settings.php:416 core/admin/views/settings.php:579
145
+ msgid "Save Changes"
146
+ msgstr ""
147
+
148
+ #: core/admin/views/settings.php:83
149
+ msgid "Top Notch"
150
+ msgstr ""
151
+
152
+ #: core/admin/views/settings.php:84
153
+ msgid "Features"
154
+ msgstr ""
155
+
156
+ #: core/admin/views/settings.php:85 core/admin/views/settings.php:144
157
+ msgid "features"
158
+ msgstr ""
159
+
160
+ #: core/admin/views/settings.php:87 core/admin/views/settings.php:146
161
+ #: core/admin/views/settings.php:220
162
+ msgid ""
163
+ "Get started by spending some time with the documentation to get familiar "
164
+ "with ElementsKit."
165
+ msgstr ""
166
+
167
+ #: core/admin/views/settings.php:95 core/admin/views/settings.php:154
168
+ msgid "Easy to use"
169
+ msgstr ""
170
+
171
+ #: core/admin/views/settings.php:97 core/admin/views/settings.php:104
172
+ #: core/admin/views/settings.php:111 core/admin/views/settings.php:118
173
+ #: core/admin/views/settings.php:125 core/admin/views/settings.php:132
174
+ msgid ""
175
+ "Get started by spending some time with the documentation to get familiar "
176
+ "with MetForm"
177
+ msgstr ""
178
+
179
+ #: core/admin/views/settings.php:102
180
+ msgid "Moden Typography"
181
+ msgstr ""
182
+
183
+ #: core/admin/views/settings.php:109 core/admin/views/settings.php:160
184
+ msgid "Perfectly Match"
185
+ msgstr ""
186
+
187
+ #: core/admin/views/settings.php:116
188
+ msgid "Dynamic Forms"
189
+ msgstr ""
190
+
191
+ #: core/admin/views/settings.php:123
192
+ msgid "Create Faster"
193
+ msgstr ""
194
+
195
+ #: core/admin/views/settings.php:130
196
+ msgid "Awesome Layout"
197
+ msgstr ""
198
+
199
+ #: core/admin/views/settings.php:142
200
+ msgid "What included with Free &"
201
+ msgstr ""
202
+
203
+ #: core/admin/views/settings.php:143
204
+ msgid "PRO"
205
+ msgstr ""
206
+
207
+ #: core/admin/views/settings.php:154 core/admin/views/settings.php:157
208
+ #: core/admin/views/settings.php:160
209
+ msgid "Pro"
210
+ msgstr ""
211
+
212
+ #: core/admin/views/settings.php:157
213
+ msgid "Modern Typography"
214
+ msgstr ""
215
+
216
+ #: core/admin/views/settings.php:169 core/admin/views/settings.php:185
217
+ #: core/admin/views/settings.php:199
218
+ msgid ""
219
+ "Get started by spending some time with the documentation to get familiar "
220
+ "with MetForm Get started by spending some time with the documentation to "
221
+ "get notification in real time."
222
+ msgstr ""
223
+
224
+ #: core/admin/views/settings.php:172 core/admin/views/settings.php:188
225
+ #: core/admin/views/settings.php:202
226
+ msgid "Success Message"
227
+ msgstr ""
228
+
229
+ #: core/admin/views/settings.php:173 core/admin/views/settings.php:189
230
+ #: core/admin/views/settings.php:203
231
+ msgid "Required Login"
232
+ msgstr ""
233
+
234
+ #: core/admin/views/settings.php:174 core/admin/views/settings.php:190
235
+ #: core/admin/views/settings.php:204
236
+ msgid "Hide Form After Submission"
237
+ msgstr ""
238
+
239
+ #: core/admin/views/settings.php:176 core/admin/views/settings.php:192
240
+ #: core/admin/views/settings.php:206
241
+ msgid "Store Entries"
242
+ msgstr ""
243
+
244
+ #: core/admin/views/settings.php:179
245
+ msgid "View Details"
246
+ msgstr ""
247
+
248
+ #: core/admin/views/settings.php:217
249
+ msgid "General Knowledge Base"
250
+ msgstr ""
251
+
252
+ #: core/admin/views/settings.php:218
253
+ msgid "FAQ"
254
+ msgstr ""
255
+
256
+ #: core/admin/views/settings.php:228
257
+ msgid "1. How to create a Invitation Form using MetForm?"
258
+ msgstr ""
259
+
260
+ #: core/admin/views/settings.php:232 core/admin/views/settings.php:243
261
+ #: core/admin/views/settings.php:254
262
+ msgid ""
263
+ "You will get 20+ complete homepages and total 450+ blocks in our layout "
264
+ "library and we’re continuously updating the numbers there."
265
+ msgstr ""
266
+
267
+ #: core/admin/views/settings.php:239
268
+ msgid "2. How to translate language with WPML?"
269
+ msgstr ""
270
+
271
+ #: core/admin/views/settings.php:250
272
+ msgid "3. How to add custom css in specific section shortcode?"
273
+ msgstr ""
274
+
275
+ #: core/admin/views/settings.php:261
276
+ msgid "View all faq’s"
277
+ msgstr ""
278
+
279
+ #: core/admin/views/settings.php:270
280
+ msgid "Satisfied!"
281
+ msgstr ""
282
+
283
+ #: core/admin/views/settings.php:270
284
+ msgid "Don’t forget to rate our item."
285
+ msgstr ""
286
+
287
+ #: core/admin/views/settings.php:272
288
+ msgid "review"
289
+ msgstr ""
290
+
291
+ #: core/admin/views/settings.php:278
292
+ msgid "Rate it now"
293
+ msgstr ""
294
+
295
+ #: core/admin/views/settings.php:283
296
+ msgid "Rate Now Thumb"
297
+ msgstr ""
298
+
299
+ #: core/admin/views/settings.php:301
300
+ msgid "reCaptcha"
301
+ msgstr ""
302
+
303
+ #: core/admin/views/settings.php:306
304
+ msgid "Map"
305
+ msgstr ""
306
+
307
+ #: core/admin/views/settings.php:319
308
+ msgid "Select version:"
309
+ msgstr ""
310
+
311
+ #: core/admin/views/settings.php:323
312
+ msgid "reCAPTCHA V2"
313
+ msgstr ""
314
+
315
+ #: core/admin/views/settings.php:326
316
+ msgid "reCAPTCHA V3"
317
+ msgstr ""
318
+
319
+ #: core/admin/views/settings.php:331
320
+ msgid "Select google reCaptcha version which one want to use."
321
+ msgstr ""
322
+
323
+ #: core/admin/views/settings.php:338 core/admin/views/settings.php:357
324
+ msgid "Site key:"
325
+ msgstr ""
326
+
327
+ #: core/admin/views/settings.php:340 core/admin/views/settings.php:359
328
+ msgid "Insert site key"
329
+ msgstr ""
330
+
331
+ #: core/admin/views/settings.php:342 core/admin/views/settings.php:361
332
+ msgid "Create google reCaptcha site key from reCaptcha admin panel. "
333
+ msgstr ""
334
+
335
+ #: core/admin/views/settings.php:342 core/admin/views/settings.php:350
336
+ #: core/admin/views/settings.php:361 core/admin/views/settings.php:369
337
+ #: core/admin/views/settings.php:387 core/admin/views/settings.php:446
338
+ #: core/admin/views/settings.php:454 core/admin/views/settings.php:486
339
+ #: core/admin/views/settings.php:494 core/admin/views/settings.php:513
340
+ #: core/admin/views/settings.php:520
341
+ msgid "Create from here"
342
+ msgstr ""
343
+
344
+ #: core/admin/views/settings.php:346 core/admin/views/settings.php:365
345
+ msgid "Secret key:"
346
+ msgstr ""
347
+
348
+ #: core/admin/views/settings.php:348 core/admin/views/settings.php:367
349
+ msgid "Insert secret key"
350
+ msgstr ""
351
+
352
+ #: core/admin/views/settings.php:350 core/admin/views/settings.php:369
353
+ msgid "Create google reCaptcha secret key from reCaptcha admin panel. "
354
+ msgstr ""
355
+
356
+ #: core/admin/views/settings.php:383
357
+ msgid "API:"
358
+ msgstr ""
359
+
360
+ #: core/admin/views/settings.php:385
361
+ msgid "Insert map api key"
362
+ msgstr ""
363
+
364
+ #: core/admin/views/settings.php:387
365
+ msgid "Create google map api key from google developer console. "
366
+ msgstr ""
367
+
368
+ #: core/admin/views/settings.php:422
369
+ msgid "Paypal"
370
+ msgstr ""
371
+
372
+ #: core/admin/views/settings.php:427
373
+ msgid "Stripe"
374
+ msgstr ""
375
+
376
+ #: core/admin/views/settings.php:432
377
+ msgid "Tankyou Page"
378
+ msgstr ""
379
+
380
+ #: core/admin/views/settings.php:443
381
+ msgid "Paypal email:"
382
+ msgstr ""
383
+
384
+ #: core/admin/views/settings.php:444
385
+ msgid "Paypal email"
386
+ msgstr ""
387
+
388
+ #: core/admin/views/settings.php:446
389
+ msgid "Enter here your paypal email. "
390
+ msgstr ""
391
+
392
+ #: core/admin/views/settings.php:451
393
+ msgid "Paypal token:"
394
+ msgstr ""
395
+
396
+ #: core/admin/views/settings.php:452
397
+ msgid "Paypal token"
398
+ msgstr ""
399
+
400
+ #: core/admin/views/settings.php:454
401
+ msgid "Enter here your paypal token. This is optional. "
402
+ msgstr ""
403
+
404
+ #: core/admin/views/settings.php:459 core/admin/views/settings.php:500
405
+ msgid "Enable sandbox mode:"
406
+ msgstr ""
407
+
408
+ #: core/admin/views/settings.php:462
409
+ msgid "Enable this for testing payment method. "
410
+ msgstr ""
411
+
412
+ #: core/admin/views/settings.php:475
413
+ msgid "Image url:"
414
+ msgstr ""
415
+
416
+ #: core/admin/views/settings.php:476
417
+ msgid "Stripe image url"
418
+ msgstr ""
419
+
420
+ #: core/admin/views/settings.php:478
421
+ msgid ""
422
+ "Enter here your stripe image url. This image will show on stripe payment "
423
+ "pop up modal. "
424
+ msgstr ""
425
+
426
+ #: core/admin/views/settings.php:483
427
+ msgid "Live publishiable key:"
428
+ msgstr ""
429
+
430
+ #: core/admin/views/settings.php:484
431
+ msgid "Stripe live publishiable key"
432
+ msgstr ""
433
+
434
+ #: core/admin/views/settings.php:486
435
+ msgid "Enter here your stripe live publishiable key. "
436
+ msgstr ""
437
+
438
+ #: core/admin/views/settings.php:491
439
+ msgid "Live secret key:"
440
+ msgstr ""
441
+
442
+ #: core/admin/views/settings.php:492
443
+ msgid "Stripe live secret key"
444
+ msgstr ""
445
+
446
+ #: core/admin/views/settings.php:494
447
+ msgid "Enter here your stripe live secret key. "
448
+ msgstr ""
449
+
450
+ #: core/admin/views/settings.php:503
451
+ msgid "Enable this for testing your payment system. "
452
+ msgstr ""
453
+
454
+ #: core/admin/views/settings.php:510
455
+ msgid "Test publishiable key:"
456
+ msgstr ""
457
+
458
+ #: core/admin/views/settings.php:511
459
+ msgid "Stripe test publishiable key"
460
+ msgstr ""
461
+
462
+ #: core/admin/views/settings.php:513
463
+ msgid "Enter here your test publishiable key. "
464
+ msgstr ""
465
+
466
+ #: core/admin/views/settings.php:517
467
+ msgid "Test secret key:"
468
+ msgstr ""
469
+
470
+ #: core/admin/views/settings.php:518
471
+ msgid "Stripe test secret key"
472
+ msgstr ""
473
+
474
+ #: core/admin/views/settings.php:520
475
+ msgid "Enter here your test secret key. "
476
+ msgstr ""
477
+
478
+ #: core/admin/views/settings.php:586
479
+ msgid "MailChimp"
480
+ msgstr ""
481
+
482
+ #: core/admin/views/settings.php:591
483
+ msgid "Aweber"
484
+ msgstr ""
485
+
486
+ #: core/admin/views/settings.php:595
487
+ msgid "ActiveCampaign"
488
+ msgstr ""
489
+
490
+ #: core/admin/views/settings.php:599
491
+ msgid "Get Response"
492
+ msgstr ""
493
+
494
+ #: core/admin/views/settings.php:603
495
+ msgid "ConvertKit"
496
+ msgstr ""
497
+
498
+ #: core/admin/views/settings.php:616 core/admin/views/settings.php:713
499
+ #: core/admin/views/settings.php:765 core/admin/views/settings.php:792
500
+ msgid "API Key:"
501
+ msgstr ""
502
+
503
+ #: core/admin/views/settings.php:617
504
+ msgid "Mailchimp api key"
505
+ msgstr ""
506
+
507
+ #: core/admin/views/settings.php:619
508
+ msgid "Enter here your Mailchimp api key. "
509
+ msgstr ""
510
+
511
+ #: core/admin/views/settings.php:619 core/admin/views/settings.php:653
512
+ #: core/admin/views/settings.php:661 core/admin/views/settings.php:716
513
+ #: core/admin/views/settings.php:725 core/admin/views/settings.php:760
514
+ #: core/admin/views/settings.php:768 core/admin/views/settings.php:795
515
+ msgid "Get API."
516
+ msgstr ""
517
+
518
+ #: core/admin/views/settings.php:628 core/admin/views/settings.php:693
519
+ #: core/admin/views/settings.php:735 core/admin/views/settings.php:776
520
+ #: core/admin/views/settings.php:803 core/admin/views/settings.php:836
521
+ #: core/admin/views/settings.php:863
522
+ msgid "How To"
523
+ msgstr ""
524
+
525
+ #: core/admin/views/settings.php:629 core/admin/views/settings.php:694
526
+ #: core/admin/views/settings.php:736 core/admin/views/settings.php:777
527
+ #: core/admin/views/settings.php:804 core/admin/views/settings.php:837
528
+ #: core/admin/views/settings.php:864
529
+ msgid ""
530
+ "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. "
531
+ "Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse "
532
+ "urna nibh, viverra non, semper suscipit, posuere a, pede."
533
+ msgstr ""
534
+
535
+ #: core/admin/views/settings.php:632 core/admin/views/settings.php:697
536
+ #: core/admin/views/settings.php:739 core/admin/views/settings.php:780
537
+ #: core/admin/views/settings.php:807 core/admin/views/settings.php:840
538
+ #: core/admin/views/settings.php:867
539
+ msgid "Item 1"
540
+ msgstr ""
541
+
542
+ #: core/admin/views/settings.php:633 core/admin/views/settings.php:698
543
+ #: core/admin/views/settings.php:740 core/admin/views/settings.php:781
544
+ #: core/admin/views/settings.php:808 core/admin/views/settings.php:841
545
+ #: core/admin/views/settings.php:868
546
+ msgid "Item 2"
547
+ msgstr ""
548
+
549
+ #: core/admin/views/settings.php:634 core/admin/views/settings.php:699
550
+ #: core/admin/views/settings.php:741 core/admin/views/settings.php:782
551
+ #: core/admin/views/settings.php:809 core/admin/views/settings.php:842
552
+ #: core/admin/views/settings.php:869
553
+ msgid "Item 3"
554
+ msgstr ""
555
+
556
+ #: core/admin/views/settings.php:637 core/admin/views/settings.php:702
557
+ #: core/admin/views/settings.php:744 core/admin/views/settings.php:785
558
+ #: core/admin/views/settings.php:812 core/admin/views/settings.php:845
559
+ #: core/admin/views/settings.php:872
560
+ msgid "View Documentation"
561
+ msgstr ""
562
+
563
+ #: core/admin/views/settings.php:650
564
+ msgid "Developer App ID:"
565
+ msgstr ""
566
+
567
+ #: core/admin/views/settings.php:651
568
+ msgid "Aweber developer clientId key"
569
+ msgstr ""
570
+
571
+ #: core/admin/views/settings.php:653
572
+ msgid "Enter here your Aweber developer app key. "
573
+ msgstr ""
574
+
575
+ #: core/admin/views/settings.php:658
576
+ msgid "Developer App Secret:"
577
+ msgstr ""
578
+
579
+ #: core/admin/views/settings.php:659
580
+ msgid "Aweber developer secret key"
581
+ msgstr ""
582
+
583
+ #: core/admin/views/settings.php:661
584
+ msgid "Enter here your Aweber developer secret key. "
585
+ msgstr ""
586
+
587
+ #: core/admin/views/settings.php:666
588
+ msgid "Redirect url:"
589
+ msgstr ""
590
+
591
+ #: core/admin/views/settings.php:714 core/admin/views/settings.php:723
592
+ msgid "ConvertKit api key"
593
+ msgstr ""
594
+
595
+ #: core/admin/views/settings.php:716 core/admin/views/settings.php:725
596
+ msgid "Enter here your ConvertKit api key. "
597
+ msgstr ""
598
+
599
+ #: core/admin/views/settings.php:722
600
+ msgid "Secret Key:"
601
+ msgstr ""
602
+
603
+ #: core/admin/views/settings.php:757
604
+ msgid "API URL:"
605
+ msgstr ""
606
+
607
+ #: core/admin/views/settings.php:758
608
+ msgid "ActiveCampaign API URL"
609
+ msgstr ""
610
+
611
+ #: core/admin/views/settings.php:760 core/admin/views/settings.php:768
612
+ #: core/admin/views/settings.php:795
613
+ msgid "Enter here your ActiveCampaign api key. "
614
+ msgstr ""
615
+
616
+ #: core/admin/views/settings.php:766 core/admin/views/settings.php:793
617
+ msgid "ActiveCampaign api key"
618
+ msgstr ""
619
+
620
+ #: core/admin/views/settings.php:826 core/admin/views/settings.php:853
621
+ msgid "GetResponse API Key:"
622
+ msgstr ""
623
+
624
+ #: core/admin/views/settings.php:827 core/admin/views/settings.php:854
625
+ msgid "GetResponse api key"
626
+ msgstr ""
627
+
628
+ #: core/entries/action.php:41
629
+ msgid "Some thing went wrong."
630
+ msgstr ""
631
+
632
+ #: core/entries/action.php:80
633
+ msgid "Unauthorized submission."
634
+ msgstr ""
635
+
636
+ #: core/entries/action.php:97 core/entries/action.php:127
637
+ msgid "Please solve the recaptcha."
638
+ msgstr ""
639
+
640
+ #: core/entries/action.php:103
641
+ msgid "Google captcha token not found."
642
+ msgstr ""
643
+
644
+ #: core/entries/action.php:149
645
+ msgid "Time out of this captcha. Please reload or choose another one."
646
+ msgstr ""
647
+
648
+ #: core/entries/action.php:158
649
+ msgid "Enter correct captcha."
650
+ msgstr ""
651
+
652
+ #: core/entries/action.php:168
653
+ msgid "You must be logged in to submit form."
654
+ msgstr ""
655
+
656
+ #: core/entries/action.php:178
657
+ msgid "Form submission limit execed."
658
+ msgstr ""
659
+
660
+ #: core/entries/action.php:512
661
+ msgid " Please wait... Redirecting to paypal."
662
+ msgstr ""
663
+
664
+ #: core/entries/action.php:554
665
+ msgid " Please wait... Open a Stripe Popup Box."
666
+ msgstr ""
667
+
668
+ #: core/entries/action.php:720
669
+ msgid "Mail not found."
670
+ msgstr ""
671
+
672
+ #: core/entries/action.php:762
673
+ msgid "Admin mail not found to send email."
674
+ msgstr ""
675
+
676
+ #: core/entries/action.php:851
677
+ msgid "There was an error uploading your file. The error is: "
678
+ msgstr ""
679
+
680
+ #: core/entries/cpt.php:16 core/entries/cpt.php:17
681
+ msgid "Entry"
682
+ msgstr ""
683
+
684
+ #: core/entries/cpt.php:18
685
+ msgid "Entry Archives"
686
+ msgstr ""
687
+
688
+ #: core/entries/cpt.php:19
689
+ msgid "Entry Attributes"
690
+ msgstr ""
691
+
692
+ #: core/entries/cpt.php:20 core/forms/cpt.php:380
693
+ msgid "Parent Item:"
694
+ msgstr ""
695
+
696
+ #: core/entries/cpt.php:21 core/forms/hooks.php:36
697
+ msgid "Entries"
698
+ msgstr ""
699
+
700
+ #: core/entries/cpt.php:22
701
+ msgid "Add New Item"
702
+ msgstr ""
703
+
704
+ #: core/entries/cpt.php:23 core/forms/cpt.php:383
705
+ msgid "Add New"
706
+ msgstr ""
707
+
708
+ #: core/entries/cpt.php:24
709
+ msgid "New Item"
710
+ msgstr ""
711
+
712
+ #: core/entries/cpt.php:25
713
+ msgid "Edit Item"
714
+ msgstr ""
715
+
716
+ #: core/entries/cpt.php:26
717
+ msgid "Update Item"
718
+ msgstr ""
719
+
720
+ #: core/entries/cpt.php:27
721
+ msgid "View Item"
722
+ msgstr ""
723
+
724
+ #: core/entries/cpt.php:28
725
+ msgid "View Items"
726
+ msgstr ""
727
+
728
+ #: core/entries/cpt.php:29
729
+ msgid "Search Item"
730
+ msgstr ""
731
+
732
+ #: core/entries/cpt.php:30 core/forms/cpt.php:390
733
+ msgid "Not found"
734
+ msgstr ""
735
+
736
+ #: core/entries/cpt.php:31 core/forms/cpt.php:391
737
+ msgid "Not found in Trash"
738
+ msgstr ""
739
+
740
+ #: core/entries/cpt.php:32 core/forms/cpt.php:392
741
+ msgid "Featured Image"
742
+ msgstr ""
743
+
744
+ #: core/entries/cpt.php:33 core/forms/cpt.php:393
745
+ msgid "Set featured image"
746
+ msgstr ""
747
+
748
+ #: core/entries/cpt.php:34 core/forms/cpt.php:394
749
+ msgid "Remove featured image"
750
+ msgstr ""
751
+
752
+ #: core/entries/cpt.php:35 core/forms/cpt.php:395
753
+ msgid "Use as featured image"
754
+ msgstr ""
755
+
756
+ #: core/entries/cpt.php:36
757
+ msgid "Insert into item"
758
+ msgstr ""
759
+
760
+ #: core/entries/cpt.php:37
761
+ msgid "Uploaded to this item"
762
+ msgstr ""
763
+
764
+ #: core/entries/cpt.php:38
765
+ msgid "Form entries list"
766
+ msgstr ""
767
+
768
+ #: core/entries/cpt.php:39
769
+ msgid "Form entries list navigation"
770
+ msgstr ""
771
+
772
+ #: core/entries/cpt.php:40
773
+ msgid "Filter from entry list"
774
+ msgstr ""
775
+
776
+ #: core/entries/cpt.php:44
777
+ msgid "Form entry"
778
+ msgstr ""
779
+
780
+ #: core/entries/cpt.php:45
781
+ msgid "metform-entry"
782
+ msgstr ""
783
+
784
+ #: core/entries/hooks.php:27
785
+ msgid "Form Name"
786
+ msgstr ""
787
+
788
+ #: core/entries/hooks.php:29
789
+ msgid "Referral"
790
+ msgstr ""
791
+
792
+ #: core/entries/meta-data.php:36
793
+ msgid "Info"
794
+ msgstr ""
795
+
796
+ #: core/entries/meta-data.php:59
797
+ msgid "Form Name "
798
+ msgstr ""
799
+
800
+ #: core/entries/meta-data.php:65
801
+ msgid "Entry ID"
802
+ msgstr ""
803
+
804
+ #: core/entries/meta-data.php:82
805
+ msgid "Data"
806
+ msgstr ""
807
+
808
+ #: core/entries/meta-data.php:104
809
+ msgid "Browser Data"
810
+ msgstr ""
811
+
812
+ #: core/entries/meta-data.php:136
813
+ msgid "Browser data not captured."
814
+ msgstr ""
815
+
816
+ #: core/entries/meta-data.php:152
817
+ msgid "Files"
818
+ msgstr ""
819
+
820
+ #: core/entries/meta-data.php:184
821
+ msgid "Download"
822
+ msgstr ""
823
+
824
+ #: core/entries/meta-data.php:185
825
+ msgid "View"
826
+ msgstr ""
827
+
828
+ #: core/entries/meta-data.php:187
829
+ msgid "This file is not uploaded."
830
+ msgstr ""
831
+
832
+ #: core/entries/meta-data.php:224
833
+ msgid "Woocommerce Checkout"
834
+ msgstr ""
835
+
836
+ #: core/entries/meta-data.php:246
837
+ msgid "Order ID "
838
+ msgstr ""
839
+
840
+ #: core/entries/meta-data.php:252
841
+ msgid "Order Status"
842
+ msgstr ""
843
+
844
+ #: core/entries/meta-data.php:259
845
+ msgid "Total"
846
+ msgstr ""
847
+
848
+ #: core/forms/action.php:78 core/forms/action.php:102
849
+ msgid "Form settings inserted"
850
+ msgstr ""
851
+
852
+ #: core/forms/action.php:106
853
+ msgid ""
854
+ "You must active at least one field of these fields \"store entry/ "
855
+ "Confirmation/ Notification/ MailChimp/ Zapier\". "
856
+ msgstr ""
857
+
858
+ #: core/forms/action.php:110 core/forms/action.php:146
859
+ msgid "You must enable \"store entries\" for integrating payment method."
860
+ msgstr ""
861
+
862
+ #: core/forms/cpt.php:376 core/forms/cpt.php:377 widgets/form.php:37
863
+ msgid "Form"
864
+ msgstr ""
865
+
866
+ #: core/forms/cpt.php:378
867
+ msgid "Form Archives"
868
+ msgstr ""
869
+
870
+ #: core/forms/cpt.php:379
871
+ msgid "Form Attributes"
872
+ msgstr ""
873
+
874
+ #: core/forms/cpt.php:381 core/forms/cpt.php:409
875
+ msgid "Forms"
876
+ msgstr ""
877
+
878
+ #: core/forms/cpt.php:382
879
+ msgid "Add New Form"
880
+ msgstr ""
881
+
882
+ #: core/forms/cpt.php:384
883
+ msgid "New Form"
884
+ msgstr ""
885
+
886
+ #: core/forms/cpt.php:385
887
+ msgid "Edit Form"
888
+ msgstr ""
889
+
890
+ #: core/forms/cpt.php:386
891
+ msgid "Update Form"
892
+ msgstr ""
893
+
894
+ #: core/forms/cpt.php:387
895
+ msgid "View Form"
896
+ msgstr ""
897
+
898
+ #: core/forms/cpt.php:388
899
+ msgid "View Forms"
900
+ msgstr ""
901
+
902
+ #: core/forms/cpt.php:389
903
+ msgid "Search Forms"
904
+ msgstr ""
905
+
906
+ #: core/forms/cpt.php:396
907
+ msgid "Insert into form"
908
+ msgstr ""
909
+
910
+ #: core/forms/cpt.php:397
911
+ msgid "Uploaded to this form"
912
+ msgstr ""
913
+
914
+ #: core/forms/cpt.php:398
915
+ msgid "Forms list"
916
+ msgstr ""
917
+
918
+ #: core/forms/cpt.php:399
919
+ msgid "Forms list navigation"
920
+ msgstr ""
921
+
922
+ #: core/forms/cpt.php:400
923
+ msgid "Filter froms list"
924
+ msgstr ""
925
+
926
+ #: core/forms/cpt.php:410
927
+ msgid "metform form"
928
+ msgstr ""
929
+
930
+ #: core/forms/hooks.php:35
931
+ msgid "Shortcode"
932
+ msgstr ""
933
+
934
+ #: core/forms/hooks.php:37
935
+ msgid "Views/ Conversion"
936
+ msgstr ""
937
+
938
+ #: core/forms/hooks.php:62
939
+ msgid "Export CSV"
940
+ msgstr ""
941
+
942
+ #: core/forms/views/modal-editor.php:11
943
+ msgid "Form Settings"
944
+ msgstr ""
945
+
946
+ #: core/forms/views/modal-editor.php:16
947
+ msgid "Confirmation"
948
+ msgstr ""
949
+
950
+ #: core/forms/views/modal-editor.php:18
951
+ msgid "Notification"
952
+ msgstr ""
953
+
954
+ #: core/forms/views/modal-editor.php:20
955
+ msgid "Integration"
956
+ msgstr ""
957
+
958
+ #: core/forms/views/modal-editor.php:25
959
+ msgid "CRM"
960
+ msgstr ""
961
+
962
+ #: core/forms/views/modal-editor.php:37
963
+ msgid "Title:"
964
+ msgstr ""
965
+
966
+ #: core/forms/views/modal-editor.php:38
967
+ msgid "New Form # "
968
+ msgstr ""
969
+
970
+ #: core/forms/views/modal-editor.php:39
971
+ msgid "This is the form title"
972
+ msgstr ""
973
+
974
+ #: core/forms/views/modal-editor.php:43
975
+ msgid "Success Message:"
976
+ msgstr ""
977
+
978
+ #: core/forms/views/modal-editor.php:44
979
+ msgid "Thank you! Form submitted successfully."
980
+ msgstr ""
981
+
982
+ #: core/forms/views/modal-editor.php:45
983
+ msgid "This mesage will be shown after a successful submission."
984
+ msgstr ""
985
+
986
+ #: core/forms/views/modal-editor.php:51
987
+ msgid "Required Login:"
988
+ msgstr ""
989
+
990
+ #: core/forms/views/modal-editor.php:53
991
+ msgid "Without login, users can't submit the form."
992
+ msgstr ""
993
+
994
+ #: core/forms/views/modal-editor.php:59
995
+ msgid "Capture User Browser Data:"
996
+ msgstr ""
997
+
998
+ #: core/forms/views/modal-editor.php:61
999
+ msgid "Store user's browser data (ip, browser name, etc)"
1000
+ msgstr ""
1001
+
1002
+ #: core/forms/views/modal-editor.php:67
1003
+ msgid "Hide Form After Submission:"
1004
+ msgstr ""
1005
+
1006
+ #: core/forms/views/modal-editor.php:69
1007
+ msgid "After submission, hide the form for preventing multiple submission."
1008
+ msgstr ""
1009
+
1010
+ #: core/forms/views/modal-editor.php:75
1011
+ msgid "Store Entries:"
1012
+ msgstr ""
1013
+
1014
+ #: core/forms/views/modal-editor.php:77
1015
+ msgid "Save submitted form data to database."
1016
+ msgstr ""
1017
+
1018
+ #: core/forms/views/modal-editor.php:81
1019
+ msgid "Entry Title"
1020
+ msgstr ""
1021
+
1022
+ #: core/forms/views/modal-editor.php:83
1023
+ msgid "Enter here title of this form entries."
1024
+ msgstr ""
1025
+
1026
+ #: core/forms/views/modal-editor.php:90
1027
+ msgid "Limit Total Entries:"
1028
+ msgstr ""
1029
+
1030
+ #: core/forms/views/modal-editor.php:96
1031
+ msgid "Limit the total number of submissions for this form."
1032
+ msgstr ""
1033
+
1034
+ #: core/forms/views/modal-editor.php:102
1035
+ msgid "Count views:"
1036
+ msgstr ""
1037
+
1038
+ #: core/forms/views/modal-editor.php:104
1039
+ msgid "Track form views."
1040
+ msgstr ""
1041
+
1042
+ #: core/forms/views/modal-editor.php:110
1043
+ msgid "Stop Vertical Scrolling:"
1044
+ msgstr ""
1045
+
1046
+ #: core/forms/views/modal-editor.php:112
1047
+ msgid "Stop scrolling effect when submitting the form."
1048
+ msgstr ""
1049
+
1050
+ #: core/forms/views/modal-editor.php:116
1051
+ msgid "Redirect To:"
1052
+ msgstr ""
1053
+
1054
+ #: core/forms/views/modal-editor.php:117
1055
+ msgid "Redirection link"
1056
+ msgstr ""
1057
+
1058
+ #: core/forms/views/modal-editor.php:118
1059
+ msgid "Users will be redirected to the this link after submission."
1060
+ msgstr ""
1061
+
1062
+ #: core/forms/views/modal-editor.php:132
1063
+ msgid "Confirmation mail to user :"
1064
+ msgstr ""
1065
+
1066
+ #: core/forms/views/modal-editor.php:134
1067
+ msgid "Want to send a submission copy to user by email? Active this one."
1068
+ msgstr ""
1069
+
1070
+ #: core/forms/views/modal-editor.php:134 core/forms/views/modal-editor.php:446
1071
+ msgid "The form must have at least one Email widget and it should be required."
1072
+ msgstr ""
1073
+
1074
+ #: core/forms/views/modal-editor.php:138 core/forms/views/modal-editor.php:182
1075
+ msgid "Email Subject:"
1076
+ msgstr ""
1077
+
1078
+ #: core/forms/views/modal-editor.php:139 core/forms/views/modal-editor.php:183
1079
+ msgid "Email subject"
1080
+ msgstr ""
1081
+
1082
+ #: core/forms/views/modal-editor.php:140 core/forms/views/modal-editor.php:184
1083
+ msgid "Enter here email subject."
1084
+ msgstr ""
1085
+
1086
+ #: core/forms/views/modal-editor.php:144 core/forms/views/modal-editor.php:194
1087
+ msgid "Email From:"
1088
+ msgstr ""
1089
+
1090
+ #: core/forms/views/modal-editor.php:145
1091
+ msgid "From email"
1092
+ msgstr ""
1093
+
1094
+ #: core/forms/views/modal-editor.php:146
1095
+ msgid "Enter the email by which you want to send email to user."
1096
+ msgstr ""
1097
+
1098
+ #: core/forms/views/modal-editor.php:150 core/forms/views/modal-editor.php:200
1099
+ msgid "Email Reply To:"
1100
+ msgstr ""
1101
+
1102
+ #: core/forms/views/modal-editor.php:151
1103
+ msgid "Reply to email"
1104
+ msgstr ""
1105
+
1106
+ #: core/forms/views/modal-editor.php:152
1107
+ msgid "Enter email where user can reply/ you want to get reply."
1108
+ msgstr ""
1109
+
1110
+ #: core/forms/views/modal-editor.php:156
1111
+ msgid "Thank you message :"
1112
+ msgstr ""
1113
+
1114
+ #: core/forms/views/modal-editor.php:157
1115
+ msgid "Thank you message!"
1116
+ msgstr ""
1117
+
1118
+ #: core/forms/views/modal-editor.php:158
1119
+ msgid ""
1120
+ "Enter here your message to include it in email body. Which will be send to "
1121
+ "user."
1122
+ msgstr ""
1123
+
1124
+ #: core/forms/views/modal-editor.php:162
1125
+ msgid "Email Attached Submission Copy:"
1126
+ msgstr ""
1127
+
1128
+ #: core/forms/views/modal-editor.php:176
1129
+ msgid "Notification mail to admin :"
1130
+ msgstr ""
1131
+
1132
+ #: core/forms/views/modal-editor.php:178
1133
+ msgid "Want to send a submission copy to admin by email? Active this one."
1134
+ msgstr ""
1135
+
1136
+ #: core/forms/views/modal-editor.php:188
1137
+ msgid "Email To:"
1138
+ msgstr ""
1139
+
1140
+ #: core/forms/views/modal-editor.php:189
1141
+ msgid "example@mail.com, example@email.com"
1142
+ msgstr ""
1143
+
1144
+ #: core/forms/views/modal-editor.php:190
1145
+ msgid "Enter admin email where you want to send mail."
1146
+ msgstr ""
1147
+
1148
+ #: core/forms/views/modal-editor.php:190
1149
+ msgid " for multiple email addresses please use \",\" separator."
1150
+ msgstr ""
1151
+
1152
+ #: core/forms/views/modal-editor.php:195
1153
+ msgid "Email from"
1154
+ msgstr ""
1155
+
1156
+ #: core/forms/views/modal-editor.php:196
1157
+ msgid "Enter the email by which you want to send email to admin."
1158
+ msgstr ""
1159
+
1160
+ #: core/forms/views/modal-editor.php:201
1161
+ msgid "Email reply to"
1162
+ msgstr ""
1163
+
1164
+ #: core/forms/views/modal-editor.php:202
1165
+ msgid "Enter email where admin can reply/ you want to get reply."
1166
+ msgstr ""
1167
+
1168
+ #: core/forms/views/modal-editor.php:206
1169
+ msgid "Admin Note : "
1170
+ msgstr ""
1171
+
1172
+ #: core/forms/views/modal-editor.php:207
1173
+ msgid "Admin note!"
1174
+ msgstr ""
1175
+
1176
+ #: core/forms/views/modal-editor.php:208
1177
+ msgid "Enter here your email body. Which will be send to admin."
1178
+ msgstr ""
1179
+
1180
+ #: core/forms/views/modal-editor.php:221
1181
+ msgid "REST API:"
1182
+ msgstr ""
1183
+
1184
+ #: core/forms/views/modal-editor.php:223
1185
+ msgid "Send entry data to third party api/webhook"
1186
+ msgstr ""
1187
+
1188
+ #: core/forms/views/modal-editor.php:228
1189
+ msgid "URL/Webhook:"
1190
+ msgstr ""
1191
+
1192
+ #: core/forms/views/modal-editor.php:229
1193
+ msgid "Rest api url/webhook"
1194
+ msgstr ""
1195
+
1196
+ #: core/forms/views/modal-editor.php:230
1197
+ msgid "Enter rest api url/webhook here."
1198
+ msgstr ""
1199
+
1200
+ #: core/forms/views/modal-editor.php:235
1201
+ msgid "POST"
1202
+ msgstr ""
1203
+
1204
+ #: core/forms/views/modal-editor.php:236
1205
+ msgid "GET"
1206
+ msgstr ""
1207
+
1208
+ #: core/forms/views/modal-editor.php:249
1209
+ msgid "Mail Chimp:"
1210
+ msgstr ""
1211
+
1212
+ #: core/forms/views/modal-editor.php:251
1213
+ msgid "Integrate mailchimp with this form."
1214
+ msgstr ""
1215
+
1216
+ #: core/forms/views/modal-editor.php:251 core/forms/views/modal-editor.php:280
1217
+ #: core/forms/views/modal-editor.php:309 core/forms/views/modal-editor.php:331
1218
+ #: core/forms/views/modal-editor.php:359 core/forms/views/modal-editor.php:387
1219
+ #: core/forms/views/modal-editor.php:406
1220
+ msgid "The form must have at least one Email widget and it should be required. "
1221
+ msgstr ""
1222
+
1223
+ #: core/forms/views/modal-editor.php:251
1224
+ msgid "Configure Mail Chimp."
1225
+ msgstr ""
1226
+
1227
+ #: core/forms/views/modal-editor.php:255
1228
+ msgid "MailChimp List ID:"
1229
+ msgstr ""
1230
+
1231
+ #: core/forms/views/modal-editor.php:262
1232
+ msgid "Mailchimp contact list id"
1233
+ msgstr ""
1234
+
1235
+ #: core/forms/views/modal-editor.php:276
1236
+ msgid "MailPoet:"
1237
+ msgstr ""
1238
+
1239
+ #: core/forms/views/modal-editor.php:279
1240
+ msgid "Integrate MailPoet with this form."
1241
+ msgstr ""
1242
+
1243
+ #: core/forms/views/modal-editor.php:282
1244
+ msgid "Configure MailPoet."
1245
+ msgstr ""
1246
+
1247
+ #: core/forms/views/modal-editor.php:289
1248
+ msgid "MailPoet List ID:"
1249
+ msgstr ""
1250
+
1251
+ #: core/forms/views/modal-editor.php:295
1252
+ msgid "Enter here MailPoet list id. "
1253
+ msgstr ""
1254
+
1255
+ #: core/forms/views/modal-editor.php:296 core/forms/views/modal-editor.php:320
1256
+ #: core/forms/views/modal-editor.php:343
1257
+ msgid "Refresh List"
1258
+ msgstr ""
1259
+
1260
+ #: core/forms/views/modal-editor.php:307
1261
+ msgid "Aweber:"
1262
+ msgstr ""
1263
+
1264
+ #: core/forms/views/modal-editor.php:309
1265
+ msgid "Integrate aweber with this form."
1266
+ msgstr ""
1267
+
1268
+ #: core/forms/views/modal-editor.php:309
1269
+ msgid "Configure aweber."
1270
+ msgstr ""
1271
+
1272
+ #: core/forms/views/modal-editor.php:313
1273
+ msgid "Aweber List ID:"
1274
+ msgstr ""
1275
+
1276
+ #: core/forms/views/modal-editor.php:319
1277
+ msgid "Enter here aweber list id. "
1278
+ msgstr ""
1279
+
1280
+ #: core/forms/views/modal-editor.php:329
1281
+ msgid "ConvertKit:"
1282
+ msgstr ""
1283
+
1284
+ #: core/forms/views/modal-editor.php:331
1285
+ msgid "Integrate convertKit with this form."
1286
+ msgstr ""
1287
+
1288
+ #: core/forms/views/modal-editor.php:331
1289
+ msgid "Configure ConvertKit."
1290
+ msgstr ""
1291
+
1292
+ #: core/forms/views/modal-editor.php:335
1293
+ msgid "ConvertKit Forms ID:"
1294
+ msgstr ""
1295
+
1296
+ #: core/forms/views/modal-editor.php:341
1297
+ msgid "Enter here ConvertKit form id. "
1298
+ msgstr ""
1299
+
1300
+ #: core/forms/views/modal-editor.php:356
1301
+ msgid "GetResponse:"
1302
+ msgstr ""
1303
+
1304
+ #: core/forms/views/modal-editor.php:359
1305
+ msgid "Integrate GetResponse with this form."
1306
+ msgstr ""
1307
+
1308
+ #: core/forms/views/modal-editor.php:359
1309
+ msgid "Configure GetResponse."
1310
+ msgstr ""
1311
+
1312
+ #: core/forms/views/modal-editor.php:365
1313
+ msgid "GetResponse List ID:"
1314
+ msgstr ""
1315
+
1316
+ #: core/forms/views/modal-editor.php:373
1317
+ msgid "GetResponse contact list id"
1318
+ msgstr ""
1319
+
1320
+ #: core/forms/views/modal-editor.php:374
1321
+ msgid "Enter here GetResponse list id. "
1322
+ msgstr ""
1323
+
1324
+ #: core/forms/views/modal-editor.php:385
1325
+ msgid "ActiveCampaign:"
1326
+ msgstr ""
1327
+
1328
+ #: core/forms/views/modal-editor.php:387
1329
+ msgid "Integrate ActiveCampaign with this form."
1330
+ msgstr ""
1331
+
1332
+ #: core/forms/views/modal-editor.php:387
1333
+ msgid "Configure ActiveCampaign."
1334
+ msgstr ""
1335
+
1336
+ #: core/forms/views/modal-editor.php:403
1337
+ msgid "Mailster:"
1338
+ msgstr ""
1339
+
1340
+ #: core/forms/views/modal-editor.php:406
1341
+ msgid "Integrate Mailster with this form."
1342
+ msgstr ""
1343
+
1344
+ #: core/forms/views/modal-editor.php:412
1345
+ msgid "Mailster Forms"
1346
+ msgstr ""
1347
+
1348
+ #: core/forms/views/modal-editor.php:444
1349
+ msgid "Zapier:"
1350
+ msgstr ""
1351
+
1352
+ #: core/forms/views/modal-editor.php:446
1353
+ msgid "Integrate zapier with this form."
1354
+ msgstr ""
1355
+
1356
+ #: core/forms/views/modal-editor.php:450
1357
+ msgid "Zapier webhook:"
1358
+ msgstr ""
1359
+
1360
+ #: core/forms/views/modal-editor.php:451
1361
+ msgid "Zapier webhook"
1362
+ msgstr ""
1363
+
1364
+ #: core/forms/views/modal-editor.php:452
1365
+ msgid "Enter here zapier web hook."
1366
+ msgstr ""
1367
+
1368
+ #: core/forms/views/modal-editor.php:461
1369
+ msgid "Slack:"
1370
+ msgstr ""
1371
+
1372
+ #: core/forms/views/modal-editor.php:463
1373
+ msgid "Integrate slack with this form."
1374
+ msgstr ""
1375
+
1376
+ #: core/forms/views/modal-editor.php:463
1377
+ msgid "slack info."
1378
+ msgstr ""
1379
+
1380
+ #: core/forms/views/modal-editor.php:467
1381
+ msgid "Slack webhook:"
1382
+ msgstr ""
1383
+
1384
+ #: core/forms/views/modal-editor.php:468
1385
+ msgid "Slack webhook"
1386
+ msgstr ""
1387
+
1388
+ #: core/forms/views/modal-editor.php:469
1389
+ msgid "Enter here slack web hook."
1390
+ msgstr ""
1391
+
1392
+ #: core/forms/views/modal-editor.php:469
1393
+ msgid "create from here"
1394
+ msgstr ""
1395
+
1396
+ #: core/forms/views/modal-editor.php:483
1397
+ msgid "Success url:"
1398
+ msgstr ""
1399
+
1400
+ #: core/forms/views/modal-editor.php:486
1401
+ msgid "Success url"
1402
+ msgstr ""
1403
+
1404
+ #: core/forms/views/modal-editor.php:488
1405
+ msgid ""
1406
+ "Users will be redirected to the this link after successfully form "
1407
+ "submission."
1408
+ msgstr ""
1409
+
1410
+ #: core/forms/views/modal-editor.php:493
1411
+ msgid "Failed/ Cancel url:"
1412
+ msgstr ""
1413
+
1414
+ #: core/forms/views/modal-editor.php:496
1415
+ msgid "Failed/Cancel url"
1416
+ msgstr ""
1417
+
1418
+ #: core/forms/views/modal-editor.php:498
1419
+ msgid ""
1420
+ "Users will be redirected to the this link after any failure/ cancelation of "
1421
+ "form submission."
1422
+ msgstr ""
1423
+
1424
+ #: core/forms/views/modal-editor.php:504
1425
+ msgid "Paypal:"
1426
+ msgstr ""
1427
+
1428
+ #: core/forms/views/modal-editor.php:506
1429
+ msgid "Integrate paypal payment with this form."
1430
+ msgstr ""
1431
+
1432
+ #: core/forms/views/modal-editor.php:506
1433
+ msgid "Configure paypal payment."
1434
+ msgstr ""
1435
+
1436
+ #: core/forms/views/modal-editor.php:515
1437
+ msgid "Stripe:"
1438
+ msgstr ""
1439
+
1440
+ #: core/forms/views/modal-editor.php:517
1441
+ msgid "Integrate stripe payment with this form. "
1442
+ msgstr ""
1443
+
1444
+ #: core/forms/views/modal-editor.php:517
1445
+ msgid "Configure stripe payment."
1446
+ msgstr ""
1447
+
1448
+ #: core/forms/views/modal-editor.php:533
1449
+ msgid "Hubspot Contact:"
1450
+ msgstr ""
1451
+
1452
+ #: core/forms/views/modal-editor.php:535
1453
+ msgid "Integrate hubspot with this form. "
1454
+ msgstr ""
1455
+
1456
+ #: core/forms/views/modal-editor.php:535
1457
+ msgid "Configure Hubspot."
1458
+ msgstr ""
1459
+
1460
+ #: core/forms/views/modal-editor.php:542
1461
+ msgid "Hubspot Forms:"
1462
+ msgstr ""
1463
+
1464
+ #: core/forms/views/modal-editor.php:550
1465
+ msgid "Fetch hubspot forms"
1466
+ msgstr ""
1467
+
1468
+ #: core/forms/views/modal-editor.php:573
1469
+ msgid "Zoho Contact:"
1470
+ msgstr ""
1471
+
1472
+ #: core/forms/views/modal-editor.php:575
1473
+ msgid "Integrate Zoho contacts with this form. "
1474
+ msgstr ""
1475
+
1476
+ #: core/forms/views/modal-editor.php:575
1477
+ msgid "Configure Zoho."
1478
+ msgstr ""
1479
+
1480
+ #: core/forms/views/modal-editor.php:585
1481
+ msgid "Helpscout"
1482
+ msgstr ""
1483
+
1484
+ #: core/forms/views/modal-editor.php:587
1485
+ msgid "Integrate Helpscout with this form. "
1486
+ msgstr ""
1487
+
1488
+ #: core/forms/views/modal-editor.php:587
1489
+ msgid "Configure Helpscout."
1490
+ msgstr ""
1491
+
1492
+ #: core/forms/views/modal-editor.php:592
1493
+ msgid "Available Mailboxes"
1494
+ msgstr ""
1495
+
1496
+ #: core/forms/views/modal-editor.php:629
1497
+ msgid "Edit content"
1498
+ msgstr ""
1499
+
1500
+ #: core/forms/views/modal-editor.php:631
1501
+ msgid "Save changes"
1502
+ msgstr ""
1503
+
1504
+ #: core/integrations/google-recaptcha.php:43
1505
+ #: core/integrations/google-recaptcha.php:80
1506
+ msgid "Captcha is not verified."
1507
+ msgstr ""
1508
+
1509
+ #: core/integrations/mail-chimp.php:53
1510
+ msgid "Your data inserted on ActiveCampaign."
1511
+ msgstr ""
1512
+
1513
+ #: core/integrations/slack.php:46
1514
+ msgid "Your data inserted on slack."
1515
+ msgstr ""
1516
+
1517
+ #: plugin.php:369
1518
+ msgid "Activate Elementor"
1519
+ msgstr ""
1520
+
1521
+ #: plugin.php:376
1522
+ msgid "Install Elementor"
1523
+ msgstr ""
1524
+
1525
+ #: plugin.php:380 plugin.php:412
1526
+ msgid "MetForm requires Elementor version %1$s+, which is currently NOT RUNNING."
1527
+ msgstr ""
1528
+
1529
+ #: plugin.php:395
1530
+ msgid "MetForm Pro"
1531
+ msgstr ""
1532
+
1533
+ #: plugin.php:399 plugin.php:415
1534
+ msgid "We have MetForm Pro version. Check out our pro feature."
1535
+ msgstr ""
1536
+
1537
+ #: plugin.php:411
1538
+ msgid "Update Elementor"
1539
+ msgstr ""
1540
+
1541
+ #: traits/button-controls.php:24 widgets/date/date.php:415
1542
+ #: widgets/email/email.php:87 widgets/file-upload/file-upload.php:187
1543
+ #: widgets/listing-fname/listing-fname.php:64
1544
+ #: widgets/listing-lname/listing-lname.php:64
1545
+ #: widgets/multi-select/multi-select.php:148 widgets/number/number.php:64
1546
+ #: widgets/password/password.php:64 widgets/range/range.php:133
1547
+ #: widgets/rating/rating.php:85 widgets/recaptcha/recaptcha.php:59
1548
+ #: widgets/select/select.php:148 widgets/simple-captcha/simple-captcha.php:123
1549
+ #: widgets/summary/summary.php:69 widgets/switch/switch.php:91
1550
+ #: widgets/telephone/telephone.php:64 widgets/text/text.php:64
1551
+ #: widgets/textarea/textarea.php:65 widgets/time/time.php:89
1552
+ #: widgets/url/url.php:74
1553
+ msgid "Label"
1554
+ msgstr ""
1555
+
1556
+ #: traits/button-controls.php:46
1557
+ msgid "Button alignment"
1558
+ msgstr ""
1559
+
1560
+ #: traits/button-controls.php:50 traits/common-controls.php:47
1561
+ #: widgets/simple-captcha/simple-captcha.php:67
1562
+ msgid "Left"
1563
+ msgstr ""
1564
+
1565
+ #: traits/button-controls.php:54
1566
+ msgid "Center"
1567
+ msgstr ""
1568
+
1569
+ #: traits/button-controls.php:58 widgets/file-upload/file-upload.php:268
1570
+ msgid "Right"
1571
+ msgstr ""
1572
+
1573
+ #: traits/button-controls.php:62
1574
+ msgid "Justified"
1575
+ msgstr ""
1576
+
1577
+ #: traits/button-controls.php:77 widgets/button/button.php:104
1578
+ msgid "Icon"
1579
+ msgstr ""
1580
+
1581
+ #: traits/button-controls.php:86
1582
+ msgid "Icon Position"
1583
+ msgstr ""
1584
+
1585
+ #: traits/button-controls.php:90 widgets/file-upload/file-upload.php:77
1586
+ msgid "Before"
1587
+ msgstr ""
1588
+
1589
+ #: traits/button-controls.php:91 widgets/file-upload/file-upload.php:78
1590
+ msgid "After"
1591
+ msgstr ""
1592
+
1593
+ #: traits/button-controls.php:102
1594
+ msgid "Class"
1595
+ msgstr ""
1596
+
1597
+ #: traits/button-controls.php:104
1598
+ msgid "Class Name"
1599
+ msgstr ""
1600
+
1601
+ #: traits/button-controls.php:111
1602
+ msgid "id"
1603
+ msgstr ""
1604
+
1605
+ #: traits/button-controls.php:113
1606
+ msgid "ID"
1607
+ msgstr ""
1608
+
1609
+ #: traits/button-controls.php:124
1610
+ msgid "Input Name : "
1611
+ msgstr ""
1612
+
1613
+ #: traits/button-controls.php:132 widgets/multi-select/multi-select.php:58
1614
+ #: widgets/select/select.php:58
1615
+ msgid "Input Value"
1616
+ msgstr ""
1617
+
1618
+ #: traits/button-controls.php:141
1619
+ msgid "Input Class"
1620
+ msgstr ""
1621
+
1622
+ #: traits/button-controls.php:150
1623
+ msgid "Input List"
1624
+ msgstr ""
1625
+
1626
+ #: traits/button-controls.php:162 traits/common-controls.php:345
1627
+ #: traits/common-controls.php:464 traits/common-controls.php:809
1628
+ #: widgets/checkbox/checkbox.php:215 widgets/file-upload/file-upload.php:353
1629
+ #: widgets/gdpr-consent/gdpr-consent.php:170
1630
+ #: widgets/gdpr-consent/gdpr-consent.php:253
1631
+ #: widgets/listing-optin/listing-optin.php:124 widgets/radio/radio.php:215
1632
+ #: widgets/rating/rating.php:108 widgets/simple-captcha/simple-captcha.php:192
1633
+ #: widgets/simple-captcha/simple-captcha.php:274 widgets/switch/switch.php:208
1634
+ #: widgets/switch/switch.php:250
1635
+ msgid "Padding"
1636
+ msgstr ""
1637
+
1638
+ #: traits/button-controls.php:182 traits/common-controls.php:334
1639
+ #: traits/common-controls.php:692 traits/common-controls.php:745
1640
+ #: traits/common-controls.php:784 widgets/gdpr-consent/gdpr-consent.php:159
1641
+ #: widgets/rating/rating.php:250 widgets/simple-captcha/simple-captcha.php:181
1642
+ #: widgets/switch/switch.php:200 widgets/switch/switch.php:242
1643
+ msgid "Typography"
1644
+ msgstr ""
1645
+
1646
+ #: traits/button-controls.php:200 traits/button-controls.php:298
1647
+ #: traits/common-controls.php:498 widgets/checkbox/checkbox.php:257
1648
+ #: widgets/file-upload/file-upload.php:281
1649
+ #: widgets/gdpr-consent/gdpr-consent.php:295
1650
+ #: widgets/listing-optin/listing-optin.php:166 widgets/radio/radio.php:256
1651
+ #: widgets/rating/rating.php:141 widgets/select/select.php:228
1652
+ msgid "Normal"
1653
+ msgstr ""
1654
+
1655
+ #: traits/button-controls.php:207 traits/button-controls.php:236
1656
+ #: widgets/checkbox/checkbox.php:238 widgets/gdpr-consent/gdpr-consent.php:276
1657
+ #: widgets/listing-optin/listing-optin.php:147 widgets/radio/radio.php:238
1658
+ #: widgets/switch/switch.php:187 widgets/switch/switch.php:229
1659
+ msgid "Text Color"
1660
+ msgstr ""
1661
+
1662
+ #: traits/button-controls.php:229 traits/button-controls.php:322
1663
+ #: traits/common-controls.php:562 widgets/file-upload/file-upload.php:312
1664
+ #: widgets/select/select.php:263
1665
+ msgid "Hover"
1666
+ msgstr ""
1667
+
1668
+ #: traits/button-controls.php:265 traits/common-controls.php:141
1669
+ msgid "None"
1670
+ msgstr ""
1671
+
1672
+ #: traits/button-controls.php:347 traits/common-controls.php:250
1673
+ #: traits/common-controls.php:703 widgets/file-upload/file-upload.php:386
1674
+ #: widgets/range/range.php:199 widgets/rating/rating.php:212
1675
+ #: widgets/select/select.php:181
1676
+ msgid "Border Radius"
1677
+ msgstr ""
1678
+
1679
+ #: traits/button-controls.php:378
1680
+ msgid "Icon Color"
1681
+ msgstr ""
1682
+
1683
+ #: traits/button-controls.php:394
1684
+ msgid "Font Size"
1685
+ msgstr ""
1686
+
1687
+ #: traits/button-controls.php:414
1688
+ msgid "Padding Right"
1689
+ msgstr ""
1690
+
1691
+ #: traits/button-controls.php:440
1692
+ msgid "Padding Left"
1693
+ msgstr ""
1694
+
1695
+ #: traits/button-controls.php:466
1696
+ msgid "Vertical Align"
1697
+ msgstr ""
1698
+
1699
+ #: traits/common-controls.php:29 widgets/simple-captcha/simple-captcha.php:49
1700
+ msgid "Show Label"
1701
+ msgstr ""
1702
+
1703
+ #: traits/common-controls.php:31 widgets/simple-captcha/simple-captcha.php:51
1704
+ msgid "Show"
1705
+ msgstr ""
1706
+
1707
+ #: traits/common-controls.php:32 widgets/simple-captcha/simple-captcha.php:52
1708
+ msgid "Hide"
1709
+ msgstr ""
1710
+
1711
+ #: traits/common-controls.php:35 widgets/simple-captcha/simple-captcha.php:55
1712
+ msgid "for adding label on input turn it on. Don't want to use label? turn it off."
1713
+ msgstr ""
1714
+
1715
+ #: traits/common-controls.php:42 widgets/file-upload/file-upload.php:264
1716
+ msgid "Position"
1717
+ msgstr ""
1718
+
1719
+ #: traits/common-controls.php:46 widgets/file-upload/file-upload.php:79
1720
+ #: widgets/simple-captcha/simple-captcha.php:66
1721
+ msgid "Top"
1722
+ msgstr ""
1723
+
1724
+ #: traits/common-controls.php:55 widgets/simple-captcha/simple-captcha.php:75
1725
+ msgid ""
1726
+ "Select label position. where you want to see it. top of the input or left "
1727
+ "of the input."
1728
+ msgstr ""
1729
+
1730
+ #: traits/common-controls.php:63 widgets/simple-captcha/simple-captcha.php:98
1731
+ msgid "Label : "
1732
+ msgstr ""
1733
+
1734
+ #: traits/common-controls.php:66 widgets/simple-captcha/simple-captcha.php:101
1735
+ msgid "Enter here label of input"
1736
+ msgstr ""
1737
+
1738
+ #: traits/common-controls.php:77
1739
+ msgid "Name : "
1740
+ msgstr ""
1741
+
1742
+ #: traits/common-controls.php:89
1743
+ msgid "Name"
1744
+ msgstr ""
1745
+
1746
+ #: traits/common-controls.php:92
1747
+ msgid "Enter here name of the input"
1748
+ msgstr ""
1749
+
1750
+ #: traits/common-controls.php:93
1751
+ msgid ""
1752
+ "Name is must required. Enter name without space or any special character. "
1753
+ "use only underscore/ hyphen (_/-) for multiple word. Name must be different."
1754
+ msgstr ""
1755
+
1756
+ #: traits/common-controls.php:103
1757
+ msgid "Place holder"
1758
+ msgstr ""
1759
+
1760
+ #: traits/common-controls.php:106
1761
+ msgid "Enter here place holder"
1762
+ msgstr ""
1763
+
1764
+ #: traits/common-controls.php:114 widgets/simple-captcha/simple-captcha.php:111
1765
+ msgid "Help Text : "
1766
+ msgstr ""
1767
+
1768
+ #: traits/common-controls.php:117 widgets/simple-captcha/simple-captcha.php:114
1769
+ msgid "Type your help text here"
1770
+ msgstr ""
1771
+
1772
+ #: traits/common-controls.php:129
1773
+ msgid "Required ?"
1774
+ msgstr ""
1775
+
1776
+ #: traits/common-controls.php:131 widgets/checkbox/checkbox.php:122
1777
+ #: widgets/date/date.php:187 widgets/date/date.php:199
1778
+ #: widgets/date/date.php:211 widgets/date/date.php:223
1779
+ #: widgets/date/date.php:384 widgets/date/date.php:396
1780
+ #: widgets/email/email.php:55 widgets/multi-select/multi-select.php:83
1781
+ #: widgets/radio/radio.php:124 widgets/range/range.php:97
1782
+ #: widgets/select/select.php:83 widgets/switch/switch.php:48
1783
+ #: widgets/time/time.php:73
1784
+ msgid "Yes"
1785
+ msgstr ""
1786
+
1787
+ #: traits/common-controls.php:132 widgets/checkbox/checkbox.php:123
1788
+ #: widgets/date/date.php:188 widgets/date/date.php:200
1789
+ #: widgets/date/date.php:212 widgets/date/date.php:224
1790
+ #: widgets/date/date.php:385 widgets/date/date.php:397
1791
+ #: widgets/email/email.php:56 widgets/multi-select/multi-select.php:84
1792
+ #: widgets/radio/radio.php:125 widgets/range/range.php:98
1793
+ #: widgets/select/select.php:84 widgets/switch/switch.php:56
1794
+ #: widgets/time/time.php:74
1795
+ msgid "No"
1796
+ msgstr ""
1797
+
1798
+ #: traits/common-controls.php:135
1799
+ msgid "Is this field is required for submit the form?. Make it \"Yes\"."
1800
+ msgstr ""
1801
+
1802
+ #: traits/common-controls.php:142
1803
+ msgid "By character length"
1804
+ msgstr ""
1805
+
1806
+ #: traits/common-controls.php:146
1807
+ msgid "By Word length"
1808
+ msgstr ""
1809
+
1810
+ #: traits/common-controls.php:150
1811
+ msgid "By expression based"
1812
+ msgstr ""
1813
+
1814
+ #: traits/common-controls.php:157
1815
+ msgid "Validation type"
1816
+ msgstr ""
1817
+
1818
+ #: traits/common-controls.php:168 widgets/range/range.php:67
1819
+ msgid "Min Length"
1820
+ msgstr ""
1821
+
1822
+ #: traits/common-controls.php:179 widgets/range/range.php:76
1823
+ msgid "Max Length"
1824
+ msgstr ""
1825
+
1826
+ #: traits/common-controls.php:192
1827
+ msgid "Expression for validate "
1828
+ msgstr ""
1829
+
1830
+ #: traits/common-controls.php:195
1831
+ msgid "Ex: [a-zA-Z]+ "
1832
+ msgstr ""
1833
+
1834
+ #: traits/common-controls.php:206 traits/common-controls.php:208
1835
+ msgid "Warning message"
1836
+ msgstr ""
1837
+
1838
+ #: traits/common-controls.php:209 widgets/checkbox/checkbox.php:396
1839
+ #: widgets/date/date.php:525 widgets/email/email.php:155
1840
+ #: widgets/file-upload/file-upload.php:437
1841
+ #: widgets/gdpr-consent/gdpr-consent.php:433
1842
+ #: widgets/listing-fname/listing-fname.php:143
1843
+ #: widgets/listing-lname/listing-lname.php:143
1844
+ #: widgets/listing-optin/listing-optin.php:304
1845
+ #: widgets/multi-select/multi-select.php:209 widgets/number/number.php:128
1846
+ #: widgets/password/password.php:143 widgets/radio/radio.php:396
1847
+ #: widgets/rating/rating.php:296 widgets/select/select.php:383
1848
+ #: widgets/switch/switch.php:292 widgets/telephone/telephone.php:128
1849
+ #: widgets/text/text.php:128 widgets/textarea/textarea.php:152
1850
+ #: widgets/time/time.php:162 widgets/url/url.php:138
1851
+ msgid "This field is required."
1852
+ msgstr ""
1853
+
1854
+ #: traits/common-controls.php:235 traits/common-controls.php:733
1855
+ #: widgets/rating/rating.php:261 widgets/select/select.php:218
1856
+ msgid "Box Shadow"
1857
+ msgstr ""
1858
+
1859
+ #: traits/common-controls.php:243 traits/common-controls.php:550
1860
+ #: traits/common-controls.php:609 traits/common-controls.php:670
1861
+ #: widgets/button/button.php:80 widgets/file-upload/file-upload.php:378
1862
+ #: widgets/rating/rating.php:165 widgets/rating/rating.php:199
1863
+ #: widgets/select/select.php:209
1864
+ msgid "Border"
1865
+ msgstr ""
1866
+
1867
+ #: traits/common-controls.php:283 widgets/gdpr-consent/gdpr-consent.php:108
1868
+ #: widgets/range/range.php:168 widgets/simple-captcha/simple-captcha.php:134
1869
+ #: widgets/switch/switch.php:115
1870
+ msgid "Width"
1871
+ msgstr ""
1872
+
1873
+ #: traits/common-controls.php:315 traits/common-controls.php:754
1874
+ #: traits/common-controls.php:793 widgets/file-upload/file-upload.php:288
1875
+ #: widgets/file-upload/file-upload.php:319
1876
+ #: widgets/gdpr-consent/gdpr-consent.php:140 widgets/select/select.php:235
1877
+ #: widgets/select/select.php:270 widgets/select/select.php:305
1878
+ #: widgets/simple-captcha/simple-captcha.php:162
1879
+ #: widgets/simple-captcha/simple-captcha.php:298
1880
+ msgid "Color"
1881
+ msgstr ""
1882
+
1883
+ #: traits/common-controls.php:359 traits/common-controls.php:480
1884
+ #: widgets/checkbox/checkbox.php:226 widgets/file-upload/file-upload.php:365
1885
+ #: widgets/gdpr-consent/gdpr-consent.php:184
1886
+ #: widgets/gdpr-consent/gdpr-consent.php:264
1887
+ #: widgets/listing-optin/listing-optin.php:135 widgets/radio/radio.php:226
1888
+ #: widgets/rating/rating.php:120 widgets/simple-captcha/simple-captcha.php:206
1889
+ #: widgets/simple-captcha/simple-captcha.php:286
1890
+ msgid "Margin"
1891
+ msgstr ""
1892
+
1893
+ #: traits/common-controls.php:374 widgets/gdpr-consent/gdpr-consent.php:201
1894
+ #: widgets/simple-captcha/simple-captcha.php:221
1895
+ msgid "Required Indicator Color:"
1896
+ msgstr ""
1897
+
1898
+ #: traits/common-controls.php:406 widgets/gdpr-consent/gdpr-consent.php:217
1899
+ #: widgets/recaptcha/recaptcha.php:67
1900
+ #: widgets/simple-captcha/simple-captcha.php:238
1901
+ msgid "Warning Text Color:"
1902
+ msgstr ""
1903
+
1904
+ #: traits/common-controls.php:438 widgets/gdpr-consent/gdpr-consent.php:234
1905
+ #: widgets/recaptcha/recaptcha.php:84
1906
+ #: widgets/simple-captcha/simple-captcha.php:255
1907
+ msgid "Warning Text Typography"
1908
+ msgstr ""
1909
+
1910
+ #: traits/common-controls.php:505 traits/common-controls.php:569
1911
+ #: traits/common-controls.php:629 widgets/rating/rating.php:148
1912
+ #: widgets/rating/rating.php:182
1913
+ msgid "Input Color"
1914
+ msgstr ""
1915
+
1916
+ #: traits/common-controls.php:537 traits/common-controls.php:597
1917
+ #: traits/common-controls.php:656 widgets/file-upload/file-upload.php:301
1918
+ #: widgets/file-upload/file-upload.php:332 widgets/select/select.php:252
1919
+ #: widgets/select/select.php:287 widgets/select/select.php:322
1920
+ msgid "Background"
1921
+ msgstr ""
1922
+
1923
+ #: traits/common-controls.php:622
1924
+ msgid "Focus"
1925
+ msgstr ""
1926
+
1927
+ #: traits/conditional-controls.php:25
1928
+ msgid "Conditional logic"
1929
+ msgstr ""
1930
+
1931
+ #: traits/conditional-controls.php:33 widgets/multi-select/multi-select.php:70
1932
+ #: widgets/select/select.php:70
1933
+ msgid "Enable"
1934
+ msgstr ""
1935
+
1936
+ #: traits/conditional-controls.php:36
1937
+ msgid "This feature only works on the frontend."
1938
+ msgstr ""
1939
+
1940
+ #: traits/conditional-controls.php:47
1941
+ msgid "Condition match criteria"
1942
+ msgstr ""
1943
+
1944
+ #: traits/conditional-controls.php:52
1945
+ msgid "AND"
1946
+ msgstr ""
1947
+
1948
+ #: traits/conditional-controls.php:53
1949
+ msgid "OR"
1950
+ msgstr ""
1951
+
1952
+ #: traits/conditional-controls.php:65
1953
+ msgid "Action"
1954
+ msgstr ""
1955
+
1956
+ #: traits/conditional-controls.php:87
1957
+ msgid "If"
1958
+ msgstr ""
1959
+
1960
+ #: traits/conditional-controls.php:90
1961
+ msgid "Input field name"
1962
+ msgstr ""
1963
+
1964
+ #: traits/conditional-controls.php:97
1965
+ msgid "Match ( comparison )"
1966
+ msgstr ""
1967
+
1968
+ #: traits/conditional-controls.php:101
1969
+ msgid "not empty"
1970
+ msgstr ""
1971
+
1972
+ #: traits/conditional-controls.php:102
1973
+ msgid "empty"
1974
+ msgstr ""
1975
+
1976
+ #: traits/conditional-controls.php:103
1977
+ msgid "equals"
1978
+ msgstr ""
1979
+
1980
+ #: traits/conditional-controls.php:104
1981
+ msgid "not equals"
1982
+ msgstr ""
1983
+
1984
+ #: traits/conditional-controls.php:105
1985
+ msgid "greater than"
1986
+ msgstr ""
1987
+
1988
+ #: traits/conditional-controls.php:106
1989
+ msgid "greater than equal"
1990
+ msgstr ""
1991
+
1992
+ #: traits/conditional-controls.php:107
1993
+ msgid "smaller than"
1994
+ msgstr ""
1995
+
1996
+ #: traits/conditional-controls.php:108
1997
+ msgid "smaller than equal"
1998
+ msgstr ""
1999
+
2000
+ #: traits/conditional-controls.php:117
2001
+ msgid "Match value"
2002
+ msgstr ""
2003
+
2004
+ #: traits/conditional-controls.php:132
2005
+ msgid "Value for set"
2006
+ msgstr ""
2007
+
2008
+ #: traits/conditional-controls.php:134
2009
+ msgid "Enter value for set"
2010
+ msgstr ""
2011
+
2012
+ #: traits/conditional-controls.php:135
2013
+ msgid "E.g 100, name, anything"
2014
+ msgstr ""
2015
+
2016
+ #: utils/pro-awareness/pro-awareness.php:156
2017
+ msgid "Default Title"
2018
+ msgstr ""
2019
+
2020
+ #: utils/stories/stories.php:255
2021
+ msgid "Wpmet Stories"
2022
+ msgstr ""
2023
+
2024
+ #: utils/stories/views/template.php:137
2025
+ msgid "Need Help?"
2026
+ msgstr ""
2027
+
2028
+ #: utils/stories/views/template.php:141
2029
+ msgid "Blog"
2030
+ msgstr ""
2031
+
2032
+ #: utils/stories/views/template.php:145
2033
+ msgid "Facebook Community"
2034
+ msgstr ""
2035
+
2036
+ #: widgets/button/button.php:16
2037
+ msgid "Submit Button"
2038
+ msgstr ""
2039
+
2040
+ #: widgets/button/button.php:36 widgets/checkbox/checkbox.php:43
2041
+ #: widgets/date/date.php:108 widgets/email/email.php:45
2042
+ #: widgets/file-upload/file-upload.php:37 widgets/form-basic.php:49
2043
+ #: widgets/gdpr-consent/gdpr-consent.php:36
2044
+ #: widgets/listing-fname/listing-fname.php:36
2045
+ #: widgets/listing-lname/listing-lname.php:36
2046
+ #: widgets/listing-optin/listing-optin.php:36
2047
+ #: widgets/multi-select/multi-select.php:36 widgets/number/number.php:36
2048
+ #: widgets/password/password.php:36 widgets/radio/radio.php:44
2049
+ #: widgets/range/range.php:36 widgets/rating/rating.php:36
2050
+ #: widgets/recaptcha/recaptcha.php:32 widgets/select/select.php:36
2051
+ #: widgets/simple-captcha/simple-captcha.php:41 widgets/summary/summary.php:36
2052
+ #: widgets/switch/switch.php:36 widgets/telephone/telephone.php:36
2053
+ #: widgets/text/text.php:36 widgets/textarea/textarea.php:37
2054
+ #: widgets/time/time.php:40 widgets/url/url.php:37
2055
+ msgid "Content"
2056
+ msgstr ""
2057
+
2058
+ #: widgets/button/button.php:52
2059
+ msgid "Hidden"
2060
+ msgstr ""
2061
+
2062
+ #: widgets/button/button.php:65
2063
+ msgid "Button"
2064
+ msgstr ""
2065
+
2066
+ #: widgets/button/button.php:92
2067
+ msgid "Shadow"
2068
+ msgstr ""
2069
+
2070
+ #: widgets/checkbox/checkbox.php:24 widgets/checkbox/checkbox.php:207
2071
+ #: widgets/gdpr-consent/gdpr-consent.php:245
2072
+ #: widgets/listing-optin/listing-optin.php:116
2073
+ msgid "Checkbox"
2074
+ msgstr ""
2075
+
2076
+ #: widgets/checkbox/checkbox.php:53 widgets/gdpr-consent/gdpr-consent.php:46
2077
+ #: widgets/radio/radio.php:55
2078
+ msgid "Option Display : "
2079
+ msgstr ""
2080
+
2081
+ #: widgets/checkbox/checkbox.php:57 widgets/gdpr-consent/gdpr-consent.php:50
2082
+ #: widgets/radio/radio.php:59
2083
+ msgid "Horizontal"
2084
+ msgstr ""
2085
+
2086
+ #: widgets/checkbox/checkbox.php:58 widgets/gdpr-consent/gdpr-consent.php:51
2087
+ #: widgets/radio/radio.php:60
2088
+ msgid "Vertical"
2089
+ msgstr ""
2090
+
2091
+ #: widgets/checkbox/checkbox.php:64 widgets/gdpr-consent/gdpr-consent.php:57
2092
+ msgid "Checkbox option display style. "
2093
+ msgstr ""
2094
+
2095
+ #: widgets/checkbox/checkbox.php:71 widgets/gdpr-consent/gdpr-consent.php:64
2096
+ #: widgets/listing-optin/listing-optin.php:47 widgets/radio/radio.php:73
2097
+ msgid "Option Text Position : "
2098
+ msgstr ""
2099
+
2100
+ #: widgets/checkbox/checkbox.php:74 widgets/gdpr-consent/gdpr-consent.php:67
2101
+ #: widgets/listing-optin/listing-optin.php:50
2102
+ msgid "After Checkbox"
2103
+ msgstr ""
2104
+
2105
+ #: widgets/checkbox/checkbox.php:75 widgets/gdpr-consent/gdpr-consent.php:68
2106
+ #: widgets/listing-optin/listing-optin.php:51
2107
+ msgid "Before Checkbox"
2108
+ msgstr ""
2109
+
2110
+ #: widgets/checkbox/checkbox.php:78 widgets/gdpr-consent/gdpr-consent.php:71
2111
+ #: widgets/listing-optin/listing-optin.php:54 widgets/radio/radio.php:80
2112
+ msgid "Where do you want to label?"
2113
+ msgstr ""
2114
+
2115
+ #: widgets/checkbox/checkbox.php:86 widgets/gdpr-consent/gdpr-consent.php:77
2116
+ #: widgets/listing-optin/listing-optin.php:60
2117
+ msgid "Checkbox Option Text"
2118
+ msgstr ""
2119
+
2120
+ #: widgets/checkbox/checkbox.php:88 widgets/radio/radio.php:90
2121
+ msgid "Option Text"
2122
+ msgstr ""
2123
+
2124
+ #: widgets/checkbox/checkbox.php:90 widgets/radio/radio.php:92
2125
+ msgid "Select option text that will be show to user."
2126
+ msgstr ""
2127
+
2128
+ #: widgets/checkbox/checkbox.php:95 widgets/checkbox/checkbox.php:97
2129
+ #: widgets/radio/radio.php:97 widgets/radio/radio.php:99
2130
+ msgid "Option Value"
2131
+ msgstr ""
2132
+
2133
+ #: widgets/checkbox/checkbox.php:99 widgets/radio/radio.php:101
2134
+ msgid "Select option value that will be store/mail to desired person."
2135
+ msgstr ""
2136
+
2137
+ #: widgets/checkbox/checkbox.php:104 widgets/radio/radio.php:106
2138
+ msgid "Option Status"
2139
+ msgstr ""
2140
+
2141
+ #: widgets/checkbox/checkbox.php:107 widgets/radio/radio.php:109
2142
+ #: widgets/rating/rating.php:175 widgets/switch/switch.php:222
2143
+ msgid "Active"
2144
+ msgstr ""
2145
+
2146
+ #: widgets/checkbox/checkbox.php:108 widgets/multi-select/multi-select.php:71
2147
+ #: widgets/radio/radio.php:110 widgets/select/select.php:71
2148
+ msgid "Disable"
2149
+ msgstr ""
2150
+
2151
+ #: widgets/checkbox/checkbox.php:112 widgets/multi-select/multi-select.php:73
2152
+ #: widgets/radio/radio.php:114 widgets/select/select.php:73
2153
+ msgid ""
2154
+ "Want to make a option? which user can see the option but can't select it. "
2155
+ "make it disable."
2156
+ msgstr ""
2157
+
2158
+ #: widgets/checkbox/checkbox.php:118 widgets/multi-select/multi-select.php:79
2159
+ #: widgets/radio/radio.php:120 widgets/select/select.php:79
2160
+ msgid "Select it default ? "
2161
+ msgstr ""
2162
+
2163
+ #: widgets/checkbox/checkbox.php:125 widgets/multi-select/multi-select.php:86
2164
+ #: widgets/radio/radio.php:127 widgets/select/select.php:86
2165
+ msgid "Make this option default selected"
2166
+ msgstr ""
2167
+
2168
+ #: widgets/checkbox/checkbox.php:134
2169
+ msgid "Checkbox Options"
2170
+ msgstr ""
2171
+
2172
+ #: widgets/checkbox/checkbox.php:155 widgets/multi-select/multi-select.php:114
2173
+ #: widgets/radio/radio.php:155 widgets/select/select.php:114
2174
+ msgid "You can add/edit here your selector options."
2175
+ msgstr ""
2176
+
2177
+ #: widgets/checkbox/checkbox.php:176 widgets/date/date.php:130
2178
+ #: widgets/file-upload/file-upload.php:106
2179
+ #: widgets/listing-optin/listing-optin.php:84
2180
+ #: widgets/multi-select/multi-select.php:133 widgets/radio/radio.php:176
2181
+ #: widgets/range/range.php:58 widgets/rating/rating.php:58
2182
+ #: widgets/select/select.php:133 widgets/summary/summary.php:58
2183
+ #: widgets/switch/switch.php:76 widgets/time/time.php:62 widgets/url/url.php:59
2184
+ msgid "Validation Type"
2185
+ msgstr ""
2186
+
2187
+ #: widgets/checkbox/checkbox.php:191 widgets/gdpr-consent/gdpr-consent.php:97
2188
+ #: widgets/listing-optin/listing-optin.php:99 widgets/radio/radio.php:191
2189
+ msgid "Input Label"
2190
+ msgstr ""
2191
+
2192
+ #: widgets/checkbox/checkbox.php:264 widgets/checkbox/checkbox.php:289
2193
+ #: widgets/gdpr-consent/gdpr-consent.php:302
2194
+ #: widgets/gdpr-consent/gdpr-consent.php:327
2195
+ #: widgets/listing-optin/listing-optin.php:173
2196
+ #: widgets/listing-optin/listing-optin.php:198
2197
+ msgid "Checkbox Color"
2198
+ msgstr ""
2199
+
2200
+ #: widgets/checkbox/checkbox.php:282 widgets/gdpr-consent/gdpr-consent.php:320
2201
+ #: widgets/listing-optin/listing-optin.php:191 widgets/radio/radio.php:281
2202
+ msgid "Checked"
2203
+ msgstr ""
2204
+
2205
+ #: widgets/checkbox/checkbox.php:309 widgets/gdpr-consent/gdpr-consent.php:347
2206
+ #: widgets/listing-optin/listing-optin.php:218 widgets/radio/radio.php:308
2207
+ msgid "Horizontal position of icon"
2208
+ msgstr ""
2209
+
2210
+ #: widgets/checkbox/checkbox.php:332 widgets/gdpr-consent/gdpr-consent.php:370
2211
+ #: widgets/listing-optin/listing-optin.php:241
2212
+ msgid "Add space after checkbox"
2213
+ msgstr ""
2214
+
2215
+ #: widgets/checkbox/checkbox.php:348 widgets/gdpr-consent/gdpr-consent.php:386
2216
+ #: widgets/listing-optin/listing-optin.php:257 widgets/radio/radio.php:348
2217
+ msgid "Typography for icon"
2218
+ msgstr ""
2219
+
2220
+ #: widgets/checkbox/checkbox.php:359 widgets/gdpr-consent/gdpr-consent.php:397
2221
+ #: widgets/listing-optin/listing-optin.php:268 widgets/radio/radio.php:359
2222
+ msgid "Typography for text"
2223
+ msgstr ""
2224
+
2225
+ #: widgets/checkbox/checkbox.php:371 widgets/date/date.php:465
2226
+ #: widgets/email/email.php:128 widgets/file-upload/file-upload.php:401
2227
+ #: widgets/gdpr-consent/gdpr-consent.php:408
2228
+ #: widgets/listing-fname/listing-fname.php:103
2229
+ #: widgets/listing-lname/listing-lname.php:103
2230
+ #: widgets/listing-optin/listing-optin.php:279
2231
+ #: widgets/multi-select/multi-select.php:175 widgets/number/number.php:103
2232
+ #: widgets/password/password.php:103 widgets/radio/radio.php:371
2233
+ #: widgets/range/range.php:214 widgets/rating/rating.php:271
2234
+ #: widgets/select/select.php:349 widgets/simple-captcha/simple-captcha.php:316
2235
+ #: widgets/summary/summary.php:96 widgets/switch/switch.php:267
2236
+ #: widgets/telephone/telephone.php:103 widgets/text/text.php:103
2237
+ #: widgets/textarea/textarea.php:127 widgets/time/time.php:128
2238
+ #: widgets/url/url.php:113
2239
+ msgid "Help Text"
2240
+ msgstr ""
2241
+
2242
+ #: widgets/date/date.php:24
2243
+ msgid "Date"
2244
+ msgstr ""
2245
+
2246
+ #: widgets/date/date.php:41
2247
+ msgid "Albanian"
2248
+ msgstr ""
2249
+
2250
+ #: widgets/date/date.php:42
2251
+ msgid "Arabic"
2252
+ msgstr ""
2253
+
2254
+ #: widgets/date/date.php:43
2255
+ msgid "Austria"
2256
+ msgstr ""
2257
+
2258
+ #: widgets/date/date.php:44
2259
+ msgid "Azerbaijan"
2260
+ msgstr ""
2261
+
2262
+ #: widgets/date/date.php:45
2263
+ msgid "Bangla"
2264
+ msgstr ""
2265
+
2266
+ #: widgets/date/date.php:46
2267
+ msgid "Belarusian"
2268
+ msgstr ""
2269
+
2270
+ #: widgets/date/date.php:47
2271
+ msgid "Bosnian"
2272
+ msgstr ""
2273
+
2274
+ #: widgets/date/date.php:48
2275
+ msgid "Bulgarian"
2276
+ msgstr ""
2277
+
2278
+ #: widgets/date/date.php:49
2279
+ msgid "Burmese"
2280
+ msgstr ""
2281
+
2282
+ #: widgets/date/date.php:50
2283
+ msgid "Catalan"
2284
+ msgstr ""
2285
+
2286
+ #: widgets/date/date.php:51
2287
+ msgid "Croatian"
2288
+ msgstr ""
2289
+
2290
+ #: widgets/date/date.php:52
2291
+ msgid "Czech"
2292
+ msgstr ""
2293
+
2294
+ #: widgets/date/date.php:53
2295
+ msgid "Danish"
2296
+ msgstr ""
2297
+
2298
+ #: widgets/date/date.php:54
2299
+ msgid "Dutch"
2300
+ msgstr ""
2301
+
2302
+ #: widgets/date/date.php:55
2303
+ msgid "English"
2304
+ msgstr ""
2305
+
2306
+ #: widgets/date/date.php:56
2307
+ msgid "Esperanto"
2308
+ msgstr ""
2309
+
2310
+ #: widgets/date/date.php:57
2311
+ msgid "Estonian"
2312
+ msgstr ""
2313
+
2314
+ #: widgets/date/date.php:58
2315
+ msgid "Faroese"
2316
+ msgstr ""
2317
+
2318
+ #: widgets/date/date.php:59
2319
+ msgid "Finnish"
2320
+ msgstr ""
2321
+
2322
+ #: widgets/date/date.php:60
2323
+ msgid "French"
2324
+ msgstr ""
2325
+
2326
+ #: widgets/date/date.php:61
2327
+ msgid "Georgian"
2328
+ msgstr ""
2329
+
2330
+ #: widgets/date/date.php:62
2331
+ msgid "German"
2332
+ msgstr ""
2333
+
2334
+ #: widgets/date/date.php:63
2335
+ msgid "Greek"
2336
+ msgstr ""
2337
+
2338
+ #: widgets/date/date.php:64
2339
+ msgid "Hebrew"
2340
+ msgstr ""
2341
+
2342
+ #: widgets/date/date.php:65
2343
+ msgid "Hindi"
2344
+ msgstr ""
2345
+
2346
+ #: widgets/date/date.php:66
2347
+ msgid "Hungarian"
2348
+ msgstr ""
2349
+
2350
+ #: widgets/date/date.php:67
2351
+ msgid "Icelandic"
2352
+ msgstr ""
2353
+
2354
+ #: widgets/date/date.php:68
2355
+ msgid "Indonesian"
2356
+ msgstr ""
2357
+
2358
+ #: widgets/date/date.php:69
2359
+ msgid "Italian"
2360
+ msgstr ""
2361
+
2362
+ #: widgets/date/date.php:70
2363
+ msgid "Japanese"
2364
+ msgstr ""
2365
+
2366
+ #: widgets/date/date.php:71
2367
+ msgid "Kazakh"
2368
+ msgstr ""
2369
+
2370
+ #: widgets/date/date.php:72
2371
+ msgid "Khmer"
2372
+ msgstr ""
2373
+
2374
+ #: widgets/date/date.php:73
2375
+ msgid "Korean"
2376
+ msgstr ""
2377
+
2378
+ #: widgets/date/date.php:74
2379
+ msgid "Latvian"
2380
+ msgstr ""
2381
+
2382
+ #: widgets/date/date.php:75
2383
+ msgid "Lithuanian"
2384
+ msgstr ""
2385
+
2386
+ #: widgets/date/date.php:76
2387
+ msgid "Macedonian"
2388
+ msgstr ""
2389
+
2390
+ #: widgets/date/date.php:77
2391
+ msgid "Malaysian"
2392
+ msgstr ""
2393
+
2394
+ #: widgets/date/date.php:78
2395
+ msgid "Mandarin"
2396
+ msgstr ""
2397
+
2398
+ #: widgets/date/date.php:79
2399
+ msgid "MandarinTraditional"
2400
+ msgstr ""
2401
+
2402
+ #: widgets/date/date.php:80
2403
+ msgid "Mongolian"
2404
+ msgstr ""
2405
+
2406
+ #: widgets/date/date.php:81
2407
+ msgid "Norwegian"
2408
+ msgstr ""
2409
+
2410
+ #: widgets/date/date.php:82
2411
+ msgid "Persian"
2412
+ msgstr ""
2413
+
2414
+ #: widgets/date/date.php:83
2415
+ msgid "Polish"
2416
+ msgstr ""
2417
+
2418
+ #: widgets/date/date.php:84
2419
+ msgid "Portuguese"
2420
+ msgstr ""
2421
+
2422
+ #: widgets/date/date.php:85
2423
+ msgid "Punjabi"
2424
+ msgstr ""
2425
+
2426
+ #: widgets/date/date.php:86
2427
+ msgid "Romanian"
2428
+ msgstr ""
2429
+
2430
+ #: widgets/date/date.php:87
2431
+ msgid "Russian"
2432
+ msgstr ""
2433
+
2434
+ #: widgets/date/date.php:88
2435
+ msgid "Serbian"
2436
+ msgstr ""
2437
+
2438
+ #: widgets/date/date.php:89
2439
+ msgid "SerbianCyrillic"
2440
+ msgstr ""
2441
+
2442
+ #: widgets/date/date.php:90
2443
+ msgid "Sinhala"
2444
+ msgstr ""
2445
+
2446
+ #: widgets/date/date.php:91
2447
+ msgid "Slovak"
2448
+ msgstr ""
2449
+
2450
+ #: widgets/date/date.php:92
2451
+ msgid "Slovenian"
2452
+ msgstr ""
2453
+
2454
+ #: widgets/date/date.php:93
2455
+ msgid "Spanish"
2456
+ msgstr ""
2457
+
2458
+ #: widgets/date/date.php:94
2459
+ msgid "Swedish"
2460
+ msgstr ""
2461
+
2462
+ #: widgets/date/date.php:95
2463
+ msgid "Thai"
2464
+ msgstr ""
2465
+
2466
+ #: widgets/date/date.php:96
2467
+ msgid "Turkish"
2468
+ msgstr ""
2469
+
2470
+ #: widgets/date/date.php:97
2471
+ msgid "Ukrainian"
2472
+ msgstr ""
2473
+
2474
+ #: widgets/date/date.php:98
2475
+ msgid "Vietnamese"
2476
+ msgstr ""
2477
+
2478
+ #: widgets/date/date.php:99
2479
+ msgid "Welsh"
2480
+ msgstr ""
2481
+
2482
+ #: widgets/date/date.php:139
2483
+ msgid "Set minimum date:"
2484
+ msgstr ""
2485
+
2486
+ #: widgets/date/date.php:150
2487
+ msgid "Set maximum date:"
2488
+ msgstr ""
2489
+
2490
+ #: widgets/date/date.php:163
2491
+ msgid "Disable date : "
2492
+ msgstr ""
2493
+
2494
+ #: widgets/date/date.php:174
2495
+ msgid "Disable date List"
2496
+ msgstr ""
2497
+
2498
+ #: widgets/date/date.php:185
2499
+ msgid "Range date input ?"
2500
+ msgstr ""
2501
+
2502
+ #: widgets/date/date.php:197
2503
+ msgid "Year input ?"
2504
+ msgstr ""
2505
+
2506
+ #: widgets/date/date.php:209
2507
+ msgid "Month input ?"
2508
+ msgstr ""
2509
+
2510
+ #: widgets/date/date.php:221
2511
+ msgid "Date input ?"
2512
+ msgstr ""
2513
+
2514
+ #: widgets/date/date.php:233 widgets/date/date.php:280
2515
+ #: widgets/date/date.php:314 widgets/date/date.php:348
2516
+ msgid "Date format : "
2517
+ msgstr ""
2518
+
2519
+ #: widgets/date/date.php:237
2520
+ msgid "YYYY-MM-DD"
2521
+ msgstr ""
2522
+
2523
+ #: widgets/date/date.php:238
2524
+ msgid "DD-MM-YYYY"
2525
+ msgstr ""
2526
+
2527
+ #: widgets/date/date.php:239
2528
+ msgid "MM-DD-YYYY"
2529
+ msgstr ""
2530
+
2531
+ #: widgets/date/date.php:240
2532
+ msgid "YYYY.MM.DD"
2533
+ msgstr ""
2534
+
2535
+ #: widgets/date/date.php:241
2536
+ msgid "DD.MM.YYYY"
2537
+ msgstr ""
2538
+
2539
+ #: widgets/date/date.php:242
2540
+ msgid "MM.DD.YYYY"
2541
+ msgstr ""
2542
+
2543
+ #: widgets/date/date.php:269
2544
+ msgid "Localization"
2545
+ msgstr ""
2546
+
2547
+ #: widgets/date/date.php:270
2548
+ msgid "Language change will be shown on preview."
2549
+ msgstr ""
2550
+
2551
+ #: widgets/date/date.php:284
2552
+ msgid "MM-DD"
2553
+ msgstr ""
2554
+
2555
+ #: widgets/date/date.php:285
2556
+ msgid "DD-MM"
2557
+ msgstr ""
2558
+
2559
+ #: widgets/date/date.php:286
2560
+ msgid "MM.DD"
2561
+ msgstr ""
2562
+
2563
+ #: widgets/date/date.php:287
2564
+ msgid "DD.MM"
2565
+ msgstr ""
2566
+
2567
+ #: widgets/date/date.php:318
2568
+ msgid "MM-YY"
2569
+ msgstr ""
2570
+
2571
+ #: widgets/date/date.php:319
2572
+ msgid "YY-MM"
2573
+ msgstr ""
2574
+
2575
+ #: widgets/date/date.php:320
2576
+ msgid "MM.YY"
2577
+ msgstr ""
2578
+
2579
+ #: widgets/date/date.php:321
2580
+ msgid "YY.MM"
2581
+ msgstr ""
2582
+
2583
+ #: widgets/date/date.php:352
2584
+ msgid "DD-YY"
2585
+ msgstr ""
2586
+
2587
+ #: widgets/date/date.php:353
2588
+ msgid "YY-DD"
2589
+ msgstr ""
2590
+
2591
+ #: widgets/date/date.php:354
2592
+ msgid "DD.YY"
2593
+ msgstr ""
2594
+
2595
+ #: widgets/date/date.php:355
2596
+ msgid "YY.DD"
2597
+ msgstr ""
2598
+
2599
+ #: widgets/date/date.php:382
2600
+ msgid "Want to input time with it ?"
2601
+ msgstr ""
2602
+
2603
+ #: widgets/date/date.php:394
2604
+ msgid "Enable time 24hr?"
2605
+ msgstr ""
2606
+
2607
+ #: widgets/date/date.php:430 widgets/email/email.php:104
2608
+ #: widgets/file-upload/file-upload.php:202
2609
+ #: widgets/listing-fname/listing-fname.php:79
2610
+ #: widgets/listing-lname/listing-lname.php:79
2611
+ #: widgets/multi-select/multi-select.php:163 widgets/number/number.php:79
2612
+ #: widgets/password/password.php:79 widgets/rating/rating.php:100
2613
+ #: widgets/summary/summary.php:84 widgets/switch/switch.php:107
2614
+ #: widgets/telephone/telephone.php:79 widgets/text/text.php:79
2615
+ #: widgets/textarea/textarea.php:80 widgets/time/time.php:104
2616
+ #: widgets/url/url.php:89
2617
+ msgid "Input"
2618
+ msgstr ""
2619
+
2620
+ #: widgets/date/date.php:441
2621
+ msgid "Calendar Typography"
2622
+ msgstr ""
2623
+
2624
+ #: widgets/date/date.php:453 widgets/email/email.php:116
2625
+ #: widgets/listing-fname/listing-fname.php:91
2626
+ #: widgets/listing-lname/listing-lname.php:91 widgets/number/number.php:91
2627
+ #: widgets/password/password.php:91 widgets/select/select.php:337
2628
+ #: widgets/simple-captcha/simple-captcha.php:331
2629
+ #: widgets/telephone/telephone.php:91 widgets/text/text.php:91
2630
+ #: widgets/textarea/textarea.php:115 widgets/time/time.php:116
2631
+ #: widgets/url/url.php:101
2632
+ msgid "Place Holder"
2633
+ msgstr ""
2634
+
2635
+ #: widgets/email/email.php:21
2636
+ msgid "Email"
2637
+ msgstr ""
2638
+
2639
+ #: widgets/email/email.php:53
2640
+ msgid "Show Logged in Email"
2641
+ msgstr ""
2642
+
2643
+ #: widgets/email/email.php:156
2644
+ msgid "Please enter a valid Email address"
2645
+ msgstr ""
2646
+
2647
+ #: widgets/file-upload/file-upload.php:16
2648
+ msgid "File Upload"
2649
+ msgstr ""
2650
+
2651
+ #: widgets/file-upload/file-upload.php:47
2652
+ msgid "Choose file Text"
2653
+ msgstr ""
2654
+
2655
+ #: widgets/file-upload/file-upload.php:55
2656
+ msgid "No file chosen Text"
2657
+ msgstr ""
2658
+
2659
+ #: widgets/file-upload/file-upload.php:64
2660
+ msgid "File Upload Icon:"
2661
+ msgstr ""
2662
+
2663
+ #: widgets/file-upload/file-upload.php:73
2664
+ msgid "File Upload Icon Position"
2665
+ msgstr ""
2666
+
2667
+ #: widgets/file-upload/file-upload.php:115
2668
+ msgid "File Size Limit : "
2669
+ msgstr ""
2670
+
2671
+ #: widgets/file-upload/file-upload.php:126
2672
+ msgid "Maximum File Size (KB) : "
2673
+ msgstr ""
2674
+
2675
+ #: widgets/file-upload/file-upload.php:138
2676
+ msgid "File Types : "
2677
+ msgstr ""
2678
+
2679
+ #: widgets/file-upload/file-upload.php:142
2680
+ msgid ".jpg"
2681
+ msgstr ""
2682
+
2683
+ #: widgets/file-upload/file-upload.php:143
2684
+ msgid ".jpeg"
2685
+ msgstr ""
2686
+
2687
+ #: widgets/file-upload/file-upload.php:144
2688
+ msgid ".gif"
2689
+ msgstr ""
2690
+
2691
+ #: widgets/file-upload/file-upload.php:145
2692
+ msgid ".png"
2693
+ msgstr ""
2694
+
2695
+ #: widgets/file-upload/file-upload.php:146
2696
+ msgid ".ico"
2697
+ msgstr ""
2698
+
2699
+ #: widgets/file-upload/file-upload.php:147
2700
+ msgid ".pdf"
2701
+ msgstr ""
2702
+
2703
+ #: widgets/file-upload/file-upload.php:148
2704
+ msgid ".doc"
2705
+ msgstr ""
2706
+
2707
+ #: widgets/file-upload/file-upload.php:149
2708
+ msgid ".docx"
2709
+ msgstr ""
2710
+
2711
+ #: widgets/file-upload/file-upload.php:150
2712
+ msgid ".ppt"
2713
+ msgstr ""
2714
+
2715
+ #: widgets/file-upload/file-upload.php:151
2716
+ msgid ".pptx"
2717
+ msgstr ""
2718
+
2719
+ #: widgets/file-upload/file-upload.php:152
2720
+ msgid ".pps"
2721
+ msgstr ""
2722
+
2723
+ #: widgets/file-upload/file-upload.php:153
2724
+ msgid ".ppsx"
2725
+ msgstr ""
2726
+
2727
+ #: widgets/file-upload/file-upload.php:154
2728
+ msgid ".odt"
2729
+ msgstr ""
2730
+
2731
+ #: widgets/file-upload/file-upload.php:155
2732
+ msgid ".xls"
2733
+ msgstr ""
2734
+
2735
+ #: widgets/file-upload/file-upload.php:156
2736
+ msgid ".xlsx"
2737
+ msgstr ""
2738
+
2739
+ #: widgets/file-upload/file-upload.php:157
2740
+ msgid ".psd"
2741
+ msgstr ""
2742
+
2743
+ #: widgets/file-upload/file-upload.php:158
2744
+ msgid ".mp3"
2745
+ msgstr ""
2746
+
2747
+ #: widgets/file-upload/file-upload.php:159
2748
+ msgid ".m4a"
2749
+ msgstr ""
2750
+
2751
+ #: widgets/file-upload/file-upload.php:160
2752
+ msgid ".ogg"
2753
+ msgstr ""
2754
+
2755
+ #: widgets/file-upload/file-upload.php:161
2756
+ msgid ".wav"
2757
+ msgstr ""
2758
+
2759
+ #: widgets/file-upload/file-upload.php:162
2760
+ msgid ".mp4"
2761
+ msgstr ""
2762
+
2763
+ #: widgets/file-upload/file-upload.php:163
2764
+ msgid ".m4v"
2765
+ msgstr ""
2766
+
2767
+ #: widgets/file-upload/file-upload.php:164
2768
+ msgid ".mov"
2769
+ msgstr ""
2770
+
2771
+ #: widgets/file-upload/file-upload.php:165
2772
+ msgid ".wmv"
2773
+ msgstr ""
2774
+
2775
+ #: widgets/file-upload/file-upload.php:166
2776
+ msgid ".avi"
2777
+ msgstr ""
2778
+
2779
+ #: widgets/file-upload/file-upload.php:167
2780
+ msgid ".mpg"
2781
+ msgstr ""
2782
+
2783
+ #: widgets/file-upload/file-upload.php:168
2784
+ msgid ".ogv"
2785
+ msgstr ""
2786
+
2787
+ #: widgets/file-upload/file-upload.php:169
2788
+ msgid ".3gp"
2789
+ msgstr ""
2790
+
2791
+ #: widgets/file-upload/file-upload.php:170
2792
+ msgid ".3g2"
2793
+ msgstr ""
2794
+
2795
+ #: widgets/file-upload/file-upload.php:171
2796
+ msgid ".zip"
2797
+ msgstr ""
2798
+
2799
+ #: widgets/file-upload/file-upload.php:172
2800
+ msgid ".csv"
2801
+ msgstr ""
2802
+
2803
+ #: widgets/file-upload/file-upload.php:212
2804
+ msgid "Icon Size"
2805
+ msgstr ""
2806
+
2807
+ #: widgets/file-upload/file-upload.php:240
2808
+ msgid "Icon Spacing"
2809
+ msgstr ""
2810
+
2811
+ #: widgets/file-upload/file-upload.php:255
2812
+ msgid "File Name:"
2813
+ msgstr ""
2814
+
2815
+ #: widgets/file-upload/file-upload.php:269
2816
+ msgid "Bottom"
2817
+ msgstr ""
2818
+
2819
+ #: widgets/form-basic.php:12
2820
+ msgid "MetForm Basic"
2821
+ msgstr ""
2822
+
2823
+ #: widgets/form-basic.php:58
2824
+ msgid "Select Form : "
2825
+ msgstr ""
2826
+
2827
+ #: widgets/form.php:53
2828
+ msgid "Select Form: "
2829
+ msgstr ""
2830
+
2831
+ #: widgets/gdpr-consent/gdpr-consent.php:16
2832
+ msgid "GDPR Consent"
2833
+ msgstr ""
2834
+
2835
+ #: widgets/gdpr-consent/gdpr-consent.php:82
2836
+ #: widgets/listing-optin/listing-optin.php:64
2837
+ msgid "Select option name that will be show to user."
2838
+ msgstr ""
2839
+
2840
+ #: widgets/listing-fname/listing-fname.php:16
2841
+ msgid "First Name (Listing)"
2842
+ msgstr ""
2843
+
2844
+ #: widgets/listing-lname/listing-lname.php:16
2845
+ msgid "Last Name (Listing)"
2846
+ msgstr ""
2847
+
2848
+ #: widgets/listing-optin/listing-optin.php:16
2849
+ msgid "Opt in ( Listing )"
2850
+ msgstr ""
2851
+
2852
+ #: widgets/listing-optin/listing-optin.php:62
2853
+ msgid "Subscribe to ours newsletter."
2854
+ msgstr ""
2855
+
2856
+ #: widgets/manifest.php:116
2857
+ msgid "Metform"
2858
+ msgstr ""
2859
+
2860
+ #: widgets/multi-select/multi-select.php:16
2861
+ msgid "Multi Select"
2862
+ msgstr ""
2863
+
2864
+ #: widgets/multi-select/multi-select.php:47 widgets/select/select.php:47
2865
+ msgid "Input Field Text"
2866
+ msgstr ""
2867
+
2868
+ #: widgets/multi-select/multi-select.php:49 widgets/select/select.php:49
2869
+ msgid "Input Text"
2870
+ msgstr ""
2871
+
2872
+ #: widgets/multi-select/multi-select.php:51 widgets/select/select.php:51
2873
+ msgid "Select list text that will be show to user."
2874
+ msgstr ""
2875
+
2876
+ #: widgets/multi-select/multi-select.php:56 widgets/select/select.php:56
2877
+ msgid "Input Field Value"
2878
+ msgstr ""
2879
+
2880
+ #: widgets/multi-select/multi-select.php:60 widgets/select/select.php:60
2881
+ msgid "Select list value that will be store/mail to desired person."
2882
+ msgstr ""
2883
+
2884
+ #: widgets/multi-select/multi-select.php:66 widgets/select/select.php:66
2885
+ msgid "Status"
2886
+ msgstr ""
2887
+
2888
+ #: widgets/multi-select/multi-select.php:93
2889
+ msgid "Multi Select List"
2890
+ msgstr ""
2891
+
2892
+ #: widgets/number/number.php:16
2893
+ msgid "Number"
2894
+ msgstr ""
2895
+
2896
+ #: widgets/password/password.php:16
2897
+ msgid "Password"
2898
+ msgstr ""
2899
+
2900
+ #: widgets/radio/radio.php:24 widgets/radio/radio.php:207
2901
+ msgid "Radio"
2902
+ msgstr ""
2903
+
2904
+ #: widgets/radio/radio.php:66
2905
+ msgid "Radio option display style."
2906
+ msgstr ""
2907
+
2908
+ #: widgets/radio/radio.php:76
2909
+ msgid "After Radio"
2910
+ msgstr ""
2911
+
2912
+ #: widgets/radio/radio.php:77
2913
+ msgid "Before Radio"
2914
+ msgstr ""
2915
+
2916
+ #: widgets/radio/radio.php:88
2917
+ msgid "Radio Option Text"
2918
+ msgstr ""
2919
+
2920
+ #: widgets/radio/radio.php:134
2921
+ msgid "Radio Options"
2922
+ msgstr ""
2923
+
2924
+ #: widgets/radio/radio.php:263 widgets/radio/radio.php:288
2925
+ msgid "Radio Color"
2926
+ msgstr ""
2927
+
2928
+ #: widgets/radio/radio.php:332
2929
+ msgid "Add space after radio"
2930
+ msgstr ""
2931
+
2932
+ #: widgets/range/range.php:16
2933
+ msgid "Range Slider"
2934
+ msgstr ""
2935
+
2936
+ #: widgets/range/range.php:86
2937
+ msgid "Steps"
2938
+ msgstr ""
2939
+
2940
+ #: widgets/range/range.php:95
2941
+ msgid "Dual range input:"
2942
+ msgstr ""
2943
+
2944
+ #: widgets/range/range.php:108
2945
+ msgid ""
2946
+ "<strong>Important Note : </strong> For taking dual range input, You have to "
2947
+ "enter dual default value in the field Value (Exactly bottom of this notice "
2948
+ "field. ). Example: Min:10, Max:20"
2949
+ msgstr ""
2950
+
2951
+ #: widgets/range/range.php:119
2952
+ msgid "Value"
2953
+ msgstr ""
2954
+
2955
+ #: widgets/range/range.php:148
2956
+ msgid "Range"
2957
+ msgstr ""
2958
+
2959
+ #: widgets/range/range.php:160
2960
+ msgid "Counter"
2961
+ msgstr ""
2962
+
2963
+ #: widgets/range/range.php:183 widgets/switch/switch.php:132
2964
+ #: widgets/textarea/textarea.php:88
2965
+ msgid "Height"
2966
+ msgstr ""
2967
+
2968
+ #: widgets/rating/rating.php:16
2969
+ msgid "Rating"
2970
+ msgstr ""
2971
+
2972
+ #: widgets/rating/rating.php:67
2973
+ msgid "Number of rating star : "
2974
+ msgstr ""
2975
+
2976
+ #: widgets/recaptcha/recaptcha.php:13
2977
+ msgid "reCAPTCHA"
2978
+ msgstr ""
2979
+
2980
+ #: widgets/recaptcha/recaptcha.php:40
2981
+ msgid "reCAPTCHA configure: "
2982
+ msgstr ""
2983
+
2984
+ #: widgets/recaptcha/recaptcha.php:50
2985
+ msgid "Add Extra Class Name : "
2986
+ msgstr ""
2987
+
2988
+ #: widgets/recaptcha/recaptcha.php:103
2989
+ msgid "reCAPTCHA is required."
2990
+ msgstr ""
2991
+
2992
+ #: widgets/recaptcha/recaptcha.php:141 widgets/recaptcha/recaptcha.php:176
2993
+ msgid "reCAPTCHA will be shown on preview."
2994
+ msgstr ""
2995
+
2996
+ #: widgets/select/select.php:16 widgets/select/select.php:163
2997
+ msgid "Select"
2998
+ msgstr ""
2999
+
3000
+ #: widgets/select/select.php:93
3001
+ msgid "Dropdown List"
3002
+ msgstr ""
3003
+
3004
+ #: widgets/select/select.php:173
3005
+ msgid "Options"
3006
+ msgstr ""
3007
+
3008
+ #: widgets/select/select.php:298
3009
+ msgid "Selected"
3010
+ msgstr ""
3011
+
3012
+ #: widgets/simple-captcha/simple-captcha.php:22
3013
+ msgid "Simple Captcha"
3014
+ msgstr ""
3015
+
3016
+ #: widgets/simple-captcha/simple-captcha.php:62
3017
+ msgid "Label Position"
3018
+ msgstr ""
3019
+
3020
+ #: widgets/simple-captcha/simple-captcha.php:83
3021
+ msgid "Input captcha display"
3022
+ msgstr ""
3023
+
3024
+ #: widgets/simple-captcha/simple-captcha.php:87
3025
+ msgid "Block"
3026
+ msgstr ""
3027
+
3028
+ #: widgets/simple-captcha/simple-captcha.php:88
3029
+ msgid "Inline"
3030
+ msgstr ""
3031
+
3032
+ #: widgets/simple-captcha/simple-captcha.php:90
3033
+ msgid "Select input and captcha display property."
3034
+ msgstr ""
3035
+
3036
+ #: widgets/simple-captcha/simple-captcha.php:266
3037
+ msgid "Refresh Captcha"
3038
+ msgstr ""
3039
+
3040
+ #: widgets/simple-captcha/simple-captcha.php:360
3041
+ msgid "Captcha didn't matched."
3042
+ msgstr ""
3043
+
3044
+ #: widgets/simple-captcha/simple-captcha.php:394
3045
+ msgid "Entry captcha from the picture"
3046
+ msgstr ""
3047
+
3048
+ #: widgets/summary/summary.php:16
3049
+ msgid "Summary"
3050
+ msgstr ""
3051
+
3052
+ #: widgets/summary/summary.php:146
3053
+ msgid "Summary will be shown on preview."
3054
+ msgstr ""
3055
+
3056
+ #: widgets/switch/switch.php:16
3057
+ msgid "Switch"
3058
+ msgstr ""
3059
+
3060
+ #: widgets/switch/switch.php:46
3061
+ msgid "Active Text"
3062
+ msgstr ""
3063
+
3064
+ #: widgets/switch/switch.php:54
3065
+ msgid "Inactive Text"
3066
+ msgstr ""
3067
+
3068
+ #: widgets/switch/switch.php:148
3069
+ msgid "Input Active Color"
3070
+ msgstr ""
3071
+
3072
+ #: widgets/switch/switch.php:168
3073
+ msgid "Active and Inactive Text:"
3074
+ msgstr ""
3075
+
3076
+ #: widgets/switch/switch.php:180
3077
+ msgid "Inactive"
3078
+ msgstr ""
3079
+
3080
+ #: widgets/telephone/telephone.php:16
3081
+ msgid "Telephone"
3082
+ msgstr ""
3083
+
3084
+ #: widgets/text/text.php:16
3085
+ msgid "Text"
3086
+ msgstr ""
3087
+
3088
+ #: widgets/textarea/textarea.php:17
3089
+ msgid "Textarea"
3090
+ msgstr ""
3091
+
3092
+ #: widgets/time/time.php:20
3093
+ msgid "Time"
3094
+ msgstr ""
3095
+
3096
+ #: widgets/time/time.php:71
3097
+ msgid "Use time 24H"
3098
+ msgstr ""
3099
+
3100
+ #: widgets/url/url.php:16
3101
+ msgid "URL"
3102
+ msgstr ""
3103
+
3104
+ #: widgets/url/url.php:139
3105
+ msgid "Please enter a valid URL"
3106
+ msgstr ""
3107
+
3108
+ #: widgets/widget-notice.php:18
3109
+ msgid "Go Pro for More Features"
3110
+ msgstr ""
3111
+
3112
+ #: widgets/widget-notice.php:25
3113
+ msgid "Unlock more possibilities"
3114
+ msgstr ""
3115
+
3116
+ #. Plugin URI of the plugin/theme
3117
+ msgid "http://products.wpmet.com/metform/"
3118
+ msgstr ""
3119
+
3120
+ #. Description of the plugin/theme
3121
+ msgid "Most flexible and design friendly form builder for Elementor"
3122
+ msgstr ""
3123
+
3124
+ #. Author of the plugin/theme
3125
+ msgid "Wpmet"
3126
+ msgstr ""
3127
+
3128
+ #. Author URI of the plugin/theme
3129
+ msgid "https://wpmet.com"
3130
+ msgstr ""
3131
+
3132
+ #: core/entries/cpt.php:14
3133
+ msgctxt "Post Type General Name"
3134
+ msgid "Entries"
3135
+ msgstr ""
3136
+
3137
+ #: core/forms/cpt.php:374
3138
+ msgctxt "Post Type General Name"
3139
+ msgid "Forms"
3140
+ msgstr ""
3141
+
3142
+ #: core/entries/cpt.php:15
3143
+ msgctxt "Post Type Singular Name"
3144
+ msgid "Entry"
3145
+ msgstr ""
3146
+
3147
+ #: core/forms/cpt.php:375
3148
+ msgctxt "Post Type Singular Name"
3149
+ msgid "Form"
3150
+ msgstr ""
3151
+
3152
+ #: traits/button-controls.php:262
3153
+ msgctxt "Border Control"
3154
+ msgid "Border Type"
3155
+ msgstr ""
3156
+
3157
+ #: traits/button-controls.php:266
3158
+ msgctxt "Border Control"
3159
+ msgid "Solid"
3160
+ msgstr ""
3161
+
3162
+ #: traits/button-controls.php:267
3163
+ msgctxt "Border Control"
3164
+ msgid "Double"
3165
+ msgstr ""
3166
+
3167
+ #: traits/button-controls.php:268
3168
+ msgctxt "Border Control"
3169
+ msgid "Dotted"
3170
+ msgstr ""
3171
+
3172
+ #: traits/button-controls.php:269
3173
+ msgctxt "Border Control"
3174
+ msgid "Dashed"
3175
+ msgstr ""
3176
+
3177
+ #: traits/button-controls.php:270
3178
+ msgctxt "Border Control"
3179
+ msgid "Groove"
3180
+ msgstr ""
3181
+
3182
+ #: traits/button-controls.php:282
3183
+ msgctxt "Border Control"
3184
+ msgid "Width"
3185
+ msgstr ""
3186
+
3187
+ #: traits/button-controls.php:308 traits/button-controls.php:331
3188
+ msgctxt "Border Control"
3189
+ msgid "Color"
3190
+ 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.4.4
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.4.5
9
  * Author: Wpmet
10
  * Author URI: https://wpmet.com
11
  * Text Domain: metform
plugin.php CHANGED
@@ -1,436 +1,436 @@
1
- <?php
2
-
3
- namespace MetForm;
4
-
5
-
6
- defined('ABSPATH') || exit;
7
-
8
- final class Plugin
9
- {
10
-
11
- private static $instance;
12
-
13
- private $entries;
14
- private $global_settings;
15
-
16
- public function __construct()
17
- {
18
- Autoloader::run();
19
- }
20
-
21
- public function version()
22
- {
23
- return '1.4.4';
24
- }
25
-
26
- public function package_type()
27
- {
28
- return 'free';
29
- }
30
-
31
- public function plugin_url()
32
- {
33
- return trailingslashit(plugin_dir_url(__FILE__));
34
- }
35
-
36
- public function plugin_dir()
37
- {
38
- return trailingslashit(plugin_dir_path(__FILE__));
39
- }
40
-
41
- public function core_url()
42
- {
43
- return $this->plugin_url() . 'core/';
44
- }
45
-
46
- public function core_dir()
47
- {
48
- return $this->plugin_dir() . 'core/';
49
- }
50
-
51
- public function base_url()
52
- {
53
- return $this->plugin_url() . 'base/';
54
- }
55
-
56
- public function base_dir()
57
- {
58
- return $this->plugin_dir() . 'base/';
59
- }
60
-
61
- public function utils_url()
62
- {
63
- return $this->plugin_url() . 'utils/';
64
- }
65
-
66
- public function utils_dir()
67
- {
68
- return $this->plugin_dir() . 'utils/';
69
- }
70
-
71
- public function widgets_url()
72
- {
73
- return $this->plugin_url() . 'widgets/';
74
- }
75
-
76
- public function widgets_dir()
77
- {
78
- return $this->plugin_dir() . 'widgets/';
79
- }
80
-
81
- public function public_url()
82
- {
83
- return $this->plugin_url() . 'public/';
84
- }
85
-
86
- public function public_dir()
87
- {
88
- return $this->plugin_dir() . 'public/';
89
- }
90
-
91
- public function i18n()
92
- {
93
- load_plugin_textdomain('metform', false, dirname(plugin_basename(__FILE__)) . '/languages/');
94
- }
95
-
96
- public function init()
97
- {
98
- /**
99
- * ----------------------------------------
100
- * Ask for rating ⭐⭐⭐⭐⭐
101
- * A rating notice will appear depends on
102
- * @set_first_appear_day methods
103
- * ----------------------------------------
104
- */
105
- \Wpmet\Libs\Rating::instance('metform')
106
- ->set_plugin_logo('https://ps.w.org/metform/assets/icon-128x128.png')
107
- ->set_plugin('Metform', 'https://wpmet.com/wordpress.org/rating/metform')
108
- ->set_allowed_screens('edit-metform-entry')
109
- ->set_allowed_screens('edit-metform-form')
110
- ->set_allowed_screens('metform_page_metform_get_help')
111
- ->set_priority(30)
112
- ->set_first_appear_day(7)
113
- ->set_condition(true)
114
- ->call();
115
-
116
-
117
- $filter_string = ''; // elementskit,metform-pro
118
- $filter_string .= ((!in_array('elementskit/elementskit.php', apply_filters('active_plugins', get_option('active_plugins')))) ? '' : ',elementskit');
119
- $filter_string .= (!class_exists('\MetForm\Plugin') ? '' : ',metform');
120
- $filter_string .= (!class_exists('\MetForm_Pro\Plugin') ? '' : ',metform-pro');
121
-
122
- // banner
123
- \Wpmet\Libs\Banner::instance('metform')
124
- ->set_filter(ltrim($filter_string, ','))
125
- ->set_api_url('https://api.wpmet.com/public/jhanda')
126
- ->set_plugin_screens('edit-metform-form')
127
- ->set_plugin_screens('edit-metform-entry')
128
- ->set_plugin_screens('metform_page_metform-menu-settings')
129
- ->call();
130
-
131
-
132
-
133
- /**
134
- * Show WPMET stories widget in dashboard
135
- */
136
- \Wpmet\Libs\Stories::instance('metform')
137
-
138
- ->set_filter($filter_string)
139
- ->set_plugin('Metform', 'https://wpmet.com/plugin/metform/')
140
- ->set_api_url('https://api.wpmet.com/public/stories/')
141
- ->call();
142
-
143
- /**
144
- * Pro awareness feature;
145
- */
146
-
147
- $is_pro_active = '';
148
-
149
- if (!in_array('metform-pro/metform-pro.php', apply_filters('active_plugins', get_option('active_plugins')))) {
150
- $is_pro_active = 'Go Premium';
151
- }
152
-
153
- \Wpmet\Libs\Pro_Awareness::instance('metform')
154
- ->set_parent_menu_slug('metform-menu')
155
- ->set_pro_link(
156
- (in_array('metform-pro/metform-pro.php', apply_filters('active_plugins', get_option('active_plugins')))) ? '' :
157
- 'http://go.wpmet.com/metformpro'
158
- )
159
- ->set_plugin_file('metform/metform.php')
160
- ->set_default_grid_thumbnail($this->utils_url() . '/pro-awareness/assets/support.png')
161
- ->set_page_grid([
162
- 'url' => 'https://go.wpmet.com/facebook-group',
163
- 'title' => 'Join the Community',
164
- 'thumbnail' => $this->utils_url() . '/pro-awareness/assets/community.png',
165
- ])
166
- ->set_page_grid([
167
- 'url' => 'https://www.youtube.com/playlist?list=PL3t2OjZ6gY8NoB_48DwWKUDRtBEuBOxSc',
168
- 'title' => 'Video Tutorials',
169
- 'thumbnail' => $this->utils_url() . '/pro-awareness/assets/videos.png',
170
- ])
171
- ->set_page_grid([
172
- 'url' => 'https://wpmet.com/plugin/metform/roadmaps#ideas',
173
- 'title' => 'Request a feature',
174
- 'thumbnail' => $this->utils_url() . '/pro-awareness/assets/request.png',
175
- ])
176
- ->set_plugin_row_meta('Documentation', 'https://help.wpmet.com/docs-cat/metform/', ['target' => '_blank'])
177
- ->set_plugin_row_meta('Facebook Community', 'http://go.wpmet.com/facebook-group', ['target' => '_blank'])
178
- ->set_plugin_row_meta('Rate the plugin ★★★★★', 'https://wordpress.org/support/plugin/metform/reviews/#new-post', ['target' => '_blank'])
179
- ->set_plugin_action_link('Settings', admin_url() . 'admin.php?page=metform-menu-settings')
180
- ->set_plugin_action_link($is_pro_active, 'https://wpmet.com/plugin/metform', ['target' => '_blank', 'style' => 'color: #FCB214; font-weight: bold;'])
181
- ->call();
182
-
183
-
184
-
185
- // Check if Elementor installed and activated.
186
- if (!did_action('elementor/loaded')) {
187
- $this->missing_elementor();
188
- return;
189
- }
190
- // Check for required Elementor version.
191
- if (!version_compare(ELEMENTOR_VERSION, '2.6.0', '>=')) {
192
- $this->failed_elementor_version();
193
- // add_action('admin_notices', array($this, 'failed_elementor_version'));
194
- return;
195
- }
196
-
197
- // pro available notice
198
- if (!file_exists(WP_PLUGIN_DIR . '/metform-pro/metform-pro.php')) {
199
- $this->available_metform_pro();
200
- // add_action('admin_notices', [$this, 'available_metform_pro']);
201
- }
202
-
203
- if (current_user_can('manage_options')) {
204
- add_action('admin_menu', [$this, 'admin_menu']);
205
- }
206
-
207
- add_action('elementor/editor/before_enqueue_scripts', [$this, 'edit_view_scripts']);
208
-
209
- add_action('init', array($this, 'i18n'));
210
-
211
- add_action('admin_enqueue_scripts', [$this, 'js_css_admin']);
212
- add_action('wp_enqueue_scripts', [$this, 'js_css_public']);
213
- add_action('elementor/frontend/before_enqueue_scripts', [$this, 'elementor_js']);
214
-
215
- add_action('elementor/editor/before_enqueue_styles', [$this, 'elementor_css']);
216
-
217
- add_action('admin_footer', [$this, 'footer_data']);
218
-
219
- Core\Forms\Base::instance()->init();
220
- Controls\Base::instance()->init();
221
- $this->entries = Core\Entries\Base::instance();
222
-
223
- Widgets\Manifest::instance()->init();
224
-
225
- // settings page
226
- Core\Admin\Base::instance()->init();
227
- }
228
-
229
- function js_css_public()
230
- {
231
- $is_edit_mode = 'metform-form' === get_post_type() && \Elementor\Plugin::$instance->preview->is_preview_mode();
232
-
233
- wp_enqueue_style('metform-ui', $this->public_url() . 'assets/css/metform-ui.css', false, $this->version());
234
- wp_enqueue_style('metform-style', $this->public_url() . 'assets/css/style.css', false, $this->version());
235
-
236
- wp_register_style('asRange', $this->public_url() . 'assets/css/asRange.min.css', false, $this->version());
237
- wp_register_script('asRange', $this->public_url() . 'assets/js/jquery-asRange.min.js', array(), $this->version(), true);
238
-
239
- wp_register_style('mf-select2', $this->public_url() . 'assets/css/select2.min.css', false, $this->version());
240
- wp_register_script('mf-select2', $this->public_url() . 'assets/js/select2.min.js', array(), $this->version(), true);
241
-
242
- /**
243
- * learn https://developers.google.com/recaptcha/docs/display#explicit_render
244
- * Here Recaptcha rendered with explicit_render
245
- */
246
- wp_register_script('recaptcha-v2', 'https://google.com/recaptcha/api.js?render=explicit', array(), null, true);
247
-
248
- $this->global_settings = \MetForm\Core\Admin\Base::instance()->get_settings_option();
249
-
250
- 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'] != '')) {
251
- 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);
252
- }
253
-
254
- if (isset($this->global_settings['mf_google_map_api_key']) && ($this->global_settings['mf_google_map_api_key'] != '')) {
255
- 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);
256
- }
257
-
258
- wp_deregister_style('flatpickr'); // flatpickr stylesheet
259
- wp_register_style('flatpickr', $this->public_url() . 'assets/css/flatpickr.min.css', false, $this->version()); // flatpickr stylesheet
260
-
261
- wp_enqueue_script('htm', $this->public_url() . 'assets/js/htm.js', null, $this->version(), true);
262
-
263
- wp_enqueue_script('metform-app', $this->public_url() . 'assets/js/app.js', array('htm', 'jquery', 'wp-element'), $this->version(), true);
264
- wp_localize_script('metform-app', 'mf', array(
265
- 'postType' => get_post_type(),
266
- 'restURI' => get_rest_url(null, 'metform/v1/forms/views/')
267
- ));
268
-
269
- do_action('metform/onload/enqueue_scripts');
270
- }
271
-
272
- public function edit_view_scripts()
273
- {
274
- wp_enqueue_style('metform-ui', $this->public_url() . 'assets/css/metform-ui.css', false, $this->version());
275
- wp_enqueue_style('metform-admin-style', $this->public_url() . 'assets/css/admin-style.css', false, null);
276
-
277
-
278
- wp_enqueue_script('metform-ui', $this->public_url() . 'assets/js/ui.min.js', array(), $this->version(), true);
279
- wp_enqueue_script('metform-admin-script', $this->public_url() . 'assets/js/admin-script.js', array(), null, true);
280
-
281
- wp_add_inline_script('metform-admin-script', "
282
- var metform_api = {
283
- resturl: '" . get_rest_url() . "'
284
- }
285
- ");
286
- }
287
-
288
- public function elementor_js()
289
- {
290
- }
291
-
292
- public function elementor_css()
293
- {
294
- if ('metform-form' == get_post_type()) {
295
- wp_enqueue_style('metform-category-top', $this->public_url() . 'assets/css/category-top.css', false, $this->version());
296
- }
297
- }
298
-
299
- function js_css_admin()
300
- {
301
-
302
- $screen = get_current_screen();
303
-
304
- if (in_array($screen->id, ['edit-metform-form', 'metform_page_mt-form-settings', 'metform-entry', 'metform_page_metform-menu-settings'])) {
305
- wp_enqueue_style('metform-admin-fonts', $this->public_url() . 'assets/admin-fonts.css', false, $this->version());
306
- wp_enqueue_style('metform-ui', $this->public_url() . 'assets/css/metform-ui.css', false, $this->version());
307
- wp_enqueue_style('metform-admin-style', $this->public_url() . 'assets/css/admin-style.css', false, null);
308
-
309
- wp_enqueue_script('metform-ui', $this->public_url() . 'assets/js/ui.min.js', array(), $this->version(), true);
310
- wp_enqueue_script('metform-admin-script', $this->public_url() . 'assets/js/admin-script.js', array(), null, true);
311
- wp_localize_script('metform-admin-script', 'metform_api', array('resturl' => get_rest_url(), 'admin_url' => get_admin_url()));
312
- }
313
-
314
- if ($screen->id == 'edit-metform-entry' || $screen->id == 'metform-entry') {
315
- wp_enqueue_style('metform-ui', $this->public_url() . 'assets/css/metform-ui.css', false, $this->version());
316
- wp_enqueue_script('metform-entry-script', $this->public_url() . 'assets/js/admin-entry-script.js', array(), $this->version(), true);
317
- }
318
- }
319
-
320
- public function footer_data()
321
- {
322
-
323
- $screen = get_current_screen();
324
-
325
- if ($screen->id == 'edit-metform-entry') {
326
- $args = array(
327
- 'post_type' => 'metform-form',
328
- 'post_status' => 'publish',
329
- );
330
-
331
- $forms = get_posts($args);
332
-
333
- $get_form_id = isset($_GET['form_id']) ? sanitize_key($_GET['form_id']) : '';
334
- ?>
335
- <div id='metform-formlist' style='display:none;'><select name='form_id' id='metform-form_id'>
336
- <option value='all' <?php echo esc_attr(((($get_form_id == 'all') || ($get_form_id == '')) ? 'selected=selected' : '')); ?>>All</option>
337
- <?php
338
-
339
- foreach ($forms as $form) {
340
- $form_list[$form->ID] = $form->post_title;
341
- ?>
342
- <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>
343
- <?php
344
- }
345
- echo "</select></div>";
346
- }
347
- }
348
-
349
- function admin_menu()
350
- {
351
- add_menu_page(
352
- esc_html__('MetForm'),
353
- esc_html__('MetForm'),
354
- 'read',
355
- 'metform-menu',
356
- '',
357
- 'dashicons-feedback',
358
- 5
359
- );
360
- }
361
-
362
- public function missing_elementor()
363
- {
364
- if (isset($_GET['activate'])) {
365
- unset($_GET['activate']);
366
- }
367
-
368
- if (file_exists(WP_PLUGIN_DIR . '/elementor/elementor.php')) {
369
- $btn['text'] = esc_html__('Activate Elementor', 'metform');
370
- $btn['id'] = 'unsupported-elementor-version';
371
- $btn['class'] = 'button-primary';
372
- $btn['url'] = wp_nonce_url('plugins.php?action=activate&plugin=elementor/elementor.php&plugin_status=all&paged=1', 'activate-plugin_elementor/elementor.php');
373
- } else {
374
- $btn['id'] = 'unsupported-elementor-version';
375
- $btn['class'] = 'button-primary';
376
- $btn['text'] = esc_html__('Install Elementor', 'metform');
377
- $btn['url'] = wp_nonce_url(self_admin_url('update.php?action=install-plugin&plugin=elementor'), 'install-plugin_elementor');
378
- }
379
-
380
- $message = sprintf(esc_html__('MetForm requires Elementor version %1$s+, which is currently NOT RUNNING.', 'metform'), '2.6.0');
381
-
382
- \Oxaim\Libs\Notice::instance('metform', 'unsupported-elementor-version')
383
- ->set_dismiss('global', (3600 * 24 * 15))
384
- ->set_message($message)
385
- ->set_button($btn)
386
- ->call();
387
- }
388
-
389
- public function available_metform_pro()
390
- {
391
- if (isset($_GET['activate'])) {
392
- unset($_GET['activate']);
393
- }
394
-
395
- $btn['text'] = esc_html__('MetForm Pro', 'metform');
396
- $btn['url'] = esc_url('https://products.wpmet.com/metform/');
397
- $btn['class'] = 'button-primary';
398
-
399
- $message = sprintf(esc_html__('We have MetForm Pro version. Check out our pro feature.', 'metform'), '2.6.0');
400
- \Oxaim\Libs\Notice::instance('metform', 'unsupported-metform-pro-version')
401
- ->set_dismiss('global', (3600 * 24 * 15))
402
- ->set_message($message)
403
- ->set_button($btn)
404
- ->call();
405
- }
406
-
407
-
408
- public function failed_elementor_version()
409
- {
410
-
411
- $btn['text'] = esc_html__('Update Elementor', 'metform');
412
- $btn['url'] = sprintf(esc_html__('MetForm requires Elementor version %1$s+, which is currently NOT RUNNING.', 'metform'), '2.6.0');
413
- $btn['class'] = 'button-primary';
414
-
415
- $message = sprintf(esc_html__('We have MetForm Pro version. Check out our pro feature.', 'metform'), '2.6.0');
416
- \Oxaim\Libs\Notice::instance('metform', 'unsupported-elementor-version')
417
- ->set_dismiss('global', (3600 * 24 * 15))
418
- ->set_message($message)
419
- ->set_button($btn)
420
- ->call();
421
- }
422
-
423
- public function flush_rewrites()
424
- {
425
- $form_cpt = new Core\Forms\Cpt();
426
- $form_cpt->flush_rewrites();
427
- }
428
-
429
- public static function instance()
430
- {
431
- if (!self::$instance) {
432
- self::$instance = new self();
433
- }
434
- return self::$instance;
435
- }
436
- }
1
+ <?php
2
+
3
+ namespace MetForm;
4
+
5
+
6
+ defined('ABSPATH') || exit;
7
+
8
+ final class Plugin
9
+ {
10
+
11
+ private static $instance;
12
+
13
+ private $entries;
14
+ private $global_settings;
15
+
16
+ public function __construct()
17
+ {
18
+ Autoloader::run();
19
+ }
20
+
21
+ public function version()
22
+ {
23
+ return '1.4.5';
24
+ }
25
+
26
+ public function package_type()
27
+ {
28
+ return 'free';
29
+ }
30
+
31
+ public function plugin_url()
32
+ {
33
+ return trailingslashit(plugin_dir_url(__FILE__));
34
+ }
35
+
36
+ public function plugin_dir()
37
+ {
38
+ return trailingslashit(plugin_dir_path(__FILE__));
39
+ }
40
+
41
+ public function core_url()
42
+ {
43
+ return $this->plugin_url() . 'core/';
44
+ }
45
+
46
+ public function core_dir()
47
+ {
48
+ return $this->plugin_dir() . 'core/';
49
+ }
50
+
51
+ public function base_url()
52
+ {
53
+ return $this->plugin_url() . 'base/';
54
+ }
55
+
56
+ public function base_dir()
57
+ {
58
+ return $this->plugin_dir() . 'base/';
59
+ }
60
+
61
+ public function utils_url()
62
+ {
63
+ return $this->plugin_url() . 'utils/';
64
+ }
65
+
66
+ public function utils_dir()
67
+ {
68
+ return $this->plugin_dir() . 'utils/';
69
+ }
70
+
71
+ public function widgets_url()
72
+ {
73
+ return $this->plugin_url() . 'widgets/';
74
+ }
75
+
76
+ public function widgets_dir()
77
+ {
78
+ return $this->plugin_dir() . 'widgets/';
79
+ }
80
+
81
+ public function public_url()
82
+ {
83
+ return $this->plugin_url() . 'public/';
84
+ }
85
+
86
+ public function public_dir()
87
+ {
88
+ return $this->plugin_dir() . 'public/';
89
+ }
90
+
91
+ public function i18n()
92
+ {
93
+ load_plugin_textdomain('metform', false, dirname(plugin_basename(__FILE__)) . '/languages/');
94
+ }
95
+
96
+ public function init()
97
+ {
98
+ /**
99
+ * ----------------------------------------
100
+ * Ask for rating ⭐⭐⭐⭐⭐
101
+ * A rating notice will appear depends on
102
+ * @set_first_appear_day methods
103
+ * ----------------------------------------
104
+ */
105
+ \Wpmet\Libs\Rating::instance('metform')
106
+ ->set_plugin_logo('https://ps.w.org/metform/assets/icon-128x128.png')
107
+ ->set_plugin('Metform', 'https://wpmet.com/wordpress.org/rating/metform')
108
+ ->set_allowed_screens('edit-metform-entry')
109
+ ->set_allowed_screens('edit-metform-form')
110
+ ->set_allowed_screens('metform_page_metform_get_help')
111
+ ->set_priority(30)
112
+ ->set_first_appear_day(7)
113
+ ->set_condition(true)
114
+ ->call();
115
+
116
+
117
+ $filter_string = ''; // elementskit,metform-pro
118
+ $filter_string .= ((!in_array('elementskit/elementskit.php', apply_filters('active_plugins', get_option('active_plugins')))) ? '' : ',elementskit');
119
+ $filter_string .= (!class_exists('\MetForm\Plugin') ? '' : ',metform');
120
+ $filter_string .= (!class_exists('\MetForm_Pro\Plugin') ? '' : ',metform-pro');
121
+
122
+ // banner
123
+ \Wpmet\Libs\Banner::instance('metform')
124
+ ->set_filter(ltrim($filter_string, ','))
125
+ ->set_api_url('https://api.wpmet.com/public/jhanda')
126
+ ->set_plugin_screens('edit-metform-form')
127
+ ->set_plugin_screens('edit-metform-entry')
128
+ ->set_plugin_screens('metform_page_metform-menu-settings')
129
+ ->call();
130
+
131
+
132
+
133
+ /**
134
+ * Show WPMET stories widget in dashboard
135
+ */
136
+ \Wpmet\Libs\Stories::instance('metform')
137
+
138
+ ->set_filter($filter_string)
139
+ ->set_plugin('Metform', 'https://wpmet.com/plugin/metform/')
140
+ ->set_api_url('https://api.wpmet.com/public/stories/')
141
+ ->call();
142
+
143
+ /**
144
+ * Pro awareness feature;
145
+ */
146
+
147
+ $is_pro_active = '';
148
+
149
+ if (!in_array('metform-pro/metform-pro.php', apply_filters('active_plugins', get_option('active_plugins')))) {
150
+ $is_pro_active = 'Go Premium';
151
+ }
152
+
153
+ \Wpmet\Libs\Pro_Awareness::instance('metform')
154
+ ->set_parent_menu_slug('metform-menu')
155
+ ->set_pro_link(
156
+ (in_array('metform-pro/metform-pro.php', apply_filters('active_plugins', get_option('active_plugins')))) ? '' :
157
+ 'http://go.wpmet.com/metformpro'
158
+ )
159
+ ->set_plugin_file('metform/metform.php')
160
+ ->set_default_grid_thumbnail($this->utils_url() . '/pro-awareness/assets/support.png')
161
+ ->set_page_grid([
162
+ 'url' => 'https://go.wpmet.com/facebook-group',
163
+ 'title' => 'Join the Community',
164
+ 'thumbnail' => $this->utils_url() . '/pro-awareness/assets/community.png',
165
+ ])
166
+ ->set_page_grid([
167
+ 'url' => 'https://www.youtube.com/playlist?list=PL3t2OjZ6gY8NoB_48DwWKUDRtBEuBOxSc',
168
+ 'title' => 'Video Tutorials',
169
+ 'thumbnail' => $this->utils_url() . '/pro-awareness/assets/videos.png',
170
+ ])
171
+ ->set_page_grid([
172
+ 'url' => 'https://wpmet.com/plugin/metform/roadmaps#ideas',
173
+ 'title' => 'Request a feature',
174
+ 'thumbnail' => $this->utils_url() . '/pro-awareness/assets/request.png',
175
+ ])
176
+ ->set_plugin_row_meta('Documentation', 'https://help.wpmet.com/docs-cat/metform/', ['target' => '_blank'])
177
+ ->set_plugin_row_meta('Facebook Community', 'http://go.wpmet.com/facebook-group', ['target' => '_blank'])
178
+ ->set_plugin_row_meta('Rate the plugin ★★★★★', 'https://wordpress.org/support/plugin/metform/reviews/#new-post', ['target' => '_blank'])
179
+ ->set_plugin_action_link('Settings', admin_url() . 'admin.php?page=metform-menu-settings')
180
+ ->set_plugin_action_link($is_pro_active, 'https://wpmet.com/plugin/metform', ['target' => '_blank', 'style' => 'color: #FCB214; font-weight: bold;'])
181
+ ->call();
182
+
183
+
184
+
185
+ // Check if Elementor installed and activated.
186
+ if (!did_action('elementor/loaded')) {
187
+ $this->missing_elementor();
188
+ return;
189
+ }
190
+ // Check for required Elementor version.
191
+ if (!version_compare(ELEMENTOR_VERSION, '2.6.0', '>=')) {
192
+ $this->failed_elementor_version();
193
+ // add_action('admin_notices', array($this, 'failed_elementor_version'));
194
+ return;
195
+ }
196
+
197
+ // pro available notice
198
+ if (!file_exists(WP_PLUGIN_DIR . '/metform-pro/metform-pro.php')) {
199
+ $this->available_metform_pro();
200
+ // add_action('admin_notices', [$this, 'available_metform_pro']);
201
+ }
202
+
203
+ if (current_user_can('manage_options')) {
204
+ add_action('admin_menu', [$this, 'admin_menu']);
205
+ }
206
+
207
+ add_action('elementor/editor/before_enqueue_scripts', [$this, 'edit_view_scripts']);
208
+
209
+ add_action('init', array($this, 'i18n'));
210
+
211
+ add_action('admin_enqueue_scripts', [$this, 'js_css_admin']);
212
+ add_action('wp_enqueue_scripts', [$this, 'js_css_public']);
213
+ add_action('elementor/frontend/before_enqueue_scripts', [$this, 'elementor_js']);
214
+
215
+ add_action('elementor/editor/before_enqueue_styles', [$this, 'elementor_css']);
216
+
217
+ add_action('admin_footer', [$this, 'footer_data']);
218
+
219
+ Core\Forms\Base::instance()->init();
220
+ Controls\Base::instance()->init();
221
+ $this->entries = Core\Entries\Base::instance();
222
+
223
+ Widgets\Manifest::instance()->init();
224
+
225
+ // settings page
226
+ Core\Admin\Base::instance()->init();
227
+ }
228
+
229
+ function js_css_public()
230
+ {
231
+ $is_edit_mode = 'metform-form' === get_post_type() && \Elementor\Plugin::$instance->preview->is_preview_mode();
232
+
233
+ wp_enqueue_style('metform-ui', $this->public_url() . 'assets/css/metform-ui.css', false, $this->version());
234
+ wp_enqueue_style('metform-style', $this->public_url() . 'assets/css/style.css', false, $this->version());
235
+
236
+ wp_register_style('asRange', $this->public_url() . 'assets/css/asRange.min.css', false, $this->version());
237
+ wp_register_script('asRange', $this->public_url() . 'assets/js/jquery-asRange.min.js', array(), $this->version(), true);
238
+
239
+ wp_register_style('mf-select2', $this->public_url() . 'assets/css/select2.min.css', false, $this->version());
240
+ wp_register_script('mf-select2', $this->public_url() . 'assets/js/select2.min.js', array(), $this->version(), true);
241
+
242
+ /**
243
+ * learn https://developers.google.com/recaptcha/docs/display#explicit_render
244
+ * Here Recaptcha rendered with explicit_render
245
+ */
246
+ wp_register_script('recaptcha-v2', 'https://google.com/recaptcha/api.js?render=explicit', array(), null, true);
247
+
248
+ $this->global_settings = \MetForm\Core\Admin\Base::instance()->get_settings_option();
249
+
250
+ 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'] != '')) {
251
+ 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);
252
+ }
253
+
254
+ if (isset($this->global_settings['mf_google_map_api_key']) && ($this->global_settings['mf_google_map_api_key'] != '')) {
255
+ 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);
256
+ }
257
+
258
+ wp_deregister_style('flatpickr'); // flatpickr stylesheet
259
+ wp_register_style('flatpickr', $this->public_url() . 'assets/css/flatpickr.min.css', false, $this->version()); // flatpickr stylesheet
260
+
261
+ wp_enqueue_script('htm', $this->public_url() . 'assets/js/htm.js', null, $this->version(), true);
262
+
263
+ wp_enqueue_script('metform-app', $this->public_url() . 'assets/js/app.js', array('htm', 'jquery', 'wp-element'), $this->version(), true);
264
+ wp_localize_script('metform-app', 'mf', array(
265
+ 'postType' => get_post_type(),
266
+ 'restURI' => get_rest_url(null, 'metform/v1/forms/views/')
267
+ ));
268
+
269
+ do_action('metform/onload/enqueue_scripts');
270
+ }
271
+
272
+ public function edit_view_scripts()
273
+ {
274
+ wp_enqueue_style('metform-ui', $this->public_url() . 'assets/css/metform-ui.css', false, $this->version());
275
+ wp_enqueue_style('metform-admin-style', $this->public_url() . 'assets/css/admin-style.css', false, null);
276
+
277
+
278
+ wp_enqueue_script('metform-ui', $this->public_url() . 'assets/js/ui.min.js', array(), $this->version(), true);
279
+ wp_enqueue_script('metform-admin-script', $this->public_url() . 'assets/js/admin-script.js', array(), null, true);
280
+
281
+ wp_add_inline_script('metform-admin-script', "
282
+ var metform_api = {
283
+ resturl: '" . get_rest_url() . "'
284
+ }
285
+ ");
286
+ }
287
+
288
+ public function elementor_js()
289
+ {
290
+ }
291
+
292
+ public function elementor_css()
293
+ {
294
+ if ('metform-form' == get_post_type()) {
295
+ wp_enqueue_style('metform-category-top', $this->public_url() . 'assets/css/category-top.css', false, $this->version());
296
+ }
297
+ }
298
+
299
+ function js_css_admin()
300
+ {
301
+
302
+ $screen = get_current_screen();
303
+
304
+ if (in_array($screen->id, ['edit-metform-form', 'metform_page_mt-form-settings', 'metform-entry', 'metform_page_metform-menu-settings'])) {
305
+ wp_enqueue_style('metform-admin-fonts', $this->public_url() . 'assets/admin-fonts.css', false, $this->version());
306
+ wp_enqueue_style('metform-ui', $this->public_url() . 'assets/css/metform-ui.css', false, $this->version());
307
+ wp_enqueue_style('metform-admin-style', $this->public_url() . 'assets/css/admin-style.css', false, null);
308
+
309
+ wp_enqueue_script('metform-ui', $this->public_url() . 'assets/js/ui.min.js', array(), $this->version(), true);
310
+ wp_enqueue_script('metform-admin-script', $this->public_url() . 'assets/js/admin-script.js', array(), null, true);
311
+ wp_localize_script('metform-admin-script', 'metform_api', array('resturl' => get_rest_url(), 'admin_url' => get_admin_url()));
312
+ }
313
+
314
+ if ($screen->id == 'edit-metform-entry' || $screen->id == 'metform-entry') {
315
+ wp_enqueue_style('metform-ui', $this->public_url() . 'assets/css/metform-ui.css', false, $this->version());
316
+ wp_enqueue_script('metform-entry-script', $this->public_url() . 'assets/js/admin-entry-script.js', array(), $this->version(), true);
317
+ }
318
+ }
319
+
320
+ public function footer_data()
321
+ {
322
+
323
+ $screen = get_current_screen();
324
+
325
+ if ($screen->id == 'edit-metform-entry') {
326
+ $args = array(
327
+ 'post_type' => 'metform-form',
328
+ 'post_status' => 'publish',
329
+ );
330
+
331
+ $forms = get_posts($args);
332
+
333
+ $get_form_id = isset($_GET['form_id']) ? sanitize_key($_GET['form_id']) : '';
334
+ ?>
335
+ <div id='metform-formlist' style='display:none;'><select name='form_id' id='metform-form_id'>
336
+ <option value='all' <?php echo esc_attr(((($get_form_id == 'all') || ($get_form_id == '')) ? 'selected=selected' : '')); ?>>All</option>
337
+ <?php
338
+
339
+ foreach ($forms as $form) {
340
+ $form_list[$form->ID] = $form->post_title;
341
+ ?>
342
+ <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>
343
+ <?php
344
+ }
345
+ echo "</select></div>";
346
+ }
347
+ }
348
+
349
+ function admin_menu()
350
+ {
351
+ add_menu_page(
352
+ esc_html__('MetForm', 'metform'),
353
+ esc_html__('MetForm', 'metform'),
354
+ 'read',
355
+ 'metform-menu',
356
+ '',
357
+ 'dashicons-feedback',
358
+ 5
359
+ );
360
+ }
361
+
362
+ public function missing_elementor()
363
+ {
364
+ if (isset($_GET['activate'])) {
365
+ unset($_GET['activate']);
366
+ }
367
+
368
+ if (file_exists(WP_PLUGIN_DIR . '/elementor/elementor.php')) {
369
+ $btn['text'] = esc_html__('Activate Elementor', 'metform');
370
+ $btn['id'] = 'unsupported-elementor-version';
371
+ $btn['class'] = 'button-primary';
372
+ $btn['url'] = wp_nonce_url('plugins.php?action=activate&plugin=elementor/elementor.php&plugin_status=all&paged=1', 'activate-plugin_elementor/elementor.php');
373
+ } else {
374
+ $btn['id'] = 'unsupported-elementor-version';
375
+ $btn['class'] = 'button-primary';
376
+ $btn['text'] = esc_html__('Install Elementor', 'metform');
377
+ $btn['url'] = wp_nonce_url(self_admin_url('update.php?action=install-plugin&plugin=elementor'), 'install-plugin_elementor');
378
+ }
379
+
380
+ $message = sprintf(esc_html__('MetForm requires Elementor version %1$s+, which is currently NOT RUNNING.', 'metform'), '2.6.0');
381
+
382
+ \Oxaim\Libs\Notice::instance('metform', 'unsupported-elementor-version')
383
+ ->set_dismiss('global', (3600 * 24 * 15))
384
+ ->set_message($message)
385
+ ->set_button($btn)
386
+ ->call();
387
+ }
388
+
389
+ public function available_metform_pro()
390
+ {
391
+ if (isset($_GET['activate'])) {
392
+ unset($_GET['activate']);
393
+ }
394
+
395
+ $btn['text'] = esc_html__('MetForm Pro', 'metform');
396
+ $btn['url'] = esc_url('https://products.wpmet.com/metform/');
397
+ $btn['class'] = 'button-primary';
398
+
399
+ $message = sprintf(esc_html__('We have MetForm Pro version. Check out our pro feature.', 'metform'), '2.6.0');
400
+ \Oxaim\Libs\Notice::instance('metform', 'unsupported-metform-pro-version')
401
+ ->set_dismiss('global', (3600 * 24 * 15))
402
+ ->set_message($message)
403
+ ->set_button($btn)
404
+ ->call();
405
+ }
406
+
407
+
408
+ public function failed_elementor_version()
409
+ {
410
+
411
+ $btn['text'] = esc_html__('Update Elementor', 'metform');
412
+ $btn['url'] = sprintf(esc_html__('MetForm requires Elementor version %1$s+, which is currently NOT RUNNING.', 'metform'), '2.6.0');
413
+ $btn['class'] = 'button-primary';
414
+
415
+ $message = sprintf(esc_html__('We have MetForm Pro version. Check out our pro feature.', 'metform'), '2.6.0');
416
+ \Oxaim\Libs\Notice::instance('metform', 'unsupported-elementor-version')
417
+ ->set_dismiss('global', (3600 * 24 * 15))
418
+ ->set_message($message)
419
+ ->set_button($btn)
420
+ ->call();
421
+ }
422
+
423
+ public function flush_rewrites()
424
+ {
425
+ $form_cpt = new Core\Forms\Cpt();
426
+ $form_cpt->flush_rewrites();
427
+ }
428
+
429
+ public static function instance()
430
+ {
431
+ if (!self::$instance) {
432
+ self::$instance = new self();
433
+ }
434
+ return self::$instance;
435
+ }
436
+ }
public/assets/css/admin-style.css CHANGED
@@ -1 +1 @@
1
- body.metform_page_metform-menu-settings{overflow-y:scroll}.mf-settings-dashboard{margin-top:40px}.mf-settings-dashboard .attr-row>div{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 .4s;transition:all .4s;font-weight:700;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{box-shadow:none;outline:0}.mf-settings-tab{margin-bottom:40px}.mf-settings-tab li{box-shadow:none;border:none;margin:0;background-color:#fff}.mf-settings-tab li:focus,.mf-settings-tab li:hover{outline:0;box-shadow:none;border:none}.mf-settings-tab li.nav-tab-active{background-color:#fff;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:0;float:none;display:-webkit-box;display:-ms-flexbox;display:flex;padding:16px 44px 18px 20px;color:#121116;border:none;-webkit-transition:all .1s ease-out;transition:all .1s 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:0;box-shadow:none;position:relative;padding:23px 40px;text-decoration:none;-webkit-transition:all .4s;transition:all .4s}.mf-settings-tab .mf-setting-nav-link:focus,.mf-settings-tab .mf-setting-nav-link:hover{outline:0;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:.8125rem;font-weight:700;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:.8125rem;-webkit-transition:all 150ms ease-out;transition:all 150ms ease-out}.mf-settings-section{opacity:0;visibility:hidden;-webkit-transition:opacity .4s;transition:opacity .4s;position:absolute;top:-9999px;display:none}.mf-settings-section.active{opacity:1;position:static;visibility:visible;display:block}.metform-admin-container{background-color:#fff;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:0;color:#ff433c;font-size:24px;line-height:28px;font-weight:700;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,.1);color:#ff433c;text-align:center;border-radius:5px;vertical-align:middle;font-size:18px;speak:none;font-style:normal;font-weight:400;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:0;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;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;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;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;box-sizing:border-box;font-size:14px;line-height:17px;display:inline-block;color:#555;box-shadow:none;color:#121116;border:1px solid #dee3ea;font-weight:400}.metform-admin-container .mf-setting-input:active,.metform-admin-container .mf-setting-input:focus{border-color:#ff324d;box-shadow:none;outline:0}.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;box-shadow:0 7px 15px rgba(242,41,91,.3);font-size:14px;line-height:16px;text-transform:uppercase;color:#fff;font-weight:500;border:none;padding:12px 23px;-webkit-transition:all .4s;transition:all .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: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:0;box-shadow:0 7px 15px rgba(242,41,91,.3)}.metform-admin-container .button-primary:before{border-radius:inherit;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 .7s ease-in-out;transition:opacity .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;box-shadow:none;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 .4s;transition:all .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:400;font-size:13px;line-height:15px;color:#999;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:#111}.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:#111;font-size:14px;text-transform:capitalize;font-weight:600;padding:8px 14px;border:none;margin-right:0;border:none;display:inline-block;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:#fff;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;box-shadow:none;outline:0;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;appearance:none;background:0 0}.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:700;letter-spacing:-1px}.mf-setting-dash-section-heading--title strong{color:#ff433c}.mf-setting-dash-section-heading--subtitle{color:rgba(0,0,0,.05);font-size:60px;line-height:69px;margin:0;font-weight:700;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;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:#999}.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 .4s;transition:all .4s}.mf-set-dash-free-pro-content .attr-nav-link:focus{outline:0;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:0;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,.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;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:#444}.mf-set-dash-free-pro-content .attr-tab-content ul li{color:#444;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:#fff;box-shadow:0 7px 15px rgba(0,0,0,.07);margin:10px 0;text-align:left}.mf-admin-single-accordion.active .mf-admin-single-accordion--heading:after{content:'\e995';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:'\e994';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:0}#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:.5s;animation-duration:.5s;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-timing-function:linear}@-webkit-keyframes rotate{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotate{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.loading .attr-modal-content::before{opacity:.8;position:absolute;content:"";top:0;left:0;height:100%;width:100%;background-color:#fff;-webkit-transition:opaicty .5s ease;transition:opaicty .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:700;color:#111;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 .4s;transition:all .4s}.attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs a{text-decoration:none;color:#111;font-size:14px;text-transform:capitalize;font-weight:600;padding:8px 10px;border:none;margin-right:0;border:none;-webkit-transition:all .4s;transition:all .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:0;box-shadow:none;border:none}.attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs li.attr-active a{border:none;color:#fff;background-color:#1f55f8;border-radius:4px;text-align:center}.attr-modal-dialog-centered .attr-modal-header button.attr-close{opacity:.8;font-size:inherit;outline:0;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:0;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:#111;font-size:16px;margin-bottom:7px;display:block;font-weight:500;padding:15px 0 8px}.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 .4s;transition:all .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:700;font-size:10px;padding:3px;box-sizing:border-box;padding-right:10px;-webkit-transition:all .4s;transition:all .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 .4s;transition:all .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:700;font-size:10px;padding:3px;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:0}.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:initial;-ms-flex-align:initial;align-items:initial}.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:700;box-sizing:border-box;padding:12px 20px;box-shadow:none;border:1px solid transparent;-webkit-transition:all .4s;transition:all .4s;outline:0}.attr-modal-dialog-centered .attr-modal-footer button:focus{border:none;outline:0}.attr-modal-dialog-centered .attr-modal-footer button.metform-form-save-btn-editor{background-color:#d8d8d8;color:#111}.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,.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:.9em;border:none;border-radius:0;color:#6d7882}.mf-headerfooter-status{display:inline-block;margin-left:5px;padding:2px 5px 3px;color:#fff;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%);box-shadow:0 2px 5px rgba(153,153,153,.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{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:#fff;border:1px solid #eaf2fa;color:#000}.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:#fff}.metform-entry-data table.mf-entry-data tbody tr.mf-data-value pre{margin:0;font:inherit}.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%}.mf-cf-single-field{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;position:relative;margin-bottom:1rem;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.mf-cf-single-field .mf-cf-single-field-input{width:48%}.mf-cf-single-field .mf-cf-single-field-input label{color:#111;font-size:12px;display:block;font-weight:500}.mf-cf-single-field .mf-cf-single-field-input input,.mf-cf-single-field .mf-cf-single-field-input select{margin-top:8px!important}.mf-cf-single-field .mf-btn-del-singl-field{outline:0;color:#fd397a;background-color:rgba(253,57,122,.1);text-decoration:none;font-size:12px;font-weight:700;padding:0 10px;position:absolute;right:0;top:0;line-height:19px;display:inline-block;border-radius:4px}.mf-cf-single-field .mf-btn-del-singl-field:hover{color:#fff;background-color:#fd397a}.mf-cf-single-field .mf-btn-del-singl-field:focus{color:#fff;background-color:#c9302c}.mf-add-cf{color:#716aca;background-color:rgba(113,106,202,.1);padding-bottom:10px;border:0;font-size:20px;line-height:.65em;padding:10px 10px;border:none!important;box-shadow:none;font-weight:700;cursor:pointer;border-radius:4px;outline:0}.mf-add-cf span{-webkit-transform:translateY(-2px);-ms-transform:translateY(-2px);transform:translateY(-2px);display:block}.mf-add-cf:hover{color:#fff;background-color:#716aca}.mf-add-cf:focus{color:#fff;background-color:#286090}
1
+ body.metform_page_metform-menu-settings{overflow-y:scroll}.mf-settings-dashboard{margin-top:40px}.mf-settings-dashboard .attr-row>div{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 .4s;transition:all .4s;font-weight:700;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{box-shadow:none;outline:0}.mf-settings-tab{margin-bottom:40px}.mf-settings-tab li{box-shadow:none;border:none;margin:0;background-color:#fff}.mf-settings-tab li:focus,.mf-settings-tab li:hover{outline:0;box-shadow:none;border:none}.mf-settings-tab li.nav-tab-active{background-color:#fff;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%);transform:translateY(-50%)}.mf-settings-tab .mf-setting-nav-link{outline:0;float:none;display:-webkit-box;display:-ms-flexbox;display:flex;padding:16px 44px 18px 20px;color:#121116;border:none;-webkit-transition:all .1s ease-out;transition:all .1s 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:0;box-shadow:none;position:relative;padding:23px 40px;text-decoration:none;-webkit-transition:all .4s;transition:all .4s}.mf-settings-tab .mf-setting-nav-link:focus,.mf-settings-tab .mf-setting-nav-link:hover{outline:0;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:.8125rem;font-weight:700;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:.8125rem;-webkit-transition:all 150ms ease-out;transition:all 150ms ease-out}.mf-settings-section{opacity:0;visibility:hidden;-webkit-transition:opacity .4s;transition:opacity .4s;position:absolute;top:-9999px;display:none}.mf-settings-section.active{opacity:1;position:static;visibility:visible;display:block}.metform-admin-container{background-color:#fff;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:0;color:#ff433c;font-size:24px;line-height:28px;font-weight:700;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,.1);color:#ff433c;text-align:center;border-radius:5px;vertical-align:middle;font-size:18px;speak:none;font-style:normal;font-weight:400;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:0;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;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;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;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;box-sizing:border-box;font-size:14px;line-height:17px;display:inline-block;color:#555;box-shadow:none;color:#121116;border:1px solid #dee3ea;font-weight:400}.metform-admin-container .mf-setting-input:active,.metform-admin-container .mf-setting-input:focus{border-color:#ff324d;box-shadow:none;outline:0}.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;box-shadow:0 7px 15px rgba(242,41,91,.3);font-size:14px;line-height:16px;text-transform:uppercase;color:#fff;font-weight:500;border:none;padding:12px 23px;-webkit-transition:all .4s;transition:all .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: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:0;box-shadow:0 7px 15px rgba(242,41,91,.3)}.metform-admin-container .button-primary::before{border-radius:inherit;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 .7s ease-in-out;transition:opacity .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;box-shadow:none;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 .4s;transition:all .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:400;font-size:13px;line-height:15px;color:#999;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:#111}.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:#111;font-size:14px;text-transform:capitalize;font-weight:600;padding:8px 14px;border:none;margin-right:0;border:none;display:inline-block;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:#fff;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;box-shadow:none;outline:0;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;appearance:none;background:0 0}.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%);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:700;letter-spacing:-1px}.mf-setting-dash-section-heading--title strong{color:#ff433c}.mf-setting-dash-section-heading--subtitle{color:rgba(0,0,0,.05);font-size:60px;line-height:69px;margin:0;font-weight:700;position:absolute;top:-25px;left:50%;width:100%;-webkit-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;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:#999}.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 .4s;transition:all .4s}.mf-set-dash-free-pro-content .attr-nav-link:focus{outline:0;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:0;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,.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;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:#444}.mf-set-dash-free-pro-content .attr-tab-content ul li{color:#444;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:#fff;box-shadow:0 7px 15px rgba(0,0,0,.07);margin:10px 0;text-align:left}.mf-admin-single-accordion.active .mf-admin-single-accordion--heading::after{content:"\e995";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:"\e994";font-family:metform;position:absolute;right:30px;top:50%;-webkit-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:0}#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:.5s;animation-duration:.5s;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-timing-function:linear}@-webkit-keyframes rotate{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotate{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.loading .attr-modal-content::before{opacity:.8;position:absolute;content:"";top:0;left:0;height:100%;width:100%;background-color:#fff;-webkit-transition:opaicty .5s ease;transition:opaicty .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:700;color:#111;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 .4s;transition:all .4s}.attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs a{text-decoration:none;color:#111;font-size:14px;text-transform:capitalize;font-weight:600;padding:8px 10px;border:none;margin-right:0;-webkit-transition:all .4s;transition:all .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:0;box-shadow:none;border:none}.attr-modal-dialog-centered .attr-modal-header .attr-nav-tabs li.attr-active a{border:none;color:#fff;background-color:#1f55f8;border-radius:4px;text-align:center}.attr-modal-dialog-centered .attr-modal-header button.attr-close{opacity:.8;font-size:inherit;outline:0;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:0;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:#111;font-size:16px;margin-bottom:7px;display:block;font-weight:500;padding:15px 0 8px}.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 .4s;transition:all .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:700;font-size:10px;padding:3px;box-sizing:border-box;padding-right:10px;-webkit-transition:all .4s;transition:all .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 .4s;transition:all .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:700;font-size:10px;padding:3px;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:0}.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:initial;-ms-flex-align:initial;align-items:initial}.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:700;box-sizing:border-box;padding:12px 20px;box-shadow:none;border:1px solid transparent;-webkit-transition:all .4s;transition:all .4s;outline:0}.attr-modal-dialog-centered .attr-modal-footer button:focus{border:none;outline:0}.attr-modal-dialog-centered .attr-modal-footer button.metform-form-save-btn-editor{background-color:#d8d8d8;color:#111}.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,.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:.9em;border:none;border-radius:0;color:#6d7882}.mf-headerfooter-status{display:inline-block;margin-left:5px;padding:2px 5px 3px;color:#fff;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%);transform:translate(-50%,-50%);box-shadow:0 2px 5px rgba(153,153,153,.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{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:#fff;border:1px solid #eaf2fa;color:#000}.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:#fff}.metform-entry-data table.mf-entry-data tbody tr.mf-data-value pre{margin:0;font:inherit}.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%}.mf-cf-single-field{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;position:relative;margin-bottom:1rem;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.mf-cf-single-field .mf-cf-single-field-input{width:48%}.mf-cf-single-field .mf-cf-single-field-input label{color:#111;font-size:12px;display:block;font-weight:500}.mf-cf-single-field .mf-cf-single-field-input input,.mf-cf-single-field .mf-cf-single-field-input select{margin-top:8px!important}.mf-cf-single-field .mf-btn-del-singl-field{outline:0;color:#fd397a;background-color:rgba(253,57,122,.1);text-decoration:none;font-size:12px;font-weight:700;padding:0 10px;position:absolute;right:0;top:0;line-height:19px;display:inline-block;border-radius:4px}.mf-cf-single-field .mf-btn-del-singl-field:hover{color:#fff;background-color:#fd397a}.mf-cf-single-field .mf-btn-del-singl-field:focus{color:#fff;background-color:#c9302c}.mf-add-cf{color:#716aca;background-color:rgba(113,106,202,.1);padding-bottom:10px;border:0;font-size:20px;line-height:.65em;padding:10px 10px;border:none!important;box-shadow:none;font-weight:700;cursor:pointer;border-radius:4px;outline:0}.mf-add-cf span{-webkit-transform:translateY(-2px);transform:translateY(-2px);display:block}.mf-add-cf:hover{color:#fff;background-color:#716aca}.mf-add-cf:focus{color:#fff;background-color:#286090}
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:400;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(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{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-close:before,.fa-remove: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-cog:before,.fa-gear: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-repeat:before,.fa-rotate-right: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-image:before,.fa-photo: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-exclamation-triangle:before,.fa-warning: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-cogs:before,.fa-gears: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-floppy-o:before,.fa-save:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-bars:before,.fa-navicon:before,.fa-reorder: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-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-bolt:before,.fa-flash:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-clipboard:before,.fa-paste: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-chain-broken:before,.fa-unlink: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-caret-square-o-down:before,.fa-toggle-down:before{content:"\f150"}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:"\f151"}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:"\f152"}.fa-eur:before,.fa-euro:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-inr:before,.fa-rupee:before{content:"\f156"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:"\f157"}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:"\f158"}.fa-krw:before,.fa-won: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-caret-square-o-left:before,.fa-toggle-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-try:before,.fa-turkish-lira: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-bank:before,.fa-institution:before,.fa-university:before{content:"\f19c"}.fa-graduation-cap:before,.fa-mortar-board: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-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:"\f1c5"}.fa-file-archive-o:before,.fa-file-zip-o:before{content:"\f1c6"}.fa-file-audio-o:before,.fa-file-sound-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-ring:before,.fa-life-saver:before,.fa-support:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:"\f1d0"}.fa-empire:before,.fa-ge:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-paper-plane:before,.fa-send:before{content:"\f1d8"}.fa-paper-plane-o:before,.fa-send-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-futbol-o:before,.fa-soccer-ball-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-ils:before,.fa-shekel:before,.fa-sheqel: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-bed:before,.fa-hotel:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-y-combinator:before,.fa-yc: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-full:before,.fa-battery: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-paper-o:before,.fa-hand-stop-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-television:before,.fa-tv: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-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:"\f2a3"}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-sign-language:before,.fa-signing: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-address-card:before,.fa-vcard:before{content:"\f2bb"}.fa-address-card-o:before,.fa-vcard-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-full:before,.fa-thermometer: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-bath:before,.fa-bathtub:before,.fa-s15: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:400;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(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{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-close:before,.fa-remove: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-cog:before,.fa-gear: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-repeat:before,.fa-rotate-right: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-image:before,.fa-photo: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-exclamation-triangle:before,.fa-warning: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-cogs:before,.fa-gears: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-floppy-o:before,.fa-save:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-bars:before,.fa-navicon:before,.fa-reorder: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-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-bolt:before,.fa-flash:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-clipboard:before,.fa-paste: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-chain-broken:before,.fa-unlink: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-caret-square-o-down:before,.fa-toggle-down:before{content:"\f150"}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:"\f151"}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:"\f152"}.fa-eur:before,.fa-euro:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-inr:before,.fa-rupee:before{content:"\f156"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:"\f157"}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:"\f158"}.fa-krw:before,.fa-won: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-caret-square-o-left:before,.fa-toggle-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-try:before,.fa-turkish-lira: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-bank:before,.fa-institution:before,.fa-university:before{content:"\f19c"}.fa-graduation-cap:before,.fa-mortar-board: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-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:"\f1c5"}.fa-file-archive-o:before,.fa-file-zip-o:before{content:"\f1c6"}.fa-file-audio-o:before,.fa-file-sound-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-ring:before,.fa-life-saver:before,.fa-support:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:"\f1d0"}.fa-empire:before,.fa-ge:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-paper-plane:before,.fa-send:before{content:"\f1d8"}.fa-paper-plane-o:before,.fa-send-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-futbol-o:before,.fa-soccer-ball-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-ils:before,.fa-shekel:before,.fa-sheqel: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-bed:before,.fa-hotel:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-y-combinator:before,.fa-yc: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-full:before,.fa-battery: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-paper-o:before,.fa-hand-stop-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-television:before,.fa-tv: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-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:"\f2a3"}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-sign-language:before,.fa-signing: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-address-card:before,.fa-vcard:before{content:"\f2bb"}.fa-address-card-o:before,.fa-vcard-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-full:before,.fa-thermometer: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-bath:before,.fa-bathtub:before,.fa-s15: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/metform-ui.css CHANGED
@@ -1 +1 @@
1
- .attr-carousel-inner>.attr-item>a>img,.attr-carousel-inner>.attr-item>img,.attr-img-responsive,.attr-thumbnail a>img,.attr-thumbnail>img{display:block;max-width:100%;height:auto}.attr-img-rounded{border-radius:6px}.attr-img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.attr-img-circle{border-radius:50%}.attr-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.attr-sr-only-focusable:active,.attr-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.attr-h1,.attr-h2,.attr-h3,.attr-h4,.attr-h5,.attr-h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.attr-h1 .attr-small,.attr-h1 small,.attr-h2 .attr-small,.attr-h2 small,.attr-h3 .attr-small,.attr-h3 small,.attr-h4 .attr-small,.attr-h4 small,.attr-h5 .attr-small,.attr-h5 small,.attr-h6 .attr-small,.attr-h6 small,h1 .attr-small,h2 .attr-small,h3 .attr-small,h4 .attr-small,h5 .attr-small,h6 .attr-small{font-weight:400;line-height:1;color:#777}.attr-h1,.attr-h2,.attr-h3{margin-top:20px;margin-bottom:10px}.attr-h1 .attr-small,.attr-h1 small,.attr-h2 .attr-small,.attr-h2 small,.attr-h3 .attr-small,.attr-h3 small,h1 .attr-small,h2 .attr-small,h3 .attr-small{font-size:65%}.attr-h4,.attr-h5,.attr-h6{margin-top:10px;margin-bottom:10px}.attr-h4 .attr-small,.attr-h4 small,.attr-h5 .attr-small,.attr-h5 small,.attr-h6 .attr-small,.attr-h6 small,h4 .attr-small,h5 .attr-small,h6 .attr-small{font-size:75%}.attr-h1{font-size:36px}.attr-h2{font-size:30px}.attr-h3{font-size:24px}.attr-h4{font-size:18px}.attr-h5{font-size:14px}.attr-h6{font-size:12px}.attr-lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.attr-lead{font-size:21px}}.attr-small{font-size:85%}.attr-mark{padding:.2em;background-color:#fcf8e3}.attr-text-left{text-align:left}.attr-text-right{text-align:right}.attr-text-center{text-align:center}.attr-text-justify{text-align:justify}.attr-text-nowrap{white-space:nowrap}.attr-text-lowercase{text-transform:lowercase}.attr-text-uppercase{text-transform:uppercase}.attr-text-capitalize{text-transform:capitalize}.attr-text-muted{color:#777}.attr-text-primary{color:#337ab7}a.attr-text-primary:focus,a.attr-text-primary:hover{color:#286090}.attr-text-success{color:#3c763d}a.attr-text-success:focus,a.attr-text-success:hover{color:#2b542c}.attr-text-info{color:#31708f}a.attr-text-info:focus,a.attr-text-info:hover{color:#245269}.attr-text-warning{color:#8a6d3b}a.attr-text-warning:focus,a.attr-text-warning:hover{color:#66512c}.attr-text-danger{color:#a94442}a.attr-text-danger:focus,a.attr-text-danger:hover{color:#843534}.attr-bg-primary{color:#fff;background-color:#337ab7}a.attr-bg-primary:focus,a.attr-bg-primary:hover{background-color:#286090}.attr-bg-success{background-color:#dff0d8}a.attr-bg-success:focus,a.attr-bg-success:hover{background-color:#c1e2b3}.attr-bg-info{background-color:#d9edf7}a.attr-bg-info:focus,a.attr-bg-info:hover{background-color:#afd9ee}.attr-bg-warning{background-color:#fcf8e3}a.attr-bg-warning:focus,a.attr-bg-warning:hover{background-color:#f7ecb5}.attr-bg-danger{background-color:#f2dede}a.attr-bg-danger:focus,a.attr-bg-danger:hover{background-color:#e4b9b9}.attr-page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}.attr-list-unstyled{padding-left:0;list-style:none}.attr-list-inline{padding-left:0;margin-left:-5px;list-style:none}.attr-list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}@media (min-width:768px){.attr-dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.attr-dl-horizontal dd{margin-left:180px}}.attr-initialism{font-size:90%;text-transform:uppercase}.attr-pre-scrollable{max-height:340px;overflow-y:scroll}.attr-container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.attr-container{width:750px}}@media (min-width:992px){.attr-container{width:970px}}@media (min-width:1200px){.attr-container{width:1170px}}.attr-container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.attr-row{margin-right:-15px;margin-left:-15px}.attr-col-lg-1,.attr-col-lg-10,.attr-col-lg-11,.attr-col-lg-12,.attr-col-lg-2,.attr-col-lg-3,.attr-col-lg-4,.attr-col-lg-5,.attr-col-lg-6,.attr-col-lg-7,.attr-col-lg-8,.attr-col-lg-9,.attr-col-md-1,.attr-col-md-10,.attr-col-md-11,.attr-col-md-12,.attr-col-md-2,.attr-col-md-3,.attr-col-md-4,.attr-col-md-5,.attr-col-md-6,.attr-col-md-7,.attr-col-md-8,.attr-col-md-9,.attr-col-sm-1,.attr-col-sm-10,.attr-col-sm-11,.attr-col-sm-12,.attr-col-sm-2,.attr-col-sm-3,.attr-col-sm-4,.attr-col-sm-5,.attr-col-sm-6,.attr-col-sm-7,.attr-col-sm-8,.attr-col-sm-9,.attr-col-xs-1,.attr-col-xs-10,.attr-col-xs-11,.attr-col-xs-12,.attr-col-xs-2,.attr-col-xs-3,.attr-col-xs-4,.attr-col-xs-5,.attr-col-xs-6,.attr-col-xs-7,.attr-col-xs-8,.attr-col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.attr-col-xs-1,.attr-col-xs-10,.attr-col-xs-11,.attr-col-xs-12,.attr-col-xs-2,.attr-col-xs-3,.attr-col-xs-4,.attr-col-xs-5,.attr-col-xs-6,.attr-col-xs-7,.attr-col-xs-8,.attr-col-xs-9{float:left}.attr-col-xs-12{width:100%}.attr-col-xs-11{width:91.66666667%}.attr-col-xs-10{width:83.33333333%}.attr-col-xs-9{width:75%}.attr-col-xs-8{width:66.66666667%}.attr-col-xs-7{width:58.33333333%}.attr-col-xs-6{width:50%}.attr-col-xs-5{width:41.66666667%}.attr-col-xs-4{width:33.33333333%}.attr-col-xs-3{width:25%}.attr-col-xs-2{width:16.66666667%}.attr-col-xs-1{width:8.33333333%}.attr-col-xs-pull-12{right:100%}.attr-col-xs-pull-11{right:91.66666667%}.attr-col-xs-pull-10{right:83.33333333%}.attr-col-xs-pull-9{right:75%}.attr-col-xs-pull-8{right:66.66666667%}.attr-col-xs-pull-7{right:58.33333333%}.attr-col-xs-pull-6{right:50%}.attr-col-xs-pull-5{right:41.66666667%}.attr-col-xs-pull-4{right:33.33333333%}.attr-col-xs-pull-3{right:25%}.attr-col-xs-pull-2{right:16.66666667%}.attr-col-xs-pull-1{right:8.33333333%}.attr-col-xs-pull-0{right:auto}.attr-col-xs-push-12{left:100%}.attr-col-xs-push-11{left:91.66666667%}.attr-col-xs-push-10{left:83.33333333%}.attr-col-xs-push-9{left:75%}.attr-col-xs-push-8{left:66.66666667%}.attr-col-xs-push-7{left:58.33333333%}.attr-col-xs-push-6{left:50%}.attr-col-xs-push-5{left:41.66666667%}.attr-col-xs-push-4{left:33.33333333%}.attr-col-xs-push-3{left:25%}.attr-col-xs-push-2{left:16.66666667%}.attr-col-xs-push-1{left:8.33333333%}.attr-col-xs-push-0{left:auto}.attr-col-xs-offset-12{margin-left:100%}.attr-col-xs-offset-11{margin-left:91.66666667%}.attr-col-xs-offset-10{margin-left:83.33333333%}.attr-col-xs-offset-9{margin-left:75%}.attr-col-xs-offset-8{margin-left:66.66666667%}.attr-col-xs-offset-7{margin-left:58.33333333%}.attr-col-xs-offset-6{margin-left:50%}.attr-col-xs-offset-5{margin-left:41.66666667%}.attr-col-xs-offset-4{margin-left:33.33333333%}.attr-col-xs-offset-3{margin-left:25%}.attr-col-xs-offset-2{margin-left:16.66666667%}.attr-col-xs-offset-1{margin-left:8.33333333%}.attr-col-xs-offset-0{margin-left:0}@media (min-width:768px){.attr-col-sm-1,.attr-col-sm-10,.attr-col-sm-11,.attr-col-sm-12,.attr-col-sm-2,.attr-col-sm-3,.attr-col-sm-4,.attr-col-sm-5,.attr-col-sm-6,.attr-col-sm-7,.attr-col-sm-8,.attr-col-sm-9{float:left}.attr-col-sm-12{width:100%}.attr-col-sm-11{width:91.66666667%}.attr-col-sm-10{width:83.33333333%}.attr-col-sm-9{width:75%}.attr-col-sm-8{width:66.66666667%}.attr-col-sm-7{width:58.33333333%}.attr-col-sm-6{width:50%}.attr-col-sm-5{width:41.66666667%}.attr-col-sm-4{width:33.33333333%}.attr-col-sm-3{width:25%}.attr-col-sm-2{width:16.66666667%}.attr-col-sm-1{width:8.33333333%}.attr-col-sm-pull-12{right:100%}.attr-col-sm-pull-11{right:91.66666667%}.attr-col-sm-pull-10{right:83.33333333%}.attr-col-sm-pull-9{right:75%}.attr-col-sm-pull-8{right:66.66666667%}.attr-col-sm-pull-7{right:58.33333333%}.attr-col-sm-pull-6{right:50%}.attr-col-sm-pull-5{right:41.66666667%}.attr-col-sm-pull-4{right:33.33333333%}.attr-col-sm-pull-3{right:25%}.attr-col-sm-pull-2{right:16.66666667%}.attr-col-sm-pull-1{right:8.33333333%}.attr-col-sm-pull-0{right:auto}.attr-col-sm-push-12{left:100%}.attr-col-sm-push-11{left:91.66666667%}.attr-col-sm-push-10{left:83.33333333%}.attr-col-sm-push-9{left:75%}.attr-col-sm-push-8{left:66.66666667%}.attr-col-sm-push-7{left:58.33333333%}.attr-col-sm-push-6{left:50%}.attr-col-sm-push-5{left:41.66666667%}.attr-col-sm-push-4{left:33.33333333%}.attr-col-sm-push-3{left:25%}.attr-col-sm-push-2{left:16.66666667%}.attr-col-sm-push-1{left:8.33333333%}.attr-col-sm-push-0{left:auto}.attr-col-sm-offset-12{margin-left:100%}.attr-col-sm-offset-11{margin-left:91.66666667%}.attr-col-sm-offset-10{margin-left:83.33333333%}.attr-col-sm-offset-9{margin-left:75%}.attr-col-sm-offset-8{margin-left:66.66666667%}.attr-col-sm-offset-7{margin-left:58.33333333%}.attr-col-sm-offset-6{margin-left:50%}.attr-col-sm-offset-5{margin-left:41.66666667%}.attr-col-sm-offset-4{margin-left:33.33333333%}.attr-col-sm-offset-3{margin-left:25%}.attr-col-sm-offset-2{margin-left:16.66666667%}.attr-col-sm-offset-1{margin-left:8.33333333%}.attr-col-sm-offset-0{margin-left:0}}@media (min-width:992px){.attr-col-md-1,.attr-col-md-10,.attr-col-md-11,.attr-col-md-12,.attr-col-md-2,.attr-col-md-3,.attr-col-md-4,.attr-col-md-5,.attr-col-md-6,.attr-col-md-7,.attr-col-md-8,.attr-col-md-9{float:left}.attr-col-md-12{width:100%}.attr-col-md-11{width:91.66666667%}.attr-col-md-10{width:83.33333333%}.attr-col-md-9{width:75%}.attr-col-md-8{width:66.66666667%}.attr-col-md-7{width:58.33333333%}.attr-col-md-6{width:50%}.attr-col-md-5{width:41.66666667%}.attr-col-md-4{width:33.33333333%}.attr-col-md-3{width:25%}.attr-col-md-2{width:16.66666667%}.attr-col-md-1{width:8.33333333%}.attr-col-md-pull-12{right:100%}.attr-col-md-pull-11{right:91.66666667%}.attr-col-md-pull-10{right:83.33333333%}.attr-col-md-pull-9{right:75%}.attr-col-md-pull-8{right:66.66666667%}.attr-col-md-pull-7{right:58.33333333%}.attr-col-md-pull-6{right:50%}.attr-col-md-pull-5{right:41.66666667%}.attr-col-md-pull-4{right:33.33333333%}.attr-col-md-pull-3{right:25%}.attr-col-md-pull-2{right:16.66666667%}.attr-col-md-pull-1{right:8.33333333%}.attr-col-md-pull-0{right:auto}.attr-col-md-push-12{left:100%}.attr-col-md-push-11{left:91.66666667%}.attr-col-md-push-10{left:83.33333333%}.attr-col-md-push-9{left:75%}.attr-col-md-push-8{left:66.66666667%}.attr-col-md-push-7{left:58.33333333%}.attr-col-md-push-6{left:50%}.attr-col-md-push-5{left:41.66666667%}.attr-col-md-push-4{left:33.33333333%}.attr-col-md-push-3{left:25%}.attr-col-md-push-2{left:16.66666667%}.attr-col-md-push-1{left:8.33333333%}.attr-col-md-push-0{left:auto}.attr-col-md-offset-12{margin-left:100%}.attr-col-md-offset-11{margin-left:91.66666667%}.attr-col-md-offset-10{margin-left:83.33333333%}.attr-col-md-offset-9{margin-left:75%}.attr-col-md-offset-8{margin-left:66.66666667%}.attr-col-md-offset-7{margin-left:58.33333333%}.attr-col-md-offset-6{margin-left:50%}.attr-col-md-offset-5{margin-left:41.66666667%}.attr-col-md-offset-4{margin-left:33.33333333%}.attr-col-md-offset-3{margin-left:25%}.attr-col-md-offset-2{margin-left:16.66666667%}.attr-col-md-offset-1{margin-left:8.33333333%}.attr-col-md-offset-0{margin-left:0}}@media (min-width:1200px){.attr-col-lg-1,.attr-col-lg-10,.attr-col-lg-11,.attr-col-lg-12,.attr-col-lg-2,.attr-col-lg-3,.attr-col-lg-4,.attr-col-lg-5,.attr-col-lg-6,.attr-col-lg-7,.attr-col-lg-8,.attr-col-lg-9{float:left}.attr-col-lg-12{width:100%}.attr-col-lg-11{width:91.66666667%}.attr-col-lg-10{width:83.33333333%}.attr-col-lg-9{width:75%}.attr-col-lg-8{width:66.66666667%}.attr-col-lg-7{width:58.33333333%}.attr-col-lg-6{width:50%}.attr-col-lg-5{width:41.66666667%}.attr-col-lg-4{width:33.33333333%}.attr-col-lg-3{width:25%}.attr-col-lg-2{width:16.66666667%}.attr-col-lg-1{width:8.33333333%}.attr-col-lg-pull-12{right:100%}.attr-col-lg-pull-11{right:91.66666667%}.attr-col-lg-pull-10{right:83.33333333%}.attr-col-lg-pull-9{right:75%}.attr-col-lg-pull-8{right:66.66666667%}.attr-col-lg-pull-7{right:58.33333333%}.attr-col-lg-pull-6{right:50%}.attr-col-lg-pull-5{right:41.66666667%}.attr-col-lg-pull-4{right:33.33333333%}.attr-col-lg-pull-3{right:25%}.attr-col-lg-pull-2{right:16.66666667%}.attr-col-lg-pull-1{right:8.33333333%}.attr-col-lg-pull-0{right:auto}.attr-col-lg-push-12{left:100%}.attr-col-lg-push-11{left:91.66666667%}.attr-col-lg-push-10{left:83.33333333%}.attr-col-lg-push-9{left:75%}.attr-col-lg-push-8{left:66.66666667%}.attr-col-lg-push-7{left:58.33333333%}.attr-col-lg-push-6{left:50%}.attr-col-lg-push-5{left:41.66666667%}.attr-col-lg-push-4{left:33.33333333%}.attr-col-lg-push-3{left:25%}.attr-col-lg-push-2{left:16.66666667%}.attr-col-lg-push-1{left:8.33333333%}.attr-col-lg-push-0{left:auto}.attr-col-lg-offset-12{margin-left:100%}.attr-col-lg-offset-11{margin-left:91.66666667%}.attr-col-lg-offset-10{margin-left:83.33333333%}.attr-col-lg-offset-9{margin-left:75%}.attr-col-lg-offset-8{margin-left:66.66666667%}.attr-col-lg-offset-7{margin-left:58.33333333%}.attr-col-lg-offset-6{margin-left:50%}.attr-col-lg-offset-5{margin-left:41.66666667%}.attr-col-lg-offset-4{margin-left:33.33333333%}.attr-col-lg-offset-3{margin-left:25%}.attr-col-lg-offset-2{margin-left:16.66666667%}.attr-col-lg-offset-1{margin-left:8.33333333%}.attr-col-lg-offset-0{margin-left:0}}.attr-table{width:100%;max-width:100%;margin-bottom:20px}.attr-table>tbody>tr>td,.attr-table>tbody>tr>th,.attr-table>tfoot>tr>td,.attr-table>tfoot>tr>th,.attr-table>thead>tr>td,.attr-table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.attr-table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.attr-table>caption+thead>tr:first-child>td,.attr-table>caption+thead>tr:first-child>th,.attr-table>colgroup+thead>tr:first-child>td,.attr-table>colgroup+thead>tr:first-child>th,.attr-table>thead:first-child>tr:first-child>td,.attr-table>thead:first-child>tr:first-child>th{border-top:0}.attr-table>tbody+tbody{border-top:2px solid #ddd}.attr-table .attr-table{background-color:#fff}.attr-table-condensed>tbody>tr>td,.attr-table-condensed>tbody>tr>th,.attr-table-condensed>tfoot>tr>td,.attr-table-condensed>tfoot>tr>th,.attr-table-condensed>thead>tr>td,.attr-table-condensed>thead>tr>th{padding:5px}.attr-table-bordered{border:1px solid #ddd}.attr-table-bordered>tbody>tr>td,.attr-table-bordered>tbody>tr>th,.attr-table-bordered>tfoot>tr>td,.attr-table-bordered>tfoot>tr>th,.attr-table-bordered>thead>tr>td,.attr-table-bordered>thead>tr>th{border:1px solid #ddd}.attr-table-bordered>thead>tr>td,.attr-table-bordered>thead>tr>th{border-bottom-width:2px}.attr-table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.attr-table-hover>tbody>tr:hover{background-color:#f5f5f5}.attr-table>tbody>tr.attr-active>td,.attr-table>tbody>tr.attr-active>th,.attr-table>tbody>tr>td.attr-active,.attr-table>tbody>tr>th.attr-active,.attr-table>tfoot>tr.attr-active>td,.attr-table>tfoot>tr.attr-active>th,.attr-table>tfoot>tr>td.attr-active,.attr-table>tfoot>tr>th.attr-active,.attr-table>thead>tr.attr-active>td,.attr-table>thead>tr.attr-active>th,.attr-table>thead>tr>td.attr-active,.attr-table>thead>tr>th.attr-active{background-color:#f5f5f5}.attr-table-hover>tbody>tr.attr-active:hover>td,.attr-table-hover>tbody>tr.attr-active:hover>th,.attr-table-hover>tbody>tr:hover>.attr-active,.attr-table-hover>tbody>tr>td.attr-active:hover,.attr-table-hover>tbody>tr>th.attr-active:hover{background-color:#e8e8e8}.attr-table>tbody>tr.attr-success>td,.attr-table>tbody>tr.attr-success>th,.attr-table>tbody>tr>td.attr-success,.attr-table>tbody>tr>th.attr-success,.attr-table>tfoot>tr.attr-success>td,.attr-table>tfoot>tr.attr-success>th,.attr-table>tfoot>tr>td.attr-success,.attr-table>tfoot>tr>th.attr-success,.attr-table>thead>tr.attr-success>td,.attr-table>thead>tr.attr-success>th,.attr-table>thead>tr>td.attr-success,.attr-table>thead>tr>th.attr-success{background-color:#dff0d8}.attr-table-hover>tbody>tr.attr-success:hover>td,.attr-table-hover>tbody>tr.attr-success:hover>th,.attr-table-hover>tbody>tr:hover>.attr-success,.attr-table-hover>tbody>tr>td.attr-success:hover,.attr-table-hover>tbody>tr>th.attr-success:hover{background-color:#d0e9c6}.attr-table>tbody>tr.attr-info>td,.attr-table>tbody>tr.attr-info>th,.attr-table>tbody>tr>td.attr-info,.attr-table>tbody>tr>th.attr-info,.attr-table>tfoot>tr.attr-info>td,.attr-table>tfoot>tr.attr-info>th,.attr-table>tfoot>tr>td.attr-info,.attr-table>tfoot>tr>th.attr-info,.attr-table>thead>tr.attr-info>td,.attr-table>thead>tr.attr-info>th,.attr-table>thead>tr>td.attr-info,.attr-table>thead>tr>th.attr-info{background-color:#d9edf7}.attr-table-hover>tbody>tr.attr-info:hover>td,.attr-table-hover>tbody>tr.attr-info:hover>th,.attr-table-hover>tbody>tr:hover>.attr-info,.attr-table-hover>tbody>tr>td.attr-info:hover,.attr-table-hover>tbody>tr>th.attr-info:hover{background-color:#c4e3f3}.attr-table>tbody>tr.attr-warning>td,.attr-table>tbody>tr.attr-warning>th,.attr-table>tbody>tr>td.attr-warning,.attr-table>tbody>tr>th.attr-warning,.attr-table>tfoot>tr.attr-warning>td,.attr-table>tfoot>tr.attr-warning>th,.attr-table>tfoot>tr>td.attr-warning,.attr-table>tfoot>tr>th.attr-warning,.attr-table>thead>tr.attr-warning>td,.attr-table>thead>tr.attr-warning>th,.attr-table>thead>tr>td.attr-warning,.attr-table>thead>tr>th.attr-warning{background-color:#fcf8e3}.attr-table-hover>tbody>tr.attr-warning:hover>td,.attr-table-hover>tbody>tr.attr-warning:hover>th,.attr-table-hover>tbody>tr:hover>.attr-warning,.attr-table-hover>tbody>tr>td.attr-warning:hover,.attr-table-hover>tbody>tr>th.attr-warning:hover{background-color:#faf2cc}.attr-table>tbody>tr.attr-danger>td,.attr-table>tbody>tr.attr-danger>th,.attr-table>tbody>tr>td.attr-danger,.attr-table>tbody>tr>th.attr-danger,.attr-table>tfoot>tr.attr-danger>td,.attr-table>tfoot>tr.attr-danger>th,.attr-table>tfoot>tr>td.attr-danger,.attr-table>tfoot>tr>th.attr-danger,.attr-table>thead>tr.attr-danger>td,.attr-table>thead>tr.attr-danger>th,.attr-table>thead>tr>td.attr-danger,.attr-table>thead>tr>th.attr-danger{background-color:#f2dede}.attr-table-hover>tbody>tr.attr-danger:hover>td,.attr-table-hover>tbody>tr.attr-danger:hover>th,.attr-table-hover>tbody>tr:hover>.attr-danger,.attr-table-hover>tbody>tr>td.attr-danger:hover,.attr-table-hover>tbody>tr>th.attr-danger:hover{background-color:#ebcccc}.attr-table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.attr-table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.attr-table-responsive>.attr-table{margin-bottom:0}.attr-table-responsive>.attr-table>tbody>tr>td,.attr-table-responsive>.attr-table>tbody>tr>th,.attr-table-responsive>.attr-table>tfoot>tr>td,.attr-table-responsive>.attr-table>tfoot>tr>th,.attr-table-responsive>.attr-table>thead>tr>td,.attr-table-responsive>.attr-table>thead>tr>th{white-space:nowrap}.attr-table-responsive>.attr-table-bordered{border:0}.attr-table-responsive>.attr-table-bordered>tbody>tr>td:first-child,.attr-table-responsive>.attr-table-bordered>tbody>tr>th:first-child,.attr-table-responsive>.attr-table-bordered>tfoot>tr>td:first-child,.attr-table-responsive>.attr-table-bordered>tfoot>tr>th:first-child,.attr-table-responsive>.attr-table-bordered>thead>tr>td:first-child,.attr-table-responsive>.attr-table-bordered>thead>tr>th:first-child{border-left:0}.attr-table-responsive>.attr-table-bordered>tbody>tr>td:last-child,.attr-table-responsive>.attr-table-bordered>tbody>tr>th:last-child,.attr-table-responsive>.attr-table-bordered>tfoot>tr>td:last-child,.attr-table-responsive>.attr-table-bordered>tfoot>tr>th:last-child,.attr-table-responsive>.attr-table-bordered>thead>tr>td:last-child,.attr-table-responsive>.attr-table-bordered>thead>tr>th:last-child{border-right:0}.attr-table-responsive>.attr-table-bordered>tbody>tr:last-child>td,.attr-table-responsive>.attr-table-bordered>tbody>tr:last-child>th,.attr-table-responsive>.attr-table-bordered>tfoot>tr:last-child>td,.attr-table-responsive>.attr-table-bordered>tfoot>tr:last-child>th{border-bottom:0}}.attr-form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s}.attr-form-control:focus{border-color:#66afe9;outline:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.attr-form-control::-moz-placeholder{color:#999;opacity:1}.attr-form-control:-ms-input-placeholder{color:#999}.attr-form-control::-webkit-input-placeholder{color:#999}.attr-form-control::-ms-expand{background-color:transparent;border:0}.attr-form-control[disabled],.attr-form-control[readonly],fieldset[disabled] .attr-form-control{background-color:#eee;opacity:1}.attr-form-control[disabled],fieldset[disabled] .attr-form-control{cursor:not-allowed}textarea.attr-form-control{height:auto}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].attr-form-control,input[type=datetime-local].attr-form-control,input[type=month].attr-form-control,input[type=time].attr-form-control{line-height:34px}.attr-input-group-sm input[type=date],.attr-input-group-sm input[type=datetime-local],.attr-input-group-sm input[type=month],.attr-input-group-sm input[type=time],input[type=date].attr-input-sm,input[type=datetime-local].attr-input-sm,input[type=month].attr-input-sm,input[type=time].attr-input-sm{line-height:30px}.attr-input-group-lg input[type=date],.attr-input-group-lg input[type=datetime-local],.attr-input-group-lg input[type=month],.attr-input-group-lg input[type=time],input[type=date].attr-input-lg,input[type=datetime-local].attr-input-lg,input[type=month].attr-input-lg,input[type=time].attr-input-lg{line-height:46px}}.attr-form-group{margin-bottom:15px}.attr-checkbox,.attr-radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.attr-checkbox label,.attr-radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.attr-checkbox input[type=checkbox],.attr-checkbox-inline input[type=checkbox],.attr-radio input[type=radio],.attr-radio-inline input[type=radio]{position:absolute;margin-left:-20px}.attr-checkbox+.attr-checkbox,.attr-radio+.attr-radio{margin-top:-5px}.attr-checkbox-inline,.attr-radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.attr-checkbox-inline+.attr-checkbox-inline,.attr-radio-inline+.attr-radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].attr-disabled,input[type=checkbox][disabled],input[type=radio].attr-disabled,input[type=radio][disabled]{cursor:not-allowed}.attr-checkbox-inline.attr-disabled,.attr-radio-inline.attr-disabled,fieldset[disabled] .attr-checkbox-inline,fieldset[disabled] .attr-radio-inline{cursor:not-allowed}.attr-checkbox.attr-disabled label,.attr-radio.attr-disabled label,fieldset[disabled] .attr-checkbox label,fieldset[disabled] .attr-radio label{cursor:not-allowed}.attr-form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.attr-form-control-static.attr-input-lg,.attr-form-control-static.attr-input-sm{padding-right:0;padding-left:0}.attr-input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.attr-input-sm{height:30px;line-height:30px}select[multiple].attr-input-sm,textarea.attr-input-sm{height:auto}.attr-form-group-sm .attr-form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.attr-form-group-sm select.attr-form-control{height:30px;line-height:30px}.attr-form-group-sm select[multiple].attr-form-control,.attr-form-group-sm textarea.attr-form-control{height:auto}.attr-form-group-sm .attr-form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.attr-input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.attr-input-lg{height:46px;line-height:46px}select[multiple].attr-input-lg,textarea.attr-input-lg{height:auto}.attr-form-group-lg .attr-form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.attr-form-group-lg select.attr-form-control{height:46px;line-height:46px}.attr-form-group-lg select[multiple].attr-form-control,.attr-form-group-lg textarea.attr-form-control{height:auto}.attr-form-group-lg .attr-form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.attr-has-feedback{position:relative}.attr-has-feedback .attr-form-control{padding-right:42.5px}.attr-form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.attr-form-group-lg .attr-form-control+.attr-form-control-feedback,.attr-input-group-lg+.attr-form-control-feedback,.attr-input-lg+.attr-form-control-feedback{width:46px;height:46px;line-height:46px}.attr-form-group-sm .attr-form-control+.attr-form-control-feedback,.attr-input-group-sm+.attr-form-control-feedback,.attr-input-sm+.attr-form-control-feedback{width:30px;height:30px;line-height:30px}.attr-has-success .attr-checkbox,.attr-has-success .attr-checkbox-inline,.attr-has-success .attr-control-label,.attr-has-success .attr-help-block,.attr-has-success .attr-radio,.attr-has-success .attr-radio-inline,.attr-has-success.attr-checkbox label,.attr-has-success.attr-checkbox-inline label,.attr-has-success.attr-radio label,.attr-has-success.attr-radio-inline label{color:#3c763d}.attr-has-success .attr-form-control{border-color:#3c763d;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.attr-has-success .attr-form-control:focus{border-color:#2b542c;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.attr-has-success .attr-input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.attr-has-success .attr-form-control-feedback{color:#3c763d}.attr-has-warning .attr-checkbox,.attr-has-warning .attr-checkbox-inline,.attr-has-warning .attr-control-label,.attr-has-warning .attr-help-block,.attr-has-warning .attr-radio,.attr-has-warning .attr-radio-inline,.attr-has-warning.attr-checkbox label,.attr-has-warning.attr-checkbox-inline label,.attr-has-warning.attr-radio label,.attr-has-warning.attr-radio-inline label{color:#8a6d3b}.attr-has-warning .attr-form-control{border-color:#8a6d3b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.attr-has-warning .attr-form-control:focus{border-color:#66512c;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.attr-has-warning .attr-input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.attr-has-warning .attr-form-control-feedback{color:#8a6d3b}.attr-has-error .attr-checkbox,.attr-has-error .attr-checkbox-inline,.attr-has-error .attr-control-label,.attr-has-error .attr-help-block,.attr-has-error .attr-radio,.attr-has-error .attr-radio-inline,.attr-has-error.attr-checkbox label,.attr-has-error.attr-checkbox-inline label,.attr-has-error.attr-radio label,.attr-has-error.attr-radio-inline label{color:#a94442}.attr-has-error .attr-form-control{border-color:#a94442;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.attr-has-error .attr-form-control:focus{border-color:#843534;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.attr-has-error .attr-input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.attr-has-error .attr-form-control-feedback{color:#a94442}.attr-has-feedback label~.attr-form-control-feedback{top:25px}.attr-has-feedback label.attr-sr-only~.attr-form-control-feedback{top:0}.attr-help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.attr-form-inline .attr-form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.attr-form-inline .attr-form-control{display:inline-block;width:auto;vertical-align:middle}.attr-form-inline .attr-form-control-static{display:inline-block}.attr-form-inline .attr-input-group{display:inline-table;vertical-align:middle}.attr-form-inline .attr-input-group .attr-form-control,.attr-form-inline .attr-input-group .attr-input-group-addon,.attr-form-inline .attr-input-group .attr-input-group-btn{width:auto}.attr-form-inline .attr-input-group>.attr-form-control{width:100%}.attr-form-inline .attr-control-label{margin-bottom:0;vertical-align:middle}.attr-form-inline .attr-checkbox,.attr-form-inline .attr-radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.attr-form-inline .attr-checkbox label,.attr-form-inline .attr-radio label{padding-left:0}.attr-form-inline .attr-checkbox input[type=checkbox],.attr-form-inline .attr-radio input[type=radio]{position:relative;margin-left:0}.attr-form-inline .attr-has-feedback .attr-form-control-feedback{top:0}}.attr-form-horizontal .attr-checkbox,.attr-form-horizontal .attr-checkbox-inline,.attr-form-horizontal .attr-radio,.attr-form-horizontal .attr-radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.attr-form-horizontal .attr-checkbox,.attr-form-horizontal .attr-radio{min-height:27px}.attr-form-horizontal .attr-form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.attr-form-horizontal .attr-control-label{padding-top:7px;margin-bottom:0;text-align:right}}.attr-form-horizontal .attr-has-feedback .attr-form-control-feedback{right:15px}@media (min-width:768px){.attr-form-horizontal .attr-form-group-lg .attr-control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.attr-form-horizontal .attr-form-group-sm .attr-control-label{padding-top:6px;font-size:12px}}.attr-btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.attr-btn.attr-active.attr-focus,.attr-btn.attr-active:focus,.attr-btn.attr-focus,.attr-btn:active.attr-focus,.attr-btn:active:focus,.attr-btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.attr-btn.attr-focus,.attr-btn:focus,.attr-btn:hover{color:#333;text-decoration:none}.attr-btn.attr-active,.attr-btn:active{background-image:none;outline:0;box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.attr-btn.attr-disabled,.attr-btn[disabled],fieldset[disabled] .attr-btn{cursor:not-allowed;box-shadow:none;opacity:.65}a.attr-btn.attr-disabled,fieldset[disabled] a.attr-btn{pointer-events:none}.attr-btn-default{color:#333;background-color:#fff;border-color:#ccc}.attr-btn-default.attr-focus,.attr-btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.attr-btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.attr-btn-default.attr-active,.attr-btn-default:active,.attr-open>.attr-dropdown-toggle.attr-btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.attr-btn-default.attr-active.attr-focus,.attr-btn-default.attr-active:focus,.attr-btn-default.attr-active:hover,.attr-btn-default:active.attr-focus,.attr-btn-default:active:focus,.attr-btn-default:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-default.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-default:focus,.attr-open>.attr-dropdown-toggle.attr-btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.attr-btn-default.attr-active,.attr-btn-default:active,.attr-open>.attr-dropdown-toggle.attr-btn-default{background-image:none}.attr-btn-default.attr-disabled.attr-focus,.attr-btn-default.attr-disabled:focus,.attr-btn-default.attr-disabled:hover,.attr-btn-default[disabled].attr-focus,.attr-btn-default[disabled]:focus,.attr-btn-default[disabled]:hover,fieldset[disabled] .attr-btn-default.attr-focus,fieldset[disabled] .attr-btn-default:focus,fieldset[disabled] .attr-btn-default:hover{background-color:#fff;border-color:#ccc}.attr-btn-default .attr-badge{color:#fff;background-color:#333}.attr-btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.attr-btn-primary.attr-focus,.attr-btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.attr-btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.attr-btn-primary.attr-active,.attr-btn-primary:active,.attr-open>.attr-dropdown-toggle.attr-btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.attr-btn-primary.attr-active.attr-focus,.attr-btn-primary.attr-active:focus,.attr-btn-primary.attr-active:hover,.attr-btn-primary:active.attr-focus,.attr-btn-primary:active:focus,.attr-btn-primary:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-primary.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-primary:focus,.attr-open>.attr-dropdown-toggle.attr-btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.attr-btn-primary.attr-active,.attr-btn-primary:active,.attr-open>.attr-dropdown-toggle.attr-btn-primary{background-image:none}.attr-btn-primary.attr-disabled.attr-focus,.attr-btn-primary.attr-disabled:focus,.attr-btn-primary.attr-disabled:hover,.attr-btn-primary[disabled].attr-focus,.attr-btn-primary[disabled]:focus,.attr-btn-primary[disabled]:hover,fieldset[disabled] .attr-btn-primary.attr-focus,fieldset[disabled] .attr-btn-primary:focus,fieldset[disabled] .attr-btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.attr-btn-primary .attr-badge{color:#337ab7;background-color:#fff}.attr-btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.attr-btn-success.attr-focus,.attr-btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.attr-btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.attr-btn-success.attr-active,.attr-btn-success:active,.attr-open>.attr-dropdown-toggle.attr-btn-success{color:#fff;background-color:#449d44;border-color:#398439}.attr-btn-success.attr-active.attr-focus,.attr-btn-success.attr-active:focus,.attr-btn-success.attr-active:hover,.attr-btn-success:active.attr-focus,.attr-btn-success:active:focus,.attr-btn-success:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-success.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-success:focus,.attr-open>.attr-dropdown-toggle.attr-btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.attr-btn-success.attr-active,.attr-btn-success:active,.attr-open>.attr-dropdown-toggle.attr-btn-success{background-image:none}.attr-btn-success.attr-disabled.attr-focus,.attr-btn-success.attr-disabled:focus,.attr-btn-success.attr-disabled:hover,.attr-btn-success[disabled].attr-focus,.attr-btn-success[disabled]:focus,.attr-btn-success[disabled]:hover,fieldset[disabled] .attr-btn-success.attr-focus,fieldset[disabled] .attr-btn-success:focus,fieldset[disabled] .attr-btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.attr-btn-success .attr-badge{color:#5cb85c;background-color:#fff}.attr-btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.attr-btn-info.attr-focus,.attr-btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.attr-btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.attr-btn-info.attr-active,.attr-btn-info:active,.attr-open>.attr-dropdown-toggle.attr-btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.attr-btn-info.attr-active.attr-focus,.attr-btn-info.attr-active:focus,.attr-btn-info.attr-active:hover,.attr-btn-info:active.attr-focus,.attr-btn-info:active:focus,.attr-btn-info:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-info.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-info:focus,.attr-open>.attr-dropdown-toggle.attr-btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.attr-btn-info.attr-active,.attr-btn-info:active,.attr-open>.attr-dropdown-toggle.attr-btn-info{background-image:none}.attr-btn-info.attr-disabled.attr-focus,.attr-btn-info.attr-disabled:focus,.attr-btn-info.attr-disabled:hover,.attr-btn-info[disabled].attr-focus,.attr-btn-info[disabled]:focus,.attr-btn-info[disabled]:hover,fieldset[disabled] .attr-btn-info.attr-focus,fieldset[disabled] .attr-btn-info:focus,fieldset[disabled] .attr-btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.attr-btn-info .attr-badge{color:#5bc0de;background-color:#fff}.attr-btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.attr-btn-warning.attr-focus,.attr-btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.attr-btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.attr-btn-warning.attr-active,.attr-btn-warning:active,.attr-open>.attr-dropdown-toggle.attr-btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.attr-btn-warning.attr-active.attr-focus,.attr-btn-warning.attr-active:focus,.attr-btn-warning.attr-active:hover,.attr-btn-warning:active.attr-focus,.attr-btn-warning:active:focus,.attr-btn-warning:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-warning.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-warning:focus,.attr-open>.attr-dropdown-toggle.attr-btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.attr-btn-warning.attr-active,.attr-btn-warning:active,.attr-open>.attr-dropdown-toggle.attr-btn-warning{background-image:none}.attr-btn-warning.attr-disabled.attr-focus,.attr-btn-warning.attr-disabled:focus,.attr-btn-warning.attr-disabled:hover,.attr-btn-warning[disabled].attr-focus,.attr-btn-warning[disabled]:focus,.attr-btn-warning[disabled]:hover,fieldset[disabled] .attr-btn-warning.attr-focus,fieldset[disabled] .attr-btn-warning:focus,fieldset[disabled] .attr-btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.attr-btn-warning .attr-badge{color:#f0ad4e;background-color:#fff}.attr-btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.attr-btn-danger.attr-focus,.attr-btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.attr-btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.attr-btn-danger.attr-active,.attr-btn-danger:active,.attr-open>.attr-dropdown-toggle.attr-btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.attr-btn-danger.attr-active.attr-focus,.attr-btn-danger.attr-active:focus,.attr-btn-danger.attr-active:hover,.attr-btn-danger:active.attr-focus,.attr-btn-danger:active:focus,.attr-btn-danger:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-danger.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-danger:focus,.attr-open>.attr-dropdown-toggle.attr-btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.attr-btn-danger.attr-active,.attr-btn-danger:active,.attr-open>.attr-dropdown-toggle.attr-btn-danger{background-image:none}.attr-btn-danger.attr-disabled.attr-focus,.attr-btn-danger.attr-disabled:focus,.attr-btn-danger.attr-disabled:hover,.attr-btn-danger[disabled].attr-focus,.attr-btn-danger[disabled]:focus,.attr-btn-danger[disabled]:hover,fieldset[disabled] .attr-btn-danger.attr-focus,fieldset[disabled] .attr-btn-danger:focus,fieldset[disabled] .attr-btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.attr-btn-danger .attr-badge{color:#d9534f;background-color:#fff}.attr-btn-link{font-weight:400;color:#337ab7;border-radius:0}.attr-btn-link,.attr-btn-link.attr-active,.attr-btn-link:active,.attr-btn-link[disabled],fieldset[disabled] .attr-btn-link{background-color:transparent;box-shadow:none}.attr-btn-link,.attr-btn-link:active,.attr-btn-link:focus,.attr-btn-link:hover{border-color:transparent}.attr-btn-link:focus,.attr-btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.attr-btn-link[disabled]:focus,.attr-btn-link[disabled]:hover,fieldset[disabled] .attr-btn-link:focus,fieldset[disabled] .attr-btn-link:hover{color:#777;text-decoration:none}.attr-btn-group-lg>.attr-btn,.attr-btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.attr-btn-group-sm>.attr-btn,.attr-btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.attr-btn-group-xs>.attr-btn,.attr-btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.attr-btn-block{display:block;width:100%}.attr-btn-block+.attr-btn-block{margin-top:5px}input[type=button].attr-btn-block,input[type=reset].attr-btn-block,input[type=submit].attr-btn-block{width:100%}.attr-fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.attr-fade.attr-in{opacity:1}.attr-collapse{display:none}.attr-collapse.attr-in{display:block}tr.attr-collapse.attr-in{display:table-row}tbody.attr-collapse.attr-in{display:table-row-group}.attr-collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;transition-property:height,visibility}.attr-caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-right:4px solid transparent;border-left:4px solid transparent}.attr-dropdown,.attr-dropup{position:relative}.attr-dropdown-toggle:focus{outline:0}.attr-dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;box-shadow:0 6px 12px rgba(0,0,0,.175)}.attr-dropdown-menu.attr-pull-right{right:0;left:auto}.attr-dropdown-menu .attr-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.attr-dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.attr-dropdown-menu>li>a:focus,.attr-dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.attr-dropdown-menu>.attr-active>a,.attr-dropdown-menu>.attr-active>a:focus,.attr-dropdown-menu>.attr-active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.attr-dropdown-menu>.attr-disabled>a,.attr-dropdown-menu>.attr-disabled>a:focus,.attr-dropdown-menu>.attr-disabled>a:hover{color:#777}.attr-dropdown-menu>.attr-disabled>a:focus,.attr-dropdown-menu>.attr-disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none}.attr-open>.attr-dropdown-menu{display:block}.attr-open>a{outline:0}.attr-dropdown-menu-right{right:0;left:auto}.attr-dropdown-menu-left{right:auto;left:0}.attr-dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.attr-dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.attr-pull-right>.attr-dropdown-menu{right:0;left:auto}.attr-dropup .attr-caret,.attr-navbar-fixed-bottom .attr-dropdown .attr-caret{content:"";border-top:0;border-bottom:4px dashed}.attr-dropup .attr-dropdown-menu,.attr-navbar-fixed-bottom .attr-dropdown .attr-dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.attr-navbar-right .attr-dropdown-menu{right:0;left:auto}.attr-navbar-right .attr-dropdown-menu-left{right:auto;left:0}}.attr-btn-group,.attr-btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.attr-btn-group-vertical>.attr-btn,.attr-btn-group>.attr-btn{position:relative;float:left}.attr-btn-group-vertical>.attr-btn.attr-active,.attr-btn-group-vertical>.attr-btn:active,.attr-btn-group-vertical>.attr-btn:focus,.attr-btn-group-vertical>.attr-btn:hover,.attr-btn-group>.attr-btn.attr-active,.attr-btn-group>.attr-btn:active,.attr-btn-group>.attr-btn:focus,.attr-btn-group>.attr-btn:hover{z-index:2}.attr-btn-group .attr-btn+.attr-btn,.attr-btn-group .attr-btn+.attr-btn-group,.attr-btn-group .attr-btn-group+.attr-btn,.attr-btn-group .attr-btn-group+.attr-btn-group{margin-left:-1px}.attr-btn-toolbar{margin-left:-5px}.attr-btn-toolbar .attr-btn,.attr-btn-toolbar .attr-btn-group,.attr-btn-toolbar .attr-input-group{float:left}.attr-btn-toolbar>.attr-btn,.attr-btn-toolbar>.attr-btn-group,.attr-btn-toolbar>.attr-input-group{margin-left:5px}.attr-btn-group>.attr-btn:not(:first-child):not(:last-child):not(.attr-dropdown-toggle){border-radius:0}.attr-btn-group>.attr-btn:first-child{margin-left:0}.attr-btn-group>.attr-btn:first-child:not(:last-child):not(.attr-dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.attr-btn-group>.attr-btn:last-child:not(:first-child),.attr-btn-group>.attr-dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.attr-btn-group>.attr-btn-group{float:left}.attr-btn-group>.attr-btn-group:not(:first-child):not(:last-child)>.attr-btn{border-radius:0}.attr-btn-group>.attr-btn-group:first-child:not(:last-child)>.attr-btn:last-child,.attr-btn-group>.attr-btn-group:first-child:not(:last-child)>.attr-dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.attr-btn-group>.attr-btn-group:last-child:not(:first-child)>.attr-btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.attr-btn-group .attr-dropdown-toggle:active,.attr-btn-group.attr-open .attr-dropdown-toggle{outline:0}.attr-btn-group>.attr-btn+.attr-dropdown-toggle{padding-right:8px;padding-left:8px}.attr-btn-group>.attr-btn-lg+.attr-dropdown-toggle{padding-right:12px;padding-left:12px}.attr-btn-group.attr-open .attr-dropdown-toggle{box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.attr-btn-group.attr-open .attr-dropdown-toggle.attr-btn-link{box-shadow:none}.attr-btn .attr-caret{margin-left:0}.attr-btn-lg .attr-caret{border-width:5px 5px 0;border-bottom-width:0}.attr-dropup .attr-btn-lg .attr-caret{border-width:0 5px 5px}.attr-btn-group-vertical>.attr-btn,.attr-btn-group-vertical>.attr-btn-group,.attr-btn-group-vertical>.attr-btn-group>.attr-btn{display:block;float:none;width:100%;max-width:100%}.attr-btn-group-vertical>.attr-btn-group>.attr-btn{float:none}.attr-btn-group-vertical>.attr-btn+.attr-btn,.attr-btn-group-vertical>.attr-btn+.attr-btn-group,.attr-btn-group-vertical>.attr-btn-group+.attr-btn,.attr-btn-group-vertical>.attr-btn-group+.attr-btn-group{margin-top:-1px;margin-left:0}.attr-btn-group-vertical>.attr-btn:not(:first-child):not(:last-child){border-radius:0}.attr-btn-group-vertical>.attr-btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.attr-btn-group-vertical>.attr-btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.attr-btn-group-vertical>.attr-btn-group:not(:first-child):not(:last-child)>.attr-btn{border-radius:0}.attr-btn-group-vertical>.attr-btn-group:first-child:not(:last-child)>.attr-btn:last-child,.attr-btn-group-vertical>.attr-btn-group:first-child:not(:last-child)>.attr-dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.attr-btn-group-vertical>.attr-btn-group:last-child:not(:first-child)>.attr-btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.attr-btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.attr-btn-group-justified>.attr-btn,.attr-btn-group-justified>.attr-btn-group{display:table-cell;float:none;width:1%}.attr-btn-group-justified>.attr-btn-group .attr-btn{width:100%}.attr-btn-group-justified>.attr-btn-group .attr-dropdown-menu{left:auto}[data-toggle=buttons]>.attr-btn input[type=checkbox],[data-toggle=buttons]>.attr-btn input[type=radio],[data-toggle=buttons]>.attr-btn-group>.attr-btn input[type=checkbox],[data-toggle=buttons]>.attr-btn-group>.attr-btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.attr-input-group{position:relative;display:table;border-collapse:separate}.attr-input-group[class*=attr-col-]{float:none;padding-right:0;padding-left:0}.attr-input-group .attr-form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.attr-input-group .attr-form-control:focus{z-index:3}.attr-input-group-lg>.attr-form-control,.attr-input-group-lg>.attr-input-group-addon,.attr-input-group-lg>.attr-input-group-btn>.attr-btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.attr-input-group-lg>.attr-form-control,select.attr-input-group-lg>.attr-input-group-addon,select.attr-input-group-lg>.attr-input-group-btn>.attr-btn{height:46px;line-height:46px}select[multiple].attr-input-group-lg>.attr-form-control,select[multiple].attr-input-group-lg>.attr-input-group-addon,select[multiple].attr-input-group-lg>.attr-input-group-btn>.attr-btn,textarea.attr-input-group-lg>.attr-form-control,textarea.attr-input-group-lg>.attr-input-group-addon,textarea.attr-input-group-lg>.attr-input-group-btn>.attr-btn{height:auto}.attr-input-group-sm>.attr-form-control,.attr-input-group-sm>.attr-input-group-addon,.attr-input-group-sm>.attr-input-group-btn>.attr-btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.attr-input-group-sm>.attr-form-control,select.attr-input-group-sm>.attr-input-group-addon,select.attr-input-group-sm>.attr-input-group-btn>.attr-btn{height:30px;line-height:30px}select[multiple].attr-input-group-sm>.attr-form-control,select[multiple].attr-input-group-sm>.attr-input-group-addon,select[multiple].attr-input-group-sm>.attr-input-group-btn>.attr-btn,textarea.attr-input-group-sm>.attr-form-control,textarea.attr-input-group-sm>.attr-input-group-addon,textarea.attr-input-group-sm>.attr-input-group-btn>.attr-btn{height:auto}.attr-input-group .attr-form-control,.attr-input-group-addon,.attr-input-group-btn{display:table-cell}.attr-input-group .attr-form-control:not(:first-child):not(:last-child),.attr-input-group-addon:not(:first-child):not(:last-child),.attr-input-group-btn:not(:first-child):not(:last-child){border-radius:0}.attr-input-group-addon,.attr-input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.attr-input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.attr-input-group-addon.attr-input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.attr-input-group-addon.attr-input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.attr-input-group-addon input[type=checkbox],.attr-input-group-addon input[type=radio]{margin-top:0}.attr-input-group .attr-form-control:first-child,.attr-input-group-addon:first-child,.attr-input-group-btn:first-child>.attr-btn,.attr-input-group-btn:first-child>.attr-btn-group>.attr-btn,.attr-input-group-btn:first-child>.attr-dropdown-toggle,.attr-input-group-btn:last-child>.attr-btn-group:not(:last-child)>.attr-btn,.attr-input-group-btn:last-child>.attr-btn:not(:last-child):not(.attr-dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.attr-input-group-addon:first-child{border-right:0}.attr-input-group .attr-form-control:last-child,.attr-input-group-addon:last-child,.attr-input-group-btn:first-child>.attr-btn-group:not(:first-child)>.attr-btn,.attr-input-group-btn:first-child>.attr-btn:not(:first-child),.attr-input-group-btn:last-child>.attr-btn,.attr-input-group-btn:last-child>.attr-btn-group>.attr-btn,.attr-input-group-btn:last-child>.attr-dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.attr-input-group-addon:last-child{border-left:0}.attr-input-group-btn{position:relative;font-size:0;white-space:nowrap}.attr-input-group-btn>.attr-btn{position:relative}.attr-input-group-btn>.attr-btn+.attr-btn{margin-left:-1px}.attr-input-group-btn>.attr-btn:active,.attr-input-group-btn>.attr-btn:focus,.attr-input-group-btn>.attr-btn:hover{z-index:2}.attr-input-group-btn:first-child>.attr-btn,.attr-input-group-btn:first-child>.attr-btn-group{margin-right:-1px}.attr-input-group-btn:last-child>.attr-btn,.attr-input-group-btn:last-child>.attr-btn-group{z-index:2;margin-left:-1px}.attr-nav{padding-left:0;margin-bottom:0;list-style:none}.attr-nav>li{position:relative;display:block}.attr-nav>li>a{position:relative;display:block;padding:10px 15px}.attr-nav>li>a:focus,.attr-nav>li>a:hover{text-decoration:none;background-color:#eee}.attr-nav>li.attr-disabled>a{color:#777}.attr-nav>li.attr-disabled>a:focus,.attr-nav>li.attr-disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.attr-nav .attr-open>a,.attr-nav .attr-open>a:focus,.attr-nav .attr-open>a:hover{background-color:#eee;border-color:#337ab7}.attr-nav .attr-nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.attr-nav>li>a>img{max-width:none}.attr-nav-tabs{border-bottom:1px solid #ddd}.attr-nav-tabs>li{float:left;margin-bottom:-1px}.attr-nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.attr-nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.attr-nav-tabs>li.attr-active>a,.attr-nav-tabs>li.attr-active>a:focus,.attr-nav-tabs>li.attr-active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.attr-nav-tabs.attr-nav-justified{width:100%;border-bottom:0}.attr-nav-tabs.attr-nav-justified>li{float:none}.attr-nav-tabs.attr-nav-justified>li>a{margin-bottom:5px;text-align:center}.attr-nav-tabs.attr-nav-justified>.attr-dropdown .attr-dropdown-menu{top:auto;left:auto}@media (min-width:768px){.attr-nav-tabs.attr-nav-justified>li{display:table-cell;width:1%}.attr-nav-tabs.attr-nav-justified>li>a{margin-bottom:0}}.attr-nav-tabs.attr-nav-justified>li>a{margin-right:0;border-radius:4px}.attr-nav-tabs.attr-nav-justified>.attr-active>a,.attr-nav-tabs.attr-nav-justified>.attr-active>a:focus,.attr-nav-tabs.attr-nav-justified>.attr-active>a:hover{border:1px solid #ddd}@media (min-width:768px){.attr-nav-tabs.attr-nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.attr-nav-tabs.attr-nav-justified>.attr-active>a,.attr-nav-tabs.attr-nav-justified>.attr-active>a:focus,.attr-nav-tabs.attr-nav-justified>.attr-active>a:hover{border-bottom-color:#fff}}.attr-nav-pills>li{float:left}.attr-nav-pills>li>a{border-radius:4px}.attr-nav-pills>li+li{margin-left:2px}.attr-nav-pills>li.attr-active>a,.attr-nav-pills>li.attr-active>a:focus,.attr-nav-pills>li.attr-active>a:hover{color:#fff;background-color:#337ab7}.attr-nav-stacked>li{float:none}.attr-nav-stacked>li+li{margin-top:2px;margin-left:0}.attr-nav-justified{width:100%}.attr-nav-justified>li{float:none}.attr-nav-justified>li>a{margin-bottom:5px;text-align:center}.attr-nav-justified>.attr-dropdown .attr-dropdown-menu{top:auto;left:auto}@media (min-width:768px){.attr-nav-justified>li{display:table-cell;width:1%}.attr-nav-justified>li>a{margin-bottom:0}}.attr-nav-tabs-justified{border-bottom:0}.attr-nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.attr-nav-tabs-justified>.attr-active>a,.attr-nav-tabs-justified>.attr-active>a:focus,.attr-nav-tabs-justified>.attr-active>a:hover{border:1px solid #ddd}@media (min-width:768px){.attr-nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.attr-nav-tabs-justified>.attr-active>a,.attr-nav-tabs-justified>.attr-active>a:focus,.attr-nav-tabs-justified>.attr-active>a:hover{border-bottom-color:#fff}}.attr-tab-content>.attr-tab-pane{display:none}.attr-tab-content>.attr-active{display:block}.attr-nav-tabs .attr-dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.attr-navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.attr-navbar{border-radius:4px}}@media (min-width:768px){.attr-navbar-header{float:left}}.attr-navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.attr-navbar-collapse.attr-in{overflow-y:auto}@media (min-width:768px){.attr-navbar-collapse{width:auto;border-top:0;box-shadow:none}.attr-navbar-collapse.attr-collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.attr-navbar-collapse.attr-in{overflow-y:visible}.attr-navbar-fixed-bottom .attr-navbar-collapse,.attr-navbar-fixed-top .attr-navbar-collapse,.attr-navbar-static-top .attr-navbar-collapse{padding-right:0;padding-left:0}}.attr-navbar-fixed-bottom .attr-navbar-collapse,.attr-navbar-fixed-top .attr-navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.attr-navbar-fixed-bottom .attr-navbar-collapse,.attr-navbar-fixed-top .attr-navbar-collapse{max-height:200px}}.attr-container-fluid>.attr-navbar-collapse,.attr-container-fluid>.attr-navbar-header,.attr-container>.attr-navbar-collapse,.attr-container>.attr-navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.attr-container-fluid>.attr-navbar-collapse,.attr-container-fluid>.attr-navbar-header,.attr-container>.attr-navbar-collapse,.attr-container>.attr-navbar-header{margin-right:0;margin-left:0}}.attr-navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.attr-navbar-static-top{border-radius:0}}.attr-navbar-fixed-bottom,.attr-navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.attr-navbar-fixed-bottom,.attr-navbar-fixed-top{border-radius:0}}.attr-navbar-fixed-top{top:0;border-width:0 0 1px}.attr-navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.attr-navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.attr-navbar-brand:focus,.attr-navbar-brand:hover{text-decoration:none}.attr-navbar-brand>img{display:block}@media (min-width:768px){.attr-navbar>.attr-container .attr-navbar-brand,.attr-navbar>.attr-container-fluid .attr-navbar-brand{margin-left:-15px}}.attr-navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.attr-navbar-toggle:focus{outline:0}.attr-navbar-toggle .attr-icon-bar{display:block;width:22px;height:2px;border-radius:1px}.attr-navbar-toggle .attr-icon-bar+.attr-icon-bar{margin-top:4px}@media (min-width:768px){.attr-navbar-toggle{display:none}}.attr-navbar-nav{margin:7.5px -15px}.attr-navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.attr-navbar-nav .attr-open .attr-dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.attr-navbar-nav .attr-open .attr-dropdown-menu .attr-dropdown-header,.attr-navbar-nav .attr-open .attr-dropdown-menu>li>a{padding:5px 15px 5px 25px}.attr-navbar-nav .attr-open .attr-dropdown-menu>li>a{line-height:20px}.attr-navbar-nav .attr-open .attr-dropdown-menu>li>a:focus,.attr-navbar-nav .attr-open .attr-dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.attr-navbar-nav{float:left;margin:0}.attr-navbar-nav>li{float:left}.attr-navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.attr-navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.attr-navbar-form .attr-form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.attr-navbar-form .attr-form-control{display:inline-block;width:auto;vertical-align:middle}.attr-navbar-form .attr-form-control-static{display:inline-block}.attr-navbar-form .attr-input-group{display:inline-table;vertical-align:middle}.attr-navbar-form .attr-input-group .attr-form-control,.attr-navbar-form .attr-input-group .attr-input-group-addon,.attr-navbar-form .attr-input-group .attr-input-group-btn{width:auto}.attr-navbar-form .attr-input-group>.attr-form-control{width:100%}.attr-navbar-form .attr-control-label{margin-bottom:0;vertical-align:middle}.attr-navbar-form .attr-checkbox,.attr-navbar-form .attr-radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.attr-navbar-form .attr-checkbox label,.attr-navbar-form .attr-radio label{padding-left:0}.attr-navbar-form .attr-checkbox input[type=checkbox],.attr-navbar-form .attr-radio input[type=radio]{position:relative;margin-left:0}.attr-navbar-form .attr-has-feedback .attr-form-control-feedback{top:0}}@media (max-width:767px){.attr-navbar-form .attr-form-group{margin-bottom:5px}.attr-navbar-form .attr-form-group:last-child{margin-bottom:0}}@media (min-width:768px){.attr-navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;box-shadow:none}}.attr-navbar-nav>li>.attr-dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.attr-navbar-fixed-bottom .attr-navbar-nav>li>.attr-dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.attr-navbar-btn{margin-top:8px;margin-bottom:8px}.attr-navbar-btn.attr-btn-sm{margin-top:10px;margin-bottom:10px}.attr-navbar-btn.attr-btn-xs{margin-top:14px;margin-bottom:14px}.attr-navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.attr-navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.attr-navbar-left{float:left!important}.attr-navbar-right{float:right!important;margin-right:-15px}.attr-navbar-right~.attr-navbar-right{margin-right:0}}.attr-navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.attr-navbar-default .attr-navbar-brand{color:#777}.attr-navbar-default .attr-navbar-brand:focus,.attr-navbar-default .attr-navbar-brand:hover{color:#5e5e5e;background-color:transparent}.attr-navbar-default .attr-navbar-text{color:#777}.attr-navbar-default .attr-navbar-nav>li>a{color:#777}.attr-navbar-default .attr-navbar-nav>li>a:focus,.attr-navbar-default .attr-navbar-nav>li>a:hover{color:#333;background-color:transparent}.attr-navbar-default .attr-navbar-nav>.attr-active>a,.attr-navbar-default .attr-navbar-nav>.attr-active>a:focus,.attr-navbar-default .attr-navbar-nav>.attr-active>a:hover{color:#555;background-color:#e7e7e7}.attr-navbar-default .attr-navbar-nav>.attr-disabled>a,.attr-navbar-default .attr-navbar-nav>.attr-disabled>a:focus,.attr-navbar-default .attr-navbar-nav>.attr-disabled>a:hover{color:#ccc;background-color:transparent}.attr-navbar-default .attr-navbar-toggle{border-color:#ddd}.attr-navbar-default .attr-navbar-toggle:focus,.attr-navbar-default .attr-navbar-toggle:hover{background-color:#ddd}.attr-navbar-default .attr-navbar-toggle .attr-icon-bar{background-color:#888}.attr-navbar-default .attr-navbar-collapse,.attr-navbar-default .attr-navbar-form{border-color:#e7e7e7}.attr-navbar-default .attr-navbar-nav>.attr-open>a,.attr-navbar-default .attr-navbar-nav>.attr-open>a:focus,.attr-navbar-default .attr-navbar-nav>.attr-open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>li>a{color:#777}.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>li>a:focus,.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>li>a:hover{color:#333;background-color:transparent}.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-active>a,.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-active>a:focus,.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-active>a:hover{color:#555;background-color:#e7e7e7}.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-disabled>a,.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-disabled>a:focus,.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-disabled>a:hover{color:#ccc;background-color:transparent}}.attr-navbar-default .attr-navbar-link{color:#777}.attr-navbar-default .attr-navbar-link:hover{color:#333}.attr-navbar-default .attr-btn-link{color:#777}.attr-navbar-default .attr-btn-link:focus,.attr-navbar-default .attr-btn-link:hover{color:#333}.attr-navbar-default .attr-btn-link[disabled]:focus,.attr-navbar-default .attr-btn-link[disabled]:hover,fieldset[disabled] .attr-navbar-default .attr-btn-link:focus,fieldset[disabled] .attr-navbar-default .attr-btn-link:hover{color:#ccc}.attr-navbar-inverse{background-color:#222;border-color:#080808}.attr-navbar-inverse .attr-navbar-brand{color:#9d9d9d}.attr-navbar-inverse .attr-navbar-brand:focus,.attr-navbar-inverse .attr-navbar-brand:hover{color:#fff;background-color:transparent}.attr-navbar-inverse .attr-navbar-text{color:#9d9d9d}.attr-navbar-inverse .attr-navbar-nav>li>a{color:#9d9d9d}.attr-navbar-inverse .attr-navbar-nav>li>a:focus,.attr-navbar-inverse .attr-navbar-nav>li>a:hover{color:#fff;background-color:transparent}.attr-navbar-inverse .attr-navbar-nav>.attr-active>a,.attr-navbar-inverse .attr-navbar-nav>.attr-active>a:focus,.attr-navbar-inverse .attr-navbar-nav>.attr-active>a:hover{color:#fff;background-color:#080808}.attr-navbar-inverse .attr-navbar-nav>.attr-disabled>a,.attr-navbar-inverse .attr-navbar-nav>.attr-disabled>a:focus,.attr-navbar-inverse .attr-navbar-nav>.attr-disabled>a:hover{color:#444;background-color:transparent}.attr-navbar-inverse .attr-navbar-toggle{border-color:#333}.attr-navbar-inverse .attr-navbar-toggle:focus,.attr-navbar-inverse .attr-navbar-toggle:hover{background-color:#333}.attr-navbar-inverse .attr-navbar-toggle .attr-icon-bar{background-color:#fff}.attr-navbar-inverse .attr-navbar-collapse,.attr-navbar-inverse .attr-navbar-form{border-color:#101010}.attr-navbar-inverse .attr-navbar-nav>.attr-open>a,.attr-navbar-inverse .attr-navbar-nav>.attr-open>a:focus,.attr-navbar-inverse .attr-navbar-nav>.attr-open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-dropdown-header{border-color:#080808}.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu .attr-divider{background-color:#080808}.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>li>a{color:#9d9d9d}.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>li>a:focus,.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-active>a,.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-active>a:focus,.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-active>a:hover{color:#fff;background-color:#080808}.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-disabled>a,.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-disabled>a:focus,.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-disabled>a:hover{color:#444;background-color:transparent}}.attr-navbar-inverse .attr-navbar-link{color:#9d9d9d}.attr-navbar-inverse .attr-navbar-link:hover{color:#fff}.attr-navbar-inverse .attr-btn-link{color:#9d9d9d}.attr-navbar-inverse .attr-btn-link:focus,.attr-navbar-inverse .attr-btn-link:hover{color:#fff}.attr-navbar-inverse .attr-btn-link[disabled]:focus,.attr-navbar-inverse .attr-btn-link[disabled]:hover,fieldset[disabled] .attr-navbar-inverse .attr-btn-link:focus,fieldset[disabled] .attr-navbar-inverse .attr-btn-link:hover{color:#444}.attr-breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.attr-breadcrumb>li{display:inline-block}.attr-breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.attr-breadcrumb>.attr-active{color:#777}.attr-pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.attr-pagination>li{display:inline}.attr-pagination>li>a,.attr-pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.attr-pagination>li:first-child>a,.attr-pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.attr-pagination>li:last-child>a,.attr-pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.attr-pagination>li>a:focus,.attr-pagination>li>a:hover,.attr-pagination>li>span:focus,.attr-pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.attr-pagination>.attr-active>a,.attr-pagination>.attr-active>a:focus,.attr-pagination>.attr-active>a:hover,.attr-pagination>.attr-active>span,.attr-pagination>.attr-active>span:focus,.attr-pagination>.attr-active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.attr-pagination>.attr-disabled>a,.attr-pagination>.attr-disabled>a:focus,.attr-pagination>.attr-disabled>a:hover,.attr-pagination>.attr-disabled>span,.attr-pagination>.attr-disabled>span:focus,.attr-pagination>.attr-disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.attr-pagination-lg>li>a,.attr-pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.attr-pagination-lg>li:first-child>a,.attr-pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.attr-pagination-lg>li:last-child>a,.attr-pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.attr-pagination-sm>li>a,.attr-pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.attr-pagination-sm>li:first-child>a,.attr-pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.attr-pagination-sm>li:last-child>a,.attr-pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.attr-pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.attr-pager li{display:inline}.attr-pager li>a,.attr-pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.attr-pager li>a:focus,.attr-pager li>a:hover{text-decoration:none;background-color:#eee}.attr-pager .attr-next>a,.attr-pager .attr-next>span{float:right}.attr-pager .attr-previous>a,.attr-pager .attr-previous>span{float:left}.attr-pager .attr-disabled>a,.attr-pager .attr-disabled>a:focus,.attr-pager .attr-disabled>a:hover,.attr-pager .attr-disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.attr-label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.attr-label:focus,a.attr-label:hover{color:#fff;text-decoration:none;cursor:pointer}.attr-label:empty{display:none}.attr-btn .attr-label{position:relative;top:-1px}.attr-label-default{background-color:#777}.attr-label-default[href]:focus,.attr-label-default[href]:hover{background-color:#5e5e5e}.attr-label-primary{background-color:#337ab7}.attr-label-primary[href]:focus,.attr-label-primary[href]:hover{background-color:#286090}.attr-label-success{background-color:#5cb85c}.attr-label-success[href]:focus,.attr-label-success[href]:hover{background-color:#449d44}.attr-label-info{background-color:#5bc0de}.attr-label-info[href]:focus,.attr-label-info[href]:hover{background-color:#31b0d5}.attr-label-warning{background-color:#f0ad4e}.attr-label-warning[href]:focus,.attr-label-warning[href]:hover{background-color:#ec971f}.attr-label-danger{background-color:#d9534f}.attr-label-danger[href]:focus,.attr-label-danger[href]:hover{background-color:#c9302c}.attr-badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.attr-badge:empty{display:none}.attr-btn .attr-badge{position:relative;top:-1px}.attr-btn-group-xs>.attr-btn .attr-badge,.attr-btn-xs .attr-badge{top:0;padding:1px 5px}a.attr-badge:focus,a.attr-badge:hover{color:#fff;text-decoration:none;cursor:pointer}.attr-list-group-item.attr-active>.attr-badge,.attr-nav-pills>.attr-active>a>.attr-badge{color:#337ab7;background-color:#fff}.attr-list-group-item>.attr-badge{float:right}.attr-list-group-item>.attr-badge+.attr-badge{margin-right:5px}.attr-nav-pills>li>a>.attr-badge{margin-left:3px}.attr-jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.attr-jumbotron .attr-h1,.attr-jumbotron h1{color:inherit}.attr-jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.attr-jumbotron>hr{border-top-color:#d5d5d5}.attr-container .attr-jumbotron,.attr-container-fluid .attr-jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.attr-jumbotron .attr-container{max-width:100%}@media screen and (min-width:768px){.attr-jumbotron{padding-top:48px;padding-bottom:48px}.attr-container .attr-jumbotron,.attr-container-fluid .attr-jumbotron{padding-right:60px;padding-left:60px}.attr-jumbotron .attr-h1,.attr-jumbotron h1{font-size:63px}}.attr-thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.attr-thumbnail a>img,.attr-thumbnail>img{margin-right:auto;margin-left:auto}a.attr-thumbnail.attr-active,a.attr-thumbnail:focus,a.attr-thumbnail:hover{border-color:#337ab7}.attr-thumbnail .attr-caption{padding:9px;color:#333}.attr-alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.attr-alert h4{margin-top:0;color:inherit}.attr-alert .attr-alert-link{font-weight:700}.attr-alert>p,.attr-alert>ul{margin-bottom:0}.attr-alert>p+p{margin-top:5px}.attr-alert-dismissable,.attr-alert-dismissible{padding-right:35px}.attr-alert-dismissable .attr-close,.attr-alert-dismissible .attr-close{position:relative;top:-2px;right:-21px;color:inherit}.attr-alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.attr-alert-success hr{border-top-color:#c9e2b3}.attr-alert-success .attr-alert-link{color:#2b542c}.attr-alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.attr-alert-info hr{border-top-color:#a6e1ec}.attr-alert-info .attr-alert-link{color:#245269}.attr-alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.attr-alert-warning hr{border-top-color:#f7e1b5}.attr-alert-warning .attr-alert-link{color:#66512c}.attr-alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.attr-alert-danger hr{border-top-color:#e4b9c0}.attr-alert-danger .attr-alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.attr-progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.attr-progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;transition:width .6s ease}.attr-progress-bar-striped,.attr-progress-striped .attr-progress-bar{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:40px 40px}.attr-progress-bar.attr-active,.attr-progress.attr-active .attr-progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.attr-progress-bar-success{background-color:#5cb85c}.attr-progress-striped .attr-progress-bar-success{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.attr-progress-bar-info{background-color:#5bc0de}.attr-progress-striped .attr-progress-bar-info{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.attr-progress-bar-warning{background-color:#f0ad4e}.attr-progress-striped .attr-progress-bar-warning{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.attr-progress-bar-danger{background-color:#d9534f}.attr-progress-striped .attr-progress-bar-danger{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.attr-media{margin-top:15px}.attr-media:first-child{margin-top:0}.attr-media,.attr-media-body{overflow:hidden;zoom:1}.attr-media-body{width:10000px}.attr-media-object{display:block}.attr-media-object.attr-img-thumbnail{max-width:none}.attr-media-right,.attr-media>.attr-pull-right{padding-left:10px}.attr-media-left,.attr-media>.attr-pull-left{padding-right:10px}.attr-media-body,.attr-media-left,.attr-media-right{display:table-cell;vertical-align:top}.attr-media-middle{vertical-align:middle}.attr-media-bottom{vertical-align:bottom}.attr-media-heading{margin-top:0;margin-bottom:5px}.attr-media-list{padding-left:0;list-style:none}.attr-list-group{padding-left:0;margin-bottom:20px}.attr-list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.attr-list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.attr-list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.attr-list-group-item,button.attr-list-group-item{color:#555}a.attr-list-group-item .attr-list-group-item-heading,button.attr-list-group-item .attr-list-group-item-heading{color:#333}a.attr-list-group-item:focus,a.attr-list-group-item:hover,button.attr-list-group-item:focus,button.attr-list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.attr-list-group-item{width:100%;text-align:left}.attr-list-group-item.attr-disabled,.attr-list-group-item.attr-disabled:focus,.attr-list-group-item.attr-disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.attr-list-group-item.attr-disabled .attr-list-group-item-heading,.attr-list-group-item.attr-disabled:focus .attr-list-group-item-heading,.attr-list-group-item.attr-disabled:hover .attr-list-group-item-heading{color:inherit}.attr-list-group-item.attr-disabled .attr-list-group-item-text,.attr-list-group-item.attr-disabled:focus .attr-list-group-item-text,.attr-list-group-item.attr-disabled:hover .attr-list-group-item-text{color:#777}.attr-list-group-item.attr-active,.attr-list-group-item.attr-active:focus,.attr-list-group-item.attr-active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.attr-list-group-item.attr-active .attr-list-group-item-heading,.attr-list-group-item.attr-active .attr-list-group-item-heading>.attr-small,.attr-list-group-item.attr-active .attr-list-group-item-heading>small,.attr-list-group-item.attr-active:focus .attr-list-group-item-heading,.attr-list-group-item.attr-active:focus .attr-list-group-item-heading>.attr-small,.attr-list-group-item.attr-active:focus .attr-list-group-item-heading>small,.attr-list-group-item.attr-active:hover .attr-list-group-item-heading,.attr-list-group-item.attr-active:hover .attr-list-group-item-heading>.attr-small,.attr-list-group-item.attr-active:hover .attr-list-group-item-heading>small{color:inherit}.attr-list-group-item.attr-active .attr-list-group-item-text,.attr-list-group-item.attr-active:focus .attr-list-group-item-text,.attr-list-group-item.attr-active:hover .attr-list-group-item-text{color:#c7ddef}.attr-list-group-item-success{color:#3c763d;background-color:#dff0d8}a.attr-list-group-item-success,button.attr-list-group-item-success{color:#3c763d}a.attr-list-group-item-success .attr-list-group-item-heading,button.attr-list-group-item-success .attr-list-group-item-heading{color:inherit}a.attr-list-group-item-success:focus,a.attr-list-group-item-success:hover,button.attr-list-group-item-success:focus,button.attr-list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.attr-list-group-item-success.attr-active,a.attr-list-group-item-success.attr-active:focus,a.attr-list-group-item-success.attr-active:hover,button.attr-list-group-item-success.attr-active,button.attr-list-group-item-success.attr-active:focus,button.attr-list-group-item-success.attr-active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.attr-list-group-item-info{color:#31708f;background-color:#d9edf7}a.attr-list-group-item-info,button.attr-list-group-item-info{color:#31708f}a.attr-list-group-item-info .attr-list-group-item-heading,button.attr-list-group-item-info .attr-list-group-item-heading{color:inherit}a.attr-list-group-item-info:focus,a.attr-list-group-item-info:hover,button.attr-list-group-item-info:focus,button.attr-list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.attr-list-group-item-info.attr-active,a.attr-list-group-item-info.attr-active:focus,a.attr-list-group-item-info.attr-active:hover,button.attr-list-group-item-info.attr-active,button.attr-list-group-item-info.attr-active:focus,button.attr-list-group-item-info.attr-active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.attr-list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.attr-list-group-item-warning,button.attr-list-group-item-warning{color:#8a6d3b}a.attr-list-group-item-warning .attr-list-group-item-heading,button.attr-list-group-item-warning .attr-list-group-item-heading{color:inherit}a.attr-list-group-item-warning:focus,a.attr-list-group-item-warning:hover,button.attr-list-group-item-warning:focus,button.attr-list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.attr-list-group-item-warning.attr-active,a.attr-list-group-item-warning.attr-active:focus,a.attr-list-group-item-warning.attr-active:hover,button.attr-list-group-item-warning.attr-active,button.attr-list-group-item-warning.attr-active:focus,button.attr-list-group-item-warning.attr-active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.attr-list-group-item-danger{color:#a94442;background-color:#f2dede}a.attr-list-group-item-danger,button.attr-list-group-item-danger{color:#a94442}a.attr-list-group-item-danger .attr-list-group-item-heading,button.attr-list-group-item-danger .attr-list-group-item-heading{color:inherit}a.attr-list-group-item-danger:focus,a.attr-list-group-item-danger:hover,button.attr-list-group-item-danger:focus,button.attr-list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.attr-list-group-item-danger.attr-active,a.attr-list-group-item-danger.attr-active:focus,a.attr-list-group-item-danger.attr-active:hover,button.attr-list-group-item-danger.attr-active,button.attr-list-group-item-danger.attr-active:focus,button.attr-list-group-item-danger.attr-active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.attr-list-group-item-heading{margin-top:0;margin-bottom:5px}.attr-list-group-item-text{margin-bottom:0;line-height:1.3}.attr-panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;box-shadow:0 1px 1px rgba(0,0,0,.05)}.attr-panel-body{padding:15px}.attr-panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.attr-panel-heading>.attr-dropdown .attr-dropdown-toggle{color:inherit}.attr-panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.attr-panel-title>.attr-small,.attr-panel-title>.attr-small>a,.attr-panel-title>a,.attr-panel-title>small,.attr-panel-title>small>a{color:inherit}.attr-panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.attr-panel>.attr-list-group,.attr-panel>.attr-panel-collapse>.attr-list-group{margin-bottom:0}.attr-panel>.attr-list-group .attr-list-group-item,.attr-panel>.attr-panel-collapse>.attr-list-group .attr-list-group-item{border-width:1px 0;border-radius:0}.attr-panel>.attr-list-group:first-child .attr-list-group-item:first-child,.attr-panel>.attr-panel-collapse>.attr-list-group:first-child .attr-list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.attr-panel>.attr-list-group:last-child .attr-list-group-item:last-child,.attr-panel>.attr-panel-collapse>.attr-list-group:last-child .attr-list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.attr-panel>.attr-panel-heading+.attr-panel-collapse>.attr-list-group .attr-list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.attr-panel-heading+.attr-list-group .attr-list-group-item:first-child{border-top-width:0}.attr-list-group+.attr-panel-footer{border-top-width:0}.attr-panel>.attr-panel-collapse>.attr-table,.attr-panel>.attr-table,.attr-panel>.attr-table-responsive>.attr-table{margin-bottom:0}.attr-panel>.attr-panel-collapse>.attr-table caption,.attr-panel>.attr-table caption,.attr-panel>.attr-table-responsive>.attr-table caption{padding-right:15px;padding-left:15px}.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child,.attr-panel>.attr-table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>tbody:first-child>tr:first-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>thead:first-child>tr:first-child,.attr-panel>.attr-table:first-child>tbody:first-child>tr:first-child,.attr-panel>.attr-table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>tbody:first-child>tr:first-child td:first-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>tbody:first-child>tr:first-child th:first-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>thead:first-child>tr:first-child td:first-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>thead:first-child>tr:first-child th:first-child,.attr-panel>.attr-table:first-child>tbody:first-child>tr:first-child td:first-child,.attr-panel>.attr-table:first-child>tbody:first-child>tr:first-child th:first-child,.attr-panel>.attr-table:first-child>thead:first-child>tr:first-child td:first-child,.attr-panel>.attr-table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>tbody:first-child>tr:first-child td:last-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>tbody:first-child>tr:first-child th:last-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>thead:first-child>tr:first-child td:last-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>thead:first-child>tr:first-child th:last-child,.attr-panel>.attr-table:first-child>tbody:first-child>tr:first-child td:last-child,.attr-panel>.attr-table:first-child>tbody:first-child>tr:first-child th:last-child,.attr-panel>.attr-table:first-child>thead:first-child>tr:first-child td:last-child,.attr-panel>.attr-table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child,.attr-panel>.attr-table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tbody:last-child>tr:last-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tfoot:last-child>tr:last-child,.attr-panel>.attr-table:last-child>tbody:last-child>tr:last-child,.attr-panel>.attr-table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tbody:last-child>tr:last-child td:first-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tbody:last-child>tr:last-child th:first-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tfoot:last-child>tr:last-child td:first-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tfoot:last-child>tr:last-child th:first-child,.attr-panel>.attr-table:last-child>tbody:last-child>tr:last-child td:first-child,.attr-panel>.attr-table:last-child>tbody:last-child>tr:last-child th:first-child,.attr-panel>.attr-table:last-child>tfoot:last-child>tr:last-child td:first-child,.attr-panel>.attr-table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tbody:last-child>tr:last-child td:last-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tbody:last-child>tr:last-child th:last-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tfoot:last-child>tr:last-child td:last-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tfoot:last-child>tr:last-child th:last-child,.attr-panel>.attr-table:last-child>tbody:last-child>tr:last-child td:last-child,.attr-panel>.attr-table:last-child>tbody:last-child>tr:last-child th:last-child,.attr-panel>.attr-table:last-child>tfoot:last-child>tr:last-child td:last-child,.attr-panel>.attr-table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.attr-panel>.attr-panel-body+.attr-table,.attr-panel>.attr-panel-body+.attr-table-responsive,.attr-panel>.attr-table+.attr-panel-body,.attr-panel>.attr-table-responsive+.attr-panel-body{border-top:1px solid #ddd}.attr-panel>.attr-table>tbody:first-child>tr:first-child td,.attr-panel>.attr-table>tbody:first-child>tr:first-child th{border-top:0}.attr-panel>.attr-table-bordered,.attr-panel>.attr-table-responsive>.attr-table-bordered{border:0}.attr-panel>.attr-table-bordered>tbody>tr>td:first-child,.attr-panel>.attr-table-bordered>tbody>tr>th:first-child,.attr-panel>.attr-table-bordered>tfoot>tr>td:first-child,.attr-panel>.attr-table-bordered>tfoot>tr>th:first-child,.attr-panel>.attr-table-bordered>thead>tr>td:first-child,.attr-panel>.attr-table-bordered>thead>tr>th:first-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr>td:first-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr>th:first-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tfoot>tr>td:first-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tfoot>tr>th:first-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>thead>tr>td:first-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>thead>tr>th:first-child{border-left:0}.attr-panel>.attr-table-bordered>tbody>tr>td:last-child,.attr-panel>.attr-table-bordered>tbody>tr>th:last-child,.attr-panel>.attr-table-bordered>tfoot>tr>td:last-child,.attr-panel>.attr-table-bordered>tfoot>tr>th:last-child,.attr-panel>.attr-table-bordered>thead>tr>td:last-child,.attr-panel>.attr-table-bordered>thead>tr>th:last-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr>td:last-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr>th:last-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tfoot>tr>td:last-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tfoot>tr>th:last-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>thead>tr>td:last-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>thead>tr>th:last-child{border-right:0}.attr-panel>.attr-table-bordered>tbody>tr:first-child>td,.attr-panel>.attr-table-bordered>tbody>tr:first-child>th,.attr-panel>.attr-table-bordered>thead>tr:first-child>td,.attr-panel>.attr-table-bordered>thead>tr:first-child>th,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr:first-child>td,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr:first-child>th,.attr-panel>.attr-table-responsive>.attr-table-bordered>thead>tr:first-child>td,.attr-panel>.attr-table-responsive>.attr-table-bordered>thead>tr:first-child>th{border-bottom:0}.attr-panel>.attr-table-bordered>tbody>tr:last-child>td,.attr-panel>.attr-table-bordered>tbody>tr:last-child>th,.attr-panel>.attr-table-bordered>tfoot>tr:last-child>td,.attr-panel>.attr-table-bordered>tfoot>tr:last-child>th,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr:last-child>td,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr:last-child>th,.attr-panel>.attr-table-responsive>.attr-table-bordered>tfoot>tr:last-child>td,.attr-panel>.attr-table-responsive>.attr-table-bordered>tfoot>tr:last-child>th{border-bottom:0}.attr-panel>.attr-table-responsive{margin-bottom:0;border:0}.attr-panel-group{margin-bottom:20px}.attr-panel-group .attr-panel{margin-bottom:0;border-radius:4px}.attr-panel-group .attr-panel+.attr-panel{margin-top:5px}.attr-panel-group .attr-panel-heading{border-bottom:0}.attr-panel-group .attr-panel-heading+.attr-panel-collapse>.attr-list-group,.attr-panel-group .attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top:1px solid #ddd}.attr-panel-group .attr-panel-footer{border-top:0}.attr-panel-group .attr-panel-footer+.attr-panel-collapse .attr-panel-body{border-bottom:1px solid #ddd}.attr-panel-default{border-color:#ddd}.attr-panel-default>.attr-panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.attr-panel-default>.attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top-color:#ddd}.attr-panel-default>.attr-panel-heading .attr-badge{color:#f5f5f5;background-color:#333}.attr-panel-default>.attr-panel-footer+.attr-panel-collapse>.attr-panel-body{border-bottom-color:#ddd}.attr-panel-primary{border-color:#337ab7}.attr-panel-primary>.attr-panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.attr-panel-primary>.attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top-color:#337ab7}.attr-panel-primary>.attr-panel-heading .attr-badge{color:#337ab7;background-color:#fff}.attr-panel-primary>.attr-panel-footer+.attr-panel-collapse>.attr-panel-body{border-bottom-color:#337ab7}.attr-panel-success{border-color:#d6e9c6}.attr-panel-success>.attr-panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.attr-panel-success>.attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top-color:#d6e9c6}.attr-panel-success>.attr-panel-heading .attr-badge{color:#dff0d8;background-color:#3c763d}.attr-panel-success>.attr-panel-footer+.attr-panel-collapse>.attr-panel-body{border-bottom-color:#d6e9c6}.attr-panel-info{border-color:#bce8f1}.attr-panel-info>.attr-panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.attr-panel-info>.attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top-color:#bce8f1}.attr-panel-info>.attr-panel-heading .attr-badge{color:#d9edf7;background-color:#31708f}.attr-panel-info>.attr-panel-footer+.attr-panel-collapse>.attr-panel-body{border-bottom-color:#bce8f1}.attr-panel-warning{border-color:#faebcc}.attr-panel-warning>.attr-panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.attr-panel-warning>.attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top-color:#faebcc}.attr-panel-warning>.attr-panel-heading .attr-badge{color:#fcf8e3;background-color:#8a6d3b}.attr-panel-warning>.attr-panel-footer+.attr-panel-collapse>.attr-panel-body{border-bottom-color:#faebcc}.attr-panel-danger{border-color:#ebccd1}.attr-panel-danger>.attr-panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.attr-panel-danger>.attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top-color:#ebccd1}.attr-panel-danger>.attr-panel-heading .attr-badge{color:#f2dede;background-color:#a94442}.attr-panel-danger>.attr-panel-footer+.attr-panel-collapse>.attr-panel-body{border-bottom-color:#ebccd1}.attr-embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.attr-embed-responsive .attr-embed-responsive-item,.attr-embed-responsive embed,.attr-embed-responsive iframe,.attr-embed-responsive object,.attr-embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.attr-embed-responsive-16by9{padding-bottom:56.25%}.attr-embed-responsive-4by3{padding-bottom:75%}.attr-well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.attr-well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.attr-well-lg{padding:24px;border-radius:6px}.attr-well-sm{padding:9px;border-radius:3px}.attr-close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2}.attr-close:focus,.attr-close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5}button.attr-close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.attr-modal-open{overflow:hidden}.attr-modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.attr-modal.attr-fade .attr-modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transition:-webkit-transform .3s ease-out,-webkit-transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);transform:translate(0,-25%)}.attr-modal.attr-in .attr-modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}.attr-modal-open .attr-modal{overflow-x:hidden;overflow-y:auto}.attr-modal-dialog{position:relative;width:auto;margin:10px}.attr-modal-content{position:relative;background-color:#fff;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;box-shadow:0 3px 9px rgba(0,0,0,.5)}.attr-modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.attr-modal-backdrop.attr-fade{opacity:0}.attr-modal-backdrop.attr-in{opacity:.5}.attr-modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.attr-modal-header .attr-close{margin-top:-2px}.attr-modal-title{margin:0;line-height:1.42857143}.attr-modal-body{position:relative;padding:15px}.attr-modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.attr-modal-footer .attr-btn+.attr-btn{margin-bottom:0;margin-left:5px}.attr-modal-footer .attr-btn-group .attr-btn+.attr-btn{margin-left:-1px}.attr-modal-footer .attr-btn-block+.attr-btn-block{margin-left:0}.attr-modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.attr-modal-dialog{width:600px;margin:30px auto}.attr-modal-content{box-shadow:0 5px 15px rgba(0,0,0,.5)}.attr-modal-sm{width:300px}}@media (min-width:992px){.attr-modal-lg{width:900px}}.attr-tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;opacity:0;line-break:auto}.attr-tooltip.attr-in{opacity:.9}.attr-tooltip.attr-top{padding:5px 0;margin-top:-3px}.attr-tooltip.attr-right{padding:0 5px;margin-left:3px}.attr-tooltip.attr-bottom{padding:5px 0;margin-top:3px}.attr-tooltip.attr-left{padding:0 5px;margin-left:-3px}.attr-tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.attr-tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.attr-tooltip.attr-top .attr-tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.attr-tooltip.attr-top-left .attr-tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.attr-tooltip.attr-top-right .attr-tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.attr-tooltip.attr-right .attr-tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.attr-tooltip.attr-left .attr-tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.attr-tooltip.attr-bottom .attr-tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.attr-tooltip.attr-bottom-left .attr-tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.attr-tooltip.attr-bottom-right .attr-tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.attr-popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.attr-popover.attr-top{margin-top:-10px}.attr-popover.attr-right{margin-left:10px}.attr-popover.attr-bottom{margin-top:10px}.attr-popover.attr-left{margin-left:-10px}.attr-popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.attr-popover-content{padding:9px 14px}.attr-popover>.attr-arrow,.attr-popover>.attr-arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.attr-popover>.attr-arrow{border-width:11px}.attr-popover>.attr-arrow:after{content:"";border-width:10px}.attr-popover.attr-top>.attr-arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.attr-popover.attr-top>.attr-arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.attr-popover.attr-right>.attr-arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.attr-popover.attr-right>.attr-arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.attr-popover.attr-bottom>.attr-arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.attr-popover.attr-bottom>.attr-arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.attr-popover.attr-left>.attr-arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.attr-popover.attr-left>.attr-arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.attr-carousel{position:relative}.attr-carousel-inner{position:relative;width:100%;overflow:hidden}.attr-carousel-inner>.attr-item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.attr-carousel-inner>.attr-item>a>img,.attr-carousel-inner>.attr-item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.attr-carousel-inner>.attr-item{-webkit-transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-transition:-webkit-transform .6s ease-in-out,-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.attr-carousel-inner>.attr-item.attr-active.attr-right,.attr-carousel-inner>.attr-item.attr-next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.attr-carousel-inner>.attr-item.attr-active.attr-left,.attr-carousel-inner>.attr-item.attr-prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.attr-carousel-inner>.attr-item.attr-active,.attr-carousel-inner>.attr-item.attr-next.attr-left,.attr-carousel-inner>.attr-item.attr-prev.attr-right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.attr-carousel-inner>.attr-active,.attr-carousel-inner>.attr-next,.attr-carousel-inner>.attr-prev{display:block}.attr-carousel-inner>.attr-active{left:0}.attr-carousel-inner>.attr-next,.attr-carousel-inner>.attr-prev{position:absolute;top:0;width:100%}.attr-carousel-inner>.attr-next{left:100%}.attr-carousel-inner>.attr-prev{left:-100%}.attr-carousel-inner>.attr-next.attr-left,.attr-carousel-inner>.attr-prev.attr-right{left:0}.attr-carousel-inner>.attr-active.attr-left{left:-100%}.attr-carousel-inner>.attr-active.attr-right{left:100%}.attr-carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);opacity:.5}.attr-carousel-control.attr-left{background-image:-webkit-gradient(linear,left top,right top,color-stop(0,rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-repeat:repeat-x}.attr-carousel-control.attr-right{right:0;left:auto;background-image:-webkit-gradient(linear,left top,right top,color-stop(0,rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-repeat:repeat-x}.attr-carousel-control:focus,.attr-carousel-control:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.attr-carousel-control .attr-glyphicon-chevron-left,.attr-carousel-control .attr-glyphicon-chevron-right,.attr-carousel-control .attr-icon-next,.attr-carousel-control .attr-icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.attr-carousel-control .attr-glyphicon-chevron-left,.attr-carousel-control .attr-icon-prev{left:50%;margin-left:-10px}.attr-carousel-control .attr-glyphicon-chevron-right,.attr-carousel-control .attr-icon-next{right:50%;margin-right:-10px}.attr-carousel-control .attr-icon-next,.attr-carousel-control .attr-icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.attr-carousel-control .attr-icon-prev:before{content:'\2039'}.attr-carousel-control .attr-icon-next:before{content:'\203a'}.attr-carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.attr-carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.attr-carousel-indicators .attr-active{width:12px;height:12px;margin:0;background-color:#fff}.attr-carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.attr-carousel-caption .attr-btn{text-shadow:none}@media screen and (min-width:768px){.attr-carousel-control .attr-glyphicon-chevron-left,.attr-carousel-control .attr-glyphicon-chevron-right,.attr-carousel-control .attr-icon-next,.attr-carousel-control .attr-icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.attr-carousel-control .attr-glyphicon-chevron-left,.attr-carousel-control .attr-icon-prev{margin-left:-10px}.attr-carousel-control .attr-glyphicon-chevron-right,.attr-carousel-control .attr-icon-next{margin-right:-10px}.attr-carousel-caption{right:20%;left:20%;padding-bottom:30px}.attr-carousel-indicators{bottom:20px}}.attr-btn-group-vertical>.attr-btn-group:after,.attr-btn-group-vertical>.attr-btn-group:before,.attr-btn-toolbar:after,.attr-btn-toolbar:before,.attr-clearfix:after,.attr-clearfix:before,.attr-container-fluid:after,.attr-container-fluid:before,.attr-container:after,.attr-container:before,.attr-dl-horizontal dd:after,.attr-dl-horizontal dd:before,.attr-form-horizontal .attr-form-group:after,.attr-form-horizontal .attr-form-group:before,.attr-modal-footer:after,.attr-modal-footer:before,.attr-modal-header:after,.attr-modal-header:before,.attr-nav:after,.attr-nav:before,.attr-navbar-collapse:after,.attr-navbar-collapse:before,.attr-navbar-header:after,.attr-navbar-header:before,.attr-navbar:after,.attr-navbar:before,.attr-pager:after,.attr-pager:before,.attr-panel-body:after,.attr-panel-body:before,.attr-row:after,.attr-row:before{display:table;content:" "}.attr-btn-group-vertical>.attr-btn-group:after,.attr-btn-toolbar:after,.attr-clearfix:after,.attr-container-fluid:after,.attr-container:after,.attr-dl-horizontal dd:after,.attr-form-horizontal .attr-form-group:after,.attr-modal-footer:after,.attr-modal-header:after,.attr-nav:after,.attr-navbar-collapse:after,.attr-navbar-header:after,.attr-navbar:after,.attr-pager:after,.attr-panel-body:after,.attr-row:after{clear:both}.attr-center-block{display:block;margin-right:auto;margin-left:auto}.attr-pull-right{float:right!important}.attr-pull-left{float:left!important}.attr-hide{display:none!important}.attr-show{display:block!important}.attr-invisible{visibility:hidden}.attr-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.attr-hidden{display:none!important}.attr-affix{position:fixed}@-ms-viewport{width:device-width}.attr-visible-lg,.attr-visible-md,.attr-visible-sm,.attr-visible-xs{display:none!important}.attr-visible-lg-block,.attr-visible-lg-inline,.attr-visible-lg-inline-block,.attr-visible-md-block,.attr-visible-md-inline,.attr-visible-md-inline-block,.attr-visible-sm-block,.attr-visible-sm-inline,.attr-visible-sm-inline-block,.attr-visible-xs-block,.attr-visible-xs-inline,.attr-visible-xs-inline-block{display:none!important}@media (max-width:767px){.attr-visible-xs{display:block!important}table.attr-visible-xs{display:table!important}tr.attr-visible-xs{display:table-row!important}td.attr-visible-xs,th.attr-visible-xs{display:table-cell!important}}@media (max-width:767px){.attr-visible-xs-block{display:block!important}}@media (max-width:767px){.attr-visible-xs-inline{display:inline!important}}@media (max-width:767px){.attr-visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.attr-visible-sm{display:block!important}table.attr-visible-sm{display:table!important}tr.attr-visible-sm{display:table-row!important}td.attr-visible-sm,th.attr-visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.attr-visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.attr-visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.attr-visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.attr-visible-md{display:block!important}table.attr-visible-md{display:table!important}tr.attr-visible-md{display:table-row!important}td.attr-visible-md,th.attr-visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.attr-visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.attr-visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.attr-visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.attr-visible-lg{display:block!important}table.attr-visible-lg{display:table!important}tr.attr-visible-lg{display:table-row!important}td.attr-visible-lg,th.attr-visible-lg{display:table-cell!important}}@media (min-width:1200px){.attr-visible-lg-block{display:block!important}}@media (min-width:1200px){.attr-visible-lg-inline{display:inline!important}}@media (min-width:1200px){.attr-visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.attr-hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.attr-hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.attr-hidden-md{display:none!important}}@media (min-width:1200px){.attr-hidden-lg{display:none!important}}.attr-visible-print{display:none!important}@media print{.attr-visible-print{display:block!important}table.attr-visible-print{display:table!important}tr.attr-visible-print{display:table-row!important}td.attr-visible-print,th.attr-visible-print{display:table-cell!important}}.attr-visible-print-block{display:none!important}@media print{.attr-visible-print-block{display:block!important}}.attr-visible-print-inline{display:none!important}@media print{.attr-visible-print-inline{display:inline!important}}.attr-visible-print-inline-block{display:none!important}@media print{.attr-visible-print-inline-block{display:inline-block!important}}@media print{.attr-hidden-print{display:none!important}}
1
+ .attr-carousel-inner>.attr-item>a>img,.attr-carousel-inner>.attr-item>img,.attr-img-responsive,.attr-thumbnail a>img,.attr-thumbnail>img{display:block;max-width:100%;height:auto}.attr-img-rounded{border-radius:6px}.attr-img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.attr-img-circle{border-radius:50%}.attr-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.attr-sr-only-focusable:active,.attr-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.attr-h1,.attr-h2,.attr-h3,.attr-h4,.attr-h5,.attr-h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.attr-h1 .attr-small,.attr-h1 small,.attr-h2 .attr-small,.attr-h2 small,.attr-h3 .attr-small,.attr-h3 small,.attr-h4 .attr-small,.attr-h4 small,.attr-h5 .attr-small,.attr-h5 small,.attr-h6 .attr-small,.attr-h6 small,h1 .attr-small,h2 .attr-small,h3 .attr-small,h4 .attr-small,h5 .attr-small,h6 .attr-small{font-weight:400;line-height:1;color:#777}.attr-h1,.attr-h2,.attr-h3{margin-top:20px;margin-bottom:10px}.attr-h1 .attr-small,.attr-h1 small,.attr-h2 .attr-small,.attr-h2 small,.attr-h3 .attr-small,.attr-h3 small,h1 .attr-small,h2 .attr-small,h3 .attr-small{font-size:65%}.attr-h4,.attr-h5,.attr-h6{margin-top:10px;margin-bottom:10px}.attr-h4 .attr-small,.attr-h4 small,.attr-h5 .attr-small,.attr-h5 small,.attr-h6 .attr-small,.attr-h6 small,h4 .attr-small,h5 .attr-small,h6 .attr-small{font-size:75%}.attr-h1{font-size:36px}.attr-h2{font-size:30px}.attr-h3{font-size:24px}.attr-h4{font-size:18px}.attr-h5{font-size:14px}.attr-h6{font-size:12px}.attr-lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.attr-lead{font-size:21px}}.attr-small{font-size:85%}.attr-mark{padding:.2em;background-color:#fcf8e3}.attr-text-left{text-align:left}.attr-text-right{text-align:right}.attr-text-center{text-align:center}.attr-text-justify{text-align:justify}.attr-text-nowrap{white-space:nowrap}.attr-text-lowercase{text-transform:lowercase}.attr-text-uppercase{text-transform:uppercase}.attr-text-capitalize{text-transform:capitalize}.attr-text-muted{color:#777}.attr-text-primary{color:#337ab7}a.attr-text-primary:focus,a.attr-text-primary:hover{color:#286090}.attr-text-success{color:#3c763d}a.attr-text-success:focus,a.attr-text-success:hover{color:#2b542c}.attr-text-info{color:#31708f}a.attr-text-info:focus,a.attr-text-info:hover{color:#245269}.attr-text-warning{color:#8a6d3b}a.attr-text-warning:focus,a.attr-text-warning:hover{color:#66512c}.attr-text-danger{color:#a94442}a.attr-text-danger:focus,a.attr-text-danger:hover{color:#843534}.attr-bg-primary{color:#fff;background-color:#337ab7}a.attr-bg-primary:focus,a.attr-bg-primary:hover{background-color:#286090}.attr-bg-success{background-color:#dff0d8}a.attr-bg-success:focus,a.attr-bg-success:hover{background-color:#c1e2b3}.attr-bg-info{background-color:#d9edf7}a.attr-bg-info:focus,a.attr-bg-info:hover{background-color:#afd9ee}.attr-bg-warning{background-color:#fcf8e3}a.attr-bg-warning:focus,a.attr-bg-warning:hover{background-color:#f7ecb5}.attr-bg-danger{background-color:#f2dede}a.attr-bg-danger:focus,a.attr-bg-danger:hover{background-color:#e4b9b9}.attr-page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}.attr-list-unstyled{padding-left:0;list-style:none}.attr-list-inline{padding-left:0;margin-left:-5px;list-style:none}.attr-list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}@media (min-width:768px){.attr-dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.attr-dl-horizontal dd{margin-left:180px}}.attr-initialism{font-size:90%;text-transform:uppercase}.attr-pre-scrollable{max-height:340px;overflow-y:scroll}.attr-container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.attr-container{width:750px}}@media (min-width:992px){.attr-container{width:970px}}@media (min-width:1200px){.attr-container{width:1170px}}.attr-container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.attr-row{margin-right:-15px;margin-left:-15px}.attr-col-lg-1,.attr-col-lg-10,.attr-col-lg-11,.attr-col-lg-12,.attr-col-lg-2,.attr-col-lg-3,.attr-col-lg-4,.attr-col-lg-5,.attr-col-lg-6,.attr-col-lg-7,.attr-col-lg-8,.attr-col-lg-9,.attr-col-md-1,.attr-col-md-10,.attr-col-md-11,.attr-col-md-12,.attr-col-md-2,.attr-col-md-3,.attr-col-md-4,.attr-col-md-5,.attr-col-md-6,.attr-col-md-7,.attr-col-md-8,.attr-col-md-9,.attr-col-sm-1,.attr-col-sm-10,.attr-col-sm-11,.attr-col-sm-12,.attr-col-sm-2,.attr-col-sm-3,.attr-col-sm-4,.attr-col-sm-5,.attr-col-sm-6,.attr-col-sm-7,.attr-col-sm-8,.attr-col-sm-9,.attr-col-xs-1,.attr-col-xs-10,.attr-col-xs-11,.attr-col-xs-12,.attr-col-xs-2,.attr-col-xs-3,.attr-col-xs-4,.attr-col-xs-5,.attr-col-xs-6,.attr-col-xs-7,.attr-col-xs-8,.attr-col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.attr-col-xs-1,.attr-col-xs-10,.attr-col-xs-11,.attr-col-xs-12,.attr-col-xs-2,.attr-col-xs-3,.attr-col-xs-4,.attr-col-xs-5,.attr-col-xs-6,.attr-col-xs-7,.attr-col-xs-8,.attr-col-xs-9{float:left}.attr-col-xs-12{width:100%}.attr-col-xs-11{width:91.66666667%}.attr-col-xs-10{width:83.33333333%}.attr-col-xs-9{width:75%}.attr-col-xs-8{width:66.66666667%}.attr-col-xs-7{width:58.33333333%}.attr-col-xs-6{width:50%}.attr-col-xs-5{width:41.66666667%}.attr-col-xs-4{width:33.33333333%}.attr-col-xs-3{width:25%}.attr-col-xs-2{width:16.66666667%}.attr-col-xs-1{width:8.33333333%}.attr-col-xs-pull-12{right:100%}.attr-col-xs-pull-11{right:91.66666667%}.attr-col-xs-pull-10{right:83.33333333%}.attr-col-xs-pull-9{right:75%}.attr-col-xs-pull-8{right:66.66666667%}.attr-col-xs-pull-7{right:58.33333333%}.attr-col-xs-pull-6{right:50%}.attr-col-xs-pull-5{right:41.66666667%}.attr-col-xs-pull-4{right:33.33333333%}.attr-col-xs-pull-3{right:25%}.attr-col-xs-pull-2{right:16.66666667%}.attr-col-xs-pull-1{right:8.33333333%}.attr-col-xs-pull-0{right:auto}.attr-col-xs-push-12{left:100%}.attr-col-xs-push-11{left:91.66666667%}.attr-col-xs-push-10{left:83.33333333%}.attr-col-xs-push-9{left:75%}.attr-col-xs-push-8{left:66.66666667%}.attr-col-xs-push-7{left:58.33333333%}.attr-col-xs-push-6{left:50%}.attr-col-xs-push-5{left:41.66666667%}.attr-col-xs-push-4{left:33.33333333%}.attr-col-xs-push-3{left:25%}.attr-col-xs-push-2{left:16.66666667%}.attr-col-xs-push-1{left:8.33333333%}.attr-col-xs-push-0{left:auto}.attr-col-xs-offset-12{margin-left:100%}.attr-col-xs-offset-11{margin-left:91.66666667%}.attr-col-xs-offset-10{margin-left:83.33333333%}.attr-col-xs-offset-9{margin-left:75%}.attr-col-xs-offset-8{margin-left:66.66666667%}.attr-col-xs-offset-7{margin-left:58.33333333%}.attr-col-xs-offset-6{margin-left:50%}.attr-col-xs-offset-5{margin-left:41.66666667%}.attr-col-xs-offset-4{margin-left:33.33333333%}.attr-col-xs-offset-3{margin-left:25%}.attr-col-xs-offset-2{margin-left:16.66666667%}.attr-col-xs-offset-1{margin-left:8.33333333%}.attr-col-xs-offset-0{margin-left:0}@media (min-width:768px){.attr-col-sm-1,.attr-col-sm-10,.attr-col-sm-11,.attr-col-sm-12,.attr-col-sm-2,.attr-col-sm-3,.attr-col-sm-4,.attr-col-sm-5,.attr-col-sm-6,.attr-col-sm-7,.attr-col-sm-8,.attr-col-sm-9{float:left}.attr-col-sm-12{width:100%}.attr-col-sm-11{width:91.66666667%}.attr-col-sm-10{width:83.33333333%}.attr-col-sm-9{width:75%}.attr-col-sm-8{width:66.66666667%}.attr-col-sm-7{width:58.33333333%}.attr-col-sm-6{width:50%}.attr-col-sm-5{width:41.66666667%}.attr-col-sm-4{width:33.33333333%}.attr-col-sm-3{width:25%}.attr-col-sm-2{width:16.66666667%}.attr-col-sm-1{width:8.33333333%}.attr-col-sm-pull-12{right:100%}.attr-col-sm-pull-11{right:91.66666667%}.attr-col-sm-pull-10{right:83.33333333%}.attr-col-sm-pull-9{right:75%}.attr-col-sm-pull-8{right:66.66666667%}.attr-col-sm-pull-7{right:58.33333333%}.attr-col-sm-pull-6{right:50%}.attr-col-sm-pull-5{right:41.66666667%}.attr-col-sm-pull-4{right:33.33333333%}.attr-col-sm-pull-3{right:25%}.attr-col-sm-pull-2{right:16.66666667%}.attr-col-sm-pull-1{right:8.33333333%}.attr-col-sm-pull-0{right:auto}.attr-col-sm-push-12{left:100%}.attr-col-sm-push-11{left:91.66666667%}.attr-col-sm-push-10{left:83.33333333%}.attr-col-sm-push-9{left:75%}.attr-col-sm-push-8{left:66.66666667%}.attr-col-sm-push-7{left:58.33333333%}.attr-col-sm-push-6{left:50%}.attr-col-sm-push-5{left:41.66666667%}.attr-col-sm-push-4{left:33.33333333%}.attr-col-sm-push-3{left:25%}.attr-col-sm-push-2{left:16.66666667%}.attr-col-sm-push-1{left:8.33333333%}.attr-col-sm-push-0{left:auto}.attr-col-sm-offset-12{margin-left:100%}.attr-col-sm-offset-11{margin-left:91.66666667%}.attr-col-sm-offset-10{margin-left:83.33333333%}.attr-col-sm-offset-9{margin-left:75%}.attr-col-sm-offset-8{margin-left:66.66666667%}.attr-col-sm-offset-7{margin-left:58.33333333%}.attr-col-sm-offset-6{margin-left:50%}.attr-col-sm-offset-5{margin-left:41.66666667%}.attr-col-sm-offset-4{margin-left:33.33333333%}.attr-col-sm-offset-3{margin-left:25%}.attr-col-sm-offset-2{margin-left:16.66666667%}.attr-col-sm-offset-1{margin-left:8.33333333%}.attr-col-sm-offset-0{margin-left:0}}@media (min-width:992px){.attr-col-md-1,.attr-col-md-10,.attr-col-md-11,.attr-col-md-12,.attr-col-md-2,.attr-col-md-3,.attr-col-md-4,.attr-col-md-5,.attr-col-md-6,.attr-col-md-7,.attr-col-md-8,.attr-col-md-9{float:left}.attr-col-md-12{width:100%}.attr-col-md-11{width:91.66666667%}.attr-col-md-10{width:83.33333333%}.attr-col-md-9{width:75%}.attr-col-md-8{width:66.66666667%}.attr-col-md-7{width:58.33333333%}.attr-col-md-6{width:50%}.attr-col-md-5{width:41.66666667%}.attr-col-md-4{width:33.33333333%}.attr-col-md-3{width:25%}.attr-col-md-2{width:16.66666667%}.attr-col-md-1{width:8.33333333%}.attr-col-md-pull-12{right:100%}.attr-col-md-pull-11{right:91.66666667%}.attr-col-md-pull-10{right:83.33333333%}.attr-col-md-pull-9{right:75%}.attr-col-md-pull-8{right:66.66666667%}.attr-col-md-pull-7{right:58.33333333%}.attr-col-md-pull-6{right:50%}.attr-col-md-pull-5{right:41.66666667%}.attr-col-md-pull-4{right:33.33333333%}.attr-col-md-pull-3{right:25%}.attr-col-md-pull-2{right:16.66666667%}.attr-col-md-pull-1{right:8.33333333%}.attr-col-md-pull-0{right:auto}.attr-col-md-push-12{left:100%}.attr-col-md-push-11{left:91.66666667%}.attr-col-md-push-10{left:83.33333333%}.attr-col-md-push-9{left:75%}.attr-col-md-push-8{left:66.66666667%}.attr-col-md-push-7{left:58.33333333%}.attr-col-md-push-6{left:50%}.attr-col-md-push-5{left:41.66666667%}.attr-col-md-push-4{left:33.33333333%}.attr-col-md-push-3{left:25%}.attr-col-md-push-2{left:16.66666667%}.attr-col-md-push-1{left:8.33333333%}.attr-col-md-push-0{left:auto}.attr-col-md-offset-12{margin-left:100%}.attr-col-md-offset-11{margin-left:91.66666667%}.attr-col-md-offset-10{margin-left:83.33333333%}.attr-col-md-offset-9{margin-left:75%}.attr-col-md-offset-8{margin-left:66.66666667%}.attr-col-md-offset-7{margin-left:58.33333333%}.attr-col-md-offset-6{margin-left:50%}.attr-col-md-offset-5{margin-left:41.66666667%}.attr-col-md-offset-4{margin-left:33.33333333%}.attr-col-md-offset-3{margin-left:25%}.attr-col-md-offset-2{margin-left:16.66666667%}.attr-col-md-offset-1{margin-left:8.33333333%}.attr-col-md-offset-0{margin-left:0}}@media (min-width:1200px){.attr-col-lg-1,.attr-col-lg-10,.attr-col-lg-11,.attr-col-lg-12,.attr-col-lg-2,.attr-col-lg-3,.attr-col-lg-4,.attr-col-lg-5,.attr-col-lg-6,.attr-col-lg-7,.attr-col-lg-8,.attr-col-lg-9{float:left}.attr-col-lg-12{width:100%}.attr-col-lg-11{width:91.66666667%}.attr-col-lg-10{width:83.33333333%}.attr-col-lg-9{width:75%}.attr-col-lg-8{width:66.66666667%}.attr-col-lg-7{width:58.33333333%}.attr-col-lg-6{width:50%}.attr-col-lg-5{width:41.66666667%}.attr-col-lg-4{width:33.33333333%}.attr-col-lg-3{width:25%}.attr-col-lg-2{width:16.66666667%}.attr-col-lg-1{width:8.33333333%}.attr-col-lg-pull-12{right:100%}.attr-col-lg-pull-11{right:91.66666667%}.attr-col-lg-pull-10{right:83.33333333%}.attr-col-lg-pull-9{right:75%}.attr-col-lg-pull-8{right:66.66666667%}.attr-col-lg-pull-7{right:58.33333333%}.attr-col-lg-pull-6{right:50%}.attr-col-lg-pull-5{right:41.66666667%}.attr-col-lg-pull-4{right:33.33333333%}.attr-col-lg-pull-3{right:25%}.attr-col-lg-pull-2{right:16.66666667%}.attr-col-lg-pull-1{right:8.33333333%}.attr-col-lg-pull-0{right:auto}.attr-col-lg-push-12{left:100%}.attr-col-lg-push-11{left:91.66666667%}.attr-col-lg-push-10{left:83.33333333%}.attr-col-lg-push-9{left:75%}.attr-col-lg-push-8{left:66.66666667%}.attr-col-lg-push-7{left:58.33333333%}.attr-col-lg-push-6{left:50%}.attr-col-lg-push-5{left:41.66666667%}.attr-col-lg-push-4{left:33.33333333%}.attr-col-lg-push-3{left:25%}.attr-col-lg-push-2{left:16.66666667%}.attr-col-lg-push-1{left:8.33333333%}.attr-col-lg-push-0{left:auto}.attr-col-lg-offset-12{margin-left:100%}.attr-col-lg-offset-11{margin-left:91.66666667%}.attr-col-lg-offset-10{margin-left:83.33333333%}.attr-col-lg-offset-9{margin-left:75%}.attr-col-lg-offset-8{margin-left:66.66666667%}.attr-col-lg-offset-7{margin-left:58.33333333%}.attr-col-lg-offset-6{margin-left:50%}.attr-col-lg-offset-5{margin-left:41.66666667%}.attr-col-lg-offset-4{margin-left:33.33333333%}.attr-col-lg-offset-3{margin-left:25%}.attr-col-lg-offset-2{margin-left:16.66666667%}.attr-col-lg-offset-1{margin-left:8.33333333%}.attr-col-lg-offset-0{margin-left:0}}.attr-table{width:100%;max-width:100%;margin-bottom:20px}.attr-table>tbody>tr>td,.attr-table>tbody>tr>th,.attr-table>tfoot>tr>td,.attr-table>tfoot>tr>th,.attr-table>thead>tr>td,.attr-table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.attr-table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.attr-table>caption+thead>tr:first-child>td,.attr-table>caption+thead>tr:first-child>th,.attr-table>colgroup+thead>tr:first-child>td,.attr-table>colgroup+thead>tr:first-child>th,.attr-table>thead:first-child>tr:first-child>td,.attr-table>thead:first-child>tr:first-child>th{border-top:0}.attr-table>tbody+tbody{border-top:2px solid #ddd}.attr-table .attr-table{background-color:#fff}.attr-table-condensed>tbody>tr>td,.attr-table-condensed>tbody>tr>th,.attr-table-condensed>tfoot>tr>td,.attr-table-condensed>tfoot>tr>th,.attr-table-condensed>thead>tr>td,.attr-table-condensed>thead>tr>th{padding:5px}.attr-table-bordered{border:1px solid #ddd}.attr-table-bordered>tbody>tr>td,.attr-table-bordered>tbody>tr>th,.attr-table-bordered>tfoot>tr>td,.attr-table-bordered>tfoot>tr>th,.attr-table-bordered>thead>tr>td,.attr-table-bordered>thead>tr>th{border:1px solid #ddd}.attr-table-bordered>thead>tr>td,.attr-table-bordered>thead>tr>th{border-bottom-width:2px}.attr-table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.attr-table-hover>tbody>tr:hover{background-color:#f5f5f5}.attr-table>tbody>tr.attr-active>td,.attr-table>tbody>tr.attr-active>th,.attr-table>tbody>tr>td.attr-active,.attr-table>tbody>tr>th.attr-active,.attr-table>tfoot>tr.attr-active>td,.attr-table>tfoot>tr.attr-active>th,.attr-table>tfoot>tr>td.attr-active,.attr-table>tfoot>tr>th.attr-active,.attr-table>thead>tr.attr-active>td,.attr-table>thead>tr.attr-active>th,.attr-table>thead>tr>td.attr-active,.attr-table>thead>tr>th.attr-active{background-color:#f5f5f5}.attr-table-hover>tbody>tr.attr-active:hover>td,.attr-table-hover>tbody>tr.attr-active:hover>th,.attr-table-hover>tbody>tr:hover>.attr-active,.attr-table-hover>tbody>tr>td.attr-active:hover,.attr-table-hover>tbody>tr>th.attr-active:hover{background-color:#e8e8e8}.attr-table>tbody>tr.attr-success>td,.attr-table>tbody>tr.attr-success>th,.attr-table>tbody>tr>td.attr-success,.attr-table>tbody>tr>th.attr-success,.attr-table>tfoot>tr.attr-success>td,.attr-table>tfoot>tr.attr-success>th,.attr-table>tfoot>tr>td.attr-success,.attr-table>tfoot>tr>th.attr-success,.attr-table>thead>tr.attr-success>td,.attr-table>thead>tr.attr-success>th,.attr-table>thead>tr>td.attr-success,.attr-table>thead>tr>th.attr-success{background-color:#dff0d8}.attr-table-hover>tbody>tr.attr-success:hover>td,.attr-table-hover>tbody>tr.attr-success:hover>th,.attr-table-hover>tbody>tr:hover>.attr-success,.attr-table-hover>tbody>tr>td.attr-success:hover,.attr-table-hover>tbody>tr>th.attr-success:hover{background-color:#d0e9c6}.attr-table>tbody>tr.attr-info>td,.attr-table>tbody>tr.attr-info>th,.attr-table>tbody>tr>td.attr-info,.attr-table>tbody>tr>th.attr-info,.attr-table>tfoot>tr.attr-info>td,.attr-table>tfoot>tr.attr-info>th,.attr-table>tfoot>tr>td.attr-info,.attr-table>tfoot>tr>th.attr-info,.attr-table>thead>tr.attr-info>td,.attr-table>thead>tr.attr-info>th,.attr-table>thead>tr>td.attr-info,.attr-table>thead>tr>th.attr-info{background-color:#d9edf7}.attr-table-hover>tbody>tr.attr-info:hover>td,.attr-table-hover>tbody>tr.attr-info:hover>th,.attr-table-hover>tbody>tr:hover>.attr-info,.attr-table-hover>tbody>tr>td.attr-info:hover,.attr-table-hover>tbody>tr>th.attr-info:hover{background-color:#c4e3f3}.attr-table>tbody>tr.attr-warning>td,.attr-table>tbody>tr.attr-warning>th,.attr-table>tbody>tr>td.attr-warning,.attr-table>tbody>tr>th.attr-warning,.attr-table>tfoot>tr.attr-warning>td,.attr-table>tfoot>tr.attr-warning>th,.attr-table>tfoot>tr>td.attr-warning,.attr-table>tfoot>tr>th.attr-warning,.attr-table>thead>tr.attr-warning>td,.attr-table>thead>tr.attr-warning>th,.attr-table>thead>tr>td.attr-warning,.attr-table>thead>tr>th.attr-warning{background-color:#fcf8e3}.attr-table-hover>tbody>tr.attr-warning:hover>td,.attr-table-hover>tbody>tr.attr-warning:hover>th,.attr-table-hover>tbody>tr:hover>.attr-warning,.attr-table-hover>tbody>tr>td.attr-warning:hover,.attr-table-hover>tbody>tr>th.attr-warning:hover{background-color:#faf2cc}.attr-table>tbody>tr.attr-danger>td,.attr-table>tbody>tr.attr-danger>th,.attr-table>tbody>tr>td.attr-danger,.attr-table>tbody>tr>th.attr-danger,.attr-table>tfoot>tr.attr-danger>td,.attr-table>tfoot>tr.attr-danger>th,.attr-table>tfoot>tr>td.attr-danger,.attr-table>tfoot>tr>th.attr-danger,.attr-table>thead>tr.attr-danger>td,.attr-table>thead>tr.attr-danger>th,.attr-table>thead>tr>td.attr-danger,.attr-table>thead>tr>th.attr-danger{background-color:#f2dede}.attr-table-hover>tbody>tr.attr-danger:hover>td,.attr-table-hover>tbody>tr.attr-danger:hover>th,.attr-table-hover>tbody>tr:hover>.attr-danger,.attr-table-hover>tbody>tr>td.attr-danger:hover,.attr-table-hover>tbody>tr>th.attr-danger:hover{background-color:#ebcccc}.attr-table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.attr-table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.attr-table-responsive>.attr-table{margin-bottom:0}.attr-table-responsive>.attr-table>tbody>tr>td,.attr-table-responsive>.attr-table>tbody>tr>th,.attr-table-responsive>.attr-table>tfoot>tr>td,.attr-table-responsive>.attr-table>tfoot>tr>th,.attr-table-responsive>.attr-table>thead>tr>td,.attr-table-responsive>.attr-table>thead>tr>th{white-space:nowrap}.attr-table-responsive>.attr-table-bordered{border:0}.attr-table-responsive>.attr-table-bordered>tbody>tr>td:first-child,.attr-table-responsive>.attr-table-bordered>tbody>tr>th:first-child,.attr-table-responsive>.attr-table-bordered>tfoot>tr>td:first-child,.attr-table-responsive>.attr-table-bordered>tfoot>tr>th:first-child,.attr-table-responsive>.attr-table-bordered>thead>tr>td:first-child,.attr-table-responsive>.attr-table-bordered>thead>tr>th:first-child{border-left:0}.attr-table-responsive>.attr-table-bordered>tbody>tr>td:last-child,.attr-table-responsive>.attr-table-bordered>tbody>tr>th:last-child,.attr-table-responsive>.attr-table-bordered>tfoot>tr>td:last-child,.attr-table-responsive>.attr-table-bordered>tfoot>tr>th:last-child,.attr-table-responsive>.attr-table-bordered>thead>tr>td:last-child,.attr-table-responsive>.attr-table-bordered>thead>tr>th:last-child{border-right:0}.attr-table-responsive>.attr-table-bordered>tbody>tr:last-child>td,.attr-table-responsive>.attr-table-bordered>tbody>tr:last-child>th,.attr-table-responsive>.attr-table-bordered>tfoot>tr:last-child>td,.attr-table-responsive>.attr-table-bordered>tfoot>tr:last-child>th{border-bottom:0}}.attr-form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s}.attr-form-control:focus{border-color:#66afe9;outline:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.attr-form-control::-moz-placeholder{color:#999;opacity:1}.attr-form-control:-ms-input-placeholder{color:#999}.attr-form-control::-webkit-input-placeholder{color:#999}.attr-form-control::-ms-expand{background-color:transparent;border:0}.attr-form-control[disabled],.attr-form-control[readonly],fieldset[disabled] .attr-form-control{background-color:#eee;opacity:1}.attr-form-control[disabled],fieldset[disabled] .attr-form-control{cursor:not-allowed}textarea.attr-form-control{height:auto}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].attr-form-control,input[type=datetime-local].attr-form-control,input[type=month].attr-form-control,input[type=time].attr-form-control{line-height:34px}.attr-input-group-sm input[type=date],.attr-input-group-sm input[type=datetime-local],.attr-input-group-sm input[type=month],.attr-input-group-sm input[type=time],input[type=date].attr-input-sm,input[type=datetime-local].attr-input-sm,input[type=month].attr-input-sm,input[type=time].attr-input-sm{line-height:30px}.attr-input-group-lg input[type=date],.attr-input-group-lg input[type=datetime-local],.attr-input-group-lg input[type=month],.attr-input-group-lg input[type=time],input[type=date].attr-input-lg,input[type=datetime-local].attr-input-lg,input[type=month].attr-input-lg,input[type=time].attr-input-lg{line-height:46px}}.attr-form-group{margin-bottom:15px}.attr-checkbox,.attr-radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.attr-checkbox label,.attr-radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.attr-checkbox input[type=checkbox],.attr-checkbox-inline input[type=checkbox],.attr-radio input[type=radio],.attr-radio-inline input[type=radio]{position:absolute;margin-left:-20px}.attr-checkbox+.attr-checkbox,.attr-radio+.attr-radio{margin-top:-5px}.attr-checkbox-inline,.attr-radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.attr-checkbox-inline+.attr-checkbox-inline,.attr-radio-inline+.attr-radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].attr-disabled,input[type=checkbox][disabled],input[type=radio].attr-disabled,input[type=radio][disabled]{cursor:not-allowed}.attr-checkbox-inline.attr-disabled,.attr-radio-inline.attr-disabled,fieldset[disabled] .attr-checkbox-inline,fieldset[disabled] .attr-radio-inline{cursor:not-allowed}.attr-checkbox.attr-disabled label,.attr-radio.attr-disabled label,fieldset[disabled] .attr-checkbox label,fieldset[disabled] .attr-radio label{cursor:not-allowed}.attr-form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.attr-form-control-static.attr-input-lg,.attr-form-control-static.attr-input-sm{padding-right:0;padding-left:0}.attr-input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.attr-input-sm{height:30px;line-height:30px}select[multiple].attr-input-sm,textarea.attr-input-sm{height:auto}.attr-form-group-sm .attr-form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.attr-form-group-sm select.attr-form-control{height:30px;line-height:30px}.attr-form-group-sm select[multiple].attr-form-control,.attr-form-group-sm textarea.attr-form-control{height:auto}.attr-form-group-sm .attr-form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.attr-input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.attr-input-lg{height:46px;line-height:46px}select[multiple].attr-input-lg,textarea.attr-input-lg{height:auto}.attr-form-group-lg .attr-form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.attr-form-group-lg select.attr-form-control{height:46px;line-height:46px}.attr-form-group-lg select[multiple].attr-form-control,.attr-form-group-lg textarea.attr-form-control{height:auto}.attr-form-group-lg .attr-form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.attr-has-feedback{position:relative}.attr-has-feedback .attr-form-control{padding-right:42.5px}.attr-form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.attr-form-group-lg .attr-form-control+.attr-form-control-feedback,.attr-input-group-lg+.attr-form-control-feedback,.attr-input-lg+.attr-form-control-feedback{width:46px;height:46px;line-height:46px}.attr-form-group-sm .attr-form-control+.attr-form-control-feedback,.attr-input-group-sm+.attr-form-control-feedback,.attr-input-sm+.attr-form-control-feedback{width:30px;height:30px;line-height:30px}.attr-has-success .attr-checkbox,.attr-has-success .attr-checkbox-inline,.attr-has-success .attr-control-label,.attr-has-success .attr-help-block,.attr-has-success .attr-radio,.attr-has-success .attr-radio-inline,.attr-has-success.attr-checkbox label,.attr-has-success.attr-checkbox-inline label,.attr-has-success.attr-radio label,.attr-has-success.attr-radio-inline label{color:#3c763d}.attr-has-success .attr-form-control{border-color:#3c763d;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.attr-has-success .attr-form-control:focus{border-color:#2b542c;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.attr-has-success .attr-input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.attr-has-success .attr-form-control-feedback{color:#3c763d}.attr-has-warning .attr-checkbox,.attr-has-warning .attr-checkbox-inline,.attr-has-warning .attr-control-label,.attr-has-warning .attr-help-block,.attr-has-warning .attr-radio,.attr-has-warning .attr-radio-inline,.attr-has-warning.attr-checkbox label,.attr-has-warning.attr-checkbox-inline label,.attr-has-warning.attr-radio label,.attr-has-warning.attr-radio-inline label{color:#8a6d3b}.attr-has-warning .attr-form-control{border-color:#8a6d3b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.attr-has-warning .attr-form-control:focus{border-color:#66512c;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.attr-has-warning .attr-input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.attr-has-warning .attr-form-control-feedback{color:#8a6d3b}.attr-has-error .attr-checkbox,.attr-has-error .attr-checkbox-inline,.attr-has-error .attr-control-label,.attr-has-error .attr-help-block,.attr-has-error .attr-radio,.attr-has-error .attr-radio-inline,.attr-has-error.attr-checkbox label,.attr-has-error.attr-checkbox-inline label,.attr-has-error.attr-radio label,.attr-has-error.attr-radio-inline label{color:#a94442}.attr-has-error .attr-form-control{border-color:#a94442;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.attr-has-error .attr-form-control:focus{border-color:#843534;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.attr-has-error .attr-input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.attr-has-error .attr-form-control-feedback{color:#a94442}.attr-has-feedback label~.attr-form-control-feedback{top:25px}.attr-has-feedback label.attr-sr-only~.attr-form-control-feedback{top:0}.attr-help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.attr-form-inline .attr-form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.attr-form-inline .attr-form-control{display:inline-block;width:auto;vertical-align:middle}.attr-form-inline .attr-form-control-static{display:inline-block}.attr-form-inline .attr-input-group{display:inline-table;vertical-align:middle}.attr-form-inline .attr-input-group .attr-form-control,.attr-form-inline .attr-input-group .attr-input-group-addon,.attr-form-inline .attr-input-group .attr-input-group-btn{width:auto}.attr-form-inline .attr-input-group>.attr-form-control{width:100%}.attr-form-inline .attr-control-label{margin-bottom:0;vertical-align:middle}.attr-form-inline .attr-checkbox,.attr-form-inline .attr-radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.attr-form-inline .attr-checkbox label,.attr-form-inline .attr-radio label{padding-left:0}.attr-form-inline .attr-checkbox input[type=checkbox],.attr-form-inline .attr-radio input[type=radio]{position:relative;margin-left:0}.attr-form-inline .attr-has-feedback .attr-form-control-feedback{top:0}}.attr-form-horizontal .attr-checkbox,.attr-form-horizontal .attr-checkbox-inline,.attr-form-horizontal .attr-radio,.attr-form-horizontal .attr-radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.attr-form-horizontal .attr-checkbox,.attr-form-horizontal .attr-radio{min-height:27px}.attr-form-horizontal .attr-form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.attr-form-horizontal .attr-control-label{padding-top:7px;margin-bottom:0;text-align:right}}.attr-form-horizontal .attr-has-feedback .attr-form-control-feedback{right:15px}@media (min-width:768px){.attr-form-horizontal .attr-form-group-lg .attr-control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.attr-form-horizontal .attr-form-group-sm .attr-control-label{padding-top:6px;font-size:12px}}.attr-btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.attr-btn.attr-active.attr-focus,.attr-btn.attr-active:focus,.attr-btn.attr-focus,.attr-btn:active.attr-focus,.attr-btn:active:focus,.attr-btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.attr-btn.attr-focus,.attr-btn:focus,.attr-btn:hover{color:#333;text-decoration:none}.attr-btn.attr-active,.attr-btn:active{background-image:none;outline:0;box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.attr-btn.attr-disabled,.attr-btn[disabled],fieldset[disabled] .attr-btn{cursor:not-allowed;box-shadow:none;opacity:.65}a.attr-btn.attr-disabled,fieldset[disabled] a.attr-btn{pointer-events:none}.attr-btn-default{color:#333;background-color:#fff;border-color:#ccc}.attr-btn-default.attr-focus,.attr-btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.attr-btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.attr-btn-default.attr-active,.attr-btn-default:active,.attr-open>.attr-dropdown-toggle.attr-btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.attr-btn-default.attr-active.attr-focus,.attr-btn-default.attr-active:focus,.attr-btn-default.attr-active:hover,.attr-btn-default:active.attr-focus,.attr-btn-default:active:focus,.attr-btn-default:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-default.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-default:focus,.attr-open>.attr-dropdown-toggle.attr-btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.attr-btn-default.attr-active,.attr-btn-default:active,.attr-open>.attr-dropdown-toggle.attr-btn-default{background-image:none}.attr-btn-default.attr-disabled.attr-focus,.attr-btn-default.attr-disabled:focus,.attr-btn-default.attr-disabled:hover,.attr-btn-default[disabled].attr-focus,.attr-btn-default[disabled]:focus,.attr-btn-default[disabled]:hover,fieldset[disabled] .attr-btn-default.attr-focus,fieldset[disabled] .attr-btn-default:focus,fieldset[disabled] .attr-btn-default:hover{background-color:#fff;border-color:#ccc}.attr-btn-default .attr-badge{color:#fff;background-color:#333}.attr-btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.attr-btn-primary.attr-focus,.attr-btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.attr-btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.attr-btn-primary.attr-active,.attr-btn-primary:active,.attr-open>.attr-dropdown-toggle.attr-btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.attr-btn-primary.attr-active.attr-focus,.attr-btn-primary.attr-active:focus,.attr-btn-primary.attr-active:hover,.attr-btn-primary:active.attr-focus,.attr-btn-primary:active:focus,.attr-btn-primary:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-primary.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-primary:focus,.attr-open>.attr-dropdown-toggle.attr-btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.attr-btn-primary.attr-active,.attr-btn-primary:active,.attr-open>.attr-dropdown-toggle.attr-btn-primary{background-image:none}.attr-btn-primary.attr-disabled.attr-focus,.attr-btn-primary.attr-disabled:focus,.attr-btn-primary.attr-disabled:hover,.attr-btn-primary[disabled].attr-focus,.attr-btn-primary[disabled]:focus,.attr-btn-primary[disabled]:hover,fieldset[disabled] .attr-btn-primary.attr-focus,fieldset[disabled] .attr-btn-primary:focus,fieldset[disabled] .attr-btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.attr-btn-primary .attr-badge{color:#337ab7;background-color:#fff}.attr-btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.attr-btn-success.attr-focus,.attr-btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.attr-btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.attr-btn-success.attr-active,.attr-btn-success:active,.attr-open>.attr-dropdown-toggle.attr-btn-success{color:#fff;background-color:#449d44;border-color:#398439}.attr-btn-success.attr-active.attr-focus,.attr-btn-success.attr-active:focus,.attr-btn-success.attr-active:hover,.attr-btn-success:active.attr-focus,.attr-btn-success:active:focus,.attr-btn-success:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-success.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-success:focus,.attr-open>.attr-dropdown-toggle.attr-btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.attr-btn-success.attr-active,.attr-btn-success:active,.attr-open>.attr-dropdown-toggle.attr-btn-success{background-image:none}.attr-btn-success.attr-disabled.attr-focus,.attr-btn-success.attr-disabled:focus,.attr-btn-success.attr-disabled:hover,.attr-btn-success[disabled].attr-focus,.attr-btn-success[disabled]:focus,.attr-btn-success[disabled]:hover,fieldset[disabled] .attr-btn-success.attr-focus,fieldset[disabled] .attr-btn-success:focus,fieldset[disabled] .attr-btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.attr-btn-success .attr-badge{color:#5cb85c;background-color:#fff}.attr-btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.attr-btn-info.attr-focus,.attr-btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.attr-btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.attr-btn-info.attr-active,.attr-btn-info:active,.attr-open>.attr-dropdown-toggle.attr-btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.attr-btn-info.attr-active.attr-focus,.attr-btn-info.attr-active:focus,.attr-btn-info.attr-active:hover,.attr-btn-info:active.attr-focus,.attr-btn-info:active:focus,.attr-btn-info:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-info.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-info:focus,.attr-open>.attr-dropdown-toggle.attr-btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.attr-btn-info.attr-active,.attr-btn-info:active,.attr-open>.attr-dropdown-toggle.attr-btn-info{background-image:none}.attr-btn-info.attr-disabled.attr-focus,.attr-btn-info.attr-disabled:focus,.attr-btn-info.attr-disabled:hover,.attr-btn-info[disabled].attr-focus,.attr-btn-info[disabled]:focus,.attr-btn-info[disabled]:hover,fieldset[disabled] .attr-btn-info.attr-focus,fieldset[disabled] .attr-btn-info:focus,fieldset[disabled] .attr-btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.attr-btn-info .attr-badge{color:#5bc0de;background-color:#fff}.attr-btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.attr-btn-warning.attr-focus,.attr-btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.attr-btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.attr-btn-warning.attr-active,.attr-btn-warning:active,.attr-open>.attr-dropdown-toggle.attr-btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.attr-btn-warning.attr-active.attr-focus,.attr-btn-warning.attr-active:focus,.attr-btn-warning.attr-active:hover,.attr-btn-warning:active.attr-focus,.attr-btn-warning:active:focus,.attr-btn-warning:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-warning.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-warning:focus,.attr-open>.attr-dropdown-toggle.attr-btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.attr-btn-warning.attr-active,.attr-btn-warning:active,.attr-open>.attr-dropdown-toggle.attr-btn-warning{background-image:none}.attr-btn-warning.attr-disabled.attr-focus,.attr-btn-warning.attr-disabled:focus,.attr-btn-warning.attr-disabled:hover,.attr-btn-warning[disabled].attr-focus,.attr-btn-warning[disabled]:focus,.attr-btn-warning[disabled]:hover,fieldset[disabled] .attr-btn-warning.attr-focus,fieldset[disabled] .attr-btn-warning:focus,fieldset[disabled] .attr-btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.attr-btn-warning .attr-badge{color:#f0ad4e;background-color:#fff}.attr-btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.attr-btn-danger.attr-focus,.attr-btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.attr-btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.attr-btn-danger.attr-active,.attr-btn-danger:active,.attr-open>.attr-dropdown-toggle.attr-btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.attr-btn-danger.attr-active.attr-focus,.attr-btn-danger.attr-active:focus,.attr-btn-danger.attr-active:hover,.attr-btn-danger:active.attr-focus,.attr-btn-danger:active:focus,.attr-btn-danger:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-danger.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-danger:focus,.attr-open>.attr-dropdown-toggle.attr-btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.attr-btn-danger.attr-active,.attr-btn-danger:active,.attr-open>.attr-dropdown-toggle.attr-btn-danger{background-image:none}.attr-btn-danger.attr-disabled.attr-focus,.attr-btn-danger.attr-disabled:focus,.attr-btn-danger.attr-disabled:hover,.attr-btn-danger[disabled].attr-focus,.attr-btn-danger[disabled]:focus,.attr-btn-danger[disabled]:hover,fieldset[disabled] .attr-btn-danger.attr-focus,fieldset[disabled] .attr-btn-danger:focus,fieldset[disabled] .attr-btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.attr-btn-danger .attr-badge{color:#d9534f;background-color:#fff}.attr-btn-link{font-weight:400;color:#337ab7;border-radius:0}.attr-btn-link,.attr-btn-link.attr-active,.attr-btn-link:active,.attr-btn-link[disabled],fieldset[disabled] .attr-btn-link{background-color:transparent;box-shadow:none}.attr-btn-link,.attr-btn-link:active,.attr-btn-link:focus,.attr-btn-link:hover{border-color:transparent}.attr-btn-link:focus,.attr-btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.attr-btn-link[disabled]:focus,.attr-btn-link[disabled]:hover,fieldset[disabled] .attr-btn-link:focus,fieldset[disabled] .attr-btn-link:hover{color:#777;text-decoration:none}.attr-btn-group-lg>.attr-btn,.attr-btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.attr-btn-group-sm>.attr-btn,.attr-btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.attr-btn-group-xs>.attr-btn,.attr-btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.attr-btn-block{display:block;width:100%}.attr-btn-block+.attr-btn-block{margin-top:5px}input[type=button].attr-btn-block,input[type=reset].attr-btn-block,input[type=submit].attr-btn-block{width:100%}.attr-fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.attr-fade.attr-in{opacity:1}.attr-collapse{display:none}.attr-collapse.attr-in{display:block}tr.attr-collapse.attr-in{display:table-row}tbody.attr-collapse.attr-in{display:table-row-group}.attr-collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;transition-property:height,visibility}.attr-caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-right:4px solid transparent;border-left:4px solid transparent}.attr-dropdown,.attr-dropup{position:relative}.attr-dropdown-toggle:focus{outline:0}.attr-dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;box-shadow:0 6px 12px rgba(0,0,0,.175)}.attr-dropdown-menu.attr-pull-right{right:0;left:auto}.attr-dropdown-menu .attr-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.attr-dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.attr-dropdown-menu>li>a:focus,.attr-dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.attr-dropdown-menu>.attr-active>a,.attr-dropdown-menu>.attr-active>a:focus,.attr-dropdown-menu>.attr-active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.attr-dropdown-menu>.attr-disabled>a,.attr-dropdown-menu>.attr-disabled>a:focus,.attr-dropdown-menu>.attr-disabled>a:hover{color:#777}.attr-dropdown-menu>.attr-disabled>a:focus,.attr-dropdown-menu>.attr-disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none}.attr-open>.attr-dropdown-menu{display:block}.attr-open>a{outline:0}.attr-dropdown-menu-right{right:0;left:auto}.attr-dropdown-menu-left{right:auto;left:0}.attr-dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.attr-dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.attr-pull-right>.attr-dropdown-menu{right:0;left:auto}.attr-dropup .attr-caret,.attr-navbar-fixed-bottom .attr-dropdown .attr-caret{content:"";border-top:0;border-bottom:4px dashed}.attr-dropup .attr-dropdown-menu,.attr-navbar-fixed-bottom .attr-dropdown .attr-dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.attr-navbar-right .attr-dropdown-menu{right:0;left:auto}.attr-navbar-right .attr-dropdown-menu-left{right:auto;left:0}}.attr-btn-group,.attr-btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.attr-btn-group-vertical>.attr-btn,.attr-btn-group>.attr-btn{position:relative;float:left}.attr-btn-group-vertical>.attr-btn.attr-active,.attr-btn-group-vertical>.attr-btn:active,.attr-btn-group-vertical>.attr-btn:focus,.attr-btn-group-vertical>.attr-btn:hover,.attr-btn-group>.attr-btn.attr-active,.attr-btn-group>.attr-btn:active,.attr-btn-group>.attr-btn:focus,.attr-btn-group>.attr-btn:hover{z-index:2}.attr-btn-group .attr-btn+.attr-btn,.attr-btn-group .attr-btn+.attr-btn-group,.attr-btn-group .attr-btn-group+.attr-btn,.attr-btn-group .attr-btn-group+.attr-btn-group{margin-left:-1px}.attr-btn-toolbar{margin-left:-5px}.attr-btn-toolbar .attr-btn,.attr-btn-toolbar .attr-btn-group,.attr-btn-toolbar .attr-input-group{float:left}.attr-btn-toolbar>.attr-btn,.attr-btn-toolbar>.attr-btn-group,.attr-btn-toolbar>.attr-input-group{margin-left:5px}.attr-btn-group>.attr-btn:not(:first-child):not(:last-child):not(.attr-dropdown-toggle){border-radius:0}.attr-btn-group>.attr-btn:first-child{margin-left:0}.attr-btn-group>.attr-btn:first-child:not(:last-child):not(.attr-dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.attr-btn-group>.attr-btn:last-child:not(:first-child),.attr-btn-group>.attr-dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.attr-btn-group>.attr-btn-group{float:left}.attr-btn-group>.attr-btn-group:not(:first-child):not(:last-child)>.attr-btn{border-radius:0}.attr-btn-group>.attr-btn-group:first-child:not(:last-child)>.attr-btn:last-child,.attr-btn-group>.attr-btn-group:first-child:not(:last-child)>.attr-dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.attr-btn-group>.attr-btn-group:last-child:not(:first-child)>.attr-btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.attr-btn-group .attr-dropdown-toggle:active,.attr-btn-group.attr-open .attr-dropdown-toggle{outline:0}.attr-btn-group>.attr-btn+.attr-dropdown-toggle{padding-right:8px;padding-left:8px}.attr-btn-group>.attr-btn-lg+.attr-dropdown-toggle{padding-right:12px;padding-left:12px}.attr-btn-group.attr-open .attr-dropdown-toggle{box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.attr-btn-group.attr-open .attr-dropdown-toggle.attr-btn-link{box-shadow:none}.attr-btn .attr-caret{margin-left:0}.attr-btn-lg .attr-caret{border-width:5px 5px 0;border-bottom-width:0}.attr-dropup .attr-btn-lg .attr-caret{border-width:0 5px 5px}.attr-btn-group-vertical>.attr-btn,.attr-btn-group-vertical>.attr-btn-group,.attr-btn-group-vertical>.attr-btn-group>.attr-btn{display:block;float:none;width:100%;max-width:100%}.attr-btn-group-vertical>.attr-btn-group>.attr-btn{float:none}.attr-btn-group-vertical>.attr-btn+.attr-btn,.attr-btn-group-vertical>.attr-btn+.attr-btn-group,.attr-btn-group-vertical>.attr-btn-group+.attr-btn,.attr-btn-group-vertical>.attr-btn-group+.attr-btn-group{margin-top:-1px;margin-left:0}.attr-btn-group-vertical>.attr-btn:not(:first-child):not(:last-child){border-radius:0}.attr-btn-group-vertical>.attr-btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.attr-btn-group-vertical>.attr-btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.attr-btn-group-vertical>.attr-btn-group:not(:first-child):not(:last-child)>.attr-btn{border-radius:0}.attr-btn-group-vertical>.attr-btn-group:first-child:not(:last-child)>.attr-btn:last-child,.attr-btn-group-vertical>.attr-btn-group:first-child:not(:last-child)>.attr-dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.attr-btn-group-vertical>.attr-btn-group:last-child:not(:first-child)>.attr-btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.attr-btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.attr-btn-group-justified>.attr-btn,.attr-btn-group-justified>.attr-btn-group{display:table-cell;float:none;width:1%}.attr-btn-group-justified>.attr-btn-group .attr-btn{width:100%}.attr-btn-group-justified>.attr-btn-group .attr-dropdown-menu{left:auto}[data-toggle=buttons]>.attr-btn input[type=checkbox],[data-toggle=buttons]>.attr-btn input[type=radio],[data-toggle=buttons]>.attr-btn-group>.attr-btn input[type=checkbox],[data-toggle=buttons]>.attr-btn-group>.attr-btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.attr-input-group{position:relative;display:table;border-collapse:separate}.attr-input-group[class*=attr-col-]{float:none;padding-right:0;padding-left:0}.attr-input-group .attr-form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.attr-input-group .attr-form-control:focus{z-index:3}.attr-input-group-lg>.attr-form-control,.attr-input-group-lg>.attr-input-group-addon,.attr-input-group-lg>.attr-input-group-btn>.attr-btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.attr-input-group-lg>.attr-form-control,select.attr-input-group-lg>.attr-input-group-addon,select.attr-input-group-lg>.attr-input-group-btn>.attr-btn{height:46px;line-height:46px}select[multiple].attr-input-group-lg>.attr-form-control,select[multiple].attr-input-group-lg>.attr-input-group-addon,select[multiple].attr-input-group-lg>.attr-input-group-btn>.attr-btn,textarea.attr-input-group-lg>.attr-form-control,textarea.attr-input-group-lg>.attr-input-group-addon,textarea.attr-input-group-lg>.attr-input-group-btn>.attr-btn{height:auto}.attr-input-group-sm>.attr-form-control,.attr-input-group-sm>.attr-input-group-addon,.attr-input-group-sm>.attr-input-group-btn>.attr-btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.attr-input-group-sm>.attr-form-control,select.attr-input-group-sm>.attr-input-group-addon,select.attr-input-group-sm>.attr-input-group-btn>.attr-btn{height:30px;line-height:30px}select[multiple].attr-input-group-sm>.attr-form-control,select[multiple].attr-input-group-sm>.attr-input-group-addon,select[multiple].attr-input-group-sm>.attr-input-group-btn>.attr-btn,textarea.attr-input-group-sm>.attr-form-control,textarea.attr-input-group-sm>.attr-input-group-addon,textarea.attr-input-group-sm>.attr-input-group-btn>.attr-btn{height:auto}.attr-input-group .attr-form-control,.attr-input-group-addon,.attr-input-group-btn{display:table-cell}.attr-input-group .attr-form-control:not(:first-child):not(:last-child),.attr-input-group-addon:not(:first-child):not(:last-child),.attr-input-group-btn:not(:first-child):not(:last-child){border-radius:0}.attr-input-group-addon,.attr-input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.attr-input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.attr-input-group-addon.attr-input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.attr-input-group-addon.attr-input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.attr-input-group-addon input[type=checkbox],.attr-input-group-addon input[type=radio]{margin-top:0}.attr-input-group .attr-form-control:first-child,.attr-input-group-addon:first-child,.attr-input-group-btn:first-child>.attr-btn,.attr-input-group-btn:first-child>.attr-btn-group>.attr-btn,.attr-input-group-btn:first-child>.attr-dropdown-toggle,.attr-input-group-btn:last-child>.attr-btn-group:not(:last-child)>.attr-btn,.attr-input-group-btn:last-child>.attr-btn:not(:last-child):not(.attr-dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.attr-input-group-addon:first-child{border-right:0}.attr-input-group .attr-form-control:last-child,.attr-input-group-addon:last-child,.attr-input-group-btn:first-child>.attr-btn-group:not(:first-child)>.attr-btn,.attr-input-group-btn:first-child>.attr-btn:not(:first-child),.attr-input-group-btn:last-child>.attr-btn,.attr-input-group-btn:last-child>.attr-btn-group>.attr-btn,.attr-input-group-btn:last-child>.attr-dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.attr-input-group-addon:last-child{border-left:0}.attr-input-group-btn{position:relative;font-size:0;white-space:nowrap}.attr-input-group-btn>.attr-btn{position:relative}.attr-input-group-btn>.attr-btn+.attr-btn{margin-left:-1px}.attr-input-group-btn>.attr-btn:active,.attr-input-group-btn>.attr-btn:focus,.attr-input-group-btn>.attr-btn:hover{z-index:2}.attr-input-group-btn:first-child>.attr-btn,.attr-input-group-btn:first-child>.attr-btn-group{margin-right:-1px}.attr-input-group-btn:last-child>.attr-btn,.attr-input-group-btn:last-child>.attr-btn-group{z-index:2;margin-left:-1px}.attr-nav{padding-left:0;margin-bottom:0;list-style:none}.attr-nav>li{position:relative;display:block}.attr-nav>li>a{position:relative;display:block;padding:10px 15px}.attr-nav>li>a:focus,.attr-nav>li>a:hover{text-decoration:none;background-color:#eee}.attr-nav>li.attr-disabled>a{color:#777}.attr-nav>li.attr-disabled>a:focus,.attr-nav>li.attr-disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.attr-nav .attr-open>a,.attr-nav .attr-open>a:focus,.attr-nav .attr-open>a:hover{background-color:#eee;border-color:#337ab7}.attr-nav .attr-nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.attr-nav>li>a>img{max-width:none}.attr-nav-tabs{border-bottom:1px solid #ddd}.attr-nav-tabs>li{float:left;margin-bottom:-1px}.attr-nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.attr-nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.attr-nav-tabs>li.attr-active>a,.attr-nav-tabs>li.attr-active>a:focus,.attr-nav-tabs>li.attr-active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.attr-nav-tabs.attr-nav-justified{width:100%;border-bottom:0}.attr-nav-tabs.attr-nav-justified>li{float:none}.attr-nav-tabs.attr-nav-justified>li>a{margin-bottom:5px;text-align:center}.attr-nav-tabs.attr-nav-justified>.attr-dropdown .attr-dropdown-menu{top:auto;left:auto}@media (min-width:768px){.attr-nav-tabs.attr-nav-justified>li{display:table-cell;width:1%}.attr-nav-tabs.attr-nav-justified>li>a{margin-bottom:0}}.attr-nav-tabs.attr-nav-justified>li>a{margin-right:0;border-radius:4px}.attr-nav-tabs.attr-nav-justified>.attr-active>a,.attr-nav-tabs.attr-nav-justified>.attr-active>a:focus,.attr-nav-tabs.attr-nav-justified>.attr-active>a:hover{border:1px solid #ddd}@media (min-width:768px){.attr-nav-tabs.attr-nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.attr-nav-tabs.attr-nav-justified>.attr-active>a,.attr-nav-tabs.attr-nav-justified>.attr-active>a:focus,.attr-nav-tabs.attr-nav-justified>.attr-active>a:hover{border-bottom-color:#fff}}.attr-nav-pills>li{float:left}.attr-nav-pills>li>a{border-radius:4px}.attr-nav-pills>li+li{margin-left:2px}.attr-nav-pills>li.attr-active>a,.attr-nav-pills>li.attr-active>a:focus,.attr-nav-pills>li.attr-active>a:hover{color:#fff;background-color:#337ab7}.attr-nav-stacked>li{float:none}.attr-nav-stacked>li+li{margin-top:2px;margin-left:0}.attr-nav-justified{width:100%}.attr-nav-justified>li{float:none}.attr-nav-justified>li>a{margin-bottom:5px;text-align:center}.attr-nav-justified>.attr-dropdown .attr-dropdown-menu{top:auto;left:auto}@media (min-width:768px){.attr-nav-justified>li{display:table-cell;width:1%}.attr-nav-justified>li>a{margin-bottom:0}}.attr-nav-tabs-justified{border-bottom:0}.attr-nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.attr-nav-tabs-justified>.attr-active>a,.attr-nav-tabs-justified>.attr-active>a:focus,.attr-nav-tabs-justified>.attr-active>a:hover{border:1px solid #ddd}@media (min-width:768px){.attr-nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.attr-nav-tabs-justified>.attr-active>a,.attr-nav-tabs-justified>.attr-active>a:focus,.attr-nav-tabs-justified>.attr-active>a:hover{border-bottom-color:#fff}}.attr-tab-content>.attr-tab-pane{display:none}.attr-tab-content>.attr-active{display:block}.attr-nav-tabs .attr-dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.attr-navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.attr-navbar{border-radius:4px}}@media (min-width:768px){.attr-navbar-header{float:left}}.attr-navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.attr-navbar-collapse.attr-in{overflow-y:auto}@media (min-width:768px){.attr-navbar-collapse{width:auto;border-top:0;box-shadow:none}.attr-navbar-collapse.attr-collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.attr-navbar-collapse.attr-in{overflow-y:visible}.attr-navbar-fixed-bottom .attr-navbar-collapse,.attr-navbar-fixed-top .attr-navbar-collapse,.attr-navbar-static-top .attr-navbar-collapse{padding-right:0;padding-left:0}}.attr-navbar-fixed-bottom .attr-navbar-collapse,.attr-navbar-fixed-top .attr-navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.attr-navbar-fixed-bottom .attr-navbar-collapse,.attr-navbar-fixed-top .attr-navbar-collapse{max-height:200px}}.attr-container-fluid>.attr-navbar-collapse,.attr-container-fluid>.attr-navbar-header,.attr-container>.attr-navbar-collapse,.attr-container>.attr-navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.attr-container-fluid>.attr-navbar-collapse,.attr-container-fluid>.attr-navbar-header,.attr-container>.attr-navbar-collapse,.attr-container>.attr-navbar-header{margin-right:0;margin-left:0}}.attr-navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.attr-navbar-static-top{border-radius:0}}.attr-navbar-fixed-bottom,.attr-navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.attr-navbar-fixed-bottom,.attr-navbar-fixed-top{border-radius:0}}.attr-navbar-fixed-top{top:0;border-width:0 0 1px}.attr-navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.attr-navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.attr-navbar-brand:focus,.attr-navbar-brand:hover{text-decoration:none}.attr-navbar-brand>img{display:block}@media (min-width:768px){.attr-navbar>.attr-container .attr-navbar-brand,.attr-navbar>.attr-container-fluid .attr-navbar-brand{margin-left:-15px}}.attr-navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.attr-navbar-toggle:focus{outline:0}.attr-navbar-toggle .attr-icon-bar{display:block;width:22px;height:2px;border-radius:1px}.attr-navbar-toggle .attr-icon-bar+.attr-icon-bar{margin-top:4px}@media (min-width:768px){.attr-navbar-toggle{display:none}}.attr-navbar-nav{margin:7.5px -15px}.attr-navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.attr-navbar-nav .attr-open .attr-dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.attr-navbar-nav .attr-open .attr-dropdown-menu .attr-dropdown-header,.attr-navbar-nav .attr-open .attr-dropdown-menu>li>a{padding:5px 15px 5px 25px}.attr-navbar-nav .attr-open .attr-dropdown-menu>li>a{line-height:20px}.attr-navbar-nav .attr-open .attr-dropdown-menu>li>a:focus,.attr-navbar-nav .attr-open .attr-dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.attr-navbar-nav{float:left;margin:0}.attr-navbar-nav>li{float:left}.attr-navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.attr-navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.attr-navbar-form .attr-form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.attr-navbar-form .attr-form-control{display:inline-block;width:auto;vertical-align:middle}.attr-navbar-form .attr-form-control-static{display:inline-block}.attr-navbar-form .attr-input-group{display:inline-table;vertical-align:middle}.attr-navbar-form .attr-input-group .attr-form-control,.attr-navbar-form .attr-input-group .attr-input-group-addon,.attr-navbar-form .attr-input-group .attr-input-group-btn{width:auto}.attr-navbar-form .attr-input-group>.attr-form-control{width:100%}.attr-navbar-form .attr-control-label{margin-bottom:0;vertical-align:middle}.attr-navbar-form .attr-checkbox,.attr-navbar-form .attr-radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.attr-navbar-form .attr-checkbox label,.attr-navbar-form .attr-radio label{padding-left:0}.attr-navbar-form .attr-checkbox input[type=checkbox],.attr-navbar-form .attr-radio input[type=radio]{position:relative;margin-left:0}.attr-navbar-form .attr-has-feedback .attr-form-control-feedback{top:0}}@media (max-width:767px){.attr-navbar-form .attr-form-group{margin-bottom:5px}.attr-navbar-form .attr-form-group:last-child{margin-bottom:0}}@media (min-width:768px){.attr-navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;box-shadow:none}}.attr-navbar-nav>li>.attr-dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.attr-navbar-fixed-bottom .attr-navbar-nav>li>.attr-dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.attr-navbar-btn{margin-top:8px;margin-bottom:8px}.attr-navbar-btn.attr-btn-sm{margin-top:10px;margin-bottom:10px}.attr-navbar-btn.attr-btn-xs{margin-top:14px;margin-bottom:14px}.attr-navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.attr-navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.attr-navbar-left{float:left!important}.attr-navbar-right{float:right!important;margin-right:-15px}.attr-navbar-right~.attr-navbar-right{margin-right:0}}.attr-navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.attr-navbar-default .attr-navbar-brand{color:#777}.attr-navbar-default .attr-navbar-brand:focus,.attr-navbar-default .attr-navbar-brand:hover{color:#5e5e5e;background-color:transparent}.attr-navbar-default .attr-navbar-text{color:#777}.attr-navbar-default .attr-navbar-nav>li>a{color:#777}.attr-navbar-default .attr-navbar-nav>li>a:focus,.attr-navbar-default .attr-navbar-nav>li>a:hover{color:#333;background-color:transparent}.attr-navbar-default .attr-navbar-nav>.attr-active>a,.attr-navbar-default .attr-navbar-nav>.attr-active>a:focus,.attr-navbar-default .attr-navbar-nav>.attr-active>a:hover{color:#555;background-color:#e7e7e7}.attr-navbar-default .attr-navbar-nav>.attr-disabled>a,.attr-navbar-default .attr-navbar-nav>.attr-disabled>a:focus,.attr-navbar-default .attr-navbar-nav>.attr-disabled>a:hover{color:#ccc;background-color:transparent}.attr-navbar-default .attr-navbar-toggle{border-color:#ddd}.attr-navbar-default .attr-navbar-toggle:focus,.attr-navbar-default .attr-navbar-toggle:hover{background-color:#ddd}.attr-navbar-default .attr-navbar-toggle .attr-icon-bar{background-color:#888}.attr-navbar-default .attr-navbar-collapse,.attr-navbar-default .attr-navbar-form{border-color:#e7e7e7}.attr-navbar-default .attr-navbar-nav>.attr-open>a,.attr-navbar-default .attr-navbar-nav>.attr-open>a:focus,.attr-navbar-default .attr-navbar-nav>.attr-open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>li>a{color:#777}.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>li>a:focus,.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>li>a:hover{color:#333;background-color:transparent}.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-active>a,.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-active>a:focus,.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-active>a:hover{color:#555;background-color:#e7e7e7}.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-disabled>a,.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-disabled>a:focus,.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-disabled>a:hover{color:#ccc;background-color:transparent}}.attr-navbar-default .attr-navbar-link{color:#777}.attr-navbar-default .attr-navbar-link:hover{color:#333}.attr-navbar-default .attr-btn-link{color:#777}.attr-navbar-default .attr-btn-link:focus,.attr-navbar-default .attr-btn-link:hover{color:#333}.attr-navbar-default .attr-btn-link[disabled]:focus,.attr-navbar-default .attr-btn-link[disabled]:hover,fieldset[disabled] .attr-navbar-default .attr-btn-link:focus,fieldset[disabled] .attr-navbar-default .attr-btn-link:hover{color:#ccc}.attr-navbar-inverse{background-color:#222;border-color:#080808}.attr-navbar-inverse .attr-navbar-brand{color:#9d9d9d}.attr-navbar-inverse .attr-navbar-brand:focus,.attr-navbar-inverse .attr-navbar-brand:hover{color:#fff;background-color:transparent}.attr-navbar-inverse .attr-navbar-text{color:#9d9d9d}.attr-navbar-inverse .attr-navbar-nav>li>a{color:#9d9d9d}.attr-navbar-inverse .attr-navbar-nav>li>a:focus,.attr-navbar-inverse .attr-navbar-nav>li>a:hover{color:#fff;background-color:transparent}.attr-navbar-inverse .attr-navbar-nav>.attr-active>a,.attr-navbar-inverse .attr-navbar-nav>.attr-active>a:focus,.attr-navbar-inverse .attr-navbar-nav>.attr-active>a:hover{color:#fff;background-color:#080808}.attr-navbar-inverse .attr-navbar-nav>.attr-disabled>a,.attr-navbar-inverse .attr-navbar-nav>.attr-disabled>a:focus,.attr-navbar-inverse .attr-navbar-nav>.attr-disabled>a:hover{color:#444;background-color:transparent}.attr-navbar-inverse .attr-navbar-toggle{border-color:#333}.attr-navbar-inverse .attr-navbar-toggle:focus,.attr-navbar-inverse .attr-navbar-toggle:hover{background-color:#333}.attr-navbar-inverse .attr-navbar-toggle .attr-icon-bar{background-color:#fff}.attr-navbar-inverse .attr-navbar-collapse,.attr-navbar-inverse .attr-navbar-form{border-color:#101010}.attr-navbar-inverse .attr-navbar-nav>.attr-open>a,.attr-navbar-inverse .attr-navbar-nav>.attr-open>a:focus,.attr-navbar-inverse .attr-navbar-nav>.attr-open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-dropdown-header{border-color:#080808}.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu .attr-divider{background-color:#080808}.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>li>a{color:#9d9d9d}.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>li>a:focus,.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-active>a,.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-active>a:focus,.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-active>a:hover{color:#fff;background-color:#080808}.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-disabled>a,.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-disabled>a:focus,.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-disabled>a:hover{color:#444;background-color:transparent}}.attr-navbar-inverse .attr-navbar-link{color:#9d9d9d}.attr-navbar-inverse .attr-navbar-link:hover{color:#fff}.attr-navbar-inverse .attr-btn-link{color:#9d9d9d}.attr-navbar-inverse .attr-btn-link:focus,.attr-navbar-inverse .attr-btn-link:hover{color:#fff}.attr-navbar-inverse .attr-btn-link[disabled]:focus,.attr-navbar-inverse .attr-btn-link[disabled]:hover,fieldset[disabled] .attr-navbar-inverse .attr-btn-link:focus,fieldset[disabled] .attr-navbar-inverse .attr-btn-link:hover{color:#444}.attr-breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.attr-breadcrumb>li{display:inline-block}.attr-breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.attr-breadcrumb>.attr-active{color:#777}.attr-pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.attr-pagination>li{display:inline}.attr-pagination>li>a,.attr-pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.attr-pagination>li:first-child>a,.attr-pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.attr-pagination>li:last-child>a,.attr-pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.attr-pagination>li>a:focus,.attr-pagination>li>a:hover,.attr-pagination>li>span:focus,.attr-pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.attr-pagination>.attr-active>a,.attr-pagination>.attr-active>a:focus,.attr-pagination>.attr-active>a:hover,.attr-pagination>.attr-active>span,.attr-pagination>.attr-active>span:focus,.attr-pagination>.attr-active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.attr-pagination>.attr-disabled>a,.attr-pagination>.attr-disabled>a:focus,.attr-pagination>.attr-disabled>a:hover,.attr-pagination>.attr-disabled>span,.attr-pagination>.attr-disabled>span:focus,.attr-pagination>.attr-disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.attr-pagination-lg>li>a,.attr-pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.attr-pagination-lg>li:first-child>a,.attr-pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.attr-pagination-lg>li:last-child>a,.attr-pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.attr-pagination-sm>li>a,.attr-pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.attr-pagination-sm>li:first-child>a,.attr-pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.attr-pagination-sm>li:last-child>a,.attr-pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.attr-pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.attr-pager li{display:inline}.attr-pager li>a,.attr-pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.attr-pager li>a:focus,.attr-pager li>a:hover{text-decoration:none;background-color:#eee}.attr-pager .attr-next>a,.attr-pager .attr-next>span{float:right}.attr-pager .attr-previous>a,.attr-pager .attr-previous>span{float:left}.attr-pager .attr-disabled>a,.attr-pager .attr-disabled>a:focus,.attr-pager .attr-disabled>a:hover,.attr-pager .attr-disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.attr-label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.attr-label:focus,a.attr-label:hover{color:#fff;text-decoration:none;cursor:pointer}.attr-label:empty{display:none}.attr-btn .attr-label{position:relative;top:-1px}.attr-label-default{background-color:#777}.attr-label-default[href]:focus,.attr-label-default[href]:hover{background-color:#5e5e5e}.attr-label-primary{background-color:#337ab7}.attr-label-primary[href]:focus,.attr-label-primary[href]:hover{background-color:#286090}.attr-label-success{background-color:#5cb85c}.attr-label-success[href]:focus,.attr-label-success[href]:hover{background-color:#449d44}.attr-label-info{background-color:#5bc0de}.attr-label-info[href]:focus,.attr-label-info[href]:hover{background-color:#31b0d5}.attr-label-warning{background-color:#f0ad4e}.attr-label-warning[href]:focus,.attr-label-warning[href]:hover{background-color:#ec971f}.attr-label-danger{background-color:#d9534f}.attr-label-danger[href]:focus,.attr-label-danger[href]:hover{background-color:#c9302c}.attr-badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.attr-badge:empty{display:none}.attr-btn .attr-badge{position:relative;top:-1px}.attr-btn-group-xs>.attr-btn .attr-badge,.attr-btn-xs .attr-badge{top:0;padding:1px 5px}a.attr-badge:focus,a.attr-badge:hover{color:#fff;text-decoration:none;cursor:pointer}.attr-list-group-item.attr-active>.attr-badge,.attr-nav-pills>.attr-active>a>.attr-badge{color:#337ab7;background-color:#fff}.attr-list-group-item>.attr-badge{float:right}.attr-list-group-item>.attr-badge+.attr-badge{margin-right:5px}.attr-nav-pills>li>a>.attr-badge{margin-left:3px}.attr-jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.attr-jumbotron .attr-h1,.attr-jumbotron h1{color:inherit}.attr-jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.attr-jumbotron>hr{border-top-color:#d5d5d5}.attr-container .attr-jumbotron,.attr-container-fluid .attr-jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.attr-jumbotron .attr-container{max-width:100%}@media screen and (min-width:768px){.attr-jumbotron{padding-top:48px;padding-bottom:48px}.attr-container .attr-jumbotron,.attr-container-fluid .attr-jumbotron{padding-right:60px;padding-left:60px}.attr-jumbotron .attr-h1,.attr-jumbotron h1{font-size:63px}}.attr-thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.attr-thumbnail a>img,.attr-thumbnail>img{margin-right:auto;margin-left:auto}a.attr-thumbnail.attr-active,a.attr-thumbnail:focus,a.attr-thumbnail:hover{border-color:#337ab7}.attr-thumbnail .attr-caption{padding:9px;color:#333}.attr-alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.attr-alert h4{margin-top:0;color:inherit}.attr-alert .attr-alert-link{font-weight:700}.attr-alert>p,.attr-alert>ul{margin-bottom:0}.attr-alert>p+p{margin-top:5px}.attr-alert-dismissable,.attr-alert-dismissible{padding-right:35px}.attr-alert-dismissable .attr-close,.attr-alert-dismissible .attr-close{position:relative;top:-2px;right:-21px;color:inherit}.attr-alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.attr-alert-success hr{border-top-color:#c9e2b3}.attr-alert-success .attr-alert-link{color:#2b542c}.attr-alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.attr-alert-info hr{border-top-color:#a6e1ec}.attr-alert-info .attr-alert-link{color:#245269}.attr-alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.attr-alert-warning hr{border-top-color:#f7e1b5}.attr-alert-warning .attr-alert-link{color:#66512c}.attr-alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.attr-alert-danger hr{border-top-color:#e4b9c0}.attr-alert-danger .attr-alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.attr-progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.attr-progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;transition:width .6s ease}.attr-progress-bar-striped,.attr-progress-striped .attr-progress-bar{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:40px 40px}.attr-progress-bar.attr-active,.attr-progress.attr-active .attr-progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.attr-progress-bar-success{background-color:#5cb85c}.attr-progress-striped .attr-progress-bar-success{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.attr-progress-bar-info{background-color:#5bc0de}.attr-progress-striped .attr-progress-bar-info{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.attr-progress-bar-warning{background-color:#f0ad4e}.attr-progress-striped .attr-progress-bar-warning{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.attr-progress-bar-danger{background-color:#d9534f}.attr-progress-striped .attr-progress-bar-danger{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.attr-media{margin-top:15px}.attr-media:first-child{margin-top:0}.attr-media,.attr-media-body{overflow:hidden;zoom:1}.attr-media-body{width:10000px}.attr-media-object{display:block}.attr-media-object.attr-img-thumbnail{max-width:none}.attr-media-right,.attr-media>.attr-pull-right{padding-left:10px}.attr-media-left,.attr-media>.attr-pull-left{padding-right:10px}.attr-media-body,.attr-media-left,.attr-media-right{display:table-cell;vertical-align:top}.attr-media-middle{vertical-align:middle}.attr-media-bottom{vertical-align:bottom}.attr-media-heading{margin-top:0;margin-bottom:5px}.attr-media-list{padding-left:0;list-style:none}.attr-list-group{padding-left:0;margin-bottom:20px}.attr-list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.attr-list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.attr-list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.attr-list-group-item,button.attr-list-group-item{color:#555}a.attr-list-group-item .attr-list-group-item-heading,button.attr-list-group-item .attr-list-group-item-heading{color:#333}a.attr-list-group-item:focus,a.attr-list-group-item:hover,button.attr-list-group-item:focus,button.attr-list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.attr-list-group-item{width:100%;text-align:left}.attr-list-group-item.attr-disabled,.attr-list-group-item.attr-disabled:focus,.attr-list-group-item.attr-disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.attr-list-group-item.attr-disabled .attr-list-group-item-heading,.attr-list-group-item.attr-disabled:focus .attr-list-group-item-heading,.attr-list-group-item.attr-disabled:hover .attr-list-group-item-heading{color:inherit}.attr-list-group-item.attr-disabled .attr-list-group-item-text,.attr-list-group-item.attr-disabled:focus .attr-list-group-item-text,.attr-list-group-item.attr-disabled:hover .attr-list-group-item-text{color:#777}.attr-list-group-item.attr-active,.attr-list-group-item.attr-active:focus,.attr-list-group-item.attr-active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.attr-list-group-item.attr-active .attr-list-group-item-heading,.attr-list-group-item.attr-active .attr-list-group-item-heading>.attr-small,.attr-list-group-item.attr-active .attr-list-group-item-heading>small,.attr-list-group-item.attr-active:focus .attr-list-group-item-heading,.attr-list-group-item.attr-active:focus .attr-list-group-item-heading>.attr-small,.attr-list-group-item.attr-active:focus .attr-list-group-item-heading>small,.attr-list-group-item.attr-active:hover .attr-list-group-item-heading,.attr-list-group-item.attr-active:hover .attr-list-group-item-heading>.attr-small,.attr-list-group-item.attr-active:hover .attr-list-group-item-heading>small{color:inherit}.attr-list-group-item.attr-active .attr-list-group-item-text,.attr-list-group-item.attr-active:focus .attr-list-group-item-text,.attr-list-group-item.attr-active:hover .attr-list-group-item-text{color:#c7ddef}.attr-list-group-item-success{color:#3c763d;background-color:#dff0d8}a.attr-list-group-item-success,button.attr-list-group-item-success{color:#3c763d}a.attr-list-group-item-success .attr-list-group-item-heading,button.attr-list-group-item-success .attr-list-group-item-heading{color:inherit}a.attr-list-group-item-success:focus,a.attr-list-group-item-success:hover,button.attr-list-group-item-success:focus,button.attr-list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.attr-list-group-item-success.attr-active,a.attr-list-group-item-success.attr-active:focus,a.attr-list-group-item-success.attr-active:hover,button.attr-list-group-item-success.attr-active,button.attr-list-group-item-success.attr-active:focus,button.attr-list-group-item-success.attr-active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.attr-list-group-item-info{color:#31708f;background-color:#d9edf7}a.attr-list-group-item-info,button.attr-list-group-item-info{color:#31708f}a.attr-list-group-item-info .attr-list-group-item-heading,button.attr-list-group-item-info .attr-list-group-item-heading{color:inherit}a.attr-list-group-item-info:focus,a.attr-list-group-item-info:hover,button.attr-list-group-item-info:focus,button.attr-list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.attr-list-group-item-info.attr-active,a.attr-list-group-item-info.attr-active:focus,a.attr-list-group-item-info.attr-active:hover,button.attr-list-group-item-info.attr-active,button.attr-list-group-item-info.attr-active:focus,button.attr-list-group-item-info.attr-active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.attr-list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.attr-list-group-item-warning,button.attr-list-group-item-warning{color:#8a6d3b}a.attr-list-group-item-warning .attr-list-group-item-heading,button.attr-list-group-item-warning .attr-list-group-item-heading{color:inherit}a.attr-list-group-item-warning:focus,a.attr-list-group-item-warning:hover,button.attr-list-group-item-warning:focus,button.attr-list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.attr-list-group-item-warning.attr-active,a.attr-list-group-item-warning.attr-active:focus,a.attr-list-group-item-warning.attr-active:hover,button.attr-list-group-item-warning.attr-active,button.attr-list-group-item-warning.attr-active:focus,button.attr-list-group-item-warning.attr-active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.attr-list-group-item-danger{color:#a94442;background-color:#f2dede}a.attr-list-group-item-danger,button.attr-list-group-item-danger{color:#a94442}a.attr-list-group-item-danger .attr-list-group-item-heading,button.attr-list-group-item-danger .attr-list-group-item-heading{color:inherit}a.attr-list-group-item-danger:focus,a.attr-list-group-item-danger:hover,button.attr-list-group-item-danger:focus,button.attr-list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.attr-list-group-item-danger.attr-active,a.attr-list-group-item-danger.attr-active:focus,a.attr-list-group-item-danger.attr-active:hover,button.attr-list-group-item-danger.attr-active,button.attr-list-group-item-danger.attr-active:focus,button.attr-list-group-item-danger.attr-active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.attr-list-group-item-heading{margin-top:0;margin-bottom:5px}.attr-list-group-item-text{margin-bottom:0;line-height:1.3}.attr-panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;box-shadow:0 1px 1px rgba(0,0,0,.05)}.attr-panel-body{padding:15px}.attr-panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.attr-panel-heading>.attr-dropdown .attr-dropdown-toggle{color:inherit}.attr-panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.attr-panel-title>.attr-small,.attr-panel-title>.attr-small>a,.attr-panel-title>a,.attr-panel-title>small,.attr-panel-title>small>a{color:inherit}.attr-panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.attr-panel>.attr-list-group,.attr-panel>.attr-panel-collapse>.attr-list-group{margin-bottom:0}.attr-panel>.attr-list-group .attr-list-group-item,.attr-panel>.attr-panel-collapse>.attr-list-group .attr-list-group-item{border-width:1px 0;border-radius:0}.attr-panel>.attr-list-group:first-child .attr-list-group-item:first-child,.attr-panel>.attr-panel-collapse>.attr-list-group:first-child .attr-list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.attr-panel>.attr-list-group:last-child .attr-list-group-item:last-child,.attr-panel>.attr-panel-collapse>.attr-list-group:last-child .attr-list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.attr-panel>.attr-panel-heading+.attr-panel-collapse>.attr-list-group .attr-list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.attr-panel-heading+.attr-list-group .attr-list-group-item:first-child{border-top-width:0}.attr-list-group+.attr-panel-footer{border-top-width:0}.attr-panel>.attr-panel-collapse>.attr-table,.attr-panel>.attr-table,.attr-panel>.attr-table-responsive>.attr-table{margin-bottom:0}.attr-panel>.attr-panel-collapse>.attr-table caption,.attr-panel>.attr-table caption,.attr-panel>.attr-table-responsive>.attr-table caption{padding-right:15px;padding-left:15px}.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child,.attr-panel>.attr-table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>tbody:first-child>tr:first-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>thead:first-child>tr:first-child,.attr-panel>.attr-table:first-child>tbody:first-child>tr:first-child,.attr-panel>.attr-table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>tbody:first-child>tr:first-child td:first-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>tbody:first-child>tr:first-child th:first-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>thead:first-child>tr:first-child td:first-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>thead:first-child>tr:first-child th:first-child,.attr-panel>.attr-table:first-child>tbody:first-child>tr:first-child td:first-child,.attr-panel>.attr-table:first-child>tbody:first-child>tr:first-child th:first-child,.attr-panel>.attr-table:first-child>thead:first-child>tr:first-child td:first-child,.attr-panel>.attr-table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>tbody:first-child>tr:first-child td:last-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>tbody:first-child>tr:first-child th:last-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>thead:first-child>tr:first-child td:last-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>thead:first-child>tr:first-child th:last-child,.attr-panel>.attr-table:first-child>tbody:first-child>tr:first-child td:last-child,.attr-panel>.attr-table:first-child>tbody:first-child>tr:first-child th:last-child,.attr-panel>.attr-table:first-child>thead:first-child>tr:first-child td:last-child,.attr-panel>.attr-table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child,.attr-panel>.attr-table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tbody:last-child>tr:last-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tfoot:last-child>tr:last-child,.attr-panel>.attr-table:last-child>tbody:last-child>tr:last-child,.attr-panel>.attr-table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tbody:last-child>tr:last-child td:first-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tbody:last-child>tr:last-child th:first-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tfoot:last-child>tr:last-child td:first-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tfoot:last-child>tr:last-child th:first-child,.attr-panel>.attr-table:last-child>tbody:last-child>tr:last-child td:first-child,.attr-panel>.attr-table:last-child>tbody:last-child>tr:last-child th:first-child,.attr-panel>.attr-table:last-child>tfoot:last-child>tr:last-child td:first-child,.attr-panel>.attr-table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tbody:last-child>tr:last-child td:last-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tbody:last-child>tr:last-child th:last-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tfoot:last-child>tr:last-child td:last-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tfoot:last-child>tr:last-child th:last-child,.attr-panel>.attr-table:last-child>tbody:last-child>tr:last-child td:last-child,.attr-panel>.attr-table:last-child>tbody:last-child>tr:last-child th:last-child,.attr-panel>.attr-table:last-child>tfoot:last-child>tr:last-child td:last-child,.attr-panel>.attr-table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.attr-panel>.attr-panel-body+.attr-table,.attr-panel>.attr-panel-body+.attr-table-responsive,.attr-panel>.attr-table+.attr-panel-body,.attr-panel>.attr-table-responsive+.attr-panel-body{border-top:1px solid #ddd}.attr-panel>.attr-table>tbody:first-child>tr:first-child td,.attr-panel>.attr-table>tbody:first-child>tr:first-child th{border-top:0}.attr-panel>.attr-table-bordered,.attr-panel>.attr-table-responsive>.attr-table-bordered{border:0}.attr-panel>.attr-table-bordered>tbody>tr>td:first-child,.attr-panel>.attr-table-bordered>tbody>tr>th:first-child,.attr-panel>.attr-table-bordered>tfoot>tr>td:first-child,.attr-panel>.attr-table-bordered>tfoot>tr>th:first-child,.attr-panel>.attr-table-bordered>thead>tr>td:first-child,.attr-panel>.attr-table-bordered>thead>tr>th:first-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr>td:first-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr>th:first-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tfoot>tr>td:first-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tfoot>tr>th:first-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>thead>tr>td:first-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>thead>tr>th:first-child{border-left:0}.attr-panel>.attr-table-bordered>tbody>tr>td:last-child,.attr-panel>.attr-table-bordered>tbody>tr>th:last-child,.attr-panel>.attr-table-bordered>tfoot>tr>td:last-child,.attr-panel>.attr-table-bordered>tfoot>tr>th:last-child,.attr-panel>.attr-table-bordered>thead>tr>td:last-child,.attr-panel>.attr-table-bordered>thead>tr>th:last-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr>td:last-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr>th:last-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tfoot>tr>td:last-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tfoot>tr>th:last-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>thead>tr>td:last-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>thead>tr>th:last-child{border-right:0}.attr-panel>.attr-table-bordered>tbody>tr:first-child>td,.attr-panel>.attr-table-bordered>tbody>tr:first-child>th,.attr-panel>.attr-table-bordered>thead>tr:first-child>td,.attr-panel>.attr-table-bordered>thead>tr:first-child>th,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr:first-child>td,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr:first-child>th,.attr-panel>.attr-table-responsive>.attr-table-bordered>thead>tr:first-child>td,.attr-panel>.attr-table-responsive>.attr-table-bordered>thead>tr:first-child>th{border-bottom:0}.attr-panel>.attr-table-bordered>tbody>tr:last-child>td,.attr-panel>.attr-table-bordered>tbody>tr:last-child>th,.attr-panel>.attr-table-bordered>tfoot>tr:last-child>td,.attr-panel>.attr-table-bordered>tfoot>tr:last-child>th,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr:last-child>td,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr:last-child>th,.attr-panel>.attr-table-responsive>.attr-table-bordered>tfoot>tr:last-child>td,.attr-panel>.attr-table-responsive>.attr-table-bordered>tfoot>tr:last-child>th{border-bottom:0}.attr-panel>.attr-table-responsive{margin-bottom:0;border:0}.attr-panel-group{margin-bottom:20px}.attr-panel-group .attr-panel{margin-bottom:0;border-radius:4px}.attr-panel-group .attr-panel+.attr-panel{margin-top:5px}.attr-panel-group .attr-panel-heading{border-bottom:0}.attr-panel-group .attr-panel-heading+.attr-panel-collapse>.attr-list-group,.attr-panel-group .attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top:1px solid #ddd}.attr-panel-group .attr-panel-footer{border-top:0}.attr-panel-group .attr-panel-footer+.attr-panel-collapse .attr-panel-body{border-bottom:1px solid #ddd}.attr-panel-default{border-color:#ddd}.attr-panel-default>.attr-panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.attr-panel-default>.attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top-color:#ddd}.attr-panel-default>.attr-panel-heading .attr-badge{color:#f5f5f5;background-color:#333}.attr-panel-default>.attr-panel-footer+.attr-panel-collapse>.attr-panel-body{border-bottom-color:#ddd}.attr-panel-primary{border-color:#337ab7}.attr-panel-primary>.attr-panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.attr-panel-primary>.attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top-color:#337ab7}.attr-panel-primary>.attr-panel-heading .attr-badge{color:#337ab7;background-color:#fff}.attr-panel-primary>.attr-panel-footer+.attr-panel-collapse>.attr-panel-body{border-bottom-color:#337ab7}.attr-panel-success{border-color:#d6e9c6}.attr-panel-success>.attr-panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.attr-panel-success>.attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top-color:#d6e9c6}.attr-panel-success>.attr-panel-heading .attr-badge{color:#dff0d8;background-color:#3c763d}.attr-panel-success>.attr-panel-footer+.attr-panel-collapse>.attr-panel-body{border-bottom-color:#d6e9c6}.attr-panel-info{border-color:#bce8f1}.attr-panel-info>.attr-panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.attr-panel-info>.attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top-color:#bce8f1}.attr-panel-info>.attr-panel-heading .attr-badge{color:#d9edf7;background-color:#31708f}.attr-panel-info>.attr-panel-footer+.attr-panel-collapse>.attr-panel-body{border-bottom-color:#bce8f1}.attr-panel-warning{border-color:#faebcc}.attr-panel-warning>.attr-panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.attr-panel-warning>.attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top-color:#faebcc}.attr-panel-warning>.attr-panel-heading .attr-badge{color:#fcf8e3;background-color:#8a6d3b}.attr-panel-warning>.attr-panel-footer+.attr-panel-collapse>.attr-panel-body{border-bottom-color:#faebcc}.attr-panel-danger{border-color:#ebccd1}.attr-panel-danger>.attr-panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.attr-panel-danger>.attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top-color:#ebccd1}.attr-panel-danger>.attr-panel-heading .attr-badge{color:#f2dede;background-color:#a94442}.attr-panel-danger>.attr-panel-footer+.attr-panel-collapse>.attr-panel-body{border-bottom-color:#ebccd1}.attr-embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.attr-embed-responsive .attr-embed-responsive-item,.attr-embed-responsive embed,.attr-embed-responsive iframe,.attr-embed-responsive object,.attr-embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.attr-embed-responsive-16by9{padding-bottom:56.25%}.attr-embed-responsive-4by3{padding-bottom:75%}.attr-well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.attr-well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.attr-well-lg{padding:24px;border-radius:6px}.attr-well-sm{padding:9px;border-radius:3px}.attr-close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2}.attr-close:focus,.attr-close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5}button.attr-close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.attr-modal-open{overflow:hidden}.attr-modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.attr-modal.attr-fade .attr-modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transition:-webkit-transform .3s ease-out,-webkit-transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-25%);transform:translate(0,-25%)}.attr-modal.attr-in .attr-modal-dialog{-webkit-transform:translate(0,0);transform:translate(0,0)}.attr-modal-open .attr-modal{overflow-x:hidden;overflow-y:auto}.attr-modal-dialog{position:relative;width:auto;margin:10px}.attr-modal-content{position:relative;background-color:#fff;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;box-shadow:0 3px 9px rgba(0,0,0,.5)}.attr-modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.attr-modal-backdrop.attr-fade{opacity:0}.attr-modal-backdrop.attr-in{opacity:.5}.attr-modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.attr-modal-header .attr-close{margin-top:-2px}.attr-modal-title{margin:0;line-height:1.42857143}.attr-modal-body{position:relative;padding:15px}.attr-modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.attr-modal-footer .attr-btn+.attr-btn{margin-bottom:0;margin-left:5px}.attr-modal-footer .attr-btn-group .attr-btn+.attr-btn{margin-left:-1px}.attr-modal-footer .attr-btn-block+.attr-btn-block{margin-left:0}.attr-modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.attr-modal-dialog{width:600px;margin:30px auto}.attr-modal-content{box-shadow:0 5px 15px rgba(0,0,0,.5)}.attr-modal-sm{width:300px}}@media (min-width:992px){.attr-modal-lg{width:900px}}.attr-tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;opacity:0;line-break:auto}.attr-tooltip.attr-in{opacity:.9}.attr-tooltip.attr-top{padding:5px 0;margin-top:-3px}.attr-tooltip.attr-right{padding:0 5px;margin-left:3px}.attr-tooltip.attr-bottom{padding:5px 0;margin-top:3px}.attr-tooltip.attr-left{padding:0 5px;margin-left:-3px}.attr-tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.attr-tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.attr-tooltip.attr-top .attr-tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.attr-tooltip.attr-top-left .attr-tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.attr-tooltip.attr-top-right .attr-tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.attr-tooltip.attr-right .attr-tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.attr-tooltip.attr-left .attr-tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.attr-tooltip.attr-bottom .attr-tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.attr-tooltip.attr-bottom-left .attr-tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.attr-tooltip.attr-bottom-right .attr-tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.attr-popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.attr-popover.attr-top{margin-top:-10px}.attr-popover.attr-right{margin-left:10px}.attr-popover.attr-bottom{margin-top:10px}.attr-popover.attr-left{margin-left:-10px}.attr-popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.attr-popover-content{padding:9px 14px}.attr-popover>.attr-arrow,.attr-popover>.attr-arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.attr-popover>.attr-arrow{border-width:11px}.attr-popover>.attr-arrow:after{content:"";border-width:10px}.attr-popover.attr-top>.attr-arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.attr-popover.attr-top>.attr-arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.attr-popover.attr-right>.attr-arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.attr-popover.attr-right>.attr-arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.attr-popover.attr-bottom>.attr-arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.attr-popover.attr-bottom>.attr-arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.attr-popover.attr-left>.attr-arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.attr-popover.attr-left>.attr-arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.attr-carousel{position:relative}.attr-carousel-inner{position:relative;width:100%;overflow:hidden}.attr-carousel-inner>.attr-item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.attr-carousel-inner>.attr-item>a>img,.attr-carousel-inner>.attr-item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.attr-carousel-inner>.attr-item{-webkit-transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-transition:-webkit-transform .6s ease-in-out,-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.attr-carousel-inner>.attr-item.attr-active.attr-right,.attr-carousel-inner>.attr-item.attr-next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.attr-carousel-inner>.attr-item.attr-active.attr-left,.attr-carousel-inner>.attr-item.attr-prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.attr-carousel-inner>.attr-item.attr-active,.attr-carousel-inner>.attr-item.attr-next.attr-left,.attr-carousel-inner>.attr-item.attr-prev.attr-right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.attr-carousel-inner>.attr-active,.attr-carousel-inner>.attr-next,.attr-carousel-inner>.attr-prev{display:block}.attr-carousel-inner>.attr-active{left:0}.attr-carousel-inner>.attr-next,.attr-carousel-inner>.attr-prev{position:absolute;top:0;width:100%}.attr-carousel-inner>.attr-next{left:100%}.attr-carousel-inner>.attr-prev{left:-100%}.attr-carousel-inner>.attr-next.attr-left,.attr-carousel-inner>.attr-prev.attr-right{left:0}.attr-carousel-inner>.attr-active.attr-left{left:-100%}.attr-carousel-inner>.attr-active.attr-right{left:100%}.attr-carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);opacity:.5}.attr-carousel-control.attr-left{background-image:-webkit-gradient(linear,left top,right top,color-stop(0,rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-repeat:repeat-x}.attr-carousel-control.attr-right{right:0;left:auto;background-image:-webkit-gradient(linear,left top,right top,color-stop(0,rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-repeat:repeat-x}.attr-carousel-control:focus,.attr-carousel-control:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.attr-carousel-control .attr-glyphicon-chevron-left,.attr-carousel-control .attr-glyphicon-chevron-right,.attr-carousel-control .attr-icon-next,.attr-carousel-control .attr-icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.attr-carousel-control .attr-glyphicon-chevron-left,.attr-carousel-control .attr-icon-prev{left:50%;margin-left:-10px}.attr-carousel-control .attr-glyphicon-chevron-right,.attr-carousel-control .attr-icon-next{right:50%;margin-right:-10px}.attr-carousel-control .attr-icon-next,.attr-carousel-control .attr-icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.attr-carousel-control .attr-icon-prev:before{content:'\2039'}.attr-carousel-control .attr-icon-next:before{content:'\203a'}.attr-carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.attr-carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.attr-carousel-indicators .attr-active{width:12px;height:12px;margin:0;background-color:#fff}.attr-carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.attr-carousel-caption .attr-btn{text-shadow:none}@media screen and (min-width:768px){.attr-carousel-control .attr-glyphicon-chevron-left,.attr-carousel-control .attr-glyphicon-chevron-right,.attr-carousel-control .attr-icon-next,.attr-carousel-control .attr-icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.attr-carousel-control .attr-glyphicon-chevron-left,.attr-carousel-control .attr-icon-prev{margin-left:-10px}.attr-carousel-control .attr-glyphicon-chevron-right,.attr-carousel-control .attr-icon-next{margin-right:-10px}.attr-carousel-caption{right:20%;left:20%;padding-bottom:30px}.attr-carousel-indicators{bottom:20px}}.attr-btn-group-vertical>.attr-btn-group:after,.attr-btn-group-vertical>.attr-btn-group:before,.attr-btn-toolbar:after,.attr-btn-toolbar:before,.attr-clearfix:after,.attr-clearfix:before,.attr-container-fluid:after,.attr-container-fluid:before,.attr-container:after,.attr-container:before,.attr-dl-horizontal dd:after,.attr-dl-horizontal dd:before,.attr-form-horizontal .attr-form-group:after,.attr-form-horizontal .attr-form-group:before,.attr-modal-footer:after,.attr-modal-footer:before,.attr-modal-header:after,.attr-modal-header:before,.attr-nav:after,.attr-nav:before,.attr-navbar-collapse:after,.attr-navbar-collapse:before,.attr-navbar-header:after,.attr-navbar-header:before,.attr-navbar:after,.attr-navbar:before,.attr-pager:after,.attr-pager:before,.attr-panel-body:after,.attr-panel-body:before,.attr-row:after,.attr-row:before{display:table;content:" "}.attr-btn-group-vertical>.attr-btn-group:after,.attr-btn-toolbar:after,.attr-clearfix:after,.attr-container-fluid:after,.attr-container:after,.attr-dl-horizontal dd:after,.attr-form-horizontal .attr-form-group:after,.attr-modal-footer:after,.attr-modal-header:after,.attr-nav:after,.attr-navbar-collapse:after,.attr-navbar-header:after,.attr-navbar:after,.attr-pager:after,.attr-panel-body:after,.attr-row:after{clear:both}.attr-center-block{display:block;margin-right:auto;margin-left:auto}.attr-pull-right{float:right!important}.attr-pull-left{float:left!important}.attr-hide{display:none!important}.attr-show{display:block!important}.attr-invisible{visibility:hidden}.attr-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.attr-hidden{display:none!important}.attr-affix{position:fixed}@-ms-viewport{width:device-width}.attr-visible-lg,.attr-visible-md,.attr-visible-sm,.attr-visible-xs{display:none!important}.attr-visible-lg-block,.attr-visible-lg-inline,.attr-visible-lg-inline-block,.attr-visible-md-block,.attr-visible-md-inline,.attr-visible-md-inline-block,.attr-visible-sm-block,.attr-visible-sm-inline,.attr-visible-sm-inline-block,.attr-visible-xs-block,.attr-visible-xs-inline,.attr-visible-xs-inline-block{display:none!important}@media (max-width:767px){.attr-visible-xs{display:block!important}table.attr-visible-xs{display:table!important}tr.attr-visible-xs{display:table-row!important}td.attr-visible-xs,th.attr-visible-xs{display:table-cell!important}}@media (max-width:767px){.attr-visible-xs-block{display:block!important}}@media (max-width:767px){.attr-visible-xs-inline{display:inline!important}}@media (max-width:767px){.attr-visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.attr-visible-sm{display:block!important}table.attr-visible-sm{display:table!important}tr.attr-visible-sm{display:table-row!important}td.attr-visible-sm,th.attr-visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.attr-visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.attr-visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.attr-visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.attr-visible-md{display:block!important}table.attr-visible-md{display:table!important}tr.attr-visible-md{display:table-row!important}td.attr-visible-md,th.attr-visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.attr-visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.attr-visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.attr-visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.attr-visible-lg{display:block!important}table.attr-visible-lg{display:table!important}tr.attr-visible-lg{display:table-row!important}td.attr-visible-lg,th.attr-visible-lg{display:table-cell!important}}@media (min-width:1200px){.attr-visible-lg-block{display:block!important}}@media (min-width:1200px){.attr-visible-lg-inline{display:inline!important}}@media (min-width:1200px){.attr-visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.attr-hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.attr-hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.attr-hidden-md{display:none!important}}@media (min-width:1200px){.attr-hidden-lg{display:none!important}}.attr-visible-print{display:none!important}@media print{.attr-visible-print{display:block!important}table.attr-visible-print{display:table!important}tr.attr-visible-print{display:table-row!important}td.attr-visible-print,th.attr-visible-print{display:table-cell!important}}.attr-visible-print-block{display:none!important}@media print{.attr-visible-print-block{display:block!important}}.attr-visible-print-inline{display:none!important}@media print{.attr-visible-print-inline{display:inline!important}}.attr-visible-print-inline-block{display:none!important}@media print{.attr-visible-print-inline-block{display:inline-block!important}}@media print{.attr-hidden-print{display:none!important}}
public/assets/css/style.css CHANGED
@@ -1 +1 @@
1
- #elementor .mf-btn-wraper a.metform-btn{background:#337ab7;color:#fff;border-radius:5px;height:20%;font-size:16px;padding:10px}.mf-form-wrapper section,.single-metform-form section{padding-top:0;padding-bottom:0}.mf-input-switch-control{position:relative;display:inline-block}.mf-input-switch-control>input[type=checkbox]{display:none!important}.mf-input-control{position:absolute;z-index:-1;opacity:0}.mf-input-switch .mf-input-control-label::before{content:attr(data-disable);width:55px;height:25px;background-color:#ededed;left:0;border-radius:15px;text-align:right;color:#fff;text-transform:uppercase;font-weight:700;font-size:10px;padding:3px;box-sizing:border-box;padding-right:10px;-webkit-transition:all .4s;transition:all .4s;float:right;line-height:18px;cursor:pointer;display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-align:center;-webkit-box-align:center;align-items:center;-ms-flex-pack:end;-webkit-box-pack:end;justify-content:flex-end}.metform-form-content{position:relative;z-index:0}.mf-response-msg-wrap{-webkit-transition:height .45s,opacity .45s,visibility .45s;transition:height .45s,opacity .45s,visibility .45s;background-color:#fff}.mf-main-response-wrap{border-radius:10px;border:1px solid #101010}.mf-response-msg-wrap[data-show="0"]{height:0!important;opacity:0;visibility:hidden}.mf-response-msg-wrap[data-show="1"]{height:auto;opacity:1;visibility:visible;margin-bottom:20px}.mf-response-msg{border-radius:5px;text-align:center;padding:15px 34px;height:100%}.wf-error-res{background-color:#f8d7da;border-color:#f5c6cb}.mf-success-icon,.wf-error-res .mf-alert-icon{color:#721c24;font-size:30px;margin-bottom:5px}.mf-success-icon{color:#101010}.mf-response-msg p{font-size:17px;line-height:20px;color:#101010;margin-bottom:0}.wf-error-res p{color:#721c24}.custom-file-label,.custom-select,.mf-input-control-label::before{-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.mf-input-control-label::after{position:absolute;top:2px;left:2px;display:block;width:14px;height:14px;content:"";background-color:#adb5bd;border-radius:100px;-webkit-transition:all .4s;transition:all .4s;cursor:pointer}.mf-input-switch label.mf-input-control-label{display:inline-block;vertical-align:middle;position:relative;margin:0}.mf-input-control:checked~.mf-input-control-label::before{color:#fff;border-color:#007bff;background-color:#007bff;content:attr(data-enable);text-align:left;padding-left:10px;-ms-flex-pack:start;-webkit-box-pack:start;justify-content:flex-start}.mf-input-switch .mf-input-control:checked~.mf-input-control-label::after{background-color:#fff}.mf-input-wrapper .mf-input-help{display:block;font-size:.9em;margin-top:5px;opacity:.7;clear:both;font-weight:400}.mf-input-wrapper .mf-input{width:100%;max-width:100%;padding:12px;height:auto;border-width:1px;border-style:solid;border-color:#eaeaea;border-radius:2px;background:0 0;background-color:#fafafa;box-shadow:none;box-sizing:border-box;-webkit-transition:all .2s linear;transition:all .2s linear;font-size:14px;line-height:21px}.mf-input-wrapper .mf-input:focus,.mf-input-wrapper.mf-field-error .mf-input,.mf-input-wrapper.mf-field-error .mf-input:focus{outline:0}.mf-input-wrapper .mf-input:focus{border-color:#4285f478}.mf-input-wrapper .mf-input:-ms-input-placeholder{color:#c9c1c1;font-weight:400;font-size:14px}.mf-input-wrapper .mf-input::-webkit-input-placeholder{color:#c9c1c1;font-weight:400;font-size:14px}.mf-input-wrapper .mf-input::placeholder{color:#c9c1c1;font-weight:400;font-size:14px}.mf-input-wrapper .mf-input::-webkit-input-placeholder{color:#c9c1c1;font-weight:400;font-size:14px}.mf-input-wrapper .mf-input:-moz-placeholder{color:#c9c1c1;font-weight:400;font-size:14px}@media (max-width:767px){.attr-form-group>.attr-control-label,.attr-form-group>.mf-input,.mf-input-wrapper>.mf-captcha-input-wrapper,.mf-input-wrapper>.mf-checkbox,.mf-input-wrapper>.mf-image-select,.mf-input-wrapper>.mf-input-label,.mf-input-wrapper>.mf-input:not(.mf-left-parent),.mf-input-wrapper>.mf-payment-method,.mf-input-wrapper>.mf-radio,.mf-input-wrapper>.mf-repeater-field-label,.mf-input-wrapper>.mf-signature{width:100%;min-width:100%}}.mf-input-wrapper .mf-input-label,.mf-repeater-field-label{font-family:Roboto,Sans-serif;font-weight:600;font-size:14px;display:block;color:#000;font-size:14px;line-height:16px;margin-bottom:5px}.mf-input-wrapper .mf-input,.mf-input-wrapper .mf-input-label{vertical-align:middle}div.mf-input-wrapper>textarea.mf-input{padding:15px}.irs--round .irs-max,.irs--round .irs-min{display:none}.irs--round .irs-handle{cursor:pointer}.mf-checkbox-option input[type=checkbox]{display:none}.mf-checkbox-option:not(.disabled) label{cursor:pointer}.mf-checkbox-option input[type=checkbox]+span:before{position:relative;content:"\f0c8";font-family:"Font Awesome 5 Free"!important;font-weight:500!important;display:inline-block;border:none;font-size:18px;color:#5f7bff;font-weight:400;width:25px;line-height:1;top:2px}.mf-checkbox-option input[type=checkbox]+span{font-weight:400;font-size:14px;cursor:pointer}.mf-checkbox-option input[type=checkbox]:checked+span:before{content:"\f14a";font-family:"Font Awesome 5 Free"!important;display:inline-block;border:none;font-size:18px;color:#5f7bff}.mf-radio-option input[type=radio]{display:none}.mf-checkbox-option,.mf-radio-option{padding-right:15px}.mf-radio-option input[type=radio]+span:before{content:"\f111";font-family:"Font Awesome 5 Free"!important;font-weight:500!important;display:inline-block;border:none;font-size:18px;color:#5f7bff;font-weight:400;width:25px;line-height:1;top:2px;position:relative}.mf-radio-option input[type=radio]+span{font-weight:400;font-size:14px;cursor:pointer}.mf-radio-option input[type=radio]:checked+span:before{content:"\f058";font-family:"Font Awesome 5 Free"!important;display:inline-block;border:none;font-size:18px;color:#5f7bff}.mf-input-wrapper .mf-input-select{padding:0!important}.mf-input-select .mf_select__control{min-height:0;padding:12px;border-width:0;border-radius:0;box-shadow:none;cursor:pointer;border-radius:none!important;border:1px solid #eaeaea;background-color:transparent}.mf-input-select .mf_select__control:hover{border:1px solid #eaeaea}.mf-input-select .mf_select__indicator-separator{display:none}.mf-input-select .mf_select__value-container,.mf-input-select .mf_select__value-container input{padding:0}.mf-input-select .mf_select__placeholder{margin-left:0;margin-right:0;color:inherit}.mf-input-select .mf_select__indicators{margin-right:2px}.mf-input-multiselect .mf_multiselect__indicators{margin-right:15px}.mf-input-multiselect .mf_multiselect__dropdown-indicator,.mf-input-select .mf_select__indicator{padding:0;border-style:solid;border-width:5px 4px 0;border-color:currentColor transparent transparent}.mf-input-multiselect .mf_multiselect__control--menu-is-open .mf_multiselect__dropdown-indicator,.mf-input-select .mf_select__control--menu-is-open .mf_select__indicator{border-width:0 4px 5px;border-color:transparent transparent currentColor}.mf-input-multiselect .mf_multiselect__dropdown-indicator>svg,.mf-input-select .mf_select__indicator>svg{display:none}.mf-input-select .mf_select__menu{width:100%;margin:0;border-radius:0;box-shadow:none;background-color:#fff}.mf-input-select .mf_select__menu>div{overflow-X:hidden}.mf-input-select .mf_select__menu-list{padding:0}.mf-input-select .mf_select__option{cursor:pointer;border:1px solid #eaeaea}.mf-input-select .mf_select__option.mf_select__option--is-focused,.mf-input-select .mf_select__option.mf_select__option--is-selected,.mf-input-select .mf_select__option:hover{background-color:#f0f0f0}.mf-input-select .mf_select__control.mf_select__control--is-focused{border-color:#4285f478;background-color:inherit}.mf-input.mf-input-select{border:none!important;background-color:#fafafa}.mf-input-select .mf_select__single-value{position:relative;top:0;width:100%;max-width:calc(100% - 22px);margin-left:0;margin-right:0;-webkit-transform:none;-ms-transform:none;transform:none}.mf-input-wrapper select.mf-input-dropdown{border:none;padding:15px 25px;font-size:15px;font-weight:500!important;-webkit-appearance:none;-o-appearance:none;appearance:none;border-width:1px;border-style:solid;border-color:#eaeaea}.mf-input-wrapper select.mf-input-dropdown option{background-color:#fff;color:#222;font-size:15px}.mf-input-switch-control.mf-input-switch.mf-input{box-shadow:none!important;vertical-align:-webkit-baseline-middle;border:none;padding:0}.mf-input-wrapper .range-slider{display:inline-block;width:100%}.mf-input-wrapper .asRange{width:100%;background-color:#f1f4f9}.mf-input-wrapper .asRange .asRange-pointer .asRange-tip:before,.mf-input-wrapper .asRange .asRange-pointer:before,.mf-input-wrapper .asRange .asRange-selected{background-color:#1fb787}.mf-input-wrapper .asRange .asRange-pointer .asRange-tip{background-color:#1fb787;border:1px solid #1fb787;top:inherit;bottom:18px;left:-50%;margin-left:8px;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.metform-btn{background-color:#4285f4;border:none;box-shadow:none;display:inline-block;max-width:100%;padding:16px 40px;font-size:16px;border-radius:2px;cursor:pointer;box-shadow:0 5px 5px 0 rgba(66,133,244,.3);line-height:18px;-webkit-transition:all .4s;transition:all .4s;font-weight:500;text-decoration:none}.metform-btn:focus,.metform-btn:hover{background-color:#4285f4;text-decoration:none;outline:0}button.metform-btn,button.metform-btn:not(.toggle){background-color:#4285f4}button.metform-btn:focus,button.metform-btn:hover{background-color:#4285f4}@media (max-width:767px){.mf-btn--mobile-justify .metform-btn{width:100%}}@media (min-width:768px) and (max-width:1024px){.mf-btn--tablet-justify .metform-btn{width:100%}}@media (min-width:1025px){.mf-btn--justify .metform-btn{width:100%}}.metform-submit-btn{position:relative;z-index:0}.metform-submit-btn:after,.metform-submit-btn:before{content:" ";position:absolute;top:50%;left:50%;width:22px;height:22px;margin:-11px 0 0 -11px;border-style:solid;border-color:currentColor;border-width:0;border-radius:50%;opacity:0;-webkit-transition:opacity .3s ease;transition:opacity .3s ease}.metform-submit-btn[disabled]:after,.metform-submit-btn[disabled]:before{opacity:1;-webkit-transition-delay:.15s;transition-delay:.15s}.metform-submit-btn:before{border-width:2px}.metform-submit-btn[disabled]:before{opacity:.25}.metform-submit-btn:after{border-top-width:2px;-webkit-animation:submitSpin .55s linear infinite;animation:submitSpin .55s linear infinite}.metform-submit-btn>span{-webkit-transition:opacity .15s ease .15s;transition:opacity .15s ease .15s}.metform-submit-btn[disabled]>span{opacity:0;-webkit-transition-delay:0;transition-delay:0}@-webkit-keyframes submitSpin{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes submitSpin{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.mf-input-wrapper .iti{display:block}.mf-input-wrapper>.iti{display:inline-block;width:100%}.mf-input-wrapper .iti .mf-input{width:100%!important}.mf-input-wrapper .iti--separate-dial-code .iti__selected-flag{background-color:#f7f6f6}.mf-input-wrapper .iti .iti__flag-container{display:none}.mf-input-wrapper .iti>.iti__flag-container{display:block}.flatpickr-calendar{margin-top:8px}.flatpickr-month{margin-top:3px;margin-bottom:5px}.mf-input-wrapper>.flatpickr-wrapper{display:block}.flatpickr-wrapper select{display:inline-block}.elementor-widget-mf-date.elementor-element-edit-mode .flatpickr-calendar,.elementor-widget-mf-time.elementor-element-edit-mode .flatpickr-calendar{top:100%!important;left:0!important}.mf-ratings{display:-ms-inline-flexbox;display:-webkit-inline-box;display:inline-flex;-ms-flex-wrap:wrap;flex-wrap:wrap;cursor:pointer}.mf-ratings>input{display:none!important}.mf-ratings>label{cursor:pointer}.mf-ratings>label:not(:last-child){padding-right:5px}.mf-ratings.is-selected>label,.mf-ratings:not(.is-selected):hover>label{color:#ffdb72}.mf-ratings.is-selected:not(:hover)>input:checked+label~label,.mf-ratings.is-selected>label:hover~label,.mf-ratings:not(.is-selected),.mf-ratings:not(.is-selected)>label:hover~label{color:#ccc}.mf-input-file-upload{width:.1px;height:.1px;opacity:0;visibility:hidden;position:absolute}.mf-input-file-upload-label{color:#fff;margin-right:10px;padding:5px 15px;display:-ms-inline-flexbox;display:-webkit-inline-box;display:inline-flex;-ms-flex-align:center;-webkit-box-align:center;align-items:center;box-shadow:none;font-size:16px;font-weight:400;line-height:28px}.mf-input-file-upload-label i{font-size:18px}.mf-input-file-upload-label svg{max-width:18px;height:auto;vertical-align:middle}.mf-file-name span{display:inline-block;font-size:15px}.mf-input-wrapper .error{display:block;font-size:14px}.mf-input-multiselect,.mf-input-select{padding:0;cursor:pointer}.mf-input.mf-input-multiselect{padding:0!important;box-shadow:none!important;border:none!important}.mf-input-multiselect .mf_multiselect__control{border:1px solid #eaeaea;border-radius:0;background-color:#fafafa;cursor:pointer}.mf-input-multiselect .mf_multiselect__control:focus,.mf-input-multiselect .mf_multiselect__control:hover{border:1px solid #eaeaea;outline:0;box-shadow:none}.mf_multiselect__indicator-separator{display:none}.mf_multiselect__option.mf_multiselect__option--is-focused,.mf_multiselect__option:hover{background-color:#f0f0f0}.mf_multiselect__option.mf_multiselect__option--is-focused{background-color:#fff}.mf_multiselect__option{border:1px solid #eaeaea;background-color:#fff;padding:10px 15px;font-size:15px}.mf-input-multiselect .mf_multiselect__menu{margin:0;border-radius:0;box-shadow:none;cursor:pointer}.mf-input-multiselect .mf_multiselect__menu-list{padding:0}.mf-input-multiselect .mf_multiselect__placeholder{color:#c9c1c1}.mf_multiselect__menu-notice--no-options{border:1px solid #eaeaea;color:#c9c1c1}.mf_multiselect__control .mf_multiselect__value-container{padding:8px 12px}.mf_multiselect__control .mf_multiselect__value-container>div:last-child{height:25px}.mf-input-multiselect .mf_multiselect__multi-value{margin:0 5px 0 0}.mf_multiselect__multi-value__remove{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.mf_multiselect__multi-value__label{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.mf-input-multiselect .mf_multiselect__input>input{min-height:0}.mf-input.mf-input-summary{padding:0;background-color:#fff;border-width:0}.mf-entry-data{margin:0;padding:0;list-style:none;word-break:break-word}.mf-entry-data>li{border:1px solid rgba(0,0,0,.1)}.mf-entry-data>li:not(:last-child){border-bottom-width:0}.mf-entry-data>li>strong{display:block;padding:8px;background-color:#eaf2fa;border-bottom:1px solid rgba(0,0,0,.1)}.mf-entry-data>li>span{display:block;padding:8px 28px;min-height:42px}.elementor-widget-mf-range .mf-field-error .error{display:none!important}.g-recaptcha>div{position:relative;z-index:0}.g-recaptcha>div:after,.g-recaptcha>div:before,.g-recaptcha>div>div:after,.g-recaptcha>div>div:before{content:" ";position:absolute;border-style:solid;border-color:#d3d3d3;border-width:0;z-index:0}.g-recaptcha>div:before{top:0;left:0;bottom:2px;border-left-width:1px}.g-recaptcha>div:after{top:0;right:2px;bottom:2px;border-right-width:1px}.g-recaptcha>div>div:before{top:0;left:0;right:2px;border-top-width:1px}.g-recaptcha>div>div:after{left:0;right:2px;bottom:2px;border-bottom-width:1px}.g-recaptcha+.attr-alert{display:none}.g-recaptcha:empty+.attr-alert{display:block!important}.mf-captcha-input-wrapper.mf-captcha-block>i{padding-left:25px}img.mf-input.mf-captcha-image{max-width:200px;border:none;box-sizing:unset;background:0 0;padding:0;display:inline-block}.mf-captcha-block>img.mf-input.mf-captcha-image{margin:5px 0 5px 0}.mf-captcha-inline>img.mf-input.mf-captcha-image{margin:0 5px 0 0}.mf-captcha-input-wrapper.mf-captcha-inline{display:-ms-inline-flexbox!important;display:-webkit-inline-box!important;display:inline-flex!important;-ms-flex-align:center;-webkit-box-align:center;align-items:center;width:100%}.mf-captcha-input-wrapper.mf-captcha-inline>i{margin-left:25px!important;-ms-flex-order:1;-webkit-box-ordinal-group:2;order:1}.mf-refresh-captcha:before{content:"\f01e";font-family:"Font Awesome 5 Free";font-weight:700;font-style:normal;cursor:pointer}.mf-error-message{display:block}.mf-input-wrapper .input-range__slider{-webkit-appearance:none;appearance:none;background-color:#fff;border:4px solid #000;border-radius:100%;cursor:pointer;display:block;height:15px;margin-left:-7.5px;margin-top:-11px;outline:0;position:absolute;top:50%;-webkit-transition:-webkit-transform .3s ease-out,box-shadow .3s ease-out;transition:transform .3s ease-out,box-shadow .3s ease-out;-webkit-transition:-webkit-transform .3s ease-out,box-shadow .3s ease-out,-webkit-transform .3s ease-out;transition:transform .3s ease-out,box-shadow .3s ease-out,-webkit-transform .3s ease-out;width:15px}.mf-input-wrapper .input-range__slider:focus{box-shadow:0 0 0 5px rgba(63,81,181,.2)}.input-range--disabled .input-range__slider{background:#ccc;border:1px solid #ccc;box-shadow:none;-webkit-transform:none;-ms-transform:none;transform:none}.mf-input-wrapper .input-range__slider-container{-webkit-transition:left .3s ease-out;transition:left .3s ease-out}.mf-input-wrapper .input-range__label{color:#aaa;font-family:"Helvetica Neue",san-serif;font-size:.8rem;-webkit-transform:translateZ(0);transform:translateZ(0);white-space:nowrap}.mf-input-wrapper .input-range__label--max,.mf-input-wrapper .input-range__label--min{bottom:-1.4rem;position:absolute;display:none}.mf-input-wrapper .input-range__label--min{left:0}.mf-input-wrapper .input-range__label--max{right:0}.mf-input-wrapper .input-range__label--value{position:absolute;bottom:20px}.mf-input-wrapper .input-range__label-container{left:-50%;position:relative;background-color:#000;width:36px;height:20px;display:inline-block;color:#fff;font-size:12px;text-align:center;border-radius:3px}.mf-input-wrapper .input-range__label-container:before{position:absolute;bottom:-3px;left:50%;display:inline-block;width:6px;height:6px;margin-left:-3px;content:"";background-color:#000;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.mf-input-wrapper .input-range__label--max .input-range__label-container{left:50%}.mf-input-wrapper .input-range__track{background:#f1f4f9;border-radius:.3rem;cursor:pointer;display:block;height:8px;position:relative;-webkit-transition:left .3s ease-out,width .3s ease-out;transition:left .3s ease-out,width .3s ease-out}.mf-input-wrapper .input-range--disabled .input-range__track{background:#f1f4f9}.mf-input-wrapper .input-range__track--background{left:0;margin-top:-.15rem;position:absolute;right:0;top:50%}.mf-input-wrapper .input-range__track--active{background:#000}.mf-input-wrapper .input-range{height:1rem;position:relative;width:100%}.mf-condition--hidden{display:none;visibility:hidden}
1
+ #elementor .mf-btn-wraper a.metform-btn{background:#337ab7;color:#fff;border-radius:5px;height:20%;font-size:16px;padding:10px}.mf-form-wrapper section,.single-metform-form section{padding-top:0;padding-bottom:0}.mf-input-switch-control{position:relative;display:inline-block}.mf-input-switch-control>input[type=checkbox]{display:none!important}.mf-input-control{position:absolute;z-index:-1;opacity:0}.mf-input-switch .mf-input-control-label::before{content:attr(data-disable);width:55px;height:25px;background-color:#ededed;left:0;border-radius:15px;text-align:right;color:#fff;text-transform:uppercase;font-weight:700;font-size:10px;padding:3px;box-sizing:border-box;padding-right:10px;-webkit-transition:all .4s;transition:all .4s;float:right;line-height:18px;cursor:pointer;display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-align:center;-webkit-box-align:center;align-items:center;-ms-flex-pack:end;-webkit-box-pack:end;justify-content:flex-end}.metform-form-content{position:relative;z-index:0}.mf-response-msg-wrap{-webkit-transition:height .45s,opacity .45s,visibility .45s;transition:height .45s,opacity .45s,visibility .45s;background-color:#fff}.mf-main-response-wrap{border-radius:10px;border:1px solid #101010}.mf-response-msg-wrap[data-show="0"]{height:0!important;opacity:0;visibility:hidden}.mf-response-msg-wrap[data-show="1"]{height:auto;opacity:1;visibility:visible;margin-bottom:20px}.mf-response-msg{border-radius:5px;text-align:center;padding:15px 34px;height:100%}.wf-error-res{background-color:#f8d7da;border-color:#f5c6cb}.mf-success-icon,.wf-error-res .mf-alert-icon{color:#721c24;font-size:30px;margin-bottom:5px}.mf-success-icon{color:#101010}.mf-response-msg p{font-size:17px;line-height:20px;color:#101010;margin-bottom:0}.wf-error-res p{color:#721c24}.custom-file-label,.custom-select,.mf-input-control-label::before{-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.mf-input-control-label::after{position:absolute;top:2px;left:2px;display:block;width:14px;height:14px;content:"";background-color:#adb5bd;border-radius:100px;-webkit-transition:all .4s;transition:all .4s;cursor:pointer}.mf-input-switch label.mf-input-control-label{display:inline-block;vertical-align:middle;position:relative;margin:0}.mf-input-control:checked~.mf-input-control-label::before{color:#fff;border-color:#007bff;background-color:#007bff;content:attr(data-enable);text-align:left;padding-left:10px;-ms-flex-pack:start;-webkit-box-pack:start;justify-content:flex-start}.mf-input-switch .mf-input-control:checked~.mf-input-control-label::after{background-color:#fff}.mf-input-wrapper .mf-input-help{display:block;font-size:.9em;margin-top:5px;opacity:.7;clear:both;font-weight:400}.mf-input-wrapper .mf-input{width:100%;max-width:100%;padding:12px;height:auto;border-width:1px;border-style:solid;border-color:#eaeaea;border-radius:2px;background:0 0;background-color:#fafafa;box-shadow:none;box-sizing:border-box;-webkit-transition:all .2s linear;transition:all .2s linear;font-size:14px;line-height:21px}.mf-input-wrapper .mf-input:focus,.mf-input-wrapper.mf-field-error .mf-input,.mf-input-wrapper.mf-field-error .mf-input:focus{outline:0}.mf-input-wrapper .mf-input:focus{border-color:#4285f478}.mf-input-wrapper .mf-input:-ms-input-placeholder{color:#c9c1c1;font-weight:400;font-size:14px}.mf-input-wrapper .mf-input::-webkit-input-placeholder{color:#c9c1c1;font-weight:400;font-size:14px}.mf-input-wrapper .mf-input::placeholder{color:#c9c1c1;font-weight:400;font-size:14px}.mf-input-wrapper .mf-input::-webkit-input-placeholder{color:#c9c1c1;font-weight:400;font-size:14px}.mf-input-wrapper .mf-input:-moz-placeholder{color:#c9c1c1;font-weight:400;font-size:14px}@media (max-width:767px){.attr-form-group>.attr-control-label,.attr-form-group>.mf-input,.mf-input-wrapper>.mf-captcha-input-wrapper,.mf-input-wrapper>.mf-checkbox,.mf-input-wrapper>.mf-image-select,.mf-input-wrapper>.mf-input-label,.mf-input-wrapper>.mf-input:not(.mf-left-parent),.mf-input-wrapper>.mf-payment-method,.mf-input-wrapper>.mf-radio,.mf-input-wrapper>.mf-repeater-field-label,.mf-input-wrapper>.mf-signature{width:100%;min-width:100%}}.mf-input-wrapper .mf-input-label,.mf-repeater-field-label{font-family:Roboto,Sans-serif;font-weight:600;font-size:14px;display:block;color:#000;font-size:14px;line-height:16px;margin-bottom:5px}.mf-input-wrapper .mf-input,.mf-input-wrapper .mf-input-label{vertical-align:middle}div.mf-input-wrapper>textarea.mf-input{padding:15px}.irs--round .irs-max,.irs--round .irs-min{display:none}.irs--round .irs-handle{cursor:pointer}.multi-option-input-type{vertical-align:middle}.mf-checkbox-option input[type=checkbox]{display:none!important}.mf-checkbox-option:not(.disabled) label{cursor:pointer}.mf-checkbox-option input[type=checkbox]+span:before{position:relative;content:"\f0c8";font-family:"Font Awesome 5 Free"!important;font-weight:500!important;display:inline-block;border:none;font-size:18px;color:#5f7bff;font-weight:400;width:25px;line-height:1;top:2px}.mf-checkbox-option input[type=checkbox]+span{font-weight:400;font-size:14px;cursor:pointer}.mf-checkbox-option input[type=checkbox]:checked+span:before{content:"\f14a";font-family:"Font Awesome 5 Free"!important;display:inline-block;border:none;font-size:18px;color:#5f7bff}.mf-radio-option input[type=radio]{display:none!important}.mf-checkbox-option,.mf-radio-option{padding-right:15px}.mf-radio-option input[type=radio]+span:before{content:"\f111";font-family:"Font Awesome 5 Free"!important;font-weight:500!important;display:inline-block;border:none;font-size:18px;color:#5f7bff;font-weight:400;width:25px;line-height:1;top:2px;position:relative}.mf-radio-option input[type=radio]+span{font-weight:400;font-size:14px;cursor:pointer}.mf-radio-option input[type=radio]:checked+span:before{content:"\f058";font-family:"Font Awesome 5 Free"!important;display:inline-block;border:none;font-size:18px;color:#5f7bff}.mf-input-wrapper .mf-input-select{padding:0!important}.mf-input-select .mf_select__control{min-height:0;padding:12px;border-width:0;border-radius:0;box-shadow:none;cursor:pointer;border-radius:none!important;border:1px solid #eaeaea;background-color:transparent}.mf-input-select .mf_select__control:hover{border:1px solid #eaeaea}.mf-input-select .mf_select__indicator-separator{display:none}.mf-input-select .mf_select__value-container,.mf-input-select .mf_select__value-container input{padding:0}.mf-input-select .mf_select__placeholder{margin-left:0;margin-right:0;color:inherit}.mf-input-select .mf_select__indicators{margin-right:2px}.mf-input-multiselect .mf_multiselect__indicators{margin-right:15px}.mf-input-multiselect .mf_multiselect__dropdown-indicator,.mf-input-select .mf_select__indicator{padding:0;border-style:solid;border-width:5px 4px 0;border-color:currentColor transparent transparent}.mf-input-multiselect .mf_multiselect__control--menu-is-open .mf_multiselect__dropdown-indicator,.mf-input-select .mf_select__control--menu-is-open .mf_select__indicator{border-width:0 4px 5px;border-color:transparent transparent currentColor}.mf-input-multiselect .mf_multiselect__dropdown-indicator>svg,.mf-input-select .mf_select__indicator>svg{display:none}.mf-input-select .mf_select__menu{width:100%;margin:0;border-radius:0;box-shadow:none;background-color:#fff}.mf-input-select .mf_select__menu>div{overflow-X:hidden}.mf-input-select .mf_select__menu-list{padding:0}.mf-input-select .mf_select__option{cursor:pointer;border:1px solid #eaeaea}.mf-input-select .mf_select__option.mf_select__option--is-focused,.mf-input-select .mf_select__option.mf_select__option--is-selected,.mf-input-select .mf_select__option:hover{background-color:#f0f0f0}.mf-input-select .mf_select__control.mf_select__control--is-focused{border-color:#4285f478;background-color:inherit}.mf-input.mf-input-select{border:none!important;background-color:#fafafa}.mf-input-select .mf_select__single-value{position:relative;top:0;width:100%;max-width:calc(100% - 22px);margin-left:0;margin-right:0;-webkit-transform:none;transform:none}.mf-input-wrapper select.mf-input-dropdown{border:none;padding:15px 25px;font-size:15px;font-weight:500!important;-webkit-appearance:none;-o-appearance:none;appearance:none;border-width:1px;border-style:solid;border-color:#eaeaea}.mf-input-wrapper select.mf-input-dropdown option{background-color:#fff;color:#222;font-size:15px}.mf-input-switch-control.mf-input-switch.mf-input{box-shadow:none!important;vertical-align:-webkit-baseline-middle;border:none;padding:0}.mf-input-wrapper .range-slider{display:inline-block;width:100%}.mf-input-wrapper .asRange{width:100%;background-color:#f1f4f9}.mf-input-wrapper .asRange .asRange-pointer .asRange-tip:before,.mf-input-wrapper .asRange .asRange-pointer:before,.mf-input-wrapper .asRange .asRange-selected{background-color:#1fb787}.mf-input-wrapper .asRange .asRange-pointer .asRange-tip{background-color:#1fb787;border:1px solid #1fb787;top:inherit;bottom:18px;left:-50%;margin-left:8px;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.metform-btn{background-color:#4285f4;border:none;box-shadow:none;display:inline-block;max-width:100%;padding:16px 40px;font-size:16px;border-radius:2px;cursor:pointer;box-shadow:0 5px 5px 0 rgba(66,133,244,.3);line-height:18px;-webkit-transition:all .4s;transition:all .4s;font-weight:500;text-decoration:none}.metform-btn:focus,.metform-btn:hover{background-color:#4285f4;text-decoration:none;outline:0}button.metform-btn,button.metform-btn:not(.toggle){background-color:#4285f4}button.metform-btn:focus,button.metform-btn:hover{background-color:#4285f4}@media (max-width:767px){.mf-btn--mobile-justify .metform-btn{width:100%}}@media (min-width:768px) and (max-width:1024px){.mf-btn--tablet-justify .metform-btn{width:100%}}@media (min-width:1025px){.mf-btn--justify .metform-btn{width:100%}}.metform-submit-btn{position:relative;z-index:0}.metform-submit-btn:after,.metform-submit-btn:before{content:" ";position:absolute;top:50%;left:50%;width:22px;height:22px;margin:-11px 0 0 -11px;border-style:solid;border-color:currentColor;border-width:0;border-radius:50%;opacity:0;-webkit-transition:opacity .3s ease;transition:opacity .3s ease}.metform-submit-btn[disabled]:after,.metform-submit-btn[disabled]:before{opacity:1;-webkit-transition-delay:.15s;transition-delay:.15s}.metform-submit-btn:before{border-width:2px}.metform-submit-btn[disabled]:before{opacity:.25}.metform-submit-btn:after{border-top-width:2px;-webkit-animation:submitSpin .55s linear infinite;animation:submitSpin .55s linear infinite}.metform-submit-btn>span{-webkit-transition:opacity .15s ease .15s;transition:opacity .15s ease .15s}.metform-submit-btn[disabled]>span{opacity:0;-webkit-transition-delay:0;transition-delay:0}@-webkit-keyframes submitSpin{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes submitSpin{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.mf-input-wrapper .iti{display:block}.mf-input-wrapper>.iti{display:inline-block;width:100%}.mf-input-wrapper .iti .mf-input{width:100%!important}.mf-input-wrapper .iti--separate-dial-code .iti__selected-flag{background-color:#f7f6f6}.mf-input-wrapper .iti .iti__flag-container{display:none}.mf-input-wrapper .iti>.iti__flag-container{display:block}.flatpickr-calendar{margin-top:8px}.flatpickr-month{margin-top:3px;margin-bottom:5px}.mf-input-wrapper>.flatpickr-wrapper{display:block}.flatpickr-wrapper select{display:inline-block}.elementor-widget-mf-date.elementor-element-edit-mode .flatpickr-calendar,.elementor-widget-mf-time.elementor-element-edit-mode .flatpickr-calendar{top:100%!important;left:0!important}.mf-ratings{display:-ms-inline-flexbox;display:-webkit-inline-box;display:inline-flex;-ms-flex-wrap:wrap;flex-wrap:wrap;cursor:pointer}.mf-ratings>input{display:none!important}.mf-ratings>label{cursor:pointer}.mf-ratings>label:not(:last-child){padding-right:5px}.mf-ratings.is-selected>label,.mf-ratings:not(.is-selected):hover>label{color:#ffdb72}.mf-ratings.is-selected:not(:hover)>input:checked+label~label,.mf-ratings.is-selected>label:hover~label,.mf-ratings:not(.is-selected),.mf-ratings:not(.is-selected)>label:hover~label{color:#ccc}.mf-input-file-upload{width:.1px;height:.1px;opacity:0;visibility:hidden;position:absolute}.mf-input-file-upload-label{color:#fff;margin-right:10px;padding:5px 15px;display:-ms-inline-flexbox;display:-webkit-inline-box;display:inline-flex;-ms-flex-align:center;-webkit-box-align:center;align-items:center;box-shadow:none;font-size:16px;font-weight:400;line-height:28px}.mf-input-file-upload-label i{font-size:18px}.mf-input-file-upload-label svg{max-width:18px;height:auto;vertical-align:middle}.mf-file-name span{display:inline-block;font-size:15px}.mf-input-wrapper .error{display:block;font-size:14px}.mf-input-multiselect,.mf-input-select{padding:0;cursor:pointer}.mf-input.mf-input-multiselect{padding:0!important;box-shadow:none!important;border:none!important}.mf-input-multiselect .mf_multiselect__control{border:1px solid #eaeaea;border-radius:0;background-color:#fafafa;cursor:pointer}.mf-input-multiselect .mf_multiselect__control:focus,.mf-input-multiselect .mf_multiselect__control:hover{border:1px solid #eaeaea;outline:0;box-shadow:none}.mf_multiselect__indicator-separator{display:none}.mf_multiselect__option.mf_multiselect__option--is-focused,.mf_multiselect__option:hover{background-color:#f0f0f0}.mf_multiselect__option.mf_multiselect__option--is-focused{background-color:#fff}.mf_multiselect__option{border:1px solid #eaeaea;background-color:#fff;padding:10px 15px;font-size:15px}.mf-input-multiselect .mf_multiselect__menu{margin:0;border-radius:0;box-shadow:none;cursor:pointer}.mf-input-multiselect .mf_multiselect__menu-list{padding:0}.mf-input-multiselect .mf_multiselect__placeholder{color:#c9c1c1}.mf_multiselect__menu-notice--no-options{border:1px solid #eaeaea;color:#c9c1c1}.mf_multiselect__control .mf_multiselect__value-container{padding:8px 12px}.mf_multiselect__control .mf_multiselect__value-container>div:last-child{height:25px}.mf-input-multiselect .mf_multiselect__multi-value{margin:0 5px 0 0}.mf_multiselect__multi-value__remove{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.mf_multiselect__multi-value__label{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.mf-input-multiselect .mf_multiselect__input>input{min-height:0}.mf-input.mf-input-summary{padding:0;background-color:#fff;border-width:0}.mf-entry-data{margin:0;padding:0;list-style:none;word-break:break-word}.mf-entry-data>li{border:1px solid rgba(0,0,0,.1)}.mf-entry-data>li:not(:last-child){border-bottom-width:0}.mf-entry-data>li>strong{display:block;padding:8px;background-color:#eaf2fa;border-bottom:1px solid rgba(0,0,0,.1)}.mf-entry-data>li>span{display:block;padding:8px 28px;min-height:42px}.elementor-widget-mf-range .mf-field-error .error{display:none!important}.g-recaptcha>div{position:relative;z-index:0}.g-recaptcha>div:after,.g-recaptcha>div:before,.g-recaptcha>div>div:after,.g-recaptcha>div>div:before{content:" ";position:absolute;border-style:solid;border-color:#d3d3d3;border-width:0;z-index:0}.g-recaptcha>div:before{top:0;left:0;bottom:2px;border-left-width:1px}.g-recaptcha>div:after{top:0;right:2px;bottom:2px;border-right-width:1px}.g-recaptcha>div>div:before{top:0;left:0;right:2px;border-top-width:1px}.g-recaptcha>div>div:after{left:0;right:2px;bottom:2px;border-bottom-width:1px}.g-recaptcha+.attr-alert{display:none}.g-recaptcha:empty+.attr-alert{display:block!important}.mf-captcha-input-wrapper.mf-captcha-block>i{padding-left:25px}img.mf-input.mf-captcha-image{max-width:200px;border:none;box-sizing:unset;background:0 0;padding:0;display:inline-block}.mf-captcha-block>img.mf-input.mf-captcha-image{margin:5px 0 5px 0}.mf-captcha-inline>img.mf-input.mf-captcha-image{margin:0 5px 0 0}.mf-captcha-input-wrapper.mf-captcha-inline{display:-ms-inline-flexbox!important;display:-webkit-inline-box!important;display:inline-flex!important;-ms-flex-align:center;-webkit-box-align:center;align-items:center;width:100%}.mf-captcha-input-wrapper.mf-captcha-inline>i{margin-left:25px!important;-ms-flex-order:1;-webkit-box-ordinal-group:2;order:1}.mf-refresh-captcha:before{content:"\f01e";font-family:"Font Awesome 5 Free";font-weight:700;font-style:normal;cursor:pointer}.mf-error-message{display:block}.mf-input-wrapper .input-range__slider{-webkit-appearance:none;appearance:none;background-color:#fff;border:4px solid #000;border-radius:100%;cursor:pointer;display:block;height:15px;margin-left:-7.5px;margin-top:-11px;outline:0;position:absolute;top:50%;-webkit-transition:-webkit-transform .3s ease-out,box-shadow .3s ease-out;transition:transform .3s ease-out,box-shadow .3s ease-out;-webkit-transition:-webkit-transform .3s ease-out,box-shadow .3s ease-out,-webkit-transform .3s ease-out;transition:transform .3s ease-out,box-shadow .3s ease-out,-webkit-transform .3s ease-out;width:15px}.mf-input-wrapper .input-range__slider:focus{box-shadow:0 0 0 5px rgba(63,81,181,.2)}.input-range--disabled .input-range__slider{background:#ccc;border:1px solid #ccc;box-shadow:none;-webkit-transform:none;transform:none}.mf-input-wrapper .input-range__slider-container{-webkit-transition:left .3s ease-out;transition:left .3s ease-out}.mf-input-wrapper .input-range__label{color:#aaa;font-family:"Helvetica Neue",san-serif;font-size:.8rem;-webkit-transform:translateZ(0);transform:translateZ(0);white-space:nowrap}.mf-input-wrapper .input-range__label--max,.mf-input-wrapper .input-range__label--min{bottom:-1.4rem;position:absolute;display:none}.mf-input-wrapper .input-range__label--min{left:0}.mf-input-wrapper .input-range__label--max{right:0}.mf-input-wrapper .input-range__label--value{position:absolute;bottom:20px}.mf-input-wrapper .input-range__label-container{left:-50%;position:relative;background-color:#000;width:36px;height:20px;display:inline-block;color:#fff;font-size:12px;text-align:center;border-radius:3px}.mf-input-wrapper .input-range__label-container:before{position:absolute;bottom:-3px;left:50%;display:inline-block;width:6px;height:6px;margin-left:-3px;content:"";background-color:#000;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.mf-input-wrapper .input-range__label--max .input-range__label-container{left:50%}.mf-input-wrapper .input-range__track{background:#f1f4f9;border-radius:.3rem;cursor:pointer;display:block;height:8px;position:relative;-webkit-transition:left .3s ease-out,width .3s ease-out;transition:left .3s ease-out,width .3s ease-out}.mf-input-wrapper .input-range--disabled .input-range__track{background:#f1f4f9}.mf-input-wrapper .input-range__track--background{left:0;margin-top:-.15rem;position:absolute;right:0;top:50%}.mf-input-wrapper .input-range__track--active{background:#000}.mf-input-wrapper .input-range{height:1rem;position:relative;width:100%}.mf-condition--hidden{display:none;visibility:hidden}
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