Google Analytics Dashboard for WP (GADWP) - Version 7.5.0

Version Description

Download this release

Release Info

Developer manejaam
Plugin Icon 128x128 Google Analytics Dashboard for WP (GADWP)
Version 7.5.0
Comparing to
See all releases

Code changes from version 7.4.0 to 7.5.0

gadwp.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin URI: https://exactmetrics.com
5
  * Description: Displays Google Analytics Reports and Real-Time Statistics in your Dashboard. Automatically inserts the tracking code in every page of your website.
6
  * Author: ExactMetrics
7
- * Version: 7.4.0
8
  * Requires at least: 4.8.0
9
  * Requires PHP: 5.5
10
  * Author URI: https://exactmetrics.com
@@ -44,7 +44,7 @@ final class ExactMetrics_Lite {
44
  * @access public
45
  * @var string $version Plugin version.
46
  */
47
- public $version = '7.4.0';
48
 
49
  /**
50
  * Plugin file.
4
  * Plugin URI: https://exactmetrics.com
5
  * Description: Displays Google Analytics Reports and Real-Time Statistics in your Dashboard. Automatically inserts the tracking code in every page of your website.
6
  * Author: ExactMetrics
7
+ * Version: 7.5.0
8
  * Requires at least: 4.8.0
9
  * Requires PHP: 5.5
10
  * Author URI: https://exactmetrics.com
44
  * @access public
45
  * @var string $version Plugin version.
46
  */
47
+ public $version = '7.5.0';
48
 
49
  /**
50
  * Plugin file.
includes/admin/notifications/notification-multiple-gtags.php CHANGED
@@ -18,9 +18,11 @@ class ExactMetrics_Notification_Multiple_Gtags extends ExactMetrics_Notification
18
  $content = $response['body'];
19
 
20
  $document = new DOMDocument();
21
- $document->loadHTML( $content );
 
 
22
 
23
- $gtag_count = 0;
24
 
25
  foreach( $document->getElementsByTagName('script') as $script ) {
26
  $script_src = $script->getAttribute('src');
@@ -44,4 +46,4 @@ class ExactMetrics_Notification_Multiple_Gtags extends ExactMetrics_Notification
44
  }
45
  }
46
 
47
- new ExactMetrics_Notification_Multiple_Gtags();
18
  $content = $response['body'];
19
 
20
  $document = new DOMDocument();
21
+ libxml_use_internal_errors(true);
22
+ @$document->loadHTML( $content );
23
+ libxml_clear_errors();
24
 
25
+ $gtag_count = 0;
26
 
27
  foreach( $document->getElementsByTagName('script') as $script ) {
28
  $script_src = $script->getAttribute('src');
46
  }
47
  }
48
 
49
+ new ExactMetrics_Notification_Multiple_Gtags();
includes/admin/notifications/notification-upgrade-eu-traffic.php CHANGED
@@ -18,7 +18,7 @@ final class ExactMetrics_Notification_Upgrade_EU_Traffic extends ExactMetrics_No
18
  /**
19
  * Build Notification
20
  *
21
- * @return array $notification notification is ready to add
22
  *
23
  * @since 7.12.3
24
  */
@@ -28,6 +28,9 @@ final class ExactMetrics_Notification_Upgrade_EU_Traffic extends ExactMetrics_No
28
  'MT', 'NL', 'PL', 'PT', 'RO', 'SK', 'SI', 'ES', 'SE'];
29
 
30
  $report = $this->get_report();
 
 
 
31
 
32
  $sessions = isset( $report['data']['infobox']['sessions']['value'] ) ? $report['data']['infobox']['sessions']['value'] : 0;
33
  $all_countries = isset( $report['data']['countries'] ) ? $report['data']['countries'] : [];
@@ -40,6 +43,10 @@ final class ExactMetrics_Notification_Upgrade_EU_Traffic extends ExactMetrics_No
40
  }
41
  }
42
 
 
 
 
 
43
  $eu_sessions_percentage = $eu_sessions / $sessions * 100;
44
 
45
  if ( $eu_sessions_percentage < 1 ) {
@@ -60,4 +67,4 @@ final class ExactMetrics_Notification_Upgrade_EU_Traffic extends ExactMetrics_No
60
  }
61
  }
62
 
63
- new ExactMetrics_Notification_Upgrade_EU_Traffic();
18
  /**
19
  * Build Notification
20
  *
21
+ * @return array|false $notification notification is ready to add
22
  *
23
  * @since 7.12.3
24
  */
28
  'MT', 'NL', 'PL', 'PT', 'RO', 'SK', 'SI', 'ES', 'SE'];
29
 
30
  $report = $this->get_report();
31
+ if ( ! $report || ! $report['success'] ) {
32
+ return false;
33
+ }
34
 
35
  $sessions = isset( $report['data']['infobox']['sessions']['value'] ) ? $report['data']['infobox']['sessions']['value'] : 0;
36
  $all_countries = isset( $report['data']['countries'] ) ? $report['data']['countries'] : [];
43
  }
44
  }
45
 
46
+ if ( empty( $sessions ) ) {
47
+ return false;
48
+ }
49
+
50
  $eu_sessions_percentage = $eu_sessions / $sessions * 100;
51
 
52
  if ( $eu_sessions_percentage < 1 ) {
67
  }
68
  }
69
 
70
+ new ExactMetrics_Notification_Upgrade_EU_Traffic();
includes/admin/routes.php CHANGED
@@ -931,8 +931,12 @@ class ExactMetrics_Rest_Routes {
931
  $data = apply_filters( 'exactmetrics_vue_reports_data', $report->get_data( $args ), $report_name, $report );
932
  }
933
 
934
- if ( ! empty( $data['success'] ) && ! empty( $data['data'] ) ) {
935
- wp_send_json_success( $data['data'] );
 
 
 
 
936
  } else if ( isset( $data['success'] ) && false === $data['success'] && ! empty( $data['error'] ) ) {
937
  // Use a custom handler for invalid_grant errors.
938
  if ( strpos( $data['error'], 'invalid_grant' ) > 0 ) {
931
  $data = apply_filters( 'exactmetrics_vue_reports_data', $report->get_data( $args ), $report_name, $report );
932
  }
933
 
934
+ if ( ! empty( $data['success'] ) ) {
935
+ if ( empty( $data['data'] ) ) {
936
+ wp_send_json_success( new stdclass() );
937
+ } else {
938
+ wp_send_json_success( $data['data'] );
939
+ }
940
  } else if ( isset( $data['success'] ) && false === $data['success'] && ! empty( $data['error'] ) ) {
941
  // Use a custom handler for invalid_grant errors.
942
  if ( strpos( $data['error'], 'invalid_grant' ) > 0 ) {
includes/frontend/events/class-analytics-events.php CHANGED
@@ -1,116 +1,116 @@
1
- <?php
2
- /**
3
- * Events JS class.
4
- *
5
- * @since 6.0.0
6
- *
7
- * @package ExactMetrics
8
- * @subpackage Events
9
- * @author Chris Christoff
10
- */
11
-
12
- // Exit if accessed directly
13
- if ( ! defined( 'ABSPATH' ) ) {
14
- exit;
15
- }
16
-
17
- class ExactMetrics_Analytics_Events {
18
-
19
- /**
20
- * Holds the name of the events type.
21
- *
22
- * @since 6.0.0
23
- * @access public
24
- *
25
- * @var string $name Name of the events type.
26
- */
27
- public $name = 'js';
28
-
29
- /**
30
- * Version of the events class.
31
- *
32
- * @since 6.0.0
33
- * @access public
34
- *
35
- * @var string $version Version of the events class.
36
- */
37
- public $version = '1.0.0';
38
-
39
- /**
40
- * Primary class constructor.
41
- *
42
- * @since 6.0.0
43
- * @access public
44
- */
45
- public function __construct() {
46
- add_action( 'wp_enqueue_scripts', array( $this, 'output_javascript' ), 9 );
47
- //add_action( 'login_head', array( $this, 'output_javascript' ), 9 );
48
- }
49
-
50
- /**
51
- * Outputs the Javascript for JS tracking on the page.
52
- *
53
- * @since 6.0.0
54
- * @access public
55
- *
56
- * @return string
57
- */
58
- public function output_javascript() {
59
- // Affiliate Links
60
- $inbound_paths = exactmetrics_get_option( 'affiliate_links', array() );
61
- if ( ! is_array( $inbound_paths ) ) {
62
- $inbound_paths = array();
63
- } else {
64
- foreach( $inbound_paths as $index => $pair ) {
65
- // if empty pair, unset and continue
66
- if ( empty( $pair['path'] ) ) {
67
- unset( $inbound_paths[$index] );
68
- continue;
69
- }
70
-
71
- // if path does not start with a /, start it with that
72
- $path = ! empty( $pair['path'] ) ? $pair['path'] : 'aff';
73
- $inbound_paths[$index]['path'] = trim( $path );
74
-
75
- // js escape the link label
76
- $label = ! empty( $pair['label'] ) ? $pair['label'] : 'aff';
77
- $inbound_paths[$index]['label'] = esc_js( trim( $label ) );
78
- }
79
- }
80
-
81
- $inbound_paths = wp_json_encode( $inbound_paths );
82
-
83
- // Get download extensions to track
84
- $download_extensions = exactmetrics_get_option( 'extensions_of_files', '' );
85
- $download_extensions = explode( ',', str_replace( '.', '', $download_extensions ) );
86
- if ( ! is_array( $download_extensions ) ) {
87
- $download_extensions = array( $download_extensions );
88
- }
89
- $i = 0;
90
- foreach( $download_extensions as $extension ){
91
- $download_extensions[ $i ] = esc_js( trim( $extension ) );
92
- $i++;
93
- }
94
-
95
- $download_extensions = implode( ",", $download_extensions );
96
-
97
- $hash_tracking = exactmetrics_get_option( 'hash_tracking', false ) ? 'true' : 'false';
98
-
99
- $suffix = ( defined( 'WP_DEBUG' ) && WP_DEBUG ) || ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
100
- if ( ! file_exists( EXACTMETRICS_PLUGIN_DIR . 'assets/js/frontend.min.js' ) ) {
101
- $suffix = '';
102
- }
103
- wp_enqueue_script( 'exactmetrics-frontend-script', plugins_url( 'assets/js/frontend' . $suffix . '.js', EXACTMETRICS_PLUGIN_FILE ), array(), exactmetrics_get_asset_version(), false );
104
- wp_localize_script(
105
- 'exactmetrics-frontend-script',
106
- 'exactmetrics_frontend',
107
- array(
108
- 'js_events_tracking' => 'true',
109
- 'download_extensions' => $download_extensions, /* Let's get the extensions to track */
110
- 'inbound_paths' => $inbound_paths, /* Let's get the internal paths to track */
111
- 'home_url' => home_url(), /* Let's get the url to compare for external/internal use */
112
- 'hash_tracking' => $hash_tracking, /* Should hash track */
113
- )
114
- );
115
- }
116
- }
1
+ <?php
2
+ /**
3
+ * Events JS class.
4
+ *
5
+ * @since 6.0.0
6
+ *
7
+ * @package ExactMetrics
8
+ * @subpackage Events
9
+ * @author Chris Christoff
10
+ */
11
+
12
+ // Exit if accessed directly
13
+ if ( ! defined( 'ABSPATH' ) ) {
14
+ exit;
15
+ }
16
+
17
+ class ExactMetrics_Analytics_Events {
18
+
19
+ /**
20
+ * Holds the name of the events type.
21
+ *
22
+ * @since 6.0.0
23
+ * @access public
24
+ *
25
+ * @var string $name Name of the events type.
26
+ */
27
+ public $name = 'js';
28
+
29
+ /**
30
+ * Version of the events class.
31
+ *
32
+ * @since 6.0.0
33
+ * @access public
34
+ *
35
+ * @var string $version Version of the events class.
36
+ */
37
+ public $version = '1.0.0';
38
+
39
+ /**
40
+ * Primary class constructor.
41
+ *
42
+ * @since 6.0.0
43
+ * @access public
44
+ */
45
+ public function __construct() {
46
+ add_action( 'wp_enqueue_scripts', array( $this, 'output_javascript' ), 9 );
47
+ //add_action( 'login_head', array( $this, 'output_javascript' ), 9 );
48
+ }
49
+
50
+ /**
51
+ * Outputs the Javascript for JS tracking on the page.
52
+ *
53
+ * @since 6.0.0
54
+ * @access public
55
+ *
56
+ * @return string
57
+ */
58
+ public function output_javascript() {
59
+ // Affiliate Links
60
+ $inbound_paths = exactmetrics_get_option( 'affiliate_links', array() );
61
+ if ( ! is_array( $inbound_paths ) ) {
62
+ $inbound_paths = array();
63
+ } else {
64
+ foreach( $inbound_paths as $index => $pair ) {
65
+ // if empty pair, unset and continue
66
+ if ( empty( $pair['path'] ) ) {
67
+ unset( $inbound_paths[$index] );
68
+ continue;
69
+ }
70
+
71
+ // if path does not start with a /, start it with that
72
+ $path = ! empty( $pair['path'] ) ? $pair['path'] : 'aff';
73
+ $inbound_paths[$index]['path'] = trim( $path );
74
+
75
+ // js escape the link label
76
+ $label = ! empty( $pair['label'] ) ? $pair['label'] : 'aff';
77
+ $inbound_paths[$index]['label'] = esc_js( trim( $label ) );
78
+ }
79
+ }
80
+
81
+ $inbound_paths = wp_json_encode( $inbound_paths );
82
+
83
+ // Get download extensions to track
84
+ $download_extensions = exactmetrics_get_option( 'extensions_of_files', '' );
85
+ $download_extensions = explode( ',', str_replace( '.', '', $download_extensions ) );
86
+ if ( ! is_array( $download_extensions ) ) {
87
+ $download_extensions = array( $download_extensions );
88
+ }
89
+ $i = 0;
90
+ foreach( $download_extensions as $extension ){
91
+ $download_extensions[ $i ] = esc_js( trim( $extension ) );
92
+ $i++;
93
+ }
94
+
95
+ $download_extensions = implode( ",", $download_extensions );
96
+
97
+ $hash_tracking = exactmetrics_get_option( 'hash_tracking', false ) ? 'true' : 'false';
98
+
99
+ $suffix = ( defined( 'WP_DEBUG' ) && WP_DEBUG ) || ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
100
+ if ( ! file_exists( EXACTMETRICS_PLUGIN_DIR . 'assets/js/frontend.min.js' ) ) {
101
+ $suffix = '';
102
+ }
103
+ wp_enqueue_script( 'exactmetrics-frontend-script', plugins_url( 'assets/js/frontend' . $suffix . '.js', EXACTMETRICS_PLUGIN_FILE ), array(), exactmetrics_get_asset_version(), false );
104
+ exactmetrics_localize_script(
105
+ 'exactmetrics-frontend-script',
106
+ 'exactmetrics_frontend',
107
+ array(
108
+ 'js_events_tracking' => 'true',
109
+ 'download_extensions' => $download_extensions, /* Let's get the extensions to track */
110
+ 'inbound_paths' => $inbound_paths, /* Let's get the internal paths to track */
111
+ 'home_url' => home_url(), /* Let's get the url to compare for external/internal use */
112
+ 'hash_tracking' => $hash_tracking, /* Should hash track */
113
+ )
114
+ );
115
+ }
116
+ }
includes/frontend/events/class-gtag-events.php CHANGED
@@ -100,7 +100,7 @@ class ExactMetrics_Gtag_Events {
100
  $suffix = '';
101
  }
102
  wp_enqueue_script( 'exactmetrics-frontend-script', plugins_url( 'assets/js/frontend-gtag' . $suffix . '.js', EXACTMETRICS_PLUGIN_FILE ), array(), exactmetrics_get_asset_version(), false );
103
- wp_localize_script(
104
  'exactmetrics-frontend-script',
105
  'exactmetrics_frontend',
106
  array(
100
  $suffix = '';
101
  }
102
  wp_enqueue_script( 'exactmetrics-frontend-script', plugins_url( 'assets/js/frontend-gtag' . $suffix . '.js', EXACTMETRICS_PLUGIN_FILE ), array(), exactmetrics_get_asset_version(), false );
103
+ exactmetrics_localize_script(
104
  'exactmetrics-frontend-script',
105
  'exactmetrics_frontend',
106
  array(
includes/helpers.php CHANGED
@@ -1722,6 +1722,35 @@ function exactmetrics_get_frontend_analytics_script_atts() {
1722
  return $attr_string;
1723
  }
1724
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1725
  /**
1726
  * Get native english speaking countries
1727
  *
1722
  return $attr_string;
1723
  }
1724
 
1725
+ /**
1726
+ * Helper function instead of wp_localize_script with our script tag attributes.
1727
+ *
1728
+ * @return string
1729
+ * @since 8.5.0
1730
+ *
1731
+ */
1732
+ function exactmetrics_localize_script( $handle, $object_name, $data, $priority = 100 ) {
1733
+ $theme_supports_html5 = current_theme_supports( 'html5', 'script' );
1734
+ $script_js = ! $theme_supports_html5 ? "/* <![CDATA[ */\n" : '';
1735
+ $script_js .= "var $object_name = " . wp_json_encode( $data ) . ';';
1736
+ $script_js .= ! $theme_supports_html5 ? "/* ]]> */\n" : '';
1737
+
1738
+ $script = sprintf(
1739
+ "<script%s id='%s-js-extra'>%s</script>\n",
1740
+ exactmetrics_get_frontend_analytics_script_atts(),
1741
+ esc_attr( $handle ),
1742
+ $script_js
1743
+ );
1744
+
1745
+ add_filter( 'script_loader_tag', function ( $tag, $current_handle ) use ($handle, $script){
1746
+ if ( $current_handle !== $handle ) {
1747
+ return $tag;
1748
+ }
1749
+
1750
+ return $tag . $script;
1751
+ }, $priority, 2 );
1752
+ }
1753
+
1754
  /**
1755
  * Get native english speaking countries
1756
  *
includes/popular-posts/class-popular-posts.php CHANGED
@@ -189,7 +189,7 @@ class ExactMetrics_Popular_Posts {
189
 
190
  wp_enqueue_script( 'exactmetrics-popular-posts-js' );
191
 
192
- wp_localize_script( 'exactmetrics-popular-posts-js', 'exactmetrics_pp', array(
193
  'ajaxurl' => admin_url( 'admin-ajax.php' ),
194
  'post_id' => get_the_ID(),
195
  ) );
189
 
190
  wp_enqueue_script( 'exactmetrics-popular-posts-js' );
191
 
192
+ exactmetrics_localize_script( 'exactmetrics-popular-posts-js', 'exactmetrics_pp', array(
193
  'ajaxurl' => admin_url( 'admin-ajax.php' ),
194
  'post_id' => get_the_ID(),
195
  ) );
languages/google-analytics-dashboard-for-wp.pot CHANGED
@@ -2,20 +2,20 @@
2
  # This file is distributed under the same license as the ExactMetrics Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: ExactMetrics Pro 7.4.0\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/monsterinsights-temp\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2022-02-28T18:57:47+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
- "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: google-analytics-dashboard-for-wp\n"
16
 
17
  #. Plugin Name of the plugin
18
- #: languages/vue.php:3489
19
  msgid "ExactMetrics Pro"
20
  msgstr ""
21
 
@@ -112,7 +112,7 @@ msgstr ""
112
  #: includes/admin/admin.php:34
113
  #: includes/admin/admin.php:42
114
  #: includes/admin/admin.php:222
115
- #: languages/vue.php:544
116
  msgid "Settings"
117
  msgstr ""
118
 
@@ -128,7 +128,7 @@ msgstr ""
128
 
129
  #: includes/admin/admin.php:39
130
  #: includes/admin/admin.php:130
131
- #: languages/vue.php:2312
132
  msgid "Reports"
133
  msgstr ""
134
 
@@ -138,7 +138,7 @@ msgstr ""
138
 
139
  #: includes/admin/admin.php:51
140
  #: languages/gutenberg.php:83
141
- #: languages/vue.php:1009
142
  msgid "Popular Posts"
143
  msgstr ""
144
 
@@ -172,7 +172,7 @@ msgstr ""
172
 
173
  #: includes/admin/admin.php:71
174
  #: includes/admin/admin.php:146
175
- #: languages/vue.php:160
176
  msgid "About Us"
177
  msgstr ""
178
 
@@ -191,7 +191,7 @@ msgstr ""
191
  #: includes/admin/admin.php:76
192
  #: includes/admin/notifications/notification-upgrade-to-pro-high-traffic.php:41
193
  #: includes/admin/notifications/notification-upgrade-to-pro.php:33
194
- #: languages/vue.php:1057
195
  msgid "Upgrade to Pro"
196
  msgstr ""
197
 
@@ -219,19 +219,19 @@ msgstr ""
219
 
220
  #: includes/admin/admin.php:212
221
  #: includes/admin/admin.php:215
222
- #: languages/vue.php:1033
223
  msgid "Support"
224
  msgstr ""
225
 
226
  #: includes/admin/admin.php:229
227
- #: includes/admin/notifications/notification-upgrade-eu-traffic.php:54
228
  #: includes/admin/notifications/notification-upgrade-for-custom-dimensions.php:32
229
  #: includes/admin/notifications/notification-upgrade-for-email-summaries.php:32
230
  #: includes/admin/notifications/notification-upgrade-for-events-reporting.php:32
231
  #: includes/admin/notifications/notification-upgrade-for-google-optimize.php:32
232
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:32
233
  #: includes/admin/reports/abstract-report.php:418
234
- #: languages/vue.php:1165
235
  msgid "Get ExactMetrics Pro"
236
  msgstr ""
237
 
@@ -241,12 +241,12 @@ msgid "Please rate %1$sExactMetrics%2$s on %3$s %4$sWordPress.org%5$s to help us
241
  msgstr ""
242
 
243
  #: includes/admin/admin.php:324
244
- #: languages/vue.php:1156
245
  msgid "Please Setup Website Analytics to See Audience Insights"
246
  msgstr ""
247
 
248
  #: includes/admin/admin.php:325
249
- #: languages/vue.php:1162
250
  msgid "Connect ExactMetrics and Setup Website Analytics"
251
  msgstr ""
252
 
@@ -261,12 +261,12 @@ msgstr ""
261
  #: includes/admin/notifications/notification-mobile-device-low-traffic.php:41
262
  #: includes/admin/notifications/notification-returning-visitors.php:43
263
  #: includes/admin/notifications/notification-traffic-dropping.php:43
264
- #: languages/vue.php:338
265
  msgid "Learn More"
266
  msgstr ""
267
 
268
  #: includes/admin/admin.php:329
269
- #: languages/vue.php:1159
270
  msgid "ExactMetrics, WordPress analytics plugin, helps you connect your website with Google Analytics, so you can see how people find and use your website. Over 3 million website owners use ExactMetrics to see the stats that matter and grow their business."
271
  msgstr ""
272
 
@@ -277,17 +277,17 @@ msgstr ""
277
 
278
  #. Translators: Adds a link to the license renewal.
279
  #: includes/admin/admin.php:350
280
- #: languages/vue.php:481
281
  msgid "Your license key for ExactMetrics has expired. %1$sPlease click here to renew your license key.%2$s"
282
  msgstr ""
283
 
284
  #: includes/admin/admin.php:352
285
- #: languages/vue.php:484
286
  msgid "Your license key for ExactMetrics has been disabled. Please use a different key."
287
  msgstr ""
288
 
289
  #: includes/admin/admin.php:354
290
- #: languages/vue.php:487
291
  msgid "Your license key for ExactMetrics is invalid. The key no longer exists or the user associated with the key has been deleted. Please use a different key."
292
  msgstr ""
293
 
@@ -345,7 +345,7 @@ msgid "Your Measurement Protocol API Secret is currently left blank, so you won'
345
  msgstr ""
346
 
347
  #: includes/admin/ajax.php:55
348
- #: includes/admin/routes.php:967
349
  #: lite/includes/admin/onboarding-wizard.php:249
350
  msgid "You are not allowed to install plugins"
351
  msgstr ""
@@ -491,7 +491,7 @@ msgid "View 2021 Year in Review report!"
491
  msgstr ""
492
 
493
  #: includes/admin/common.php:951
494
- #: languages/vue.php:3334
495
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2022!"
496
  msgstr ""
497
 
@@ -512,7 +512,7 @@ msgstr ""
512
 
513
  #: includes/admin/exclude-page-metabox.php:102
514
  #: languages/gutenberg.php:324
515
- #: languages/vue.php:3126
516
  msgid "Upgrade"
517
  msgstr ""
518
 
@@ -541,7 +541,7 @@ msgstr ""
541
 
542
  #: includes/admin/notification-event.php:256
543
  #: includes/admin/routes.php:873
544
- #: includes/admin/routes.php:1207
545
  msgid "You don't have permission to view ExactMetrics reports."
546
  msgstr ""
547
 
@@ -642,11 +642,11 @@ msgstr ""
642
  msgid "Traffic from mobile devices is considerably lower on your site compared to desktop devices. This could be an indicator that your site is not optimised for mobile devices.<br><br>Take a look now at %show your site looks%s on mobile and make sure all your content can be accessed correctly."
643
  msgstr ""
644
 
645
- #: includes/admin/notifications/notification-multiple-gtags.php:37
646
  msgid "Multiple Google Analytics Tags Found"
647
  msgstr ""
648
 
649
- #: includes/admin/notifications/notification-multiple-gtags.php:38
650
  msgid "ExactMetrics has detected multiple analytics tags on your website. Please disable the other plugin to ensure accurate tracking."
651
  msgstr ""
652
 
@@ -695,18 +695,18 @@ msgstr ""
695
  msgid "Your website traffic is decreasing and that’s a reason to take action now. Less traffic means less opportunities to make your brand known, make relationships and ultimately sell your service or product. <br><br>Follow the marketing hacks of %sthis article%s to start growing your traffic again."
696
  msgstr ""
697
 
698
- #: includes/admin/notifications/notification-upgrade-eu-traffic.php:49
699
  msgid "Help Your Site Become GDPR Compliant"
700
  msgstr ""
701
 
702
- #: includes/admin/notifications/notification-upgrade-eu-traffic.php:50
703
  msgid "Your site is receiving traffic from the EU. Help ensure your site is more compliant with GDPR by upgrading to ExactMetrics Pro and enable our EU Privacy addon."
704
  msgstr ""
705
 
706
  #: includes/admin/notifications/notification-upgrade-for-custom-dimensions.php:26
707
  #: includes/admin/notifications/notification-upgrade-for-events-reporting.php:26
708
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:26
709
- #: languages/vue.php:1747
710
  #: lite/includes/admin/helpers.php:83
711
  msgid "Upgrade to ExactMetrics Pro"
712
  msgstr ""
@@ -742,7 +742,7 @@ msgstr ""
742
  #: includes/admin/notifications/notification-upgrade-for-form-conversion.php:31
743
  #: includes/admin/notifications/notification-upgrade-for-search-console.php:32
744
  #: includes/admin/reports/abstract-report.php:415
745
- #: languages/vue.php:231
746
  msgid "Upgrade Now"
747
  msgstr ""
748
 
@@ -919,7 +919,7 @@ msgid "Please ask your webmaster to enable this addon."
919
  msgstr ""
920
 
921
  #: includes/admin/reports/overview.php:34
922
- #: languages/vue.php:441
923
  msgid "Overview"
924
  msgstr ""
925
 
@@ -1044,40 +1044,40 @@ msgid "Please upload a file to import"
1044
  msgstr ""
1045
 
1046
  #: includes/admin/routes.php:885
1047
- #: includes/admin/routes.php:1219
1048
  msgid "You can't view ExactMetrics reports because you are not licensed."
1049
  msgstr ""
1050
 
1051
  #: includes/admin/routes.php:886
1052
- #: includes/admin/routes.php:1220
1053
  msgid "Add your license"
1054
  msgstr ""
1055
 
1056
  #: includes/admin/routes.php:893
1057
- #: includes/admin/routes.php:1227
1058
  msgid "You can't view ExactMetrics reports due to license key errors."
1059
  msgstr ""
1060
 
1061
  #: includes/admin/routes.php:901
1062
- #: includes/admin/routes.php:1235
1063
  msgid "You must authenticate with ExactMetrics before you can view reports."
1064
  msgstr ""
1065
 
1066
  #: includes/admin/routes.php:907
1067
- #: includes/admin/routes.php:1241
1068
  msgid "Unknown report. Try refreshing and retrying. Contact support if this issue persists."
1069
  msgstr ""
1070
 
1071
- #: includes/admin/routes.php:955
1072
- #: includes/admin/routes.php:1289
1073
  msgid "We encountered an error when fetching the report data."
1074
  msgstr ""
1075
 
1076
- #: includes/admin/routes.php:975
1077
  msgid "Missing plugin name."
1078
  msgstr ""
1079
 
1080
- #: includes/admin/routes.php:1119
1081
  msgid "Homepage"
1082
  msgstr ""
1083
 
@@ -1415,7 +1415,7 @@ msgid "Question"
1415
  msgstr ""
1416
 
1417
  #: includes/gutenberg/headline-tool/headline-tool.php:290
1418
- #: languages/vue.php:550
1419
  msgid "General"
1420
  msgstr ""
1421
 
@@ -3645,12 +3645,12 @@ msgid "United States"
3645
  msgstr ""
3646
 
3647
  #: includes/helpers.php:385
3648
- #: includes/helpers.php:1741
3649
  msgid "Canada"
3650
  msgstr ""
3651
 
3652
  #: includes/helpers.php:386
3653
- #: includes/helpers.php:1786
3654
  msgid "United Kingdom"
3655
  msgstr ""
3656
 
@@ -3691,7 +3691,7 @@ msgid "Antarctica"
3691
  msgstr ""
3692
 
3693
  #: includes/helpers.php:396
3694
- #: includes/helpers.php:1734
3695
  msgid "Antigua and Barbuda"
3696
  msgstr ""
3697
 
@@ -3708,7 +3708,7 @@ msgid "Aruba"
3708
  msgstr ""
3709
 
3710
  #: includes/helpers.php:400
3711
- #: includes/helpers.php:1735
3712
  msgid "Australia"
3713
  msgstr ""
3714
 
@@ -3733,7 +3733,7 @@ msgid "Bangladesh"
3733
  msgstr ""
3734
 
3735
  #: includes/helpers.php:406
3736
- #: includes/helpers.php:1736
3737
  msgid "Barbados"
3738
  msgstr ""
3739
 
@@ -3746,7 +3746,7 @@ msgid "Belgium"
3746
  msgstr ""
3747
 
3748
  #: includes/helpers.php:409
3749
- #: includes/helpers.php:1737
3750
  msgid "Belize"
3751
  msgstr ""
3752
 
@@ -3775,7 +3775,7 @@ msgid "Bosnia and Herzegovina"
3775
  msgstr ""
3776
 
3777
  #: includes/helpers.php:416
3778
- #: includes/helpers.php:1738
3779
  msgid "Botswana"
3780
  msgstr ""
3781
 
@@ -3804,7 +3804,7 @@ msgid "Burkina Faso"
3804
  msgstr ""
3805
 
3806
  #: includes/helpers.php:423
3807
- #: includes/helpers.php:1739
3808
  msgid "Burundi"
3809
  msgstr ""
3810
 
@@ -3813,7 +3813,7 @@ msgid "Cambodia"
3813
  msgstr ""
3814
 
3815
  #: includes/helpers.php:425
3816
- #: includes/helpers.php:1740
3817
  msgid "Cameroon"
3818
  msgstr ""
3819
 
@@ -3906,7 +3906,7 @@ msgid "Djibouti"
3906
  msgstr ""
3907
 
3908
  #: includes/helpers.php:448
3909
- #: includes/helpers.php:1742
3910
  msgid "Dominica"
3911
  msgstr ""
3912
 
@@ -3955,7 +3955,7 @@ msgid "Faroe Islands"
3955
  msgstr ""
3956
 
3957
  #: includes/helpers.php:460
3958
- #: includes/helpers.php:1743
3959
  msgid "Fiji"
3960
  msgstr ""
3961
 
@@ -3984,7 +3984,7 @@ msgid "Gabon"
3984
  msgstr ""
3985
 
3986
  #: includes/helpers.php:467
3987
- #: includes/helpers.php:1746
3988
  msgid "Gambia"
3989
  msgstr ""
3990
 
@@ -4001,7 +4001,7 @@ msgid "Greece"
4001
  msgstr ""
4002
 
4003
  #: includes/helpers.php:471
4004
- #: includes/helpers.php:1747
4005
  msgid "Ghana"
4006
  msgstr ""
4007
 
@@ -4014,7 +4014,7 @@ msgid "Greenland"
4014
  msgstr ""
4015
 
4016
  #: includes/helpers.php:474
4017
- #: includes/helpers.php:1744
4018
  msgid "Grenada"
4019
  msgstr ""
4020
 
@@ -4043,7 +4043,7 @@ msgid "Guinea-Bissau"
4043
  msgstr ""
4044
 
4045
  #: includes/helpers.php:481
4046
- #: includes/helpers.php:1745
4047
  msgid "Guyana"
4048
  msgstr ""
4049
 
@@ -4076,7 +4076,7 @@ msgid "Iceland"
4076
  msgstr ""
4077
 
4078
  #: includes/helpers.php:489
4079
- #: includes/helpers.php:1749
4080
  msgid "India"
4081
  msgstr ""
4082
 
@@ -4093,7 +4093,7 @@ msgid "Iraq"
4093
  msgstr ""
4094
 
4095
  #: includes/helpers.php:493
4096
- #: includes/helpers.php:1748
4097
  msgid "Ireland"
4098
  msgstr ""
4099
 
@@ -4110,7 +4110,7 @@ msgid "Italy"
4110
  msgstr ""
4111
 
4112
  #: includes/helpers.php:497
4113
- #: includes/helpers.php:1750
4114
  msgid "Jamaica"
4115
  msgstr ""
4116
 
@@ -4131,12 +4131,12 @@ msgid "Kazakhstan"
4131
  msgstr ""
4132
 
4133
  #: includes/helpers.php:502
4134
- #: includes/helpers.php:1751
4135
  msgid "Kenya"
4136
  msgstr ""
4137
 
4138
  #: includes/helpers.php:503
4139
- #: includes/helpers.php:1752
4140
  msgid "Kiribati"
4141
  msgstr ""
4142
 
@@ -4161,12 +4161,12 @@ msgid "Lebanon"
4161
  msgstr ""
4162
 
4163
  #: includes/helpers.php:509
4164
- #: includes/helpers.php:1753
4165
  msgid "Lesotho"
4166
  msgstr ""
4167
 
4168
  #: includes/helpers.php:510
4169
- #: includes/helpers.php:1754
4170
  msgid "Liberia"
4171
  msgstr ""
4172
 
@@ -4199,7 +4199,7 @@ msgid "Madagascar"
4199
  msgstr ""
4200
 
4201
  #: includes/helpers.php:518
4202
- #: includes/helpers.php:1755
4203
  msgid "Malawi"
4204
  msgstr ""
4205
 
@@ -4216,12 +4216,12 @@ msgid "Mali"
4216
  msgstr ""
4217
 
4218
  #: includes/helpers.php:522
4219
- #: includes/helpers.php:1756
4220
  msgid "Malta"
4221
  msgstr ""
4222
 
4223
  #: includes/helpers.php:523
4224
- #: includes/helpers.php:1757
4225
  msgid "Marshall Islands"
4226
  msgstr ""
4227
 
@@ -4234,7 +4234,7 @@ msgid "Mauritania"
4234
  msgstr ""
4235
 
4236
  #: includes/helpers.php:526
4237
- #: includes/helpers.php:1758
4238
  msgid "Mauritius"
4239
  msgstr ""
4240
 
@@ -4247,7 +4247,7 @@ msgid "Mexico"
4247
  msgstr ""
4248
 
4249
  #: includes/helpers.php:529
4250
- #: includes/helpers.php:1759
4251
  msgid "Micronesia"
4252
  msgstr ""
4253
 
@@ -4284,12 +4284,12 @@ msgid "Myanmar"
4284
  msgstr ""
4285
 
4286
  #: includes/helpers.php:538
4287
- #: includes/helpers.php:1761
4288
  msgid "Namibia"
4289
  msgstr ""
4290
 
4291
  #: includes/helpers.php:539
4292
- #: includes/helpers.php:1762
4293
  msgid "Nauru"
4294
  msgstr ""
4295
 
@@ -4310,7 +4310,7 @@ msgid "New Caledonia"
4310
  msgstr ""
4311
 
4312
  #: includes/helpers.php:544
4313
- #: includes/helpers.php:1760
4314
  msgid "New Zealand"
4315
  msgstr ""
4316
 
@@ -4323,7 +4323,7 @@ msgid "Niger"
4323
  msgstr ""
4324
 
4325
  #: includes/helpers.php:547
4326
- #: includes/helpers.php:1763
4327
  msgid "Nigeria"
4328
  msgstr ""
4329
 
@@ -4352,12 +4352,12 @@ msgid "Oman"
4352
  msgstr ""
4353
 
4354
  #: includes/helpers.php:554
4355
- #: includes/helpers.php:1764
4356
  msgid "Pakistan"
4357
  msgstr ""
4358
 
4359
  #: includes/helpers.php:555
4360
- #: includes/helpers.php:1765
4361
  msgid "Palau"
4362
  msgstr ""
4363
 
@@ -4370,7 +4370,7 @@ msgid "Panama"
4370
  msgstr ""
4371
 
4372
  #: includes/helpers.php:558
4373
- #: includes/helpers.php:1766
4374
  msgid "Papua New Guinea"
4375
  msgstr ""
4376
 
@@ -4383,7 +4383,7 @@ msgid "Peru"
4383
  msgstr ""
4384
 
4385
  #: includes/helpers.php:561
4386
- #: includes/helpers.php:1767
4387
  msgid "Philippines"
4388
  msgstr ""
4389
 
@@ -4424,7 +4424,7 @@ msgid "Russian Federation"
4424
  msgstr ""
4425
 
4426
  #: includes/helpers.php:571
4427
- #: includes/helpers.php:1768
4428
  msgid "Rwanda"
4429
  msgstr ""
4430
 
@@ -4481,17 +4481,17 @@ msgid "Serbia"
4481
  msgstr ""
4482
 
4483
  #: includes/helpers.php:585
4484
- #: includes/helpers.php:1775
4485
  msgid "Seychelles"
4486
  msgstr ""
4487
 
4488
  #: includes/helpers.php:586
4489
- #: includes/helpers.php:1776
4490
  msgid "Sierra Leone"
4491
  msgstr ""
4492
 
4493
  #: includes/helpers.php:587
4494
- #: includes/helpers.php:1769
4495
  msgid "Singapore"
4496
  msgstr ""
4497
 
@@ -4504,7 +4504,7 @@ msgid "Slovenia"
4504
  msgstr ""
4505
 
4506
  #: includes/helpers.php:590
4507
- #: includes/helpers.php:1777
4508
  msgid "Solomon Islands"
4509
  msgstr ""
4510
 
@@ -4513,7 +4513,7 @@ msgid "Somalia"
4513
  msgstr ""
4514
 
4515
  #: includes/helpers.php:592
4516
- #: includes/helpers.php:1778
4517
  msgid "South Africa"
4518
  msgstr ""
4519
 
@@ -4526,7 +4526,7 @@ msgid "South Korea"
4526
  msgstr ""
4527
 
4528
  #: includes/helpers.php:595
4529
- #: includes/helpers.php:1779
4530
  msgid "South Sudan"
4531
  msgstr ""
4532
 
@@ -4539,7 +4539,7 @@ msgid "Sri Lanka"
4539
  msgstr ""
4540
 
4541
  #: includes/helpers.php:598
4542
- #: includes/helpers.php:1780
4543
  msgid "Sudan"
4544
  msgstr ""
4545
 
@@ -4552,7 +4552,7 @@ msgid "Svalbard and Jan Mayen Islands"
4552
  msgstr ""
4553
 
4554
  #: includes/helpers.php:601
4555
- #: includes/helpers.php:1773
4556
  msgid "Swaziland"
4557
  msgstr ""
4558
 
@@ -4577,7 +4577,7 @@ msgid "Tajikistan"
4577
  msgstr ""
4578
 
4579
  #: includes/helpers.php:607
4580
- #: includes/helpers.php:1783
4581
  msgid "Tanzania"
4582
  msgstr ""
4583
 
@@ -4598,12 +4598,12 @@ msgid "Tokelau"
4598
  msgstr ""
4599
 
4600
  #: includes/helpers.php:612
4601
- #: includes/helpers.php:1784
4602
  msgid "Tonga"
4603
  msgstr ""
4604
 
4605
  #: includes/helpers.php:613
4606
- #: includes/helpers.php:1781
4607
  msgid "Trinidad and Tobago"
4608
  msgstr ""
4609
 
@@ -4624,12 +4624,12 @@ msgid "Turks and Caicos Islands"
4624
  msgstr ""
4625
 
4626
  #: includes/helpers.php:618
4627
- #: includes/helpers.php:1785
4628
  msgid "Tuvalu"
4629
  msgstr ""
4630
 
4631
  #: includes/helpers.php:619
4632
- #: includes/helpers.php:1788
4633
  msgid "Uganda"
4634
  msgstr ""
4635
 
@@ -4654,7 +4654,7 @@ msgid "Uzbekistan"
4654
  msgstr ""
4655
 
4656
  #: includes/helpers.php:625
4657
- #: includes/helpers.php:1789
4658
  msgid "Vanuatu"
4659
  msgstr ""
4660
 
@@ -4691,12 +4691,12 @@ msgid "Yemen"
4691
  msgstr ""
4692
 
4693
  #: includes/helpers.php:634
4694
- #: includes/helpers.php:1790
4695
  msgid "Zambia"
4696
  msgstr ""
4697
 
4698
  #: includes/helpers.php:635
4699
- #: includes/helpers.php:1791
4700
  msgid "Zimbabwe"
4701
  msgstr ""
4702
 
@@ -4714,27 +4714,27 @@ msgstr ""
4714
  msgid "%1$sWe have detected multiple tracking codes%2$s! You should remove non-ExactMetrics ones. If you need help finding them please %3$sread this article%4$s."
4715
  msgstr ""
4716
 
4717
- #: includes/helpers.php:1770
4718
  msgid "St Kitts and Nevis"
4719
  msgstr ""
4720
 
4721
- #: includes/helpers.php:1771
4722
  msgid "St Lucia"
4723
  msgstr ""
4724
 
4725
- #: includes/helpers.php:1772
4726
  msgid "St Vincent and the Grenadines"
4727
  msgstr ""
4728
 
4729
- #: includes/helpers.php:1774
4730
  msgid "Samoa"
4731
  msgstr ""
4732
 
4733
- #: includes/helpers.php:1782
4734
  msgid "The Bahamas"
4735
  msgstr ""
4736
 
4737
- #: includes/helpers.php:1787
4738
  msgid "United States of America"
4739
  msgstr ""
4740
 
@@ -4815,7 +4815,7 @@ msgid "Theme"
4815
  msgstr ""
4816
 
4817
  #: languages/gutenberg.php:77
4818
- #: languages/vue.php:535
4819
  msgid "Inline Popular Posts"
4820
  msgstr ""
4821
 
@@ -4852,7 +4852,7 @@ msgid "Comment Color"
4852
  msgstr ""
4853
 
4854
  #: languages/gutenberg.php:107
4855
- #: languages/vue.php:3082
4856
  msgid "Wide-Layout Options"
4857
  msgstr ""
4858
 
@@ -4861,12 +4861,12 @@ msgid "Choose Layout"
4861
  msgstr ""
4862
 
4863
  #: languages/gutenberg.php:113
4864
- #: languages/vue.php:3085
4865
  msgid "Adjust the number of columns displayed when the widget is placed in a wide container."
4866
  msgstr ""
4867
 
4868
  #: languages/gutenberg.php:116
4869
- #: languages/vue.php:3106
4870
  msgid "Post Count"
4871
  msgstr ""
4872
 
@@ -4875,7 +4875,7 @@ msgid "Number of posts displayed."
4875
  msgstr ""
4876
 
4877
  #: languages/gutenberg.php:122
4878
- #: languages/vue.php:3088
4879
  msgid "Display Options"
4880
  msgstr ""
4881
 
@@ -4888,7 +4888,7 @@ msgid "Display Widget Title"
4888
  msgstr ""
4889
 
4890
  #: languages/gutenberg.php:131
4891
- #: languages/vue.php:1965
4892
  msgid "Widget Title"
4893
  msgstr ""
4894
 
@@ -4897,17 +4897,17 @@ msgid "Only Show Posts From These Categories"
4897
  msgstr ""
4898
 
4899
  #: languages/gutenberg.php:137
4900
- #: languages/vue.php:3094
4901
  msgid "Display Author"
4902
  msgstr ""
4903
 
4904
  #: languages/gutenberg.php:140
4905
- #: languages/vue.php:3097
4906
  msgid "Display Date"
4907
  msgstr ""
4908
 
4909
  #: languages/gutenberg.php:143
4910
- #: languages/vue.php:3100
4911
  msgid "Display Comments"
4912
  msgstr ""
4913
 
@@ -5128,7 +5128,7 @@ msgid "Goal: "
5128
  msgstr ""
5129
 
5130
  #: languages/gutenberg.php:312
5131
- #: languages/vue.php:997
5132
  msgid "Headline Analyzer"
5133
  msgstr ""
5134
 
@@ -5177,84 +5177,84 @@ msgstr ""
5177
  msgid "Loading new report data"
5178
  msgstr ""
5179
 
5180
- #. Translators: Placeholder gets replaced with an arrow icon.
5181
  #: languages/vue.php:35
5182
  msgid "Continue %s"
5183
  msgstr ""
5184
 
5185
- #: languages/vue.php:38
5186
  msgid "Error"
5187
  msgstr ""
5188
 
5189
- #: languages/vue.php:41
5190
  msgid "Please try again."
5191
  msgstr ""
5192
 
5193
- #: languages/vue.php:44
5194
  msgid "Unlock the Publishers Report and Focus on the Content that Matters"
5195
  msgstr ""
5196
 
5197
- #: languages/vue.php:47
5198
  msgid "Stop guessing about what content your visitors are interested in. ExactMetrics Publisher Report shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions."
5199
  msgstr ""
5200
 
5201
- #: languages/vue.php:50
5202
  msgid "Unlock the Publishers Report and Focus on the Content That Matters"
5203
  msgstr ""
5204
 
5205
- #: languages/vue.php:53
5206
  msgid "Stop guessing about what content your visitors are interested in. The Publisher Report shows you exactly which content gets the most traffic, so you can analyze and optimize it for higher conversions."
5207
  msgstr ""
5208
 
5209
- #: languages/vue.php:56
5210
  msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
5211
  msgstr ""
5212
 
5213
- #: languages/vue.php:59
5214
  msgid "Increase your sales & revenue with insights. ExactMetrics answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value, top products, top referral sources and more."
5215
  msgstr ""
5216
 
5217
- #: languages/vue.php:62
5218
  msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
5219
  msgstr ""
5220
 
5221
- #: languages/vue.php:65
5222
  msgid "Decide what data is important using your own custom tracking parameters. The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
5223
  msgstr ""
5224
 
5225
- #: languages/vue.php:69
5226
  msgid "Unlock the Forms Report and Improve Conversions"
5227
  msgstr ""
5228
 
5229
- #: languages/vue.php:73
5230
  msgid "Easily track your form views and conversions. The Forms Report allows you to see which forms are performing better and which forms have lower conversion rates so you can optimize using real data."
5231
  msgstr ""
5232
 
5233
- #: languages/vue.php:77
5234
  msgid "Unlock the Search Console Report and See How People Find Your Website"
5235
  msgstr ""
5236
 
5237
- #: languages/vue.php:80
5238
  msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
5239
  msgstr ""
5240
 
5241
- #: languages/vue.php:83
5242
  msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
5243
  msgstr ""
5244
 
5245
- #: languages/vue.php:86
5246
  msgid "Track the results of your marketing efforts and product launches as-it-happens right from your WordPress site. The Real-Time report allows you to view your traffic sources and visitors activity when you need it."
5247
  msgstr ""
5248
 
5249
- #: languages/vue.php:89
5250
  msgid "Unlock the Site Speed Report and Improve the Performance of Your Site"
5251
  msgstr ""
5252
 
5253
- #: languages/vue.php:92
5254
  msgid "See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking"
5255
  msgstr ""
5256
 
5257
- #: languages/vue.php:95
5258
  msgid "Today"
5259
  msgstr ""
5260
 
@@ -5296,4464 +5296,4468 @@ msgstr ""
5296
  msgid "See the full analytics report!"
5297
  msgstr ""
5298
 
5299
- #: languages/vue.php:129
5300
  msgid "Overview Report"
5301
  msgstr ""
5302
 
5303
  #. Translators: Current PHP version and recommended PHP version.
5304
- #: languages/vue.php:133
5305
  msgid "ExactMetrics has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. WordPress stopped supporting your PHP version in April, 2019. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure."
5306
  msgstr ""
5307
 
5308
  #. Translators: Current WordPress version.
5309
- #: languages/vue.php:137
5310
  msgid "ExactMetrics has detected that your site is running an outdated version of WordPress (%s). ExactMetrics will stop supporting WordPress versions lower than 4.9 in 2020. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
5311
  msgstr ""
5312
 
5313
- #: languages/vue.php:140
5314
  msgid "Yikes! PHP Update Required"
5315
  msgstr ""
5316
 
5317
  #. Translators: Current PHP version and recommended PHP version.
5318
- #: languages/vue.php:144
5319
  msgid "ExactMetrics has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure."
5320
  msgstr ""
5321
 
5322
- #: languages/vue.php:147
5323
  msgid "Learn more about updating PHP"
5324
  msgstr ""
5325
 
5326
- #: languages/vue.php:150
5327
  msgid "Yikes! WordPress Update Required"
5328
  msgstr ""
5329
 
5330
  #. Translators: Current WordPress version.
5331
- #: languages/vue.php:154
5332
  msgid "ExactMetrics has detected that your site is running an outdated version of WordPress (%s). Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
5333
  msgstr ""
5334
 
5335
- #: languages/vue.php:157
5336
  msgid "Learn more about updating WordPress"
5337
  msgstr ""
5338
 
5339
- #: languages/vue.php:163
5340
  msgid "Getting Started"
5341
  msgstr ""
5342
 
5343
- #: languages/vue.php:167
5344
  msgid "Lite vs Pro"
5345
  msgstr ""
5346
 
5347
- #: languages/vue.php:170
5348
  msgid "Success! "
5349
  msgstr ""
5350
 
5351
- #: languages/vue.php:173
5352
  msgid "You're now using ExactMetrics Pro with all the features."
5353
  msgstr ""
5354
 
5355
  #. Translators: Placeholder gets replaced with an arrow icon.
5356
- #: languages/vue.php:177
5357
  msgid "Get Started %s"
5358
  msgstr ""
5359
 
5360
  #. Translators: Error status and error text.
5361
- #: languages/vue.php:181
5362
  msgid "Can't load report data. Error: %1$s, %2$s"
5363
  msgstr ""
5364
 
5365
- #: languages/vue.php:184
5366
  msgid "Error loading report data"
5367
  msgstr ""
5368
 
5369
- #. Translators: Makes the text bold.
5370
- #: languages/vue.php:188
5371
  msgid "%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
5372
  msgstr ""
5373
 
5374
- #. Translators: Makes the text bold.
5375
- #: languages/vue.php:192
5376
  msgid "%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights."
5377
  msgstr ""
5378
 
5379
- #. Translators: Makes the text bold.
5380
- #: languages/vue.php:196
5381
  msgid "%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more."
5382
  msgstr ""
5383
 
5384
  #. Translators: Makes text bold.
5385
- #: languages/vue.php:200
5386
  msgid "%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress."
5387
  msgstr ""
5388
 
5389
- #. Translators: Makes the text bold.
5390
- #: languages/vue.php:204
5391
  msgid "%1$sPage Level Analytics%2$s - Get detailed stats for each post and page, so you can see the most popular posts, pages, and sections of your site."
5392
  msgstr ""
5393
 
5394
- #. Translators: Makes the text bold.
5395
- #: languages/vue.php:208
5396
  msgid "%1$sAffiliate Link & Ads Tracking%2$s - Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking."
5397
  msgstr ""
5398
 
5399
- #. Translators: Makes the text bold.
5400
- #: languages/vue.php:212
5401
  msgid "%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically."
5402
  msgstr ""
5403
 
5404
  #. Translators: Makes text bold.
5405
- #: languages/vue.php:216
5406
  msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click."
5407
  msgstr ""
5408
 
5409
- #. Translators: Adds a link and an arrow icon.
5410
- #: languages/vue.php:220
5411
  msgid "%1$sSee All Features%2$s"
5412
  msgstr ""
5413
 
5414
- #: languages/vue.php:223
5415
  msgid "Pro Plan"
5416
  msgstr ""
5417
 
5418
- #: languages/vue.php:226
5419
  msgid "per year"
5420
  msgstr ""
5421
 
5422
- #: languages/vue.php:234
5423
  msgid "Upgrade to ExactMetrics Pro Now"
5424
  msgstr ""
5425
 
5426
- #: languages/vue.php:237
5427
  msgid "This is absolutely, positively, one of the TOP plugins to install on your WP site. There is no better way to quickly gauge traffic for spikes, surges, and consistency. I installed this on over a dozen WordPress installations and counting, thank you for an outstanding app!"
5428
  msgstr ""
5429
 
5430
- #: languages/vue.php:240
5431
  msgid "Daniel Monaghan - Experienced"
5432
  msgstr ""
5433
 
5434
- #: languages/vue.php:243
5435
  msgid "Very simple to configure and the results are very clearly displayed. So much easier for clients to view than in their own analytics account! Delighted with it."
5436
  msgstr ""
5437
 
5438
- #: languages/vue.php:246
5439
  msgid "Naomi Spirit - From This Day"
5440
  msgstr ""
5441
 
5442
- #: languages/vue.php:249
5443
  msgid "Love this plugin! It’s got powerful customization options, it’s easy to use, there’s good documentation, and if all that’s not enough, ExactMetrics is quick to provide support. Thanks for this wonderful plugin!"
5444
  msgstr ""
5445
 
5446
- #: languages/vue.php:252
5447
  msgid "Julie Dupuis - Faraway Land Travel"
5448
  msgstr ""
5449
 
5450
- #: languages/vue.php:255
5451
  msgid "Guides and Documentation:"
5452
  msgstr ""
5453
 
5454
- #: languages/vue.php:259
5455
  msgid "Upgrade to PRO"
5456
  msgstr ""
5457
 
5458
- #: languages/vue.php:263
5459
  msgid "eCommerce Tracking"
5460
  msgstr ""
5461
 
5462
- #: languages/vue.php:266
5463
  msgid "Custom Dimensions"
5464
  msgstr ""
5465
 
5466
- #: languages/vue.php:269
5467
  msgid "Form Tracking"
5468
  msgstr ""
5469
 
5470
- #: languages/vue.php:272
5471
  msgid "AMP Support"
5472
  msgstr ""
5473
 
5474
- #: languages/vue.php:275
5475
  msgid "Author Tracking"
5476
  msgstr ""
5477
 
5478
- #: languages/vue.php:278
5479
  msgid "EU Compliance Addon"
5480
  msgstr ""
5481
 
5482
- #: languages/vue.php:281
5483
  msgid "Real Time Report"
5484
  msgstr ""
5485
 
5486
- #: languages/vue.php:284
5487
  msgid "Google Optimize"
5488
  msgstr ""
5489
 
5490
- #: languages/vue.php:287
5491
  #: lite/includes/admin/reports/report-queries.php:22
5492
  msgid "Search Console"
5493
  msgstr ""
5494
 
5495
- #: languages/vue.php:290
5496
  msgid "Custom Date Ranges"
5497
  msgstr ""
5498
 
5499
- #: languages/vue.php:293
5500
- #: languages/vue.php:937
5501
  msgid "Getting Started with ExactMetrics"
5502
  msgstr ""
5503
 
5504
- #: languages/vue.php:296
5505
- #: languages/vue.php:940
5506
  msgid "ExactMetrics is the easiest analytics solution on the market to get started with, as we walk you through exactly what you need to do, in plain english, using our 3 minute setup wizard."
5507
  msgstr ""
5508
 
5509
- #: languages/vue.php:299
5510
  msgid "To begin with, we’ll get your site authorized with Google Analytics, so we can start tracking and generating reports for you right away."
5511
  msgstr ""
5512
 
5513
- #: languages/vue.php:302
5514
  msgid "In no time at all, and after just a few clicks, you'll have setup the most powerful Google Analytics tracking available for WordPress. It's easy to double your traffic and sales when you know exactly how people find and use your website. Let's get started!."
5515
  msgstr ""
5516
 
5517
- #: languages/vue.php:305
5518
  msgid "Launch the wizard!"
5519
  msgstr ""
5520
 
5521
- #: languages/vue.php:308
5522
  msgid "Welcome to"
5523
  msgstr ""
5524
 
5525
  #. Translators: Adds a line break.
5526
- #: languages/vue.php:312
5527
  msgid "Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin"
5528
  msgstr ""
5529
 
5530
- #. Translators: Makes the product name bold.
5531
- #: languages/vue.php:316
5532
  msgid "%1$sExactMetrics%2$s makes it “effortless” to setup Google Analytics in WordPress, the RIGHT Way. You can watch the video tutorial or use our 3 minute setup wizard."
5533
  msgstr ""
5534
 
5535
- #: languages/vue.php:319
5536
  msgid "ExactMetrics Features & Addons"
5537
  msgstr ""
5538
 
5539
- #: languages/vue.php:322
5540
  msgid "Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market."
5541
  msgstr ""
5542
 
5543
  #. Translators: Placeholder is replaced with WPForms.
5544
- #: languages/vue.php:326
5545
  msgid "Recommended Plugin: %s"
5546
  msgstr ""
5547
 
5548
- #: languages/vue.php:330
5549
  msgid "Install"
5550
  msgstr ""
5551
 
5552
- #: languages/vue.php:334
5553
  msgid "Activate"
5554
  msgstr ""
5555
 
5556
- #: languages/vue.php:341
5557
  msgid "ExactMetrics encountered an error loading your report data"
5558
  msgstr ""
5559
 
5560
- #: languages/vue.php:344
5561
  msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
5562
  msgstr ""
5563
 
5564
- #: languages/vue.php:347
5565
- #: languages/vue.php:1860
5566
  msgid "Reconnect ExactMetrics"
5567
  msgstr ""
5568
 
5569
- #: languages/vue.php:350
5570
  msgid "Re-Authenticating"
5571
  msgstr ""
5572
 
5573
- #: languages/vue.php:354
5574
  msgid "Ok"
5575
  msgstr ""
5576
 
5577
- #: languages/vue.php:357
5578
- #: languages/vue.php:876
5579
  msgid "ExactMetrics Addons"
5580
  msgstr ""
5581
 
5582
- #: languages/vue.php:360
5583
  msgid "Search Addons"
5584
  msgstr ""
5585
 
5586
- #: languages/vue.php:363
5587
  msgid "Save Changes"
5588
  msgstr ""
5589
 
5590
- #: languages/vue.php:366
5591
  msgid "Exit Setup"
5592
  msgstr ""
5593
 
5594
- #: languages/vue.php:369
5595
  msgid "Time to Purchase"
5596
  msgstr ""
5597
 
5598
- #: languages/vue.php:372
5599
  msgid "This list shows how many days from first visit it took users to purchase products from your site."
5600
  msgstr ""
5601
 
5602
- #: languages/vue.php:375
5603
  msgid "Sessions to Purchase"
5604
  msgstr ""
5605
 
5606
- #: languages/vue.php:378
5607
  msgid "This list shows the number of sessions it took users before they purchased a product from your website."
5608
  msgstr ""
5609
 
5610
- #: languages/vue.php:381
5611
  msgid "New Customers"
5612
  msgstr ""
5613
 
5614
- #: languages/vue.php:384
5615
  msgid "This list shows the percentage of new customers who purchased a product from your website."
5616
  msgstr ""
5617
 
5618
- #: languages/vue.php:387
5619
  msgid "Abandoned Checkouts"
5620
  msgstr ""
5621
 
5622
- #: languages/vue.php:390
5623
  msgid "This list shows the percentage of carts that never went through the checkout process."
5624
  msgstr ""
5625
 
5626
- #: languages/vue.php:393
5627
  msgid "Top Posts/Pages"
5628
  msgstr ""
5629
 
5630
- #: languages/vue.php:396
5631
  msgid "This list shows the most viewed posts and pages on your website."
5632
  msgstr ""
5633
 
5634
- #: languages/vue.php:399
5635
  msgid "New vs. Returning Visitors"
5636
  msgstr ""
5637
 
5638
- #: languages/vue.php:402
5639
  msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
5640
  msgstr ""
5641
 
5642
- #: languages/vue.php:405
5643
  msgid "Device Breakdown"
5644
  msgstr ""
5645
 
5646
- #: languages/vue.php:408
5647
  msgid "This graph shows what percent of your visitor sessions are done using a traditional computer or laptop, tablet or mobile device to view your site."
5648
  msgstr ""
5649
 
5650
- #: languages/vue.php:411
5651
  msgid "Top Landing Pages"
5652
  msgstr ""
5653
 
5654
- #: languages/vue.php:414
5655
  msgid "This list shows the top pages users first land on when visiting your website."
5656
  msgstr ""
5657
 
5658
- #: languages/vue.php:417
5659
  msgid "Top Exit Pages"
5660
  msgstr ""
5661
 
5662
- #: languages/vue.php:420
5663
  msgid "This list shows the top pages users exit your website from."
5664
  msgstr ""
5665
 
5666
- #: languages/vue.php:423
5667
  msgid "Top Outbound Links"
5668
  msgstr ""
5669
 
5670
- #: languages/vue.php:426
5671
  msgid "This list shows the top links clicked on your website that go to another website."
5672
  msgstr ""
5673
 
5674
- #: languages/vue.php:429
5675
  msgid "Top Affiliate Links"
5676
  msgstr ""
5677
 
5678
- #: languages/vue.php:432
5679
  msgid "This list shows the top affiliate links your visitors clicked on."
5680
  msgstr ""
5681
 
5682
- #: languages/vue.php:435
5683
  msgid "Top Download Links"
5684
  msgstr ""
5685
 
5686
- #: languages/vue.php:438
5687
  msgid "This list shows the download links your visitors clicked the most."
5688
  msgstr ""
5689
 
5690
- #: languages/vue.php:444
5691
  msgid "Top Products"
5692
  msgstr ""
5693
 
5694
- #: languages/vue.php:447
5695
  msgid "This list shows the top selling products on your website."
5696
  msgstr ""
5697
 
5698
- #: languages/vue.php:450
5699
  msgid "Top Conversion Sources"
5700
  msgstr ""
5701
 
5702
- #: languages/vue.php:453
5703
  msgid "This list shows the top referral websites in terms of product revenue."
5704
  msgstr ""
5705
 
5706
- #: languages/vue.php:456
5707
  msgid "Total Add/Remove"
5708
  msgstr ""
5709
 
5710
- #: languages/vue.php:459
5711
  msgid "Analytics"
5712
  msgstr ""
5713
 
5714
  #. Translators: Adds an arrow icon.
5715
- #: languages/vue.php:463
5716
  msgid "View All Reports %s"
5717
  msgstr ""
5718
 
5719
- #: languages/vue.php:466
5720
  msgid "You must connect with ExactMetrics before you can view reports."
5721
  msgstr ""
5722
 
5723
- #: languages/vue.php:469
5724
  msgid "ExactMetrics makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
5725
  msgstr ""
5726
 
5727
- #: languages/vue.php:474
5728
  msgid "Launch Setup Wizard"
5729
  msgstr ""
5730
 
5731
- #: languages/vue.php:477
5732
  msgid "Please ask your webmaster to connect ExactMetrics to Google Analytics."
5733
  msgstr ""
5734
 
5735
- #: languages/vue.php:490
5736
  msgid "See Quick Links"
5737
  msgstr ""
5738
 
5739
- #: languages/vue.php:493
5740
  msgid "Suggest a Feature"
5741
  msgstr ""
5742
 
5743
- #: languages/vue.php:496
5744
  msgid "Join Our Community"
5745
  msgstr ""
5746
 
5747
- #: languages/vue.php:499
5748
  msgid "Support & Docs"
5749
  msgstr ""
5750
 
5751
- #: languages/vue.php:502
5752
  msgid "Upgrade to Pro &#187;"
5753
  msgstr ""
5754
 
5755
- #: languages/vue.php:505
5756
  #: lite/includes/admin/reports/report-publisher.php:22
5757
  msgid "Publishers"
5758
  msgstr ""
5759
 
5760
- #: languages/vue.php:509
5761
  #: lite/includes/admin/reports/report-ecommerce.php:22
5762
  msgid "eCommerce"
5763
  msgstr ""
5764
 
5765
- #: languages/vue.php:512
5766
  msgid "Dimensions Report"
5767
  msgstr ""
5768
 
5769
- #: languages/vue.php:515
5770
  #: lite/includes/admin/reports/report-forms.php:22
5771
  msgid "Forms"
5772
  msgstr ""
5773
 
5774
- #: languages/vue.php:518
5775
  msgid "Real-Time"
5776
  msgstr ""
5777
 
5778
- #: languages/vue.php:522
5779
  msgid "Site Speed Report"
5780
  msgstr ""
5781
 
5782
- #: languages/vue.php:526
5783
  msgid "2020 Year in Review"
5784
  msgstr ""
5785
 
5786
- #: languages/vue.php:529
5787
  msgid "Import Export"
5788
  msgstr ""
5789
 
5790
- #: languages/vue.php:532
5791
  msgid "PrettyLinks Integration"
5792
  msgstr ""
5793
 
5794
- #: languages/vue.php:538
5795
  msgid "Popular Posts Widget"
5796
  msgstr ""
5797
 
5798
- #: languages/vue.php:541
5799
  msgid "Popular Products"
5800
  msgstr ""
5801
 
5802
- #: languages/vue.php:547
5803
  msgid "Sub menu item for WooCommerce Analytics"
5804
  msgstr ""
5805
 
5806
- #: languages/vue.php:554
5807
  msgid "Engagement"
5808
  msgstr ""
5809
 
5810
- #: languages/vue.php:557
5811
  msgid "Publisher"
5812
  msgstr ""
5813
 
5814
- #: languages/vue.php:560
5815
  msgid "Conversions"
5816
  msgstr ""
5817
 
5818
- #: languages/vue.php:563
5819
  msgid "Advanced"
5820
  msgstr ""
5821
 
5822
- #: languages/vue.php:566
5823
  msgid "URL Builder"
5824
  msgstr ""
5825
 
5826
  #. Translators: Adds a link to documentation.
5827
- #: languages/vue.php:570
5828
  msgid "In order for the ExactMetrics Google AMP addon to work properly, please ask your webmaster to install the WordPress AMP plugin by Automattic. %1$sLearn More%2$s"
5829
  msgstr ""
5830
 
5831
  #. Translators: Adds link to activate/install plugin and documentation.
5832
- #: languages/vue.php:574
5833
  msgid "In order for the ExactMetrics Google AMP addon to work properly, you need to install the WordPress AMP plugin by Automattic. %1$s%2$s Plugin%3$s | %4$sLearn More%5$s"
5834
  msgstr ""
5835
 
5836
  #. Translators: Adds a link to documentation.
5837
- #: languages/vue.php:578
5838
  msgid "In order for the ExactMetrics Instant Articles addon to work properly, please ask your webmaster to install the Instant Articles for WP plugin by Automattic version 3.3.5 or newer. %1$sLearn More%2$s"
5839
  msgstr ""
5840
 
5841
  #. Translators: Adds link to activate/install plugin and documentation.
5842
- #: languages/vue.php:582
5843
  msgid "In order for the ExactMetrics Instant Articles addon to work properly, you need to install the Instant Articles for WP plugin by Automattic version 3.3.5 or newer. %1$s%2$s Plugin%3$s | %4$sLearn More%5$s"
5844
  msgstr ""
5845
 
5846
- #: languages/vue.php:585
5847
  msgid "Installing Addon"
5848
  msgstr ""
5849
 
5850
- #: languages/vue.php:588
5851
  msgid "Activating Addon"
5852
  msgstr ""
5853
 
5854
- #: languages/vue.php:591
5855
  msgid "Addon Activated"
5856
  msgstr ""
5857
 
5858
- #: languages/vue.php:594
5859
  msgid "Loading report data"
5860
  msgstr ""
5861
 
5862
- #: languages/vue.php:597
5863
  msgid "Please activate manually"
5864
  msgstr ""
5865
 
5866
  #. Translators: Adds the error status and status text.
5867
- #: languages/vue.php:601
5868
  msgid "Error: %1$s, %2$s"
5869
  msgstr ""
5870
 
5871
- #: languages/vue.php:604
5872
  msgid "Error Activating Addon"
5873
  msgstr ""
5874
 
5875
- #: languages/vue.php:607
5876
  #: lite/includes/admin/wp-site-health.php:372
5877
  #: lite/includes/admin/wp-site-health.php:398
5878
  #: lite/includes/admin/wp-site-health.php:425
5879
  msgid "View Addons"
5880
  msgstr ""
5881
 
5882
- #: languages/vue.php:610
5883
  msgid "Dismiss"
5884
  msgstr ""
5885
 
5886
- #: languages/vue.php:613
5887
  msgid "Redirecting"
5888
  msgstr ""
5889
 
5890
- #: languages/vue.php:616
5891
  msgid "Please wait"
5892
  msgstr ""
5893
 
5894
- #: languages/vue.php:619
5895
  msgid "activate"
5896
  msgstr ""
5897
 
5898
- #: languages/vue.php:622
5899
  msgid "install"
5900
  msgstr ""
5901
 
5902
- #: languages/vue.php:625
5903
  msgid "Visit addons page"
5904
  msgstr ""
5905
 
5906
- #: languages/vue.php:628
5907
  msgid "Report Unavailable"
5908
  msgstr ""
5909
 
5910
  #. Translators: Install/Activate the addon.
5911
- #: languages/vue.php:632
5912
  msgid "%s Addon"
5913
  msgstr ""
5914
 
5915
- #: languages/vue.php:635
5916
  msgid "Go Back To Reports"
5917
  msgstr ""
5918
 
5919
- #: languages/vue.php:638
5920
  msgid "Enable Enhanced eCommerce"
5921
  msgstr ""
5922
 
5923
  #. Translators: Placeholders are replaced with the current step number out of the total number of steps.
5924
- #: languages/vue.php:642
5925
  msgid "Step %1$s of %2$s"
5926
  msgstr ""
5927
 
5928
- #: languages/vue.php:645
5929
  msgid "Go back"
5930
  msgstr ""
5931
 
5932
- #: languages/vue.php:648
5933
  msgid "Welcome to ExactMetrics!"
5934
  msgstr ""
5935
 
5936
- #: languages/vue.php:651
5937
  msgid "Let's get you set up."
5938
  msgstr ""
5939
 
5940
- #: languages/vue.php:654
5941
  msgid "Save and Continue"
5942
  msgstr ""
5943
 
5944
- #: languages/vue.php:657
5945
  msgid "Which category best describes your website?"
5946
  msgstr ""
5947
 
5948
- #: languages/vue.php:660
5949
  msgid "We will recommend the optimal settings for ExactMetrics based on your choice."
5950
  msgstr ""
5951
 
5952
- #: languages/vue.php:663
5953
  msgid "Business Website"
5954
  msgstr ""
5955
 
5956
  #. Translators: Make text bold.
5957
- #: languages/vue.php:667
5958
  msgid "Publisher %1$s(Blog)%2$s"
5959
  msgstr ""
5960
 
5961
- #: languages/vue.php:670
5962
  msgid "Ecommerce"
5963
  msgstr ""
5964
 
5965
- #: languages/vue.php:673
5966
  msgid "Connect ExactMetrics to Your Website"
5967
  msgstr ""
5968
 
5969
- #: languages/vue.php:676
5970
  msgid "ExactMetrics connects Google Analytics to WordPress and shows you stats that matter."
5971
  msgstr ""
5972
 
5973
- #: languages/vue.php:680
5974
  msgid "Connect Google Analytics + WordPress"
5975
  msgstr ""
5976
 
5977
- #: languages/vue.php:684
5978
  msgid "You will be taken to the ExactMetrics website where you'll need to connect your Analytics account."
5979
  msgstr ""
5980
 
5981
- #: languages/vue.php:687
5982
  msgid "Whoops, something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually."
5983
  msgstr ""
5984
 
5985
- #: languages/vue.php:690
5986
  msgid "Manually enter your UA code"
5987
  msgstr ""
5988
 
5989
- #: languages/vue.php:693
5990
  msgid "Warning: If you use a manual UA code, you won't be able to use any of the reporting and some of the tracking features. Your UA code should look like UA-XXXXXX-XX where the X's are numbers."
5991
  msgstr ""
5992
 
5993
- #: languages/vue.php:696
5994
  msgid "UA code can't be empty"
5995
  msgstr ""
5996
 
5997
- #: languages/vue.php:699
5998
  msgid "Saving UA code..."
5999
  msgstr ""
6000
 
6001
- #: languages/vue.php:702
6002
  msgid "ExactMetrics Recommends WPForms"
6003
  msgstr ""
6004
 
6005
- #: languages/vue.php:705
6006
  msgid "Built by the folks behind ExactMetrics, WPForms is the most beginner friendly form plugin in the market."
6007
  msgstr ""
6008
 
6009
- #: languages/vue.php:708
6010
  msgid "Used on over 4,000,000 websites!"
6011
  msgstr ""
6012
 
6013
- #: languages/vue.php:711
6014
  msgid "WPForms allow you to create beautiful contact forms, subscription forms, payment forms, and other types of forms for your site in minutes, not hours!"
6015
  msgstr ""
6016
 
6017
- #: languages/vue.php:714
6018
  msgid "Skip this Step"
6019
  msgstr ""
6020
 
6021
- #: languages/vue.php:717
6022
  msgid "Continue & Install WPForms"
6023
  msgstr ""
6024
 
6025
- #: languages/vue.php:721
6026
  msgid "Installing..."
6027
  msgstr ""
6028
 
6029
- #: languages/vue.php:724
6030
  msgid "Recommended Settings"
6031
  msgstr ""
6032
 
6033
- #: languages/vue.php:727
6034
  msgid "ExactMetrics recommends the following settings based on your configuration."
6035
  msgstr ""
6036
 
6037
- #: languages/vue.php:730
6038
  msgid "Events Tracking"
6039
  msgstr ""
6040
 
6041
- #: languages/vue.php:733
6042
  msgid "Must have for all click tracking on site."
6043
  msgstr ""
6044
 
6045
- #: languages/vue.php:736
6046
  msgid "ExactMetrics uses an advanced system to automatically detect all outbound links, download links, affiliate links, telephone links, mail links, and more automatically. We do all the work for you so you don't have to write any code."
6047
  msgstr ""
6048
 
6049
- #: languages/vue.php:739
6050
  msgid "Enhanced Link Attribution"
6051
  msgstr ""
6052
 
6053
- #: languages/vue.php:742
6054
  msgid "Improves the accuracy of your In-Page Analytics."
6055
  msgstr ""
6056
 
6057
- #: languages/vue.php:745
6058
  msgid "ExactMetrics will automatically help Google determine which links are unique and where they are on your site so that your In-Page Analytics reporting will be more accurate."
6059
  msgstr ""
6060
 
6061
- #: languages/vue.php:748
6062
  msgid "Install Updates Automatically"
6063
  msgstr ""
6064
 
6065
- #: languages/vue.php:751
6066
  msgid "Get the latest features, bug fixes, and security updates as they are released."
6067
  msgstr ""
6068
 
6069
- #: languages/vue.php:754
6070
  msgid "To ensure you get the latest bug fixes and security updates and avoid needing to spend time logging into your WordPress site to update ExactMetrics, we offer the ability to automatically have ExactMetrics update itself."
6071
  msgstr ""
6072
 
6073
- #: languages/vue.php:757
6074
  msgid "File Download Tracking"
6075
  msgstr ""
6076
 
6077
- #: languages/vue.php:760
6078
  msgid "Helps you see file downloads data."
6079
  msgstr ""
6080
 
6081
- #: languages/vue.php:763
6082
  msgid "ExactMetrics will automatically track downloads of common file types from links you have inserted onto your website. For example: want to know how many of your site's visitors have downloaded a PDF or other file you offer your visitors to download on your site? ExactMetrics makes this both easy, and code-free! You can customize the file types to track at any time from our settings panel."
6083
  msgstr ""
6084
 
6085
  #. Translators: Example path (/go/).
6086
- #: languages/vue.php:767
6087
  msgid "Path (example: %s)"
6088
  msgstr ""
6089
 
6090
- #: languages/vue.php:770
6091
  msgid "Path has to start with a / and have no spaces"
6092
  msgstr ""
6093
 
6094
  #. Translators: Example label (aff).
6095
- #: languages/vue.php:774
6096
  msgid "Label (example: %s)"
6097
  msgstr ""
6098
 
6099
- #: languages/vue.php:777
6100
  msgid "Label can't contain any spaces"
6101
  msgstr ""
6102
 
6103
- #: languages/vue.php:780
6104
  msgid "Helps you increase affiliate revenue."
6105
  msgstr ""
6106
 
6107
- #: languages/vue.php:783
6108
  msgid "ExactMetrics will automatically help you track affiliate links that use internal looking urls like example.com/go/ or example.com/refer/. You can add custom affiliate patterns on our settings panel when you finish the onboarding wizard."
6109
  msgstr ""
6110
 
6111
- #: languages/vue.php:786
6112
  msgid "Affiliate Link Tracking"
6113
  msgstr ""
6114
 
6115
- #: languages/vue.php:789
6116
  msgid "Who Can See Reports"
6117
  msgstr ""
6118
 
6119
- #: languages/vue.php:792
6120
  msgid "These user roles will be able to access ExactMetrics' reports in the WordPress admin area."
6121
  msgstr ""
6122
 
6123
- #: languages/vue.php:795
6124
  msgid "Users that have at least one of these roles will be able to view the reports, along with any user with the manage_options capability."
6125
  msgstr ""
6126
 
6127
- #: languages/vue.php:798
6128
  msgid "Save and continue"
6129
  msgstr ""
6130
 
6131
- #: languages/vue.php:801
6132
  msgid "Events Tracking is enabled the moment you set up ExactMetrics"
6133
  msgstr ""
6134
 
6135
- #: languages/vue.php:804
6136
  msgid "Enhanced Link Attribution is enabled the moment you set up ExactMetrics"
6137
  msgstr ""
6138
 
6139
- #: languages/vue.php:807
6140
  msgid "+ Add Role"
6141
  msgstr ""
6142
 
6143
  #. Translators: Placeholders are used for making text bold and adding a link.
6144
- #: languages/vue.php:811
6145
  msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
6146
  msgstr ""
6147
 
6148
- #: languages/vue.php:814
6149
  #: lite/includes/admin/reports/report-dimensions.php:22
6150
  msgid "Dimensions"
6151
  msgstr ""
6152
 
6153
- #: languages/vue.php:817
6154
  msgid "Site Speed"
6155
  msgstr ""
6156
 
6157
- #: languages/vue.php:820
6158
  msgid "License Key"
6159
  msgstr ""
6160
 
6161
  #. Translators: Add link to retrieve license key from account.
6162
- #: languages/vue.php:824
6163
  msgid "Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
6164
  msgstr ""
6165
 
6166
- #: languages/vue.php:828
6167
  msgid "Google Authentication"
6168
  msgstr ""
6169
 
6170
- #: languages/vue.php:831
6171
  msgid "Miscellaneous"
6172
  msgstr ""
6173
 
6174
- #: languages/vue.php:834
6175
  msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
6176
  msgstr ""
6177
 
6178
- #: languages/vue.php:837
6179
  msgid "Hide Announcements"
6180
  msgstr ""
6181
 
6182
- #: languages/vue.php:841
6183
  msgid "You're using ExactMetrics Lite – no license needed. Enjoy!"
6184
  msgstr ""
6185
 
6186
- #. Translators: Adds link to upgrade.
6187
- #: languages/vue.php:846
6188
  msgid "To unlock more features consider %1$supgrading to PRO%2$s."
6189
  msgstr ""
6190
 
6191
- #: languages/vue.php:849
6192
  msgid "Receive 50% off automatically applied at the checkout!"
6193
  msgstr ""
6194
 
6195
- #: languages/vue.php:852
6196
  msgid "See all features"
6197
  msgstr ""
6198
 
6199
- #: languages/vue.php:856
6200
  msgid "Setup Wizard"
6201
  msgstr ""
6202
 
6203
- #: languages/vue.php:860
6204
  msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
6205
  msgstr ""
6206
 
6207
- #: languages/vue.php:864
6208
  msgid "Relaunch Setup Wizard"
6209
  msgstr ""
6210
 
6211
- #: languages/vue.php:867
6212
  msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
6213
  msgstr ""
6214
 
6215
- #: languages/vue.php:870
6216
  msgid "No addons found."
6217
  msgstr ""
6218
 
6219
- #: languages/vue.php:873
6220
  msgid "Refresh Addons"
6221
  msgstr ""
6222
 
6223
  #. Translators: Adds a line break.
6224
- #: languages/vue.php:880
6225
  msgid "Upgrade to Pro to unlock addons and other great features."
6226
  msgstr ""
6227
 
6228
- #: languages/vue.php:883
6229
  msgid "As a valued ExactMetrics Lite user you receive 50% off, automaticaly applied at checkout!"
6230
  msgstr ""
6231
 
6232
- #: languages/vue.php:886
6233
  msgid "Refreshing Addons"
6234
  msgstr ""
6235
 
6236
- #: languages/vue.php:889
6237
  msgid "Get ExactMetrics Pro Today and Unlock all the Powerful Features"
6238
  msgstr ""
6239
 
6240
  #. Translators: Placeholders make the text green.
6241
- #: languages/vue.php:893
6242
  msgid "Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
6243
  msgstr ""
6244
 
6245
- #: languages/vue.php:896
6246
  msgid "How to Connect to Google Analytics"
6247
  msgstr ""
6248
 
6249
- #: languages/vue.php:899
6250
  msgid "After you install ExactMetrics, you’ll need to connect your WordPress site with your Google Analytics account. ExactMetrics makes the process easy, with no coding required."
6251
  msgstr ""
6252
 
6253
- #: languages/vue.php:902
6254
  msgid "Guide and Checklist for Advanced Insights"
6255
  msgstr ""
6256
 
6257
- #: languages/vue.php:905
6258
  msgid "Our goal is to make it as easy as possible for you to measure and track your stats so you can grow your business. This easy-to-follow guide and checklist will get you set up with ExactMetrics’ advanced tracking."
6259
  msgstr ""
6260
 
6261
- #: languages/vue.php:908
6262
  msgid "GDPR Guide"
6263
  msgstr ""
6264
 
6265
- #: languages/vue.php:911
6266
  msgid "Compliance with European data laws including GDPR can be confusing and time-consuming. In order to help ExactMetrics users comply with these laws, we’ve created an addon that automates a lot of the necessary configuration changes for you. "
6267
  msgstr ""
6268
 
6269
- #: languages/vue.php:914
6270
  msgid "How to Install and Activate ExactMetrics Addons"
6271
  msgstr ""
6272
 
6273
- #: languages/vue.php:917
6274
  msgid "The process for installing and activating addons is quick and easy after you install the ExactMetrics plugin. In this guide we’ll walk you through the process, step by step."
6275
  msgstr ""
6276
 
6277
- #: languages/vue.php:920
6278
  msgid "Enabling eCommerce Tracking and Reports"
6279
  msgstr ""
6280
 
6281
- #: languages/vue.php:923
6282
  msgid "Want to track your eCommerce sales data for your WooCommerce, MemberPress, or Easy Digital Downloads store with ExactMetrics? In this guide, we’ll show you how to enable eCommerce tracking in Google Analytics in just a few clicks."
6283
  msgstr ""
6284
 
6285
- #: languages/vue.php:926
6286
  msgid "Read Documentation"
6287
  msgstr ""
6288
 
6289
  #. Translators: Makes the text bold.
6290
- #: languages/vue.php:930
6291
  msgid "%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress."
6292
  msgstr ""
6293
 
6294
  #. Translators: Makes the text bold.
6295
- #: languages/vue.php:934
6296
  msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post type, users, and other events with 1-click."
6297
  msgstr ""
6298
 
6299
- #: languages/vue.php:943
6300
  msgid "One-click Complete eCommerce tracking"
6301
  msgstr ""
6302
 
6303
- #: languages/vue.php:946
6304
  msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
6305
  msgstr ""
6306
 
6307
- #: languages/vue.php:949
6308
  msgid "Forms Tracking"
6309
  msgstr ""
6310
 
6311
- #: languages/vue.php:952
6312
  msgid "One-click Form Events Tracking"
6313
  msgstr ""
6314
 
6315
- #: languages/vue.php:955
6316
  msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
6317
  msgstr ""
6318
 
6319
- #: languages/vue.php:958
6320
  msgid "WordPress Admin Area Reports"
6321
  msgstr ""
6322
 
6323
- #: languages/vue.php:961
6324
  msgid "Standard Reports"
6325
  msgstr ""
6326
 
6327
- #: languages/vue.php:964
6328
  msgid "Overview Reports for the last 30 days."
6329
  msgstr ""
6330
 
6331
- #: languages/vue.php:967
6332
  msgid "Advanced Reports"
6333
  msgstr ""
6334
 
6335
- #: languages/vue.php:970
6336
  msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
6337
  msgstr ""
6338
 
6339
- #: languages/vue.php:973
6340
  msgid "Dashboard Widget"
6341
  msgstr ""
6342
 
6343
- #: languages/vue.php:976
6344
  msgid "Basic Widget"
6345
  msgstr ""
6346
 
6347
- #: languages/vue.php:979
6348
  msgid "Overview Report Synopsis"
6349
  msgstr ""
6350
 
6351
- #: languages/vue.php:982
6352
  msgid "Advanced Dashboard Widget"
6353
  msgstr ""
6354
 
6355
- #: languages/vue.php:985
6356
  msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
6357
  msgstr ""
6358
 
6359
- #: languages/vue.php:988
6360
  msgid "Publisher Reports"
6361
  msgstr ""
6362
 
6363
- #: languages/vue.php:991
6364
  msgid "Advanced Publisher Reports & Tracking"
6365
  msgstr ""
6366
 
6367
- #: languages/vue.php:994
6368
  msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
6369
  msgstr ""
6370
 
6371
- #: languages/vue.php:1000
6372
  msgid "Email Summaries"
6373
  msgstr ""
6374
 
6375
- #: languages/vue.php:1003
6376
  msgid "Included"
6377
  msgstr ""
6378
 
6379
- #: languages/vue.php:1006
6380
  msgid "Get weekly traffic reports directly in your inbox."
6381
  msgstr ""
6382
 
6383
- #: languages/vue.php:1012
6384
  msgid "Basic Options"
6385
  msgstr ""
6386
 
6387
- #: languages/vue.php:1015
6388
  msgid "Order Popular Posts by comments or shares with 3 simple theme choices."
6389
  msgstr ""
6390
 
6391
- #: languages/vue.php:1018
6392
  msgid "Dynamic Popular Posts & Popular Products"
6393
  msgstr ""
6394
 
6395
- #: languages/vue.php:1021
6396
  msgid "Display Popular Posts based on your actual traffic data from Google Analytics and choose from over 20 advanced themes. Display Popular WooCommerce products using widgets or Gutenberg blocks."
6397
  msgstr ""
6398
 
6399
- #: languages/vue.php:1024
6400
  msgid "Not Available"
6401
  msgstr ""
6402
 
6403
- #: languages/vue.php:1027
6404
  msgid "Complete Custom Dimensions Tracking"
6405
  msgstr ""
6406
 
6407
- #: languages/vue.php:1030
6408
  msgid "Track and measure by the Author, Post Type, Category, Tag, SEO Score, Focus Keyword, Logged-in User, User ID and Published Time of each post and page"
6409
  msgstr ""
6410
 
6411
- #: languages/vue.php:1036
6412
  msgid "Limited Support"
6413
  msgstr ""
6414
 
6415
- #: languages/vue.php:1039
6416
  msgid "Priority Support"
6417
  msgstr ""
6418
 
6419
- #: languages/vue.php:1042
6420
  msgid "Get the most out of ExactMetrics by upgrading to Pro and unlocking all of the powerful features."
6421
  msgstr ""
6422
 
6423
- #: languages/vue.php:1045
6424
  msgid "Feature"
6425
  msgstr ""
6426
 
6427
- #: languages/vue.php:1048
6428
  msgid "Lite"
6429
  msgstr ""
6430
 
6431
- #: languages/vue.php:1051
6432
  msgid "Pro"
6433
  msgstr ""
6434
 
6435
- #: languages/vue.php:1054
6436
  msgid "Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout."
6437
  msgstr ""
6438
 
6439
- #: languages/vue.php:1060
6440
  msgid "Universal Tracking"
6441
  msgstr ""
6442
 
6443
- #: languages/vue.php:1063
6444
  msgid "Custom Google Analytics Link Tracking"
6445
  msgstr ""
6446
 
6447
- #: languages/vue.php:1066
6448
  msgid "Standard Tracking"
6449
  msgstr ""
6450
 
6451
- #: languages/vue.php:1069
6452
  msgid "Advanced Tracking"
6453
  msgstr ""
6454
 
6455
- #: languages/vue.php:1072
6456
  msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
6457
  msgstr ""
6458
 
6459
- #: languages/vue.php:1075
6460
  msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
6461
  msgstr ""
6462
 
6463
- #: languages/vue.php:1078
6464
  msgid "No-Code-Needed Tracking Features"
6465
  msgstr ""
6466
 
6467
- #: languages/vue.php:1081
6468
  msgid "Basic Tracking Options"
6469
  msgstr ""
6470
 
6471
- #: languages/vue.php:1084
6472
  msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
6473
  msgstr ""
6474
 
6475
- #: languages/vue.php:1087
6476
  msgid "Advanced Tracking Options"
6477
  msgstr ""
6478
 
6479
- #: languages/vue.php:1090
6480
  msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
6481
  msgstr ""
6482
 
6483
- #: languages/vue.php:1093
6484
  msgid "Inbox"
6485
  msgstr ""
6486
 
6487
- #: languages/vue.php:1096
6488
  msgid "Back to Inbox"
6489
  msgstr ""
6490
 
6491
- #: languages/vue.php:1099
6492
  msgid "View Dismissed"
6493
  msgstr ""
6494
 
6495
- #: languages/vue.php:1102
6496
  msgid "Notifications"
6497
  msgstr ""
6498
 
6499
- #: languages/vue.php:1105
6500
  msgid "Dismiss All"
6501
  msgstr ""
6502
 
6503
- #: languages/vue.php:1108
6504
  msgid "Dismissed"
6505
  msgstr ""
6506
 
6507
- #: languages/vue.php:1111
6508
  msgid "No Notifications"
6509
  msgstr ""
6510
 
6511
  #. Translators: Error status and error text.
6512
- #: languages/vue.php:1115
6513
  msgid "Can't load settings. Error: %1$s, %2$s"
6514
  msgstr ""
6515
 
6516
- #: languages/vue.php:1119
6517
  msgid "You appear to be offline."
6518
  msgstr ""
6519
 
6520
  #. Translators: Error status and error text.
6521
- #: languages/vue.php:1123
6522
  msgid "Can't save settings. Error: %1$s, %2$s"
6523
  msgstr ""
6524
 
6525
- #: languages/vue.php:1126
6526
  msgid "Network error encountered. Settings not saved."
6527
  msgstr ""
6528
 
6529
- #: languages/vue.php:1129
6530
  msgid "Show in widget mode"
6531
  msgstr ""
6532
 
6533
- #: languages/vue.php:1132
6534
  msgid "Show in full-width mode"
6535
  msgstr ""
6536
 
6537
- #: languages/vue.php:1135
6538
  msgid "Show Overview Reports"
6539
  msgstr ""
6540
 
6541
- #: languages/vue.php:1138
6542
  msgid "Show Publishers Reports"
6543
  msgstr ""
6544
 
6545
- #: languages/vue.php:1141
6546
  msgid "Show eCommerce Reports"
6547
  msgstr ""
6548
 
6549
- #: languages/vue.php:1144
6550
  msgid "Settings Menu"
6551
  msgstr ""
6552
 
6553
- #: languages/vue.php:1147
6554
  msgid "Available in PRO version"
6555
  msgstr ""
6556
 
6557
- #: languages/vue.php:1150
6558
  msgid "See All Reports"
6559
  msgstr ""
6560
 
6561
- #: languages/vue.php:1153
6562
  msgid "Go to the Analytics Dashboard"
6563
  msgstr ""
6564
 
6565
- #: languages/vue.php:1168
6566
  msgid "Cart Funnel"
6567
  msgstr ""
6568
 
6569
- #: languages/vue.php:1171
6570
  msgid "Customer Insights"
6571
  msgstr ""
6572
 
6573
- #: languages/vue.php:1174
6574
  msgid "Campaign Measurement"
6575
  msgstr ""
6576
 
6577
- #: languages/vue.php:1177
6578
  msgid "Customer Profiles"
6579
  msgstr ""
6580
 
6581
- #: languages/vue.php:1180
6582
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, revenue, and average order value, and more."
6583
  msgstr ""
6584
 
6585
- #: languages/vue.php:1183
6586
  msgid "Truly Understand Your%1$s Customers With %2$sExactMetrics%3$s"
6587
  msgstr ""
6588
 
6589
- #: languages/vue.php:1186
6590
  msgid "You never truly understand your customers until you used Enhanced %1$s eCommerce from ExactMetrics!"
6591
  msgstr ""
6592
 
6593
- #: languages/vue.php:1189
6594
  msgid "Track all-new metrics!"
6595
  msgstr ""
6596
 
6597
- #: languages/vue.php:1192
6598
  msgid "Get stats WooCommerce doesn’t give you like: Conversion Sources, Avg. Order Value, Revenue per Source, Total Add to Carts & More!"
6599
  msgstr ""
6600
 
6601
- #: languages/vue.php:1195
6602
  msgid "FEATURES"
6603
  msgstr ""
6604
 
6605
- #: languages/vue.php:1198
6606
  msgid "Get The Unique Metrics Neccessary for Growth"
6607
  msgstr ""
6608
 
6609
- #: languages/vue.php:1201
6610
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, %1$srevenue, and average order value, and more."
6611
  msgstr ""
6612
 
6613
- #: languages/vue.php:1204
6614
  msgid "Get Answers to the important questions %1$syou should know."
6615
  msgstr ""
6616
 
6617
- #: languages/vue.php:1207
6618
  msgid "Did the login/registration step of the checkout put users off?"
6619
  msgstr ""
6620
 
6621
- #: languages/vue.php:1210
6622
  msgid "Which ad campaign is driving the most revenue?"
6623
  msgstr ""
6624
 
6625
- #: languages/vue.php:1213
6626
  msgid "Who is my typical customer?"
6627
  msgstr ""
6628
 
6629
- #: languages/vue.php:1216
6630
  msgid "Level-up Your eCommerce store with %1$sExactMetrics + WooCommerce!%1$s"
6631
  msgstr ""
6632
 
6633
  #. Translators: Error status and error text.
6634
- #: languages/vue.php:1220
6635
  msgid "Can't deactivate the license. Error: %1$s, %2$s"
6636
  msgstr ""
6637
 
6638
  #. Translators: Error status and error text.
6639
- #: languages/vue.php:1224
6640
  msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
6641
  msgstr ""
6642
 
6643
  #. Translators: Error status and error text.
6644
- #: languages/vue.php:1228
6645
  msgid "Can't load license details. Error: %1$s, %2$s"
6646
  msgstr ""
6647
 
6648
- #: languages/vue.php:1231
6649
  msgid "Error loading license details"
6650
  msgstr ""
6651
 
6652
  #. Translators: Error status and error text.
6653
- #: languages/vue.php:1235
6654
  msgid "Can't verify the license. Error: %1$s, %2$s"
6655
  msgstr ""
6656
 
6657
  #. Translators: Error status and error text.
6658
- #: languages/vue.php:1239
6659
  msgid "Can't validate the license. Error: %1$s, %2$s"
6660
  msgstr ""
6661
 
6662
- #: languages/vue.php:1242
6663
  msgid "Reset to default"
6664
  msgstr ""
6665
 
6666
- #: languages/vue.php:1245
6667
  msgid "The value entered does not match the required format"
6668
  msgstr ""
6669
 
6670
- #: languages/vue.php:1248
6671
  msgid "Check out the newly added classic mode"
6672
  msgstr ""
6673
 
6674
  #. Translators: Placeholder adds a line break.
6675
- #: languages/vue.php:1253
6676
  msgid "You can customize your %sdate range only in the PRO version."
6677
  msgstr ""
6678
 
6679
- #: languages/vue.php:1256
6680
  msgid "Help Us Improve"
6681
  msgstr ""
6682
 
6683
- #: languages/vue.php:1259
6684
  msgid "Help us better understand our users and their website needs."
6685
  msgstr ""
6686
 
6687
  #. Translators: Adds a link to the documentation.
6688
- #: languages/vue.php:1263
6689
  msgid "If enabled ExactMetrics will send some information about your WordPress site like what plugins and themes you use and which ExactMetrics settings you use to us so that we can improve our product. For a complete list of what we send and what we use it for, %1$svisit our website.%2$s"
6690
  msgstr ""
6691
 
6692
  #. Translators: The name of the field that is throwing a validation error.
6693
- #: languages/vue.php:1267
6694
  msgid "%s can't be empty."
6695
  msgstr ""
6696
 
6697
- #: languages/vue.php:1270
6698
  msgid "Duplicate values are not allowed."
6699
  msgstr ""
6700
 
6701
- #: languages/vue.php:1273
6702
  msgid "You can add maximum 5 items."
6703
  msgstr ""
6704
 
6705
- #: languages/vue.php:1276
6706
  msgid "At least 0 item required."
6707
  msgstr ""
6708
 
6709
- #: languages/vue.php:1279
6710
  msgid "Add Another Link Path"
6711
  msgstr ""
6712
 
6713
- #: languages/vue.php:1282
6714
  msgid "Remove row"
6715
  msgstr ""
6716
 
6717
- #: languages/vue.php:1285
6718
  msgid "Sessions"
6719
  msgstr ""
6720
 
6721
  #. Translators: Line break.
6722
- #: languages/vue.php:1289
6723
  msgid "Unique %s Sessions"
6724
  msgstr ""
6725
 
6726
- #: languages/vue.php:1292
6727
  msgid "Pageviews"
6728
  msgstr ""
6729
 
6730
  #. Translators: Line break.
6731
- #: languages/vue.php:1296
6732
  msgid "Unique %s Pageviews"
6733
  msgstr ""
6734
 
6735
- #: languages/vue.php:1299
6736
  msgid "A session is the browsing session of a single user to your site."
6737
  msgstr ""
6738
 
6739
- #: languages/vue.php:1302
6740
  msgid "A pageview is defined as a view of a page on your site that is being tracked by the Analytics tracking code. Each refresh of a page is also a new pageview."
6741
  msgstr ""
6742
 
6743
- #: languages/vue.php:1305
6744
  msgid "Total duration of all sessions (in seconds) / number of sessions."
6745
  msgstr ""
6746
 
6747
- #: languages/vue.php:1308
6748
  msgid "Percentage of single page visits (or web sessions). It is the number of visits in which a person leaves your website from the landing page without browsing any further."
6749
  msgstr ""
6750
 
6751
- #: languages/vue.php:1311
6752
  msgid "The number of distinct tracked users"
6753
  msgstr ""
6754
 
6755
- #: languages/vue.php:1314
6756
  msgid "Avg. Session Duration"
6757
  msgstr ""
6758
 
6759
- #: languages/vue.php:1317
6760
  msgid "Bounce Rate"
6761
  msgstr ""
6762
 
6763
- #: languages/vue.php:1320
6764
  msgid "Total Users"
6765
  msgstr ""
6766
 
6767
- #: languages/vue.php:1323
6768
  msgid "No options available"
6769
  msgstr ""
6770
 
6771
  #. Translators: Placeholders make the text highlighted.
6772
- #: languages/vue.php:1327
6773
  msgid "%1$sNeed%2$s to Grow FASTER??"
6774
  msgstr ""
6775
 
6776
- #: languages/vue.php:1330
6777
  msgid "Get additional, actionable insights by going Pro."
6778
  msgstr ""
6779
 
6780
- #: languages/vue.php:1333
6781
  msgid "Skip"
6782
  msgstr ""
6783
 
6784
- #: languages/vue.php:1336
6785
  msgid "See All Features"
6786
  msgstr ""
6787
 
6788
- #: languages/vue.php:1339
6789
  msgid "Upgrade to Pro to get the complete ExactMetrics experience including 1 click tracking integrations for your favorite WordPress plugins and insightful reports backed by our legendary support team."
6790
  msgstr ""
6791
 
6792
- #: languages/vue.php:1342
6793
  msgid "Our Pro plan includes:"
6794
  msgstr ""
6795
 
6796
  #. Translators: Error status and error text.
6797
- #: languages/vue.php:1346
6798
  msgid "Can't load errors. Error: %1$s, %2$s"
6799
  msgstr ""
6800
 
6801
- #: languages/vue.php:1349
6802
  msgid "Real-Time Report"
6803
  msgstr ""
6804
 
6805
- #: languages/vue.php:1352
6806
  msgid "Track the results of your marketing efforts and product launches as-it-happens right from your WordPress site. The Real-Time report allows you to view your traffic sources and visitor's activity when you need it."
6807
  msgstr ""
6808
 
6809
  #. Translators: add link to blog.
6810
- #: languages/vue.php:1356
6811
  msgid "To comply with Google's API policies we've had to remove the real time report from the lite version. You can read about this decision and why it was made in %1$sthis blog post%2$s. To access the real time report in the WordPress backend, you will need to upgrade to Pro."
6812
  msgstr ""
6813
 
6814
- #: languages/vue.php:1359
6815
  msgid "Here's what you get:"
6816
  msgstr ""
6817
 
6818
- #: languages/vue.php:1362
6819
  msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
6820
  msgstr ""
6821
 
6822
- #: languages/vue.php:1365
6823
  msgid "See Your Top Pages Immediately After Making Changes"
6824
  msgstr ""
6825
 
6826
- #: languages/vue.php:1368
6827
  msgid "See Your Top Referral Sources and Adapt Faster"
6828
  msgstr ""
6829
 
6830
- #: languages/vue.php:1371
6831
  msgid "See Your Traffic Demographics"
6832
  msgstr ""
6833
 
6834
- #: languages/vue.php:1374
6835
  msgid "Get Fresh Report Data Every 60 Seconds"
6836
  msgstr ""
6837
 
6838
- #: languages/vue.php:1377
6839
  msgid "See Where Your Visitors are Connecting From (country & city)"
6840
  msgstr ""
6841
 
6842
- #: languages/vue.php:1380
6843
  msgid "Forms Report"
6844
  msgstr ""
6845
 
6846
- #: languages/vue.php:1383
6847
  msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
6848
  msgstr ""
6849
 
6850
- #: languages/vue.php:1386
6851
  msgid "See Your Top Converting Forms and Optimize"
6852
  msgstr ""
6853
 
6854
- #: languages/vue.php:1389
6855
  msgid "See Your Forms Impressions Count to Find the Best Placement"
6856
  msgstr ""
6857
 
6858
- #: languages/vue.php:1392
6859
  msgid "Awesome, You're All Set!"
6860
  msgstr ""
6861
 
6862
- #: languages/vue.php:1395
6863
  msgid "ExactMetrics is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
6864
  msgstr ""
6865
 
6866
  #. Translators: Make text bold.
6867
- #: languages/vue.php:1399
6868
  msgid "%1$sPlease Note:%2$s While Google Analytics is properly setup and tracking everything, it does not send the data back to WordPress immediately. Depending on the size of your website, it can take between a few hours to 24 hours for reports to populate."
6869
  msgstr ""
6870
 
6871
  #. Translators: Add link to blog.
6872
  #. Translators: Link to our blog.
6873
- #: languages/vue.php:1403
6874
- #: languages/vue.php:3601
6875
  msgid "%1$sSubscribe to the ExactMetrics blog%2$s for tips on how to get more traffic and grow your business."
6876
  msgstr ""
6877
 
6878
- #: languages/vue.php:1406
6879
  msgid "Finish Setup & Exit Wizard"
6880
  msgstr ""
6881
 
6882
- #: languages/vue.php:1409
6883
  msgid "Google Analytics"
6884
  msgstr ""
6885
 
6886
- #: languages/vue.php:1412
6887
  msgid "Subscribe"
6888
  msgstr ""
6889
 
6890
- #: languages/vue.php:1415
6891
  msgid "Checking your website..."
6892
  msgstr ""
6893
 
6894
- #: languages/vue.php:1418
6895
  msgid "Recommended Addons"
6896
  msgstr ""
6897
 
6898
  #. Translators: Add a link to upgrade and make the text green.
6899
- #: languages/vue.php:1422
6900
  msgid "To unlock more features consider %1$supgrading to PRO%2$s.%3$s As a valued ExactMetrics Lite user you %4$sreceive 50%% off%5$s, automatically applied at checkout!"
6901
  msgstr ""
6902
 
6903
- #: languages/vue.php:1425
6904
  msgid "Upgrade to PRO Now"
6905
  msgstr ""
6906
 
6907
- #: languages/vue.php:1428
6908
  msgid "See who’s viewing and submitting your forms, so you can increase your conversion rate."
6909
  msgstr ""
6910
 
6911
- #: languages/vue.php:1431
6912
  msgid "See All Your Important Store Metrics in One Place."
6913
  msgstr ""
6914
 
6915
- #: languages/vue.php:1434
6916
  msgid "... and more:"
6917
  msgstr ""
6918
 
6919
- #: languages/vue.php:1437
6920
  msgid "Dimensions- Track authors, categories, trags, searches, users and more."
6921
  msgstr ""
6922
 
6923
- #: languages/vue.php:1440
6924
  msgid "EU Compliance- Improve compliance with GDPR and other privacy regulations."
6925
  msgstr ""
6926
 
6927
- #: languages/vue.php:1443
6928
  msgid "AMP- ExactMetrics Google AMP Addon enables accurate tracking of all mobile visitors to your AMP-enabled pages."
6929
  msgstr ""
6930
 
6931
- #: languages/vue.php:1446
6932
  msgid "Facebook Instant Articles- Integrate Google Analytics and Facebook Instant Articles with just one click."
6933
  msgstr ""
6934
 
6935
- #: languages/vue.php:1449
6936
  msgid "eCommerce- Sales tracking for your WooCommerce, Easy Digital Downloads, LifterLMS or MemberPress stores."
6937
  msgstr ""
6938
 
6939
- #: languages/vue.php:1452
6940
  msgid "Google Optimize- Easily enable Google Optimize on your WordPress site."
6941
  msgstr ""
6942
 
6943
- #: languages/vue.php:1455
6944
  msgid "Forms- Enable tracking of your form views, submissions and conversion rates."
6945
  msgstr ""
6946
 
6947
- #: languages/vue.php:1458
6948
  msgid "Ads- See who’s clicking on your Google Adsense banner ads."
6949
  msgstr ""
6950
 
6951
- #: languages/vue.php:1461
6952
  msgid "Hello and Welcome to ExactMetrics, the Best Google Analytics Plugin for WordPress."
6953
  msgstr ""
6954
 
6955
- #: languages/vue.php:1464
6956
  msgid "Ready to take your website to the next level? ExactMetrics gives you the accurate insights you need to make data-driven decisions to grow your traffic and conversions faster than ever before. Now you can easily enable advanced tracking on your website without having to know any code."
6957
  msgstr ""
6958
 
6959
- #: languages/vue.php:1467
6960
  msgid "The ExactMetrics Team"
6961
  msgstr ""
6962
 
6963
- #: languages/vue.php:1470
6964
  msgid "Custom Dimensions Report"
6965
  msgstr ""
6966
 
6967
- #: languages/vue.php:1473
6968
  msgid "Unlock the Dimensions Report and decide what data is important using your own custom tracking parameters"
6969
  msgstr ""
6970
 
6971
- #: languages/vue.php:1476
6972
  msgid "The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
6973
  msgstr ""
6974
 
6975
- #: languages/vue.php:1479
6976
  msgid "Author tracking to see which author’s posts generate the most traffic"
6977
  msgstr ""
6978
 
6979
- #: languages/vue.php:1482
6980
  msgid "Post Type tracking to see which WordPress post types perform better"
6981
  msgstr ""
6982
 
6983
- #: languages/vue.php:1485
6984
  msgid "Category tracking to see which sections of your sites are the most popular"
6985
  msgstr ""
6986
 
6987
- #: languages/vue.php:1488
6988
  msgid "SEO score tracking to see which blog SEO scores are the most popular"
6989
  msgstr ""
6990
 
6991
- #: languages/vue.php:1491
6992
  msgid "Focus Keyword tracking to see which of your content is doing well in search engines."
6993
  msgstr ""
6994
 
6995
- #: languages/vue.php:1494
6996
  msgid "Tag tracking to determine which topics are the most engaging to for your website visitors."
6997
  msgstr ""
6998
 
6999
  #. Translators: add link to blog.
7000
- #: languages/vue.php:1498
7001
  msgid "One of the factors that help deliver an outstanding user experience is having a website that loads quickly. With the Site Speed report you'll be able to check your site's performance directly from your ExactMetrics dashboard."
7002
  msgstr ""
7003
 
7004
- #: languages/vue.php:1501
7005
  msgid "See Your Homepage's Overall Performance Score"
7006
  msgstr ""
7007
 
7008
- #: languages/vue.php:1504
7009
  msgid "Run an Audit on Your Homepage and See Your Server Response Time"
7010
  msgstr ""
7011
 
7012
- #: languages/vue.php:1507
7013
  msgid "Learn How Long It Takes for Your Viewers to Interact With Your Site"
7014
  msgstr ""
7015
 
7016
- #: languages/vue.php:1510
7017
  msgid "Learn How to Improve the Core Metrics that Google Uses to Rank Your Site"
7018
  msgstr ""
7019
 
7020
- #: languages/vue.php:1513
7021
  msgid "Hide dashboard widget"
7022
  msgstr ""
7023
 
7024
- #: languages/vue.php:1516
7025
  msgid "Are you sure you want to hide the ExactMetrics Dashboard Widget? "
7026
  msgstr ""
7027
 
7028
- #: languages/vue.php:1519
7029
  msgid "Yes, hide it!"
7030
  msgstr ""
7031
 
7032
- #: languages/vue.php:1522
7033
  msgid "No, cancel!"
7034
  msgstr ""
7035
 
7036
- #: languages/vue.php:1525
7037
  msgid "ExactMetrics Widget Hidden"
7038
  msgstr ""
7039
 
7040
- #: languages/vue.php:1528
7041
  msgid "You can re-enable the ExactMetrics widget at any time using the \"Screen Options\" menu on the top right of this page"
7042
  msgstr ""
7043
 
7044
  #. Translators: Error status and error text.
7045
- #: languages/vue.php:1532
7046
  msgid "Can't deauthenticate. Error: %1$s, %2$s"
7047
  msgstr ""
7048
 
7049
  #. Translators: Error status and error text.
7050
- #: languages/vue.php:1536
7051
  msgid "Can't load authentication details. Error: %1$s, %2$s"
7052
  msgstr ""
7053
 
7054
- #: languages/vue.php:1539
7055
  msgid "You appear to be offline. Settings not saved."
7056
  msgstr ""
7057
 
7058
  #. Translators: Error status and error text.
7059
- #: languages/vue.php:1543
7060
  msgid "Can't authenticate. Error: %1$s, %2$s"
7061
  msgstr ""
7062
 
7063
  #. Translators: Error status and error text.
7064
- #: languages/vue.php:1547
7065
  msgid "Can't reauthenticate. Error: %1$s, %2$s"
7066
  msgstr ""
7067
 
7068
  #. Translators: Error status and error text.
7069
- #: languages/vue.php:1551
7070
  msgid "Can't verify credentials. Error: %1$s, %2$s"
7071
  msgstr ""
7072
 
7073
- #: languages/vue.php:1554
7074
  msgid "Still Calculating..."
7075
  msgstr ""
7076
 
7077
- #: languages/vue.php:1557
7078
  msgid "Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year."
7079
  msgstr ""
7080
 
7081
- #: languages/vue.php:1560
7082
  msgid "Back to Overview Report"
7083
  msgstr ""
7084
 
7085
- #: languages/vue.php:1563
7086
  msgid "Your 2020 Analytics Report"
7087
  msgstr ""
7088
 
7089
- #: languages/vue.php:1566
7090
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2021!"
7091
  msgstr ""
7092
 
7093
- #: languages/vue.php:1569
7094
  msgid "Audience"
7095
  msgstr ""
7096
 
7097
- #: languages/vue.php:1572
7098
  msgid "Congrats"
7099
  msgstr ""
7100
 
7101
- #: languages/vue.php:1575
7102
  msgid "Your website was quite popular this year! "
7103
  msgstr ""
7104
 
7105
- #: languages/vue.php:1578
7106
  msgid "You had "
7107
  msgstr ""
7108
 
7109
- #: languages/vue.php:1581
7110
  msgid " visitors!"
7111
  msgstr ""
7112
 
7113
- #: languages/vue.php:1584
7114
  msgid " visitors"
7115
  msgstr ""
7116
 
7117
- #: languages/vue.php:1587
7118
  msgid "Total Visitors"
7119
  msgstr ""
7120
 
7121
- #: languages/vue.php:1590
7122
  msgid "Total Sessions"
7123
  msgstr ""
7124
 
7125
- #: languages/vue.php:1593
7126
  msgid "Visitors by Month"
7127
  msgstr ""
7128
 
7129
- #: languages/vue.php:1596
7130
  msgid "January 1, 2020 - December 31, 2020"
7131
  msgstr ""
7132
 
7133
- #: languages/vue.php:1599
7134
  msgid "A Tip for 2021"
7135
  msgstr ""
7136
 
7137
- #: languages/vue.php:1602
7138
  msgid "Demographics"
7139
  msgstr ""
7140
 
7141
- #: languages/vue.php:1605
7142
  msgid "#1"
7143
  msgstr ""
7144
 
7145
- #: languages/vue.php:1608
7146
  msgid "You Top 5 Countries"
7147
  msgstr ""
7148
 
7149
- #: languages/vue.php:1611
7150
  msgid "Let’s get to know your visitors a little better, shall we?"
7151
  msgstr ""
7152
 
7153
- #: languages/vue.php:1614
7154
  msgid "Gender"
7155
  msgstr ""
7156
 
7157
- #: languages/vue.php:1617
7158
  msgid "Female"
7159
  msgstr ""
7160
 
7161
- #: languages/vue.php:1620
7162
  msgid "Women"
7163
  msgstr ""
7164
 
7165
- #: languages/vue.php:1623
7166
  msgid "Male"
7167
  msgstr ""
7168
 
7169
- #: languages/vue.php:1626
7170
  msgid "Average Age"
7171
  msgstr ""
7172
 
7173
- #: languages/vue.php:1629
7174
  msgid "Behavior"
7175
  msgstr ""
7176
 
7177
- #: languages/vue.php:1632
7178
  msgid "Your Top 5 Pages"
7179
  msgstr ""
7180
 
7181
- #: languages/vue.php:1635
7182
  msgid "Time Spent on Site"
7183
  msgstr ""
7184
 
7185
- #: languages/vue.php:1638
7186
  msgid "minutes"
7187
  msgstr ""
7188
 
7189
- #: languages/vue.php:1641
7190
  msgid "Device Type"
7191
  msgstr ""
7192
 
7193
- #: languages/vue.php:1644
7194
  msgid "A Tip For 2021"
7195
  msgstr ""
7196
 
7197
- #: languages/vue.php:1647
7198
  msgid "Are you looking for a way to track your landing pages and see which one gets the most conversions on your website?"
7199
  msgstr ""
7200
 
7201
- #: languages/vue.php:1650
7202
  msgid "Read - How to Track Google Analytics Landing Page Conversions"
7203
  msgstr ""
7204
 
7205
- #: languages/vue.php:1653
7206
  msgid "So, where did all of these visitors come from?"
7207
  msgstr ""
7208
 
7209
- #: languages/vue.php:1656
7210
  msgid "Clicks"
7211
  msgstr ""
7212
 
7213
- #: languages/vue.php:1659
7214
  msgid "Your Top 5 Keywords"
7215
  msgstr ""
7216
 
7217
- #: languages/vue.php:1662
7218
  msgid "What keywords visitors searched for to find your site"
7219
  msgstr ""
7220
 
7221
- #: languages/vue.php:1665
7222
  msgid "Your Top 5 Referrals"
7223
  msgstr ""
7224
 
7225
- #: languages/vue.php:1668
7226
  msgid "The websites that link back to your website"
7227
  msgstr ""
7228
 
7229
- #: languages/vue.php:1671
7230
  msgid "Opportunity"
7231
  msgstr ""
7232
 
7233
- #: languages/vue.php:1674
7234
  msgid "Learn how to boost your SEO rankings using ExactMetrics so more visitors reach your articles and increase engagement."
7235
  msgstr ""
7236
 
7237
- #: languages/vue.php:1677
7238
  msgid "Read - 5 Ways to Skyrocket Your SEO Rankings with Google Analytics"
7239
  msgstr ""
7240
 
7241
- #: languages/vue.php:1680
7242
  msgid "Thank you for using ExactMetrics!"
7243
  msgstr ""
7244
 
7245
- #: languages/vue.php:1683
7246
  msgid "We’re grateful for your continued support. If there’s anything we can do to help you grow your business, please don’t hesitate to contact our team."
7247
  msgstr ""
7248
 
7249
- #: languages/vue.php:1686
7250
  msgid "Here's to an amazing 2021!"
7251
  msgstr ""
7252
 
7253
- #: languages/vue.php:1689
7254
  msgid "Enjoying ExactMetrics"
7255
  msgstr ""
7256
 
7257
- #: languages/vue.php:1692
7258
  msgid "Leave a five star review!"
7259
  msgstr ""
7260
 
7261
- #: languages/vue.php:1695
7262
  msgid "Syed Balkhi"
7263
  msgstr ""
7264
 
7265
- #: languages/vue.php:1698
7266
  msgid "Chris Christoff"
7267
  msgstr ""
7268
 
7269
- #: languages/vue.php:1701
7270
  msgid "Write Review"
7271
  msgstr ""
7272
 
7273
- #: languages/vue.php:1704
7274
  msgid "Did you know over 10 million websites use our plugins?"
7275
  msgstr ""
7276
 
7277
- #: languages/vue.php:1707
7278
  msgid "Try our other popular WordPress plugins to grow your website in 2021."
7279
  msgstr ""
7280
 
7281
- #: languages/vue.php:1710
7282
  msgid "Join our Communities!"
7283
  msgstr ""
7284
 
7285
- #: languages/vue.php:1713
7286
  msgid "Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level."
7287
  msgstr ""
7288
 
7289
- #: languages/vue.php:1716
7290
  msgid "Facebook Group"
7291
  msgstr ""
7292
 
7293
- #: languages/vue.php:1719
7294
  msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
7295
  msgstr ""
7296
 
7297
- #: languages/vue.php:1722
7298
  msgid "Join Now...It’s Free!"
7299
  msgstr ""
7300
 
7301
- #: languages/vue.php:1725
7302
  msgid "WordPress Tutorials by WPBeginner"
7303
  msgstr ""
7304
 
7305
- #: languages/vue.php:1728
7306
  msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
7307
  msgstr ""
7308
 
7309
- #: languages/vue.php:1731
7310
  msgid "Visit WPBeginner"
7311
  msgstr ""
7312
 
7313
- #: languages/vue.php:1734
7314
  msgid "Follow Us!"
7315
  msgstr ""
7316
 
7317
- #: languages/vue.php:1737
7318
  msgid "Follow ExactMetrics on social media to stay up to date with latest updates, trends, and tutorials on how to make the most out of analytics."
7319
  msgstr ""
7320
 
7321
- #: languages/vue.php:1740
7322
  msgid "Copyright ExactMetrics, 2021"
7323
  msgstr ""
7324
 
7325
- #: languages/vue.php:1743
7326
  msgid "Upgrade to ExactMetrics Pro to Unlock Additional Actionable Insights"
7327
  msgstr ""
7328
 
7329
- #: languages/vue.php:1750
7330
  msgid "January"
7331
  msgstr ""
7332
 
7333
- #: languages/vue.php:1753
7334
  msgid "February"
7335
  msgstr ""
7336
 
7337
- #: languages/vue.php:1756
7338
  msgid "March"
7339
  msgstr ""
7340
 
7341
- #: languages/vue.php:1759
7342
  msgid "April"
7343
  msgstr ""
7344
 
7345
- #: languages/vue.php:1762
7346
  msgid "May"
7347
  msgstr ""
7348
 
7349
- #: languages/vue.php:1765
7350
  msgid "June"
7351
  msgstr ""
7352
 
7353
- #: languages/vue.php:1768
7354
  msgid "July"
7355
  msgstr ""
7356
 
7357
- #: languages/vue.php:1771
7358
  msgid "August"
7359
  msgstr ""
7360
 
7361
- #: languages/vue.php:1774
7362
  msgid "September"
7363
  msgstr ""
7364
 
7365
- #: languages/vue.php:1777
7366
  msgid "October"
7367
  msgstr ""
7368
 
7369
- #: languages/vue.php:1780
7370
  msgid "November"
7371
  msgstr ""
7372
 
7373
- #: languages/vue.php:1783
7374
  msgid "December"
7375
  msgstr ""
7376
 
7377
  #. Translators: Number of visitors.
7378
- #: languages/vue.php:1787
7379
  msgid "Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>"
7380
  msgstr ""
7381
 
7382
- #: languages/vue.php:1790
7383
  msgid "See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success."
7384
  msgstr ""
7385
 
7386
  #. Translators: Number of visitors.
7387
- #: languages/vue.php:1794
7388
  msgid "Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries."
7389
  msgstr ""
7390
 
7391
  #. Translators: Number of visitors.
7392
- #: languages/vue.php:1798
7393
  msgid "%s Visitors"
7394
  msgstr ""
7395
 
7396
  #. Translators: Percent and Number of visitors.
7397
- #: languages/vue.php:1802
7398
  msgid "%1$s&#37 of your visitors were %2$s"
7399
  msgstr ""
7400
 
7401
  #. Translators: Number of visitors and their age.
7402
- #: languages/vue.php:1806
7403
  msgid "%1$s&#37 of your visitors were between the ages of %2$s"
7404
  msgstr ""
7405
 
7406
- #: languages/vue.php:1809
7407
  msgid "Your <strong>%1$s</strong> visitors viewed a total of <strong>%2$s</strong> pages. <span class='average-page-per-user' style='font-size: 20px;margin-top:25px;display:block;font-family:Lato'>That's an average of %3$s pages for each visitor!</span>"
7408
  msgstr ""
7409
 
7410
  #. Translators: Number of minutes spent on site.
7411
- #: languages/vue.php:1813
7412
  msgid "Each visitor spent an average of %s minutes on your website in 2020."
7413
  msgstr ""
7414
 
7415
  #. Translators: Name of device type.
7416
- #: languages/vue.php:1817
7417
  msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
7418
  msgstr ""
7419
 
7420
  #. Translators: Number of visitors and device percentage.
7421
- #: languages/vue.php:1821
7422
  msgid "%1$s&#37 of your visitors were on a %2$s device."
7423
  msgstr ""
7424
 
7425
- #: languages/vue.php:1824
7426
  msgid "Desktop"
7427
  msgstr ""
7428
 
7429
- #: languages/vue.php:1827
7430
  msgid "Tablet"
7431
  msgstr ""
7432
 
7433
- #: languages/vue.php:1830
7434
  msgid "Mobile"
7435
  msgstr ""
7436
 
7437
- #: languages/vue.php:1833
7438
  msgid "Force Deauthenticate"
7439
  msgstr ""
7440
 
7441
- #: languages/vue.php:1836
7442
  msgid "Disconnect ExactMetrics"
7443
  msgstr ""
7444
 
7445
- #: languages/vue.php:1839
7446
  msgid "Authenticating"
7447
  msgstr ""
7448
 
7449
- #: languages/vue.php:1842
7450
  msgid "Verifying Credentials"
7451
  msgstr ""
7452
 
7453
- #: languages/vue.php:1845
7454
  msgid "Your site is connected to ExactMetrics!"
7455
  msgstr ""
7456
 
7457
- #: languages/vue.php:1848
7458
  msgid "Deauthenticating"
7459
  msgstr ""
7460
 
7461
- #: languages/vue.php:1851
7462
  msgid "You've disconnected your site from ExactMetrics. Your site is no longer being tracked by Google Analytics and you won't see reports anymore."
7463
  msgstr ""
7464
 
7465
- #: languages/vue.php:1854
7466
- #: languages/vue.php:1926
7467
  msgid "Connect ExactMetrics"
7468
  msgstr ""
7469
 
7470
- #: languages/vue.php:1857
7471
  msgid "Verify Credentials"
7472
  msgstr ""
7473
 
7474
- #: languages/vue.php:1863
7475
  msgid "Website Profile"
7476
  msgstr ""
7477
 
7478
- #: languages/vue.php:1866
7479
  msgid "Active Profile"
7480
  msgstr ""
7481
 
7482
- #: languages/vue.php:1869
7483
  msgid "Your website profile has been set at the network level of your WordPress Multisite."
7484
  msgstr ""
7485
 
7486
- #: languages/vue.php:1872
7487
  msgid "If you would like to use a different profile for this subsite, you can authenticate below."
7488
  msgstr ""
7489
 
7490
- #: languages/vue.php:1875
7491
  msgid "Dual Tracking Profile"
7492
  msgstr ""
7493
 
7494
- #: languages/vue.php:1878
7495
  msgid "The dual tracking feature allows you to continue tracking this site into an existing GAv3 property so you can continue to use the GA reports you are used to already. Learn more about this feature %1$shere%2$s."
7496
  msgstr ""
7497
 
7498
- #: languages/vue.php:1881
7499
  msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers."
7500
  msgstr ""
7501
 
7502
- #: languages/vue.php:1884
7503
  msgid "The dual tracking feature allows you to begin tracking this site into a GAv4 property to take advantage of the new GAv4 analysis tools. Learn more about this feature %1$shere%2$s."
7504
  msgstr ""
7505
 
7506
- #: languages/vue.php:1887
7507
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
7508
  msgstr ""
7509
 
7510
- #: languages/vue.php:1890
7511
  msgid "Measurement Protocol API Secret"
7512
  msgstr ""
7513
 
7514
- #: languages/vue.php:1893
7515
  msgid "The Measurement Protocol API secret allows your site to send tracking data to Google Analytics. To retrieve your Measurement Protocol API Secret, follow %1$sthis guide%2$s."
7516
  msgstr ""
7517
 
7518
- #: languages/vue.php:1896
7519
  msgid "Classic mode"
7520
  msgstr ""
7521
 
7522
- #: languages/vue.php:1899
7523
  msgid "Proceed"
7524
  msgstr ""
7525
 
7526
- #: languages/vue.php:1902
7527
  msgid "Connection Information"
7528
  msgstr ""
7529
 
7530
- #: languages/vue.php:1905
7531
  msgid "To perform the requested action, WordPress needs to access your web server. Please enter your FTP credentials to proceed. If you do not remember your credentials, you should contact your web host."
7532
  msgstr ""
7533
 
7534
- #: languages/vue.php:1908
7535
  msgid "Hostname"
7536
  msgstr ""
7537
 
7538
- #: languages/vue.php:1911
7539
  msgid "FTP Username"
7540
  msgstr ""
7541
 
7542
- #: languages/vue.php:1914
7543
  msgid "FTP Password"
7544
  msgstr ""
7545
 
7546
- #: languages/vue.php:1917
7547
  msgid "This password will not be stored on the server."
7548
  msgstr ""
7549
 
7550
- #: languages/vue.php:1920
7551
  msgid "Connection Type"
7552
  msgstr ""
7553
 
7554
- #: languages/vue.php:1923
7555
  msgid "Cancel"
7556
  msgstr ""
7557
 
7558
- #: languages/vue.php:1929
7559
  msgid "Website profile"
7560
  msgstr ""
7561
 
7562
- #: languages/vue.php:1932
7563
  msgid "Active profile"
7564
  msgstr ""
7565
 
7566
- #: languages/vue.php:1935
7567
  msgid "Skip and Keep Connection"
7568
  msgstr ""
7569
 
7570
- #. Translators: Number of days.
7571
- #: languages/vue.php:1940
7572
  msgid "vs. Previous Day"
7573
  msgstr ""
7574
 
7575
- #: languages/vue.php:1944
7576
  msgid "No change"
7577
  msgstr ""
7578
 
7579
- #: languages/vue.php:1947
7580
  msgid "Choose Theme"
7581
  msgstr ""
7582
 
7583
- #: languages/vue.php:1950
7584
  msgid "Widget Styling"
7585
  msgstr ""
7586
 
7587
- #: languages/vue.php:1953
7588
  msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
7589
  msgstr ""
7590
 
7591
- #: languages/vue.php:1956
7592
  msgid "Sort By"
7593
  msgstr ""
7594
 
7595
- #: languages/vue.php:1959
7596
  msgid "Choose how you'd like the widget to determine your popular posts."
7597
  msgstr ""
7598
 
7599
- #: languages/vue.php:1962
7600
  msgid "Display Title"
7601
  msgstr ""
7602
 
7603
- #: languages/vue.php:1968
7604
  msgid "Title your widget and set its display preferences."
7605
  msgstr ""
7606
 
7607
- #: languages/vue.php:1971
7608
  msgid "Include in Post Types"
7609
  msgstr ""
7610
 
7611
- #: languages/vue.php:1974
7612
  msgid "Exclude from specific posts"
7613
  msgstr ""
7614
 
7615
  #. Translators: Placeholders make the text bold.
7616
- #: languages/vue.php:1978
7617
  msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
7618
  msgstr ""
7619
 
7620
  #. Translators: Placeholders make the text bold.
7621
- #: languages/vue.php:1982
7622
  msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
7623
  msgstr ""
7624
 
7625
- #: languages/vue.php:1985
7626
  msgid "Loading Themes"
7627
  msgstr ""
7628
 
7629
  #. Translators: placeholders make text small.
7630
- #: languages/vue.php:1989
7631
  msgid "Default Styles %1$s- As seen above.%2$s"
7632
  msgstr ""
7633
 
7634
  #. Translators: placeholders make text small.
7635
- #: languages/vue.php:1993
7636
  msgid "No Styles %1$s- Use your own CSS.%2$s"
7637
  msgstr ""
7638
 
7639
  #. Translators: placeholders make text small.
7640
- #: languages/vue.php:1997
7641
  msgid "Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s"
7642
  msgstr ""
7643
 
7644
  #. Translators: placeholders make text small.
7645
- #: languages/vue.php:2001
7646
  msgid "SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s"
7647
  msgstr ""
7648
 
7649
  #. Translators: placeholders make text small.
7650
- #: languages/vue.php:2005
7651
  msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
7652
  msgstr ""
7653
 
7654
- #: languages/vue.php:2008
7655
  msgid "Placement"
7656
  msgstr ""
7657
 
7658
- #: languages/vue.php:2011
7659
  msgid "Choose how you'd like to place the widget."
7660
  msgstr ""
7661
 
7662
- #: languages/vue.php:2014
7663
  msgid "Insert After"
7664
  msgstr ""
7665
 
7666
- #: languages/vue.php:2017
7667
  msgid "Choose where in the post body the widget will be placed."
7668
  msgstr ""
7669
 
7670
- #: languages/vue.php:2020
7671
  msgid "Customize Design"
7672
  msgstr ""
7673
 
7674
- #: languages/vue.php:2023
7675
  msgid "words"
7676
  msgstr ""
7677
 
7678
- #: languages/vue.php:2026
7679
  msgid "Please select at least one post to display."
7680
  msgstr ""
7681
 
7682
  #. Translators: placeholders make text small.
7683
- #: languages/vue.php:2030
7684
  msgid "Automatic %1$s- The widget is automatically placed inside the post body.%2$s"
7685
  msgstr ""
7686
 
7687
  #. Translators: placeholders make text small.
7688
- #: languages/vue.php:2034
7689
  msgid "Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s"
7690
  msgstr ""
7691
 
7692
- #: languages/vue.php:2037
7693
  msgid "Caching"
7694
  msgstr ""
7695
 
7696
- #: languages/vue.php:2040
7697
  msgid "Enable Data Caching"
7698
  msgstr ""
7699
 
7700
- #: languages/vue.php:2043
7701
  msgid "Refresh Cache Every"
7702
  msgstr ""
7703
 
7704
- #: languages/vue.php:2046
7705
  msgid "Choose how often to refresh the cache."
7706
  msgstr ""
7707
 
7708
- #: languages/vue.php:2049
7709
  msgid "Enable Ajaxify"
7710
  msgstr ""
7711
 
7712
- #: languages/vue.php:2052
7713
  msgid "Ajaxify Widget"
7714
  msgstr ""
7715
 
7716
- #: languages/vue.php:2055
7717
  msgid "Use to bypass page caching."
7718
  msgstr ""
7719
 
7720
- #: languages/vue.php:2058
7721
  msgid "Empty Cache"
7722
  msgstr ""
7723
 
7724
- #: languages/vue.php:2061
7725
  msgid "Click to manually wipe the cache right now."
7726
  msgstr ""
7727
 
7728
- #: languages/vue.php:2064
7729
  msgid "Popular posts cache emptied"
7730
  msgstr ""
7731
 
7732
- #: languages/vue.php:2067
7733
  msgid "Error emptying the popular posts cache. Please try again."
7734
  msgstr ""
7735
 
7736
- #: languages/vue.php:2070
7737
  msgid "Last 30 Days Analytics for "
7738
  msgstr ""
7739
 
7740
- #: languages/vue.php:2073
7741
  msgid "Your Website"
7742
  msgstr ""
7743
 
7744
- #: languages/vue.php:2076
7745
  msgid "Avg. Duration"
7746
  msgstr ""
7747
 
7748
- #: languages/vue.php:2079
7749
  msgid "More data is available"
7750
  msgstr ""
7751
 
7752
- #: languages/vue.php:2082
7753
  msgid "Want to see page-specific stats?"
7754
  msgstr ""
7755
 
7756
- #: languages/vue.php:2085
7757
  msgid "You appear to be offline. WPForms not installed."
7758
  msgstr ""
7759
 
7760
  #. Translators: Error status and error text.
7761
- #: languages/vue.php:2089
7762
  msgid "Can't activate addon. Error: %1$s, %2$s"
7763
  msgstr ""
7764
 
7765
- #: languages/vue.php:2092
7766
  msgid "You appear to be offline. Addon not activated."
7767
  msgstr ""
7768
 
7769
  #. Translators: Error status and error text.
7770
- #: languages/vue.php:2096
7771
  msgid "Can't deactivate addon. Error: %1$s, %2$s"
7772
  msgstr ""
7773
 
7774
- #: languages/vue.php:2099
7775
  msgid "You appear to be offline. Addon not deactivated."
7776
  msgstr ""
7777
 
7778
  #. Translators: Error status and error text.
7779
- #: languages/vue.php:2103
7780
  msgid "Can't install plugin. Error: %1$s, %2$s"
7781
  msgstr ""
7782
 
7783
- #: languages/vue.php:2106
7784
  msgid "You appear to be offline. Plugin not installed."
7785
  msgstr ""
7786
 
7787
  #. Translators: Error status and error text.
7788
- #: languages/vue.php:2110
7789
  msgid "Can't install addon. Error: %1$s, %2$s"
7790
  msgstr ""
7791
 
7792
- #: languages/vue.php:2113
7793
  msgid "You appear to be offline. Addon not installed."
7794
  msgstr ""
7795
 
7796
  #. Translators: Error status and error text.
7797
- #: languages/vue.php:2117
7798
  msgid "Can't install WPForms. Error: %1$s, %2$s"
7799
  msgstr ""
7800
 
7801
- #: languages/vue.php:2120
7802
  msgid "Network Active"
7803
  msgstr ""
7804
 
7805
- #: languages/vue.php:2123
7806
  msgid "Active"
7807
  msgstr ""
7808
 
7809
- #: languages/vue.php:2126
7810
  msgid "Inactive"
7811
  msgstr ""
7812
 
7813
  #. Translators: Placeholder for the addon status (installed, active, etc).
7814
- #: languages/vue.php:2130
7815
  msgid "Status: %s"
7816
  msgstr ""
7817
 
7818
- #: languages/vue.php:2133
7819
  msgid "Not Installed"
7820
  msgstr ""
7821
 
7822
  #. Translators: Makes text bold and adds smiley.
7823
- #: languages/vue.php:2137
7824
  msgid "You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
7825
  msgstr ""
7826
 
7827
  #. Translators: Makes text green.
7828
- #: languages/vue.php:2141
7829
  msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout."
7830
  msgstr ""
7831
 
7832
- #: languages/vue.php:2144
7833
  msgid "Unlock All Features and Upgrade to Pro"
7834
  msgstr ""
7835
 
7836
  #. Translators: Make text green and add smiley face.
7837
- #: languages/vue.php:2148
7838
  msgid "You're using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
7839
  msgstr ""
7840
 
7841
  #. Translators: Make text green.
7842
- #: languages/vue.php:2152
7843
  msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
7844
  msgstr ""
7845
 
7846
- #: languages/vue.php:2155
7847
  msgid "Unlock PRO Features Now"
7848
  msgstr ""
7849
 
7850
- #: languages/vue.php:2159
7851
  msgid "Paste your license key here"
7852
  msgstr ""
7853
 
7854
- #: languages/vue.php:2163
7855
  msgid "Verify"
7856
  msgstr ""
7857
 
7858
  #. Translators: Add link to retrieve license from account area.
7859
- #: languages/vue.php:2167
7860
  msgid "Already purchased? Simply enter your license key below to connect with ExactMetrics PRO! %1$sRetrieve your license key%2$s."
7861
  msgstr ""
7862
 
7863
- #: languages/vue.php:2170
7864
- #: languages/vue.php:3638
7865
  msgid "There was an error unlocking ExactMetrics PRO please try again or install manually."
7866
  msgstr ""
7867
 
7868
- #: languages/vue.php:2173
7869
  msgid "%1$sAll-in-One SEO%2$s Makes SEO Simple. Gain Valuable Organic Traffic."
7870
  msgstr ""
7871
 
7872
- #: languages/vue.php:2176
7873
  msgid "Automatically migrate all of your SEO settings with just 1 click!"
7874
  msgstr ""
7875
 
7876
- #: languages/vue.php:2179
7877
  msgid "1,938"
7878
  msgstr ""
7879
 
7880
- #: languages/vue.php:2182
7881
  msgid "2+ Million Active Installs"
7882
  msgstr ""
7883
 
7884
- #: languages/vue.php:2185
7885
  msgid "AIOSEO is the DIY Solution for Managing your SEO"
7886
  msgstr ""
7887
 
7888
- #: languages/vue.php:2188
7889
  msgid "Set up the proper SEO foundations in less than 10 minutes."
7890
  msgstr ""
7891
 
7892
- #: languages/vue.php:2191
7893
  msgid "SEO Audit Checklist"
7894
  msgstr ""
7895
 
7896
- #: languages/vue.php:2194
7897
  msgid "Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic."
7898
  msgstr ""
7899
 
7900
- #: languages/vue.php:2197
7901
  msgid "Optimize Your Pages For Higher Rankings With TruSEO Score."
7902
  msgstr ""
7903
 
7904
- #: languages/vue.php:2200
7905
  msgid "TruSEO Score gives you a more in-depth analysis into your optimization efforts than just a pass or fail. Our actionable checklist helps you to unlock maximum traffic with each page."
7906
  msgstr ""
7907
 
7908
- #: languages/vue.php:2203
7909
  msgid "Get AIOSEO for WordPress"
7910
  msgstr ""
7911
 
7912
- #: languages/vue.php:2206
7913
  msgid "Get the #1 Most Powerful WordPress SEO Plugin Today"
7914
  msgstr ""
7915
 
7916
- #: languages/vue.php:2209
7917
  msgid "Try it out today, for free."
7918
  msgstr ""
7919
 
7920
- #: languages/vue.php:2212
7921
  msgid "Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings."
7922
  msgstr ""
7923
 
7924
- #: languages/vue.php:2215
7925
  msgid "Activate and Install the Plugin with just one click!"
7926
  msgstr ""
7927
 
7928
- #: languages/vue.php:2218
7929
  msgid "Installing AIOSEO..."
7930
  msgstr ""
7931
 
7932
- #: languages/vue.php:2221
7933
  msgid "Congrats! All-in-One SEO Installed."
7934
  msgstr ""
7935
 
7936
- #: languages/vue.php:2224
7937
  msgid "Switch to AIOSEO"
7938
  msgstr ""
7939
 
7940
- #: languages/vue.php:2227
7941
  msgid "Installation Failed. Please refresh and try again."
7942
  msgstr ""
7943
 
7944
- #: languages/vue.php:2230
7945
  msgid "Activating AIOSEO..."
7946
  msgstr ""
7947
 
7948
- #: languages/vue.php:2233
7949
  msgid "Activate AIOSEO"
7950
  msgstr ""
7951
 
7952
- #: languages/vue.php:2236
7953
  msgid "Activation Failed. Please refresh and try again."
7954
  msgstr ""
7955
 
7956
- #: languages/vue.php:2239
7957
  msgid "Unlock Form Tracking"
7958
  msgstr ""
7959
 
7960
- #: languages/vue.php:2242
7961
  msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
7962
  msgstr ""
7963
 
7964
- #: languages/vue.php:2245
7965
  msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
7966
  msgstr ""
7967
 
7968
- #: languages/vue.php:2248
7969
  msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
7970
  msgstr ""
7971
 
7972
- #: languages/vue.php:2251
7973
  msgid "Show"
7974
  msgstr ""
7975
 
7976
- #: languages/vue.php:2254
7977
  msgid "File imported"
7978
  msgstr ""
7979
 
7980
- #: languages/vue.php:2257
7981
  msgid "Settings successfully updated!"
7982
  msgstr ""
7983
 
7984
- #: languages/vue.php:2260
7985
  msgid "Error importing settings"
7986
  msgstr ""
7987
 
7988
- #: languages/vue.php:2263
7989
  msgid "Please choose a .json file generated by a ExactMetrics settings export."
7990
  msgstr ""
7991
 
7992
- #: languages/vue.php:2266
7993
  msgid "Import/Export"
7994
  msgstr ""
7995
 
7996
- #: languages/vue.php:2269
7997
  msgid "Import"
7998
  msgstr ""
7999
 
8000
- #: languages/vue.php:2272
8001
  msgid "Import settings from another ExactMetrics website."
8002
  msgstr ""
8003
 
8004
- #: languages/vue.php:2275
8005
  msgid "Export"
8006
  msgstr ""
8007
 
8008
- #: languages/vue.php:2278
8009
  msgid "Export settings to import into another ExactMetrics install."
8010
  msgstr ""
8011
 
8012
- #: languages/vue.php:2281
8013
  msgid "Import Settings"
8014
  msgstr ""
8015
 
8016
- #: languages/vue.php:2284
8017
  msgid "Export Settings"
8018
  msgstr ""
8019
 
8020
- #: languages/vue.php:2287
8021
  msgid "Please choose a file to import"
8022
  msgstr ""
8023
 
8024
- #: languages/vue.php:2290
8025
  msgid "Click Choose file below to select the settings export file from another site."
8026
  msgstr ""
8027
 
8028
- #: languages/vue.php:2293
8029
  msgid "Use the button below to export a file with your ExactMetrics settings."
8030
  msgstr ""
8031
 
8032
- #: languages/vue.php:2296
8033
  msgid "Choose file"
8034
  msgstr ""
8035
 
8036
- #: languages/vue.php:2299
8037
  msgid "No file chosen"
8038
  msgstr ""
8039
 
8040
- #: languages/vue.php:2302
8041
  msgid "Uploading file..."
8042
  msgstr ""
8043
 
8044
- #: languages/vue.php:2305
8045
  msgid "Custom code"
8046
  msgstr ""
8047
 
8048
  #. Translators: Adds a link to the Google reference.
8049
- #: languages/vue.php:2309
8050
  msgid "Not for the average user: this allows you to add a line of code, to be added before the %1$spageview is sent%2$s."
8051
  msgstr ""
8052
 
8053
- #: languages/vue.php:2315
8054
  msgid "Automatic Updates"
8055
  msgstr ""
8056
 
8057
- #: languages/vue.php:2318
8058
  msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
8059
  msgstr ""
8060
 
8061
- #: languages/vue.php:2321
8062
  msgid "Hide Admin Bar Reports"
8063
  msgstr ""
8064
 
8065
  #. Translators: placeholders make text small.
8066
- #: languages/vue.php:2325
8067
  msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
8068
  msgstr ""
8069
 
8070
  #. Translators: placeholders make text small.
8071
- #: languages/vue.php:2329
8072
  msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
8073
  msgstr ""
8074
 
8075
  #. Translators: placeholders make text small.
8076
- #: languages/vue.php:2333
8077
  msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
8078
  msgstr ""
8079
 
8080
  #. Translators: placeholders make text small.
8081
- #: languages/vue.php:2337
8082
  msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
8083
  msgstr ""
8084
 
8085
  #. Translators: placeholders make text small.
8086
- #: languages/vue.php:2341
8087
  msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
8088
  msgstr ""
8089
 
8090
  #. Translators: placeholders make text small.
8091
- #: languages/vue.php:2345
8092
  msgid "None %1$s- Manually update everything.%2$s"
8093
  msgstr ""
8094
 
8095
  #. Translators: Adds a link to the general settings tab.
8096
- #: languages/vue.php:2349
8097
  msgid "It looks like you added a Google Analytics tracking code in the custom code area, this can potentially prevent proper tracking. If you want to use a manual UA please use the setting in the %1$sGeneral%2$s tab."
8098
  msgstr ""
8099
 
8100
- #: languages/vue.php:2352
8101
  msgid "Permissions"
8102
  msgstr ""
8103
 
8104
- #: languages/vue.php:2355
8105
  msgid "Export PDF Reports"
8106
  msgstr ""
8107
 
8108
- #: languages/vue.php:2358
8109
  msgid "Allow These User Roles to See Reports"
8110
  msgstr ""
8111
 
8112
- #: languages/vue.php:2361
8113
  msgid "Users that have at least one of these roles will be able to view the reports."
8114
  msgstr ""
8115
 
8116
- #: languages/vue.php:2364
8117
  msgid "Allow These User Roles to Save Settings"
8118
  msgstr ""
8119
 
8120
- #: languages/vue.php:2367
8121
  msgid "Users that have at least one of these roles will be able to view and save the settings panel."
8122
  msgstr ""
8123
 
8124
- #: languages/vue.php:2370
8125
  msgid "Users that have at least one of these roles will be able to view and save the settings panel, along with any user with the manage_options capability."
8126
  msgstr ""
8127
 
8128
- #: languages/vue.php:2373
8129
  msgid "Exclude These User Roles From Tracking"
8130
  msgstr ""
8131
 
8132
- #: languages/vue.php:2376
8133
  msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
8134
  msgstr ""
8135
 
8136
- #: languages/vue.php:2379
8137
  msgid "Make your ExactMetrics campaign links prettier with Pretty Links!"
8138
  msgstr ""
8139
 
8140
- #: languages/vue.php:2382
8141
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links."
8142
  msgstr ""
8143
 
8144
- #: languages/vue.php:2385
8145
  msgid "Take your ExactMetrics campaign links from our URL Builder and shorten them with Pretty Links!"
8146
  msgstr ""
8147
 
8148
- #: languages/vue.php:2388
8149
  msgid "Over 200,000 websites use Pretty Links!"
8150
  msgstr ""
8151
 
8152
- #: languages/vue.php:2391
8153
  msgid "Install Pretty Links"
8154
  msgstr ""
8155
 
8156
- #: languages/vue.php:2394
8157
  msgid "Pretty Links Installed & Activated"
8158
  msgstr ""
8159
 
8160
- #: languages/vue.php:2397
8161
  msgid "Download Pretty Links"
8162
  msgstr ""
8163
 
8164
- #: languages/vue.php:2400
8165
  msgid "Install Pretty Links from the WordPress.org plugin repository."
8166
  msgstr ""
8167
 
8168
- #: languages/vue.php:2403
8169
  msgid "Activate Pretty Links"
8170
  msgstr ""
8171
 
8172
- #: languages/vue.php:2406
8173
  msgid "Activating Pretty Links..."
8174
  msgstr ""
8175
 
8176
- #: languages/vue.php:2409
8177
  msgid "Create New Pretty Link"
8178
  msgstr ""
8179
 
8180
- #: languages/vue.php:2412
8181
  msgid "Create a New Pretty Link"
8182
  msgstr ""
8183
 
8184
- #: languages/vue.php:2415
8185
  msgid "Grab your campaign link and paste it into the Target URL field."
8186
  msgstr ""
8187
 
8188
- #: languages/vue.php:2418
8189
  msgid "Custom Campaign Parameters"
8190
  msgstr ""
8191
 
8192
- #: languages/vue.php:2421
8193
  msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
8194
  msgstr ""
8195
 
8196
- #: languages/vue.php:2424
8197
  msgid "A custom campaign is any ad campaign not using the AdWords auto-tagging feature. When users click one of the custom links, the unique parameters are sent to your Analytics account, so you can identify the URLs that are the most effective in attracting users to your content."
8198
  msgstr ""
8199
 
8200
  #. Translators: Marks the field as required.
8201
- #: languages/vue.php:2428
8202
  msgid "Website URL %s"
8203
  msgstr ""
8204
 
8205
  #. Translators: Display the current website url in italic.
8206
- #: languages/vue.php:2432
8207
  msgid "The full website URL (e.g. %1$s %2$s%3$s)"
8208
  msgstr ""
8209
 
8210
  #. Translators: Marks the field as required.
8211
- #: languages/vue.php:2436
8212
  msgid "Campaign Source %s"
8213
  msgstr ""
8214
 
8215
  #. Translators: Make the text italic.
8216
- #: languages/vue.php:2440
8217
  msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
8218
  msgstr ""
8219
 
8220
  #. Translators: Make the text italic.
8221
- #: languages/vue.php:2444
8222
  msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
8223
  msgstr ""
8224
 
8225
  #. Translators: Make the text italic.
8226
- #: languages/vue.php:2448
8227
  msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
8228
  msgstr ""
8229
 
8230
- #: languages/vue.php:2451
8231
  msgid "Enter the paid keyword"
8232
  msgstr ""
8233
 
8234
- #: languages/vue.php:2454
8235
  msgid "Enter something to differentiate ads"
8236
  msgstr ""
8237
 
8238
- #: languages/vue.php:2457
8239
  msgid "Use Fragment"
8240
  msgstr ""
8241
 
8242
  #. Translators: Make the text bold.
8243
- #: languages/vue.php:2461
8244
  msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
8245
  msgstr ""
8246
 
8247
- #: languages/vue.php:2464
8248
  msgid "URL to use"
8249
  msgstr ""
8250
 
8251
- #: languages/vue.php:2467
8252
  msgid "(Updates automatically)"
8253
  msgstr ""
8254
 
8255
- #: languages/vue.php:2470
8256
  msgid "Copy to Clipboard"
8257
  msgstr ""
8258
 
8259
- #: languages/vue.php:2473
8260
  msgid "Copy to Pretty Links"
8261
  msgstr ""
8262
 
8263
- #: languages/vue.php:2476
8264
  msgid "Make your campaign links prettier!"
8265
  msgstr ""
8266
 
8267
- #: languages/vue.php:2479
8268
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links."
8269
  msgstr ""
8270
 
8271
- #: languages/vue.php:2482
8272
  msgid "More Information & Examples"
8273
  msgstr ""
8274
 
8275
- #: languages/vue.php:2485
8276
  msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
8277
  msgstr ""
8278
 
8279
- #: languages/vue.php:2488
8280
  msgid "Campaign Source"
8281
  msgstr ""
8282
 
8283
- #: languages/vue.php:2491
8284
  msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
8285
  msgstr ""
8286
 
8287
- #: languages/vue.php:2494
8288
  msgid "Campaign Medium"
8289
  msgstr ""
8290
 
8291
- #: languages/vue.php:2497
8292
  msgid "Use utm_medium to identify a medium such as email or cost-per-click."
8293
  msgstr ""
8294
 
8295
- #: languages/vue.php:2500
8296
  msgid "Campaign Name"
8297
  msgstr ""
8298
 
8299
- #: languages/vue.php:2503
8300
  msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
8301
  msgstr ""
8302
 
8303
- #: languages/vue.php:2506
8304
  msgid "Campaign Term"
8305
  msgstr ""
8306
 
8307
- #: languages/vue.php:2509
8308
  msgid "Used for paid search. Use utm_term to note the keywords for this ad."
8309
  msgstr ""
8310
 
8311
- #: languages/vue.php:2512
8312
  msgid "Campaign Content"
8313
  msgstr ""
8314
 
8315
- #: languages/vue.php:2515
8316
  msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
8317
  msgstr ""
8318
 
8319
  #. Translators: Example.
8320
- #: languages/vue.php:2519
8321
  msgid "Example: %s"
8322
  msgstr ""
8323
 
8324
  #. Translators: Examples.
8325
- #: languages/vue.php:2523
8326
  msgid "Examples: %s"
8327
  msgstr ""
8328
 
8329
- #: languages/vue.php:2526
8330
  msgid "About Campaigns"
8331
  msgstr ""
8332
 
8333
- #: languages/vue.php:2529
8334
  msgid "About Custom Campaigns"
8335
  msgstr ""
8336
 
8337
- #: languages/vue.php:2532
8338
  msgid "Best Practices for Creating Custom Campaigns"
8339
  msgstr ""
8340
 
8341
- #: languages/vue.php:2535
8342
  msgid "About the Referral Traffic Report"
8343
  msgstr ""
8344
 
8345
- #: languages/vue.php:2538
8346
  msgid "About Traffic Source Dimensions"
8347
  msgstr ""
8348
 
8349
- #: languages/vue.php:2541
8350
  msgid "AdWords Auto-Tagging"
8351
  msgstr ""
8352
 
8353
- #: languages/vue.php:2544
8354
  msgid "Additional Information"
8355
  msgstr ""
8356
 
8357
- #: languages/vue.php:2547
8358
  msgid "Affiliate Links"
8359
  msgstr ""
8360
 
8361
  #. Translators: Add links to documentation.
8362
- #: languages/vue.php:2551
8363
  msgid "This allows you to track custom affiliate links. A path of /go/ would match urls that start with that. The label is appended onto the end of the string \"outbound-link-\", to provide unique labels for these links in Google Analytics. Complete documentation on affiliate links is available %1$shere%2$s."
8364
  msgstr ""
8365
 
8366
- #: languages/vue.php:2554
8367
  msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
8368
  msgstr ""
8369
 
8370
- #: languages/vue.php:2557
8371
  msgid "The ExactMetrics Headline Analyzer tool in the Gutenberg editor enables you to write irresistible SEO-friendly headlines that drive traffic, social media shares, and rank better in search results."
8372
  msgstr ""
8373
 
8374
- #: languages/vue.php:2560
8375
  msgid "Disable the Headline Analyzer"
8376
  msgstr ""
8377
 
8378
  #. Translators: Add line break.
8379
- #: languages/vue.php:2564
8380
  msgid "See All Your Important Store%s Metrics in One Place"
8381
  msgstr ""
8382
 
8383
- #: languages/vue.php:2567
8384
  msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
8385
  msgstr ""
8386
 
8387
- #: languages/vue.php:2570
8388
  msgid "See Your Conversion Rate to Improve Funnel"
8389
  msgstr ""
8390
 
8391
- #: languages/vue.php:2573
8392
  msgid "See The Number of Transactions and Make Data-Driven Decisions"
8393
  msgstr ""
8394
 
8395
- #: languages/vue.php:2576
8396
  msgid "See The Total Revenue to Track Growth"
8397
  msgstr ""
8398
 
8399
- #: languages/vue.php:2579
8400
  msgid "See Average Order Value to Find Offer Opportunities"
8401
  msgstr ""
8402
 
8403
- #: languages/vue.php:2582
8404
  msgid "See Your Top Products to See Individual Performance"
8405
  msgstr ""
8406
 
8407
- #: languages/vue.php:2585
8408
  msgid "See your Top Conversion Sources and Focus on what's Working"
8409
  msgstr ""
8410
 
8411
- #: languages/vue.php:2588
8412
  msgid "See The Time it Takes for Customers to Purchase"
8413
  msgstr ""
8414
 
8415
- #: languages/vue.php:2591
8416
  msgid "See How Many Sessions are Needed for a Purchase"
8417
  msgstr ""
8418
 
8419
- #: languages/vue.php:2594
8420
  msgid "Automatically Track Affiliate Sales"
8421
  msgstr ""
8422
 
8423
- #: languages/vue.php:2597
8424
  msgid "The ExactMetrics eCommerce addon works with EasyAffiliate, so that you can instantly track all affiliate referrals and sales inside WordPress and Google Analytics, with no coding needed."
8425
  msgstr ""
8426
 
8427
- #: languages/vue.php:2600
8428
  msgid "Works with WooCommerce, MemberPress, and EasyDigitalDownloads."
8429
  msgstr ""
8430
 
8431
- #: languages/vue.php:2603
8432
  msgid "Cross Domain Tracking"
8433
  msgstr ""
8434
 
8435
  #. Translators: Add links to documentation.
8436
- #: languages/vue.php:2607
8437
  msgid "Cross domain tracking makes it possible for Analytics to see sessions on two related sites as a single session. More info on specific setup steps can be found in our %1$sknowledge base%2$s."
8438
  msgstr ""
8439
 
8440
- #: languages/vue.php:2610
8441
  msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
8442
  msgstr ""
8443
 
8444
- #: languages/vue.php:2613
8445
  msgid "Anonymize IP Addresses"
8446
  msgstr ""
8447
 
8448
- #: languages/vue.php:2616
8449
  msgid "Link Attribution"
8450
  msgstr ""
8451
 
8452
- #: languages/vue.php:2619
8453
  msgid "Enable Enhanced Link Attribution"
8454
  msgstr ""
8455
 
8456
- #: languages/vue.php:2622
8457
  msgid "Enable Anchor Tracking"
8458
  msgstr ""
8459
 
8460
- #: languages/vue.php:2625
8461
  msgid "Enable allowAnchor"
8462
  msgstr ""
8463
 
8464
- #: languages/vue.php:2628
8465
  msgid "Enable allowLinker"
8466
  msgstr ""
8467
 
8468
- #: languages/vue.php:2631
8469
  msgid "Enable Tag Links in RSS"
8470
  msgstr ""
8471
 
8472
- #: languages/vue.php:2634
8473
  msgid "File Downloads"
8474
  msgstr ""
8475
 
8476
- #: languages/vue.php:2637
8477
  msgid "Extensions of Files to Track as Downloads"
8478
  msgstr ""
8479
 
8480
- #: languages/vue.php:2640
8481
  msgid "ExactMetrics will send an event to Google Analytics if a link to a file has one of the above extensions."
8482
  msgstr ""
8483
 
8484
  #. Translators: Add links to documentation.
8485
- #: languages/vue.php:2644
8486
  msgid "Enable this setting to add the Demographics and Remarketing features to your Google Analytics tracking code. Make sure to enable Demographics and Remarketing in your Google Analytics account. We have a guide for how to do that in our %1$sknowledge base%2$s. For more information about Remarketing, we refer you to %3$sGoogle's documentation%4$s. Note that usage of this function is affected by privacy and cookie laws around the world. Be sure to follow the laws that affect your target audience."
8487
  msgstr ""
8488
 
8489
  #. Translators: Add links to documentation.
8490
- #: languages/vue.php:2648
8491
  msgid "This adds %1$sanonymizeIp%2$s, telling Google Analytics to anonymize the information sent by the tracker objects by removing the last octet of the IP address prior to its storage."
8492
  msgstr ""
8493
 
8494
  #. Translators: Add links to documentation.
8495
- #: languages/vue.php:2652
8496
  msgid "Adds the Enhanced Link Attribution (retain link) code to improve the accuracy of your In-Page Analytics report by automatically differentiating between multiple links to the same URL on a single page by using link element IDs."
8497
  msgstr ""
8498
 
8499
- #: languages/vue.php:2655
8500
  msgid "Many WordPress \"1-page\" style themes rely on anchor tags for navigation to show virtual pages. The problem is that to Google Analytics, these are all just a single page, and it makes it hard to get meaningful statistics about pages viewed. This feature allows proper tracking in those themes."
8501
  msgstr ""
8502
 
8503
  #. Translators: Add links to documentation.
8504
- #: languages/vue.php:2659
8505
  msgid "This adds %1$sallowAnchor%2$s to the create command of the pageview hit tracking code, and makes RSS link tagging use a # as well."
8506
  msgstr ""
8507
 
8508
  #. Translators: Add links to documentation.
8509
- #: languages/vue.php:2663
8510
  msgid "Enabling %1$scross-domain tracking (additional setup required)%2$s allows you to track users across multiple properties you own (such as example-1.com and example-2.com as a single session. It also allows you fix an issue so that when a user has to go to an off-site hosted payment gateway to finish a purchase it doesn't count it as referral traffic from that gateway but maintains the visit as part of the same session.) It is required that the other site includes a Google Analytics tracker with the same UA Code."
8511
  msgstr ""
8512
 
8513
  #. Translators: Add links to documentation.
8514
- #: languages/vue.php:2667
8515
  msgid "Do not use this feature if you use FeedBurner, as FeedBurner can do this automatically and better than this plugin can. Check this %1$shelp page%2$s for info on how to enable this feature in FeedBurner."
8516
  msgstr ""
8517
 
8518
- #: languages/vue.php:2670
8519
  msgid "Add domain"
8520
  msgstr ""
8521
 
8522
  #. Translators: Domain name example.
8523
- #: languages/vue.php:2674
8524
  msgid "Domain (example: %s)"
8525
  msgstr ""
8526
 
8527
  #. Translators: Current domain name that should not be used.
8528
- #: languages/vue.php:2678
8529
  msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
8530
  msgstr ""
8531
 
8532
  #. Translators: Adds link to the account area to retreive license key.
8533
- #: languages/vue.php:2682
8534
  msgid "Already have a license key? Add it below to unlock ExactMetrics PRO. %1$sRetrieve your license key%2$s."
8535
  msgstr ""
8536
 
8537
- #: languages/vue.php:2685
8538
  msgid "Connect ExactMetrics to Start Tracking Your Data"
8539
  msgstr ""
8540
 
8541
- #: languages/vue.php:2688
8542
  msgid "Complete Upgrade"
8543
  msgstr ""
8544
 
8545
- #: languages/vue.php:2691
8546
  msgid "Upgrade to Pro Version!"
8547
  msgstr ""
8548
 
8549
  #. Translators: Make text bold.
8550
- #: languages/vue.php:2695
8551
  msgid "%1$sExactMetrics%2$s can automatically upgrade the installed version to the Pro and walk you through the process."
8552
  msgstr ""
8553
 
8554
- #: languages/vue.php:2698
8555
  msgid "Install All-in-One SEO"
8556
  msgstr ""
8557
 
8558
- #: languages/vue.php:2701
8559
  msgid "Improve Your Website Search Rankings With All-In-One SEO"
8560
  msgstr ""
8561
 
8562
- #: languages/vue.php:2704
8563
  msgid "If you’re not using a plugin to optimize your website’s SEO you’re missing out on valuable organic traffic!"
8564
  msgstr ""
8565
 
8566
- #: languages/vue.php:2707
8567
  msgid "Finally, a WordPress SEO Plugin that’s Easy and Powerful!"
8568
  msgstr ""
8569
 
8570
- #: languages/vue.php:2710
8571
  msgid "AIOSEO makes it easy to set up the proper SEO foundations in less than 10 minutes."
8572
  msgstr ""
8573
 
8574
- #: languages/vue.php:2713
8575
  msgid "Local SEO"
8576
  msgstr ""
8577
 
8578
- #: languages/vue.php:2716
8579
  msgid "All in One SEO gives you all the tools you need to improve your local SEO and rank higher on Google Maps."
8580
  msgstr ""
8581
 
8582
- #: languages/vue.php:2719
8583
  msgid "WooCommerce SEO"
8584
  msgstr ""
8585
 
8586
- #: languages/vue.php:2722
8587
  msgid "Advanced eCommerce SEO support for WooCommerce to optimize product pages, product categories, and more."
8588
  msgstr ""
8589
 
8590
- #: languages/vue.php:2725
8591
  msgid "SEO Custom User Roles"
8592
  msgstr ""
8593
 
8594
- #: languages/vue.php:2728
8595
  msgid "SEO user roles allow you to manage access to important SEO features without handing over control of your website."
8596
  msgstr ""
8597
 
8598
- #: languages/vue.php:2731
8599
  msgid "Google News Sitemap"
8600
  msgstr ""
8601
 
8602
- #: languages/vue.php:2734
8603
  msgid "Get higher rankings and unlock more traffic by submitting your latest news articles to Google News."
8604
  msgstr ""
8605
 
8606
- #: languages/vue.php:2737
8607
  msgid "Smart XML Sitemaps"
8608
  msgstr ""
8609
 
8610
- #: languages/vue.php:2740
8611
  msgid "Automatically generate a WordPress XML sitemap and notify all search engines of any updates."
8612
  msgstr ""
8613
 
8614
- #: languages/vue.php:2743
8615
  msgid "Social Media Integration"
8616
  msgstr ""
8617
 
8618
- #: languages/vue.php:2746
8619
  msgid "Easily control how your content and thumbnails look on Facebook, Twitter, and other social media networks."
8620
  msgstr ""
8621
 
8622
- #: languages/vue.php:2749
8623
  msgid "TruSEO On-Page Analysis"
8624
  msgstr ""
8625
 
8626
- #: languages/vue.php:2752
8627
  msgid "Easily add title tags, meta descriptions, keywords, and everything else you need for proper on-page SEO optimization."
8628
  msgstr ""
8629
 
8630
- #: languages/vue.php:2755
8631
  msgid "& Many More!"
8632
  msgstr ""
8633
 
8634
- #: languages/vue.php:2758
8635
  msgid "Installing. Please wait.."
8636
  msgstr ""
8637
 
8638
- #: languages/vue.php:2761
8639
  msgid "Install All-in-One-SEO"
8640
  msgstr ""
8641
 
8642
- #: languages/vue.php:2764
8643
  msgid "Unlock the Publisher Report and Focus on the Content That Matters"
8644
  msgstr ""
8645
 
8646
- #: languages/vue.php:2767
8647
  msgid "See Your Top Landing Pages to Improve Engagement"
8648
  msgstr ""
8649
 
8650
- #: languages/vue.php:2770
8651
  msgid "See Your Top Exit Pages to Reduce Abandonment"
8652
  msgstr ""
8653
 
8654
- #: languages/vue.php:2773
8655
  msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
8656
  msgstr ""
8657
 
8658
- #: languages/vue.php:2776
8659
  msgid "See Your Top Affiliate Links and Focus on What’s Working"
8660
  msgstr ""
8661
 
8662
- #: languages/vue.php:2779
8663
  msgid "See Your Top Downloads and Improve Conversions"
8664
  msgstr ""
8665
 
8666
- #: languages/vue.php:2782
8667
  msgid "See Audience Demographic Report (Age / Gender / Interests)"
8668
  msgstr ""
8669
 
8670
- #: languages/vue.php:2785
8671
  msgid "Welcome to the all-new ExactMetrics"
8672
  msgstr ""
8673
 
8674
- #: languages/vue.php:2788
8675
  msgid "Redesigned from the ground up, ExactMetrics is built to bring a world-class analytics and reporting experience to WordPress."
8676
  msgstr ""
8677
 
8678
- #: languages/vue.php:2791
8679
  msgid "The New & Improved ExactMetrics includes:"
8680
  msgstr ""
8681
 
8682
- #: languages/vue.php:2794
8683
  msgid "All-New Design"
8684
  msgstr ""
8685
 
8686
- #: languages/vue.php:2797
8687
  msgid "Better Reporting"
8688
  msgstr ""
8689
 
8690
- #: languages/vue.php:2800
8691
  msgid "Better Tracking"
8692
  msgstr ""
8693
 
8694
- #: languages/vue.php:2803
8695
  msgid "Better Support"
8696
  msgstr ""
8697
 
8698
- #: languages/vue.php:2806
8699
  msgid "Continue"
8700
  msgstr ""
8701
 
8702
- #: languages/vue.php:2809
8703
  msgid "Your settings have been automatically transferred."
8704
  msgstr ""
8705
 
8706
- #: languages/vue.php:2812
8707
  msgid "On the next step, you will be asked to re-authenticate with Google Analytics. Please %1$ssee our detailed post%2$s to learn why we need your help. Don't worry, your tracking will continue to work as-is even if you don't do this, but re-auth is required to see analytics reports inside WordPress dashboard."
8708
  msgstr ""
8709
 
8710
- #: languages/vue.php:2815
8711
  msgid "New"
8712
  msgstr ""
8713
 
8714
- #: languages/vue.php:2818
8715
  msgid "Returning"
8716
  msgstr ""
8717
 
8718
- #: languages/vue.php:2821
8719
  msgid "Top 10 Countries"
8720
  msgstr ""
8721
 
8722
- #: languages/vue.php:2824
8723
  msgid "View Countries Report"
8724
  msgstr ""
8725
 
8726
- #: languages/vue.php:2827
8727
  msgid "Top 10 Referrals"
8728
  msgstr ""
8729
 
8730
- #: languages/vue.php:2830
8731
  msgid "View All Referral Sources"
8732
  msgstr ""
8733
 
8734
- #: languages/vue.php:2833
8735
  msgid "View Full Posts/Pages Report"
8736
  msgstr ""
8737
 
8738
- #: languages/vue.php:2836
8739
  msgid "Percentage of single-page visits (or web sessions). It is the number of visits in which a person leaves your website from the landing page without browsing any further."
8740
  msgstr ""
8741
 
8742
- #: languages/vue.php:2839
8743
  msgid "This list shows the top countries your website visitors are from."
8744
  msgstr ""
8745
 
8746
- #: languages/vue.php:2842
8747
  msgid "This list shows the top websites that send your website traffic, known as referral traffic."
8748
  msgstr ""
8749
 
8750
- #: languages/vue.php:2845
8751
  msgid "This feature requires ExactMetrics Pro"
8752
  msgstr ""
8753
 
8754
- #: languages/vue.php:2848
8755
  msgid "By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more."
8756
  msgstr ""
8757
 
8758
- #: languages/vue.php:2851
8759
  msgid "Upgrade to Pro and Unlock Popular Products"
8760
  msgstr ""
8761
 
8762
- #: languages/vue.php:2854
8763
  msgid "View all Pro features"
8764
  msgstr ""
8765
 
8766
- #: languages/vue.php:2857
8767
  msgid "View notifications"
8768
  msgstr ""
8769
 
8770
- #: languages/vue.php:2860
8771
  msgid "Days"
8772
  msgstr ""
8773
 
8774
  #. Translators: placeholders make text small.
8775
- #: languages/vue.php:2864
8776
  msgid "7 days"
8777
  msgstr ""
8778
 
8779
- #: languages/vue.php:2867
8780
  msgid "30 days"
8781
  msgstr ""
8782
 
8783
- #: languages/vue.php:2870
8784
  msgid "Custom"
8785
  msgstr ""
8786
 
8787
- #: languages/vue.php:2873
8788
  msgid "2,000,000+ use AIOSEO to Improve Their Website Search Rankings"
8789
  msgstr ""
8790
 
8791
- #: languages/vue.php:2876
8792
  msgid "All-in-One SEO is a great product. I have been using it on all my WP sites for several years. I highly recommend it."
8793
  msgstr ""
8794
 
8795
- #: languages/vue.php:2879
8796
  msgid "Jack Brown"
8797
  msgstr ""
8798
 
8799
- #: languages/vue.php:2882
8800
  msgid "PJB Internet Marketing"
8801
  msgstr ""
8802
 
8803
- #: languages/vue.php:2885
8804
  msgid "I’m a professional SEO and used many tools and extensions. Regarding simplicity, individuality and configurability All in One SEO Pro is by far the best SEO plugin out there for WordPress."
8805
  msgstr ""
8806
 
8807
- #: languages/vue.php:2888
8808
  msgid "Joel Steinmann"
8809
  msgstr ""
8810
 
8811
- #: languages/vue.php:2891
8812
  msgid "CEO, Solergo"
8813
  msgstr ""
8814
 
8815
- #: languages/vue.php:2894
8816
  msgid "Only Show Posts from These Categories"
8817
  msgstr ""
8818
 
8819
- #: languages/vue.php:2897
8820
  msgid "Choose from which categories posts will be displayed in the widget. All categories will be used if left empty."
8821
  msgstr ""
8822
 
8823
- #: languages/vue.php:2901
8824
  msgid "Activating..."
8825
  msgstr ""
8826
 
8827
- #: languages/vue.php:2904
8828
  msgid "Deactivating..."
8829
  msgstr ""
8830
 
8831
- #: languages/vue.php:2907
8832
  msgid "Deactivate"
8833
  msgstr ""
8834
 
8835
- #: languages/vue.php:2910
8836
  msgid "Search Console Report"
8837
  msgstr ""
8838
 
8839
- #: languages/vue.php:2913
8840
  msgid "See exactly how people find tour website, which keywords they searched for, how many times the results were viewed, and more."
8841
  msgstr ""
8842
 
8843
- #: languages/vue.php:2916
8844
  msgid "See Your Top Google Search Terms and Optimize Content"
8845
  msgstr ""
8846
 
8847
- #: languages/vue.php:2919
8848
  msgid "See The Number of Clicks and Track Interests"
8849
  msgstr ""
8850
 
8851
- #: languages/vue.php:2922
8852
  msgid "See The Click-Through-Ratio and Improve SEO"
8853
  msgstr ""
8854
 
8855
- #: languages/vue.php:2925
8856
  msgid "See The Average Results Position and Focus on what works."
8857
  msgstr ""
8858
 
8859
- #: languages/vue.php:2928
8860
  msgid "Ecommerce Report"
8861
  msgstr ""
8862
 
8863
- #: languages/vue.php:2931
8864
  msgid "Increase your sales & revenue with insights. ExactMetrics answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value top products, top referral sources and more."
8865
  msgstr ""
8866
 
8867
- #: languages/vue.php:2934
8868
  msgid "See Your Conversion Rate to Improve Your Funnel"
8869
  msgstr ""
8870
 
8871
- #: languages/vue.php:2937
8872
  msgid "See Your Top Conversion Sources and Focus on What's Working"
8873
  msgstr ""
8874
 
8875
- #: languages/vue.php:2940
8876
  msgid "Popular Posts data can be fetched correctly"
8877
  msgstr ""
8878
 
8879
- #: languages/vue.php:2943
8880
  msgid "Please note: depending on when you set up the Custom Dimensions settings, it may take up to 7 days to see relevant Popular Posts data loading from Google Analytics."
8881
  msgstr ""
8882
 
8883
- #: languages/vue.php:2946
8884
  msgid "Close"
8885
  msgstr ""
8886
 
8887
- #: languages/vue.php:2949
8888
  msgid "Add Top 5 Posts from Google Analytics"
8889
  msgstr ""
8890
 
8891
- #: languages/vue.php:2952
8892
  msgid "In order to load the top posts from Google Analytics you will need to enable the Custom Dimensions addon and set up the Post Type custom dimension in both ExactMetrics and Google Analytics settings."
8893
  msgstr ""
8894
 
8895
- #: languages/vue.php:2955
8896
  msgid "Test Automated Posts"
8897
  msgstr ""
8898
 
8899
  #. Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc.
8900
- #: languages/vue.php:2959
8901
  msgid "Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics."
8902
  msgstr ""
8903
 
8904
- #: languages/vue.php:2962
8905
  msgid "Automated + Curated"
8906
  msgstr ""
8907
 
8908
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
8909
- #: languages/vue.php:2966
8910
  msgid "Automatically add the top 5 Posts from the past 30 days to your Curated list of Posts using %1$sCustom Dimensions%2$s. Also requires Sort By - Curated to be selected. Setup steps can be found in our %3$sknowledge base%4$s."
8911
  msgstr ""
8912
 
8913
  #. Translators: Placeholder gets replaced with current license version.
8914
- #: languages/vue.php:2970
8915
  msgid "Pro version is required."
8916
  msgstr ""
8917
 
8918
- #: languages/vue.php:2973
8919
  msgid "Verifying Popular Posts data"
8920
  msgstr ""
8921
 
8922
- #: languages/vue.php:2976
8923
  msgid "Multiple Entries"
8924
  msgstr ""
8925
 
8926
- #: languages/vue.php:2979
8927
  msgid "Total Number of Widgets to Show"
8928
  msgstr ""
8929
 
8930
- #: languages/vue.php:2982
8931
  msgid "Choose how many widgets will be placed in a single Post."
8932
  msgstr ""
8933
 
8934
- #: languages/vue.php:2985
8935
  msgid "Minimum Distance Between Widgets"
8936
  msgstr ""
8937
 
8938
- #: languages/vue.php:2988
8939
  msgid "Choose the distance between widgets."
8940
  msgstr ""
8941
 
8942
- #: languages/vue.php:2991
8943
  msgid "Minimum Word Count to Display Multiple Widgets"
8944
  msgstr ""
8945
 
8946
- #: languages/vue.php:2994
8947
  msgid "Choose the minimum word count for a Post to have multiple entries."
8948
  msgstr ""
8949
 
8950
- #: languages/vue.php:2997
8951
  msgid "Pro version is required"
8952
  msgstr ""
8953
 
8954
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
8955
- #: languages/vue.php:3001
8956
  msgid "Automatically add the top 5 Posts from the past 30 days to your Curated list of Posts using Custom Dimensions (Pro version required. %1$sUpgrade now%2$s)."
8957
  msgstr ""
8958
 
8959
- #: languages/vue.php:3004
8960
  msgid "Select posts/search"
8961
  msgstr ""
8962
 
8963
- #: languages/vue.php:3007
8964
  msgid "Oops! No posts found."
8965
  msgstr ""
8966
 
8967
- #: languages/vue.php:3010
8968
  msgid "Search by post title"
8969
  msgstr ""
8970
 
8971
- #: languages/vue.php:3013
8972
  msgid "Can't load posts."
8973
  msgstr ""
8974
 
8975
- #: languages/vue.php:3016
8976
  msgid "Sartorial taxidermy venmo you probably haven't heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu."
8977
  msgstr ""
8978
 
8979
- #: languages/vue.php:3019
8980
  msgid "Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan"
8981
  msgstr ""
8982
 
8983
- #: languages/vue.php:3022
8984
  msgid "Color"
8985
  msgstr ""
8986
 
8987
- #: languages/vue.php:3025
8988
  msgid "Size"
8989
  msgstr ""
8990
 
8991
- #: languages/vue.php:3028
8992
  msgid "Title"
8993
  msgstr ""
8994
 
8995
- #: languages/vue.php:3031
8996
  msgid "Label"
8997
  msgstr ""
8998
 
8999
- #: languages/vue.php:3034
9000
  msgid "Background"
9001
  msgstr ""
9002
 
9003
- #: languages/vue.php:3037
9004
  msgid "Border"
9005
  msgstr ""
9006
 
9007
- #: languages/vue.php:3040
9008
  msgid "Icon"
9009
  msgstr ""
9010
 
9011
- #: languages/vue.php:3043
9012
  #: lite/includes/popular-posts/class-popular-posts-widget-sidebar.php:257
9013
  msgid "Theme Preview"
9014
  msgstr ""
9015
 
9016
- #: languages/vue.php:3046
9017
  msgid "SharedCount API Key"
9018
  msgstr ""
9019
 
9020
- #: languages/vue.php:3049
9021
  msgid "Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing."
9022
  msgstr ""
9023
 
9024
- #: languages/vue.php:3052
9025
  msgid "Start Indexing"
9026
  msgstr ""
9027
 
9028
- #: languages/vue.php:3055
9029
  msgid "%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing."
9030
  msgstr ""
9031
 
9032
- #: languages/vue.php:3058
9033
  msgid "Indexing completed, counts will update automatically every day."
9034
  msgstr ""
9035
 
9036
  #. Translators: Minimum and maximum number that can be used.
9037
- #: languages/vue.php:3062
9038
  msgid "Please enter a value between %1$s and %2$s"
9039
  msgstr ""
9040
 
9041
  #. Translators: The minimum set value.
9042
- #: languages/vue.php:3066
9043
  msgid "Please enter a value higher than %s"
9044
  msgstr ""
9045
 
9046
  #. Translators: The maximum set value.
9047
- #: languages/vue.php:3070
9048
  msgid "Please enter a value lower than %s"
9049
  msgstr ""
9050
 
9051
- #: languages/vue.php:3073
9052
  msgid "Please enter a number"
9053
  msgstr ""
9054
 
9055
- #: languages/vue.php:3076
9056
  msgid "Value has to be a round number"
9057
  msgstr ""
9058
 
9059
- #: languages/vue.php:3079
9060
  msgid "Author/Date"
9061
  msgstr ""
9062
 
9063
- #: languages/vue.php:3091
9064
  msgid "Choose which content you would like displayed in the widget."
9065
  msgstr ""
9066
 
9067
- #: languages/vue.php:3103
9068
  msgid "Comments"
9069
  msgstr ""
9070
 
9071
- #: languages/vue.php:3109
9072
  msgid "Choose how many posts you’d like displayed in the widget."
9073
  msgstr ""
9074
 
9075
  #. Translators: Page number of total pages. 1 & 2 make the first part of the text bold.
9076
- #: languages/vue.php:3113
9077
  msgid "%1$sPage %3$s%2$s of %4$s"
9078
  msgstr ""
9079
 
9080
- #: languages/vue.php:3116
9081
  msgid "Wide"
9082
  msgstr ""
9083
 
9084
- #: languages/vue.php:3119
9085
  msgid "Narrow"
9086
  msgstr ""
9087
 
9088
  #. Translators: Make text green.
9089
- #: languages/vue.php:3123
9090
  msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
9091
  msgstr ""
9092
 
9093
- #: languages/vue.php:3129
9094
  msgid "Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone."
9095
  msgstr ""
9096
 
9097
- #: languages/vue.php:3132
9098
  msgid "Our email summaries feature sends a weekly summary of the most important site analytics information."
9099
  msgstr ""
9100
 
9101
- #: languages/vue.php:3135
9102
  msgid "Usage Tracking"
9103
  msgstr ""
9104
 
9105
- #: languages/vue.php:3138
9106
  msgid "By allowing us to track usage data we can better help you because we know with which WordPress configurations, themes and plugins we should test."
9107
  msgstr ""
9108
 
9109
- #: languages/vue.php:3141
9110
  msgid "Allow usage tracking"
9111
  msgstr ""
9112
 
9113
  #. Translators: Adds a link to the documentation.
9114
- #: languages/vue.php:3145
9115
  msgid "Complete documentation on usage tracking is available %1$shere%2$s."
9116
  msgstr ""
9117
 
9118
- #: languages/vue.php:3148
9119
  msgid "Facebook Instant Articles"
9120
  msgstr ""
9121
 
9122
- #: languages/vue.php:3151
9123
  msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to ExactMetrics Pro."
9124
  msgstr ""
9125
 
9126
- #: languages/vue.php:3154
9127
  msgid "Performance"
9128
  msgstr ""
9129
 
9130
- #: languages/vue.php:3157
9131
  msgid "Adjust the sample rate so you don't exceed Google Analytics' processing limit. Can also be used to enable Google Optimize for A/B testing and personalization."
9132
  msgstr ""
9133
 
9134
- #: languages/vue.php:3160
9135
  msgid "Google AMP"
9136
  msgstr ""
9137
 
9138
- #: languages/vue.php:3163
9139
  msgid "Want to use track users visiting your AMP pages? By upgrading to ExactMetrics Pro, you can enable AMP page tracking."
9140
  msgstr ""
9141
 
9142
- #: languages/vue.php:3166
9143
  msgid "Ads Tracking"
9144
  msgstr ""
9145
 
9146
- #: languages/vue.php:3169
9147
  msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
9148
  msgstr ""
9149
 
9150
- #: languages/vue.php:3172
9151
  msgid "Unlock with %s"
9152
  msgstr ""
9153
 
9154
- #: languages/vue.php:3175
9155
  msgid "Scroll Tracking"
9156
  msgstr ""
9157
 
9158
- #: languages/vue.php:3178
9159
  msgid "Scroll depth tracking in web analytics is one of those things you simply must do, especially if you have a content-heavy site."
9160
  msgstr ""
9161
 
9162
- #: languages/vue.php:3181
9163
  msgid ""
9164
  "The EU Compliance addon allows you to improve compliance with GDPR\n"
9165
  " and other privacy regulations."
9166
  msgstr ""
9167
 
9168
- #: languages/vue.php:3185
9169
  msgid "EU Compliance"
9170
  msgstr ""
9171
 
9172
- #: languages/vue.php:3188
9173
  msgid "Compatibility mode"
9174
  msgstr ""
9175
 
9176
- #: languages/vue.php:3191
9177
  msgid "Enable _gtagTracker Compatibility"
9178
  msgstr ""
9179
 
9180
  #. Translators: Placeholder gets replaced with default GA js function.
9181
- #: languages/vue.php:3195
9182
  msgid "This enables ExactMetrics to work with plugins that use %1$s and don't support %2$s"
9183
  msgstr ""
9184
 
9185
- #: languages/vue.php:3198
9186
  msgid "It's easy to double your traffic and sales when you know exactly how people find and use your website. ExactMetrics Pro shows you the stats that matter!"
9187
  msgstr ""
9188
 
9189
- #: languages/vue.php:3201
9190
  msgid "To unlock more features consider upgrading to PRO."
9191
  msgstr ""
9192
 
9193
- #: languages/vue.php:3204
9194
  msgid "Upgrade to"
9195
  msgstr ""
9196
 
9197
- #: languages/vue.php:3207
9198
  msgid "Export PDF Report"
9199
  msgstr ""
9200
 
9201
- #: languages/vue.php:3210
9202
  msgid "You can export PDF reports only in the PRO version."
9203
  msgstr ""
9204
 
9205
- #: languages/vue.php:3213
9206
  msgid "Display Method"
9207
  msgstr ""
9208
 
9209
- #: languages/vue.php:3216
9210
  msgid "There are two ways to manual include the widget in your posts."
9211
  msgstr ""
9212
 
9213
- #: languages/vue.php:3219
9214
  msgid "Using the Gutenberg Block"
9215
  msgstr ""
9216
 
9217
- #: languages/vue.php:3222
9218
  msgid "Using the Shortcode"
9219
  msgstr ""
9220
 
9221
- #: languages/vue.php:3225
9222
  msgid "Learn how to insert the widget using Gutenberg blocks."
9223
  msgstr ""
9224
 
9225
- #: languages/vue.php:3228
9226
  msgid "Learn how to insert the widget using out Shortcode."
9227
  msgstr ""
9228
 
9229
- #: languages/vue.php:3231
9230
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg"
9231
  msgstr ""
9232
 
9233
- #: languages/vue.php:3234
9234
  msgid "%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page."
9235
  msgstr ""
9236
 
9237
- #: languages/vue.php:3237
9238
  msgid "%1$sStep 2%2$s - Search for “Inline Popular Posts by ExactMetrics”."
9239
  msgstr ""
9240
 
9241
- #: languages/vue.php:3240
9242
  msgid "%1$sStep 3%2$s - Style the widget using the Block Settings sidebar."
9243
  msgstr ""
9244
 
9245
- #: languages/vue.php:3243
9246
  msgid "Shortcode"
9247
  msgstr ""
9248
 
9249
- #: languages/vue.php:3246
9250
  msgid "Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin."
9251
  msgstr ""
9252
 
9253
- #: languages/vue.php:3249
9254
  msgid "Copy Shortcode"
9255
  msgstr ""
9256
 
9257
- #: languages/vue.php:3252
9258
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode"
9259
  msgstr ""
9260
 
9261
- #: languages/vue.php:3255
9262
  msgid "Automatic Placement"
9263
  msgstr ""
9264
 
9265
- #: languages/vue.php:3258
9266
  msgid "Display using Gutenberg Blocks"
9267
  msgstr ""
9268
 
9269
- #: languages/vue.php:3261
9270
  msgid "Embed Options"
9271
  msgstr ""
9272
 
9273
- #: languages/vue.php:3264
9274
  msgid "All Embed Options can be used in conjunction with one another."
9275
  msgstr ""
9276
 
9277
- #: languages/vue.php:3267
9278
  msgid "Using Automatic Embed"
9279
  msgstr ""
9280
 
9281
- #: languages/vue.php:3270
9282
  msgid "Learn how to insert the Popular Posts Widget into your posts and pages using Gutenberg Blocks. To style this widget, use the Gutenberg Block settings."
9283
  msgstr ""
9284
 
9285
- #: languages/vue.php:3273
9286
  msgid "Enabling Automatic Placement will include the Popular Posts Widget after the last paragraph of any and all posts that match your Behavior settings. To style this widget use the Customize Design panel above."
9287
  msgstr ""
9288
 
9289
- #: languages/vue.php:3276
9290
  msgid "Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above."
9291
  msgstr ""
9292
 
9293
- #: languages/vue.php:3279
9294
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg"
9295
  msgstr ""
9296
 
9297
- #: languages/vue.php:3282
9298
  msgid "%1$sStep 2%2$s - Search for “Popular Posts”."
9299
  msgstr ""
9300
 
9301
- #: languages/vue.php:3285
9302
  msgid "%1$sStep 1%2$s - Navigate to your Appearance > Widgets page using the menu on the left side your screen. Must be logged in as Admin."
9303
  msgstr ""
9304
 
9305
- #: languages/vue.php:3288
9306
  msgid "%1$sStep 2%2$s - On the left, under Available Widgets, look for the Popular Posts - ExactMetrics widget and drag it into the desired Sidebar on the right."
9307
  msgstr ""
9308
 
9309
- #: languages/vue.php:3291
9310
  msgid "%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design."
9311
  msgstr ""
9312
 
9313
- #: languages/vue.php:3294
9314
  msgid "Display using a Shortcode"
9315
  msgstr ""
9316
 
9317
- #: languages/vue.php:3297
9318
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode"
9319
  msgstr ""
9320
 
9321
- #: languages/vue.php:3300
9322
  msgid "Enable Automatic Placement"
9323
  msgstr ""
9324
 
9325
- #: languages/vue.php:3303
9326
  msgid "Display in a Sidebar"
9327
  msgstr ""
9328
 
9329
- #: languages/vue.php:3306
9330
  msgid "Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above."
9331
  msgstr ""
9332
 
9333
- #: languages/vue.php:3309
9334
  msgid "Watch Video - How to Add the Popular Posts widget using Widgets"
9335
  msgstr ""
9336
 
9337
  #. Translators: The number of results.
9338
- #: languages/vue.php:3313
9339
  msgid "%s results"
9340
  msgstr ""
9341
 
9342
- #: languages/vue.php:3316
9343
  msgid "Media"
9344
  msgstr ""
9345
 
9346
- #: languages/vue.php:3319
9347
  msgid "Track how your users interact with videos on your website. Upgrade to ExactMetrics Pro."
9348
  msgstr ""
9349
 
9350
- #: languages/vue.php:3322
9351
  msgid "2021 Year in Review"
9352
  msgstr ""
9353
 
9354
- #: languages/vue.php:3325
9355
  msgid "Media- Track how your users interact with videos on your website."
9356
  msgstr ""
9357
 
9358
- #: languages/vue.php:3328
9359
  msgid "Your 2021 Year in Review is still calculating. Please check back later to see how your website performed last year."
9360
  msgstr ""
9361
 
9362
- #: languages/vue.php:3331
9363
  msgid "Your 2021 Analytics Report"
9364
  msgstr ""
9365
 
9366
- #: languages/vue.php:3337
9367
  msgid "January 1, 2021 - December 31, 2021"
9368
  msgstr ""
9369
 
9370
- #: languages/vue.php:3340
9371
  msgid "A Tip for 2022"
9372
  msgstr ""
9373
 
9374
- #: languages/vue.php:3343
9375
  msgid "A Tip For 2022"
9376
  msgstr ""
9377
 
9378
- #: languages/vue.php:3346
9379
  msgid "Here's to an amazing 2022!"
9380
  msgstr ""
9381
 
9382
- #: languages/vue.php:3349
9383
  msgid "Try our other popular WordPress plugins to grow your website in 2022."
9384
  msgstr ""
9385
 
9386
- #: languages/vue.php:3352
9387
  msgid "Become a WordPress expert in 2022. Join our amazing communities and take your website to the next level."
9388
  msgstr ""
9389
 
9390
- #: languages/vue.php:3355
9391
  msgid "Copyright ExactMetrics, 2022"
9392
  msgstr ""
9393
 
9394
  #. Translators: Number of minutes spent on site.
9395
- #: languages/vue.php:3359
9396
  msgid "Each visitor spent an average of %s minutes on your website in 2021."
9397
  msgstr ""
9398
 
9399
  #. Translators: Placeholders are used for making text bold and adding a link.
9400
- #: languages/vue.php:3363
9401
  msgid "%1$sYou're using %2$s Lite%3$s. To unlock all reports, consider %4$supgrading to Pro%5$s."
9402
  msgstr ""
9403
 
9404
- #: languages/vue.php:3366
9405
  msgid "With ExactMetrics Pro, you can easily measure individual affiliate performance inside Google Analytics, no coding needed. Track clicks, revenue, and more."
9406
  msgstr ""
9407
 
9408
- #: languages/vue.php:3369
9409
  msgid "RafflePress"
9410
  msgstr ""
9411
 
9412
- #: languages/vue.php:3372
9413
  msgid "Launch giveaways and raffle campaigns to grow your email lists, increase traffic, and get more social media followers."
9414
  msgstr ""
9415
 
9416
- #: languages/vue.php:3375
9417
  msgid "Constant Contact"
9418
  msgstr ""
9419
 
9420
- #: languages/vue.php:3378
9421
  msgid "Create amazing email marketing campaigns with drag and drop simplicity. Exclusive Offer: Save 20%."
9422
  msgstr ""
9423
 
9424
- #: languages/vue.php:3381
9425
  msgid "SEMRUSH"
9426
  msgstr ""
9427
 
9428
- #: languages/vue.php:3384
9429
  msgid "Perform SEO and content marketing research, track keywords, and much more. Special Offer: First 30 Days Free."
9430
  msgstr ""
9431
 
9432
- #: languages/vue.php:3387
9433
  msgid "Engagement Tools"
9434
  msgstr ""
9435
 
9436
- #: languages/vue.php:3390
9437
  msgid "WPForms"
9438
  msgstr ""
9439
 
9440
- #: languages/vue.php:3393
9441
  msgid "The world’s most popular WordPress form builder, trusted by over 5 million websites. Easily build contact forms, payment forms, and more."
9442
  msgstr ""
9443
 
9444
- #: languages/vue.php:3396
9445
  msgid "OptinMonster"
9446
  msgstr ""
9447
 
9448
- #: languages/vue.php:3399
9449
  msgid "Convert and monetize more of your website traffic with engaging pop-up and gamified tools. Great for all types of websites."
9450
  msgstr ""
9451
 
9452
- #: languages/vue.php:3402
9453
  msgid "Smash Balloon - Facebook"
9454
  msgstr ""
9455
 
9456
- #: languages/vue.php:3405
9457
  msgid "Smash Balloon - Instagram"
9458
  msgstr ""
9459
 
9460
- #: languages/vue.php:3408
9461
  msgid "Quickly add social media feeds from Facebook, Instagram, Twitter, and others to your website, with no coding needed."
9462
  msgstr ""
9463
 
9464
- #: languages/vue.php:3411
9465
  msgid "Popular Posts by ExactMetrics"
9466
  msgstr ""
9467
 
9468
- #: languages/vue.php:3414
9469
  msgid "Increase your visitor engagement by automatically embedding popular and related content from your website."
9470
  msgstr ""
9471
 
9472
- #: languages/vue.php:3417
9473
  msgid "Popular Products by ExactMetrics"
9474
  msgstr ""
9475
 
9476
- #: languages/vue.php:3420
9477
  msgid "Automatically show related products to increase conversion rates and increase cart sizes on your eCommerce website."
9478
  msgstr ""
9479
 
9480
- #: languages/vue.php:3423
9481
  msgid "Revenue Tools"
9482
  msgstr ""
9483
 
9484
- #: languages/vue.php:3426
9485
  msgid "SeedProd"
9486
  msgstr ""
9487
 
9488
- #: languages/vue.php:3429
9489
  msgid "Use the best drag-and-drop landing page builder for WordPress to instantly build coming soon pages, sales pages, opt-in pages, webinar pages, maintenance pages, and more. Includes 100+ free templates."
9490
  msgstr ""
9491
 
9492
- #: languages/vue.php:3432
9493
  msgid "Featured Tools"
9494
  msgstr ""
9495
 
9496
- #: languages/vue.php:3435
9497
  msgid "Easy Affiliate"
9498
  msgstr ""
9499
 
9500
- #: languages/vue.php:3438
9501
  msgid "Launch, grow, and manage an affiliate program, all right from your WordPress dashboard. Works automatically with ExactMetrics."
9502
  msgstr ""
9503
 
9504
- #: languages/vue.php:3441
9505
  msgid "SearchWP"
9506
  msgstr ""
9507
 
9508
- #: languages/vue.php:3444
9509
  msgid "Unlock better search results for your website. Perfect for any information or eCommerce store to help users find exactly what content and products they’re looking for."
9510
  msgstr ""
9511
 
9512
- #: languages/vue.php:3447
9513
  msgid "Easy Digital Downloads"
9514
  msgstr ""
9515
 
9516
- #: languages/vue.php:3450
9517
  msgid "Easily sell digital products like ebooks, plugins, and courses with WordPress. Built-in payment processing, coupons, shopping cart, detailed reporting, and more."
9518
  msgstr ""
9519
 
9520
- #: languages/vue.php:3453
9521
  msgid "MemberPress"
9522
  msgstr ""
9523
 
9524
- #: languages/vue.php:3456
9525
  msgid "Create a membership website. Works automatically with ExactMetrics, no coding needed."
9526
  msgstr ""
9527
 
9528
- #: languages/vue.php:3459
9529
  msgid "Thirsty Affiliates"
9530
  msgstr ""
9531
 
9532
- #: languages/vue.php:3462
9533
  msgid "Manage all your affiliate links with features designed to help make bloggers more money."
9534
  msgstr ""
9535
 
9536
- #: languages/vue.php:3465
9537
  msgid "Upgrade to unlock advanced reporting and features designed to help you get more traffic and make more money from your website. Special Offer: Save 50% today."
9538
  msgstr ""
9539
 
9540
- #: languages/vue.php:3468
9541
  msgid "Advanced Coupons"
9542
  msgstr ""
9543
 
9544
- #: languages/vue.php:3471
9545
  msgid "Create coupons, reward loyal customers, and schedule promotions for your eCommerce store."
9546
  msgstr ""
9547
 
9548
- #: languages/vue.php:3474
9549
  msgid "PrettyLinks"
9550
  msgstr ""
9551
 
9552
- #: languages/vue.php:3477
9553
  msgid "Automatically monetize your website content with affiliate links added automatically to your content."
9554
  msgstr ""
9555
 
9556
- #: languages/vue.php:3480
9557
  msgid "Install Now"
9558
  msgstr ""
9559
 
9560
- #: languages/vue.php:3483
9561
  msgid "Online Marketing Guides & Resources"
9562
  msgstr ""
9563
 
9564
- #: languages/vue.php:3486
9565
  msgid "Read This Guide"
9566
  msgstr ""
9567
 
9568
- #: languages/vue.php:3492
9569
  msgid "Upgrade to unlock eCommerce tracking, Custom Dimensions, Form Tracking, and much more. Special Offer: Save 50% today."
9570
  msgstr ""
9571
 
9572
- #: languages/vue.php:3495
9573
  msgid "Traffic Tools"
9574
  msgstr ""
9575
 
9576
- #: languages/vue.php:3498
9577
  msgid "All in One SEO (AIOSEO)"
9578
  msgstr ""
9579
 
9580
- #: languages/vue.php:3501
9581
  msgid "The best WordPress SEO plugin that works automatically with ExactMetrics."
9582
  msgstr ""
9583
 
9584
- #: languages/vue.php:3504
9585
  msgid "PushEngage"
9586
  msgstr ""
9587
 
9588
- #: languages/vue.php:3507
9589
  msgid "Send push notifications to your visitors to drive more traffic and boost sales."
9590
  msgstr ""
9591
 
9592
- #: languages/vue.php:3510
9593
  msgid "Featured"
9594
  msgstr ""
9595
 
9596
- #: languages/vue.php:3513
9597
  msgid "Traffic"
9598
  msgstr ""
9599
 
9600
- #: languages/vue.php:3516
9601
  msgid "Revenue"
9602
  msgstr ""
9603
 
9604
- #: languages/vue.php:3519
9605
  msgid "Guides & Resources"
9606
  msgstr ""
9607
 
9608
- #: languages/vue.php:3522
9609
  msgid "Media Tracking"
9610
  msgstr ""
9611
 
9612
- #: languages/vue.php:3525
9613
  msgid "Get Started"
9614
  msgstr ""
9615
 
9616
- #: languages/vue.php:3528
9617
  msgid "Privacy Compliance Addon"
9618
  msgstr ""
9619
 
9620
- #: languages/vue.php:3531
9621
  msgid "Help Google Analytics become compliant with internet privacy laws like GDPR, PECR, and CCPA."
9622
  msgstr ""
9623
 
9624
- #: languages/vue.php:3534
9625
  msgid "Get access to advanced reports inside WordPress including search keywords report, real-time analytics dashboard, publishers / eCommerce report, custom dimensions, and more."
9626
  msgstr ""
9627
 
9628
- #: languages/vue.php:3537
9629
  msgid "Instantly enable enhanced eCommerce tracking, so you can measure conversions, sales, and revenue stats. Works with WooCommerce, Easy Digital Downloads, MemberPress, and more."
9630
  msgstr ""
9631
 
9632
- #: languages/vue.php:3540
9633
  msgid "20+ Advanced Tracking"
9634
  msgstr ""
9635
 
9636
- #: languages/vue.php:3543
9637
  msgid "Get access to advanced tracking features like form conversion tracking, author tracking, custom dimensions, scroll tracking, and more."
9638
  msgstr ""
9639
 
9640
- #: languages/vue.php:3546
9641
  msgid "Advanced Growth Tools"
9642
  msgstr ""
9643
 
9644
- #: languages/vue.php:3549
9645
  msgid "Get access to advanced growth tools such as popular posts addon, A/B testing tool, smart URL builder, and more."
9646
  msgstr ""
9647
 
9648
- #: languages/vue.php:3552
9649
  msgid "Track how your users interact with videos on your website."
9650
  msgstr ""
9651
 
9652
- #: languages/vue.php:3555
9653
  msgid "Error Processing"
9654
  msgstr ""
9655
 
9656
- #: languages/vue.php:3558
9657
  msgid "There was an error while processing some features. Please try again or you can skip this process for now"
9658
  msgstr ""
9659
 
9660
- #: languages/vue.php:3561
9661
  msgid "Which website features would you like to enable?"
9662
  msgstr ""
9663
 
9664
- #: languages/vue.php:3564
9665
  msgid "We’ve already selected our recommended features based on your site. "
9666
  msgstr ""
9667
 
9668
- #: languages/vue.php:3567
9669
  msgid "Other Addons"
9670
  msgstr ""
9671
 
9672
- #: languages/vue.php:3570
9673
  msgid "View all ExactMetrics addons"
9674
  msgstr ""
9675
 
9676
- #: languages/vue.php:3573
9677
  msgid "Standard Analytics & Reports"
9678
  msgstr ""
9679
 
9680
- #: languages/vue.php:3576
9681
  msgid "Get the reports and stats that matter right inside your WordPress Dashboard."
9682
  msgstr ""
9683
 
9684
- #: languages/vue.php:3579
9685
  msgid "Helps you see what links your users are clicking on your site."
9686
  msgstr ""
9687
 
9688
- #: languages/vue.php:3582
9689
  msgid "All In One SEO Toolkit"
9690
  msgstr ""
9691
 
9692
- #: languages/vue.php:3585
9693
  msgid "The best WordPress SEO plugin that works with ExactMetrics to boost your rankings."
9694
  msgstr ""
9695
 
9696
- #: languages/vue.php:3588
9697
  msgid "Smart Form Builder by WPForms"
9698
  msgstr ""
9699
 
9700
- #: languages/vue.php:3591
9701
  msgid "The most popular WordPress form plugin, trusted by over 5 million websites. Easily create contact forms, payment forms, surveys and more."
9702
  msgstr ""
9703
 
9704
- #: languages/vue.php:3594
9705
  msgid "Awesome! Tracking and Analytics are All Setup!"
9706
  msgstr ""
9707
 
9708
- #: languages/vue.php:3597
9709
  msgid "ExactMetrics is connected to Google Analytics and data is being collected."
9710
  msgstr ""
9711
 
9712
- #: languages/vue.php:3604
9713
  msgid "Complete Setup without Upgrading"
9714
  msgstr ""
9715
 
9716
- #: languages/vue.php:3607
9717
  msgid "Success"
9718
  msgstr ""
9719
 
9720
- #: languages/vue.php:3610
9721
  msgid "Connected to Google Analytics"
9722
  msgstr ""
9723
 
9724
- #: languages/vue.php:3613
9725
  msgid "Tracking Code Installed"
9726
  msgstr ""
9727
 
9728
- #: languages/vue.php:3616
9729
  msgid "Data Being Collected"
9730
  msgstr ""
9731
 
9732
  #. Translators: Add link to retrieve license from account area.
9733
- #: languages/vue.php:3620
9734
  msgid "Already purchased? Simply enter your license key below to connect with ExactMetrics PRO!"
9735
  msgstr ""
9736
 
9737
- #: languages/vue.php:3623
9738
  msgid "Verify License Key"
9739
  msgstr ""
9740
 
9741
- #: languages/vue.php:3626
9742
  msgid "Upgrade to Unlock These Features"
9743
  msgstr ""
9744
 
9745
- #: languages/vue.php:3629
9746
  msgid "To unlock the selected features, please upgrade to Pro and enter your license key below."
9747
  msgstr ""
9748
 
9749
- #: languages/vue.php:3632
9750
  msgid "%1$sBonus:%2$s Upgrade today and save %3$s50%% on a Pro License!%4$s (auto-applied at checkout)"
9751
  msgstr ""
9752
 
9753
- #: languages/vue.php:3635
9754
  msgid "Verifying License..."
9755
  msgstr ""
9756
 
 
 
 
 
9757
  #: lite/includes/admin/connect.php:42
9758
  msgid "You are not allowed to install plugins."
9759
  msgstr ""
2
  # This file is distributed under the same license as the ExactMetrics Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: ExactMetrics Pro 7.5.0\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/monsterinsights-temp\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2022-03-31T10:50:16+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
+ "X-Generator: WP-CLI 2.6.0\n"
15
  "X-Domain: google-analytics-dashboard-for-wp\n"
16
 
17
  #. Plugin Name of the plugin
18
+ #: languages/vue.php:3481
19
  msgid "ExactMetrics Pro"
20
  msgstr ""
21
 
112
  #: includes/admin/admin.php:34
113
  #: includes/admin/admin.php:42
114
  #: includes/admin/admin.php:222
115
+ #: languages/vue.php:538
116
  msgid "Settings"
117
  msgstr ""
118
 
128
 
129
  #: includes/admin/admin.php:39
130
  #: includes/admin/admin.php:130
131
+ #: languages/vue.php:2299
132
  msgid "Reports"
133
  msgstr ""
134
 
138
 
139
  #: includes/admin/admin.php:51
140
  #: languages/gutenberg.php:83
141
+ #: languages/vue.php:998
142
  msgid "Popular Posts"
143
  msgstr ""
144
 
172
 
173
  #: includes/admin/admin.php:71
174
  #: includes/admin/admin.php:146
175
+ #: languages/vue.php:159
176
  msgid "About Us"
177
  msgstr ""
178
 
191
  #: includes/admin/admin.php:76
192
  #: includes/admin/notifications/notification-upgrade-to-pro-high-traffic.php:41
193
  #: includes/admin/notifications/notification-upgrade-to-pro.php:33
194
+ #: languages/vue.php:1046
195
  msgid "Upgrade to Pro"
196
  msgstr ""
197
 
219
 
220
  #: includes/admin/admin.php:212
221
  #: includes/admin/admin.php:215
222
+ #: languages/vue.php:1022
223
  msgid "Support"
224
  msgstr ""
225
 
226
  #: includes/admin/admin.php:229
227
+ #: includes/admin/notifications/notification-upgrade-eu-traffic.php:61
228
  #: includes/admin/notifications/notification-upgrade-for-custom-dimensions.php:32
229
  #: includes/admin/notifications/notification-upgrade-for-email-summaries.php:32
230
  #: includes/admin/notifications/notification-upgrade-for-events-reporting.php:32
231
  #: includes/admin/notifications/notification-upgrade-for-google-optimize.php:32
232
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:32
233
  #: includes/admin/reports/abstract-report.php:418
234
+ #: languages/vue.php:1154
235
  msgid "Get ExactMetrics Pro"
236
  msgstr ""
237
 
241
  msgstr ""
242
 
243
  #: includes/admin/admin.php:324
244
+ #: languages/vue.php:1145
245
  msgid "Please Setup Website Analytics to See Audience Insights"
246
  msgstr ""
247
 
248
  #: includes/admin/admin.php:325
249
+ #: languages/vue.php:1151
250
  msgid "Connect ExactMetrics and Setup Website Analytics"
251
  msgstr ""
252
 
261
  #: includes/admin/notifications/notification-mobile-device-low-traffic.php:41
262
  #: includes/admin/notifications/notification-returning-visitors.php:43
263
  #: includes/admin/notifications/notification-traffic-dropping.php:43
264
+ #: languages/vue.php:334
265
  msgid "Learn More"
266
  msgstr ""
267
 
268
  #: includes/admin/admin.php:329
269
+ #: languages/vue.php:1148
270
  msgid "ExactMetrics, WordPress analytics plugin, helps you connect your website with Google Analytics, so you can see how people find and use your website. Over 3 million website owners use ExactMetrics to see the stats that matter and grow their business."
271
  msgstr ""
272
 
277
 
278
  #. Translators: Adds a link to the license renewal.
279
  #: includes/admin/admin.php:350
280
+ #: languages/vue.php:477
281
  msgid "Your license key for ExactMetrics has expired. %1$sPlease click here to renew your license key.%2$s"
282
  msgstr ""
283
 
284
  #: includes/admin/admin.php:352
285
+ #: languages/vue.php:480
286
  msgid "Your license key for ExactMetrics has been disabled. Please use a different key."
287
  msgstr ""
288
 
289
  #: includes/admin/admin.php:354
290
+ #: languages/vue.php:483
291
  msgid "Your license key for ExactMetrics is invalid. The key no longer exists or the user associated with the key has been deleted. Please use a different key."
292
  msgstr ""
293
 
345
  msgstr ""
346
 
347
  #: includes/admin/ajax.php:55
348
+ #: includes/admin/routes.php:971
349
  #: lite/includes/admin/onboarding-wizard.php:249
350
  msgid "You are not allowed to install plugins"
351
  msgstr ""
491
  msgstr ""
492
 
493
  #: includes/admin/common.php:951
494
+ #: languages/vue.php:3326
495
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2022!"
496
  msgstr ""
497
 
512
 
513
  #: includes/admin/exclude-page-metabox.php:102
514
  #: languages/gutenberg.php:324
515
+ #: languages/vue.php:3112
516
  msgid "Upgrade"
517
  msgstr ""
518
 
541
 
542
  #: includes/admin/notification-event.php:256
543
  #: includes/admin/routes.php:873
544
+ #: includes/admin/routes.php:1211
545
  msgid "You don't have permission to view ExactMetrics reports."
546
  msgstr ""
547
 
642
  msgid "Traffic from mobile devices is considerably lower on your site compared to desktop devices. This could be an indicator that your site is not optimised for mobile devices.<br><br>Take a look now at %show your site looks%s on mobile and make sure all your content can be accessed correctly."
643
  msgstr ""
644
 
645
+ #: includes/admin/notifications/notification-multiple-gtags.php:39
646
  msgid "Multiple Google Analytics Tags Found"
647
  msgstr ""
648
 
649
+ #: includes/admin/notifications/notification-multiple-gtags.php:40
650
  msgid "ExactMetrics has detected multiple analytics tags on your website. Please disable the other plugin to ensure accurate tracking."
651
  msgstr ""
652
 
695
  msgid "Your website traffic is decreasing and that’s a reason to take action now. Less traffic means less opportunities to make your brand known, make relationships and ultimately sell your service or product. <br><br>Follow the marketing hacks of %sthis article%s to start growing your traffic again."
696
  msgstr ""
697
 
698
+ #: includes/admin/notifications/notification-upgrade-eu-traffic.php:56
699
  msgid "Help Your Site Become GDPR Compliant"
700
  msgstr ""
701
 
702
+ #: includes/admin/notifications/notification-upgrade-eu-traffic.php:57
703
  msgid "Your site is receiving traffic from the EU. Help ensure your site is more compliant with GDPR by upgrading to ExactMetrics Pro and enable our EU Privacy addon."
704
  msgstr ""
705
 
706
  #: includes/admin/notifications/notification-upgrade-for-custom-dimensions.php:26
707
  #: includes/admin/notifications/notification-upgrade-for-events-reporting.php:26
708
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:26
709
+ #: languages/vue.php:1738
710
  #: lite/includes/admin/helpers.php:83
711
  msgid "Upgrade to ExactMetrics Pro"
712
  msgstr ""
742
  #: includes/admin/notifications/notification-upgrade-for-form-conversion.php:31
743
  #: includes/admin/notifications/notification-upgrade-for-search-console.php:32
744
  #: includes/admin/reports/abstract-report.php:415
745
+ #: languages/vue.php:228
746
  msgid "Upgrade Now"
747
  msgstr ""
748
 
919
  msgstr ""
920
 
921
  #: includes/admin/reports/overview.php:34
922
+ #: languages/vue.php:439
923
  msgid "Overview"
924
  msgstr ""
925
 
1044
  msgstr ""
1045
 
1046
  #: includes/admin/routes.php:885
1047
+ #: includes/admin/routes.php:1223
1048
  msgid "You can't view ExactMetrics reports because you are not licensed."
1049
  msgstr ""
1050
 
1051
  #: includes/admin/routes.php:886
1052
+ #: includes/admin/routes.php:1224
1053
  msgid "Add your license"
1054
  msgstr ""
1055
 
1056
  #: includes/admin/routes.php:893
1057
+ #: includes/admin/routes.php:1231
1058
  msgid "You can't view ExactMetrics reports due to license key errors."
1059
  msgstr ""
1060
 
1061
  #: includes/admin/routes.php:901
1062
+ #: includes/admin/routes.php:1239
1063
  msgid "You must authenticate with ExactMetrics before you can view reports."
1064
  msgstr ""
1065
 
1066
  #: includes/admin/routes.php:907
1067
+ #: includes/admin/routes.php:1245
1068
  msgid "Unknown report. Try refreshing and retrying. Contact support if this issue persists."
1069
  msgstr ""
1070
 
1071
+ #: includes/admin/routes.php:959
1072
+ #: includes/admin/routes.php:1293
1073
  msgid "We encountered an error when fetching the report data."
1074
  msgstr ""
1075
 
1076
+ #: includes/admin/routes.php:979
1077
  msgid "Missing plugin name."
1078
  msgstr ""
1079
 
1080
+ #: includes/admin/routes.php:1123
1081
  msgid "Homepage"
1082
  msgstr ""
1083
 
1415
  msgstr ""
1416
 
1417
  #: includes/gutenberg/headline-tool/headline-tool.php:290
1418
+ #: languages/vue.php:544
1419
  msgid "General"
1420
  msgstr ""
1421
 
3645
  msgstr ""
3646
 
3647
  #: includes/helpers.php:385
3648
+ #: includes/helpers.php:1770
3649
  msgid "Canada"
3650
  msgstr ""
3651
 
3652
  #: includes/helpers.php:386
3653
+ #: includes/helpers.php:1815
3654
  msgid "United Kingdom"
3655
  msgstr ""
3656
 
3691
  msgstr ""
3692
 
3693
  #: includes/helpers.php:396
3694
+ #: includes/helpers.php:1763
3695
  msgid "Antigua and Barbuda"
3696
  msgstr ""
3697
 
3708
  msgstr ""
3709
 
3710
  #: includes/helpers.php:400
3711
+ #: includes/helpers.php:1764
3712
  msgid "Australia"
3713
  msgstr ""
3714
 
3733
  msgstr ""
3734
 
3735
  #: includes/helpers.php:406
3736
+ #: includes/helpers.php:1765
3737
  msgid "Barbados"
3738
  msgstr ""
3739
 
3746
  msgstr ""
3747
 
3748
  #: includes/helpers.php:409
3749
+ #: includes/helpers.php:1766
3750
  msgid "Belize"
3751
  msgstr ""
3752
 
3775
  msgstr ""
3776
 
3777
  #: includes/helpers.php:416
3778
+ #: includes/helpers.php:1767
3779
  msgid "Botswana"
3780
  msgstr ""
3781
 
3804
  msgstr ""
3805
 
3806
  #: includes/helpers.php:423
3807
+ #: includes/helpers.php:1768
3808
  msgid "Burundi"
3809
  msgstr ""
3810
 
3813
  msgstr ""
3814
 
3815
  #: includes/helpers.php:425
3816
+ #: includes/helpers.php:1769
3817
  msgid "Cameroon"
3818
  msgstr ""
3819
 
3906
  msgstr ""
3907
 
3908
  #: includes/helpers.php:448
3909
+ #: includes/helpers.php:1771
3910
  msgid "Dominica"
3911
  msgstr ""
3912
 
3955
  msgstr ""
3956
 
3957
  #: includes/helpers.php:460
3958
+ #: includes/helpers.php:1772
3959
  msgid "Fiji"
3960
  msgstr ""
3961
 
3984
  msgstr ""
3985
 
3986
  #: includes/helpers.php:467
3987
+ #: includes/helpers.php:1775
3988
  msgid "Gambia"
3989
  msgstr ""
3990
 
4001
  msgstr ""
4002
 
4003
  #: includes/helpers.php:471
4004
+ #: includes/helpers.php:1776
4005
  msgid "Ghana"
4006
  msgstr ""
4007
 
4014
  msgstr ""
4015
 
4016
  #: includes/helpers.php:474
4017
+ #: includes/helpers.php:1773
4018
  msgid "Grenada"
4019
  msgstr ""
4020
 
4043
  msgstr ""
4044
 
4045
  #: includes/helpers.php:481
4046
+ #: includes/helpers.php:1774
4047
  msgid "Guyana"
4048
  msgstr ""
4049
 
4076
  msgstr ""
4077
 
4078
  #: includes/helpers.php:489
4079
+ #: includes/helpers.php:1778
4080
  msgid "India"
4081
  msgstr ""
4082
 
4093
  msgstr ""
4094
 
4095
  #: includes/helpers.php:493
4096
+ #: includes/helpers.php:1777
4097
  msgid "Ireland"
4098
  msgstr ""
4099
 
4110
  msgstr ""
4111
 
4112
  #: includes/helpers.php:497
4113
+ #: includes/helpers.php:1779
4114
  msgid "Jamaica"
4115
  msgstr ""
4116
 
4131
  msgstr ""
4132
 
4133
  #: includes/helpers.php:502
4134
+ #: includes/helpers.php:1780
4135
  msgid "Kenya"
4136
  msgstr ""
4137
 
4138
  #: includes/helpers.php:503
4139
+ #: includes/helpers.php:1781
4140
  msgid "Kiribati"
4141
  msgstr ""
4142
 
4161
  msgstr ""
4162
 
4163
  #: includes/helpers.php:509
4164
+ #: includes/helpers.php:1782
4165
  msgid "Lesotho"
4166
  msgstr ""
4167
 
4168
  #: includes/helpers.php:510
4169
+ #: includes/helpers.php:1783
4170
  msgid "Liberia"
4171
  msgstr ""
4172
 
4199
  msgstr ""
4200
 
4201
  #: includes/helpers.php:518
4202
+ #: includes/helpers.php:1784
4203
  msgid "Malawi"
4204
  msgstr ""
4205
 
4216
  msgstr ""
4217
 
4218
  #: includes/helpers.php:522
4219
+ #: includes/helpers.php:1785
4220
  msgid "Malta"
4221
  msgstr ""
4222
 
4223
  #: includes/helpers.php:523
4224
+ #: includes/helpers.php:1786
4225
  msgid "Marshall Islands"
4226
  msgstr ""
4227
 
4234
  msgstr ""
4235
 
4236
  #: includes/helpers.php:526
4237
+ #: includes/helpers.php:1787
4238
  msgid "Mauritius"
4239
  msgstr ""
4240
 
4247
  msgstr ""
4248
 
4249
  #: includes/helpers.php:529
4250
+ #: includes/helpers.php:1788
4251
  msgid "Micronesia"
4252
  msgstr ""
4253
 
4284
  msgstr ""
4285
 
4286
  #: includes/helpers.php:538
4287
+ #: includes/helpers.php:1790
4288
  msgid "Namibia"
4289
  msgstr ""
4290
 
4291
  #: includes/helpers.php:539
4292
+ #: includes/helpers.php:1791
4293
  msgid "Nauru"
4294
  msgstr ""
4295
 
4310
  msgstr ""
4311
 
4312
  #: includes/helpers.php:544
4313
+ #: includes/helpers.php:1789
4314
  msgid "New Zealand"
4315
  msgstr ""
4316
 
4323
  msgstr ""
4324
 
4325
  #: includes/helpers.php:547
4326
+ #: includes/helpers.php:1792
4327
  msgid "Nigeria"
4328
  msgstr ""
4329
 
4352
  msgstr ""
4353
 
4354
  #: includes/helpers.php:554
4355
+ #: includes/helpers.php:1793
4356
  msgid "Pakistan"
4357
  msgstr ""
4358
 
4359
  #: includes/helpers.php:555
4360
+ #: includes/helpers.php:1794
4361
  msgid "Palau"
4362
  msgstr ""
4363
 
4370
  msgstr ""
4371
 
4372
  #: includes/helpers.php:558
4373
+ #: includes/helpers.php:1795
4374
  msgid "Papua New Guinea"
4375
  msgstr ""
4376
 
4383
  msgstr ""
4384
 
4385
  #: includes/helpers.php:561
4386
+ #: includes/helpers.php:1796
4387
  msgid "Philippines"
4388
  msgstr ""
4389
 
4424
  msgstr ""
4425
 
4426
  #: includes/helpers.php:571
4427
+ #: includes/helpers.php:1797
4428
  msgid "Rwanda"
4429
  msgstr ""
4430
 
4481
  msgstr ""
4482
 
4483
  #: includes/helpers.php:585
4484
+ #: includes/helpers.php:1804
4485
  msgid "Seychelles"
4486
  msgstr ""
4487
 
4488
  #: includes/helpers.php:586
4489
+ #: includes/helpers.php:1805
4490
  msgid "Sierra Leone"
4491
  msgstr ""
4492
 
4493
  #: includes/helpers.php:587
4494
+ #: includes/helpers.php:1798
4495
  msgid "Singapore"
4496
  msgstr ""
4497
 
4504
  msgstr ""
4505
 
4506
  #: includes/helpers.php:590
4507
+ #: includes/helpers.php:1806
4508
  msgid "Solomon Islands"
4509
  msgstr ""
4510
 
4513
  msgstr ""
4514
 
4515
  #: includes/helpers.php:592
4516
+ #: includes/helpers.php:1807
4517
  msgid "South Africa"
4518
  msgstr ""
4519
 
4526
  msgstr ""
4527
 
4528
  #: includes/helpers.php:595
4529
+ #: includes/helpers.php:1808
4530
  msgid "South Sudan"
4531
  msgstr ""
4532
 
4539
  msgstr ""
4540
 
4541
  #: includes/helpers.php:598
4542
+ #: includes/helpers.php:1809
4543
  msgid "Sudan"
4544
  msgstr ""
4545
 
4552
  msgstr ""
4553
 
4554
  #: includes/helpers.php:601
4555
+ #: includes/helpers.php:1802
4556
  msgid "Swaziland"
4557
  msgstr ""
4558
 
4577
  msgstr ""
4578
 
4579
  #: includes/helpers.php:607
4580
+ #: includes/helpers.php:1812
4581
  msgid "Tanzania"
4582
  msgstr ""
4583
 
4598
  msgstr ""
4599
 
4600
  #: includes/helpers.php:612
4601
+ #: includes/helpers.php:1813
4602
  msgid "Tonga"
4603
  msgstr ""
4604
 
4605
  #: includes/helpers.php:613
4606
+ #: includes/helpers.php:1810
4607
  msgid "Trinidad and Tobago"
4608
  msgstr ""
4609
 
4624
  msgstr ""
4625
 
4626
  #: includes/helpers.php:618
4627
+ #: includes/helpers.php:1814
4628
  msgid "Tuvalu"
4629
  msgstr ""
4630
 
4631
  #: includes/helpers.php:619
4632
+ #: includes/helpers.php:1817
4633
  msgid "Uganda"
4634
  msgstr ""
4635
 
4654
  msgstr ""
4655
 
4656
  #: includes/helpers.php:625
4657
+ #: includes/helpers.php:1818
4658
  msgid "Vanuatu"
4659
  msgstr ""
4660
 
4691
  msgstr ""
4692
 
4693
  #: includes/helpers.php:634
4694
+ #: includes/helpers.php:1819
4695
  msgid "Zambia"
4696
  msgstr ""
4697
 
4698
  #: includes/helpers.php:635
4699
+ #: includes/helpers.php:1820
4700
  msgid "Zimbabwe"
4701
  msgstr ""
4702
 
4714
  msgid "%1$sWe have detected multiple tracking codes%2$s! You should remove non-ExactMetrics ones. If you need help finding them please %3$sread this article%4$s."
4715
  msgstr ""
4716
 
4717
+ #: includes/helpers.php:1799
4718
  msgid "St Kitts and Nevis"
4719
  msgstr ""
4720
 
4721
+ #: includes/helpers.php:1800
4722
  msgid "St Lucia"
4723
  msgstr ""
4724
 
4725
+ #: includes/helpers.php:1801
4726
  msgid "St Vincent and the Grenadines"
4727
  msgstr ""
4728
 
4729
+ #: includes/helpers.php:1803
4730
  msgid "Samoa"
4731
  msgstr ""
4732
 
4733
+ #: includes/helpers.php:1811
4734
  msgid "The Bahamas"
4735
  msgstr ""
4736
 
4737
+ #: includes/helpers.php:1816
4738
  msgid "United States of America"
4739
  msgstr ""
4740
 
4815
  msgstr ""
4816
 
4817
  #: languages/gutenberg.php:77
4818
+ #: languages/vue.php:529
4819
  msgid "Inline Popular Posts"
4820
  msgstr ""
4821
 
4852
  msgstr ""
4853
 
4854
  #: languages/gutenberg.php:107
4855
+ #: languages/vue.php:3068
4856
  msgid "Wide-Layout Options"
4857
  msgstr ""
4858
 
4861
  msgstr ""
4862
 
4863
  #: languages/gutenberg.php:113
4864
+ #: languages/vue.php:3071
4865
  msgid "Adjust the number of columns displayed when the widget is placed in a wide container."
4866
  msgstr ""
4867
 
4868
  #: languages/gutenberg.php:116
4869
+ #: languages/vue.php:3092
4870
  msgid "Post Count"
4871
  msgstr ""
4872
 
4875
  msgstr ""
4876
 
4877
  #: languages/gutenberg.php:122
4878
+ #: languages/vue.php:3074
4879
  msgid "Display Options"
4880
  msgstr ""
4881
 
4888
  msgstr ""
4889
 
4890
  #: languages/gutenberg.php:131
4891
+ #: languages/vue.php:1954
4892
  msgid "Widget Title"
4893
  msgstr ""
4894
 
4897
  msgstr ""
4898
 
4899
  #: languages/gutenberg.php:137
4900
+ #: languages/vue.php:3080
4901
  msgid "Display Author"
4902
  msgstr ""
4903
 
4904
  #: languages/gutenberg.php:140
4905
+ #: languages/vue.php:3083
4906
  msgid "Display Date"
4907
  msgstr ""
4908
 
4909
  #: languages/gutenberg.php:143
4910
+ #: languages/vue.php:3086
4911
  msgid "Display Comments"
4912
  msgstr ""
4913
 
5128
  msgstr ""
5129
 
5130
  #: languages/gutenberg.php:312
5131
+ #: languages/vue.php:986
5132
  msgid "Headline Analyzer"
5133
  msgstr ""
5134
 
5177
  msgid "Loading new report data"
5178
  msgstr ""
5179
 
5180
+ #. Translators: Adds an arrow icon.
5181
  #: languages/vue.php:35
5182
  msgid "Continue %s"
5183
  msgstr ""
5184
 
5185
+ #: languages/vue.php:41
5186
  msgid "Error"
5187
  msgstr ""
5188
 
5189
+ #: languages/vue.php:44
5190
  msgid "Please try again."
5191
  msgstr ""
5192
 
5193
+ #: languages/vue.php:47
5194
  msgid "Unlock the Publishers Report and Focus on the Content that Matters"
5195
  msgstr ""
5196
 
5197
+ #: languages/vue.php:50
5198
  msgid "Stop guessing about what content your visitors are interested in. ExactMetrics Publisher Report shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions."
5199
  msgstr ""
5200
 
5201
+ #: languages/vue.php:53
5202
  msgid "Unlock the Publishers Report and Focus on the Content That Matters"
5203
  msgstr ""
5204
 
5205
+ #: languages/vue.php:56
5206
  msgid "Stop guessing about what content your visitors are interested in. The Publisher Report shows you exactly which content gets the most traffic, so you can analyze and optimize it for higher conversions."
5207
  msgstr ""
5208
 
5209
+ #: languages/vue.php:59
5210
  msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
5211
  msgstr ""
5212
 
5213
+ #: languages/vue.php:62
5214
  msgid "Increase your sales & revenue with insights. ExactMetrics answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value, top products, top referral sources and more."
5215
  msgstr ""
5216
 
5217
+ #: languages/vue.php:65
5218
  msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
5219
  msgstr ""
5220
 
5221
+ #: languages/vue.php:68
5222
  msgid "Decide what data is important using your own custom tracking parameters. The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
5223
  msgstr ""
5224
 
5225
+ #: languages/vue.php:71
5226
  msgid "Unlock the Forms Report and Improve Conversions"
5227
  msgstr ""
5228
 
5229
+ #: languages/vue.php:74
5230
  msgid "Easily track your form views and conversions. The Forms Report allows you to see which forms are performing better and which forms have lower conversion rates so you can optimize using real data."
5231
  msgstr ""
5232
 
5233
+ #: languages/vue.php:78
5234
  msgid "Unlock the Search Console Report and See How People Find Your Website"
5235
  msgstr ""
5236
 
5237
+ #: languages/vue.php:81
5238
  msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
5239
  msgstr ""
5240
 
5241
+ #: languages/vue.php:84
5242
  msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
5243
  msgstr ""
5244
 
5245
+ #: languages/vue.php:87
5246
  msgid "Track the results of your marketing efforts and product launches as-it-happens right from your WordPress site. The Real-Time report allows you to view your traffic sources and visitors activity when you need it."
5247
  msgstr ""
5248
 
5249
+ #: languages/vue.php:90
5250
  msgid "Unlock the Site Speed Report and Improve the Performance of Your Site"
5251
  msgstr ""
5252
 
5253
+ #: languages/vue.php:93
5254
  msgid "See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking"
5255
  msgstr ""
5256
 
5257
+ #: languages/vue.php:96
5258
  msgid "Today"
5259
  msgstr ""
5260
 
5296
  msgid "See the full analytics report!"
5297
  msgstr ""
5298
 
5299
+ #: languages/vue.php:128
5300
  msgid "Overview Report"
5301
  msgstr ""
5302
 
5303
  #. Translators: Current PHP version and recommended PHP version.
5304
+ #: languages/vue.php:132
5305
  msgid "ExactMetrics has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. WordPress stopped supporting your PHP version in April, 2019. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure."
5306
  msgstr ""
5307
 
5308
  #. Translators: Current WordPress version.
5309
+ #: languages/vue.php:136
5310
  msgid "ExactMetrics has detected that your site is running an outdated version of WordPress (%s). ExactMetrics will stop supporting WordPress versions lower than 4.9 in 2020. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
5311
  msgstr ""
5312
 
5313
+ #: languages/vue.php:139
5314
  msgid "Yikes! PHP Update Required"
5315
  msgstr ""
5316
 
5317
  #. Translators: Current PHP version and recommended PHP version.
5318
+ #: languages/vue.php:143
5319
  msgid "ExactMetrics has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure."
5320
  msgstr ""
5321
 
5322
+ #: languages/vue.php:146
5323
  msgid "Learn more about updating PHP"
5324
  msgstr ""
5325
 
5326
+ #: languages/vue.php:149
5327
  msgid "Yikes! WordPress Update Required"
5328
  msgstr ""
5329
 
5330
  #. Translators: Current WordPress version.
5331
+ #: languages/vue.php:153
5332
  msgid "ExactMetrics has detected that your site is running an outdated version of WordPress (%s). Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
5333
  msgstr ""
5334
 
5335
+ #: languages/vue.php:156
5336
  msgid "Learn more about updating WordPress"
5337
  msgstr ""
5338
 
5339
+ #: languages/vue.php:162
5340
  msgid "Getting Started"
5341
  msgstr ""
5342
 
5343
+ #: languages/vue.php:165
5344
  msgid "Lite vs Pro"
5345
  msgstr ""
5346
 
5347
+ #: languages/vue.php:168
5348
  msgid "Success! "
5349
  msgstr ""
5350
 
5351
+ #: languages/vue.php:171
5352
  msgid "You're now using ExactMetrics Pro with all the features."
5353
  msgstr ""
5354
 
5355
  #. Translators: Placeholder gets replaced with an arrow icon.
5356
+ #: languages/vue.php:175
5357
  msgid "Get Started %s"
5358
  msgstr ""
5359
 
5360
  #. Translators: Error status and error text.
5361
+ #: languages/vue.php:179
5362
  msgid "Can't load report data. Error: %1$s, %2$s"
5363
  msgstr ""
5364
 
5365
+ #: languages/vue.php:182
5366
  msgid "Error loading report data"
5367
  msgstr ""
5368
 
5369
+ #. Translators: Makes text bold.
5370
+ #: languages/vue.php:186
5371
  msgid "%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
5372
  msgstr ""
5373
 
5374
+ #. Translators: Makes text bold.
5375
+ #: languages/vue.php:190
5376
  msgid "%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights."
5377
  msgstr ""
5378
 
5379
+ #. Translators: Makes text bold.
5380
+ #: languages/vue.php:194
5381
  msgid "%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more."
5382
  msgstr ""
5383
 
5384
  #. Translators: Makes text bold.
5385
+ #: languages/vue.php:198
5386
  msgid "%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress."
5387
  msgstr ""
5388
 
5389
+ #. Translators: Makes text bold.
5390
+ #: languages/vue.php:202
5391
  msgid "%1$sPage Level Analytics%2$s - Get detailed stats for each post and page, so you can see the most popular posts, pages, and sections of your site."
5392
  msgstr ""
5393
 
5394
+ #. Translators: Makes text bold.
5395
+ #: languages/vue.php:206
5396
  msgid "%1$sAffiliate Link & Ads Tracking%2$s - Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking."
5397
  msgstr ""
5398
 
5399
+ #. Translators: Makes text bold.
5400
+ #: languages/vue.php:210
5401
  msgid "%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically."
5402
  msgstr ""
5403
 
5404
  #. Translators: Makes text bold.
5405
+ #: languages/vue.php:214
5406
  msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click."
5407
  msgstr ""
5408
 
5409
+ #. Translators: Adds link to the features page.
5410
+ #: languages/vue.php:218
5411
  msgid "%1$sSee All Features%2$s"
5412
  msgstr ""
5413
 
5414
+ #: languages/vue.php:221
5415
  msgid "Pro Plan"
5416
  msgstr ""
5417
 
5418
+ #: languages/vue.php:224
5419
  msgid "per year"
5420
  msgstr ""
5421
 
5422
+ #: languages/vue.php:231
5423
  msgid "Upgrade to ExactMetrics Pro Now"
5424
  msgstr ""
5425
 
5426
+ #: languages/vue.php:234
5427
  msgid "This is absolutely, positively, one of the TOP plugins to install on your WP site. There is no better way to quickly gauge traffic for spikes, surges, and consistency. I installed this on over a dozen WordPress installations and counting, thank you for an outstanding app!"
5428
  msgstr ""
5429
 
5430
+ #: languages/vue.php:237
5431
  msgid "Daniel Monaghan - Experienced"
5432
  msgstr ""
5433
 
5434
+ #: languages/vue.php:240
5435
  msgid "Very simple to configure and the results are very clearly displayed. So much easier for clients to view than in their own analytics account! Delighted with it."
5436
  msgstr ""
5437
 
5438
+ #: languages/vue.php:243
5439
  msgid "Naomi Spirit - From This Day"
5440
  msgstr ""
5441
 
5442
+ #: languages/vue.php:246
5443
  msgid "Love this plugin! It’s got powerful customization options, it’s easy to use, there’s good documentation, and if all that’s not enough, ExactMetrics is quick to provide support. Thanks for this wonderful plugin!"
5444
  msgstr ""
5445
 
5446
+ #: languages/vue.php:249
5447
  msgid "Julie Dupuis - Faraway Land Travel"
5448
  msgstr ""
5449
 
5450
+ #: languages/vue.php:252
5451
  msgid "Guides and Documentation:"
5452
  msgstr ""
5453
 
5454
+ #: languages/vue.php:257
5455
  msgid "Upgrade to PRO"
5456
  msgstr ""
5457
 
5458
+ #: languages/vue.php:261
5459
  msgid "eCommerce Tracking"
5460
  msgstr ""
5461
 
5462
+ #: languages/vue.php:264
5463
  msgid "Custom Dimensions"
5464
  msgstr ""
5465
 
5466
+ #: languages/vue.php:267
5467
  msgid "Form Tracking"
5468
  msgstr ""
5469
 
5470
+ #: languages/vue.php:270
5471
  msgid "AMP Support"
5472
  msgstr ""
5473
 
5474
+ #: languages/vue.php:273
5475
  msgid "Author Tracking"
5476
  msgstr ""
5477
 
5478
+ #: languages/vue.php:276
5479
  msgid "EU Compliance Addon"
5480
  msgstr ""
5481
 
5482
+ #: languages/vue.php:279
5483
  msgid "Real Time Report"
5484
  msgstr ""
5485
 
5486
+ #: languages/vue.php:282
5487
  msgid "Google Optimize"
5488
  msgstr ""
5489
 
5490
+ #: languages/vue.php:286
5491
  #: lite/includes/admin/reports/report-queries.php:22
5492
  msgid "Search Console"
5493
  msgstr ""
5494
 
5495
+ #: languages/vue.php:289
5496
  msgid "Custom Date Ranges"
5497
  msgstr ""
5498
 
5499
+ #: languages/vue.php:292
5500
+ #: languages/vue.php:926
5501
  msgid "Getting Started with ExactMetrics"
5502
  msgstr ""
5503
 
5504
+ #: languages/vue.php:295
5505
+ #: languages/vue.php:929
5506
  msgid "ExactMetrics is the easiest analytics solution on the market to get started with, as we walk you through exactly what you need to do, in plain english, using our 3 minute setup wizard."
5507
  msgstr ""
5508
 
5509
+ #: languages/vue.php:298
5510
  msgid "To begin with, we’ll get your site authorized with Google Analytics, so we can start tracking and generating reports for you right away."
5511
  msgstr ""
5512
 
5513
+ #: languages/vue.php:301
5514
  msgid "In no time at all, and after just a few clicks, you'll have setup the most powerful Google Analytics tracking available for WordPress. It's easy to double your traffic and sales when you know exactly how people find and use your website. Let's get started!."
5515
  msgstr ""
5516
 
5517
+ #: languages/vue.php:304
5518
  msgid "Launch the wizard!"
5519
  msgstr ""
5520
 
5521
+ #: languages/vue.php:307
5522
  msgid "Welcome to"
5523
  msgstr ""
5524
 
5525
  #. Translators: Adds a line break.
5526
+ #: languages/vue.php:311
5527
  msgid "Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin"
5528
  msgstr ""
5529
 
5530
+ #. Translators: Makes text bold.
5531
+ #: languages/vue.php:315
5532
  msgid "%1$sExactMetrics%2$s makes it “effortless” to setup Google Analytics in WordPress, the RIGHT Way. You can watch the video tutorial or use our 3 minute setup wizard."
5533
  msgstr ""
5534
 
5535
+ #: languages/vue.php:318
5536
  msgid "ExactMetrics Features & Addons"
5537
  msgstr ""
5538
 
5539
+ #: languages/vue.php:321
5540
  msgid "Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market."
5541
  msgstr ""
5542
 
5543
  #. Translators: Placeholder is replaced with WPForms.
5544
+ #: languages/vue.php:325
5545
  msgid "Recommended Plugin: %s"
5546
  msgstr ""
5547
 
5548
+ #: languages/vue.php:328
5549
  msgid "Install"
5550
  msgstr ""
5551
 
5552
+ #: languages/vue.php:331
5553
  msgid "Activate"
5554
  msgstr ""
5555
 
5556
+ #: languages/vue.php:337
5557
  msgid "ExactMetrics encountered an error loading your report data"
5558
  msgstr ""
5559
 
5560
+ #: languages/vue.php:340
5561
  msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
5562
  msgstr ""
5563
 
5564
+ #: languages/vue.php:343
5565
+ #: languages/vue.php:1851
5566
  msgid "Reconnect ExactMetrics"
5567
  msgstr ""
5568
 
5569
+ #: languages/vue.php:346
5570
  msgid "Re-Authenticating"
5571
  msgstr ""
5572
 
5573
+ #: languages/vue.php:351
5574
  msgid "Ok"
5575
  msgstr ""
5576
 
5577
+ #: languages/vue.php:354
5578
+ #: languages/vue.php:865
5579
  msgid "ExactMetrics Addons"
5580
  msgstr ""
5581
 
5582
+ #: languages/vue.php:357
5583
  msgid "Search Addons"
5584
  msgstr ""
5585
 
5586
+ #: languages/vue.php:360
5587
  msgid "Save Changes"
5588
  msgstr ""
5589
 
5590
+ #: languages/vue.php:363
5591
  msgid "Exit Setup"
5592
  msgstr ""
5593
 
5594
+ #: languages/vue.php:366
5595
  msgid "Time to Purchase"
5596
  msgstr ""
5597
 
5598
+ #: languages/vue.php:369
5599
  msgid "This list shows how many days from first visit it took users to purchase products from your site."
5600
  msgstr ""
5601
 
5602
+ #: languages/vue.php:372
5603
  msgid "Sessions to Purchase"
5604
  msgstr ""
5605
 
5606
+ #: languages/vue.php:375
5607
  msgid "This list shows the number of sessions it took users before they purchased a product from your website."
5608
  msgstr ""
5609
 
5610
+ #: languages/vue.php:378
5611
  msgid "New Customers"
5612
  msgstr ""
5613
 
5614
+ #: languages/vue.php:381
5615
  msgid "This list shows the percentage of new customers who purchased a product from your website."
5616
  msgstr ""
5617
 
5618
+ #: languages/vue.php:384
5619
  msgid "Abandoned Checkouts"
5620
  msgstr ""
5621
 
5622
+ #: languages/vue.php:387
5623
  msgid "This list shows the percentage of carts that never went through the checkout process."
5624
  msgstr ""
5625
 
5626
+ #: languages/vue.php:390
5627
  msgid "Top Posts/Pages"
5628
  msgstr ""
5629
 
5630
+ #: languages/vue.php:393
5631
  msgid "This list shows the most viewed posts and pages on your website."
5632
  msgstr ""
5633
 
5634
+ #: languages/vue.php:396
5635
  msgid "New vs. Returning Visitors"
5636
  msgstr ""
5637
 
5638
+ #: languages/vue.php:399
5639
  msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
5640
  msgstr ""
5641
 
5642
+ #: languages/vue.php:402
5643
  msgid "Device Breakdown"
5644
  msgstr ""
5645
 
5646
+ #: languages/vue.php:405
5647
  msgid "This graph shows what percent of your visitor sessions are done using a traditional computer or laptop, tablet or mobile device to view your site."
5648
  msgstr ""
5649
 
5650
+ #: languages/vue.php:408
5651
  msgid "Top Landing Pages"
5652
  msgstr ""
5653
 
5654
+ #: languages/vue.php:411
5655
  msgid "This list shows the top pages users first land on when visiting your website."
5656
  msgstr ""
5657
 
5658
+ #: languages/vue.php:414
5659
  msgid "Top Exit Pages"
5660
  msgstr ""
5661
 
5662
+ #: languages/vue.php:417
5663
  msgid "This list shows the top pages users exit your website from."
5664
  msgstr ""
5665
 
5666
+ #: languages/vue.php:420
5667
  msgid "Top Outbound Links"
5668
  msgstr ""
5669
 
5670
+ #: languages/vue.php:423
5671
  msgid "This list shows the top links clicked on your website that go to another website."
5672
  msgstr ""
5673
 
5674
+ #: languages/vue.php:426
5675
  msgid "Top Affiliate Links"
5676
  msgstr ""
5677
 
5678
+ #: languages/vue.php:429
5679
  msgid "This list shows the top affiliate links your visitors clicked on."
5680
  msgstr ""
5681
 
5682
+ #: languages/vue.php:432
5683
  msgid "Top Download Links"
5684
  msgstr ""
5685
 
5686
+ #: languages/vue.php:435
5687
  msgid "This list shows the download links your visitors clicked the most."
5688
  msgstr ""
5689
 
5690
+ #: languages/vue.php:442
5691
  msgid "Top Products"
5692
  msgstr ""
5693
 
5694
+ #: languages/vue.php:445
5695
  msgid "This list shows the top selling products on your website."
5696
  msgstr ""
5697
 
5698
+ #: languages/vue.php:448
5699
  msgid "Top Conversion Sources"
5700
  msgstr ""
5701
 
5702
+ #: languages/vue.php:451
5703
  msgid "This list shows the top referral websites in terms of product revenue."
5704
  msgstr ""
5705
 
5706
+ #: languages/vue.php:454
5707
  msgid "Total Add/Remove"
5708
  msgstr ""
5709
 
5710
+ #: languages/vue.php:457
5711
  msgid "Analytics"
5712
  msgstr ""
5713
 
5714
  #. Translators: Adds an arrow icon.
5715
+ #: languages/vue.php:461
5716
  msgid "View All Reports %s"
5717
  msgstr ""
5718
 
5719
+ #: languages/vue.php:464
5720
  msgid "You must connect with ExactMetrics before you can view reports."
5721
  msgstr ""
5722
 
5723
+ #: languages/vue.php:467
5724
  msgid "ExactMetrics makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
5725
  msgstr ""
5726
 
5727
+ #: languages/vue.php:470
5728
  msgid "Launch Setup Wizard"
5729
  msgstr ""
5730
 
5731
+ #: languages/vue.php:473
5732
  msgid "Please ask your webmaster to connect ExactMetrics to Google Analytics."
5733
  msgstr ""
5734
 
5735
+ #: languages/vue.php:486
5736
  msgid "See Quick Links"
5737
  msgstr ""
5738
 
5739
+ #: languages/vue.php:489
5740
  msgid "Suggest a Feature"
5741
  msgstr ""
5742
 
5743
+ #: languages/vue.php:492
5744
  msgid "Join Our Community"
5745
  msgstr ""
5746
 
5747
+ #: languages/vue.php:495
5748
  msgid "Support & Docs"
5749
  msgstr ""
5750
 
5751
+ #: languages/vue.php:498
5752
  msgid "Upgrade to Pro &#187;"
5753
  msgstr ""
5754
 
5755
+ #: languages/vue.php:501
5756
  #: lite/includes/admin/reports/report-publisher.php:22
5757
  msgid "Publishers"
5758
  msgstr ""
5759
 
5760
+ #: languages/vue.php:504
5761
  #: lite/includes/admin/reports/report-ecommerce.php:22
5762
  msgid "eCommerce"
5763
  msgstr ""
5764
 
5765
+ #: languages/vue.php:507
5766
  msgid "Dimensions Report"
5767
  msgstr ""
5768
 
5769
+ #: languages/vue.php:510
5770
  #: lite/includes/admin/reports/report-forms.php:22
5771
  msgid "Forms"
5772
  msgstr ""
5773
 
5774
+ #: languages/vue.php:513
5775
  msgid "Real-Time"
5776
  msgstr ""
5777
 
5778
+ #: languages/vue.php:516
5779
  msgid "Site Speed Report"
5780
  msgstr ""
5781
 
5782
+ #: languages/vue.php:520
5783
  msgid "2020 Year in Review"
5784
  msgstr ""
5785
 
5786
+ #: languages/vue.php:523
5787
  msgid "Import Export"
5788
  msgstr ""
5789
 
5790
+ #: languages/vue.php:526
5791
  msgid "PrettyLinks Integration"
5792
  msgstr ""
5793
 
5794
+ #: languages/vue.php:532
5795
  msgid "Popular Posts Widget"
5796
  msgstr ""
5797
 
5798
+ #: languages/vue.php:535
5799
  msgid "Popular Products"
5800
  msgstr ""
5801
 
5802
+ #: languages/vue.php:541
5803
  msgid "Sub menu item for WooCommerce Analytics"
5804
  msgstr ""
5805
 
5806
+ #: languages/vue.php:547
5807
  msgid "Engagement"
5808
  msgstr ""
5809
 
5810
+ #: languages/vue.php:550
5811
  msgid "Publisher"
5812
  msgstr ""
5813
 
5814
+ #: languages/vue.php:553
5815
  msgid "Conversions"
5816
  msgstr ""
5817
 
5818
+ #: languages/vue.php:556
5819
  msgid "Advanced"
5820
  msgstr ""
5821
 
5822
+ #: languages/vue.php:559
5823
  msgid "URL Builder"
5824
  msgstr ""
5825
 
5826
  #. Translators: Adds a link to documentation.
5827
+ #: languages/vue.php:563
5828
  msgid "In order for the ExactMetrics Google AMP addon to work properly, please ask your webmaster to install the WordPress AMP plugin by Automattic. %1$sLearn More%2$s"
5829
  msgstr ""
5830
 
5831
  #. Translators: Adds link to activate/install plugin and documentation.
5832
+ #: languages/vue.php:567
5833
  msgid "In order for the ExactMetrics Google AMP addon to work properly, you need to install the WordPress AMP plugin by Automattic. %1$s%2$s Plugin%3$s | %4$sLearn More%5$s"
5834
  msgstr ""
5835
 
5836
  #. Translators: Adds a link to documentation.
5837
+ #: languages/vue.php:571
5838
  msgid "In order for the ExactMetrics Instant Articles addon to work properly, please ask your webmaster to install the Instant Articles for WP plugin by Automattic version 3.3.5 or newer. %1$sLearn More%2$s"
5839
  msgstr ""
5840
 
5841
  #. Translators: Adds link to activate/install plugin and documentation.
5842
+ #: languages/vue.php:575
5843
  msgid "In order for the ExactMetrics Instant Articles addon to work properly, you need to install the Instant Articles for WP plugin by Automattic version 3.3.5 or newer. %1$s%2$s Plugin%3$s | %4$sLearn More%5$s"
5844
  msgstr ""
5845
 
5846
+ #: languages/vue.php:578
5847
  msgid "Installing Addon"
5848
  msgstr ""
5849
 
5850
+ #: languages/vue.php:581
5851
  msgid "Activating Addon"
5852
  msgstr ""
5853
 
5854
+ #: languages/vue.php:584
5855
  msgid "Addon Activated"
5856
  msgstr ""
5857
 
5858
+ #: languages/vue.php:587
5859
  msgid "Loading report data"
5860
  msgstr ""
5861
 
5862
+ #: languages/vue.php:590
5863
  msgid "Please activate manually"
5864
  msgstr ""
5865
 
5866
  #. Translators: Adds the error status and status text.
5867
+ #: languages/vue.php:594
5868
  msgid "Error: %1$s, %2$s"
5869
  msgstr ""
5870
 
5871
+ #: languages/vue.php:597
5872
  msgid "Error Activating Addon"
5873
  msgstr ""
5874
 
5875
+ #: languages/vue.php:600
5876
  #: lite/includes/admin/wp-site-health.php:372
5877
  #: lite/includes/admin/wp-site-health.php:398
5878
  #: lite/includes/admin/wp-site-health.php:425
5879
  msgid "View Addons"
5880
  msgstr ""
5881
 
5882
+ #: languages/vue.php:604
5883
  msgid "Dismiss"
5884
  msgstr ""
5885
 
5886
+ #: languages/vue.php:607
5887
  msgid "Redirecting"
5888
  msgstr ""
5889
 
5890
+ #: languages/vue.php:610
5891
  msgid "Please wait"
5892
  msgstr ""
5893
 
5894
+ #: languages/vue.php:614
5895
  msgid "activate"
5896
  msgstr ""
5897
 
5898
+ #: languages/vue.php:618
5899
  msgid "install"
5900
  msgstr ""
5901
 
5902
+ #: languages/vue.php:622
5903
  msgid "Visit addons page"
5904
  msgstr ""
5905
 
5906
+ #: languages/vue.php:625
5907
  msgid "Report Unavailable"
5908
  msgstr ""
5909
 
5910
  #. Translators: Install/Activate the addon.
5911
+ #: languages/vue.php:629
5912
  msgid "%s Addon"
5913
  msgstr ""
5914
 
5915
+ #: languages/vue.php:632
5916
  msgid "Go Back To Reports"
5917
  msgstr ""
5918
 
5919
+ #: languages/vue.php:635
5920
  msgid "Enable Enhanced eCommerce"
5921
  msgstr ""
5922
 
5923
  #. Translators: Placeholders are replaced with the current step number out of the total number of steps.
5924
+ #: languages/vue.php:639
5925
  msgid "Step %1$s of %2$s"
5926
  msgstr ""
5927
 
5928
+ #: languages/vue.php:642
5929
  msgid "Go back"
5930
  msgstr ""
5931
 
5932
+ #: languages/vue.php:645
5933
  msgid "Welcome to ExactMetrics!"
5934
  msgstr ""
5935
 
5936
+ #: languages/vue.php:648
5937
  msgid "Let's get you set up."
5938
  msgstr ""
5939
 
5940
+ #: languages/vue.php:651
5941
  msgid "Save and Continue"
5942
  msgstr ""
5943
 
5944
+ #: languages/vue.php:654
5945
  msgid "Which category best describes your website?"
5946
  msgstr ""
5947
 
5948
+ #: languages/vue.php:657
5949
  msgid "We will recommend the optimal settings for ExactMetrics based on your choice."
5950
  msgstr ""
5951
 
5952
+ #: languages/vue.php:660
5953
  msgid "Business Website"
5954
  msgstr ""
5955
 
5956
  #. Translators: Make text bold.
5957
+ #: languages/vue.php:664
5958
  msgid "Publisher %1$s(Blog)%2$s"
5959
  msgstr ""
5960
 
5961
+ #: languages/vue.php:667
5962
  msgid "Ecommerce"
5963
  msgstr ""
5964
 
5965
+ #: languages/vue.php:670
5966
  msgid "Connect ExactMetrics to Your Website"
5967
  msgstr ""
5968
 
5969
+ #: languages/vue.php:673
5970
  msgid "ExactMetrics connects Google Analytics to WordPress and shows you stats that matter."
5971
  msgstr ""
5972
 
5973
+ #: languages/vue.php:676
5974
  msgid "Connect Google Analytics + WordPress"
5975
  msgstr ""
5976
 
5977
+ #: languages/vue.php:679
5978
  msgid "You will be taken to the ExactMetrics website where you'll need to connect your Analytics account."
5979
  msgstr ""
5980
 
5981
+ #: languages/vue.php:682
5982
  msgid "Whoops, something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually."
5983
  msgstr ""
5984
 
5985
+ #: languages/vue.php:685
5986
  msgid "Manually enter your UA code"
5987
  msgstr ""
5988
 
5989
+ #: languages/vue.php:688
5990
  msgid "Warning: If you use a manual UA code, you won't be able to use any of the reporting and some of the tracking features. Your UA code should look like UA-XXXXXX-XX where the X's are numbers."
5991
  msgstr ""
5992
 
5993
+ #: languages/vue.php:691
5994
  msgid "UA code can't be empty"
5995
  msgstr ""
5996
 
5997
+ #: languages/vue.php:694
5998
  msgid "Saving UA code..."
5999
  msgstr ""
6000
 
6001
+ #: languages/vue.php:697
6002
  msgid "ExactMetrics Recommends WPForms"
6003
  msgstr ""
6004
 
6005
+ #: languages/vue.php:700
6006
  msgid "Built by the folks behind ExactMetrics, WPForms is the most beginner friendly form plugin in the market."
6007
  msgstr ""
6008
 
6009
+ #: languages/vue.php:703
6010
  msgid "Used on over 4,000,000 websites!"
6011
  msgstr ""
6012
 
6013
+ #: languages/vue.php:706
6014
  msgid "WPForms allow you to create beautiful contact forms, subscription forms, payment forms, and other types of forms for your site in minutes, not hours!"
6015
  msgstr ""
6016
 
6017
+ #: languages/vue.php:709
6018
  msgid "Skip this Step"
6019
  msgstr ""
6020
 
6021
+ #: languages/vue.php:712
6022
  msgid "Continue & Install WPForms"
6023
  msgstr ""
6024
 
6025
+ #: languages/vue.php:715
6026
  msgid "Installing..."
6027
  msgstr ""
6028
 
6029
+ #: languages/vue.php:718
6030
  msgid "Recommended Settings"
6031
  msgstr ""
6032
 
6033
+ #: languages/vue.php:721
6034
  msgid "ExactMetrics recommends the following settings based on your configuration."
6035
  msgstr ""
6036
 
6037
+ #: languages/vue.php:724
6038
  msgid "Events Tracking"
6039
  msgstr ""
6040
 
6041
+ #: languages/vue.php:727
6042
  msgid "Must have for all click tracking on site."
6043
  msgstr ""
6044
 
6045
+ #: languages/vue.php:730
6046
  msgid "ExactMetrics uses an advanced system to automatically detect all outbound links, download links, affiliate links, telephone links, mail links, and more automatically. We do all the work for you so you don't have to write any code."
6047
  msgstr ""
6048
 
6049
+ #: languages/vue.php:734
6050
  msgid "Enhanced Link Attribution"
6051
  msgstr ""
6052
 
6053
+ #: languages/vue.php:737
6054
  msgid "Improves the accuracy of your In-Page Analytics."
6055
  msgstr ""
6056
 
6057
+ #: languages/vue.php:740
6058
  msgid "ExactMetrics will automatically help Google determine which links are unique and where they are on your site so that your In-Page Analytics reporting will be more accurate."
6059
  msgstr ""
6060
 
6061
+ #: languages/vue.php:743
6062
  msgid "Install Updates Automatically"
6063
  msgstr ""
6064
 
6065
+ #: languages/vue.php:746
6066
  msgid "Get the latest features, bug fixes, and security updates as they are released."
6067
  msgstr ""
6068
 
6069
+ #: languages/vue.php:749
6070
  msgid "To ensure you get the latest bug fixes and security updates and avoid needing to spend time logging into your WordPress site to update ExactMetrics, we offer the ability to automatically have ExactMetrics update itself."
6071
  msgstr ""
6072
 
6073
+ #: languages/vue.php:752
6074
  msgid "File Download Tracking"
6075
  msgstr ""
6076
 
6077
+ #: languages/vue.php:755
6078
  msgid "Helps you see file downloads data."
6079
  msgstr ""
6080
 
6081
+ #: languages/vue.php:758
6082
  msgid "ExactMetrics will automatically track downloads of common file types from links you have inserted onto your website. For example: want to know how many of your site's visitors have downloaded a PDF or other file you offer your visitors to download on your site? ExactMetrics makes this both easy, and code-free! You can customize the file types to track at any time from our settings panel."
6083
  msgstr ""
6084
 
6085
  #. Translators: Example path (/go/).
6086
+ #: languages/vue.php:762
6087
  msgid "Path (example: %s)"
6088
  msgstr ""
6089
 
6090
+ #: languages/vue.php:765
6091
  msgid "Path has to start with a / and have no spaces"
6092
  msgstr ""
6093
 
6094
  #. Translators: Example label (aff).
6095
+ #: languages/vue.php:769
6096
  msgid "Label (example: %s)"
6097
  msgstr ""
6098
 
6099
+ #: languages/vue.php:772
6100
  msgid "Label can't contain any spaces"
6101
  msgstr ""
6102
 
6103
+ #: languages/vue.php:775
6104
  msgid "Helps you increase affiliate revenue."
6105
  msgstr ""
6106
 
6107
+ #: languages/vue.php:778
6108
  msgid "ExactMetrics will automatically help you track affiliate links that use internal looking urls like example.com/go/ or example.com/refer/. You can add custom affiliate patterns on our settings panel when you finish the onboarding wizard."
6109
  msgstr ""
6110
 
6111
+ #: languages/vue.php:781
6112
  msgid "Affiliate Link Tracking"
6113
  msgstr ""
6114
 
6115
+ #: languages/vue.php:784
6116
  msgid "Who Can See Reports"
6117
  msgstr ""
6118
 
6119
+ #: languages/vue.php:787
6120
  msgid "These user roles will be able to access ExactMetrics' reports in the WordPress admin area."
6121
  msgstr ""
6122
 
6123
+ #: languages/vue.php:790
6124
  msgid "Users that have at least one of these roles will be able to view the reports, along with any user with the manage_options capability."
6125
  msgstr ""
6126
 
6127
+ #: languages/vue.php:793
6128
  msgid "Save and continue"
6129
  msgstr ""
6130
 
6131
+ #: languages/vue.php:796
6132
  msgid "Events Tracking is enabled the moment you set up ExactMetrics"
6133
  msgstr ""
6134
 
6135
+ #: languages/vue.php:799
6136
  msgid "Enhanced Link Attribution is enabled the moment you set up ExactMetrics"
6137
  msgstr ""
6138
 
6139
+ #: languages/vue.php:802
6140
  msgid "+ Add Role"
6141
  msgstr ""
6142
 
6143
  #. Translators: Placeholders are used for making text bold and adding a link.
6144
+ #: languages/vue.php:806
6145
  msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
6146
  msgstr ""
6147
 
6148
+ #: languages/vue.php:809
6149
  #: lite/includes/admin/reports/report-dimensions.php:22
6150
  msgid "Dimensions"
6151
  msgstr ""
6152
 
6153
+ #: languages/vue.php:812
6154
  msgid "Site Speed"
6155
  msgstr ""
6156
 
6157
+ #: languages/vue.php:815
6158
  msgid "License Key"
6159
  msgstr ""
6160
 
6161
  #. Translators: Add link to retrieve license key from account.
6162
+ #: languages/vue.php:819
6163
  msgid "Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
6164
  msgstr ""
6165
 
6166
+ #: languages/vue.php:822
6167
  msgid "Google Authentication"
6168
  msgstr ""
6169
 
6170
+ #: languages/vue.php:825
6171
  msgid "Miscellaneous"
6172
  msgstr ""
6173
 
6174
+ #: languages/vue.php:828
6175
  msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
6176
  msgstr ""
6177
 
6178
+ #: languages/vue.php:831
6179
  msgid "Hide Announcements"
6180
  msgstr ""
6181
 
6182
+ #: languages/vue.php:834
6183
  msgid "You're using ExactMetrics Lite – no license needed. Enjoy!"
6184
  msgstr ""
6185
 
6186
+ #. Translators: Add link to upgrade.
6187
+ #: languages/vue.php:838
6188
  msgid "To unlock more features consider %1$supgrading to PRO%2$s."
6189
  msgstr ""
6190
 
6191
+ #: languages/vue.php:841
6192
  msgid "Receive 50% off automatically applied at the checkout!"
6193
  msgstr ""
6194
 
6195
+ #: languages/vue.php:844
6196
  msgid "See all features"
6197
  msgstr ""
6198
 
6199
+ #: languages/vue.php:847
6200
  msgid "Setup Wizard"
6201
  msgstr ""
6202
 
6203
+ #: languages/vue.php:850
6204
  msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
6205
  msgstr ""
6206
 
6207
+ #: languages/vue.php:853
6208
  msgid "Relaunch Setup Wizard"
6209
  msgstr ""
6210
 
6211
+ #: languages/vue.php:856
6212
  msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
6213
  msgstr ""
6214
 
6215
+ #: languages/vue.php:859
6216
  msgid "No addons found."
6217
  msgstr ""
6218
 
6219
+ #: languages/vue.php:862
6220
  msgid "Refresh Addons"
6221
  msgstr ""
6222
 
6223
  #. Translators: Adds a line break.
6224
+ #: languages/vue.php:869
6225
  msgid "Upgrade to Pro to unlock addons and other great features."
6226
  msgstr ""
6227
 
6228
+ #: languages/vue.php:872
6229
  msgid "As a valued ExactMetrics Lite user you receive 50% off, automaticaly applied at checkout!"
6230
  msgstr ""
6231
 
6232
+ #: languages/vue.php:875
6233
  msgid "Refreshing Addons"
6234
  msgstr ""
6235
 
6236
+ #: languages/vue.php:878
6237
  msgid "Get ExactMetrics Pro Today and Unlock all the Powerful Features"
6238
  msgstr ""
6239
 
6240
  #. Translators: Placeholders make the text green.
6241
+ #: languages/vue.php:882
6242
  msgid "Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
6243
  msgstr ""
6244
 
6245
+ #: languages/vue.php:885
6246
  msgid "How to Connect to Google Analytics"
6247
  msgstr ""
6248
 
6249
+ #: languages/vue.php:888
6250
  msgid "After you install ExactMetrics, you’ll need to connect your WordPress site with your Google Analytics account. ExactMetrics makes the process easy, with no coding required."
6251
  msgstr ""
6252
 
6253
+ #: languages/vue.php:891
6254
  msgid "Guide and Checklist for Advanced Insights"
6255
  msgstr ""
6256
 
6257
+ #: languages/vue.php:894
6258
  msgid "Our goal is to make it as easy as possible for you to measure and track your stats so you can grow your business. This easy-to-follow guide and checklist will get you set up with ExactMetrics’ advanced tracking."
6259
  msgstr ""
6260
 
6261
+ #: languages/vue.php:897
6262
  msgid "GDPR Guide"
6263
  msgstr ""
6264
 
6265
+ #: languages/vue.php:900
6266
  msgid "Compliance with European data laws including GDPR can be confusing and time-consuming. In order to help ExactMetrics users comply with these laws, we’ve created an addon that automates a lot of the necessary configuration changes for you. "
6267
  msgstr ""
6268
 
6269
+ #: languages/vue.php:903
6270
  msgid "How to Install and Activate ExactMetrics Addons"
6271
  msgstr ""
6272
 
6273
+ #: languages/vue.php:906
6274
  msgid "The process for installing and activating addons is quick and easy after you install the ExactMetrics plugin. In this guide we’ll walk you through the process, step by step."
6275
  msgstr ""
6276
 
6277
+ #: languages/vue.php:909
6278
  msgid "Enabling eCommerce Tracking and Reports"
6279
  msgstr ""
6280
 
6281
+ #: languages/vue.php:912
6282
  msgid "Want to track your eCommerce sales data for your WooCommerce, MemberPress, or Easy Digital Downloads store with ExactMetrics? In this guide, we’ll show you how to enable eCommerce tracking in Google Analytics in just a few clicks."
6283
  msgstr ""
6284
 
6285
+ #: languages/vue.php:915
6286
  msgid "Read Documentation"
6287
  msgstr ""
6288
 
6289
  #. Translators: Makes the text bold.
6290
+ #: languages/vue.php:919
6291
  msgid "%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress."
6292
  msgstr ""
6293
 
6294
  #. Translators: Makes the text bold.
6295
+ #: languages/vue.php:923
6296
  msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post type, users, and other events with 1-click."
6297
  msgstr ""
6298
 
6299
+ #: languages/vue.php:932
6300
  msgid "One-click Complete eCommerce tracking"
6301
  msgstr ""
6302
 
6303
+ #: languages/vue.php:935
6304
  msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
6305
  msgstr ""
6306
 
6307
+ #: languages/vue.php:938
6308
  msgid "Forms Tracking"
6309
  msgstr ""
6310
 
6311
+ #: languages/vue.php:941
6312
  msgid "One-click Form Events Tracking"
6313
  msgstr ""
6314
 
6315
+ #: languages/vue.php:944
6316
  msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
6317
  msgstr ""
6318
 
6319
+ #: languages/vue.php:947
6320
  msgid "WordPress Admin Area Reports"
6321
  msgstr ""
6322
 
6323
+ #: languages/vue.php:950
6324
  msgid "Standard Reports"
6325
  msgstr ""
6326
 
6327
+ #: languages/vue.php:953
6328
  msgid "Overview Reports for the last 30 days."
6329
  msgstr ""
6330
 
6331
+ #: languages/vue.php:956
6332
  msgid "Advanced Reports"
6333
  msgstr ""
6334
 
6335
+ #: languages/vue.php:959
6336
  msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
6337
  msgstr ""
6338
 
6339
+ #: languages/vue.php:962
6340
  msgid "Dashboard Widget"
6341
  msgstr ""
6342
 
6343
+ #: languages/vue.php:965
6344
  msgid "Basic Widget"
6345
  msgstr ""
6346
 
6347
+ #: languages/vue.php:968
6348
  msgid "Overview Report Synopsis"
6349
  msgstr ""
6350
 
6351
+ #: languages/vue.php:971
6352
  msgid "Advanced Dashboard Widget"
6353
  msgstr ""
6354
 
6355
+ #: languages/vue.php:974
6356
  msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
6357
  msgstr ""
6358
 
6359
+ #: languages/vue.php:977
6360
  msgid "Publisher Reports"
6361
  msgstr ""
6362
 
6363
+ #: languages/vue.php:980
6364
  msgid "Advanced Publisher Reports & Tracking"
6365
  msgstr ""
6366
 
6367
+ #: languages/vue.php:983
6368
  msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
6369
  msgstr ""
6370
 
6371
+ #: languages/vue.php:989
6372
  msgid "Email Summaries"
6373
  msgstr ""
6374
 
6375
+ #: languages/vue.php:992
6376
  msgid "Included"
6377
  msgstr ""
6378
 
6379
+ #: languages/vue.php:995
6380
  msgid "Get weekly traffic reports directly in your inbox."
6381
  msgstr ""
6382
 
6383
+ #: languages/vue.php:1001
6384
  msgid "Basic Options"
6385
  msgstr ""
6386
 
6387
+ #: languages/vue.php:1004
6388
  msgid "Order Popular Posts by comments or shares with 3 simple theme choices."
6389
  msgstr ""
6390
 
6391
+ #: languages/vue.php:1007
6392
  msgid "Dynamic Popular Posts & Popular Products"
6393
  msgstr ""
6394
 
6395
+ #: languages/vue.php:1010
6396
  msgid "Display Popular Posts based on your actual traffic data from Google Analytics and choose from over 20 advanced themes. Display Popular WooCommerce products using widgets or Gutenberg blocks."
6397
  msgstr ""
6398
 
6399
+ #: languages/vue.php:1013
6400
  msgid "Not Available"
6401
  msgstr ""
6402
 
6403
+ #: languages/vue.php:1016
6404
  msgid "Complete Custom Dimensions Tracking"
6405
  msgstr ""
6406
 
6407
+ #: languages/vue.php:1019
6408
  msgid "Track and measure by the Author, Post Type, Category, Tag, SEO Score, Focus Keyword, Logged-in User, User ID and Published Time of each post and page"
6409
  msgstr ""
6410
 
6411
+ #: languages/vue.php:1025
6412
  msgid "Limited Support"
6413
  msgstr ""
6414
 
6415
+ #: languages/vue.php:1028
6416
  msgid "Priority Support"
6417
  msgstr ""
6418
 
6419
+ #: languages/vue.php:1031
6420
  msgid "Get the most out of ExactMetrics by upgrading to Pro and unlocking all of the powerful features."
6421
  msgstr ""
6422
 
6423
+ #: languages/vue.php:1034
6424
  msgid "Feature"
6425
  msgstr ""
6426
 
6427
+ #: languages/vue.php:1037
6428
  msgid "Lite"
6429
  msgstr ""
6430
 
6431
+ #: languages/vue.php:1040
6432
  msgid "Pro"
6433
  msgstr ""
6434
 
6435
+ #: languages/vue.php:1043
6436
  msgid "Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout."
6437
  msgstr ""
6438
 
6439
+ #: languages/vue.php:1049
6440
  msgid "Universal Tracking"
6441
  msgstr ""
6442
 
6443
+ #: languages/vue.php:1052
6444
  msgid "Custom Google Analytics Link Tracking"
6445
  msgstr ""
6446
 
6447
+ #: languages/vue.php:1055
6448
  msgid "Standard Tracking"
6449
  msgstr ""
6450
 
6451
+ #: languages/vue.php:1058
6452
  msgid "Advanced Tracking"
6453
  msgstr ""
6454
 
6455
+ #: languages/vue.php:1061
6456
  msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
6457
  msgstr ""
6458
 
6459
+ #: languages/vue.php:1064
6460
  msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
6461
  msgstr ""
6462
 
6463
+ #: languages/vue.php:1067
6464
  msgid "No-Code-Needed Tracking Features"
6465
  msgstr ""
6466
 
6467
+ #: languages/vue.php:1070
6468
  msgid "Basic Tracking Options"
6469
  msgstr ""
6470
 
6471
+ #: languages/vue.php:1073
6472
  msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
6473
  msgstr ""
6474
 
6475
+ #: languages/vue.php:1076
6476
  msgid "Advanced Tracking Options"
6477
  msgstr ""
6478
 
6479
+ #: languages/vue.php:1079
6480
  msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
6481
  msgstr ""
6482
 
6483
+ #: languages/vue.php:1082
6484
  msgid "Inbox"
6485
  msgstr ""
6486
 
6487
+ #: languages/vue.php:1085
6488
  msgid "Back to Inbox"
6489
  msgstr ""
6490
 
6491
+ #: languages/vue.php:1088
6492
  msgid "View Dismissed"
6493
  msgstr ""
6494
 
6495
+ #: languages/vue.php:1091
6496
  msgid "Notifications"
6497
  msgstr ""
6498
 
6499
+ #: languages/vue.php:1094
6500
  msgid "Dismiss All"
6501
  msgstr ""
6502
 
6503
+ #: languages/vue.php:1097
6504
  msgid "Dismissed"
6505
  msgstr ""
6506
 
6507
+ #: languages/vue.php:1100
6508
  msgid "No Notifications"
6509
  msgstr ""
6510
 
6511
  #. Translators: Error status and error text.
6512
+ #: languages/vue.php:1104
6513
  msgid "Can't load settings. Error: %1$s, %2$s"
6514
  msgstr ""
6515
 
6516
+ #: languages/vue.php:1108
6517
  msgid "You appear to be offline."
6518
  msgstr ""
6519
 
6520
  #. Translators: Error status and error text.
6521
+ #: languages/vue.php:1112
6522
  msgid "Can't save settings. Error: %1$s, %2$s"
6523
  msgstr ""
6524
 
6525
+ #: languages/vue.php:1115
6526
  msgid "Network error encountered. Settings not saved."
6527
  msgstr ""
6528
 
6529
+ #: languages/vue.php:1118
6530
  msgid "Show in widget mode"
6531
  msgstr ""
6532
 
6533
+ #: languages/vue.php:1121
6534
  msgid "Show in full-width mode"
6535
  msgstr ""
6536
 
6537
+ #: languages/vue.php:1124
6538
  msgid "Show Overview Reports"
6539
  msgstr ""
6540
 
6541
+ #: languages/vue.php:1127
6542
  msgid "Show Publishers Reports"
6543
  msgstr ""
6544
 
6545
+ #: languages/vue.php:1130
6546
  msgid "Show eCommerce Reports"
6547
  msgstr ""
6548
 
6549
+ #: languages/vue.php:1133
6550
  msgid "Settings Menu"
6551
  msgstr ""
6552
 
6553
+ #: languages/vue.php:1136
6554
  msgid "Available in PRO version"
6555
  msgstr ""
6556
 
6557
+ #: languages/vue.php:1139
6558
  msgid "See All Reports"
6559
  msgstr ""
6560
 
6561
+ #: languages/vue.php:1142
6562
  msgid "Go to the Analytics Dashboard"
6563
  msgstr ""
6564
 
6565
+ #: languages/vue.php:1157
6566
  msgid "Cart Funnel"
6567
  msgstr ""
6568
 
6569
+ #: languages/vue.php:1160
6570
  msgid "Customer Insights"
6571
  msgstr ""
6572
 
6573
+ #: languages/vue.php:1163
6574
  msgid "Campaign Measurement"
6575
  msgstr ""
6576
 
6577
+ #: languages/vue.php:1166
6578
  msgid "Customer Profiles"
6579
  msgstr ""
6580
 
6581
+ #: languages/vue.php:1169
6582
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, revenue, and average order value, and more."
6583
  msgstr ""
6584
 
6585
+ #: languages/vue.php:1172
6586
  msgid "Truly Understand Your%1$s Customers With %2$sExactMetrics%3$s"
6587
  msgstr ""
6588
 
6589
+ #: languages/vue.php:1175
6590
  msgid "You never truly understand your customers until you used Enhanced %1$s eCommerce from ExactMetrics!"
6591
  msgstr ""
6592
 
6593
+ #: languages/vue.php:1178
6594
  msgid "Track all-new metrics!"
6595
  msgstr ""
6596
 
6597
+ #: languages/vue.php:1181
6598
  msgid "Get stats WooCommerce doesn’t give you like: Conversion Sources, Avg. Order Value, Revenue per Source, Total Add to Carts & More!"
6599
  msgstr ""
6600
 
6601
+ #: languages/vue.php:1184
6602
  msgid "FEATURES"
6603
  msgstr ""
6604
 
6605
+ #: languages/vue.php:1187
6606
  msgid "Get The Unique Metrics Neccessary for Growth"
6607
  msgstr ""
6608
 
6609
+ #: languages/vue.php:1190
6610
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, %1$srevenue, and average order value, and more."
6611
  msgstr ""
6612
 
6613
+ #: languages/vue.php:1193
6614
  msgid "Get Answers to the important questions %1$syou should know."
6615
  msgstr ""
6616
 
6617
+ #: languages/vue.php:1196
6618
  msgid "Did the login/registration step of the checkout put users off?"
6619
  msgstr ""
6620
 
6621
+ #: languages/vue.php:1199
6622
  msgid "Which ad campaign is driving the most revenue?"
6623
  msgstr ""
6624
 
6625
+ #: languages/vue.php:1202
6626
  msgid "Who is my typical customer?"
6627
  msgstr ""
6628
 
6629
+ #: languages/vue.php:1205
6630
  msgid "Level-up Your eCommerce store with %1$sExactMetrics + WooCommerce!%1$s"
6631
  msgstr ""
6632
 
6633
  #. Translators: Error status and error text.
6634
+ #: languages/vue.php:1209
6635
  msgid "Can't deactivate the license. Error: %1$s, %2$s"
6636
  msgstr ""
6637
 
6638
  #. Translators: Error status and error text.
6639
+ #: languages/vue.php:1213
6640
  msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
6641
  msgstr ""
6642
 
6643
  #. Translators: Error status and error text.
6644
+ #: languages/vue.php:1217
6645
  msgid "Can't load license details. Error: %1$s, %2$s"
6646
  msgstr ""
6647
 
6648
+ #: languages/vue.php:1220
6649
  msgid "Error loading license details"
6650
  msgstr ""
6651
 
6652
  #. Translators: Error status and error text.
6653
+ #: languages/vue.php:1224
6654
  msgid "Can't verify the license. Error: %1$s, %2$s"
6655
  msgstr ""
6656
 
6657
  #. Translators: Error status and error text.
6658
+ #: languages/vue.php:1228
6659
  msgid "Can't validate the license. Error: %1$s, %2$s"
6660
  msgstr ""
6661
 
6662
+ #: languages/vue.php:1232
6663
  msgid "Reset to default"
6664
  msgstr ""
6665
 
6666
+ #: languages/vue.php:1235
6667
  msgid "The value entered does not match the required format"
6668
  msgstr ""
6669
 
6670
+ #: languages/vue.php:1238
6671
  msgid "Check out the newly added classic mode"
6672
  msgstr ""
6673
 
6674
  #. Translators: Placeholder adds a line break.
6675
+ #: languages/vue.php:1242
6676
  msgid "You can customize your %sdate range only in the PRO version."
6677
  msgstr ""
6678
 
6679
+ #: languages/vue.php:1245
6680
  msgid "Help Us Improve"
6681
  msgstr ""
6682
 
6683
+ #: languages/vue.php:1248
6684
  msgid "Help us better understand our users and their website needs."
6685
  msgstr ""
6686
 
6687
  #. Translators: Adds a link to the documentation.
6688
+ #: languages/vue.php:1252
6689
  msgid "If enabled ExactMetrics will send some information about your WordPress site like what plugins and themes you use and which ExactMetrics settings you use to us so that we can improve our product. For a complete list of what we send and what we use it for, %1$svisit our website.%2$s"
6690
  msgstr ""
6691
 
6692
  #. Translators: The name of the field that is throwing a validation error.
6693
+ #: languages/vue.php:1256
6694
  msgid "%s can't be empty."
6695
  msgstr ""
6696
 
6697
+ #: languages/vue.php:1259
6698
  msgid "Duplicate values are not allowed."
6699
  msgstr ""
6700
 
6701
+ #: languages/vue.php:1262
6702
  msgid "You can add maximum 5 items."
6703
  msgstr ""
6704
 
6705
+ #: languages/vue.php:1265
6706
  msgid "At least 0 item required."
6707
  msgstr ""
6708
 
6709
+ #: languages/vue.php:1268
6710
  msgid "Add Another Link Path"
6711
  msgstr ""
6712
 
6713
+ #: languages/vue.php:1271
6714
  msgid "Remove row"
6715
  msgstr ""
6716
 
6717
+ #: languages/vue.php:1275
6718
  msgid "Sessions"
6719
  msgstr ""
6720
 
6721
  #. Translators: Line break.
6722
+ #: languages/vue.php:1279
6723
  msgid "Unique %s Sessions"
6724
  msgstr ""
6725
 
6726
+ #: languages/vue.php:1282
6727
  msgid "Pageviews"
6728
  msgstr ""
6729
 
6730
  #. Translators: Line break.
6731
+ #: languages/vue.php:1286
6732
  msgid "Unique %s Pageviews"
6733
  msgstr ""
6734
 
6735
+ #: languages/vue.php:1289
6736
  msgid "A session is the browsing session of a single user to your site."
6737
  msgstr ""
6738
 
6739
+ #: languages/vue.php:1292
6740
  msgid "A pageview is defined as a view of a page on your site that is being tracked by the Analytics tracking code. Each refresh of a page is also a new pageview."
6741
  msgstr ""
6742
 
6743
+ #: languages/vue.php:1295
6744
  msgid "Total duration of all sessions (in seconds) / number of sessions."
6745
  msgstr ""
6746
 
6747
+ #: languages/vue.php:1298
6748
  msgid "Percentage of single page visits (or web sessions). It is the number of visits in which a person leaves your website from the landing page without browsing any further."
6749
  msgstr ""
6750
 
6751
+ #: languages/vue.php:1301
6752
  msgid "The number of distinct tracked users"
6753
  msgstr ""
6754
 
6755
+ #: languages/vue.php:1304
6756
  msgid "Avg. Session Duration"
6757
  msgstr ""
6758
 
6759
+ #: languages/vue.php:1308
6760
  msgid "Bounce Rate"
6761
  msgstr ""
6762
 
6763
+ #: languages/vue.php:1312
6764
  msgid "Total Users"
6765
  msgstr ""
6766
 
6767
+ #: languages/vue.php:1315
6768
  msgid "No options available"
6769
  msgstr ""
6770
 
6771
  #. Translators: Placeholders make the text highlighted.
6772
+ #: languages/vue.php:1319
6773
  msgid "%1$sNeed%2$s to Grow FASTER??"
6774
  msgstr ""
6775
 
6776
+ #: languages/vue.php:1322
6777
  msgid "Get additional, actionable insights by going Pro."
6778
  msgstr ""
6779
 
6780
+ #: languages/vue.php:1325
6781
  msgid "Skip"
6782
  msgstr ""
6783
 
6784
+ #: languages/vue.php:1328
6785
  msgid "See All Features"
6786
  msgstr ""
6787
 
6788
+ #: languages/vue.php:1331
6789
  msgid "Upgrade to Pro to get the complete ExactMetrics experience including 1 click tracking integrations for your favorite WordPress plugins and insightful reports backed by our legendary support team."
6790
  msgstr ""
6791
 
6792
+ #: languages/vue.php:1334
6793
  msgid "Our Pro plan includes:"
6794
  msgstr ""
6795
 
6796
  #. Translators: Error status and error text.
6797
+ #: languages/vue.php:1338
6798
  msgid "Can't load errors. Error: %1$s, %2$s"
6799
  msgstr ""
6800
 
6801
+ #: languages/vue.php:1341
6802
  msgid "Real-Time Report"
6803
  msgstr ""
6804
 
6805
+ #: languages/vue.php:1344
6806
  msgid "Track the results of your marketing efforts and product launches as-it-happens right from your WordPress site. The Real-Time report allows you to view your traffic sources and visitor's activity when you need it."
6807
  msgstr ""
6808
 
6809
  #. Translators: add link to blog.
6810
+ #: languages/vue.php:1348
6811
  msgid "To comply with Google's API policies we've had to remove the real time report from the lite version. You can read about this decision and why it was made in %1$sthis blog post%2$s. To access the real time report in the WordPress backend, you will need to upgrade to Pro."
6812
  msgstr ""
6813
 
6814
+ #: languages/vue.php:1351
6815
  msgid "Here's what you get:"
6816
  msgstr ""
6817
 
6818
+ #: languages/vue.php:1354
6819
  msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
6820
  msgstr ""
6821
 
6822
+ #: languages/vue.php:1357
6823
  msgid "See Your Top Pages Immediately After Making Changes"
6824
  msgstr ""
6825
 
6826
+ #: languages/vue.php:1360
6827
  msgid "See Your Top Referral Sources and Adapt Faster"
6828
  msgstr ""
6829
 
6830
+ #: languages/vue.php:1363
6831
  msgid "See Your Traffic Demographics"
6832
  msgstr ""
6833
 
6834
+ #: languages/vue.php:1366
6835
  msgid "Get Fresh Report Data Every 60 Seconds"
6836
  msgstr ""
6837
 
6838
+ #: languages/vue.php:1369
6839
  msgid "See Where Your Visitors are Connecting From (country & city)"
6840
  msgstr ""
6841
 
6842
+ #: languages/vue.php:1372
6843
  msgid "Forms Report"
6844
  msgstr ""
6845
 
6846
+ #: languages/vue.php:1375
6847
  msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
6848
  msgstr ""
6849
 
6850
+ #: languages/vue.php:1378
6851
  msgid "See Your Top Converting Forms and Optimize"
6852
  msgstr ""
6853
 
6854
+ #: languages/vue.php:1381
6855
  msgid "See Your Forms Impressions Count to Find the Best Placement"
6856
  msgstr ""
6857
 
6858
+ #: languages/vue.php:1384
6859
  msgid "Awesome, You're All Set!"
6860
  msgstr ""
6861
 
6862
+ #: languages/vue.php:1387
6863
  msgid "ExactMetrics is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
6864
  msgstr ""
6865
 
6866
  #. Translators: Make text bold.
6867
+ #: languages/vue.php:1391
6868
  msgid "%1$sPlease Note:%2$s While Google Analytics is properly setup and tracking everything, it does not send the data back to WordPress immediately. Depending on the size of your website, it can take between a few hours to 24 hours for reports to populate."
6869
  msgstr ""
6870
 
6871
  #. Translators: Add link to blog.
6872
  #. Translators: Link to our blog.
6873
+ #: languages/vue.php:1395
6874
+ #: languages/vue.php:3593
6875
  msgid "%1$sSubscribe to the ExactMetrics blog%2$s for tips on how to get more traffic and grow your business."
6876
  msgstr ""
6877
 
6878
+ #: languages/vue.php:1398
6879
  msgid "Finish Setup & Exit Wizard"
6880
  msgstr ""
6881
 
6882
+ #: languages/vue.php:1401
6883
  msgid "Google Analytics"
6884
  msgstr ""
6885
 
6886
+ #: languages/vue.php:1404
6887
  msgid "Subscribe"
6888
  msgstr ""
6889
 
6890
+ #: languages/vue.php:1407
6891
  msgid "Checking your website..."
6892
  msgstr ""
6893
 
6894
+ #: languages/vue.php:1410
6895
  msgid "Recommended Addons"
6896
  msgstr ""
6897
 
6898
  #. Translators: Add a link to upgrade and make the text green.
6899
+ #: languages/vue.php:1414
6900
  msgid "To unlock more features consider %1$supgrading to PRO%2$s.%3$s As a valued ExactMetrics Lite user you %4$sreceive 50%% off%5$s, automatically applied at checkout!"
6901
  msgstr ""
6902
 
6903
+ #: languages/vue.php:1417
6904
  msgid "Upgrade to PRO Now"
6905
  msgstr ""
6906
 
6907
+ #: languages/vue.php:1420
6908
  msgid "See who’s viewing and submitting your forms, so you can increase your conversion rate."
6909
  msgstr ""
6910
 
6911
+ #: languages/vue.php:1423
6912
  msgid "See All Your Important Store Metrics in One Place."
6913
  msgstr ""
6914
 
6915
+ #: languages/vue.php:1426
6916
  msgid "... and more:"
6917
  msgstr ""
6918
 
6919
+ #: languages/vue.php:1429
6920
  msgid "Dimensions- Track authors, categories, trags, searches, users and more."
6921
  msgstr ""
6922
 
6923
+ #: languages/vue.php:1432
6924
  msgid "EU Compliance- Improve compliance with GDPR and other privacy regulations."
6925
  msgstr ""
6926
 
6927
+ #: languages/vue.php:1435
6928
  msgid "AMP- ExactMetrics Google AMP Addon enables accurate tracking of all mobile visitors to your AMP-enabled pages."
6929
  msgstr ""
6930
 
6931
+ #: languages/vue.php:1438
6932
  msgid "Facebook Instant Articles- Integrate Google Analytics and Facebook Instant Articles with just one click."
6933
  msgstr ""
6934
 
6935
+ #: languages/vue.php:1441
6936
  msgid "eCommerce- Sales tracking for your WooCommerce, Easy Digital Downloads, LifterLMS or MemberPress stores."
6937
  msgstr ""
6938
 
6939
+ #: languages/vue.php:1444
6940
  msgid "Google Optimize- Easily enable Google Optimize on your WordPress site."
6941
  msgstr ""
6942
 
6943
+ #: languages/vue.php:1447
6944
  msgid "Forms- Enable tracking of your form views, submissions and conversion rates."
6945
  msgstr ""
6946
 
6947
+ #: languages/vue.php:1450
6948
  msgid "Ads- See who’s clicking on your Google Adsense banner ads."
6949
  msgstr ""
6950
 
6951
+ #: languages/vue.php:1453
6952
  msgid "Hello and Welcome to ExactMetrics, the Best Google Analytics Plugin for WordPress."
6953
  msgstr ""
6954
 
6955
+ #: languages/vue.php:1456
6956
  msgid "Ready to take your website to the next level? ExactMetrics gives you the accurate insights you need to make data-driven decisions to grow your traffic and conversions faster than ever before. Now you can easily enable advanced tracking on your website without having to know any code."
6957
  msgstr ""
6958
 
6959
+ #: languages/vue.php:1459
6960
  msgid "The ExactMetrics Team"
6961
  msgstr ""
6962
 
6963
+ #: languages/vue.php:1462
6964
  msgid "Custom Dimensions Report"
6965
  msgstr ""
6966
 
6967
+ #: languages/vue.php:1465
6968
  msgid "Unlock the Dimensions Report and decide what data is important using your own custom tracking parameters"
6969
  msgstr ""
6970
 
6971
+ #: languages/vue.php:1468
6972
  msgid "The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
6973
  msgstr ""
6974
 
6975
+ #: languages/vue.php:1471
6976
  msgid "Author tracking to see which author’s posts generate the most traffic"
6977
  msgstr ""
6978
 
6979
+ #: languages/vue.php:1474
6980
  msgid "Post Type tracking to see which WordPress post types perform better"
6981
  msgstr ""
6982
 
6983
+ #: languages/vue.php:1477
6984
  msgid "Category tracking to see which sections of your sites are the most popular"
6985
  msgstr ""
6986
 
6987
+ #: languages/vue.php:1480
6988
  msgid "SEO score tracking to see which blog SEO scores are the most popular"
6989
  msgstr ""
6990
 
6991
+ #: languages/vue.php:1483
6992
  msgid "Focus Keyword tracking to see which of your content is doing well in search engines."
6993
  msgstr ""
6994
 
6995
+ #: languages/vue.php:1486
6996
  msgid "Tag tracking to determine which topics are the most engaging to for your website visitors."
6997
  msgstr ""
6998
 
6999
  #. Translators: add link to blog.
7000
+ #: languages/vue.php:1490
7001
  msgid "One of the factors that help deliver an outstanding user experience is having a website that loads quickly. With the Site Speed report you'll be able to check your site's performance directly from your ExactMetrics dashboard."
7002
  msgstr ""
7003
 
7004
+ #: languages/vue.php:1493
7005
  msgid "See Your Homepage's Overall Performance Score"
7006
  msgstr ""
7007
 
7008
+ #: languages/vue.php:1496
7009
  msgid "Run an Audit on Your Homepage and See Your Server Response Time"
7010
  msgstr ""
7011
 
7012
+ #: languages/vue.php:1499
7013
  msgid "Learn How Long It Takes for Your Viewers to Interact With Your Site"
7014
  msgstr ""
7015
 
7016
+ #: languages/vue.php:1502
7017
  msgid "Learn How to Improve the Core Metrics that Google Uses to Rank Your Site"
7018
  msgstr ""
7019
 
7020
+ #: languages/vue.php:1505
7021
  msgid "Hide dashboard widget"
7022
  msgstr ""
7023
 
7024
+ #: languages/vue.php:1508
7025
  msgid "Are you sure you want to hide the ExactMetrics Dashboard Widget? "
7026
  msgstr ""
7027
 
7028
+ #: languages/vue.php:1511
7029
  msgid "Yes, hide it!"
7030
  msgstr ""
7031
 
7032
+ #: languages/vue.php:1514
7033
  msgid "No, cancel!"
7034
  msgstr ""
7035
 
7036
+ #: languages/vue.php:1517
7037
  msgid "ExactMetrics Widget Hidden"
7038
  msgstr ""
7039
 
7040
+ #: languages/vue.php:1520
7041
  msgid "You can re-enable the ExactMetrics widget at any time using the \"Screen Options\" menu on the top right of this page"
7042
  msgstr ""
7043
 
7044
  #. Translators: Error status and error text.
7045
+ #: languages/vue.php:1524
7046
  msgid "Can't deauthenticate. Error: %1$s, %2$s"
7047
  msgstr ""
7048
 
7049
  #. Translators: Error status and error text.
7050
+ #: languages/vue.php:1528
7051
  msgid "Can't load authentication details. Error: %1$s, %2$s"
7052
  msgstr ""
7053
 
7054
+ #: languages/vue.php:1531
7055
  msgid "You appear to be offline. Settings not saved."
7056
  msgstr ""
7057
 
7058
  #. Translators: Error status and error text.
7059
+ #: languages/vue.php:1535
7060
  msgid "Can't authenticate. Error: %1$s, %2$s"
7061
  msgstr ""
7062
 
7063
  #. Translators: Error status and error text.
7064
+ #: languages/vue.php:1539
7065
  msgid "Can't reauthenticate. Error: %1$s, %2$s"
7066
  msgstr ""
7067
 
7068
  #. Translators: Error status and error text.
7069
+ #: languages/vue.php:1543
7070
  msgid "Can't verify credentials. Error: %1$s, %2$s"
7071
  msgstr ""
7072
 
7073
+ #: languages/vue.php:1546
7074
  msgid "Still Calculating..."
7075
  msgstr ""
7076
 
7077
+ #: languages/vue.php:1549
7078
  msgid "Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year."
7079
  msgstr ""
7080
 
7081
+ #: languages/vue.php:1552
7082
  msgid "Back to Overview Report"
7083
  msgstr ""
7084
 
7085
+ #: languages/vue.php:1555
7086
  msgid "Your 2020 Analytics Report"
7087
  msgstr ""
7088
 
7089
+ #: languages/vue.php:1558
7090
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2021!"
7091
  msgstr ""
7092
 
7093
+ #: languages/vue.php:1561
7094
  msgid "Audience"
7095
  msgstr ""
7096
 
7097
+ #: languages/vue.php:1564
7098
  msgid "Congrats"
7099
  msgstr ""
7100
 
7101
+ #: languages/vue.php:1567
7102
  msgid "Your website was quite popular this year! "
7103
  msgstr ""
7104
 
7105
+ #: languages/vue.php:1570
7106
  msgid "You had "
7107
  msgstr ""
7108
 
7109
+ #: languages/vue.php:1573
7110
  msgid " visitors!"
7111
  msgstr ""
7112
 
7113
+ #: languages/vue.php:1576
7114
  msgid " visitors"
7115
  msgstr ""
7116
 
7117
+ #: languages/vue.php:1579
7118
  msgid "Total Visitors"
7119
  msgstr ""
7120
 
7121
+ #: languages/vue.php:1582
7122
  msgid "Total Sessions"
7123
  msgstr ""
7124
 
7125
+ #: languages/vue.php:1585
7126
  msgid "Visitors by Month"
7127
  msgstr ""
7128
 
7129
+ #: languages/vue.php:1588
7130
  msgid "January 1, 2020 - December 31, 2020"
7131
  msgstr ""
7132
 
7133
+ #: languages/vue.php:1591
7134
  msgid "A Tip for 2021"
7135
  msgstr ""
7136
 
7137
+ #: languages/vue.php:1594
7138
  msgid "Demographics"
7139
  msgstr ""
7140
 
7141
+ #: languages/vue.php:1597
7142
  msgid "#1"
7143
  msgstr ""
7144
 
7145
+ #: languages/vue.php:1600
7146
  msgid "You Top 5 Countries"
7147
  msgstr ""
7148
 
7149
+ #: languages/vue.php:1603
7150
  msgid "Let’s get to know your visitors a little better, shall we?"
7151
  msgstr ""
7152
 
7153
+ #: languages/vue.php:1606
7154
  msgid "Gender"
7155
  msgstr ""
7156
 
7157
+ #: languages/vue.php:1609
7158
  msgid "Female"
7159
  msgstr ""
7160
 
7161
+ #: languages/vue.php:1612
7162
  msgid "Women"
7163
  msgstr ""
7164
 
7165
+ #: languages/vue.php:1615
7166
  msgid "Male"
7167
  msgstr ""
7168
 
7169
+ #: languages/vue.php:1618
7170
  msgid "Average Age"
7171
  msgstr ""
7172
 
7173
+ #: languages/vue.php:1621
7174
  msgid "Behavior"
7175
  msgstr ""
7176
 
7177
+ #: languages/vue.php:1624
7178
  msgid "Your Top 5 Pages"
7179
  msgstr ""
7180
 
7181
+ #: languages/vue.php:1627
7182
  msgid "Time Spent on Site"
7183
  msgstr ""
7184
 
7185
+ #: languages/vue.php:1630
7186
  msgid "minutes"
7187
  msgstr ""
7188
 
7189
+ #: languages/vue.php:1633
7190
  msgid "Device Type"
7191
  msgstr ""
7192
 
7193
+ #: languages/vue.php:1636
7194
  msgid "A Tip For 2021"
7195
  msgstr ""
7196
 
7197
+ #: languages/vue.php:1639
7198
  msgid "Are you looking for a way to track your landing pages and see which one gets the most conversions on your website?"
7199
  msgstr ""
7200
 
7201
+ #: languages/vue.php:1642
7202
  msgid "Read - How to Track Google Analytics Landing Page Conversions"
7203
  msgstr ""
7204
 
7205
+ #: languages/vue.php:1645
7206
  msgid "So, where did all of these visitors come from?"
7207
  msgstr ""
7208
 
7209
+ #: languages/vue.php:1648
7210
  msgid "Clicks"
7211
  msgstr ""
7212
 
7213
+ #: languages/vue.php:1651
7214
  msgid "Your Top 5 Keywords"
7215
  msgstr ""
7216
 
7217
+ #: languages/vue.php:1654
7218
  msgid "What keywords visitors searched for to find your site"
7219
  msgstr ""
7220
 
7221
+ #: languages/vue.php:1657
7222
  msgid "Your Top 5 Referrals"
7223
  msgstr ""
7224
 
7225
+ #: languages/vue.php:1660
7226
  msgid "The websites that link back to your website"
7227
  msgstr ""
7228
 
7229
+ #: languages/vue.php:1663
7230
  msgid "Opportunity"
7231
  msgstr ""
7232
 
7233
+ #: languages/vue.php:1666
7234
  msgid "Learn how to boost your SEO rankings using ExactMetrics so more visitors reach your articles and increase engagement."
7235
  msgstr ""
7236
 
7237
+ #: languages/vue.php:1669
7238
  msgid "Read - 5 Ways to Skyrocket Your SEO Rankings with Google Analytics"
7239
  msgstr ""
7240
 
7241
+ #: languages/vue.php:1672
7242
  msgid "Thank you for using ExactMetrics!"
7243
  msgstr ""
7244
 
7245
+ #: languages/vue.php:1675
7246
  msgid "We’re grateful for your continued support. If there’s anything we can do to help you grow your business, please don’t hesitate to contact our team."
7247
  msgstr ""
7248
 
7249
+ #: languages/vue.php:1678
7250
  msgid "Here's to an amazing 2021!"
7251
  msgstr ""
7252
 
7253
+ #: languages/vue.php:1681
7254
  msgid "Enjoying ExactMetrics"
7255
  msgstr ""
7256
 
7257
+ #: languages/vue.php:1684
7258
  msgid "Leave a five star review!"
7259
  msgstr ""
7260
 
7261
+ #: languages/vue.php:1687
7262
  msgid "Syed Balkhi"
7263
  msgstr ""
7264
 
7265
+ #: languages/vue.php:1690
7266
  msgid "Chris Christoff"
7267
  msgstr ""
7268
 
7269
+ #: languages/vue.php:1693
7270
  msgid "Write Review"
7271
  msgstr ""
7272
 
7273
+ #: languages/vue.php:1696
7274
  msgid "Did you know over 10 million websites use our plugins?"
7275
  msgstr ""
7276
 
7277
+ #: languages/vue.php:1699
7278
  msgid "Try our other popular WordPress plugins to grow your website in 2021."
7279
  msgstr ""
7280
 
7281
+ #: languages/vue.php:1702
7282
  msgid "Join our Communities!"
7283
  msgstr ""
7284
 
7285
+ #: languages/vue.php:1705
7286
  msgid "Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level."
7287
  msgstr ""
7288
 
7289
+ #: languages/vue.php:1708
7290
  msgid "Facebook Group"
7291
  msgstr ""
7292
 
7293
+ #: languages/vue.php:1711
7294
  msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
7295
  msgstr ""
7296
 
7297
+ #: languages/vue.php:1714
7298
  msgid "Join Now...It’s Free!"
7299
  msgstr ""
7300
 
7301
+ #: languages/vue.php:1717
7302
  msgid "WordPress Tutorials by WPBeginner"
7303
  msgstr ""
7304
 
7305
+ #: languages/vue.php:1720
7306
  msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
7307
  msgstr ""
7308
 
7309
+ #: languages/vue.php:1723
7310
  msgid "Visit WPBeginner"
7311
  msgstr ""
7312
 
7313
+ #: languages/vue.php:1726
7314
  msgid "Follow Us!"
7315
  msgstr ""
7316
 
7317
+ #: languages/vue.php:1729
7318
  msgid "Follow ExactMetrics on social media to stay up to date with latest updates, trends, and tutorials on how to make the most out of analytics."
7319
  msgstr ""
7320
 
7321
+ #: languages/vue.php:1732
7322
  msgid "Copyright ExactMetrics, 2021"
7323
  msgstr ""
7324
 
7325
+ #: languages/vue.php:1735
7326
  msgid "Upgrade to ExactMetrics Pro to Unlock Additional Actionable Insights"
7327
  msgstr ""
7328
 
7329
+ #: languages/vue.php:1741
7330
  msgid "January"
7331
  msgstr ""
7332
 
7333
+ #: languages/vue.php:1744
7334
  msgid "February"
7335
  msgstr ""
7336
 
7337
+ #: languages/vue.php:1747
7338
  msgid "March"
7339
  msgstr ""
7340
 
7341
+ #: languages/vue.php:1750
7342
  msgid "April"
7343
  msgstr ""
7344
 
7345
+ #: languages/vue.php:1753
7346
  msgid "May"
7347
  msgstr ""
7348
 
7349
+ #: languages/vue.php:1756
7350
  msgid "June"
7351
  msgstr ""
7352
 
7353
+ #: languages/vue.php:1759
7354
  msgid "July"
7355
  msgstr ""
7356
 
7357
+ #: languages/vue.php:1762
7358
  msgid "August"
7359
  msgstr ""
7360
 
7361
+ #: languages/vue.php:1765
7362
  msgid "September"
7363
  msgstr ""
7364
 
7365
+ #: languages/vue.php:1768
7366
  msgid "October"
7367
  msgstr ""
7368
 
7369
+ #: languages/vue.php:1771
7370
  msgid "November"
7371
  msgstr ""
7372
 
7373
+ #: languages/vue.php:1774
7374
  msgid "December"
7375
  msgstr ""
7376
 
7377
  #. Translators: Number of visitors.
7378
+ #: languages/vue.php:1778
7379
  msgid "Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>"
7380
  msgstr ""
7381
 
7382
+ #: languages/vue.php:1781
7383
  msgid "See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success."
7384
  msgstr ""
7385
 
7386
  #. Translators: Number of visitors.
7387
+ #: languages/vue.php:1785
7388
  msgid "Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries."
7389
  msgstr ""
7390
 
7391
  #. Translators: Number of visitors.
7392
+ #: languages/vue.php:1789
7393
  msgid "%s Visitors"
7394
  msgstr ""
7395
 
7396
  #. Translators: Percent and Number of visitors.
7397
+ #: languages/vue.php:1793
7398
  msgid "%1$s&#37 of your visitors were %2$s"
7399
  msgstr ""
7400
 
7401
  #. Translators: Number of visitors and their age.
7402
+ #: languages/vue.php:1797
7403
  msgid "%1$s&#37 of your visitors were between the ages of %2$s"
7404
  msgstr ""
7405
 
7406
+ #: languages/vue.php:1800
7407
  msgid "Your <strong>%1$s</strong> visitors viewed a total of <strong>%2$s</strong> pages. <span class='average-page-per-user' style='font-size: 20px;margin-top:25px;display:block;font-family:Lato'>That's an average of %3$s pages for each visitor!</span>"
7408
  msgstr ""
7409
 
7410
  #. Translators: Number of minutes spent on site.
7411
+ #: languages/vue.php:1804
7412
  msgid "Each visitor spent an average of %s minutes on your website in 2020."
7413
  msgstr ""
7414
 
7415
  #. Translators: Name of device type.
7416
+ #: languages/vue.php:1808
7417
  msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
7418
  msgstr ""
7419
 
7420
  #. Translators: Number of visitors and device percentage.
7421
+ #: languages/vue.php:1812
7422
  msgid "%1$s&#37 of your visitors were on a %2$s device."
7423
  msgstr ""
7424
 
7425
+ #: languages/vue.php:1815
7426
  msgid "Desktop"
7427
  msgstr ""
7428
 
7429
+ #: languages/vue.php:1818
7430
  msgid "Tablet"
7431
  msgstr ""
7432
 
7433
+ #: languages/vue.php:1821
7434
  msgid "Mobile"
7435
  msgstr ""
7436
 
7437
+ #: languages/vue.php:1824
7438
  msgid "Force Deauthenticate"
7439
  msgstr ""
7440
 
7441
+ #: languages/vue.php:1827
7442
  msgid "Disconnect ExactMetrics"
7443
  msgstr ""
7444
 
7445
+ #: languages/vue.php:1830
7446
  msgid "Authenticating"
7447
  msgstr ""
7448
 
7449
+ #: languages/vue.php:1833
7450
  msgid "Verifying Credentials"
7451
  msgstr ""
7452
 
7453
+ #: languages/vue.php:1836
7454
  msgid "Your site is connected to ExactMetrics!"
7455
  msgstr ""
7456
 
7457
+ #: languages/vue.php:1839
7458
  msgid "Deauthenticating"
7459
  msgstr ""
7460
 
7461
+ #: languages/vue.php:1842
7462
  msgid "You've disconnected your site from ExactMetrics. Your site is no longer being tracked by Google Analytics and you won't see reports anymore."
7463
  msgstr ""
7464
 
7465
+ #: languages/vue.php:1845
7466
+ #: languages/vue.php:1917
7467
  msgid "Connect ExactMetrics"
7468
  msgstr ""
7469
 
7470
+ #: languages/vue.php:1848
7471
  msgid "Verify Credentials"
7472
  msgstr ""
7473
 
7474
+ #: languages/vue.php:1854
7475
  msgid "Website Profile"
7476
  msgstr ""
7477
 
7478
+ #: languages/vue.php:1857
7479
  msgid "Active Profile"
7480
  msgstr ""
7481
 
7482
+ #: languages/vue.php:1860
7483
  msgid "Your website profile has been set at the network level of your WordPress Multisite."
7484
  msgstr ""
7485
 
7486
+ #: languages/vue.php:1863
7487
  msgid "If you would like to use a different profile for this subsite, you can authenticate below."
7488
  msgstr ""
7489
 
7490
+ #: languages/vue.php:1866
7491
  msgid "Dual Tracking Profile"
7492
  msgstr ""
7493
 
7494
+ #: languages/vue.php:1869
7495
  msgid "The dual tracking feature allows you to continue tracking this site into an existing GAv3 property so you can continue to use the GA reports you are used to already. Learn more about this feature %1$shere%2$s."
7496
  msgstr ""
7497
 
7498
+ #: languages/vue.php:1872
7499
  msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers."
7500
  msgstr ""
7501
 
7502
+ #: languages/vue.php:1875
7503
  msgid "The dual tracking feature allows you to begin tracking this site into a GAv4 property to take advantage of the new GAv4 analysis tools. Learn more about this feature %1$shere%2$s."
7504
  msgstr ""
7505
 
7506
+ #: languages/vue.php:1878
7507
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
7508
  msgstr ""
7509
 
7510
+ #: languages/vue.php:1881
7511
  msgid "Measurement Protocol API Secret"
7512
  msgstr ""
7513
 
7514
+ #: languages/vue.php:1884
7515
  msgid "The Measurement Protocol API secret allows your site to send tracking data to Google Analytics. To retrieve your Measurement Protocol API Secret, follow %1$sthis guide%2$s."
7516
  msgstr ""
7517
 
7518
+ #: languages/vue.php:1887
7519
  msgid "Classic mode"
7520
  msgstr ""
7521
 
7522
+ #: languages/vue.php:1890
7523
  msgid "Proceed"
7524
  msgstr ""
7525
 
7526
+ #: languages/vue.php:1893
7527
  msgid "Connection Information"
7528
  msgstr ""
7529
 
7530
+ #: languages/vue.php:1896
7531
  msgid "To perform the requested action, WordPress needs to access your web server. Please enter your FTP credentials to proceed. If you do not remember your credentials, you should contact your web host."
7532
  msgstr ""
7533
 
7534
+ #: languages/vue.php:1899
7535
  msgid "Hostname"
7536
  msgstr ""
7537
 
7538
+ #: languages/vue.php:1902
7539
  msgid "FTP Username"
7540
  msgstr ""
7541
 
7542
+ #: languages/vue.php:1905
7543
  msgid "FTP Password"
7544
  msgstr ""
7545
 
7546
+ #: languages/vue.php:1908
7547
  msgid "This password will not be stored on the server."
7548
  msgstr ""
7549
 
7550
+ #: languages/vue.php:1911
7551
  msgid "Connection Type"
7552
  msgstr ""
7553
 
7554
+ #: languages/vue.php:1914
7555
  msgid "Cancel"
7556
  msgstr ""
7557
 
7558
+ #: languages/vue.php:1920
7559
  msgid "Website profile"
7560
  msgstr ""
7561
 
7562
+ #: languages/vue.php:1923
7563
  msgid "Active profile"
7564
  msgstr ""
7565
 
7566
+ #: languages/vue.php:1926
7567
  msgid "Skip and Keep Connection"
7568
  msgstr ""
7569
 
7570
+ #. Translators: Replaced with the number of days
7571
+ #: languages/vue.php:1930
7572
  msgid "vs. Previous Day"
7573
  msgstr ""
7574
 
7575
+ #: languages/vue.php:1933
7576
  msgid "No change"
7577
  msgstr ""
7578
 
7579
+ #: languages/vue.php:1936
7580
  msgid "Choose Theme"
7581
  msgstr ""
7582
 
7583
+ #: languages/vue.php:1939
7584
  msgid "Widget Styling"
7585
  msgstr ""
7586
 
7587
+ #: languages/vue.php:1942
7588
  msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
7589
  msgstr ""
7590
 
7591
+ #: languages/vue.php:1945
7592
  msgid "Sort By"
7593
  msgstr ""
7594
 
7595
+ #: languages/vue.php:1948
7596
  msgid "Choose how you'd like the widget to determine your popular posts."
7597
  msgstr ""
7598
 
7599
+ #: languages/vue.php:1951
7600
  msgid "Display Title"
7601
  msgstr ""
7602
 
7603
+ #: languages/vue.php:1957
7604
  msgid "Title your widget and set its display preferences."
7605
  msgstr ""
7606
 
7607
+ #: languages/vue.php:1960
7608
  msgid "Include in Post Types"
7609
  msgstr ""
7610
 
7611
+ #: languages/vue.php:1963
7612
  msgid "Exclude from specific posts"
7613
  msgstr ""
7614
 
7615
  #. Translators: Placeholders make the text bold.
7616
+ #: languages/vue.php:1967
7617
  msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
7618
  msgstr ""
7619
 
7620
  #. Translators: Placeholders make the text bold.
7621
+ #: languages/vue.php:1971
7622
  msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
7623
  msgstr ""
7624
 
7625
+ #: languages/vue.php:1974
7626
  msgid "Loading Themes"
7627
  msgstr ""
7628
 
7629
  #. Translators: placeholders make text small.
7630
+ #: languages/vue.php:1978
7631
  msgid "Default Styles %1$s- As seen above.%2$s"
7632
  msgstr ""
7633
 
7634
  #. Translators: placeholders make text small.
7635
+ #: languages/vue.php:1982
7636
  msgid "No Styles %1$s- Use your own CSS.%2$s"
7637
  msgstr ""
7638
 
7639
  #. Translators: placeholders make text small.
7640
+ #: languages/vue.php:1986
7641
  msgid "Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s"
7642
  msgstr ""
7643
 
7644
  #. Translators: placeholders make text small.
7645
+ #: languages/vue.php:1990
7646
  msgid "SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s"
7647
  msgstr ""
7648
 
7649
  #. Translators: placeholders make text small.
7650
+ #: languages/vue.php:1994
7651
  msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
7652
  msgstr ""
7653
 
7654
+ #: languages/vue.php:1997
7655
  msgid "Placement"
7656
  msgstr ""
7657
 
7658
+ #: languages/vue.php:2000
7659
  msgid "Choose how you'd like to place the widget."
7660
  msgstr ""
7661
 
7662
+ #: languages/vue.php:2003
7663
  msgid "Insert After"
7664
  msgstr ""
7665
 
7666
+ #: languages/vue.php:2006
7667
  msgid "Choose where in the post body the widget will be placed."
7668
  msgstr ""
7669
 
7670
+ #: languages/vue.php:2009
7671
  msgid "Customize Design"
7672
  msgstr ""
7673
 
7674
+ #: languages/vue.php:2012
7675
  msgid "words"
7676
  msgstr ""
7677
 
7678
+ #: languages/vue.php:2015
7679
  msgid "Please select at least one post to display."
7680
  msgstr ""
7681
 
7682
  #. Translators: placeholders make text small.
7683
+ #: languages/vue.php:2019
7684
  msgid "Automatic %1$s- The widget is automatically placed inside the post body.%2$s"
7685
  msgstr ""
7686
 
7687
  #. Translators: placeholders make text small.
7688
+ #: languages/vue.php:2023
7689
  msgid "Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s"
7690
  msgstr ""
7691
 
7692
+ #: languages/vue.php:2026
7693
  msgid "Caching"
7694
  msgstr ""
7695
 
7696
+ #: languages/vue.php:2029
7697
  msgid "Enable Data Caching"
7698
  msgstr ""
7699
 
7700
+ #: languages/vue.php:2032
7701
  msgid "Refresh Cache Every"
7702
  msgstr ""
7703
 
7704
+ #: languages/vue.php:2035
7705
  msgid "Choose how often to refresh the cache."
7706
  msgstr ""
7707
 
7708
+ #: languages/vue.php:2038
7709
  msgid "Enable Ajaxify"
7710
  msgstr ""
7711
 
7712
+ #: languages/vue.php:2041
7713
  msgid "Ajaxify Widget"
7714
  msgstr ""
7715
 
7716
+ #: languages/vue.php:2044
7717
  msgid "Use to bypass page caching."
7718
  msgstr ""
7719
 
7720
+ #: languages/vue.php:2047
7721
  msgid "Empty Cache"
7722
  msgstr ""
7723
 
7724
+ #: languages/vue.php:2050
7725
  msgid "Click to manually wipe the cache right now."
7726
  msgstr ""
7727
 
7728
+ #: languages/vue.php:2053
7729
  msgid "Popular posts cache emptied"
7730
  msgstr ""
7731
 
7732
+ #: languages/vue.php:2056
7733
  msgid "Error emptying the popular posts cache. Please try again."
7734
  msgstr ""
7735
 
7736
+ #: languages/vue.php:2059
7737
  msgid "Last 30 Days Analytics for "
7738
  msgstr ""
7739
 
7740
+ #: languages/vue.php:2062
7741
  msgid "Your Website"
7742
  msgstr ""
7743
 
7744
+ #: languages/vue.php:2065
7745
  msgid "Avg. Duration"
7746
  msgstr ""
7747
 
7748
+ #: languages/vue.php:2068
7749
  msgid "More data is available"
7750
  msgstr ""
7751
 
7752
+ #: languages/vue.php:2071
7753
  msgid "Want to see page-specific stats?"
7754
  msgstr ""
7755
 
7756
+ #: languages/vue.php:2074
7757
  msgid "You appear to be offline. WPForms not installed."
7758
  msgstr ""
7759
 
7760
  #. Translators: Error status and error text.
7761
+ #: languages/vue.php:2078
7762
  msgid "Can't activate addon. Error: %1$s, %2$s"
7763
  msgstr ""
7764
 
7765
+ #: languages/vue.php:2081
7766
  msgid "You appear to be offline. Addon not activated."
7767
  msgstr ""
7768
 
7769
  #. Translators: Error status and error text.
7770
+ #: languages/vue.php:2085
7771
  msgid "Can't deactivate addon. Error: %1$s, %2$s"
7772
  msgstr ""
7773
 
7774
+ #: languages/vue.php:2088
7775
  msgid "You appear to be offline. Addon not deactivated."
7776
  msgstr ""
7777
 
7778
  #. Translators: Error status and error text.
7779
+ #: languages/vue.php:2092
7780
  msgid "Can't install plugin. Error: %1$s, %2$s"
7781
  msgstr ""
7782
 
7783
+ #: languages/vue.php:2095
7784
  msgid "You appear to be offline. Plugin not installed."
7785
  msgstr ""
7786
 
7787
  #. Translators: Error status and error text.
7788
+ #: languages/vue.php:2099
7789
  msgid "Can't install addon. Error: %1$s, %2$s"
7790
  msgstr ""
7791
 
7792
+ #: languages/vue.php:2102
7793
  msgid "You appear to be offline. Addon not installed."
7794
  msgstr ""
7795
 
7796
  #. Translators: Error status and error text.
7797
+ #: languages/vue.php:2106
7798
  msgid "Can't install WPForms. Error: %1$s, %2$s"
7799
  msgstr ""
7800
 
7801
+ #: languages/vue.php:2109
7802
  msgid "Network Active"
7803
  msgstr ""
7804
 
7805
+ #: languages/vue.php:2112
7806
  msgid "Active"
7807
  msgstr ""
7808
 
7809
+ #: languages/vue.php:2115
7810
  msgid "Inactive"
7811
  msgstr ""
7812
 
7813
  #. Translators: Placeholder for the addon status (installed, active, etc).
7814
+ #: languages/vue.php:2119
7815
  msgid "Status: %s"
7816
  msgstr ""
7817
 
7818
+ #: languages/vue.php:2122
7819
  msgid "Not Installed"
7820
  msgstr ""
7821
 
7822
  #. Translators: Makes text bold and adds smiley.
7823
+ #: languages/vue.php:2126
7824
  msgid "You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
7825
  msgstr ""
7826
 
7827
  #. Translators: Makes text green.
7828
+ #: languages/vue.php:2130
7829
  msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout."
7830
  msgstr ""
7831
 
7832
+ #: languages/vue.php:2133
7833
  msgid "Unlock All Features and Upgrade to Pro"
7834
  msgstr ""
7835
 
7836
  #. Translators: Make text green and add smiley face.
7837
+ #: languages/vue.php:2137
7838
  msgid "You're using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
7839
  msgstr ""
7840
 
7841
  #. Translators: Make text green.
7842
+ #: languages/vue.php:2141
7843
  msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
7844
  msgstr ""
7845
 
7846
+ #: languages/vue.php:2144
7847
  msgid "Unlock PRO Features Now"
7848
  msgstr ""
7849
 
7850
+ #: languages/vue.php:2147
7851
  msgid "Paste your license key here"
7852
  msgstr ""
7853
 
7854
+ #: languages/vue.php:2150
7855
  msgid "Verify"
7856
  msgstr ""
7857
 
7858
  #. Translators: Add link to retrieve license from account area.
7859
+ #: languages/vue.php:2154
7860
  msgid "Already purchased? Simply enter your license key below to connect with ExactMetrics PRO! %1$sRetrieve your license key%2$s."
7861
  msgstr ""
7862
 
7863
+ #: languages/vue.php:2157
7864
+ #: languages/vue.php:3630
7865
  msgid "There was an error unlocking ExactMetrics PRO please try again or install manually."
7866
  msgstr ""
7867
 
7868
+ #: languages/vue.php:2160
7869
  msgid "%1$sAll-in-One SEO%2$s Makes SEO Simple. Gain Valuable Organic Traffic."
7870
  msgstr ""
7871
 
7872
+ #: languages/vue.php:2163
7873
  msgid "Automatically migrate all of your SEO settings with just 1 click!"
7874
  msgstr ""
7875
 
7876
+ #: languages/vue.php:2166
7877
  msgid "1,938"
7878
  msgstr ""
7879
 
7880
+ #: languages/vue.php:2169
7881
  msgid "2+ Million Active Installs"
7882
  msgstr ""
7883
 
7884
+ #: languages/vue.php:2172
7885
  msgid "AIOSEO is the DIY Solution for Managing your SEO"
7886
  msgstr ""
7887
 
7888
+ #: languages/vue.php:2175
7889
  msgid "Set up the proper SEO foundations in less than 10 minutes."
7890
  msgstr ""
7891
 
7892
+ #: languages/vue.php:2178
7893
  msgid "SEO Audit Checklist"
7894
  msgstr ""
7895
 
7896
+ #: languages/vue.php:2181
7897
  msgid "Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic."
7898
  msgstr ""
7899
 
7900
+ #: languages/vue.php:2184
7901
  msgid "Optimize Your Pages For Higher Rankings With TruSEO Score."
7902
  msgstr ""
7903
 
7904
+ #: languages/vue.php:2187
7905
  msgid "TruSEO Score gives you a more in-depth analysis into your optimization efforts than just a pass or fail. Our actionable checklist helps you to unlock maximum traffic with each page."
7906
  msgstr ""
7907
 
7908
+ #: languages/vue.php:2190
7909
  msgid "Get AIOSEO for WordPress"
7910
  msgstr ""
7911
 
7912
+ #: languages/vue.php:2193
7913
  msgid "Get the #1 Most Powerful WordPress SEO Plugin Today"
7914
  msgstr ""
7915
 
7916
+ #: languages/vue.php:2196
7917
  msgid "Try it out today, for free."
7918
  msgstr ""
7919
 
7920
+ #: languages/vue.php:2199
7921
  msgid "Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings."
7922
  msgstr ""
7923
 
7924
+ #: languages/vue.php:2202
7925
  msgid "Activate and Install the Plugin with just one click!"
7926
  msgstr ""
7927
 
7928
+ #: languages/vue.php:2205
7929
  msgid "Installing AIOSEO..."
7930
  msgstr ""
7931
 
7932
+ #: languages/vue.php:2208
7933
  msgid "Congrats! All-in-One SEO Installed."
7934
  msgstr ""
7935
 
7936
+ #: languages/vue.php:2211
7937
  msgid "Switch to AIOSEO"
7938
  msgstr ""
7939
 
7940
+ #: languages/vue.php:2214
7941
  msgid "Installation Failed. Please refresh and try again."
7942
  msgstr ""
7943
 
7944
+ #: languages/vue.php:2217
7945
  msgid "Activating AIOSEO..."
7946
  msgstr ""
7947
 
7948
+ #: languages/vue.php:2220
7949
  msgid "Activate AIOSEO"
7950
  msgstr ""
7951
 
7952
+ #: languages/vue.php:2223
7953
  msgid "Activation Failed. Please refresh and try again."
7954
  msgstr ""
7955
 
7956
+ #: languages/vue.php:2226
7957
  msgid "Unlock Form Tracking"
7958
  msgstr ""
7959
 
7960
+ #: languages/vue.php:2229
7961
  msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
7962
  msgstr ""
7963
 
7964
+ #: languages/vue.php:2232
7965
  msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
7966
  msgstr ""
7967
 
7968
+ #: languages/vue.php:2235
7969
  msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
7970
  msgstr ""
7971
 
7972
+ #: languages/vue.php:2238
7973
  msgid "Show"
7974
  msgstr ""
7975
 
7976
+ #: languages/vue.php:2241
7977
  msgid "File imported"
7978
  msgstr ""
7979
 
7980
+ #: languages/vue.php:2244
7981
  msgid "Settings successfully updated!"
7982
  msgstr ""
7983
 
7984
+ #: languages/vue.php:2247
7985
  msgid "Error importing settings"
7986
  msgstr ""
7987
 
7988
+ #: languages/vue.php:2250
7989
  msgid "Please choose a .json file generated by a ExactMetrics settings export."
7990
  msgstr ""
7991
 
7992
+ #: languages/vue.php:2253
7993
  msgid "Import/Export"
7994
  msgstr ""
7995
 
7996
+ #: languages/vue.php:2256
7997
  msgid "Import"
7998
  msgstr ""
7999
 
8000
+ #: languages/vue.php:2259
8001
  msgid "Import settings from another ExactMetrics website."
8002
  msgstr ""
8003
 
8004
+ #: languages/vue.php:2262
8005
  msgid "Export"
8006
  msgstr ""
8007
 
8008
+ #: languages/vue.php:2265
8009
  msgid "Export settings to import into another ExactMetrics install."
8010
  msgstr ""
8011
 
8012
+ #: languages/vue.php:2268
8013
  msgid "Import Settings"
8014
  msgstr ""
8015
 
8016
+ #: languages/vue.php:2271
8017
  msgid "Export Settings"
8018
  msgstr ""
8019
 
8020
+ #: languages/vue.php:2274
8021
  msgid "Please choose a file to import"
8022
  msgstr ""
8023
 
8024
+ #: languages/vue.php:2277
8025
  msgid "Click Choose file below to select the settings export file from another site."
8026
  msgstr ""
8027
 
8028
+ #: languages/vue.php:2280
8029
  msgid "Use the button below to export a file with your ExactMetrics settings."
8030
  msgstr ""
8031
 
8032
+ #: languages/vue.php:2283
8033
  msgid "Choose file"
8034
  msgstr ""
8035
 
8036
+ #: languages/vue.php:2286
8037
  msgid "No file chosen"
8038
  msgstr ""
8039
 
8040
+ #: languages/vue.php:2289
8041
  msgid "Uploading file..."
8042
  msgstr ""
8043
 
8044
+ #: languages/vue.php:2292
8045
  msgid "Custom code"
8046
  msgstr ""
8047
 
8048
  #. Translators: Adds a link to the Google reference.
8049
+ #: languages/vue.php:2296
8050
  msgid "Not for the average user: this allows you to add a line of code, to be added before the %1$spageview is sent%2$s."
8051
  msgstr ""
8052
 
8053
+ #: languages/vue.php:2302
8054
  msgid "Automatic Updates"
8055
  msgstr ""
8056
 
8057
+ #: languages/vue.php:2305
8058
  msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
8059
  msgstr ""
8060
 
8061
+ #: languages/vue.php:2308
8062
  msgid "Hide Admin Bar Reports"
8063
  msgstr ""
8064
 
8065
  #. Translators: placeholders make text small.
8066
+ #: languages/vue.php:2312
8067
  msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
8068
  msgstr ""
8069
 
8070
  #. Translators: placeholders make text small.
8071
+ #: languages/vue.php:2316
8072
  msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
8073
  msgstr ""
8074
 
8075
  #. Translators: placeholders make text small.
8076
+ #: languages/vue.php:2320
8077
  msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
8078
  msgstr ""
8079
 
8080
  #. Translators: placeholders make text small.
8081
+ #: languages/vue.php:2324
8082
  msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
8083
  msgstr ""
8084
 
8085
  #. Translators: placeholders make text small.
8086
+ #: languages/vue.php:2328
8087
  msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
8088
  msgstr ""
8089
 
8090
  #. Translators: placeholders make text small.
8091
+ #: languages/vue.php:2332
8092
  msgid "None %1$s- Manually update everything.%2$s"
8093
  msgstr ""
8094
 
8095
  #. Translators: Adds a link to the general settings tab.
8096
+ #: languages/vue.php:2336
8097
  msgid "It looks like you added a Google Analytics tracking code in the custom code area, this can potentially prevent proper tracking. If you want to use a manual UA please use the setting in the %1$sGeneral%2$s tab."
8098
  msgstr ""
8099
 
8100
+ #: languages/vue.php:2339
8101
  msgid "Permissions"
8102
  msgstr ""
8103
 
8104
+ #: languages/vue.php:2342
8105
  msgid "Export PDF Reports"
8106
  msgstr ""
8107
 
8108
+ #: languages/vue.php:2345
8109
  msgid "Allow These User Roles to See Reports"
8110
  msgstr ""
8111
 
8112
+ #: languages/vue.php:2348
8113
  msgid "Users that have at least one of these roles will be able to view the reports."
8114
  msgstr ""
8115
 
8116
+ #: languages/vue.php:2351
8117
  msgid "Allow These User Roles to Save Settings"
8118
  msgstr ""
8119
 
8120
+ #: languages/vue.php:2354
8121
  msgid "Users that have at least one of these roles will be able to view and save the settings panel."
8122
  msgstr ""
8123
 
8124
+ #: languages/vue.php:2357
8125
  msgid "Users that have at least one of these roles will be able to view and save the settings panel, along with any user with the manage_options capability."
8126
  msgstr ""
8127
 
8128
+ #: languages/vue.php:2360
8129
  msgid "Exclude These User Roles From Tracking"
8130
  msgstr ""
8131
 
8132
+ #: languages/vue.php:2363
8133
  msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
8134
  msgstr ""
8135
 
8136
+ #: languages/vue.php:2366
8137
  msgid "Make your ExactMetrics campaign links prettier with Pretty Links!"
8138
  msgstr ""
8139
 
8140
+ #: languages/vue.php:2369
8141
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links."
8142
  msgstr ""
8143
 
8144
+ #: languages/vue.php:2372
8145
  msgid "Take your ExactMetrics campaign links from our URL Builder and shorten them with Pretty Links!"
8146
  msgstr ""
8147
 
8148
+ #: languages/vue.php:2375
8149
  msgid "Over 200,000 websites use Pretty Links!"
8150
  msgstr ""
8151
 
8152
+ #: languages/vue.php:2378
8153
  msgid "Install Pretty Links"
8154
  msgstr ""
8155
 
8156
+ #: languages/vue.php:2381
8157
  msgid "Pretty Links Installed & Activated"
8158
  msgstr ""
8159
 
8160
+ #: languages/vue.php:2384
8161
  msgid "Download Pretty Links"
8162
  msgstr ""
8163
 
8164
+ #: languages/vue.php:2387
8165
  msgid "Install Pretty Links from the WordPress.org plugin repository."
8166
  msgstr ""
8167
 
8168
+ #: languages/vue.php:2390
8169
  msgid "Activate Pretty Links"
8170
  msgstr ""
8171
 
8172
+ #: languages/vue.php:2393
8173
  msgid "Activating Pretty Links..."
8174
  msgstr ""
8175
 
8176
+ #: languages/vue.php:2396
8177
  msgid "Create New Pretty Link"
8178
  msgstr ""
8179
 
8180
+ #: languages/vue.php:2399
8181
  msgid "Create a New Pretty Link"
8182
  msgstr ""
8183
 
8184
+ #: languages/vue.php:2402
8185
  msgid "Grab your campaign link and paste it into the Target URL field."
8186
  msgstr ""
8187
 
8188
+ #: languages/vue.php:2405
8189
  msgid "Custom Campaign Parameters"
8190
  msgstr ""
8191
 
8192
+ #: languages/vue.php:2408
8193
  msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
8194
  msgstr ""
8195
 
8196
+ #: languages/vue.php:2411
8197
  msgid "A custom campaign is any ad campaign not using the AdWords auto-tagging feature. When users click one of the custom links, the unique parameters are sent to your Analytics account, so you can identify the URLs that are the most effective in attracting users to your content."
8198
  msgstr ""
8199
 
8200
  #. Translators: Marks the field as required.
8201
+ #: languages/vue.php:2415
8202
  msgid "Website URL %s"
8203
  msgstr ""
8204
 
8205
  #. Translators: Display the current website url in italic.
8206
+ #: languages/vue.php:2419
8207
  msgid "The full website URL (e.g. %1$s %2$s%3$s)"
8208
  msgstr ""
8209
 
8210
  #. Translators: Marks the field as required.
8211
+ #: languages/vue.php:2423
8212
  msgid "Campaign Source %s"
8213
  msgstr ""
8214
 
8215
  #. Translators: Make the text italic.
8216
+ #: languages/vue.php:2427
8217
  msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
8218
  msgstr ""
8219
 
8220
  #. Translators: Make the text italic.
8221
+ #: languages/vue.php:2431
8222
  msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
8223
  msgstr ""
8224
 
8225
  #. Translators: Make the text italic.
8226
+ #: languages/vue.php:2435
8227
  msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
8228
  msgstr ""
8229
 
8230
+ #: languages/vue.php:2438
8231
  msgid "Enter the paid keyword"
8232
  msgstr ""
8233
 
8234
+ #: languages/vue.php:2441
8235
  msgid "Enter something to differentiate ads"
8236
  msgstr ""
8237
 
8238
+ #: languages/vue.php:2444
8239
  msgid "Use Fragment"
8240
  msgstr ""
8241
 
8242
  #. Translators: Make the text bold.
8243
+ #: languages/vue.php:2448
8244
  msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
8245
  msgstr ""
8246
 
8247
+ #: languages/vue.php:2451
8248
  msgid "URL to use"
8249
  msgstr ""
8250
 
8251
+ #: languages/vue.php:2454
8252
  msgid "(Updates automatically)"
8253
  msgstr ""
8254
 
8255
+ #: languages/vue.php:2457
8256
  msgid "Copy to Clipboard"
8257
  msgstr ""
8258
 
8259
+ #: languages/vue.php:2460
8260
  msgid "Copy to Pretty Links"
8261
  msgstr ""
8262
 
8263
+ #: languages/vue.php:2463
8264
  msgid "Make your campaign links prettier!"
8265
  msgstr ""
8266
 
8267
+ #: languages/vue.php:2466
8268
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links."
8269
  msgstr ""
8270
 
8271
+ #: languages/vue.php:2469
8272
  msgid "More Information & Examples"
8273
  msgstr ""
8274
 
8275
+ #: languages/vue.php:2472
8276
  msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
8277
  msgstr ""
8278
 
8279
+ #: languages/vue.php:2475
8280
  msgid "Campaign Source"
8281
  msgstr ""
8282
 
8283
+ #: languages/vue.php:2478
8284
  msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
8285
  msgstr ""
8286
 
8287
+ #: languages/vue.php:2481
8288
  msgid "Campaign Medium"
8289
  msgstr ""
8290
 
8291
+ #: languages/vue.php:2484
8292
  msgid "Use utm_medium to identify a medium such as email or cost-per-click."
8293
  msgstr ""
8294
 
8295
+ #: languages/vue.php:2487
8296
  msgid "Campaign Name"
8297
  msgstr ""
8298
 
8299
+ #: languages/vue.php:2490
8300
  msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
8301
  msgstr ""
8302
 
8303
+ #: languages/vue.php:2493
8304
  msgid "Campaign Term"
8305
  msgstr ""
8306
 
8307
+ #: languages/vue.php:2496
8308
  msgid "Used for paid search. Use utm_term to note the keywords for this ad."
8309
  msgstr ""
8310
 
8311
+ #: languages/vue.php:2499
8312
  msgid "Campaign Content"
8313
  msgstr ""
8314
 
8315
+ #: languages/vue.php:2502
8316
  msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
8317
  msgstr ""
8318
 
8319
  #. Translators: Example.
8320
+ #: languages/vue.php:2506
8321
  msgid "Example: %s"
8322
  msgstr ""
8323
 
8324
  #. Translators: Examples.
8325
+ #: languages/vue.php:2510
8326
  msgid "Examples: %s"
8327
  msgstr ""
8328
 
8329
+ #: languages/vue.php:2513
8330
  msgid "About Campaigns"
8331
  msgstr ""
8332
 
8333
+ #: languages/vue.php:2516
8334
  msgid "About Custom Campaigns"
8335
  msgstr ""
8336
 
8337
+ #: languages/vue.php:2519
8338
  msgid "Best Practices for Creating Custom Campaigns"
8339
  msgstr ""
8340
 
8341
+ #: languages/vue.php:2522
8342
  msgid "About the Referral Traffic Report"
8343
  msgstr ""
8344
 
8345
+ #: languages/vue.php:2525
8346
  msgid "About Traffic Source Dimensions"
8347
  msgstr ""
8348
 
8349
+ #: languages/vue.php:2528
8350
  msgid "AdWords Auto-Tagging"
8351
  msgstr ""
8352
 
8353
+ #: languages/vue.php:2531
8354
  msgid "Additional Information"
8355
  msgstr ""
8356
 
8357
+ #: languages/vue.php:2534
8358
  msgid "Affiliate Links"
8359
  msgstr ""
8360
 
8361
  #. Translators: Add links to documentation.
8362
+ #: languages/vue.php:2538
8363
  msgid "This allows you to track custom affiliate links. A path of /go/ would match urls that start with that. The label is appended onto the end of the string \"outbound-link-\", to provide unique labels for these links in Google Analytics. Complete documentation on affiliate links is available %1$shere%2$s."
8364
  msgstr ""
8365
 
8366
+ #: languages/vue.php:2541
8367
  msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
8368
  msgstr ""
8369
 
8370
+ #: languages/vue.php:2544
8371
  msgid "The ExactMetrics Headline Analyzer tool in the Gutenberg editor enables you to write irresistible SEO-friendly headlines that drive traffic, social media shares, and rank better in search results."
8372
  msgstr ""
8373
 
8374
+ #: languages/vue.php:2547
8375
  msgid "Disable the Headline Analyzer"
8376
  msgstr ""
8377
 
8378
  #. Translators: Add line break.
8379
+ #: languages/vue.php:2551
8380
  msgid "See All Your Important Store%s Metrics in One Place"
8381
  msgstr ""
8382
 
8383
+ #: languages/vue.php:2554
8384
  msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
8385
  msgstr ""
8386
 
8387
+ #: languages/vue.php:2557
8388
  msgid "See Your Conversion Rate to Improve Funnel"
8389
  msgstr ""
8390
 
8391
+ #: languages/vue.php:2560
8392
  msgid "See The Number of Transactions and Make Data-Driven Decisions"
8393
  msgstr ""
8394
 
8395
+ #: languages/vue.php:2563
8396
  msgid "See The Total Revenue to Track Growth"
8397
  msgstr ""
8398
 
8399
+ #: languages/vue.php:2566
8400
  msgid "See Average Order Value to Find Offer Opportunities"
8401
  msgstr ""
8402
 
8403
+ #: languages/vue.php:2569
8404
  msgid "See Your Top Products to See Individual Performance"
8405
  msgstr ""
8406
 
8407
+ #: languages/vue.php:2572
8408
  msgid "See your Top Conversion Sources and Focus on what's Working"
8409
  msgstr ""
8410
 
8411
+ #: languages/vue.php:2575
8412
  msgid "See The Time it Takes for Customers to Purchase"
8413
  msgstr ""
8414
 
8415
+ #: languages/vue.php:2578
8416
  msgid "See How Many Sessions are Needed for a Purchase"
8417
  msgstr ""
8418
 
8419
+ #: languages/vue.php:2581
8420
  msgid "Automatically Track Affiliate Sales"
8421
  msgstr ""
8422
 
8423
+ #: languages/vue.php:2584
8424
  msgid "The ExactMetrics eCommerce addon works with EasyAffiliate, so that you can instantly track all affiliate referrals and sales inside WordPress and Google Analytics, with no coding needed."
8425
  msgstr ""
8426
 
8427
+ #: languages/vue.php:2587
8428
  msgid "Works with WooCommerce, MemberPress, and EasyDigitalDownloads."
8429
  msgstr ""
8430
 
8431
+ #: languages/vue.php:2590
8432
  msgid "Cross Domain Tracking"
8433
  msgstr ""
8434
 
8435
  #. Translators: Add links to documentation.
8436
+ #: languages/vue.php:2594
8437
  msgid "Cross domain tracking makes it possible for Analytics to see sessions on two related sites as a single session. More info on specific setup steps can be found in our %1$sknowledge base%2$s."
8438
  msgstr ""
8439
 
8440
+ #: languages/vue.php:2597
8441
  msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
8442
  msgstr ""
8443
 
8444
+ #: languages/vue.php:2600
8445
  msgid "Anonymize IP Addresses"
8446
  msgstr ""
8447
 
8448
+ #: languages/vue.php:2603
8449
  msgid "Link Attribution"
8450
  msgstr ""
8451
 
8452
+ #: languages/vue.php:2606
8453
  msgid "Enable Enhanced Link Attribution"
8454
  msgstr ""
8455
 
8456
+ #: languages/vue.php:2609
8457
  msgid "Enable Anchor Tracking"
8458
  msgstr ""
8459
 
8460
+ #: languages/vue.php:2612
8461
  msgid "Enable allowAnchor"
8462
  msgstr ""
8463
 
8464
+ #: languages/vue.php:2615
8465
  msgid "Enable allowLinker"
8466
  msgstr ""
8467
 
8468
+ #: languages/vue.php:2618
8469
  msgid "Enable Tag Links in RSS"
8470
  msgstr ""
8471
 
8472
+ #: languages/vue.php:2621
8473
  msgid "File Downloads"
8474
  msgstr ""
8475
 
8476
+ #: languages/vue.php:2624
8477
  msgid "Extensions of Files to Track as Downloads"
8478
  msgstr ""
8479
 
8480
+ #: languages/vue.php:2627
8481
  msgid "ExactMetrics will send an event to Google Analytics if a link to a file has one of the above extensions."
8482
  msgstr ""
8483
 
8484
  #. Translators: Add links to documentation.
8485
+ #: languages/vue.php:2631
8486
  msgid "Enable this setting to add the Demographics and Remarketing features to your Google Analytics tracking code. Make sure to enable Demographics and Remarketing in your Google Analytics account. We have a guide for how to do that in our %1$sknowledge base%2$s. For more information about Remarketing, we refer you to %3$sGoogle's documentation%4$s. Note that usage of this function is affected by privacy and cookie laws around the world. Be sure to follow the laws that affect your target audience."
8487
  msgstr ""
8488
 
8489
  #. Translators: Add links to documentation.
8490
+ #: languages/vue.php:2635
8491
  msgid "This adds %1$sanonymizeIp%2$s, telling Google Analytics to anonymize the information sent by the tracker objects by removing the last octet of the IP address prior to its storage."
8492
  msgstr ""
8493
 
8494
  #. Translators: Add links to documentation.
8495
+ #: languages/vue.php:2639
8496
  msgid "Adds the Enhanced Link Attribution (retain link) code to improve the accuracy of your In-Page Analytics report by automatically differentiating between multiple links to the same URL on a single page by using link element IDs."
8497
  msgstr ""
8498
 
8499
+ #: languages/vue.php:2642
8500
  msgid "Many WordPress \"1-page\" style themes rely on anchor tags for navigation to show virtual pages. The problem is that to Google Analytics, these are all just a single page, and it makes it hard to get meaningful statistics about pages viewed. This feature allows proper tracking in those themes."
8501
  msgstr ""
8502
 
8503
  #. Translators: Add links to documentation.
8504
+ #: languages/vue.php:2646
8505
  msgid "This adds %1$sallowAnchor%2$s to the create command of the pageview hit tracking code, and makes RSS link tagging use a # as well."
8506
  msgstr ""
8507
 
8508
  #. Translators: Add links to documentation.
8509
+ #: languages/vue.php:2650
8510
  msgid "Enabling %1$scross-domain tracking (additional setup required)%2$s allows you to track users across multiple properties you own (such as example-1.com and example-2.com as a single session. It also allows you fix an issue so that when a user has to go to an off-site hosted payment gateway to finish a purchase it doesn't count it as referral traffic from that gateway but maintains the visit as part of the same session.) It is required that the other site includes a Google Analytics tracker with the same UA Code."
8511
  msgstr ""
8512
 
8513
  #. Translators: Add links to documentation.
8514
+ #: languages/vue.php:2654
8515
  msgid "Do not use this feature if you use FeedBurner, as FeedBurner can do this automatically and better than this plugin can. Check this %1$shelp page%2$s for info on how to enable this feature in FeedBurner."
8516
  msgstr ""
8517
 
8518
+ #: languages/vue.php:2657
8519
  msgid "Add domain"
8520
  msgstr ""
8521
 
8522
  #. Translators: Domain name example.
8523
+ #: languages/vue.php:2661
8524
  msgid "Domain (example: %s)"
8525
  msgstr ""
8526
 
8527
  #. Translators: Current domain name that should not be used.
8528
+ #: languages/vue.php:2665
8529
  msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
8530
  msgstr ""
8531
 
8532
  #. Translators: Adds link to the account area to retreive license key.
8533
+ #: languages/vue.php:2669
8534
  msgid "Already have a license key? Add it below to unlock ExactMetrics PRO. %1$sRetrieve your license key%2$s."
8535
  msgstr ""
8536
 
8537
+ #: languages/vue.php:2672
8538
  msgid "Connect ExactMetrics to Start Tracking Your Data"
8539
  msgstr ""
8540
 
8541
+ #: languages/vue.php:2675
8542
  msgid "Complete Upgrade"
8543
  msgstr ""
8544
 
8545
+ #: languages/vue.php:2678
8546
  msgid "Upgrade to Pro Version!"
8547
  msgstr ""
8548
 
8549
  #. Translators: Make text bold.
8550
+ #: languages/vue.php:2682
8551
  msgid "%1$sExactMetrics%2$s can automatically upgrade the installed version to the Pro and walk you through the process."
8552
  msgstr ""
8553
 
8554
+ #: languages/vue.php:2685
8555
  msgid "Install All-in-One SEO"
8556
  msgstr ""
8557
 
8558
+ #: languages/vue.php:2688
8559
  msgid "Improve Your Website Search Rankings With All-In-One SEO"
8560
  msgstr ""
8561
 
8562
+ #: languages/vue.php:2691
8563
  msgid "If you’re not using a plugin to optimize your website’s SEO you’re missing out on valuable organic traffic!"
8564
  msgstr ""
8565
 
8566
+ #: languages/vue.php:2694
8567
  msgid "Finally, a WordPress SEO Plugin that’s Easy and Powerful!"
8568
  msgstr ""
8569
 
8570
+ #: languages/vue.php:2697
8571
  msgid "AIOSEO makes it easy to set up the proper SEO foundations in less than 10 minutes."
8572
  msgstr ""
8573
 
8574
+ #: languages/vue.php:2700
8575
  msgid "Local SEO"
8576
  msgstr ""
8577
 
8578
+ #: languages/vue.php:2703
8579
  msgid "All in One SEO gives you all the tools you need to improve your local SEO and rank higher on Google Maps."
8580
  msgstr ""
8581
 
8582
+ #: languages/vue.php:2706
8583
  msgid "WooCommerce SEO"
8584
  msgstr ""
8585
 
8586
+ #: languages/vue.php:2709
8587
  msgid "Advanced eCommerce SEO support for WooCommerce to optimize product pages, product categories, and more."
8588
  msgstr ""
8589
 
8590
+ #: languages/vue.php:2712
8591
  msgid "SEO Custom User Roles"
8592
  msgstr ""
8593
 
8594
+ #: languages/vue.php:2715
8595
  msgid "SEO user roles allow you to manage access to important SEO features without handing over control of your website."
8596
  msgstr ""
8597
 
8598
+ #: languages/vue.php:2718
8599
  msgid "Google News Sitemap"
8600
  msgstr ""
8601
 
8602
+ #: languages/vue.php:2721
8603
  msgid "Get higher rankings and unlock more traffic by submitting your latest news articles to Google News."
8604
  msgstr ""
8605
 
8606
+ #: languages/vue.php:2724
8607
  msgid "Smart XML Sitemaps"
8608
  msgstr ""
8609
 
8610
+ #: languages/vue.php:2727
8611
  msgid "Automatically generate a WordPress XML sitemap and notify all search engines of any updates."
8612
  msgstr ""
8613
 
8614
+ #: languages/vue.php:2730
8615
  msgid "Social Media Integration"
8616
  msgstr ""
8617
 
8618
+ #: languages/vue.php:2733
8619
  msgid "Easily control how your content and thumbnails look on Facebook, Twitter, and other social media networks."
8620
  msgstr ""
8621
 
8622
+ #: languages/vue.php:2736
8623
  msgid "TruSEO On-Page Analysis"
8624
  msgstr ""
8625
 
8626
+ #: languages/vue.php:2739
8627
  msgid "Easily add title tags, meta descriptions, keywords, and everything else you need for proper on-page SEO optimization."
8628
  msgstr ""
8629
 
8630
+ #: languages/vue.php:2742
8631
  msgid "& Many More!"
8632
  msgstr ""
8633
 
8634
+ #: languages/vue.php:2745
8635
  msgid "Installing. Please wait.."
8636
  msgstr ""
8637
 
8638
+ #: languages/vue.php:2748
8639
  msgid "Install All-in-One-SEO"
8640
  msgstr ""
8641
 
8642
+ #: languages/vue.php:2751
8643
  msgid "Unlock the Publisher Report and Focus on the Content That Matters"
8644
  msgstr ""
8645
 
8646
+ #: languages/vue.php:2754
8647
  msgid "See Your Top Landing Pages to Improve Engagement"
8648
  msgstr ""
8649
 
8650
+ #: languages/vue.php:2757
8651
  msgid "See Your Top Exit Pages to Reduce Abandonment"
8652
  msgstr ""
8653
 
8654
+ #: languages/vue.php:2760
8655
  msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
8656
  msgstr ""
8657
 
8658
+ #: languages/vue.php:2763
8659
  msgid "See Your Top Affiliate Links and Focus on What’s Working"
8660
  msgstr ""
8661
 
8662
+ #: languages/vue.php:2766
8663
  msgid "See Your Top Downloads and Improve Conversions"
8664
  msgstr ""
8665
 
8666
+ #: languages/vue.php:2769
8667
  msgid "See Audience Demographic Report (Age / Gender / Interests)"
8668
  msgstr ""
8669
 
8670
+ #: languages/vue.php:2772
8671
  msgid "Welcome to the all-new ExactMetrics"
8672
  msgstr ""
8673
 
8674
+ #: languages/vue.php:2775
8675
  msgid "Redesigned from the ground up, ExactMetrics is built to bring a world-class analytics and reporting experience to WordPress."
8676
  msgstr ""
8677
 
8678
+ #: languages/vue.php:2778
8679
  msgid "The New & Improved ExactMetrics includes:"
8680
  msgstr ""
8681
 
8682
+ #: languages/vue.php:2781
8683
  msgid "All-New Design"
8684
  msgstr ""
8685
 
8686
+ #: languages/vue.php:2784
8687
  msgid "Better Reporting"
8688
  msgstr ""
8689
 
8690
+ #: languages/vue.php:2787
8691
  msgid "Better Tracking"
8692
  msgstr ""
8693
 
8694
+ #: languages/vue.php:2790
8695
  msgid "Better Support"
8696
  msgstr ""
8697
 
8698
+ #: languages/vue.php:2793
8699
  msgid "Continue"
8700
  msgstr ""
8701
 
8702
+ #: languages/vue.php:2796
8703
  msgid "Your settings have been automatically transferred."
8704
  msgstr ""
8705
 
8706
+ #: languages/vue.php:2799
8707
  msgid "On the next step, you will be asked to re-authenticate with Google Analytics. Please %1$ssee our detailed post%2$s to learn why we need your help. Don't worry, your tracking will continue to work as-is even if you don't do this, but re-auth is required to see analytics reports inside WordPress dashboard."
8708
  msgstr ""
8709
 
8710
+ #: languages/vue.php:2802
8711
  msgid "New"
8712
  msgstr ""
8713
 
8714
+ #: languages/vue.php:2805
8715
  msgid "Returning"
8716
  msgstr ""
8717
 
8718
+ #: languages/vue.php:2808
8719
  msgid "Top 10 Countries"
8720
  msgstr ""
8721
 
8722
+ #: languages/vue.php:2811
8723
  msgid "View Countries Report"
8724
  msgstr ""
8725
 
8726
+ #: languages/vue.php:2814
8727
  msgid "Top 10 Referrals"
8728
  msgstr ""
8729
 
8730
+ #: languages/vue.php:2817
8731
  msgid "View All Referral Sources"
8732
  msgstr ""
8733
 
8734
+ #: languages/vue.php:2820
8735
  msgid "View Full Posts/Pages Report"
8736
  msgstr ""
8737
 
8738
+ #: languages/vue.php:2823
8739
  msgid "Percentage of single-page visits (or web sessions). It is the number of visits in which a person leaves your website from the landing page without browsing any further."
8740
  msgstr ""
8741
 
8742
+ #: languages/vue.php:2826
8743
  msgid "This list shows the top countries your website visitors are from."
8744
  msgstr ""
8745
 
8746
+ #: languages/vue.php:2829
8747
  msgid "This list shows the top websites that send your website traffic, known as referral traffic."
8748
  msgstr ""
8749
 
8750
+ #: languages/vue.php:2832
8751
  msgid "This feature requires ExactMetrics Pro"
8752
  msgstr ""
8753
 
8754
+ #: languages/vue.php:2835
8755
  msgid "By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more."
8756
  msgstr ""
8757
 
8758
+ #: languages/vue.php:2838
8759
  msgid "Upgrade to Pro and Unlock Popular Products"
8760
  msgstr ""
8761
 
8762
+ #: languages/vue.php:2841
8763
  msgid "View all Pro features"
8764
  msgstr ""
8765
 
8766
+ #: languages/vue.php:2844
8767
  msgid "View notifications"
8768
  msgstr ""
8769
 
8770
+ #: languages/vue.php:2847
8771
  msgid "Days"
8772
  msgstr ""
8773
 
8774
  #. Translators: placeholders make text small.
8775
+ #: languages/vue.php:2851
8776
  msgid "7 days"
8777
  msgstr ""
8778
 
8779
+ #: languages/vue.php:2854
8780
  msgid "30 days"
8781
  msgstr ""
8782
 
8783
+ #: languages/vue.php:2857
8784
  msgid "Custom"
8785
  msgstr ""
8786
 
8787
+ #: languages/vue.php:2860
8788
  msgid "2,000,000+ use AIOSEO to Improve Their Website Search Rankings"
8789
  msgstr ""
8790
 
8791
+ #: languages/vue.php:2863
8792
  msgid "All-in-One SEO is a great product. I have been using it on all my WP sites for several years. I highly recommend it."
8793
  msgstr ""
8794
 
8795
+ #: languages/vue.php:2866
8796
  msgid "Jack Brown"
8797
  msgstr ""
8798
 
8799
+ #: languages/vue.php:2869
8800
  msgid "PJB Internet Marketing"
8801
  msgstr ""
8802
 
8803
+ #: languages/vue.php:2872
8804
  msgid "I’m a professional SEO and used many tools and extensions. Regarding simplicity, individuality and configurability All in One SEO Pro is by far the best SEO plugin out there for WordPress."
8805
  msgstr ""
8806
 
8807
+ #: languages/vue.php:2875
8808
  msgid "Joel Steinmann"
8809
  msgstr ""
8810
 
8811
+ #: languages/vue.php:2878
8812
  msgid "CEO, Solergo"
8813
  msgstr ""
8814
 
8815
+ #: languages/vue.php:2881
8816
  msgid "Only Show Posts from These Categories"
8817
  msgstr ""
8818
 
8819
+ #: languages/vue.php:2884
8820
  msgid "Choose from which categories posts will be displayed in the widget. All categories will be used if left empty."
8821
  msgstr ""
8822
 
8823
+ #: languages/vue.php:2887
8824
  msgid "Activating..."
8825
  msgstr ""
8826
 
8827
+ #: languages/vue.php:2890
8828
  msgid "Deactivating..."
8829
  msgstr ""
8830
 
8831
+ #: languages/vue.php:2893
8832
  msgid "Deactivate"
8833
  msgstr ""
8834
 
8835
+ #: languages/vue.php:2896
8836
  msgid "Search Console Report"
8837
  msgstr ""
8838
 
8839
+ #: languages/vue.php:2899
8840
  msgid "See exactly how people find tour website, which keywords they searched for, how many times the results were viewed, and more."
8841
  msgstr ""
8842
 
8843
+ #: languages/vue.php:2902
8844
  msgid "See Your Top Google Search Terms and Optimize Content"
8845
  msgstr ""
8846
 
8847
+ #: languages/vue.php:2905
8848
  msgid "See The Number of Clicks and Track Interests"
8849
  msgstr ""
8850
 
8851
+ #: languages/vue.php:2908
8852
  msgid "See The Click-Through-Ratio and Improve SEO"
8853
  msgstr ""
8854
 
8855
+ #: languages/vue.php:2911
8856
  msgid "See The Average Results Position and Focus on what works."
8857
  msgstr ""
8858
 
8859
+ #: languages/vue.php:2914
8860
  msgid "Ecommerce Report"
8861
  msgstr ""
8862
 
8863
+ #: languages/vue.php:2917
8864
  msgid "Increase your sales & revenue with insights. ExactMetrics answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value top products, top referral sources and more."
8865
  msgstr ""
8866
 
8867
+ #: languages/vue.php:2920
8868
  msgid "See Your Conversion Rate to Improve Your Funnel"
8869
  msgstr ""
8870
 
8871
+ #: languages/vue.php:2923
8872
  msgid "See Your Top Conversion Sources and Focus on What's Working"
8873
  msgstr ""
8874
 
8875
+ #: languages/vue.php:2926
8876
  msgid "Popular Posts data can be fetched correctly"
8877
  msgstr ""
8878
 
8879
+ #: languages/vue.php:2929
8880
  msgid "Please note: depending on when you set up the Custom Dimensions settings, it may take up to 7 days to see relevant Popular Posts data loading from Google Analytics."
8881
  msgstr ""
8882
 
8883
+ #: languages/vue.php:2932
8884
  msgid "Close"
8885
  msgstr ""
8886
 
8887
+ #: languages/vue.php:2935
8888
  msgid "Add Top 5 Posts from Google Analytics"
8889
  msgstr ""
8890
 
8891
+ #: languages/vue.php:2938
8892
  msgid "In order to load the top posts from Google Analytics you will need to enable the Custom Dimensions addon and set up the Post Type custom dimension in both ExactMetrics and Google Analytics settings."
8893
  msgstr ""
8894
 
8895
+ #: languages/vue.php:2941
8896
  msgid "Test Automated Posts"
8897
  msgstr ""
8898
 
8899
  #. Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc.
8900
+ #: languages/vue.php:2945
8901
  msgid "Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics."
8902
  msgstr ""
8903
 
8904
+ #: languages/vue.php:2948
8905
  msgid "Automated + Curated"
8906
  msgstr ""
8907
 
8908
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
8909
+ #: languages/vue.php:2952
8910
  msgid "Automatically add the top 5 Posts from the past 30 days to your Curated list of Posts using %1$sCustom Dimensions%2$s. Also requires Sort By - Curated to be selected. Setup steps can be found in our %3$sknowledge base%4$s."
8911
  msgstr ""
8912
 
8913
  #. Translators: Placeholder gets replaced with current license version.
8914
+ #: languages/vue.php:2956
8915
  msgid "Pro version is required."
8916
  msgstr ""
8917
 
8918
+ #: languages/vue.php:2959
8919
  msgid "Verifying Popular Posts data"
8920
  msgstr ""
8921
 
8922
+ #: languages/vue.php:2962
8923
  msgid "Multiple Entries"
8924
  msgstr ""
8925
 
8926
+ #: languages/vue.php:2965
8927
  msgid "Total Number of Widgets to Show"
8928
  msgstr ""
8929
 
8930
+ #: languages/vue.php:2968
8931
  msgid "Choose how many widgets will be placed in a single Post."
8932
  msgstr ""
8933
 
8934
+ #: languages/vue.php:2971
8935
  msgid "Minimum Distance Between Widgets"
8936
  msgstr ""
8937
 
8938
+ #: languages/vue.php:2974
8939
  msgid "Choose the distance between widgets."
8940
  msgstr ""
8941
 
8942
+ #: languages/vue.php:2977
8943
  msgid "Minimum Word Count to Display Multiple Widgets"
8944
  msgstr ""
8945
 
8946
+ #: languages/vue.php:2980
8947
  msgid "Choose the minimum word count for a Post to have multiple entries."
8948
  msgstr ""
8949
 
8950
+ #: languages/vue.php:2983
8951
  msgid "Pro version is required"
8952
  msgstr ""
8953
 
8954
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
8955
+ #: languages/vue.php:2987
8956
  msgid "Automatically add the top 5 Posts from the past 30 days to your Curated list of Posts using Custom Dimensions (Pro version required. %1$sUpgrade now%2$s)."
8957
  msgstr ""
8958
 
8959
+ #: languages/vue.php:2990
8960
  msgid "Select posts/search"
8961
  msgstr ""
8962
 
8963
+ #: languages/vue.php:2993
8964
  msgid "Oops! No posts found."
8965
  msgstr ""
8966
 
8967
+ #: languages/vue.php:2996
8968
  msgid "Search by post title"
8969
  msgstr ""
8970
 
8971
+ #: languages/vue.php:2999
8972
  msgid "Can't load posts."
8973
  msgstr ""
8974
 
8975
+ #: languages/vue.php:3002
8976
  msgid "Sartorial taxidermy venmo you probably haven't heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu."
8977
  msgstr ""
8978
 
8979
+ #: languages/vue.php:3005
8980
  msgid "Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan"
8981
  msgstr ""
8982
 
8983
+ #: languages/vue.php:3008
8984
  msgid "Color"
8985
  msgstr ""
8986
 
8987
+ #: languages/vue.php:3011
8988
  msgid "Size"
8989
  msgstr ""
8990
 
8991
+ #: languages/vue.php:3014
8992
  msgid "Title"
8993
  msgstr ""
8994
 
8995
+ #: languages/vue.php:3017
8996
  msgid "Label"
8997
  msgstr ""
8998
 
8999
+ #: languages/vue.php:3020
9000
  msgid "Background"
9001
  msgstr ""
9002
 
9003
+ #: languages/vue.php:3023
9004
  msgid "Border"
9005
  msgstr ""
9006
 
9007
+ #: languages/vue.php:3026
9008
  msgid "Icon"
9009
  msgstr ""
9010
 
9011
+ #: languages/vue.php:3029
9012
  #: lite/includes/popular-posts/class-popular-posts-widget-sidebar.php:257
9013
  msgid "Theme Preview"
9014
  msgstr ""
9015
 
9016
+ #: languages/vue.php:3032
9017
  msgid "SharedCount API Key"
9018
  msgstr ""
9019
 
9020
+ #: languages/vue.php:3035
9021
  msgid "Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing."
9022
  msgstr ""
9023
 
9024
+ #: languages/vue.php:3038
9025
  msgid "Start Indexing"
9026
  msgstr ""
9027
 
9028
+ #: languages/vue.php:3041
9029
  msgid "%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing."
9030
  msgstr ""
9031
 
9032
+ #: languages/vue.php:3044
9033
  msgid "Indexing completed, counts will update automatically every day."
9034
  msgstr ""
9035
 
9036
  #. Translators: Minimum and maximum number that can be used.
9037
+ #: languages/vue.php:3048
9038
  msgid "Please enter a value between %1$s and %2$s"
9039
  msgstr ""
9040
 
9041
  #. Translators: The minimum set value.
9042
+ #: languages/vue.php:3052
9043
  msgid "Please enter a value higher than %s"
9044
  msgstr ""
9045
 
9046
  #. Translators: The maximum set value.
9047
+ #: languages/vue.php:3056
9048
  msgid "Please enter a value lower than %s"
9049
  msgstr ""
9050
 
9051
+ #: languages/vue.php:3059
9052
  msgid "Please enter a number"
9053
  msgstr ""
9054
 
9055
+ #: languages/vue.php:3062
9056
  msgid "Value has to be a round number"
9057
  msgstr ""
9058
 
9059
+ #: languages/vue.php:3065
9060
  msgid "Author/Date"
9061
  msgstr ""
9062
 
9063
+ #: languages/vue.php:3077
9064
  msgid "Choose which content you would like displayed in the widget."
9065
  msgstr ""
9066
 
9067
+ #: languages/vue.php:3089
9068
  msgid "Comments"
9069
  msgstr ""
9070
 
9071
+ #: languages/vue.php:3095
9072
  msgid "Choose how many posts you’d like displayed in the widget."
9073
  msgstr ""
9074
 
9075
  #. Translators: Page number of total pages. 1 & 2 make the first part of the text bold.
9076
+ #: languages/vue.php:3099
9077
  msgid "%1$sPage %3$s%2$s of %4$s"
9078
  msgstr ""
9079
 
9080
+ #: languages/vue.php:3102
9081
  msgid "Wide"
9082
  msgstr ""
9083
 
9084
+ #: languages/vue.php:3105
9085
  msgid "Narrow"
9086
  msgstr ""
9087
 
9088
  #. Translators: Make text green.
9089
+ #: languages/vue.php:3109
9090
  msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
9091
  msgstr ""
9092
 
9093
+ #: languages/vue.php:3115
9094
  msgid "Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone."
9095
  msgstr ""
9096
 
9097
+ #: languages/vue.php:3118
9098
  msgid "Our email summaries feature sends a weekly summary of the most important site analytics information."
9099
  msgstr ""
9100
 
9101
+ #: languages/vue.php:3121
9102
  msgid "Usage Tracking"
9103
  msgstr ""
9104
 
9105
+ #: languages/vue.php:3124
9106
  msgid "By allowing us to track usage data we can better help you because we know with which WordPress configurations, themes and plugins we should test."
9107
  msgstr ""
9108
 
9109
+ #: languages/vue.php:3127
9110
  msgid "Allow usage tracking"
9111
  msgstr ""
9112
 
9113
  #. Translators: Adds a link to the documentation.
9114
+ #: languages/vue.php:3131
9115
  msgid "Complete documentation on usage tracking is available %1$shere%2$s."
9116
  msgstr ""
9117
 
9118
+ #: languages/vue.php:3134
9119
  msgid "Facebook Instant Articles"
9120
  msgstr ""
9121
 
9122
+ #: languages/vue.php:3137
9123
  msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to ExactMetrics Pro."
9124
  msgstr ""
9125
 
9126
+ #: languages/vue.php:3140
9127
  msgid "Performance"
9128
  msgstr ""
9129
 
9130
+ #: languages/vue.php:3143
9131
  msgid "Adjust the sample rate so you don't exceed Google Analytics' processing limit. Can also be used to enable Google Optimize for A/B testing and personalization."
9132
  msgstr ""
9133
 
9134
+ #: languages/vue.php:3146
9135
  msgid "Google AMP"
9136
  msgstr ""
9137
 
9138
+ #: languages/vue.php:3149
9139
  msgid "Want to use track users visiting your AMP pages? By upgrading to ExactMetrics Pro, you can enable AMP page tracking."
9140
  msgstr ""
9141
 
9142
+ #: languages/vue.php:3152
9143
  msgid "Ads Tracking"
9144
  msgstr ""
9145
 
9146
+ #: languages/vue.php:3155
9147
  msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
9148
  msgstr ""
9149
 
9150
+ #: languages/vue.php:3158
9151
  msgid "Unlock with %s"
9152
  msgstr ""
9153
 
9154
+ #: languages/vue.php:3161
9155
  msgid "Scroll Tracking"
9156
  msgstr ""
9157
 
9158
+ #: languages/vue.php:3164
9159
  msgid "Scroll depth tracking in web analytics is one of those things you simply must do, especially if you have a content-heavy site."
9160
  msgstr ""
9161
 
9162
+ #: languages/vue.php:3167
9163
  msgid ""
9164
  "The EU Compliance addon allows you to improve compliance with GDPR\n"
9165
  " and other privacy regulations."
9166
  msgstr ""
9167
 
9168
+ #: languages/vue.php:3171
9169
  msgid "EU Compliance"
9170
  msgstr ""
9171
 
9172
+ #: languages/vue.php:3174
9173
  msgid "Compatibility mode"
9174
  msgstr ""
9175
 
9176
+ #: languages/vue.php:3177
9177
  msgid "Enable _gtagTracker Compatibility"
9178
  msgstr ""
9179
 
9180
  #. Translators: Placeholder gets replaced with default GA js function.
9181
+ #: languages/vue.php:3181
9182
  msgid "This enables ExactMetrics to work with plugins that use %1$s and don't support %2$s"
9183
  msgstr ""
9184
 
9185
+ #: languages/vue.php:3184
9186
  msgid "It's easy to double your traffic and sales when you know exactly how people find and use your website. ExactMetrics Pro shows you the stats that matter!"
9187
  msgstr ""
9188
 
9189
+ #: languages/vue.php:3187
9190
  msgid "To unlock more features consider upgrading to PRO."
9191
  msgstr ""
9192
 
9193
+ #: languages/vue.php:3190
9194
  msgid "Upgrade to"
9195
  msgstr ""
9196
 
9197
+ #: languages/vue.php:3193
9198
  msgid "Export PDF Report"
9199
  msgstr ""
9200
 
9201
+ #: languages/vue.php:3196
9202
  msgid "You can export PDF reports only in the PRO version."
9203
  msgstr ""
9204
 
9205
+ #: languages/vue.php:3199
9206
  msgid "Display Method"
9207
  msgstr ""
9208
 
9209
+ #: languages/vue.php:3202
9210
  msgid "There are two ways to manual include the widget in your posts."
9211
  msgstr ""
9212
 
9213
+ #: languages/vue.php:3206
9214
  msgid "Using the Gutenberg Block"
9215
  msgstr ""
9216
 
9217
+ #: languages/vue.php:3209
9218
  msgid "Using the Shortcode"
9219
  msgstr ""
9220
 
9221
+ #: languages/vue.php:3212
9222
  msgid "Learn how to insert the widget using Gutenberg blocks."
9223
  msgstr ""
9224
 
9225
+ #: languages/vue.php:3215
9226
  msgid "Learn how to insert the widget using out Shortcode."
9227
  msgstr ""
9228
 
9229
+ #: languages/vue.php:3218
9230
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg"
9231
  msgstr ""
9232
 
9233
+ #: languages/vue.php:3222
9234
  msgid "%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page."
9235
  msgstr ""
9236
 
9237
+ #: languages/vue.php:3225
9238
  msgid "%1$sStep 2%2$s - Search for “Inline Popular Posts by ExactMetrics”."
9239
  msgstr ""
9240
 
9241
+ #: languages/vue.php:3229
9242
  msgid "%1$sStep 3%2$s - Style the widget using the Block Settings sidebar."
9243
  msgstr ""
9244
 
9245
+ #: languages/vue.php:3232
9246
  msgid "Shortcode"
9247
  msgstr ""
9248
 
9249
+ #: languages/vue.php:3236
9250
  msgid "Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin."
9251
  msgstr ""
9252
 
9253
+ #: languages/vue.php:3240
9254
  msgid "Copy Shortcode"
9255
  msgstr ""
9256
 
9257
+ #: languages/vue.php:3243
9258
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode"
9259
  msgstr ""
9260
 
9261
+ #: languages/vue.php:3246
9262
  msgid "Automatic Placement"
9263
  msgstr ""
9264
 
9265
+ #: languages/vue.php:3249
9266
  msgid "Display using Gutenberg Blocks"
9267
  msgstr ""
9268
 
9269
+ #: languages/vue.php:3252
9270
  msgid "Embed Options"
9271
  msgstr ""
9272
 
9273
+ #: languages/vue.php:3255
9274
  msgid "All Embed Options can be used in conjunction with one another."
9275
  msgstr ""
9276
 
9277
+ #: languages/vue.php:3258
9278
  msgid "Using Automatic Embed"
9279
  msgstr ""
9280
 
9281
+ #: languages/vue.php:3261
9282
  msgid "Learn how to insert the Popular Posts Widget into your posts and pages using Gutenberg Blocks. To style this widget, use the Gutenberg Block settings."
9283
  msgstr ""
9284
 
9285
+ #: languages/vue.php:3264
9286
  msgid "Enabling Automatic Placement will include the Popular Posts Widget after the last paragraph of any and all posts that match your Behavior settings. To style this widget use the Customize Design panel above."
9287
  msgstr ""
9288
 
9289
+ #: languages/vue.php:3267
9290
  msgid "Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above."
9291
  msgstr ""
9292
 
9293
+ #: languages/vue.php:3270
9294
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg"
9295
  msgstr ""
9296
 
9297
+ #: languages/vue.php:3273
9298
  msgid "%1$sStep 2%2$s - Search for “Popular Posts”."
9299
  msgstr ""
9300
 
9301
+ #: languages/vue.php:3276
9302
  msgid "%1$sStep 1%2$s - Navigate to your Appearance > Widgets page using the menu on the left side your screen. Must be logged in as Admin."
9303
  msgstr ""
9304
 
9305
+ #: languages/vue.php:3279
9306
  msgid "%1$sStep 2%2$s - On the left, under Available Widgets, look for the Popular Posts - ExactMetrics widget and drag it into the desired Sidebar on the right."
9307
  msgstr ""
9308
 
9309
+ #: languages/vue.php:3282
9310
  msgid "%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design."
9311
  msgstr ""
9312
 
9313
+ #: languages/vue.php:3285
9314
  msgid "Display using a Shortcode"
9315
  msgstr ""
9316
 
9317
+ #: languages/vue.php:3288
9318
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode"
9319
  msgstr ""
9320
 
9321
+ #: languages/vue.php:3291
9322
  msgid "Enable Automatic Placement"
9323
  msgstr ""
9324
 
9325
+ #: languages/vue.php:3294
9326
  msgid "Display in a Sidebar"
9327
  msgstr ""
9328
 
9329
+ #: languages/vue.php:3297
9330
  msgid "Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above."
9331
  msgstr ""
9332
 
9333
+ #: languages/vue.php:3300
9334
  msgid "Watch Video - How to Add the Popular Posts widget using Widgets"
9335
  msgstr ""
9336
 
9337
  #. Translators: The number of results.
9338
+ #: languages/vue.php:3304
9339
  msgid "%s results"
9340
  msgstr ""
9341
 
9342
+ #: languages/vue.php:3307
9343
  msgid "Media"
9344
  msgstr ""
9345
 
9346
+ #: languages/vue.php:3310
9347
  msgid "Track how your users interact with videos on your website. Upgrade to ExactMetrics Pro."
9348
  msgstr ""
9349
 
9350
+ #: languages/vue.php:3314
9351
  msgid "2021 Year in Review"
9352
  msgstr ""
9353
 
9354
+ #: languages/vue.php:3317
9355
  msgid "Media- Track how your users interact with videos on your website."
9356
  msgstr ""
9357
 
9358
+ #: languages/vue.php:3320
9359
  msgid "Your 2021 Year in Review is still calculating. Please check back later to see how your website performed last year."
9360
  msgstr ""
9361
 
9362
+ #: languages/vue.php:3323
9363
  msgid "Your 2021 Analytics Report"
9364
  msgstr ""
9365
 
9366
+ #: languages/vue.php:3329
9367
  msgid "January 1, 2021 - December 31, 2021"
9368
  msgstr ""
9369
 
9370
+ #: languages/vue.php:3332
9371
  msgid "A Tip for 2022"
9372
  msgstr ""
9373
 
9374
+ #: languages/vue.php:3335
9375
  msgid "A Tip For 2022"
9376
  msgstr ""
9377
 
9378
+ #: languages/vue.php:3338
9379
  msgid "Here's to an amazing 2022!"
9380
  msgstr ""
9381
 
9382
+ #: languages/vue.php:3341
9383
  msgid "Try our other popular WordPress plugins to grow your website in 2022."
9384
  msgstr ""
9385
 
9386
+ #: languages/vue.php:3344
9387
  msgid "Become a WordPress expert in 2022. Join our amazing communities and take your website to the next level."
9388
  msgstr ""
9389
 
9390
+ #: languages/vue.php:3347
9391
  msgid "Copyright ExactMetrics, 2022"
9392
  msgstr ""
9393
 
9394
  #. Translators: Number of minutes spent on site.
9395
+ #: languages/vue.php:3351
9396
  msgid "Each visitor spent an average of %s minutes on your website in 2021."
9397
  msgstr ""
9398
 
9399
  #. Translators: Placeholders are used for making text bold and adding a link.
9400
+ #: languages/vue.php:3355
9401
  msgid "%1$sYou're using %2$s Lite%3$s. To unlock all reports, consider %4$supgrading to Pro%5$s."
9402
  msgstr ""
9403
 
9404
+ #: languages/vue.php:3358
9405
  msgid "With ExactMetrics Pro, you can easily measure individual affiliate performance inside Google Analytics, no coding needed. Track clicks, revenue, and more."
9406
  msgstr ""
9407
 
9408
+ #: languages/vue.php:3361
9409
  msgid "RafflePress"
9410
  msgstr ""
9411
 
9412
+ #: languages/vue.php:3364
9413
  msgid "Launch giveaways and raffle campaigns to grow your email lists, increase traffic, and get more social media followers."
9414
  msgstr ""
9415
 
9416
+ #: languages/vue.php:3367
9417
  msgid "Constant Contact"
9418
  msgstr ""
9419
 
9420
+ #: languages/vue.php:3370
9421
  msgid "Create amazing email marketing campaigns with drag and drop simplicity. Exclusive Offer: Save 20%."
9422
  msgstr ""
9423
 
9424
+ #: languages/vue.php:3373
9425
  msgid "SEMRUSH"
9426
  msgstr ""
9427
 
9428
+ #: languages/vue.php:3376
9429
  msgid "Perform SEO and content marketing research, track keywords, and much more. Special Offer: First 30 Days Free."
9430
  msgstr ""
9431
 
9432
+ #: languages/vue.php:3379
9433
  msgid "Engagement Tools"
9434
  msgstr ""
9435
 
9436
+ #: languages/vue.php:3382
9437
  msgid "WPForms"
9438
  msgstr ""
9439
 
9440
+ #: languages/vue.php:3385
9441
  msgid "The world’s most popular WordPress form builder, trusted by over 5 million websites. Easily build contact forms, payment forms, and more."
9442
  msgstr ""
9443
 
9444
+ #: languages/vue.php:3388
9445
  msgid "OptinMonster"
9446
  msgstr ""
9447
 
9448
+ #: languages/vue.php:3391
9449
  msgid "Convert and monetize more of your website traffic with engaging pop-up and gamified tools. Great for all types of websites."
9450
  msgstr ""
9451
 
9452
+ #: languages/vue.php:3394
9453
  msgid "Smash Balloon - Facebook"
9454
  msgstr ""
9455
 
9456
+ #: languages/vue.php:3397
9457
  msgid "Smash Balloon - Instagram"
9458
  msgstr ""
9459
 
9460
+ #: languages/vue.php:3400
9461
  msgid "Quickly add social media feeds from Facebook, Instagram, Twitter, and others to your website, with no coding needed."
9462
  msgstr ""
9463
 
9464
+ #: languages/vue.php:3403
9465
  msgid "Popular Posts by ExactMetrics"
9466
  msgstr ""
9467
 
9468
+ #: languages/vue.php:3406
9469
  msgid "Increase your visitor engagement by automatically embedding popular and related content from your website."
9470
  msgstr ""
9471
 
9472
+ #: languages/vue.php:3409
9473
  msgid "Popular Products by ExactMetrics"
9474
  msgstr ""
9475
 
9476
+ #: languages/vue.php:3412
9477
  msgid "Automatically show related products to increase conversion rates and increase cart sizes on your eCommerce website."
9478
  msgstr ""
9479
 
9480
+ #: languages/vue.php:3415
9481
  msgid "Revenue Tools"
9482
  msgstr ""
9483
 
9484
+ #: languages/vue.php:3418
9485
  msgid "SeedProd"
9486
  msgstr ""
9487
 
9488
+ #: languages/vue.php:3421
9489
  msgid "Use the best drag-and-drop landing page builder for WordPress to instantly build coming soon pages, sales pages, opt-in pages, webinar pages, maintenance pages, and more. Includes 100+ free templates."
9490
  msgstr ""
9491
 
9492
+ #: languages/vue.php:3424
9493
  msgid "Featured Tools"
9494
  msgstr ""
9495
 
9496
+ #: languages/vue.php:3427
9497
  msgid "Easy Affiliate"
9498
  msgstr ""
9499
 
9500
+ #: languages/vue.php:3430
9501
  msgid "Launch, grow, and manage an affiliate program, all right from your WordPress dashboard. Works automatically with ExactMetrics."
9502
  msgstr ""
9503
 
9504
+ #: languages/vue.php:3433
9505
  msgid "SearchWP"
9506
  msgstr ""
9507
 
9508
+ #: languages/vue.php:3436
9509
  msgid "Unlock better search results for your website. Perfect for any information or eCommerce store to help users find exactly what content and products they’re looking for."
9510
  msgstr ""
9511
 
9512
+ #: languages/vue.php:3439
9513
  msgid "Easy Digital Downloads"
9514
  msgstr ""
9515
 
9516
+ #: languages/vue.php:3442
9517
  msgid "Easily sell digital products like ebooks, plugins, and courses with WordPress. Built-in payment processing, coupons, shopping cart, detailed reporting, and more."
9518
  msgstr ""
9519
 
9520
+ #: languages/vue.php:3445
9521
  msgid "MemberPress"
9522
  msgstr ""
9523
 
9524
+ #: languages/vue.php:3448
9525
  msgid "Create a membership website. Works automatically with ExactMetrics, no coding needed."
9526
  msgstr ""
9527
 
9528
+ #: languages/vue.php:3451
9529
  msgid "Thirsty Affiliates"
9530
  msgstr ""
9531
 
9532
+ #: languages/vue.php:3454
9533
  msgid "Manage all your affiliate links with features designed to help make bloggers more money."
9534
  msgstr ""
9535
 
9536
+ #: languages/vue.php:3457
9537
  msgid "Upgrade to unlock advanced reporting and features designed to help you get more traffic and make more money from your website. Special Offer: Save 50% today."
9538
  msgstr ""
9539
 
9540
+ #: languages/vue.php:3460
9541
  msgid "Advanced Coupons"
9542
  msgstr ""
9543
 
9544
+ #: languages/vue.php:3463
9545
  msgid "Create coupons, reward loyal customers, and schedule promotions for your eCommerce store."
9546
  msgstr ""
9547
 
9548
+ #: languages/vue.php:3466
9549
  msgid "PrettyLinks"
9550
  msgstr ""
9551
 
9552
+ #: languages/vue.php:3469
9553
  msgid "Automatically monetize your website content with affiliate links added automatically to your content."
9554
  msgstr ""
9555
 
9556
+ #: languages/vue.php:3472
9557
  msgid "Install Now"
9558
  msgstr ""
9559
 
9560
+ #: languages/vue.php:3475
9561
  msgid "Online Marketing Guides & Resources"
9562
  msgstr ""
9563
 
9564
+ #: languages/vue.php:3478
9565
  msgid "Read This Guide"
9566
  msgstr ""
9567
 
9568
+ #: languages/vue.php:3484
9569
  msgid "Upgrade to unlock eCommerce tracking, Custom Dimensions, Form Tracking, and much more. Special Offer: Save 50% today."
9570
  msgstr ""
9571
 
9572
+ #: languages/vue.php:3487
9573
  msgid "Traffic Tools"
9574
  msgstr ""
9575
 
9576
+ #: languages/vue.php:3490
9577
  msgid "All in One SEO (AIOSEO)"
9578
  msgstr ""
9579
 
9580
+ #: languages/vue.php:3493
9581
  msgid "The best WordPress SEO plugin that works automatically with ExactMetrics."
9582
  msgstr ""
9583
 
9584
+ #: languages/vue.php:3496
9585
  msgid "PushEngage"
9586
  msgstr ""
9587
 
9588
+ #: languages/vue.php:3499
9589
  msgid "Send push notifications to your visitors to drive more traffic and boost sales."
9590
  msgstr ""
9591
 
9592
+ #: languages/vue.php:3502
9593
  msgid "Featured"
9594
  msgstr ""
9595
 
9596
+ #: languages/vue.php:3505
9597
  msgid "Traffic"
9598
  msgstr ""
9599
 
9600
+ #: languages/vue.php:3508
9601
  msgid "Revenue"
9602
  msgstr ""
9603
 
9604
+ #: languages/vue.php:3511
9605
  msgid "Guides & Resources"
9606
  msgstr ""
9607
 
9608
+ #: languages/vue.php:3514
9609
  msgid "Media Tracking"
9610
  msgstr ""
9611
 
9612
+ #: languages/vue.php:3517
9613
  msgid "Get Started"
9614
  msgstr ""
9615
 
9616
+ #: languages/vue.php:3520
9617
  msgid "Privacy Compliance Addon"
9618
  msgstr ""
9619
 
9620
+ #: languages/vue.php:3523
9621
  msgid "Help Google Analytics become compliant with internet privacy laws like GDPR, PECR, and CCPA."
9622
  msgstr ""
9623
 
9624
+ #: languages/vue.php:3526
9625
  msgid "Get access to advanced reports inside WordPress including search keywords report, real-time analytics dashboard, publishers / eCommerce report, custom dimensions, and more."
9626
  msgstr ""
9627
 
9628
+ #: languages/vue.php:3529
9629
  msgid "Instantly enable enhanced eCommerce tracking, so you can measure conversions, sales, and revenue stats. Works with WooCommerce, Easy Digital Downloads, MemberPress, and more."
9630
  msgstr ""
9631
 
9632
+ #: languages/vue.php:3532
9633
  msgid "20+ Advanced Tracking"
9634
  msgstr ""
9635
 
9636
+ #: languages/vue.php:3535
9637
  msgid "Get access to advanced tracking features like form conversion tracking, author tracking, custom dimensions, scroll tracking, and more."
9638
  msgstr ""
9639
 
9640
+ #: languages/vue.php:3538
9641
  msgid "Advanced Growth Tools"
9642
  msgstr ""
9643
 
9644
+ #: languages/vue.php:3541
9645
  msgid "Get access to advanced growth tools such as popular posts addon, A/B testing tool, smart URL builder, and more."
9646
  msgstr ""
9647
 
9648
+ #: languages/vue.php:3544
9649
  msgid "Track how your users interact with videos on your website."
9650
  msgstr ""
9651
 
9652
+ #: languages/vue.php:3547
9653
  msgid "Error Processing"
9654
  msgstr ""
9655
 
9656
+ #: languages/vue.php:3550
9657
  msgid "There was an error while processing some features. Please try again or you can skip this process for now"
9658
  msgstr ""
9659
 
9660
+ #: languages/vue.php:3553
9661
  msgid "Which website features would you like to enable?"
9662
  msgstr ""
9663
 
9664
+ #: languages/vue.php:3556
9665
  msgid "We’ve already selected our recommended features based on your site. "
9666
  msgstr ""
9667
 
9668
+ #: languages/vue.php:3559
9669
  msgid "Other Addons"
9670
  msgstr ""
9671
 
9672
+ #: languages/vue.php:3562
9673
  msgid "View all ExactMetrics addons"
9674
  msgstr ""
9675
 
9676
+ #: languages/vue.php:3565
9677
  msgid "Standard Analytics & Reports"
9678
  msgstr ""
9679
 
9680
+ #: languages/vue.php:3568
9681
  msgid "Get the reports and stats that matter right inside your WordPress Dashboard."
9682
  msgstr ""
9683
 
9684
+ #: languages/vue.php:3571
9685
  msgid "Helps you see what links your users are clicking on your site."
9686
  msgstr ""
9687
 
9688
+ #: languages/vue.php:3574
9689
  msgid "All In One SEO Toolkit"
9690
  msgstr ""
9691
 
9692
+ #: languages/vue.php:3577
9693
  msgid "The best WordPress SEO plugin that works with ExactMetrics to boost your rankings."
9694
  msgstr ""
9695
 
9696
+ #: languages/vue.php:3580
9697
  msgid "Smart Form Builder by WPForms"
9698
  msgstr ""
9699
 
9700
+ #: languages/vue.php:3583
9701
  msgid "The most popular WordPress form plugin, trusted by over 5 million websites. Easily create contact forms, payment forms, surveys and more."
9702
  msgstr ""
9703
 
9704
+ #: languages/vue.php:3586
9705
  msgid "Awesome! Tracking and Analytics are All Setup!"
9706
  msgstr ""
9707
 
9708
+ #: languages/vue.php:3589
9709
  msgid "ExactMetrics is connected to Google Analytics and data is being collected."
9710
  msgstr ""
9711
 
9712
+ #: languages/vue.php:3596
9713
  msgid "Complete Setup without Upgrading"
9714
  msgstr ""
9715
 
9716
+ #: languages/vue.php:3599
9717
  msgid "Success"
9718
  msgstr ""
9719
 
9720
+ #: languages/vue.php:3602
9721
  msgid "Connected to Google Analytics"
9722
  msgstr ""
9723
 
9724
+ #: languages/vue.php:3605
9725
  msgid "Tracking Code Installed"
9726
  msgstr ""
9727
 
9728
+ #: languages/vue.php:3608
9729
  msgid "Data Being Collected"
9730
  msgstr ""
9731
 
9732
  #. Translators: Add link to retrieve license from account area.
9733
+ #: languages/vue.php:3612
9734
  msgid "Already purchased? Simply enter your license key below to connect with ExactMetrics PRO!"
9735
  msgstr ""
9736
 
9737
+ #: languages/vue.php:3615
9738
  msgid "Verify License Key"
9739
  msgstr ""
9740
 
9741
+ #: languages/vue.php:3618
9742
  msgid "Upgrade to Unlock These Features"
9743
  msgstr ""
9744
 
9745
+ #: languages/vue.php:3621
9746
  msgid "To unlock the selected features, please upgrade to Pro and enter your license key below."
9747
  msgstr ""
9748
 
9749
+ #: languages/vue.php:3624
9750
  msgid "%1$sBonus:%2$s Upgrade today and save %3$s50%% on a Pro License!%4$s (auto-applied at checkout)"
9751
  msgstr ""
9752
 
9753
+ #: languages/vue.php:3627
9754
  msgid "Verifying License..."
9755
  msgstr ""
9756
 
9757
+ #: languages/vue.php:3633
9758
+ msgid "The following plugins will be installed: "
9759
+ msgstr ""
9760
+
9761
  #: lite/includes/admin/connect.php:42
9762
  msgid "You are not allowed to install plugins."
9763
  msgstr ""
languages/vue.php CHANGED
@@ -10,8 +10,8 @@ $generated_i18n_strings = array(
10
  // Reference: src/plugins/exactmetrics-settings-helper-plugin.js:116
11
  __( 'Loading Settings', 'google-analytics-dashboard-for-wp' ),
12
 
13
- // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:53
14
- // Reference: src/plugins/exactmetrics-settings-helper-plugin.js:117
15
  __( 'Please wait...', 'google-analytics-dashboard-for-wp' ),
16
 
17
  // Reference: src/plugins/exactmetrics-settings-helper-plugin.js:20
@@ -30,14 +30,17 @@ $generated_i18n_strings = array(
30
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:129
31
  __( 'Loading new report data', 'google-analytics-dashboard-for-wp' ),
32
 
33
- // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:285
34
- /* Translators: Placeholder gets replaced with an arrow icon. */
35
  __( 'Continue %s', 'google-analytics-dashboard-for-wp' ),
36
 
37
  // Reference: src/modules/reports/components/ReportReAuth.vue:45
 
 
 
38
  __( 'Error', 'google-analytics-dashboard-for-wp' ),
39
 
40
- // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:16
41
  __( 'Please try again.', 'google-analytics-dashboard-for-wp' ),
42
 
43
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:181
@@ -49,7 +52,7 @@ $generated_i18n_strings = array(
49
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:185
50
  __( 'Unlock the Publishers Report and Focus on the Content That Matters', 'google-analytics-dashboard-for-wp' ),
51
 
52
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:32
53
  __( 'Stop guessing about what content your visitors are interested in. The Publisher Report shows you exactly which content gets the most traffic, so you can analyze and optimize it for higher conversions.', 'google-analytics-dashboard-for-wp' ),
54
 
55
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:189
@@ -64,11 +67,9 @@ $generated_i18n_strings = array(
64
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:194
65
  __( 'Decide what data is important using your own custom tracking parameters. The Dimensions report allows you to easily see what\'s working right inside your WordPress dashboard.', 'google-analytics-dashboard-for-wp' ),
66
 
67
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:31
68
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:197
69
  __( 'Unlock the Forms Report and Improve Conversions', 'google-analytics-dashboard-for-wp' ),
70
 
71
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:32
72
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:198
73
  __( 'Easily track your form views and conversions. The Forms Report allows you to see which forms are performing better and which forms have lower conversion rates so you can optimize using real data.', 'google-analytics-dashboard-for-wp' ),
74
 
@@ -79,35 +80,34 @@ $generated_i18n_strings = array(
79
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:202
80
  __( 'See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more.', 'google-analytics-dashboard-for-wp' ),
81
 
82
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:31
83
  __( 'Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time', 'google-analytics-dashboard-for-wp' ),
84
 
85
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:206
86
  __( 'Track the results of your marketing efforts and product launches as-it-happens right from your WordPress site. The Real-Time report allows you to view your traffic sources and visitors activity when you need it.', 'google-analytics-dashboard-for-wp' ),
87
 
88
- // Reference: src/modules/reports/components/reports/exactmetrics-SiteSpeed-Lite.vue:31
89
  __( 'Unlock the Site Speed Report and Improve the Performance of Your Site', 'google-analytics-dashboard-for-wp' ),
90
 
91
- // Reference: src/modules/reports/components/reports/exactmetrics-SiteSpeed-Lite.vue:32
92
  __( 'See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking', 'google-analytics-dashboard-for-wp' ),
93
 
94
- // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:42
95
  __( 'Today', 'google-analytics-dashboard-for-wp' ),
96
 
97
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:67
98
- // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:48
99
  __( 'Yesterday', 'google-analytics-dashboard-for-wp' ),
100
 
101
- // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:54
102
  __( 'Last Week', 'google-analytics-dashboard-for-wp' ),
103
 
104
- // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:60
105
  __( 'Last Month', 'google-analytics-dashboard-for-wp' ),
106
 
107
- // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:66
108
  __( 'Last 7 days', 'google-analytics-dashboard-for-wp' ),
109
 
110
- // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:72
111
  __( 'Last 30 days', 'google-analytics-dashboard-for-wp' ),
112
 
113
  // Reference: src/plugins/exactmetrics-wizard-helper-plugin.js:19
@@ -125,7 +125,6 @@ $generated_i18n_strings = array(
125
  __( 'See the full analytics report!', 'google-analytics-dashboard-for-wp' ),
126
 
127
  // Reference: src/modules/widget/store/index.js:14
128
- // Reference: src/modules/widget/widget.vue:25
129
  __( 'Overview Report', 'google-analytics-dashboard-for-wp' ),
130
 
131
  // Reference: src/plugins/exactmetrics-compatibility-plugin.js:13
@@ -156,13 +155,12 @@ $generated_i18n_strings = array(
156
  // Reference: src/plugins/exactmetrics-compatibility-plugin.js:59
157
  __( 'Learn more about updating WordPress', 'google-analytics-dashboard-for-wp' ),
158
 
159
- // Reference: src/modules/about/components/AboutNavigation-Lite.vue:15
160
  __( 'About Us', 'google-analytics-dashboard-for-wp' ),
161
 
162
- // Reference: src/modules/about/components/AboutNavigation-Lite.vue:16
163
  __( 'Getting Started', 'google-analytics-dashboard-for-wp' ),
164
 
165
- // Reference: src/modules/about/components/AboutNavigation-Lite.vue:17
166
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:60
167
  __( 'Lite vs Pro', 'google-analytics-dashboard-for-wp' ),
168
 
@@ -183,110 +181,111 @@ $generated_i18n_strings = array(
183
  // Reference: src/modules/reports/api/index.js:28
184
  __( 'Error loading report data', 'google-analytics-dashboard-for-wp' ),
185
 
186
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:154
187
- /* Translators: Makes the text bold. */
188
  __( '%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code).', 'google-analytics-dashboard-for-wp' ),
189
 
190
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:159
191
- /* Translators: Makes the text bold. */
192
  __( '%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights.', 'google-analytics-dashboard-for-wp' ),
193
 
194
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:164
195
- /* Translators: Makes the text bold. */
196
  __( '%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more.', 'google-analytics-dashboard-for-wp' ),
197
 
198
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:117
199
  /* Translators: Makes text bold. */
200
  __( '%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress.', 'google-analytics-dashboard-for-wp' ),
201
 
202
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:174
203
- /* Translators: Makes the text bold. */
204
  __( '%1$sPage Level Analytics%2$s - Get detailed stats for each post and page, so you can see the most popular posts, pages, and sections of your site.', 'google-analytics-dashboard-for-wp' ),
205
 
206
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:179
207
- /* Translators: Makes the text bold. */
208
  __( '%1$sAffiliate Link & Ads Tracking%2$s - Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking.', 'google-analytics-dashboard-for-wp' ),
209
 
210
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:184
211
- /* Translators: Makes the text bold. */
212
  __( '%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically.', 'google-analytics-dashboard-for-wp' ),
213
 
214
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:137
215
  /* Translators: Makes text bold. */
216
  __( '%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click.', 'google-analytics-dashboard-for-wp' ),
217
 
218
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:194
219
- /* Translators: Adds a link and an arrow icon. */
220
  __( '%1$sSee All Features%2$s', 'google-analytics-dashboard-for-wp' ),
221
 
222
- // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:11
223
  __( 'Pro Plan', 'google-analytics-dashboard-for-wp' ),
224
 
225
- // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:12
226
  __( 'per year', 'google-analytics-dashboard-for-wp' ),
227
 
228
- // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:46
229
  // Reference: src/modules/reports/components/reports-overview/ReportOverviewUpsellMobile-Lite.vue:22
230
- // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:13
231
  __( 'Upgrade Now', 'google-analytics-dashboard-for-wp' ),
232
 
233
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:148
234
  __( 'Upgrade to ExactMetrics Pro Now', 'google-analytics-dashboard-for-wp' ),
235
 
236
- // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:33
237
  __( 'This is absolutely, positively, one of the TOP plugins to install on your WP site. There is no better way to quickly gauge traffic for spikes, surges, and consistency. I installed this on over a dozen WordPress installations and counting, thank you for an outstanding app!', 'google-analytics-dashboard-for-wp' ),
238
 
239
- // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:34
240
  __( 'Daniel Monaghan - Experienced', 'google-analytics-dashboard-for-wp' ),
241
 
242
- // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:38
243
  __( 'Very simple to configure and the results are very clearly displayed. So much easier for clients to view than in their own analytics account! Delighted with it.', 'google-analytics-dashboard-for-wp' ),
244
 
245
- // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:39
246
  __( 'Naomi Spirit - From This Day', 'google-analytics-dashboard-for-wp' ),
247
 
248
- // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:43
249
  __( 'Love this plugin! It’s got powerful customization options, it’s easy to use, there’s good documentation, and if all that’s not enough, ExactMetrics is quick to provide support. Thanks for this wonderful plugin!', 'google-analytics-dashboard-for-wp' ),
250
 
251
- // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:44
252
  __( 'Julie Dupuis - Faraway Land Travel', 'google-analytics-dashboard-for-wp' ),
253
 
254
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:218
255
  __( 'Guides and Documentation:', 'google-analytics-dashboard-for-wp' ),
256
 
257
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:36
258
- // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:15
 
259
  __( 'Upgrade to PRO', 'google-analytics-dashboard-for-wp' ),
260
 
261
- // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:17
262
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:132
263
  __( 'eCommerce Tracking', 'google-analytics-dashboard-for-wp' ),
264
 
265
- // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:18
266
  __( 'Custom Dimensions', 'google-analytics-dashboard-for-wp' ),
267
 
268
- // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:19
269
  __( 'Form Tracking', 'google-analytics-dashboard-for-wp' ),
270
 
271
- // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:20
272
  __( 'AMP Support', 'google-analytics-dashboard-for-wp' ),
273
 
274
- // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:21
275
  __( 'Author Tracking', 'google-analytics-dashboard-for-wp' ),
276
 
277
- // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:24
278
  __( 'EU Compliance Addon', 'google-analytics-dashboard-for-wp' ),
279
 
280
- // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:25
281
  __( 'Real Time Report', 'google-analytics-dashboard-for-wp' ),
282
 
283
- // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:26
284
  __( 'Google Optimize', 'google-analytics-dashboard-for-wp' ),
285
 
286
- // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:27
 
287
  __( 'Search Console', 'google-analytics-dashboard-for-wp' ),
288
 
289
- // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:28
290
  __( 'Custom Date Ranges', 'google-analytics-dashboard-for-wp' ),
291
 
292
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:84
@@ -295,46 +294,43 @@ $generated_i18n_strings = array(
295
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:85
296
  __( 'ExactMetrics is the easiest analytics solution on the market to get started with, as we walk you through exactly what you need to do, in plain english, using our 3 minute setup wizard.', 'google-analytics-dashboard-for-wp' ),
297
 
298
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:87
299
  __( 'To begin with, we’ll get your site authorized with Google Analytics, so we can start tracking and generating reports for you right away.', 'google-analytics-dashboard-for-wp' ),
300
 
301
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:88
302
  __( 'In no time at all, and after just a few clicks, you\'ll have setup the most powerful Google Analytics tracking available for WordPress. It\'s easy to double your traffic and sales when you know exactly how people find and use your website. Let\'s get started!.', 'google-analytics-dashboard-for-wp' ),
303
 
304
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:89
305
  __( 'Launch the wizard!', 'google-analytics-dashboard-for-wp' ),
306
 
307
- // Reference: src/components/ContentIntroFullWidth.vue:46
308
  __( 'Welcome to', 'google-analytics-dashboard-for-wp' ),
309
 
310
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:144
311
  /* Translators: Adds a line break. */
312
  __( 'Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin', 'google-analytics-dashboard-for-wp' ),
313
 
314
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:146
315
- /* Translators: Makes the product name bold. */
316
  __( '%1$sExactMetrics%2$s makes it “effortless” to setup Google Analytics in WordPress, the RIGHT Way. You can watch the video tutorial or use our 3 minute setup wizard.', 'google-analytics-dashboard-for-wp' ),
317
 
318
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:148
319
  __( 'ExactMetrics Features & Addons', 'google-analytics-dashboard-for-wp' ),
320
 
321
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:149
322
  __( 'Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market.', 'google-analytics-dashboard-for-wp' ),
323
 
324
  // Reference: src/modules/widget/components/WidgetFooter.vue:19
325
  /* Translators: Placeholder is replaced with WPForms. */
326
  __( 'Recommended Plugin: %s', 'google-analytics-dashboard-for-wp' ),
327
 
328
- // Reference: src/modules/addons/components/AddonButton.vue:54
329
  // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:42
330
  __( 'Install', 'google-analytics-dashboard-for-wp' ),
331
 
332
- // Reference: src/modules/addons/components/AddonButton.vue:50
333
  // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:38
334
  __( 'Activate', 'google-analytics-dashboard-for-wp' ),
335
 
336
  // Reference: src/modules/frontend/components/FrontendNoAuth.vue:27
337
- // Reference: src/modules/widget/components/WidgetFooter.vue:22
338
  __( 'Learn More', 'google-analytics-dashboard-for-wp' ),
339
 
340
  // Reference: src/modules/reports/components/ReportReAuth.vue:19
@@ -350,7 +346,8 @@ $generated_i18n_strings = array(
350
  __( 'Re-Authenticating', 'google-analytics-dashboard-for-wp' ),
351
 
352
  // Reference: src/modules/reports/components/ReportReAuth.vue:47
353
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:309
 
354
  __( 'Ok', 'google-analytics-dashboard-for-wp' ),
355
 
356
  // Reference: src/modules/addons/components/AddonsNavigation.vue:18
@@ -437,6 +434,7 @@ $generated_i18n_strings = array(
437
  // Reference: src/modules/widget/store/index.js:71
438
  __( 'This list shows the download links your visitors clicked the most.', 'google-analytics-dashboard-for-wp' ),
439
 
 
440
  // Reference: src/modules/widget/store/index.js:77
441
  __( 'Overview', 'google-analytics-dashboard-for-wp' ),
442
 
@@ -458,7 +456,7 @@ $generated_i18n_strings = array(
458
  // Reference: src/modules/widget/components/exactmetrics-WidgetAccordion-Lite.vue:218
459
  __( 'Analytics', 'google-analytics-dashboard-for-wp' ),
460
 
461
- // Reference: src/modules/widget/components/settings/exactmetrics-WidgetFullReportButton.vue:16
462
  /* Translators: Adds an arrow icon. */
463
  __( 'View All Reports %s', 'google-analytics-dashboard-for-wp' ),
464
 
@@ -468,8 +466,6 @@ $generated_i18n_strings = array(
468
  // Reference: src/modules/reports/components/ReportNoAuth.vue:26
469
  __( 'ExactMetrics makes it "effortless" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard.', 'google-analytics-dashboard-for-wp' ),
470
 
471
- // Reference: src/modules/reports/components/ReportNoAuth.vue:27
472
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:79
473
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:124
474
  __( 'Launch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
475
 
@@ -501,23 +497,21 @@ $generated_i18n_strings = array(
501
  // Reference: src/components/TheQuickLinks.vue:78
502
  __( 'Upgrade to Pro &#187;', 'google-analytics-dashboard-for-wp' ),
503
 
504
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:30
505
  __( 'Publishers', 'google-analytics-dashboard-for-wp' ),
506
 
507
- // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:44
508
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:69
509
  __( 'eCommerce', 'google-analytics-dashboard-for-wp' ),
510
 
511
  // Reference: src/modules/reports/routes/exactmetrics-routes.js:57
512
  __( 'Dimensions Report', 'google-analytics-dashboard-for-wp' ),
513
 
514
- // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:47
515
  __( 'Forms', 'google-analytics-dashboard-for-wp' ),
516
 
517
- // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:48
518
  __( 'Real-Time', 'google-analytics-dashboard-for-wp' ),
519
 
520
- // Reference: src/modules/reports/components/reports/exactmetrics-SiteSpeed-Lite.vue:30
521
  // Reference: src/modules/reports/routes/exactmetrics-routes.js:81
522
  __( 'Site Speed Report', 'google-analytics-dashboard-for-wp' ),
523
 
@@ -546,20 +540,19 @@ $generated_i18n_strings = array(
546
  // Reference: src/modules/settings/routes/site.js:200
547
  __( 'Sub menu item for WooCommerce Analytics', 'google-analytics-dashboard-for-wp' ),
548
 
549
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:67
550
  __( 'General', 'google-analytics-dashboard-for-wp' ),
551
 
552
  // Reference: src/modules/growth-tools/components/GrowthNavigation.vue:19
553
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:68
554
  __( 'Engagement', 'google-analytics-dashboard-for-wp' ),
555
 
556
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:70
557
  __( 'Publisher', 'google-analytics-dashboard-for-wp' ),
558
 
559
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:71
560
  __( 'Conversions', 'google-analytics-dashboard-for-wp' ),
561
 
562
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:72
563
  __( 'Advanced', 'google-analytics-dashboard-for-wp' ),
564
 
565
  // Reference: src/modules/tools/components/ToolsNavigation.vue:15
@@ -607,6 +600,7 @@ $generated_i18n_strings = array(
607
  __( 'View Addons', 'google-analytics-dashboard-for-wp' ),
608
 
609
  // Reference: src/modules/notifications/components/Notification.vue:34
 
610
  __( 'Dismiss', 'google-analytics-dashboard-for-wp' ),
611
 
612
  // Reference: src/modules/reports/store/actions.js:219
@@ -615,12 +609,15 @@ $generated_i18n_strings = array(
615
  // Reference: src/modules/reports/store/actions.js:220
616
  __( 'Please wait', 'google-analytics-dashboard-for-wp' ),
617
 
 
618
  // Reference: src/modules/reports/store/actions.js:57
619
  __( 'activate', 'google-analytics-dashboard-for-wp' ),
620
 
 
621
  // Reference: src/modules/reports/store/actions.js:57
622
  __( 'install', 'google-analytics-dashboard-for-wp' ),
623
 
 
624
  // Reference: src/modules/reports/store/actions.js:61
625
  __( 'Visit addons page', 'google-analytics-dashboard-for-wp' ),
626
 
@@ -650,7 +647,7 @@ $generated_i18n_strings = array(
650
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:33
651
  __( 'Let\'s get you set up.', 'google-analytics-dashboard-for-wp' ),
652
 
653
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:55
654
  __( 'Save and Continue', 'google-analytics-dashboard-for-wp' ),
655
 
656
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:35
@@ -675,11 +672,9 @@ $generated_i18n_strings = array(
675
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:49
676
  __( 'ExactMetrics connects Google Analytics to WordPress and shows you stats that matter.', 'google-analytics-dashboard-for-wp' ),
677
 
678
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:64
679
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:118
680
  __( 'Connect Google Analytics + WordPress', 'google-analytics-dashboard-for-wp' ),
681
 
682
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:65
683
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:119
684
  __( 'You will be taken to the ExactMetrics website where you\'ll need to connect your Analytics account.', 'google-analytics-dashboard-for-wp' ),
685
 
@@ -716,7 +711,6 @@ $generated_i18n_strings = array(
716
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:45
717
  __( 'Continue & Install WPForms', 'google-analytics-dashboard-for-wp' ),
718
 
719
- // Reference: src/modules/addons/components/AddonButton.vue:42
720
  // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:30
721
  __( 'Installing...', 'google-analytics-dashboard-for-wp' ),
722
 
@@ -735,7 +729,8 @@ $generated_i18n_strings = array(
735
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:57
736
  __( 'ExactMetrics uses an advanced system to automatically detect all outbound links, download links, affiliate links, telephone links, mail links, and more automatically. We do all the work for you so you don\'t have to write any code.', 'google-analytics-dashboard-for-wp' ),
737
 
738
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:74
 
739
  __( 'Enhanced Link Attribution', 'google-analytics-dashboard-for-wp' ),
740
 
741
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:59
@@ -762,18 +757,18 @@ $generated_i18n_strings = array(
762
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:66
763
  __( 'ExactMetrics will automatically track downloads of common file types from links you have inserted onto your website. For example: want to know how many of your site\'s visitors have downloaded a PDF or other file you offer your visitors to download on your site? ExactMetrics makes this both easy, and code-free! You can customize the file types to track at any time from our settings panel.', 'google-analytics-dashboard-for-wp' ),
764
 
765
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:56
766
  /* Translators: Example path (/go/). */
767
  __( 'Path (example: %s)', 'google-analytics-dashboard-for-wp' ),
768
 
769
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:58
770
  __( 'Path has to start with a / and have no spaces', 'google-analytics-dashboard-for-wp' ),
771
 
772
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:63
773
  /* Translators: Example label (aff). */
774
  __( 'Label (example: %s)', 'google-analytics-dashboard-for-wp' ),
775
 
776
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:65
777
  __( 'Label can\'t contain any spaces', 'google-analytics-dashboard-for-wp' ),
778
 
779
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:83
@@ -791,7 +786,7 @@ $generated_i18n_strings = array(
791
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:87
792
  __( 'These user roles will be able to access ExactMetrics\' reports in the WordPress admin area.', 'google-analytics-dashboard-for-wp' ),
793
 
794
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:83
795
  __( 'Users that have at least one of these roles will be able to view the reports, along with any user with the manage_options capability.', 'google-analytics-dashboard-for-wp' ),
796
 
797
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:89
@@ -803,7 +798,7 @@ $generated_i18n_strings = array(
803
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:92
804
  __( 'Enhanced Link Attribution is enabled the moment you set up ExactMetrics', 'google-analytics-dashboard-for-wp' ),
805
 
806
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:127
807
  __( '+ Add Role', 'google-analytics-dashboard-for-wp' ),
808
 
809
  // Reference: src/components/TheFloatingBar-Lite.vue:29
@@ -816,50 +811,44 @@ $generated_i18n_strings = array(
816
  // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:50
817
  __( 'Site Speed', 'google-analytics-dashboard-for-wp' ),
818
 
819
- // Reference: src/modules/wizard-onboarding/components/inputs/exactmetrics-OnboardingLicense-Lite.vue:27
820
  __( 'License Key', 'google-analytics-dashboard-for-wp' ),
821
 
822
  // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:62
823
  /* Translators: Add link to retrieve license key from account. */
824
  __( 'Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s.', 'google-analytics-dashboard-for-wp' ),
825
 
826
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:63
827
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:114
828
  __( 'Google Authentication', 'google-analytics-dashboard-for-wp' ),
829
 
830
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:66
831
  __( 'Miscellaneous', 'google-analytics-dashboard-for-wp' ),
832
 
833
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:68
834
  __( 'Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes.', 'google-analytics-dashboard-for-wp' ),
835
 
836
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:69
837
  __( 'Hide Announcements', 'google-analytics-dashboard-for-wp' ),
838
 
839
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:70
840
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:129
841
  __( 'You\'re using ExactMetrics Lite – no license needed. Enjoy!', 'google-analytics-dashboard-for-wp' ),
842
 
843
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:72
844
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:131
845
- /* Translators: Adds link to upgrade. */
846
  __( 'To unlock more features consider %1$supgrading to PRO%2$s.', 'google-analytics-dashboard-for-wp' ),
847
 
848
- // Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewUpsell-Lite.vue:34
849
  __( 'Receive 50% off automatically applied at the checkout!', 'google-analytics-dashboard-for-wp' ),
850
 
851
- // Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewUpsell-Lite.vue:37
852
  __( 'See all features', 'google-analytics-dashboard-for-wp' ),
853
 
854
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:76
855
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:121
856
  __( 'Setup Wizard', 'google-analytics-dashboard-for-wp' ),
857
 
858
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:77
859
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:122
860
  __( 'Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks).', 'google-analytics-dashboard-for-wp' ),
861
 
862
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:78
863
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:123
864
  __( 'Relaunch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
865
 
@@ -885,7 +874,7 @@ $generated_i18n_strings = array(
885
  // Reference: src/modules/addons/exactmetrics-addons-Lite.vue:85
886
  __( 'Refreshing Addons', 'google-analytics-dashboard-for-wp' ),
887
 
888
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:105
889
  __( 'Get ExactMetrics Pro Today and Unlock all the Powerful Features', 'google-analytics-dashboard-for-wp' ),
890
 
891
  // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:107
@@ -963,7 +952,7 @@ $generated_i18n_strings = array(
963
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:120
964
  __( 'Overview Reports for the last 30 days.', 'google-analytics-dashboard-for-wp' ),
965
 
966
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:121
967
  __( 'Advanced Reports', 'google-analytics-dashboard-for-wp' ),
968
 
969
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:122
@@ -996,7 +985,7 @@ $generated_i18n_strings = array(
996
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:145
997
  __( 'Headline Analyzer', 'google-analytics-dashboard-for-wp' ),
998
 
999
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:79
1000
  __( 'Email Summaries', 'google-analytics-dashboard-for-wp' ),
1001
 
1002
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:155
@@ -1020,7 +1009,7 @@ $generated_i18n_strings = array(
1020
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:168
1021
  __( 'Display Popular Posts based on your actual traffic data from Google Analytics and choose from over 20 advanced themes. Display Popular WooCommerce products using widgets or Gutenberg blocks.', 'google-analytics-dashboard-for-wp' ),
1022
 
1023
- // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:103
1024
  __( 'Not Available', 'google-analytics-dashboard-for-wp' ),
1025
 
1026
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:176
@@ -1053,7 +1042,7 @@ $generated_i18n_strings = array(
1053
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:66
1054
  __( 'Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout.', 'google-analytics-dashboard-for-wp' ),
1055
 
1056
- // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:61
1057
  __( 'Upgrade to Pro', 'google-analytics-dashboard-for-wp' ),
1058
 
1059
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:70
@@ -1114,15 +1103,15 @@ $generated_i18n_strings = array(
1114
  /* Translators: Error status and error text. */
1115
  __( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1116
 
1117
- // Reference: src/modules/auth/api/index.js:123
1118
  // Reference: src/modules/wizard-onboarding/api/index.js:43
1119
  __( 'You appear to be offline.', 'google-analytics-dashboard-for-wp' ),
1120
 
1121
- // Reference: src/modules/auth/api/index.js:232
1122
  /* Translators: Error status and error text. */
1123
  __( 'Can\'t save settings. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1124
 
1125
- // Reference: src/modules/settings/api/index.js:81
1126
  __( 'Network error encountered. Settings not saved.', 'google-analytics-dashboard-for-wp' ),
1127
 
1128
  // Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
@@ -1239,6 +1228,7 @@ $generated_i18n_strings = array(
1239
  __( 'Can\'t validate the license. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1240
 
1241
  // Reference: src/modules/settings/components/input/SettingsInputNumber.vue:56
 
1242
  __( 'Reset to default', 'google-analytics-dashboard-for-wp' ),
1243
 
1244
  // Reference: src/modules/settings/components/input/SettingsInputText.vue:51
@@ -1248,7 +1238,6 @@ $generated_i18n_strings = array(
1248
  __( 'Check out the newly added classic mode', 'google-analytics-dashboard-for-wp' ),
1249
 
1250
  // Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewDatePicker-Lite.vue:50
1251
- // Reference: src/modules/widget/components/settings/WidgetSettingsIntervalUpsell.vue:26
1252
  /* Translators: Placeholder adds a line break. */
1253
  __( 'You can customize your %sdate range only in the PRO version.', 'google-analytics-dashboard-for-wp' ),
1254
 
@@ -1282,41 +1271,44 @@ $generated_i18n_strings = array(
1282
  __( 'Remove row', 'google-analytics-dashboard-for-wp' ),
1283
 
1284
  // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:47
 
1285
  __( 'Sessions', 'google-analytics-dashboard-for-wp' ),
1286
 
1287
  // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:83
1288
  /* Translators: Line break. */
1289
  __( 'Unique %s Sessions', 'google-analytics-dashboard-for-wp' ),
1290
 
1291
- // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:48
1292
  __( 'Pageviews', 'google-analytics-dashboard-for-wp' ),
1293
 
1294
  // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:86
1295
  /* Translators: Line break. */
1296
  __( 'Unique %s Pageviews', 'google-analytics-dashboard-for-wp' ),
1297
 
1298
- // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:87
1299
  __( 'A session is the browsing session of a single user to your site.', 'google-analytics-dashboard-for-wp' ),
1300
 
1301
- // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:88
1302
  __( 'A pageview is defined as a view of a page on your site that is being tracked by the Analytics tracking code. Each refresh of a page is also a new pageview.', 'google-analytics-dashboard-for-wp' ),
1303
 
1304
- // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:89
1305
  __( 'Total duration of all sessions (in seconds) / number of sessions.', 'google-analytics-dashboard-for-wp' ),
1306
 
1307
  // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:90
1308
  __( 'Percentage of single page visits (or web sessions). It is the number of visits in which a person leaves your website from the landing page without browsing any further.', 'google-analytics-dashboard-for-wp' ),
1309
 
1310
- // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:91
1311
  __( 'The number of distinct tracked users', 'google-analytics-dashboard-for-wp' ),
1312
 
1313
- // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:92
1314
  __( 'Avg. Session Duration', 'google-analytics-dashboard-for-wp' ),
1315
 
1316
  // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:50
 
1317
  __( 'Bounce Rate', 'google-analytics-dashboard-for-wp' ),
1318
 
1319
  // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:51
 
1320
  __( 'Total Users', 'google-analytics-dashboard-for-wp' ),
1321
 
1322
  // Reference: src/modules/settings/components/input/SettingsInputSelect.vue:62
@@ -1355,7 +1347,7 @@ $generated_i18n_strings = array(
1355
  /* Translators: add link to blog. */
1356
  __( 'To comply with Google\'s API policies we\'ve had to remove the real time report from the lite version. You can read about this decision and why it was made in %1$sthis blog post%2$s. To access the real time report in the WordPress backend, you will need to upgrade to Pro.', 'google-analytics-dashboard-for-wp' ),
1357
 
1358
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:37
1359
  __( 'Here\'s what you get:', 'google-analytics-dashboard-for-wp' ),
1360
 
1361
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:41
@@ -1598,7 +1590,7 @@ $generated_i18n_strings = array(
1598
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:272
1599
  __( 'A Tip for 2021', 'google-analytics-dashboard-for-wp' ),
1600
 
1601
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:65
1602
  __( 'Demographics', 'google-analytics-dashboard-for-wp' ),
1603
 
1604
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:274
@@ -1625,7 +1617,7 @@ $generated_i18n_strings = array(
1625
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:281
1626
  __( 'Average Age', 'google-analytics-dashboard-for-wp' ),
1627
 
1628
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:101
1629
  __( 'Behavior', 'google-analytics-dashboard-for-wp' ),
1630
 
1631
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:283
@@ -1743,7 +1735,6 @@ $generated_i18n_strings = array(
1743
  __( 'Upgrade to ExactMetrics Pro to Unlock Additional Actionable Insights', 'google-analytics-dashboard-for-wp' ),
1744
 
1745
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:325
1746
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:148
1747
  __( 'Upgrade to ExactMetrics Pro', 'google-analytics-dashboard-for-wp' ),
1748
 
1749
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:328
@@ -1935,12 +1926,10 @@ $generated_i18n_strings = array(
1935
  __( 'Skip and Keep Connection', 'google-analytics-dashboard-for-wp' ),
1936
 
1937
  // Reference: src/modules/frontend/components/FrontendInfoboxChange.vue:29
1938
- // Reference: src/modules/reports/components/ReportInfobox.vue:41
1939
- /* Translators: Number of days. */
1940
  __( 'vs. Previous Day', 'google-analytics-dashboard-for-wp' ),
1941
 
1942
  // Reference: src/modules/frontend/components/FrontendInfoboxChange.vue:46
1943
- // Reference: src/modules/reports/components/ReportInfobox.vue:58
1944
  __( 'No change', 'google-analytics-dashboard-for-wp' ),
1945
 
1946
  // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:100
@@ -2016,7 +2005,7 @@ $generated_i18n_strings = array(
2016
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:114
2017
  __( 'Choose where in the post body the widget will be placed.', 'google-analytics-dashboard-for-wp' ),
2018
 
2019
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:109
2020
  __( 'Customize Design', 'google-analytics-dashboard-for-wp' ),
2021
 
2022
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:123
@@ -2154,19 +2143,17 @@ $generated_i18n_strings = array(
2154
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:35
2155
  __( 'Unlock PRO Features Now', 'google-analytics-dashboard-for-wp' ),
2156
 
2157
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:113
2158
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:156
2159
  __( 'Paste your license key here', 'google-analytics-dashboard-for-wp' ),
2160
 
2161
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:115
2162
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:157
2163
  __( 'Verify', 'google-analytics-dashboard-for-wp' ),
2164
 
2165
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:39
2166
  /* Translators: Add link to retrieve license from account area. */
2167
  __( 'Already purchased? Simply enter your license key below to connect with ExactMetrics PRO! %1$sRetrieve your license key%2$s.', 'google-analytics-dashboard-for-wp' ),
2168
 
2169
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:172
2170
  __( 'There was an error unlocking ExactMetrics PRO please try again or install manually.', 'google-analytics-dashboard-for-wp' ),
2171
 
2172
  // Reference: src/modules/seo/components/yoast.vue:137
@@ -2175,10 +2162,10 @@ $generated_i18n_strings = array(
2175
  // Reference: src/modules/seo/components/yoast.vue:138
2176
  __( 'Automatically migrate all of your SEO settings with just 1 click!', 'google-analytics-dashboard-for-wp' ),
2177
 
2178
- // Reference: src/modules/seo/components/yoast.vue:139
2179
  __( '1,938', 'google-analytics-dashboard-for-wp' ),
2180
 
2181
- // Reference: src/modules/seo/components/yoast.vue:140
2182
  __( '2+ Million Active Installs', 'google-analytics-dashboard-for-wp' ),
2183
 
2184
  // Reference: src/modules/seo/components/yoast.vue:143
@@ -2187,10 +2174,10 @@ $generated_i18n_strings = array(
2187
  // Reference: src/modules/seo/components/yoast.vue:144
2188
  __( 'Set up the proper SEO foundations in less than 10 minutes.', 'google-analytics-dashboard-for-wp' ),
2189
 
2190
- // Reference: src/modules/seo/components/yoast.vue:145
2191
  __( 'SEO Audit Checklist', 'google-analytics-dashboard-for-wp' ),
2192
 
2193
- // Reference: src/modules/seo/components/yoast.vue:146
2194
  __( 'Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic.', 'google-analytics-dashboard-for-wp' ),
2195
 
2196
  // Reference: src/modules/seo/components/yoast.vue:147
@@ -2202,37 +2189,37 @@ $generated_i18n_strings = array(
2202
  // Reference: src/modules/seo/components/yoast.vue:149
2203
  __( 'Get AIOSEO for WordPress', 'google-analytics-dashboard-for-wp' ),
2204
 
2205
- // Reference: src/modules/seo/components/yoast.vue:152
2206
  __( 'Get the #1 Most Powerful WordPress SEO Plugin Today', 'google-analytics-dashboard-for-wp' ),
2207
 
2208
- // Reference: src/modules/seo/components/yoast.vue:153
2209
  __( 'Try it out today, for free.', 'google-analytics-dashboard-for-wp' ),
2210
 
2211
- // Reference: src/modules/seo/components/yoast.vue:156
2212
  __( 'Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings.', 'google-analytics-dashboard-for-wp' ),
2213
 
2214
- // Reference: src/modules/seo/components/yoast.vue:157
2215
  __( 'Activate and Install the Plugin with just one click!', 'google-analytics-dashboard-for-wp' ),
2216
 
2217
  // Reference: src/modules/seo/components/yoast.vue:222
2218
  __( 'Installing AIOSEO...', 'google-analytics-dashboard-for-wp' ),
2219
 
2220
- // Reference: src/modules/seo/components/yoast.vue:231
2221
  __( 'Congrats! All-in-One SEO Installed.', 'google-analytics-dashboard-for-wp' ),
2222
 
2223
  // Reference: src/modules/seo/components/yoast.vue:248
2224
  __( 'Switch to AIOSEO', 'google-analytics-dashboard-for-wp' ),
2225
 
2226
- // Reference: src/modules/seo/components/yoast.vue:252
2227
  __( 'Installation Failed. Please refresh and try again.', 'google-analytics-dashboard-for-wp' ),
2228
 
2229
- // Reference: src/modules/seo/components/yoast.vue:259
2230
  __( 'Activating AIOSEO...', 'google-analytics-dashboard-for-wp' ),
2231
 
2232
- // Reference: src/modules/seo/components/yoast.vue:266
2233
  __( 'Activate AIOSEO', 'google-analytics-dashboard-for-wp' ),
2234
 
2235
- // Reference: src/modules/seo/components/yoast.vue:270
2236
  __( 'Activation Failed. Please refresh and try again.', 'google-analytics-dashboard-for-wp' ),
2237
 
2238
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:45
@@ -2311,7 +2298,7 @@ $generated_i18n_strings = array(
2311
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:90
2312
  __( 'Reports', 'google-analytics-dashboard-for-wp' ),
2313
 
2314
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:91
2315
  __( 'Automatic Updates', 'google-analytics-dashboard-for-wp' ),
2316
 
2317
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:105
@@ -2393,7 +2380,7 @@ $generated_i18n_strings = array(
2393
  // Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:88
2394
  __( 'Pretty Links Installed & Activated', 'google-analytics-dashboard-for-wp' ),
2395
 
2396
- // Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:89
2397
  __( 'Download Pretty Links', 'google-analytics-dashboard-for-wp' ),
2398
 
2399
  // Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:90
@@ -2802,7 +2789,7 @@ $generated_i18n_strings = array(
2802
  // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:45
2803
  __( 'Better Support', 'google-analytics-dashboard-for-wp' ),
2804
 
2805
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:37
2806
  __( 'Continue', 'google-analytics-dashboard-for-wp' ),
2807
 
2808
  // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:48
@@ -2896,7 +2883,6 @@ $generated_i18n_strings = array(
2896
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetCategory-Lite.vue:25
2897
  __( 'Choose from which categories posts will be displayed in the widget. All categories will be used if left empty.', 'google-analytics-dashboard-for-wp' ),
2898
 
2899
- // Reference: src/modules/addons/components/AddonButton.vue:34
2900
  // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:26
2901
  __( 'Activating...', 'google-analytics-dashboard-for-wp' ),
2902
 
@@ -3018,22 +3004,22 @@ $generated_i18n_strings = array(
3018
  // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:101
3019
  __( 'Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan', 'google-analytics-dashboard-for-wp' ),
3020
 
3021
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:102
3022
  __( 'Color', 'google-analytics-dashboard-for-wp' ),
3023
 
3024
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:103
3025
  __( 'Size', 'google-analytics-dashboard-for-wp' ),
3026
 
3027
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:104
3028
  __( 'Title', 'google-analytics-dashboard-for-wp' ),
3029
 
3030
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:105
3031
  __( 'Label', 'google-analytics-dashboard-for-wp' ),
3032
 
3033
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:106
3034
  __( 'Background', 'google-analytics-dashboard-for-wp' ),
3035
 
3036
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:107
3037
  __( 'Border', 'google-analytics-dashboard-for-wp' ),
3038
 
3039
  // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:108
@@ -3122,7 +3108,7 @@ $generated_i18n_strings = array(
3122
  /* Translators: Make text green. */
3123
  __( 'Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s', 'google-analytics-dashboard-for-wp' ),
3124
 
3125
- // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputPdfReports-Lite.vue:16
3126
  __( 'Upgrade', 'google-analytics-dashboard-for-wp' ),
3127
 
3128
  // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputPdfReports-Lite.vue:17
@@ -3215,6 +3201,7 @@ $generated_i18n_strings = array(
3215
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:78
3216
  __( 'There are two ways to manual include the widget in your posts.', 'google-analytics-dashboard-for-wp' ),
3217
 
 
3218
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:105
3219
  __( 'Using the Gutenberg Block', 'google-analytics-dashboard-for-wp' ),
3220
 
@@ -3230,21 +3217,25 @@ $generated_i18n_strings = array(
3230
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:83
3231
  __( '%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg', 'google-analytics-dashboard-for-wp' ),
3232
 
 
3233
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:113
3234
  __( '%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page.', 'google-analytics-dashboard-for-wp' ),
3235
 
3236
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:86
3237
  __( '%1$sStep 2%2$s - Search for “Inline Popular Posts by ExactMetrics”.', 'google-analytics-dashboard-for-wp' ),
3238
 
 
3239
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:115
3240
  __( '%1$sStep 3%2$s - Style the widget using the Block Settings sidebar.', 'google-analytics-dashboard-for-wp' ),
3241
 
3242
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:89
3243
  __( 'Shortcode', 'google-analytics-dashboard-for-wp' ),
3244
 
 
3245
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:123
3246
  __( 'Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin.', 'google-analytics-dashboard-for-wp' ),
3247
 
 
3248
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:124
3249
  __( 'Copy Shortcode', 'google-analytics-dashboard-for-wp' ),
3250
 
@@ -3318,7 +3309,8 @@ $generated_i18n_strings = array(
3318
  // Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputMedia-Lite.vue:26
3319
  __( 'Track how your users interact with videos on your website. Upgrade to ExactMetrics Pro.', 'google-analytics-dashboard-for-wp' ),
3320
 
3321
- // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:49
 
3322
  __( '2021 Year in Review', 'google-analytics-dashboard-for-wp' ),
3323
 
3324
  // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:100
@@ -3518,76 +3510,76 @@ $generated_i18n_strings = array(
3518
  // Reference: src/modules/growth-tools/components/GrowthNavigation.vue:21
3519
  __( 'Guides & Resources', 'google-analytics-dashboard-for-wp' ),
3520
 
3521
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:165
3522
  __( 'Media Tracking', 'google-analytics-dashboard-for-wp' ),
3523
 
3524
  // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:34
3525
  __( 'Get Started', 'google-analytics-dashboard-for-wp' ),
3526
 
3527
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:110
3528
  __( 'Privacy Compliance Addon', 'google-analytics-dashboard-for-wp' ),
3529
 
3530
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:111
3531
  __( 'Help Google Analytics become compliant with internet privacy laws like GDPR, PECR, and CCPA.', 'google-analytics-dashboard-for-wp' ),
3532
 
3533
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:122
3534
  __( 'Get access to advanced reports inside WordPress including search keywords report, real-time analytics dashboard, publishers / eCommerce report, custom dimensions, and more.', 'google-analytics-dashboard-for-wp' ),
3535
 
3536
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:133
3537
  __( 'Instantly enable enhanced eCommerce tracking, so you can measure conversions, sales, and revenue stats. Works with WooCommerce, Easy Digital Downloads, MemberPress, and more.', 'google-analytics-dashboard-for-wp' ),
3538
 
3539
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:143
3540
  __( '20+ Advanced Tracking', 'google-analytics-dashboard-for-wp' ),
3541
 
3542
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:144
3543
  __( 'Get access to advanced tracking features like form conversion tracking, author tracking, custom dimensions, scroll tracking, and more.', 'google-analytics-dashboard-for-wp' ),
3544
 
3545
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:154
3546
  __( 'Advanced Growth Tools', 'google-analytics-dashboard-for-wp' ),
3547
 
3548
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:155
3549
  __( 'Get access to advanced growth tools such as popular posts addon, A/B testing tool, smart URL builder, and more.', 'google-analytics-dashboard-for-wp' ),
3550
 
3551
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:166
3552
  __( 'Track how your users interact with videos on your website.', 'google-analytics-dashboard-for-wp' ),
3553
 
3554
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:307
3555
  __( 'Error Processing', 'google-analytics-dashboard-for-wp' ),
3556
 
3557
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:308
3558
  __( 'There was an error while processing some features. Please try again or you can skip this process for now', 'google-analytics-dashboard-for-wp' ),
3559
 
3560
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:33
3561
  __( 'Which website features would you like to enable?', 'google-analytics-dashboard-for-wp' ),
3562
 
3563
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:34
3564
  __( 'We’ve already selected our recommended features based on your site. ', 'google-analytics-dashboard-for-wp' ),
3565
 
3566
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:35
3567
  __( 'Other Addons', 'google-analytics-dashboard-for-wp' ),
3568
 
3569
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:36
3570
  __( 'View all ExactMetrics addons', 'google-analytics-dashboard-for-wp' ),
3571
 
3572
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:62
3573
  __( 'Standard Analytics & Reports', 'google-analytics-dashboard-for-wp' ),
3574
 
3575
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:63
3576
  __( 'Get the reports and stats that matter right inside your WordPress Dashboard.', 'google-analytics-dashboard-for-wp' ),
3577
 
3578
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:75
3579
  __( 'Helps you see what links your users are clicking on your site.', 'google-analytics-dashboard-for-wp' ),
3580
 
3581
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:86
3582
  __( 'All In One SEO Toolkit', 'google-analytics-dashboard-for-wp' ),
3583
 
3584
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:87
3585
  __( 'The best WordPress SEO plugin that works with ExactMetrics to boost your rankings.', 'google-analytics-dashboard-for-wp' ),
3586
 
3587
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:98
3588
  __( 'Smart Form Builder by WPForms', 'google-analytics-dashboard-for-wp' ),
3589
 
3590
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:99
3591
  __( 'The most popular WordPress form plugin, trusted by over 5 million websites. Easily create contact forms, payment forms, surveys and more.', 'google-analytics-dashboard-for-wp' ),
3592
 
3593
  // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:133
@@ -3635,6 +3627,9 @@ $generated_i18n_strings = array(
3635
  __( 'Verifying License...', 'google-analytics-dashboard-for-wp' ),
3636
 
3637
  // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:227
3638
- __( 'There was an error unlocking ExactMetrics PRO please try again or install manually.', 'google-analytics-dashboard-for-wp' )
 
 
 
3639
  );
3640
  /* THIS IS THE END OF THE GENERATED FILE */
10
  // Reference: src/plugins/exactmetrics-settings-helper-plugin.js:116
11
  __( 'Loading Settings', 'google-analytics-dashboard-for-wp' ),
12
 
13
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:55
14
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:130
15
  __( 'Please wait...', 'google-analytics-dashboard-for-wp' ),
16
 
17
  // Reference: src/plugins/exactmetrics-settings-helper-plugin.js:20
30
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:129
31
  __( 'Loading new report data', 'google-analytics-dashboard-for-wp' ),
32
 
33
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:143
34
+ /* Translators: Adds an arrow icon. */
35
  __( 'Continue %s', 'google-analytics-dashboard-for-wp' ),
36
 
37
  // Reference: src/modules/reports/components/ReportReAuth.vue:45
38
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:71
39
+ // Reference: src/modules/widget/components/WidgetReportError.vue:25
40
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:150
41
  __( 'Error', 'google-analytics-dashboard-for-wp' ),
42
 
43
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:151
44
  __( 'Please try again.', 'google-analytics-dashboard-for-wp' ),
45
 
46
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:181
52
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:185
53
  __( 'Unlock the Publishers Report and Focus on the Content That Matters', 'google-analytics-dashboard-for-wp' ),
54
 
55
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:186
56
  __( 'Stop guessing about what content your visitors are interested in. The Publisher Report shows you exactly which content gets the most traffic, so you can analyze and optimize it for higher conversions.', 'google-analytics-dashboard-for-wp' ),
57
 
58
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:189
67
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:194
68
  __( 'Decide what data is important using your own custom tracking parameters. The Dimensions report allows you to easily see what\'s working right inside your WordPress dashboard.', 'google-analytics-dashboard-for-wp' ),
69
 
 
70
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:197
71
  __( 'Unlock the Forms Report and Improve Conversions', 'google-analytics-dashboard-for-wp' ),
72
 
 
73
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:198
74
  __( 'Easily track your form views and conversions. The Forms Report allows you to see which forms are performing better and which forms have lower conversion rates so you can optimize using real data.', 'google-analytics-dashboard-for-wp' ),
75
 
80
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:202
81
  __( 'See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more.', 'google-analytics-dashboard-for-wp' ),
82
 
83
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:205
84
  __( 'Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time', 'google-analytics-dashboard-for-wp' ),
85
 
86
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:206
87
  __( 'Track the results of your marketing efforts and product launches as-it-happens right from your WordPress site. The Real-Time report allows you to view your traffic sources and visitors activity when you need it.', 'google-analytics-dashboard-for-wp' ),
88
 
89
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:209
90
  __( 'Unlock the Site Speed Report and Improve the Performance of Your Site', 'google-analytics-dashboard-for-wp' ),
91
 
92
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:210
93
  __( 'See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking', 'google-analytics-dashboard-for-wp' ),
94
 
95
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:223
96
  __( 'Today', 'google-analytics-dashboard-for-wp' ),
97
 
98
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:229
 
99
  __( 'Yesterday', 'google-analytics-dashboard-for-wp' ),
100
 
101
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:235
102
  __( 'Last Week', 'google-analytics-dashboard-for-wp' ),
103
 
104
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:241
105
  __( 'Last Month', 'google-analytics-dashboard-for-wp' ),
106
 
107
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:247
108
  __( 'Last 7 days', 'google-analytics-dashboard-for-wp' ),
109
 
110
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:253
111
  __( 'Last 30 days', 'google-analytics-dashboard-for-wp' ),
112
 
113
  // Reference: src/plugins/exactmetrics-wizard-helper-plugin.js:19
125
  __( 'See the full analytics report!', 'google-analytics-dashboard-for-wp' ),
126
 
127
  // Reference: src/modules/widget/store/index.js:14
 
128
  __( 'Overview Report', 'google-analytics-dashboard-for-wp' ),
129
 
130
  // Reference: src/plugins/exactmetrics-compatibility-plugin.js:13
155
  // Reference: src/plugins/exactmetrics-compatibility-plugin.js:59
156
  __( 'Learn more about updating WordPress', 'google-analytics-dashboard-for-wp' ),
157
 
158
+ // Reference: src/modules/settings/routes/site.js:125
159
  __( 'About Us', 'google-analytics-dashboard-for-wp' ),
160
 
161
+ // Reference: src/modules/settings/routes/site.js:133
162
  __( 'Getting Started', 'google-analytics-dashboard-for-wp' ),
163
 
 
164
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:60
165
  __( 'Lite vs Pro', 'google-analytics-dashboard-for-wp' ),
166
 
181
  // Reference: src/modules/reports/api/index.js:28
182
  __( 'Error loading report data', 'google-analytics-dashboard-for-wp' ),
183
 
184
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:102
185
+ /* Translators: Makes text bold. */
186
  __( '%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code).', 'google-analytics-dashboard-for-wp' ),
187
 
188
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:107
189
+ /* Translators: Makes text bold. */
190
  __( '%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights.', 'google-analytics-dashboard-for-wp' ),
191
 
192
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:112
193
+ /* Translators: Makes text bold. */
194
  __( '%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more.', 'google-analytics-dashboard-for-wp' ),
195
 
196
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:117
197
  /* Translators: Makes text bold. */
198
  __( '%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress.', 'google-analytics-dashboard-for-wp' ),
199
 
200
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:122
201
+ /* Translators: Makes text bold. */
202
  __( '%1$sPage Level Analytics%2$s - Get detailed stats for each post and page, so you can see the most popular posts, pages, and sections of your site.', 'google-analytics-dashboard-for-wp' ),
203
 
204
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:127
205
+ /* Translators: Makes text bold. */
206
  __( '%1$sAffiliate Link & Ads Tracking%2$s - Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking.', 'google-analytics-dashboard-for-wp' ),
207
 
208
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:132
209
+ /* Translators: Makes text bold. */
210
  __( '%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically.', 'google-analytics-dashboard-for-wp' ),
211
 
212
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:137
213
  /* Translators: Makes text bold. */
214
  __( '%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click.', 'google-analytics-dashboard-for-wp' ),
215
 
216
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:142
217
+ /* Translators: Adds link to the features page. */
218
  __( '%1$sSee All Features%2$s', 'google-analytics-dashboard-for-wp' ),
219
 
220
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:145
221
  __( 'Pro Plan', 'google-analytics-dashboard-for-wp' ),
222
 
223
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:146
224
  __( 'per year', 'google-analytics-dashboard-for-wp' ),
225
 
 
226
  // Reference: src/modules/reports/components/reports-overview/ReportOverviewUpsellMobile-Lite.vue:22
227
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:147
228
  __( 'Upgrade Now', 'google-analytics-dashboard-for-wp' ),
229
 
230
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:148
231
  __( 'Upgrade to ExactMetrics Pro Now', 'google-analytics-dashboard-for-wp' ),
232
 
233
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:153
234
  __( 'This is absolutely, positively, one of the TOP plugins to install on your WP site. There is no better way to quickly gauge traffic for spikes, surges, and consistency. I installed this on over a dozen WordPress installations and counting, thank you for an outstanding app!', 'google-analytics-dashboard-for-wp' ),
235
 
236
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:154
237
  __( 'Daniel Monaghan - Experienced', 'google-analytics-dashboard-for-wp' ),
238
 
239
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:158
240
  __( 'Very simple to configure and the results are very clearly displayed. So much easier for clients to view than in their own analytics account! Delighted with it.', 'google-analytics-dashboard-for-wp' ),
241
 
242
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:159
243
  __( 'Naomi Spirit - From This Day', 'google-analytics-dashboard-for-wp' ),
244
 
245
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:163
246
  __( 'Love this plugin! It’s got powerful customization options, it’s easy to use, there’s good documentation, and if all that’s not enough, ExactMetrics is quick to provide support. Thanks for this wonderful plugin!', 'google-analytics-dashboard-for-wp' ),
247
 
248
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:164
249
  __( 'Julie Dupuis - Faraway Land Travel', 'google-analytics-dashboard-for-wp' ),
250
 
251
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:167
252
  __( 'Guides and Documentation:', 'google-analytics-dashboard-for-wp' ),
253
 
254
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:34
255
+ // Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputAds-Lite.vue:24
256
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:168
257
  __( 'Upgrade to PRO', 'google-analytics-dashboard-for-wp' ),
258
 
259
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:142
260
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:170
261
  __( 'eCommerce Tracking', 'google-analytics-dashboard-for-wp' ),
262
 
263
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:171
264
  __( 'Custom Dimensions', 'google-analytics-dashboard-for-wp' ),
265
 
266
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:172
267
  __( 'Form Tracking', 'google-analytics-dashboard-for-wp' ),
268
 
269
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:173
270
  __( 'AMP Support', 'google-analytics-dashboard-for-wp' ),
271
 
272
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:174
273
  __( 'Author Tracking', 'google-analytics-dashboard-for-wp' ),
274
 
275
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:177
276
  __( 'EU Compliance Addon', 'google-analytics-dashboard-for-wp' ),
277
 
278
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:178
279
  __( 'Real Time Report', 'google-analytics-dashboard-for-wp' ),
280
 
281
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:179
282
  __( 'Google Optimize', 'google-analytics-dashboard-for-wp' ),
283
 
284
+ // Reference: src/modules/reports/routes/exactmetrics-routes.js:49
285
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:180
286
  __( 'Search Console', 'google-analytics-dashboard-for-wp' ),
287
 
288
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:181
289
  __( 'Custom Date Ranges', 'google-analytics-dashboard-for-wp' ),
290
 
291
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:84
294
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:85
295
  __( 'ExactMetrics is the easiest analytics solution on the market to get started with, as we walk you through exactly what you need to do, in plain english, using our 3 minute setup wizard.', 'google-analytics-dashboard-for-wp' ),
296
 
297
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:86
298
  __( 'To begin with, we’ll get your site authorized with Google Analytics, so we can start tracking and generating reports for you right away.', 'google-analytics-dashboard-for-wp' ),
299
 
300
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:87
301
  __( 'In no time at all, and after just a few clicks, you\'ll have setup the most powerful Google Analytics tracking available for WordPress. It\'s easy to double your traffic and sales when you know exactly how people find and use your website. Let\'s get started!.', 'google-analytics-dashboard-for-wp' ),
302
 
303
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:88
304
  __( 'Launch the wizard!', 'google-analytics-dashboard-for-wp' ),
305
 
306
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:90
307
  __( 'Welcome to', 'google-analytics-dashboard-for-wp' ),
308
 
309
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:92
310
  /* Translators: Adds a line break. */
311
  __( 'Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin', 'google-analytics-dashboard-for-wp' ),
312
 
313
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:94
314
+ /* Translators: Makes text bold. */
315
  __( '%1$sExactMetrics%2$s makes it “effortless” to setup Google Analytics in WordPress, the RIGHT Way. You can watch the video tutorial or use our 3 minute setup wizard.', 'google-analytics-dashboard-for-wp' ),
316
 
317
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:96
318
  __( 'ExactMetrics Features & Addons', 'google-analytics-dashboard-for-wp' ),
319
 
320
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:97
321
  __( 'Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market.', 'google-analytics-dashboard-for-wp' ),
322
 
323
  // Reference: src/modules/widget/components/WidgetFooter.vue:19
324
  /* Translators: Placeholder is replaced with WPForms. */
325
  __( 'Recommended Plugin: %s', 'google-analytics-dashboard-for-wp' ),
326
 
 
327
  // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:42
328
  __( 'Install', 'google-analytics-dashboard-for-wp' ),
329
 
 
330
  // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:38
331
  __( 'Activate', 'google-analytics-dashboard-for-wp' ),
332
 
333
  // Reference: src/modules/frontend/components/FrontendNoAuth.vue:27
 
334
  __( 'Learn More', 'google-analytics-dashboard-for-wp' ),
335
 
336
  // Reference: src/modules/reports/components/ReportReAuth.vue:19
346
  __( 'Re-Authenticating', 'google-analytics-dashboard-for-wp' ),
347
 
348
  // Reference: src/modules/reports/components/ReportReAuth.vue:47
349
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:78
350
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:319
351
  __( 'Ok', 'google-analytics-dashboard-for-wp' ),
352
 
353
  // Reference: src/modules/addons/components/AddonsNavigation.vue:18
434
  // Reference: src/modules/widget/store/index.js:71
435
  __( 'This list shows the download links your visitors clicked the most.', 'google-analytics-dashboard-for-wp' ),
436
 
437
+ // Reference: src/modules/reports/routes/exactmetrics-routes.js:25
438
  // Reference: src/modules/widget/store/index.js:77
439
  __( 'Overview', 'google-analytics-dashboard-for-wp' ),
440
 
456
  // Reference: src/modules/widget/components/exactmetrics-WidgetAccordion-Lite.vue:218
457
  __( 'Analytics', 'google-analytics-dashboard-for-wp' ),
458
 
459
+ // Reference: src/modules/widget/components/exactmetrics-WidgetAccordion-Lite.vue:65
460
  /* Translators: Adds an arrow icon. */
461
  __( 'View All Reports %s', 'google-analytics-dashboard-for-wp' ),
462
 
466
  // Reference: src/modules/reports/components/ReportNoAuth.vue:26
467
  __( 'ExactMetrics makes it "effortless" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard.', 'google-analytics-dashboard-for-wp' ),
468
 
 
 
469
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:124
470
  __( 'Launch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
471
 
497
  // Reference: src/components/TheQuickLinks.vue:78
498
  __( 'Upgrade to Pro &#187;', 'google-analytics-dashboard-for-wp' ),
499
 
500
+ // Reference: src/modules/reports/routes/exactmetrics-routes.js:33
501
  __( 'Publishers', 'google-analytics-dashboard-for-wp' ),
502
 
503
+ // Reference: src/modules/reports/routes/exactmetrics-routes.js:41
 
504
  __( 'eCommerce', 'google-analytics-dashboard-for-wp' ),
505
 
506
  // Reference: src/modules/reports/routes/exactmetrics-routes.js:57
507
  __( 'Dimensions Report', 'google-analytics-dashboard-for-wp' ),
508
 
509
+ // Reference: src/modules/reports/routes/exactmetrics-routes.js:65
510
  __( 'Forms', 'google-analytics-dashboard-for-wp' ),
511
 
512
+ // Reference: src/modules/reports/routes/exactmetrics-routes.js:73
513
  __( 'Real-Time', 'google-analytics-dashboard-for-wp' ),
514
 
 
515
  // Reference: src/modules/reports/routes/exactmetrics-routes.js:81
516
  __( 'Site Speed Report', 'google-analytics-dashboard-for-wp' ),
517
 
540
  // Reference: src/modules/settings/routes/site.js:200
541
  __( 'Sub menu item for WooCommerce Analytics', 'google-analytics-dashboard-for-wp' ),
542
 
543
+ // Reference: src/modules/settings/routes/site.js:38
544
  __( 'General', 'google-analytics-dashboard-for-wp' ),
545
 
546
  // Reference: src/modules/growth-tools/components/GrowthNavigation.vue:19
 
547
  __( 'Engagement', 'google-analytics-dashboard-for-wp' ),
548
 
549
+ // Reference: src/modules/settings/routes/site.js:62
550
  __( 'Publisher', 'google-analytics-dashboard-for-wp' ),
551
 
552
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:44
553
  __( 'Conversions', 'google-analytics-dashboard-for-wp' ),
554
 
555
+ // Reference: src/modules/settings/routes/site.js:78
556
  __( 'Advanced', 'google-analytics-dashboard-for-wp' ),
557
 
558
  // Reference: src/modules/tools/components/ToolsNavigation.vue:15
600
  __( 'View Addons', 'google-analytics-dashboard-for-wp' ),
601
 
602
  // Reference: src/modules/notifications/components/Notification.vue:34
603
+ // Reference: src/modules/seo/components/aioseo.vue:246
604
  __( 'Dismiss', 'google-analytics-dashboard-for-wp' ),
605
 
606
  // Reference: src/modules/reports/store/actions.js:219
609
  // Reference: src/modules/reports/store/actions.js:220
610
  __( 'Please wait', 'google-analytics-dashboard-for-wp' ),
611
 
612
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:119
613
  // Reference: src/modules/reports/store/actions.js:57
614
  __( 'activate', 'google-analytics-dashboard-for-wp' ),
615
 
616
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:119
617
  // Reference: src/modules/reports/store/actions.js:57
618
  __( 'install', 'google-analytics-dashboard-for-wp' ),
619
 
620
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:127
621
  // Reference: src/modules/reports/store/actions.js:61
622
  __( 'Visit addons page', 'google-analytics-dashboard-for-wp' ),
623
 
647
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:33
648
  __( 'Let\'s get you set up.', 'google-analytics-dashboard-for-wp' ),
649
 
650
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:34
651
  __( 'Save and Continue', 'google-analytics-dashboard-for-wp' ),
652
 
653
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:35
672
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:49
673
  __( 'ExactMetrics connects Google Analytics to WordPress and shows you stats that matter.', 'google-analytics-dashboard-for-wp' ),
674
 
 
675
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:118
676
  __( 'Connect Google Analytics + WordPress', 'google-analytics-dashboard-for-wp' ),
677
 
 
678
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:119
679
  __( 'You will be taken to the ExactMetrics website where you\'ll need to connect your Analytics account.', 'google-analytics-dashboard-for-wp' ),
680
 
711
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:45
712
  __( 'Continue & Install WPForms', 'google-analytics-dashboard-for-wp' ),
713
 
 
714
  // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:30
715
  __( 'Installing...', 'google-analytics-dashboard-for-wp' ),
716
 
729
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:57
730
  __( 'ExactMetrics uses an advanced system to automatically detect all outbound links, download links, affiliate links, telephone links, mail links, and more automatically. We do all the work for you so you don\'t have to write any code.', 'google-analytics-dashboard-for-wp' ),
731
 
732
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:58
733
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:84
734
  __( 'Enhanced Link Attribution', 'google-analytics-dashboard-for-wp' ),
735
 
736
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:59
757
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:66
758
  __( 'ExactMetrics will automatically track downloads of common file types from links you have inserted onto your website. For example: want to know how many of your site\'s visitors have downloaded a PDF or other file you offer your visitors to download on your site? ExactMetrics makes this both easy, and code-free! You can customize the file types to track at any time from our settings panel.', 'google-analytics-dashboard-for-wp' ),
759
 
760
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:71
761
  /* Translators: Example path (/go/). */
762
  __( 'Path (example: %s)', 'google-analytics-dashboard-for-wp' ),
763
 
764
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:73
765
  __( 'Path has to start with a / and have no spaces', 'google-analytics-dashboard-for-wp' ),
766
 
767
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:78
768
  /* Translators: Example label (aff). */
769
  __( 'Label (example: %s)', 'google-analytics-dashboard-for-wp' ),
770
 
771
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:80
772
  __( 'Label can\'t contain any spaces', 'google-analytics-dashboard-for-wp' ),
773
 
774
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:83
786
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:87
787
  __( 'These user roles will be able to access ExactMetrics\' reports in the WordPress admin area.', 'google-analytics-dashboard-for-wp' ),
788
 
789
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:88
790
  __( 'Users that have at least one of these roles will be able to view the reports, along with any user with the manage_options capability.', 'google-analytics-dashboard-for-wp' ),
791
 
792
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:89
798
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:92
799
  __( 'Enhanced Link Attribution is enabled the moment you set up ExactMetrics', 'google-analytics-dashboard-for-wp' ),
800
 
801
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:93
802
  __( '+ Add Role', 'google-analytics-dashboard-for-wp' ),
803
 
804
  // Reference: src/components/TheFloatingBar-Lite.vue:29
811
  // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:50
812
  __( 'Site Speed', 'google-analytics-dashboard-for-wp' ),
813
 
814
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:110
815
  __( 'License Key', 'google-analytics-dashboard-for-wp' ),
816
 
817
  // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:62
818
  /* Translators: Add link to retrieve license key from account. */
819
  __( 'Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s.', 'google-analytics-dashboard-for-wp' ),
820
 
 
821
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:114
822
  __( 'Google Authentication', 'google-analytics-dashboard-for-wp' ),
823
 
824
+ // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:32
825
  __( 'Miscellaneous', 'google-analytics-dashboard-for-wp' ),
826
 
827
+ // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:34
828
  __( 'Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes.', 'google-analytics-dashboard-for-wp' ),
829
 
830
+ // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:35
831
  __( 'Hide Announcements', 'google-analytics-dashboard-for-wp' ),
832
 
 
833
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:129
834
  __( 'You\'re using ExactMetrics Lite – no license needed. Enjoy!', 'google-analytics-dashboard-for-wp' ),
835
 
836
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:32
837
+ /* Translators: Add link to upgrade. */
 
838
  __( 'To unlock more features consider %1$supgrading to PRO%2$s.', 'google-analytics-dashboard-for-wp' ),
839
 
840
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:132
841
  __( 'Receive 50% off automatically applied at the checkout!', 'google-analytics-dashboard-for-wp' ),
842
 
843
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:134
844
  __( 'See all features', 'google-analytics-dashboard-for-wp' ),
845
 
 
846
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:121
847
  __( 'Setup Wizard', 'google-analytics-dashboard-for-wp' ),
848
 
 
849
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:122
850
  __( 'Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks).', 'google-analytics-dashboard-for-wp' ),
851
 
 
852
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:123
853
  __( 'Relaunch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
854
 
874
  // Reference: src/modules/addons/exactmetrics-addons-Lite.vue:85
875
  __( 'Refreshing Addons', 'google-analytics-dashboard-for-wp' ),
876
 
877
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:65
878
  __( 'Get ExactMetrics Pro Today and Unlock all the Powerful Features', 'google-analytics-dashboard-for-wp' ),
879
 
880
  // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:107
952
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:120
953
  __( 'Overview Reports for the last 30 days.', 'google-analytics-dashboard-for-wp' ),
954
 
955
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:131
956
  __( 'Advanced Reports', 'google-analytics-dashboard-for-wp' ),
957
 
958
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:122
985
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:145
986
  __( 'Headline Analyzer', 'google-analytics-dashboard-for-wp' ),
987
 
988
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:153
989
  __( 'Email Summaries', 'google-analytics-dashboard-for-wp' ),
990
 
991
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:155
1009
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:168
1010
  __( 'Display Popular Posts based on your actual traffic data from Google Analytics and choose from over 20 advanced themes. Display Popular WooCommerce products using widgets or Gutenberg blocks.', 'google-analytics-dashboard-for-wp' ),
1011
 
1012
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:175
1013
  __( 'Not Available', 'google-analytics-dashboard-for-wp' ),
1014
 
1015
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:176
1042
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:66
1043
  __( 'Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout.', 'google-analytics-dashboard-for-wp' ),
1044
 
1045
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:67
1046
  __( 'Upgrade to Pro', 'google-analytics-dashboard-for-wp' ),
1047
 
1048
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:70
1103
  /* Translators: Error status and error text. */
1104
  __( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1105
 
1106
+ // Reference: src/modules/settings/api/index.js:27
1107
  // Reference: src/modules/wizard-onboarding/api/index.js:43
1108
  __( 'You appear to be offline.', 'google-analytics-dashboard-for-wp' ),
1109
 
1110
+ // Reference: src/modules/popular-posts/api/index.js:43
1111
  /* Translators: Error status and error text. */
1112
  __( 'Can\'t save settings. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1113
 
1114
+ // Reference: src/modules/popular-posts/api/index.js:47
1115
  __( 'Network error encountered. Settings not saved.', 'google-analytics-dashboard-for-wp' ),
1116
 
1117
  // Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
1228
  __( 'Can\'t validate the license. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1229
 
1230
  // Reference: src/modules/settings/components/input/SettingsInputNumber.vue:56
1231
+ // Reference: src/modules/settings/components/input/SettingsInputText.vue:50
1232
  __( 'Reset to default', 'google-analytics-dashboard-for-wp' ),
1233
 
1234
  // Reference: src/modules/settings/components/input/SettingsInputText.vue:51
1238
  __( 'Check out the newly added classic mode', 'google-analytics-dashboard-for-wp' ),
1239
 
1240
  // Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewDatePicker-Lite.vue:50
 
1241
  /* Translators: Placeholder adds a line break. */
1242
  __( 'You can customize your %sdate range only in the PRO version.', 'google-analytics-dashboard-for-wp' ),
1243
 
1271
  __( 'Remove row', 'google-analytics-dashboard-for-wp' ),
1272
 
1273
  // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:47
1274
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:271
1275
  __( 'Sessions', 'google-analytics-dashboard-for-wp' ),
1276
 
1277
  // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:83
1278
  /* Translators: Line break. */
1279
  __( 'Unique %s Sessions', 'google-analytics-dashboard-for-wp' ),
1280
 
1281
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:297
1282
  __( 'Pageviews', 'google-analytics-dashboard-for-wp' ),
1283
 
1284
  // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:86
1285
  /* Translators: Line break. */
1286
  __( 'Unique %s Pageviews', 'google-analytics-dashboard-for-wp' ),
1287
 
1288
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:285
1289
  __( 'A session is the browsing session of a single user to your site.', 'google-analytics-dashboard-for-wp' ),
1290
 
1291
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:286
1292
  __( 'A pageview is defined as a view of a page on your site that is being tracked by the Analytics tracking code. Each refresh of a page is also a new pageview.', 'google-analytics-dashboard-for-wp' ),
1293
 
1294
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:287
1295
  __( 'Total duration of all sessions (in seconds) / number of sessions.', 'google-analytics-dashboard-for-wp' ),
1296
 
1297
  // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:90
1298
  __( 'Percentage of single page visits (or web sessions). It is the number of visits in which a person leaves your website from the landing page without browsing any further.', 'google-analytics-dashboard-for-wp' ),
1299
 
1300
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:289
1301
  __( 'The number of distinct tracked users', 'google-analytics-dashboard-for-wp' ),
1302
 
1303
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:273
1304
  __( 'Avg. Session Duration', 'google-analytics-dashboard-for-wp' ),
1305
 
1306
  // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:50
1307
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:274
1308
  __( 'Bounce Rate', 'google-analytics-dashboard-for-wp' ),
1309
 
1310
  // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:51
1311
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:275
1312
  __( 'Total Users', 'google-analytics-dashboard-for-wp' ),
1313
 
1314
  // Reference: src/modules/settings/components/input/SettingsInputSelect.vue:62
1347
  /* Translators: add link to blog. */
1348
  __( 'To comply with Google\'s API policies we\'ve had to remove the real time report from the lite version. You can read about this decision and why it was made in %1$sthis blog post%2$s. To access the real time report in the WordPress backend, you will need to upgrade to Pro.', 'google-analytics-dashboard-for-wp' ),
1349
 
1350
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:35
1351
  __( 'Here\'s what you get:', 'google-analytics-dashboard-for-wp' ),
1352
 
1353
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:41
1590
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:272
1591
  __( 'A Tip for 2021', 'google-analytics-dashboard-for-wp' ),
1592
 
1593
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:273
1594
  __( 'Demographics', 'google-analytics-dashboard-for-wp' ),
1595
 
1596
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:274
1617
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:281
1618
  __( 'Average Age', 'google-analytics-dashboard-for-wp' ),
1619
 
1620
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:282
1621
  __( 'Behavior', 'google-analytics-dashboard-for-wp' ),
1622
 
1623
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:283
1735
  __( 'Upgrade to ExactMetrics Pro to Unlock Additional Actionable Insights', 'google-analytics-dashboard-for-wp' ),
1736
 
1737
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:325
 
1738
  __( 'Upgrade to ExactMetrics Pro', 'google-analytics-dashboard-for-wp' ),
1739
 
1740
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:328
1926
  __( 'Skip and Keep Connection', 'google-analytics-dashboard-for-wp' ),
1927
 
1928
  // Reference: src/modules/frontend/components/FrontendInfoboxChange.vue:29
1929
+ /* Translators: Replaced with the number of days */
 
1930
  __( 'vs. Previous Day', 'google-analytics-dashboard-for-wp' ),
1931
 
1932
  // Reference: src/modules/frontend/components/FrontendInfoboxChange.vue:46
 
1933
  __( 'No change', 'google-analytics-dashboard-for-wp' ),
1934
 
1935
  // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:100
2005
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:114
2006
  __( 'Choose where in the post body the widget will be placed.', 'google-analytics-dashboard-for-wp' ),
2007
 
2008
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:136
2009
  __( 'Customize Design', 'google-analytics-dashboard-for-wp' ),
2010
 
2011
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:123
2143
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:35
2144
  __( 'Unlock PRO Features Now', 'google-analytics-dashboard-for-wp' ),
2145
 
2146
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:36
 
2147
  __( 'Paste your license key here', 'google-analytics-dashboard-for-wp' ),
2148
 
2149
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:37
 
2150
  __( 'Verify', 'google-analytics-dashboard-for-wp' ),
2151
 
2152
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:39
2153
  /* Translators: Add link to retrieve license from account area. */
2154
  __( 'Already purchased? Simply enter your license key below to connect with ExactMetrics PRO! %1$sRetrieve your license key%2$s.', 'google-analytics-dashboard-for-wp' ),
2155
 
2156
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:69
2157
  __( 'There was an error unlocking ExactMetrics PRO please try again or install manually.', 'google-analytics-dashboard-for-wp' ),
2158
 
2159
  // Reference: src/modules/seo/components/yoast.vue:137
2162
  // Reference: src/modules/seo/components/yoast.vue:138
2163
  __( 'Automatically migrate all of your SEO settings with just 1 click!', 'google-analytics-dashboard-for-wp' ),
2164
 
2165
+ // Reference: src/modules/seo/components/aioseo.vue:155
2166
  __( '1,938', 'google-analytics-dashboard-for-wp' ),
2167
 
2168
+ // Reference: src/modules/seo/components/aioseo.vue:156
2169
  __( '2+ Million Active Installs', 'google-analytics-dashboard-for-wp' ),
2170
 
2171
  // Reference: src/modules/seo/components/yoast.vue:143
2174
  // Reference: src/modules/seo/components/yoast.vue:144
2175
  __( 'Set up the proper SEO foundations in less than 10 minutes.', 'google-analytics-dashboard-for-wp' ),
2176
 
2177
+ // Reference: src/modules/seo/components/aioseo.vue:165
2178
  __( 'SEO Audit Checklist', 'google-analytics-dashboard-for-wp' ),
2179
 
2180
+ // Reference: src/modules/seo/components/aioseo.vue:166
2181
  __( 'Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic.', 'google-analytics-dashboard-for-wp' ),
2182
 
2183
  // Reference: src/modules/seo/components/yoast.vue:147
2189
  // Reference: src/modules/seo/components/yoast.vue:149
2190
  __( 'Get AIOSEO for WordPress', 'google-analytics-dashboard-for-wp' ),
2191
 
2192
+ // Reference: src/modules/seo/components/aioseo.vue:180
2193
  __( 'Get the #1 Most Powerful WordPress SEO Plugin Today', 'google-analytics-dashboard-for-wp' ),
2194
 
2195
+ // Reference: src/modules/seo/components/aioseo.vue:181
2196
  __( 'Try it out today, for free.', 'google-analytics-dashboard-for-wp' ),
2197
 
2198
+ // Reference: src/modules/seo/components/aioseo.vue:184
2199
  __( 'Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings.', 'google-analytics-dashboard-for-wp' ),
2200
 
2201
+ // Reference: src/modules/seo/components/aioseo.vue:185
2202
  __( 'Activate and Install the Plugin with just one click!', 'google-analytics-dashboard-for-wp' ),
2203
 
2204
  // Reference: src/modules/seo/components/yoast.vue:222
2205
  __( 'Installing AIOSEO...', 'google-analytics-dashboard-for-wp' ),
2206
 
2207
+ // Reference: src/modules/seo/components/aioseo.vue:240
2208
  __( 'Congrats! All-in-One SEO Installed.', 'google-analytics-dashboard-for-wp' ),
2209
 
2210
  // Reference: src/modules/seo/components/yoast.vue:248
2211
  __( 'Switch to AIOSEO', 'google-analytics-dashboard-for-wp' ),
2212
 
2213
+ // Reference: src/modules/seo/components/aioseo.vue:261
2214
  __( 'Installation Failed. Please refresh and try again.', 'google-analytics-dashboard-for-wp' ),
2215
 
2216
+ // Reference: src/modules/seo/components/aioseo.vue:268
2217
  __( 'Activating AIOSEO...', 'google-analytics-dashboard-for-wp' ),
2218
 
2219
+ // Reference: src/modules/seo/components/aioseo.vue:275
2220
  __( 'Activate AIOSEO', 'google-analytics-dashboard-for-wp' ),
2221
 
2222
+ // Reference: src/modules/seo/components/aioseo.vue:279
2223
  __( 'Activation Failed. Please refresh and try again.', 'google-analytics-dashboard-for-wp' ),
2224
 
2225
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:45
2298
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:90
2299
  __( 'Reports', 'google-analytics-dashboard-for-wp' ),
2300
 
2301
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:120
2302
  __( 'Automatic Updates', 'google-analytics-dashboard-for-wp' ),
2303
 
2304
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:105
2380
  // Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:88
2381
  __( 'Pretty Links Installed & Activated', 'google-analytics-dashboard-for-wp' ),
2382
 
2383
+ // Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:191
2384
  __( 'Download Pretty Links', 'google-analytics-dashboard-for-wp' ),
2385
 
2386
  // Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:90
2789
  // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:45
2790
  __( 'Better Support', 'google-analytics-dashboard-for-wp' ),
2791
 
2792
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:41
2793
  __( 'Continue', 'google-analytics-dashboard-for-wp' ),
2794
 
2795
  // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:48
2883
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetCategory-Lite.vue:25
2884
  __( 'Choose from which categories posts will be displayed in the widget. All categories will be used if left empty.', 'google-analytics-dashboard-for-wp' ),
2885
 
 
2886
  // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:26
2887
  __( 'Activating...', 'google-analytics-dashboard-for-wp' ),
2888
 
3004
  // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:101
3005
  __( 'Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan', 'google-analytics-dashboard-for-wp' ),
3006
 
3007
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:138
3008
  __( 'Color', 'google-analytics-dashboard-for-wp' ),
3009
 
3010
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:139
3011
  __( 'Size', 'google-analytics-dashboard-for-wp' ),
3012
 
3013
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:137
3014
  __( 'Title', 'google-analytics-dashboard-for-wp' ),
3015
 
3016
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:142
3017
  __( 'Label', 'google-analytics-dashboard-for-wp' ),
3018
 
3019
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:143
3020
  __( 'Background', 'google-analytics-dashboard-for-wp' ),
3021
 
3022
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:140
3023
  __( 'Border', 'google-analytics-dashboard-for-wp' ),
3024
 
3025
  // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:108
3108
  /* Translators: Make text green. */
3109
  __( 'Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s', 'google-analytics-dashboard-for-wp' ),
3110
 
3111
+ // Reference: src/modules/settings/components/SettingsAddonUpgrade.vue:37
3112
  __( 'Upgrade', 'google-analytics-dashboard-for-wp' ),
3113
 
3114
  // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputPdfReports-Lite.vue:17
3201
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:78
3202
  __( 'There are two ways to manual include the widget in your posts.', 'google-analytics-dashboard-for-wp' ),
3203
 
3204
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:79
3205
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:105
3206
  __( 'Using the Gutenberg Block', 'google-analytics-dashboard-for-wp' ),
3207
 
3217
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:83
3218
  __( '%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg', 'google-analytics-dashboard-for-wp' ),
3219
 
3220
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:85
3221
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:113
3222
  __( '%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page.', 'google-analytics-dashboard-for-wp' ),
3223
 
3224
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:86
3225
  __( '%1$sStep 2%2$s - Search for “Inline Popular Posts by ExactMetrics”.', 'google-analytics-dashboard-for-wp' ),
3226
 
3227
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:87
3228
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:115
3229
  __( '%1$sStep 3%2$s - Style the widget using the Block Settings sidebar.', 'google-analytics-dashboard-for-wp' ),
3230
 
3231
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:89
3232
  __( 'Shortcode', 'google-analytics-dashboard-for-wp' ),
3233
 
3234
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:90
3235
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:123
3236
  __( 'Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin.', 'google-analytics-dashboard-for-wp' ),
3237
 
3238
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:91
3239
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:124
3240
  __( 'Copy Shortcode', 'google-analytics-dashboard-for-wp' ),
3241
 
3309
  // Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputMedia-Lite.vue:26
3310
  __( 'Track how your users interact with videos on your website. Upgrade to ExactMetrics Pro.', 'google-analytics-dashboard-for-wp' ),
3311
 
3312
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:260
3313
+ // Reference: src/modules/reports/routes/exactmetrics-routes.js:95
3314
  __( '2021 Year in Review', 'google-analytics-dashboard-for-wp' ),
3315
 
3316
  // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:100
3510
  // Reference: src/modules/growth-tools/components/GrowthNavigation.vue:21
3511
  __( 'Guides & Resources', 'google-analytics-dashboard-for-wp' ),
3512
 
3513
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:175
3514
  __( 'Media Tracking', 'google-analytics-dashboard-for-wp' ),
3515
 
3516
  // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:34
3517
  __( 'Get Started', 'google-analytics-dashboard-for-wp' ),
3518
 
3519
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:120
3520
  __( 'Privacy Compliance Addon', 'google-analytics-dashboard-for-wp' ),
3521
 
3522
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:121
3523
  __( 'Help Google Analytics become compliant with internet privacy laws like GDPR, PECR, and CCPA.', 'google-analytics-dashboard-for-wp' ),
3524
 
3525
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:132
3526
  __( 'Get access to advanced reports inside WordPress including search keywords report, real-time analytics dashboard, publishers / eCommerce report, custom dimensions, and more.', 'google-analytics-dashboard-for-wp' ),
3527
 
3528
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:143
3529
  __( 'Instantly enable enhanced eCommerce tracking, so you can measure conversions, sales, and revenue stats. Works with WooCommerce, Easy Digital Downloads, MemberPress, and more.', 'google-analytics-dashboard-for-wp' ),
3530
 
3531
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:153
3532
  __( '20+ Advanced Tracking', 'google-analytics-dashboard-for-wp' ),
3533
 
3534
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:154
3535
  __( 'Get access to advanced tracking features like form conversion tracking, author tracking, custom dimensions, scroll tracking, and more.', 'google-analytics-dashboard-for-wp' ),
3536
 
3537
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:164
3538
  __( 'Advanced Growth Tools', 'google-analytics-dashboard-for-wp' ),
3539
 
3540
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:165
3541
  __( 'Get access to advanced growth tools such as popular posts addon, A/B testing tool, smart URL builder, and more.', 'google-analytics-dashboard-for-wp' ),
3542
 
3543
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:176
3544
  __( 'Track how your users interact with videos on your website.', 'google-analytics-dashboard-for-wp' ),
3545
 
3546
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:317
3547
  __( 'Error Processing', 'google-analytics-dashboard-for-wp' ),
3548
 
3549
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:318
3550
  __( 'There was an error while processing some features. Please try again or you can skip this process for now', 'google-analytics-dashboard-for-wp' ),
3551
 
3552
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:37
3553
  __( 'Which website features would you like to enable?', 'google-analytics-dashboard-for-wp' ),
3554
 
3555
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:38
3556
  __( 'We’ve already selected our recommended features based on your site. ', 'google-analytics-dashboard-for-wp' ),
3557
 
3558
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:39
3559
  __( 'Other Addons', 'google-analytics-dashboard-for-wp' ),
3560
 
3561
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:40
3562
  __( 'View all ExactMetrics addons', 'google-analytics-dashboard-for-wp' ),
3563
 
3564
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:72
3565
  __( 'Standard Analytics & Reports', 'google-analytics-dashboard-for-wp' ),
3566
 
3567
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:73
3568
  __( 'Get the reports and stats that matter right inside your WordPress Dashboard.', 'google-analytics-dashboard-for-wp' ),
3569
 
3570
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:85
3571
  __( 'Helps you see what links your users are clicking on your site.', 'google-analytics-dashboard-for-wp' ),
3572
 
3573
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:96
3574
  __( 'All In One SEO Toolkit', 'google-analytics-dashboard-for-wp' ),
3575
 
3576
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:97
3577
  __( 'The best WordPress SEO plugin that works with ExactMetrics to boost your rankings.', 'google-analytics-dashboard-for-wp' ),
3578
 
3579
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:108
3580
  __( 'Smart Form Builder by WPForms', 'google-analytics-dashboard-for-wp' ),
3581
 
3582
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:109
3583
  __( 'The most popular WordPress form plugin, trusted by over 5 million websites. Easily create contact forms, payment forms, surveys and more.', 'google-analytics-dashboard-for-wp' ),
3584
 
3585
  // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:133
3627
  __( 'Verifying License...', 'google-analytics-dashboard-for-wp' ),
3628
 
3629
  // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:227
3630
+ __( 'There was an error unlocking ExactMetrics PRO please try again or install manually.', 'google-analytics-dashboard-for-wp' ),
3631
+
3632
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:43
3633
+ __( 'The following plugins will be installed: ', 'google-analytics-dashboard-for-wp' )
3634
  );
3635
  /* THIS IS THE END OF THE GENERATED FILE */
lite/assets/vue/css/wizard.css CHANGED
@@ -1 +1 @@
1
- @import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap);.exactmetrics-admin-page fieldset[disabled] .multiselect{pointer-events:none}.exactmetrics-admin-page .multiselect__spinner{position:absolute;right:1px;top:1px;width:48px;height:35px;background:#fff;display:block}.exactmetrics-admin-page .multiselect__spinner:after,.exactmetrics-admin-page .multiselect__spinner:before{position:absolute;content:"";top:50%;left:50%;margin:-8px 0 0 -8px;width:16px;height:16px;border-radius:100%;border:2px solid rgba(0,0,0,0);border-top-color:#b7c9d9;-webkit-box-shadow:0 0 0 1px rgba(0,0,0,0);box-shadow:0 0 0 1px rgba(0,0,0,0)}.exactmetrics-admin-page .multiselect__spinner:before{-webkit-animation:a 2.4s cubic-bezier(.41,.26,.2,.62);animation:a 2.4s cubic-bezier(.41,.26,.2,.62);-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.exactmetrics-admin-page .multiselect__spinner:after{-webkit-animation:a 2.4s cubic-bezier(.51,.09,.21,.8);animation:a 2.4s cubic-bezier(.51,.09,.21,.8);-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.exactmetrics-admin-page .multiselect__loading-enter-active,.exactmetrics-admin-page .multiselect__loading-leave-active{-webkit-transition:opacity .4s ease-in-out;transition:opacity .4s ease-in-out;opacity:1}.exactmetrics-admin-page .multiselect__loading-enter,.exactmetrics-admin-page .multiselect__loading-leave-active{opacity:0}.exactmetrics-admin-page .multiselect,.exactmetrics-admin-page .multiselect__input,.exactmetrics-admin-page .multiselect__single{font-family:inherit;font-size:16px;-ms-touch-action:manipulation;touch-action:manipulation}.exactmetrics-admin-page .multiselect{-webkit-box-sizing:content-box;box-sizing:content-box;display:block;position:relative;width:100%;min-height:40px;text-align:left;color:#35495e}.exactmetrics-admin-page .multiselect *{-webkit-box-sizing:border-box;box-sizing:border-box}.exactmetrics-admin-page .multiselect:focus{outline:none}.exactmetrics-admin-page .multiselect--disabled{opacity:.6}.exactmetrics-admin-page .multiselect--active{z-index:1}.exactmetrics-admin-page .multiselect--active:not(.multiselect--above) .multiselect__current,.exactmetrics-admin-page .multiselect--active:not(.multiselect--above) .multiselect__input,.exactmetrics-admin-page .multiselect--active:not(.multiselect--above) .multiselect__tags{border-bottom-left-radius:0;border-bottom-right-radius:0}.exactmetrics-admin-page .multiselect--active .multiselect__select{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.exactmetrics-admin-page .multiselect--above.multiselect--active .multiselect__current,.exactmetrics-admin-page .multiselect--above.multiselect--active .multiselect__input,.exactmetrics-admin-page .multiselect--above.multiselect--active .multiselect__tags{border-top-left-radius:0;border-top-right-radius:0}.exactmetrics-admin-page .multiselect__input,.exactmetrics-admin-page .multiselect__single{position:relative;display:inline-block;min-height:20px;line-height:20px;border:none;border-radius:5px;background:#fff;padding:0 0 0 5px;width:100%;-webkit-transition:border .1s ease;transition:border .1s ease;-webkit-box-sizing:border-box;box-sizing:border-box;margin-bottom:8px;vertical-align:top}.exactmetrics-admin-page .multiselect__input:-ms-input-placeholder{color:#35495e}.exactmetrics-admin-page .multiselect__input::-webkit-input-placeholder{color:#35495e}.exactmetrics-admin-page .multiselect__input::-moz-placeholder{color:#35495e}.exactmetrics-admin-page .multiselect__input::-ms-input-placeholder{color:#35495e}.exactmetrics-admin-page .multiselect__input::placeholder{color:#35495e}.exactmetrics-admin-page .multiselect__tag~.multiselect__input,.exactmetrics-admin-page .multiselect__tag~.multiselect__single{width:auto}.exactmetrics-admin-page .multiselect__input:hover,.exactmetrics-admin-page .multiselect__single:hover{border-color:#cfcfcf}.exactmetrics-admin-page .multiselect__input:focus,.exactmetrics-admin-page .multiselect__single:focus{border-color:#a8a8a8;outline:none}.exactmetrics-admin-page .multiselect__single{padding-left:5px;margin-bottom:8px}.exactmetrics-admin-page .multiselect__tags-wrap{display:inline}.exactmetrics-admin-page .multiselect__tags{min-height:40px;display:block;padding:32px 32px 30px;border-radius:5px;background:#f4f3f7;font-size:14px}.exactmetrics-admin-page .multiselect__tag{position:relative;display:inline-block;padding:10px 15px 10px 27px;border-radius:5px;margin-right:10px;color:#fff;line-height:1;background:#6528f5;white-space:nowrap;overflow:hidden;max-width:100%;text-overflow:ellipsis;font-size:14px}.exactmetrics-admin-page .multiselect__tag.exactmetrics-tag-forced{padding-left:15px}.exactmetrics-admin-page .multiselect__tag.exactmetrics-tag-forced i{display:none}.exactmetrics-admin-page .multiselect__tag-icon{cursor:pointer;position:absolute;left:0;top:0;bottom:0;font-weight:400;font-style:normal;width:32px;text-align:center;line-height:38px;-webkit-transition:all .2s ease;transition:all .2s ease;border-radius:5px;margin-left:0}.exactmetrics-admin-page .multiselect__tag-icon:hover{background:rgba(0,0,0,0)}.exactmetrics-admin-page .multiselect__tag-icon:after{content:"\f046";color:#fff;line-height:2;margin-top:1px;font-size:16px;display:block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.exactmetrics-admin-page .multiselect__tag-icon:hover:after{color:#9087ac}.exactmetrics-admin-page .multiselect__tag-icon:focus{outline:none}.exactmetrics-admin-page .multiselect__tag-icon:focus:after{text-decoration:underline;color:#fff}.exactmetrics-admin-page .multiselect__current{min-height:40px;overflow:hidden;padding:8px 30px 0 12px;white-space:nowrap;border-radius:5px;border:1px solid #e8e8e8}.exactmetrics-admin-page .multiselect__current,.exactmetrics-admin-page .multiselect__select{line-height:16px;-webkit-box-sizing:border-box;box-sizing:border-box;display:block;margin:0;text-decoration:none;cursor:pointer}.exactmetrics-admin-page .multiselect__select{display:none}.exactmetrics-admin-page .multiselect__placeholder{color:#adadad;display:inline-block;margin-bottom:10px;padding-top:2px}.exactmetrics-admin-page .multiselect--active .multiselect__placeholder{display:none}.exactmetrics-admin-page .multiselect__content-wrapper{position:absolute;display:block;background:#fff;max-height:240px;overflow:auto;border:1px solid #f4f3f7;border-top:none;border-radius:3px;z-index:1;-webkit-overflow-scrolling:touch;padding:6px}.exactmetrics-admin-page .multiselect__content{list-style:none;display:inline-block;padding:0;margin:0;min-width:100%;vertical-align:top}.exactmetrics-admin-page .multiselect--above .multiselect__content-wrapper{bottom:100%;border-bottom-left-radius:0;border-bottom-right-radius:0;border-top-left-radius:5px;border-top-right-radius:5px;border-bottom:none;border-top:1px solid #e8e8e8}.exactmetrics-admin-page .multiselect__content::webkit-scrollbar{display:none}.exactmetrics-admin-page .multiselect__element{display:block}.exactmetrics-admin-page .multiselect__option{display:block;padding:10px;line-height:16px;text-decoration:none;text-transform:none;vertical-align:middle;position:relative;cursor:pointer;white-space:nowrap;font-size:14px}.exactmetrics-admin-page .multiselect__option:after{top:0;right:0;position:absolute;line-height:40px;padding-right:12px;padding-left:20px;font-size:13px}.exactmetrics-admin-page .multiselect__option--highlight{background:#f4f3f7;outline:none;color:#210f59}.exactmetrics-admin-page .multiselect__option--highlight:after{content:attr(data-select);background:#f4f3f7;color:#210f59}.exactmetrics-admin-page .multiselect__option--selected{background:#f4f3f7;color:#210f59;font-weight:700}.exactmetrics-admin-page .multiselect__option--selected:after{content:attr(data-selected);color:silver}.exactmetrics-admin-page .multiselect__option--selected.multiselect__option--highlight{background:#6528f5;color:#fff}.exactmetrics-admin-page .multiselect__option--selected.multiselect__option--highlight:after{background:#6528f5;content:attr(data-deselect);color:#fff}.exactmetrics-admin-page .multiselect--disabled{background:#ededed;pointer-events:none}.exactmetrics-admin-page .multiselect--disabled .multiselect__current,.exactmetrics-admin-page .multiselect--disabled .multiselect__select{background:#ededed;color:#a6a6a6}.exactmetrics-admin-page .multiselect__option--disabled{background:#ededed!important;color:#a6a6a6!important;cursor:text;pointer-events:none}.exactmetrics-admin-page .multiselect__option--group{background:#ededed;color:#35495e}.exactmetrics-admin-page .multiselect__option--group.multiselect__option--highlight{background:#35495e;color:#fff}.exactmetrics-admin-page .multiselect__option--group.multiselect__option--highlight:after{background:#35495e}.exactmetrics-admin-page .multiselect__option--disabled.multiselect__option--highlight{background:#dedede}.exactmetrics-admin-page .multiselect__option--group-selected.multiselect__option--highlight{background:#6528f5;color:#fff}.exactmetrics-admin-page .multiselect__option--group-selected.multiselect__option--highlight:after{background:#6528f5;content:attr(data-deselect);color:#fff}.exactmetrics-admin-page .multiselect-enter-active,.exactmetrics-admin-page .multiselect-leave-active{-webkit-transition:all .15s ease;transition:all .15s ease}.exactmetrics-admin-page .multiselect-enter,.exactmetrics-admin-page .multiselect-leave-active{opacity:0}.exactmetrics-admin-page .multiselect__strong{margin-bottom:8px;line-height:20px;display:inline-block;vertical-align:top}.exactmetrics-admin-page [dir=rtl] .multiselect{text-align:right}.exactmetrics-admin-page [dir=rtl] .multiselect__select{right:auto;left:1px}.exactmetrics-admin-page [dir=rtl] .multiselect__tags{padding:8px 8px 0 40px}.exactmetrics-admin-page [dir=rtl] .multiselect__content{text-align:right}.exactmetrics-admin-page [dir=rtl] .multiselect__option:after{right:auto;left:0}.exactmetrics-admin-page [dir=rtl] .multiselect__clear{right:auto;left:12px}.exactmetrics-admin-page [dir=rtl] .multiselect__spinner{right:auto;left:1px}@-webkit-keyframes a{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(2turn);transform:rotate(2turn)}}@keyframes a{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(2turn);transform:rotate(2turn)}}*{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}body{font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.exactmetrics-onboarding-header{text-align:center;background-color:#210f59;padding:20px}.exactmetrics-header-navigation{display:none}.exactmetrics-onboarding-header h1{margin:0;line-height:1}img{max-width:100%}a{color:#6528f5}a:focus,a:hover{color:#37276a}.exactmetrics-onboarding-wizard-container{margin:0 auto;width:750px;position:relative}.exactmetrics-onboarding-wizard-steps{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:60px;position:absolute;right:100%;margin-right:138px;width:40px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.exactmetrics-onboarding-wizard-step-line{background:#e9e7ee;height:32px;width:4px;margin:14px 0;border-radius:10px}.exactmetrics-onboarding-wizard-step-line.exactmetrics-onboarding-wizard-line-active{background:#32a27a}.exactmetrics-onboarding-wizard-step{border-radius:50%;-ms-flex-negative:0;flex-shrink:0;height:24px;width:24px;background-color:#e9e7ee}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active,.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-completed{background-color:#32a27a;position:relative}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active{width:40px;height:40px;background-color:#210f59;text-align:center;line-height:40px;margin:-8px 0}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:first-child{margin-top:0}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:after{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#fff}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:first-child:after{content:"\f059"}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:nth-child(3):after{content:"\004a"}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:nth-child(5):after{content:"\f062"}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:nth-child(7):after{content:"\f06b"}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:nth-child(9):after{content:"\f06c"}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:nth-child(11){background-color:#32a27a}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:nth-child(11):after{content:"\f045"}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-completed:after{color:#fff;content:"\f045";display:block;font-family:Misettings;font-size:15px;font-weight:400;left:0;position:absolute;text-align:center;line-height:25px;width:100%}.exactmetrics-onboarding-wizard-content{color:#210f59;font-size:15px;margin:60px 0}.exactmetrics-onboarding-wizard-content h2{color:#210f59;font-size:32px;font-weight:500;margin:0 0 12px}.exactmetrics-onboarding-wizard-content .subtitle{font-size:16px;line-height:1.75;margin-top:0;margin-bottom:20px}.exactmetrics-onboarding-wizard-content .exactmetrics-separator{border-top:1px solid #e9e7ee;clear:both;margin:24px 0}.exactmetrics-icon-info{display:inline-block;vertical-align:middle}.exactmetrics-icon-info svg{height:16px;width:16px}.exactmetrics-onboarding-wizard-form label{color:#210f59;font-size:17px;font-weight:500;line-height:1.5}.exactmetrics-description{margin-top:16px;line-height:1.75;margin-bottom:20px}.exactmetrics-form-input{margin:5px 0 0;position:relative}.exactmetrics-form-input input[type=radio]{opacity:0;position:absolute}.exactmetrics-settings-input-radio{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.exactmetrics-settings-input-radio input{opacity:0;position:absolute}.exactmetrics-settings-input-radio label{color:#37276a;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;border:2px solid #f4f3f7;height:200px;border-radius:10px;background-color:#f4f3f7;text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;cursor:pointer}.exactmetrics-settings-input-radio label:hover{background-color:#fff;border-color:#bcb7cd}.exactmetrics-settings-input-radio label:hover .exactmetrics-styled-radio{background-color:#f4f3f7}.exactmetrics-settings-input-radio label.exactmetrics-styled-radio-label-checked{border-color:#32a27a;background-color:#fff;color:#210f59}.exactmetrics-settings-input-radio label small{font-size:16px;color:#210f59;font-weight:400}.exactmetrics-settings-input-radio label>span{vertical-align:middle;font-weight:500;line-height:1;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.exactmetrics-settings-input-radio label>span:not(.exactmetrics-styled-radio):before{font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:31px;margin-bottom:24px;display:block}.exactmetrics-settings-input-radio label:last-child{margin-bottom:0}.exactmetrics-settings-input-radio label[for="exactmetrics-settings-radio-site_type[business]"]>span:not(.exactmetrics-styled-radio):before{content:"\f05a"}.exactmetrics-settings-input-radio label[for="exactmetrics-settings-radio-site_type[publisher]"]>span:not(.exactmetrics-styled-radio):before{content:"\f043"}.exactmetrics-settings-input-radio label[for="exactmetrics-settings-radio-site_type[ecommerce]"]>span:not(.exactmetrics-styled-radio):before{content:"\f033"}.exactmetrics-settings-input-radio .exactmetrics-styled-radio{width:40px;height:40px;position:relative;display:inline-block;border-radius:50%;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;background-color:#fff;margin-top:20px}.exactmetrics-settings-input-radio .exactmetrics-styled-radio.exactmetrics-styled-radio-checked{background:rgba(50,162,122,.1);text-align:center;line-height:40px}.exactmetrics-settings-input-radio .exactmetrics-styled-radio.exactmetrics-styled-radio-checked:after{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f045";color:#32a27a}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-radio>span{width:30%}.exactmetrics-form-input input:focus~.exactmetrics-styled-checkbox-status{-webkit-box-shadow:0 0 5px 2px #4d90fe;box-shadow:0 0 5px 2px #4d90fe}.exactmetrics-form-input .exactmetrics-form-input-label{display:inline-block;vertical-align:top}.exactmetrics-form-input .exactmetrics-form-input-label span{font-weight:400}.exactmetrics-onboarding-button,.request-filesystem-credentials-action-buttons .button,.request-filesystem-credentials-action-buttons input[type=submit]{border:none;border-radius:3px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:600;line-height:1.2;padding:12px 20px;text-decoration:none}.exactmetrics-onboarding-button.exactmetrics-onboarding-button-large{background-color:#32a27a;font-size:15px;padding:16px 23px}.exactmetrics-onboarding-button.exactmetrics-onboarding-button-large:after{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f06a";margin-left:13px}.exactmetrics-onboarding-button.exactmetrics-onboarding-button-large:focus,.exactmetrics-onboarding-button.exactmetrics-onboarding-button-large:hover{background-color:#19865f;color:#fff}.exactmetrics-onboarding-button.exactmetrics-onboarding-button-regular,.request-filesystem-credentials-action-buttons .button,.request-filesystem-credentials-action-buttons input[type=submit]{background-color:#6528f5;font-size:14px;font-weight:500;padding:10px 16px}.exactmetrics-onboarding-button.exactmetrics-onboarding-button-regular:focus,.exactmetrics-onboarding-button.exactmetrics-onboarding-button-regular:hover,.request-filesystem-credentials-action-buttons .button:focus,.request-filesystem-credentials-action-buttons .button:hover,.request-filesystem-credentials-action-buttons input[type=submit]:focus,.request-filesystem-credentials-action-buttons input[type=submit]:hover{background-color:#37276a;color:#fff}.exactmetrics-onboarding-button.exactmetrics-button-disabled,.exactmetrics-onboarding-button.exactmetrics-button-disabled:focus,.exactmetrics-onboarding-button.exactmetrics-button-disabled:hover{background-color:#e9e7ee;color:#9087ac;cursor:auto;outline:none}.exactmetrics-onboarding-button.exactmetrics-button-activated,.exactmetrics-onboarding-button.exactmetrics-button-activated:focus,.exactmetrics-onboarding-button.exactmetrics-button-activated:hover{background-color:#fff;border-color:#8aa4b8;color:#8aa4b8;cursor:auto;outline:none}.exactmetrics-onboarding-wizard-form input[type=email],.exactmetrics-onboarding-wizard-form input[type=text]{border:none;color:#9087ac;display:block;border-radius:3px;font-size:14px;padding:9px 15px;height:40px;width:100%;background:#f4f3f7}.exactmetrics-onboarding-wizard-form .exactmetrics-form-row-license input[type=text]{background:#fff;color:#210f59}.exactmetrics-onboarding-wizard-form input[type=email]:focus,.exactmetrics-onboarding-wizard-form input[type=text]:focus{border-color:#6528f5;outline:none}.exactmetrics-form-input.valid input[type=email],.exactmetrics-form-input.valid input[type=text]{border-color:#64bfa5}.exactmetrics-form-input.error input[type=email],.exactmetrics-form-input.error input[type=text]{border-color:#dc3232}.exactmetrics-form-input select{width:100%}.exactmetrics-form-input.error:after,.exactmetrics-form-input.valid:after{display:none;font-family:Misettings;font-size:20px;font-weight:400;position:absolute;right:12px;top:10px}.exactmetrics-form-input.valid:after{color:#32a27a;content:"\f045";display:block}.exactmetrics-form-input.error:after{color:#d83638;content:"\f046";display:block}.exactmetrics-error-message{color:#d83638;font-weight:500}::-webkit-input-placeholder{color:#9087ac}::-moz-placeholder{color:#9087ac}:-ms-input-placeholder{color:#9087ac}:-moz-placeholder{color:#9087ac}.exactmetrics-notice{color:#8aa4b8;font-size:16px;line-height:1.4;margin:30px 0}.exactmetrics-text-button{background:none;border:none;border-bottom:1px solid rgba(0,0,0,0);color:#9087ac;cursor:pointer;font-size:15px;padding:0}.exactmetrics-text-button i{margin-left:4px}.exactmetrics-text-button:hover{border-bottom-color:#9087ac}.exactmetrics-pull-right{float:right}.exactmetrics-text-button.exactmetrics-pull-right{margin-top:15px}.exactmetrics-form-inline .exactmetrics-form-input,.exactmetrics-form-inline .exactmetrics-form-label{float:left;width:80%}.exactmetrics-form-inline .exactmetrics-form-input{float:right;text-align:right;width:20%}.exactmetrics-form-inline:after{clear:both;content:"";display:table}.exactmetrics-form-inline p.exactmetrics-description{margin-bottom:0}.exactmetrics-form-inline .exactmetrics-separator{float:left;margin-top:27px;width:100%}.exactmetrics-settings-input-checkbox>label{color:#210f59;font-size:14px;margin:0;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap}.exactmetrics-settings-input-checkbox>label.exactmetrics-styled-checkbox-faux{cursor:default}.exactmetrics-settings-input-checkbox>label.exactmetrics-styled-checkbox-faux .exactmetrics-styled-checkbox{cursor:default;background-color:#e9e7ee}.exactmetrics-settings-input-checkbox>label.exactmetrics-styled-checkbox-faux .exactmetrics-styled-checkbox.exactmetrics-styled-checkbox-checked{background-color:#e9e7ee}.exactmetrics-settings-input-checkbox>label.exactmetrics-styled-checkbox-faux .exactmetrics-styled-checkbox.exactmetrics-styled-checkbox-checked:after{opacity:.5}.exactmetrics-settings-input-checkbox>label input{display:none}.exactmetrics-settings-input-checkbox>label>span{vertical-align:middle}.exactmetrics-settings-input-checkbox>label:last-child{margin-bottom:0}.exactmetrics-settings-input-checkbox .exactmetrics-styled-checkbox{width:40px;height:23px;position:relative;display:inline-block;border-radius:20px;margin-right:15px;background-color:#e9e7ee;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.exactmetrics-settings-input-checkbox .exactmetrics-styled-checkbox.exactmetrics-styled-checkbox-checked:after{right:3px;left:auto;background:#6528f5}.exactmetrics-settings-input-checkbox .exactmetrics-styled-checkbox:after{left:3px;top:3px;bottom:3px;width:17px;position:absolute;content:"";background:#bcb7cd;display:block;border-radius:50%}.exactmetrics-settings-input-checkbox .exactmetrics-checkbox-label{display:block;font-weight:500;font-size:17px;color:#210f59;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;width:100%;margin-bottom:16px}.exactmetrics-settings-input-checkbox .exactmetrics-checkbox-description{font-weight:400;color:#6528f5;display:inline-block;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;font-size:15px;line-height:1.75}.exactmetrics-settings-input-checkbox .exactmetrics-info{margin-left:12px;display:inline-block;-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-separator,.exactmetrics-onboarding-step-recommended-settings .exactmetrics-onboarding-wizard-form .exactmetrics-separator{display:block}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-grey-area>.exactmetrics-separator:first-child{display:none}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-grey-area .exactmetrics-text-right{margin-top:44px}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-grey-area .exactmetrics-text-button{color:#6528f5}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-grey-area .exactmetrics-text-button:focus,.exactmetrics-onboarding-step-recommended-addons .exactmetrics-grey-area .exactmetrics-text-button:hover{color:#37276a}.exactmetrics-text-right{text-align:right}.exactmetrics-addon-icon,.exactmetrics-addon-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-addon-icon{-ms-flex-negative:0;flex-shrink:0;height:32px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;width:32px;border-radius:50%;background:rgba(33,15,89,.1)}.exactmetrics-addon-icon img{display:block;vertical-align:middle}.exactmetrics-addon-text{padding:0 10px 0 20px;width:100%}.exactmetrics-addon-text label{line-height:1;display:block;margin-bottom:16px;font-size:17px}.exactmetrics-addon-text p{margin:6px 0 4px;display:inline;line-height:1.75}.exactmetrics-addon-text a{color:#9087ac;margin-left:5px}.exactmetrics-green-link{color:#5cc0a5;font-size:16px}.exactmetrics-addon-button{-ms-flex-negative:0;flex-shrink:0;padding-top:38px;-ms-flex-item-align:start;align-self:start}.exactmetrics-addon-button .exactmetrics-onboarding-button{text-align:center;line-height:1.2;padding:12px 24px 11px}.exactmetrics-wpforms-row .exactmetrics-addon-icon{height:158px;width:145px;background:#fff;border-radius:5px}.exactmetrics-wpforms-row .exactmetrics-addon-text{padding-left:40px}.exactmetrics-wpforms-row .exactmetrics-addon-text label{font-size:18px;font-weight:900}.exactmetrics-wpforms-row .exactmetrics-addon-text p{font-size:16px;line-height:1.4;margin-bottom:0}[class*=monstericon-]:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.monstericon-info-circle-regular:before{color:#9087ac;font-size:15px}.exactmetrics-loader-animated{animation:exactmetrics-rotate-loading 1.5s linear 0s infinite normal;-webkit-animation:exactmetrics-rotate-loading 1.5s linear 0s infinite normal;background-color:rgba(0,0,0,0)!important;border-radius:100%;border-color:rgba(0,0,0,0) #4b9ce4;border-style:solid;border-width:.25em;-webkit-box-sizing:border-box;box-sizing:border-box;color:rgba(0,0,0,0);cursor:default;height:2em;left:0;opacity:0;padding:0;position:absolute;top:0;width:2em;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}@-webkit-keyframes exactmetrics-rotate-loading{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes exactmetrics-rotate-loading{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.exactmetrics-settings-input-select label>span,.settings-input-text label>span{font-weight:400;color:#210f59;display:inline-block;margin-top:7px;font-size:15px}.exactmetrics-settings-input-select .exactmetrics-reset-default,.settings-input-text .exactmetrics-reset-default{font-size:14px;margin-top:7px;float:right;font-weight:400}.exactmetrics-settings-input-select label>span.exactmetrics-dark,.settings-input-text label>span.exactmetrics-dark{display:block;font-weight:500;font-size:16px;color:#393f4c}.exactmetrics-settings-input-select .exactmetrics-info,.settings-input-text .exactmetrics-info{margin-left:4px}.exactmetrics-settings-input-select .settings-input-text-input,.settings-input-text .settings-input-text-input{margin-top:18px}.exactmetrics-settings-input-authenticate .exactmetrics-dark{display:block;font-weight:500;font-size:17px;color:#210f59;margin-bottom:16px}.exactmetrics-settings-input-authenticate p{font-weight:400;color:#210f59;display:inline-block;margin-top:0;font-size:15px;line-height:1.75}.exactmetrics-settings-input-select-input{margin-top:18px}.exactmetrics-onboarding-wizard-form .field-title{display:block;margin:15px 0}.exactmetrics-onboarding-wizard-form fieldset{border:none;padding:0;margin:0;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-onboarding-wizard-form .ftp-password{margin-bottom:15px}.exactmetrics-onboarding-wizard-form ol{padding-left:20px}.exactmetrics-onboarding-wizard-form ol li{color:#393f4b;line-height:1.5;margin-bottom:30px;padding-left:15px}.exactmetrics-hidden{display:none}.exactmetrics-small{font-size:12px}.exactmetrics-auth-info .exactmetrics-dark{color:#210f59;font-size:16px;font-weight:500}.exactmetrics-auth-info p{margin:0;color:#210f59}.exactmetrics-onboarding-wizard-form .exactmetrics-separator{display:none}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater .exactmetrics-error{margin-top:0;margin-bottom:18px}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-labels label{color:#210f59;font-weight:700;margin-bottom:6px;font-size:17px}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:18px}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row>span{width:100%;margin-right:18px}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row button{padding:0;border:none;background:rgba(33,15,89,.1);color:#210f59;width:32px;height:32px;border-radius:50%;cursor:pointer;display:block;position:relative;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row button i{position:absolute;left:10px;top:7px;font-size:15px}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row button i:before{content:"\f065"}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row input[type=number]{width:30%;margin-right:15px}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row select{width:70%;height:40px;margin-right:15px;border:1px solid #9087ac;border-radius:3px;margin-top:0;margin-bottom:0;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row.exactmetrics-disabled-row{opacity:.5}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row input[type=text]{border-color:rgba(0,0,0,0);background-color:#fff;color:#210f59}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row .exactmetrics-input-error input{border-color:#e43462}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row .exactmetrics-input-valid{position:relative}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row .exactmetrics-input-valid:after{position:absolute;right:8px;height:26px;width:26px;background:rgba(50,162,122,.1);top:7px;content:"\f015";display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#32a27a;border-radius:50%;text-align:center;line-height:26px}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row .exactmetrics-input-valid input{border-color:#32a27a}.exactmetrics-onboarding-wizard-form .exactmetrics-error{margin:18px 0 0;color:#d83638;cursor:default}.exactmetrics-onboarding-wizard-form .exactmetrics-error i{margin-right:10px}.exactmetrics-onboarding-wizard-form h3{font-size:24px;line-height:1.4;color:#210f59;margin-bottom:16px}.exactmetrics-onboarding-wizard-form .exactmetrics-flex-row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap}.exactmetrics-onboarding-wizard-form .exactmetrics-flex-row p{line-height:1.75}.exactmetrics-onboarding-wizard-form .exactmetrics-flex-row .exactmetrics-flex-row-half{width:60%}.exactmetrics-onboarding-wizard-form .exactmetrics-flex-row .exactmetrics-flex-row-half:first-child{width:40%}p>label{display:block}p .exactmetrics-info{margin-left:4px}.exactmetrics-sublabel{font-weight:400;color:#210f59;display:inline-block;margin-top:8px;font-size:15px}.exactmetrics-settings-input-repeater-labels label{color:#fff;font-weight:700;margin-bottom:6px;display:block;width:calc(50% - 8px)}.exactmetrics-settings-input-repeater-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:18px}.exactmetrics-settings-input-repeater-row:first-child{margin-bottom:14px}.exactmetrics-settings-input-repeater-row>input[type=text]{width:50%}.exactmetrics-settings-input-repeater-row input,.exactmetrics-settings-input-repeater-row select{margin-right:18px}.exactmetrics-settings-input-repeater-row button{padding:0;border:none;background:rgba(0,0,0,0);color:#dc3232;cursor:pointer;font-size:14px}.exactmetrics-settings-input-repeater-row input[type=number]{width:30%}.exactmetrics-settings-input-repeater-row select{width:70%}.exactmetrics-settings-input-repeater-row.exactmetrics-disabled-row{opacity:.5}.exactmetrics-button{background:#6528f5;border:solid #6528f5;border-width:1px 1px 2px;border-radius:3px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none}.exactmetrics-button:focus,.exactmetrics-button:hover{background-color:#37276a;border-color:#37276a}.exactmetrics-logo{display:inline-block;width:165px;max-width:100%}.exactmetrics-logo .exactmetrics-bg-img{padding-top:23%}.exactmetrics-logo .exactmetrics-bg-img:after{background-position:50%;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAUUAAABKCAMAAAAbi7YOAAAAn1BMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8Kd3m4AAAANHRSTlMAQN8ggL9g758QMLB5cwNv+5BQz14J9tSPF/HkxgdXSA0B7aqbpCkk2oRouDvLloobEug208uV8wAACFtJREFUeNrs1+1yojAUBuATIEBABVHU+t1aa+u222597//a1hgJKFaFdWY70zw/nCmaCX3nnHxQRX/ePyFZ63sy6km7I2Q6M5NjLa9jFC1sMqp6WuBI71GQUcXk3UPZaN0i41rz7ie0uINcn5FRY0EcBzTrI7c0y+M1Vo8xtP5U9nCrOYIWN/6QcV7qDKENnTkpH7970J7dCRlfm3RHhQz9YtGtFjG0N7M8fm0zRu5XQAfukzdosf9Exil3y2LXTstdO18/HHa7cWze7BUjmpwOuh1Ds1xzKTySWMj5Nn0l4MjxDRm5YIwcD+iMVvIMrbdYkaGIZQxtlKQXe/8TmmeWx71W0T1ddvfYg8ZTMurZcGihibGu+2kfGXMEr++uMYKyIOOsdMWm04R9TM4d00f000ymDed6v/sxpOH4ZdOishdIHv0w818x6onDgEqaPzPFF1TysFizJzuYRb96QK/dMinu9CtlGH1Qxn5/AMZ39VIM+KGQbsnnnNERm3MuqCqbo2PTZc8VWng5p6IVB55FrRQZDll0Sx7A6YgDIKCqfAA+XdbE1abH/dsaAH3xHVJs+1sJKeLUkdUC4J4pOgBUFgLgdNk8jHGV3pTKHGDxHVK0sOWQEqD8v7vYiiqnGHjwEroGa1w2Vu9YFgLsu6WYQGLlH7Qrp0g2E3Qr9gjjlE5JH9Bp1U0xdDPJLVOMIPmlUkRYJcXbawCvOrdZ4yV61cl1Ec/qpuiQdssU24D82z783gM6/zXF9A18H9v9bBwDiPkTKXMLi2+WYgg4HGgflmIEeP81xU2MLinTHpTPjT62D9NbpMjy1k5cKVCPnZDzASPhSoIUEfkdi+935e1zD1vh/gcciBjgCcpwwJc55U/YIOQ87NokCcdpA3Acp0vEdp+unNWW3zjieIx+h5DLVyhKm4/+VziGK71AZvqpDoTdIkXbg8SyRcwS8k1DKCErbBnC8aBY8gEKbHVcZGQBTnE2WxSa3ObYc1QhZjiRIz99SBHZ+aBAj/F3uXY9SAen8rtnnPM2Kd8X1/uWBpr/uruwfGu1hLB0HraFjM5YPdWccooAAnJVMepS3IWb7Gf3oPmnUnSxwwopRshZdvGU0SFtibNCvf7klqQMMaiZoubvdwVpMNBFovIsYjpErXucYqBaVxdjFkUHcPOqb7uMRZacj+RqIUOSC4pK0UIncqNQ5Cm6gEyXMZcDHUHEd41gOwCS6y6COrEUBeP9hjPC421SLIZmqTP9qRR9FHkRcc693Rh1VWZq/kgXo68mCIF2VgpWkN8LWb676EnDfRnbeVPI0HZc2cMiG+gXt7H+VSm2/rZzts2JwkAAzgsQgneCYrVYq6117LVaXzr7/3/bDZc0GxLlkPFjni9VEHQel91NLCkAiY3Fw30skgzdcIx8ESV5jBa5fvcxTRhAzL0anaiLTAor63EV6qnJknbd8S0yTpoWU3OMs4NwSrnVEbayI4oFIBttdgrHO1nE5DOxEiW3wpLWMtBYlHudji4P6q/Q0RLrk5f4HD+I8C2mriymtyGizgUuQ/wF2genbj4B0c32CeCzp0XBNCMMDW0VzWX2HqofsCv9Il5jKhgnSgRVMaoOKwEibhAA3LNIHYtZY0IIQzaixOF9mVxjY84hv/Ai1xf0CiC7W9dNwTKX2qfKtUUcEfsWje8IgxJDL9Oi/JLlWXQvXOr25JjE4wnpyPvaNDPbEhRmynMDT693s6jbw0e0yIgi6WyRqaqpgpFy9RSNdLDIWiwiEcMP24kY/gyJgo9YAdNZ/oLN8obcy2KEeVGVA2z60obFuMWi9qKDMUcpumGsa1Jqk7kWY7RoN08eNIrFDQPZiT3Ded6vsmecH4Viey+LvFmjc/NV48gGddZQ7lrEkNPBWCdHfFFiOh6Hdovy6hQvH6kvugtyBk8VuUQ2hzfS12JKDdLpF2OUmtaXlN5Ffw5lk38DQTZxLKr9jdhmVrqIsJFUcN7BouqxG64y9ZGV4Iw4bDe7+AJMNTse5xnMT30tuiM3PWhRrUyOFRuEsFMY0xuZmoLgjsWx5U0KnR3s7ltaTYosIR53sEit9kdO1LlyJ4EgewFX2TwTl+cY4Be5i0UzCfETkhl24Qj1jx2hRceCWyoibBxB/ZZOS22p3aJOy6z2LSmr32iMjayXMoeD1gGMq/F9oXrvu1jkZhKCmjmdHBpg44eU0rE4asxpcy7tWUZmtVBxKfCoNos6aGsYE1aRG6SpuNAwnBm0Mds3lI+/Ad4e7mUxxoIzMmUlF6CJ7KLCMBKlkxexXfSgaMoehneySOQIj0kacyIpcXiYQTuL8VnPeVfLGcA0Ij1/1WcOPGE1pc5WrKZWxlP2L24yrjcpkliF08/zuN6phAyYKjk+9Sm4fpjqIbq09un2nrGBe4g+Rs15RFI/Zdh1+xLaWe+izyQ/LuZ4J2Uni/3JKCc+Ejf3Pe3tJ+A0k16h9hk+igK6UZS/H8J/O13m9URbWR5iNi/mbPCxQofIy5sKWBJoZygrXskhucTqS5chEugLHYDmQAL9qA5z0EzDjZX9kPkaDL9JoHZCLd471CQ6A+Qj3HKurCwZGIpN9Z9Xbwd2A7QnAc3DowCDyB/IdV5GUzB8h7UPGlRpAQa2fL2mO7Ecro/Bocu+w929jYQ4CGvCXGL5B5DDyWvA7YQIi3D33xXOx7W9HJYkNvJoJ8SwVlYL2RsgX2MrED+tQC0+TiTQwnBVWrbMajD7EpBBGKzctHYliEPlrUi0CneVd6H6mFvpMa8iy+F3WP6lM3xgiVuHhNgXWoJHsQvrvtzI8+81NJmtQndzO+fDHJCnKBSVfmxNepweKxLoy+qrqB3uMhIw/AWFbdSoUycRogAAAABJRU5ErkJggg==)}.settings-input-license p{color:#210f59}.settings-input-license p a{color:#6528f5}.settings-input-license label{font-size:15px;color:#210f59;font-weight:400;margin-bottom:16px;margin-top:16px;display:block}.exactmetrics-bg-img.exactmetrics-smile{display:inline-block;width:16px;height:16px;padding:0;vertical-align:middle}.exactmetrics-bg-img.exactmetrics-smile:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAYFBMVEUAAAD/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE1mRQDuvkTSpDZ7VwqgeB2bdBqvhiV+Wgx2Uwj4xkn3xUnfsD3KnTKziSeLZhOFYRBnRgD04bLqAAAADnRSTlMALPrz8dvSp6SXYxMNONmrFGwAAADrSURBVDjLhZPploMgDIVjqQjY3hS12r3v/5bDjFGH0gPfH+4JS0IW2mid0QpQ2riWUqpmh5VdU1HMweIDe4iu10io/z1y3OML++N6X/aTE5X4l/dT6jkOCyHF/jmAcAIS+eukET1wJ/ZTx4MYG6JW8uOZuZ9lH6SXjLXkMHMO1m6WXZBnMTsy+QOGNHIuoEkhFyQUxX9LJaEAKWRRpJFFk0EWQw7C/YaV2x2CW1ONx3vwVwSufng/sKR6K9ZlZOZpHKewjJelWFG5nyw8t3LHDeP71zS9eo8FW2y5UtMW2748OOXRKw9vcfx/ACZnLYWsWc2gAAAAAElFTkSuQmCC)}.exactmetrics-onboarding-license-lite p a{font-weight:700}.exactmetrics-onboarding-license-lite p .exactmetrics-highlighted-text{font-weight:700;color:#32a27a}.exactmetrics-onboarding-license-lite .exactmetrics-settings-license-lite{display:none}.exactmetrics-form-row-license,.exactmetrics-grey-area,.exactmetrics-onboarding-license-lite,.exactmetrics-settings-input-repeater,.exactmetrics-wpforms-row{padding:40px;background:#f4f3f7;border-radius:10px;margin-bottom:24px}.exactmetrics-form-row-license .exactmetrics-onboarding-wizard-form input[type=text],.exactmetrics-grey-area .exactmetrics-onboarding-wizard-form input[type=text],.exactmetrics-onboarding-license-lite .exactmetrics-onboarding-wizard-form input[type=text],.exactmetrics-settings-input-repeater .exactmetrics-onboarding-wizard-form input[type=text],.exactmetrics-wpforms-row .exactmetrics-onboarding-wizard-form input[type=text]{background-color:#fff;color:#210f59}@media (max-width:767px){.exactmetrics-onboarding-wizard-container{max-width:100%;width:auto;margin:0 10px}.exactmetrics-onboarding-wizard-content{padding-left:20px;padding-right:20px}.exactmetrics-addon-row{-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics-addon-text{width:calc(100% - 80px);padding-right:0}.exactmetrics-addon-button{margin-top:20px}.exactmetrics-addon-icon{-ms-flex-item-align:start;align-self:flex-start}.exactmetrics-wpforms-row .exactmetrics-addon-text{width:calc(100% - 100px)}.exactmetrics-text-button.exactmetrics-pull-right{float:none}.exactmetrics-form-buttons{text-align:center}}.exactmetrics-form-buttons{margin-top:43px}.exactmetrics-form-buttons .exactmetrics-onboarding-button+.exactmetrics-text-button{float:right;margin-top:16px;color:#6528f5}.exactmetrics-form-buttons .exactmetrics-onboarding-button+.exactmetrics-text-button i{margin-left:15px}.exactmetrics-form-buttons .exactmetrics-onboarding-button+.exactmetrics-text-button:focus,.exactmetrics-form-buttons .exactmetrics-onboarding-button+.exactmetrics-text-button:hover{color:#37276a}.exactmetrics-addon-icon>div{display:inline-block;width:32px;height:32px;background:none}.exactmetrics-addon-icon>div:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;line-height:32px}.exactmetrics-addon-icon .exactmetrics-addon-icon-ads:before{content:"\004a"}.exactmetrics-addon-icon .exactmetrics-addon-icon-amp:before{content:"\f044"}.exactmetrics-addon-icon .exactmetrics-addon-icon-dimensions:before{content:"\f060"}.exactmetrics-addon-icon .exactmetrics-addon-icon-ecommerce:before{content:"\f033"}.exactmetrics-addon-icon .exactmetrics-addon-icon-eu-compliance:before{content:"\f067"}.exactmetrics-addon-icon .exactmetrics-addon-icon-facebook-instant-articles:before{content:"\f043"}.exactmetrics-addon-icon .exactmetrics-addon-icon-forms:before{content:"\f048"}.exactmetrics-addon-icon .exactmetrics-addon-icon-google-optimize:before{content:"\f053"}.exactmetrics-addon-icon .exactmetrics-addon-icon-page-insights:before{content:"\f041"}.exactmetrics-addon-icon .exactmetrics-addon-icon-performance:before{content:"\f058"}.exactmetrics-addon-icon .exactmetrics-addon-icon-media:before{content:"\f072"}.exactmetrics-addon-icon .exactmetrics-addon-wpforms{width:90px;height:79px;background-image:url(../img/wpforms.png);background-size:contain}.exactmetrics-step-current{font-size:13px;color:#9087ac;line-height:1.75;margin-bottom:8px}.exactmetrics-button-go-back{font-size:15px;color:#9087ac;line-height:1.75;margin-top:40px;padding:0;background:rgba(0,0,0,0);border:none;cursor:pointer}.exactmetrics-button-go-back:focus,.exactmetrics-button-go-back:hover{text-decoration:underline}.exactmetrics-button-go-back .monstericon-long-arrow-right-light{margin-right:10px}.exactmetrics-button-go-back .monstericon-long-arrow-right-light:before{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.exactmetrics-auth-actions{margin-top:40px}.monstericon-arrow-right:before{content:"\f06a"}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-em-forms-upsell-screen{margin-top:0;padding-top:68%;max-width:115%}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-em-forms-upsell-screen:after{background-position:50%;background-image:url(../img/forms-screen.png)}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-em-ecommerce-upsell-screen{top:0;width:100%;height:auto;padding-top:64%;max-width:115%;left:33px}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-em-ecommerce-upsell-screen:after{background-position:50%;background-image:url(../img/ecommerce-screen.png)}.exactmetrics-and-more{font-weight:700;margin:0 0 36px;display:inline-block}.exactmetrics-lite-addons-list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.exactmetrics-lite-addons-list .exactmetrics-lite-addon{width:calc(50% - 35px);display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:40px}.exactmetrics-lite-addons-list .exactmetrics-lite-addon i{font-size:23px;min-width:25px;-ms-flex-negative:0;flex-shrink:0;margin-top:5px}.exactmetrics-lite-addons-list .exactmetrics-lite-addon p{margin:0 0 0 25px;line-height:1.75}.exactmetrics-wizard-notice{padding:32px 48px 17px 136px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:0 20px 30px rgba(48,44,62,.05);box-shadow:0 20px 30px rgba(48,44,62,.05);border-radius:10px;background:#fff;border:1px solid #d6e2ed;border-bottom:3px solid #4d3f7a;margin-bottom:24px;position:relative}.exactmetrics-wizard-notice p{line-height:1.75;margin-top:0}.exactmetrics-wizard-notice h3{margin-top:0;font-size:17px;margin-bottom:15px}.exactmetrics-wizard-notice:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:48px;position:absolute;top:34px;left:42px;content:"\f06e"}.exactmetrics-wizard-notice:first-child:before{content:"\f04f";color:#32a27a}.exactmetrics-wizard-notice.exactmetrics-newsletter-item:before{content:"\f06f"}.exactmetrics-info-notices .exactmetrics-wizard-notice{padding:32px 30px 17px}.exactmetrics-info-notices .exactmetrics-wizard-notice.exactmetrics-newsletter-item:before,.exactmetrics-info-notices .exactmetrics-wizard-notice:before,.exactmetrics-info-notices .exactmetrics-wizard-notice:first-child:before{content:""}.exactmetrics-onboarding .swal2-container.exactmetrics-swal-loading{top:82px;margin-left:0}.exactmetrics-onboarding .exactmetrics-admin-page .exactmetrics-wide-purple{margin-bottom:0}.exactmetrics-bg-img.exactmetrics-icon-warning{width:48px;padding-top:48px}.exactmetrics-bg-img.exactmetrics-icon-warning:after{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f01e";font-size:22px;text-align:center;line-height:48px;color:#210f59;background:#f4f3f7;border-radius:5px}.exactmetrics-settings-network-notice{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-bottom:20px;border-bottom:1px solid #d6e2ed;margin-bottom:15px;color:#777}.exactmetrics-settings-network-notice .exactmetrics-bg-img{margin-right:25px}.exactmetrics-settings-network-notice .exactmetrics-network-message{width:100%}.exactmetrics-license-type-text{color:#210f59;font-weight:500;margin-bottom:30px}.exactmetrics-license-type-text .exactmetrics-info{margin-left:10px}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round{display:block;position:relative;padding-left:35px;margin-bottom:12px;cursor:pointer;font-size:22px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round .loader{border:2px solid #f3f3f3;border-top-color:#3498db;border-radius:50%;width:25px;height:25px;-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite;display:none}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input{position:absolute;opacity:0;cursor:pointer;height:0;width:0}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round .checkmark{position:absolute;top:0;left:0;height:25px;width:25px;background-color:#fff;border:1px solid #d2dde9;border-radius:50%}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round .checkmark:after{left:9px;top:4px;width:3px;height:10px;border:solid #fff;border-width:0 3px 3px 0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round:hover input~.checkmark{background-color:#fff}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.faux:checked~.checkmark{background-color:#46bf40;opacity:.5}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.faux:checked~.checkmark:after{display:block}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.addon-checkbox~.error.checkmark{background-color:#c00}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.addon-checkbox~.error.checkmark:after,.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.addon-checkbox~.error.checkmark:before{position:absolute;left:10px;content:" ";height:10px;width:0;background-color:#fff;display:block}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.addon-checkbox~.error.checkmark:after{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.addon-checkbox~.checkmark{background-color:#338eef}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.addon-checkbox~.checkmark:after{display:block}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.addon-checkbox~.remove.checkmark{background-color:#fff}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.addon-checkbox~.remove.checkmark:after{display:block}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round .checkmark:after{content:"";position:absolute;display:none}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-flex{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;height:60px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-features .exactmetrics-feat-content p{margin:0;padding:0}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-features .exactmetrics-feat-content p:first-child{font-size:16px;font-weight:700;margin-bottom:4px;color:#23262e}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-features .exactmetrics-feat-content p:nth-child(2){font-size:14px;color:#586074;max-width:95%;line-height:1.4}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-skip-addons{color:#586074;margin-left:30px}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-skip-addons svg{margin-left:5px}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-wizard-form .exactmetrics-flex{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;height:10px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-wizard-form .exactmetrics-tracking-info-text{color:#23262e;font-size:16px}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-wizard-form .exactmetrics-tracking-info-icon .exactmetrics-success{color:#46bf40;font-size:12px;display:inline-block}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-wizard-form .exactmetrics-tracking-info-icon .exactmetrics-success-icon{display:inline-block;margin-left:10px}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-wizard-form .exactmetrics-tracking-info-icon .exactmetrics-success-icon svg{position:relative;top:3px}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-wizard-form .exactmetrics-form-buttons{margin-top:50px}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-upsell{background-color:#f5fafe;padding:32px;margin-top:47px;color:#23262e}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-upsell h2{font-size:18px;font-weight:800}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-upsell p,.exactmetrics-onboarding-step-success .exactmetrics-onboarding-upsell ul{font-size:16px}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-upsell ul{list-style-type:none;margin:24px 0 32px0;padding:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-upsell ul li{width:50%;list-style-type:none;margin-bottom:15px}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-upsell ul li span.exactmetrics-icon{margin-right:5px}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-upsell .exactmetrics-upsell-upgrade-button{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics-onboarding-step-success .exactmetrics-upsell-bottom-text{background-color:#ffecad;padding:12px}.exactmetrics-onboarding-step-success .exactmetrics-upsell-bottom-text p{margin:0;padding:0;text-align:center;color:#23262e}.exactmetrics-settings-license-lite{margin-top:32px}.exactmetrics-settings-license-lite label{color:#393e4b;font-size:16px;margin-bottom:16px;display:block}.exactmetrics-settings-license-lite .exactmetrics-inline-field{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-settings-license-lite .exactmetrics-inline-field input{margin-right:15px;width:448px;height:49px}.exactmetrics-settings-license-lite .exactmetrics-inline-field .exactmetrics-button{width:197px;height:48px;font-size:16px}.exactmetrics-settings-license-lite .exactmetrics-inline-field .exactmetrics-button.disabled{background-color:#e2e4e9;color:rgba(57,62,75,.5);border-color:#e2e4e9}.exactmetrics-exit-link{color:#586074;display:block;text-align:center;margin-top:30px}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}button[data-v-283d1087]{margin-top:3px}@font-face{font-family:Lato;src:url(../fonts/lato-regular-webfont.woff) format("woff"),url(../fonts/lato-regular-webfont.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-bold-webfont.woff) format("woff"),url(../fonts/lato-bold-webfont.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:text-security-disc;src:url(data:font/woff2;base64,d09GMgABAAAAAAjoAAsAAAAAMGgAAAidAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFQGVgDWYgpQdQE2AiQDCAsGAAQgBYUOBy4bvi8lYxtWw7BxAPB87x5FmeAMlf3/96RzDN74RcXUcjTKmrJ3T2VDSShiPhfiIJxxS7DiLkHFfQV33CM4427mAred74pWur/J3dyVsKy7coREA8fzvPvpfUk+tB3R8YTCzE0SCLepejmJ2u1yqp+kC7W4Rc/tDTs3GpNJ8ttRPOSTPhsXlwbi4kVYWQmAcXmlrqYHMMsBwP/zHMz7fkF1gijOKuFQIxjwlGa2lkARhYaBxFHT54IOgBMQADi3LipIMAA3geO41EUkBTCO2gkxnOwnKYBx1E6p5WS+QUCMq50rNch6MwUCAAiAcdgttYVSIfPJ5kn6ApRFQ6I88BxLvvIC/maHUHS3TIoKiwLbbM8nEFWgE1oDz3woSxpagWbBXcQWhKtPeIlg6tK+7vX57QOszwU3sGUJrA7h2Mx1IWCNr9BKxsYo+pzS/OCO0OG9mwBkx337+lcuSxRdBcc+fJxlcAjK/zCfdgtBzuxQcTqfY4Yn6EB/Az3JS/RMu5f6B8wrn55S0IxdlLn+4Yb/ctIT+ocWYPcGAOvxSjEjpSiVMqSgFWVjzpCCXjAIRirTABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REdFDlkZEh2jE3SKztA5ukCX6Apdoxt0i+7QPXpAj+gJPaMX9Ire0Dv6QJ/oC/qKvqHv6Af6iX6h3+gP+ov+of+I+ECMxETMiDmxIJbEilgTG2JL7Ig9cSCOxIk4ExfiStyIO/EgnsSLeBMf4kv8iD/taQANoiE0jEbQKBpD42gCTaIpNI1m0CyaQ/NoAS2iJbSMVtAqWkPraANtoi20jXbQLtpD++gAHaIjdIxO0Ck6Q+foAl2iK3SNbtAtukP36AE9oif0jF7QK3pD79B79AF9RJ/QZ/QFfUXf0Hf0A/1Ev9Bv9Af9Rf/Qf9DQABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REfoGJ2gU3SGztEFukRX6BrdoFt0h+7RA3pET+gZvaBX9Aa9Re/Qe/QBfUSf0Gf0BX1F39B39AP9RL/Qb/QH/UX/0P8l9vq9gXwDIUCliyAhRAgTIoQoIUaIExKEJCFFSBMyhCwhR8gTCoQioUQoEyqEKqFGqBMahCahRWgTOoQuoUfoEwaEIWFEGBMmhClhRpgTFoQlYUVYEzaELWFH2BMOhGPCCeGUcEY4J1wQLglXhGvCDeGWcEe4JzwQHglPhGfCC+GV8EZ4J3wQPglfhG/CD+GX8Ef4p9sdgoQQIUyIEKKEGCFOSBCShBQhTcgQsoQcIU8oEIqEEqFMqBCqhBqhTmgkNBGaCS2EVkIboZ3QQegkdBG6CT2EXkIfoZ8wQBgkDBGGCSOEUcIYYZwwQZgkTBGmCTOEWcIcYZ6wQFgkLBGWCSuEVcIaYZ2wQdgkbBG2CTuEXcIeYZ9wQDgkHBGOCSeEU8IZ4ZxwQbgkXBGuCTeEW8Id4Z7wQHgkPBGeCS+EV8Ib4Z3wQfgkfBG+CT+EX8If4Z8AZpAQIoQJEUKUECPECQlCkpAipAkZQpaQI+QJBUKRUCKUCRVClVAj1AkNQpPQIrQJHUKX0CP0CQPCkDAijAkTwpQwI8wJC8KSsCKsCRvClrAj7AkHwpFwIpwJF8IV4ZpwQ7gl3BHuCQ+ER8IT4ZnwQnglvBHeCR+ET8IX4ZvwQ/gl/BH+lzv+AmMkTYAmSBOiCdNEaKI0MZo4TYImSZOiSdNkaLI0OZo8TYGmSFOiKdNUaKo0NZo6TYOmSdOiadN0aLo0PZo+zYBmSDOiGdNMaKY0M5o5zYJmSbOiWdNsaLY0O5o9zYHmmOaE5pTmjOac5oLmkuaK5prmhuaW5o7mnuaB5pHmieaZ5oXmleaN5p3mg+aT5ovmm+aH5pfmj2ZRAqCCoEKgwqAioKKgYqDioBKgkqBSoNKgMqCyoHKg8qAKoIqgSqDKoCqgqqBqoOqgGkE1gWoG1QKqFVQbqHZQHaA6QXWB6gbVA6oXVB+oflADoAZBDYH+uxaEWDBiIYiFIhaGWDhiEYhFIhaFWDRiMYjFIhaHWDxiCYglIpaEWDJiKYilIpaGWDpiGYhlIpaFWDZiOYjlIpaHWD5iBYgVIlaEWDFiJYiVIlaGWDliFYhVIlaFWDViNYjVIlaHWD1iDYg1ItaEWDNiLYi1ItaGWDtiHYh1ItaFWDdiPYj1ItaHWD9iA4gNIjaE2DBiI4iNIjaG2DhiE4hNIjaF2DRiM4jNIjaH2DxiC4gtIraE2DJiK4itIraG2DpiG4htIraF2DZiO4jtIraH2D5iB4gdInaE2DFiJ4idInaG2DliF4hdInaF2DViN4jdInaH2D1iD4g9IvaE2DNiL4i9IvaG2DvE3iP2AbGPiH1C7DNiXxD7itg3xL4j9gOxn4j9Quw3Yn8Q+4vYP8T+M6cIDBz9EXfeUHR1JyygPL/++I3R1cRvdDr+E12Jfh3Q0EN/fHn2mXptpJxUkIqu/Cs2egM33OjSLcT33I82+B9nP37X/c0W52623s45CYCo03QIBCVrAFAycnSYSqvO4YJt/NP73YqA/giNZhJ6sBbmql+0SQZaxNOZudJbc2nqxNvpM+veq7Sz2LUgFEu+VLs+Ay3yp7MVertp6i23v2Rmv5gmHDhSQ6t5GmTaqTsqhpWwmbOk3uKJrNOmwSSMC17jghqygilDOUU3KlLmHHNrajw3DVNVGWytGZDisM/cbkdRnvfIUJkaGJlgAYcoQ5bGptTmGc1R7pBC3XhFsLXnXR54qrMc+dGNBkqE4laBi4KmZYGom8vIy0lTyBkppBjLoTndMmrofIRORirsNlCbXzCgulmo36KztS2iV8rrNoRUL5VdkMSGoSXroC1KOQAA) format("woff2"),url(data:font/woff;base64,d09GRgABAAAAAAusAAsAAAAAMGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZjRmM5Y21hcAAAAYQAAAgCAAArYmjjYVVnbHlmAAAJiAAAAEEAAABQiOYj2mhlYWQAAAnMAAAALgAAADYR8XmmaGhlYQAACfwAAAAcAAAAJAqNAyNobXR4AAAKGAAAAAgAAAAIAyAAAGxvY2EAAAogAAAABgAAAAYAKAAAbWF4cAAACigAAAAeAAAAIAEOACJuYW1lAAAKSAAAAUIAAAKOcN63t3Bvc3QAAAuMAAAAHQAAAC5lhHRpeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGScwDiBgZWBgSGVtYKBgVECQjMfYEhiYmFgYGJgZWbACgLSXFMYHIAq/rNfAHK3gEmgASACAIekCT4AAHic7dhl0zDVmUXh5+XFHYK7E0IguFtwt4QQgmtwd3d3d7cED+4SXIO7u7vbsNfaUzU1fyGcu66u1adOf+6uHhgYGGpgYGDwL37/iyEHBoZZcWDQLzUw9NK/7A5if/DA8OwPOfQknBky+0P8/PPPOcd1UJ785frr/Dq/zq/z6/w3zsCgoX/xX74GRsxbcYpRB1iDB/7PGvT/DFGDenBwe8hKD1XpoSs9TKWHrfRwlR6+0iNUesRKj1TpkSs9SqVHrfRolR690r+p9BiVHrPSY1V67EqPU+lxKz1epcev9ASVnrDSE1V64kpPUulJKz1ZpSev9BSVnrLSU1V66kr/ttLTVPp3lZ62/KJSerpKT1/pP1R6hkrPWOmZKj1zpWep9KyVnq3Ss1d6jkrPWem5Kj13peep9LyVnq/S81d6gUr/sdILVnqhSi9c6UUqvWilF6v04pVeotJLVnqpSi9d6WUqvWyll6v08pVeodIrVvpPlf5zpVeq9F8qvXKl/1rpVSr9t0qvWunVKr16pdeo9JqVXqvSa1d6nUqvW+n1Kr1+pTeo9N8rvWGlN6r0xpXepNKbVnqzSm9e6S0qvWWlt6r01pXeptLbVnq7Sm9f6R0qvWOld6r0zpXepdK7Vnq3Su9e6T0qvWel96r03pXep9L7Vnq/Su9f6QMqfWClD6r0wZU+pNKHVvqwSh9e6SMqfWSlj6r00ZU+ptLHVvq4Sh9f6RMqfWKlT6r0yZU+pdKnVvq0Sp9e6TMqfWalz6r02ZU+p9LnVvq8Sp9f6QsqfWGl/1Hpf1b6okpfXOlLKn1ppS+r9OWVvqLS/6r0lZW+qtJXV/qaSl9b6esqfX2lb6j0jZW+qdI3V/qWSt9a6dsqfXul76j0vyt9Z6XvqvTdlb6n0vdW+r5K31/pByr9YKUfqvTDlX6k0v+p9KOVfqzSj1f6iUo/WemnKv10pZ+p9LOVfq7Sz1f6hUq/WOmXKv1ypV+p9KuVfq3Sr1f6jUq/Wem3Kv12pd+p9LuVfq/S71f6g0p/WOmPKv1xpT+p9KeV/qzSn1f6i0p/WemvKv11pb+p9LeV/q7S31f6h0r/WOmfKv1zDfI26KKHED1Y9JCihxI9tOhhRA8rejjRw4seQfSIokcSPbLoUUSPKno00aOL/o3oMUSPKXos0WOLHkf0uKLHEz2+6AlETyh6ItETi55E9KSiJxM9uegpRE8peirRU4v+rehpRP9O9LSify96OtHTi/6D6BlEzyh6JtEzi55F9KyiZxM9u+g5RM8pei7Rc4ueR/S8oucTPb/oBUT/UfSCohcSvbDoRUQvKnox0YuLXkL0kqKXEr206GVELyt6OdHLi15B9Iqi/yT6z6JXEv0X0SuL/qvoVUT/TfSqolcTvbroNUSvKXot0WuLXkf0uqLXE72+6A1E/130hqI3Er2x6E1Ebyp6M9Gbi95C9JaitxK9tehtRG8rejvR24veQfSOoncSvbPoXUTvKno30buL3kP0nqL3Er236H1E7yt6P9H7iz5A9IGiDxJ9sOhDRB8q+jDRh4s+QvSRoo8SfbToY0QfK/o40ceLPkH0iaJPEn2y6FNEnyr6NNGniz5D9JmizxJ9tuhzRJ8r+jzR54u+QPSFov8h+p+iLxJ9sehLRF8q+jLRl4u+QvS/RF8p+irRV4u+RvS1oq8Tfb3oG0TfKPom0TeLvkX0raJvE3276DtE/1v0naLvEn236HtE3yv6PtH3i35A9IOiHxL9sOhHRP9H9KOiHxP9uOgnRD8p+inRT4t+RvSzop8T/bzoF0S/KPol0S+LfkX0q6JfE/266DdEvyn6LdFvi35H9Lui3xP9vugPRH8o+iPRH4v+RPSnoj8T/bnoL0R/Kfor0V+L/kb0t6K/E/296B9E/yj6J9E/K/2/v/npoocQPVj0kKKHEj206GFEDyt6ONHDix5B9IiiRxI9suhRRI8qejTRo4v+jegxRI8peizRY4seR/S4oscTPb7oCURPKHoi0ROLnkT0pKInEz256ClETyl6KtFTi/6t6GlE/070tKJ/L3o60dOL/oPoGUTPKHom0TOLnkX0rKJnEz276DlEzyl6LtFzi55H9Lyi5xM9v+gFRP9R9IKiFxK9sOhFRC8qejHRi4teQvSSopcSvbToZUQvK3o50cuLXkH0iqL/JPrPolcS/RfRK4v+q+hVRP9N9KqiVxO9uug1RK8pei3Ra4teR/S6otcTvb7oDUT/XfSGojcSvbHoTURvKnoz0ZuL3kL0lqK3Er216G1Ebyt6O9Hbi95B9I6idxK9s+hdRO8qejfRu4veQ/SeovcSvbfofUTvK3o/0fuLPkD0gaIPEn2w6ENEHyr6MNGHiz5C9JGijxJ9tOhjRB8r+jjRx4s+QfSJok8SfbLoU0SfKvo00aeLPkP0maLPEn226HNEnyv6PNHni75A9IWi/yH6n6IvEn2x6EtEXyr6MtGXi75C9L9EXyn6KtFXi75G9LWirxN9vegbRN8o+ibRN4u+RfStom8TfbvoO0T/W/Sdou8Sfbfoe0TfK/o+0feLfkD0g6IfEv2w6EdE/0f0o6IfE/246CdEPyn6KdFPi35G9LOinxP9vOgXRL8o+iXRL4t+RfSrol8T/broN0S/Kfot0W+Lfkf0u6LfE/2+6A9Efyj6I9Efi/5E9KeiPxP9uegvRH8p+ivRX4v+RvS3or8T/b3oH0T/KPon0T9rYND/AOaSEScAAHicY2BiAAKmPSy+QEqUgYFRUURcTFzMyNzM3MxEXU1dTYmdjZ2NccK/K5oaLm6L3Fw0NOEMZoVAFD6IAQD4PA9iAAAAeJxjYGRgYADilrme/fH8Nl8ZuNkvAEUYbnDPcEOmmfaw+AIpDgYmEA8AHMMJGAAAeJxjYGRgYL/AAATMCiCSaQ8DIwMqYAIAK/QBvQAAAAADIAAAAAAAAAAoAAB4nGNgZGBgYGIQA2IGMIuBgQsIGRj+g/kMAArUATEAAHicjY69TsMwFIWP+4doJYSKhMTmoUJIqOnPWIm1ZWDq0IEtTZw2VRpHjlu1D8A7MPMczAw8DM/AifFEl9qS9d1zzr3XAK7xBYHqCHTdW50aLlj9cZ1057lBfvTcRAdPnlvUnz23mXj13MEN3jhBNC6p9PDuuYYrfHquU//23CD/eG7iVnQ9t9ATD57bWIgXzx3ciw+rDrZfqmhnUnvsx2kZzdVql4Xm1DhVFsqUqc7lKBiemjOVKxNaFcvlUZb71djaRCZGb+VU51ZlmZaF0RsV2WBtbTEZDBKvB5HewkLhwLePkhRhB4OU9ZFKTCqpzems6GQI6Z7TcU5mQceQUmjkkBghwPCszhmd3HWHLh+ze8mEpLvnT8dULRLWCTMaW9LUbanSGa+mUjhv47ZY7l67rgITDHiTf/mAKU76BTuXfk8AAHicY2BigAARBuyAiZGJkZmBJSWzOJmBAQALQwHHAAAA) format("woff"),url(../fonts/text-security-disc.ttf) format("truetype")}@font-face{font-family:Misettings;src:url(../fonts/icons.woff2) format("woff2"),url(../fonts/icons.woff) format("woff"),url(../fonts/icons.ttf) format("truetype"),url(../fonts/icons.otf) format("opentype");font-weight:400;font-style:normal}[class*=monstericon-]:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.monstericon-times-circle:before{content:"\f01b"}.monstericon-times:before{content:"\f021"}.monstericon-info-circle-regular:before{content:"\f01e"}.monstericon-arrow{-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);display:inline-block}.monstericon-arrow.monstericon-down{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.monstericon-arrow:before{content:"\f01f"}.monstericon-warning-triangle:before{content:"\f020"}.monstericon-files:before{content:"\f028"}.monstericon-user:before{content:"\f02a"}.monstericon-eye:before{content:"\f02b"}.monstericon-expand:before{content:"\f02d"}.monstericon-life-ring:before{content:"\f030"}.monstericon-wpbeginner:before{content:"\f031"}.monstericon-lightbulb:before{content:"\f032"}.monstericon-shopping-cart:before{content:"\f033"}.monstericon-arrow-right:before{content:"\f01d"}.monstericon-amp-icon:before{content:"\f000"}.monstericon-fbia:before{content:"\f001"}.monstericon-google-optimize:before{content:"\f002"}.monstericon-ads:before{content:"\0041"}.monstericon-affiliate:before{content:"\0042"}.monstericon-compatibility:before{content:"\0043"}.monstericon-demographics:before{content:"\0044"}.monstericon-download:before{content:"\0046"}.monstericon-ecommerce:before{content:"\0047"}.monstericon-engagement:before{content:"\0048"}.monstericon-forms:before{content:"\0049"}.monstericon-links:before{content:"\004a"}.monstericon-memberships:before{content:"\004b"}.monstericon-notifications:before{content:"\004c"}.monstericon-performance:before{content:"\004d"}.monstericon-permissions:before{content:"\004e"}.monstericon-reporting:before{content:"\004f"}.monstericon-social:before{content:"\0050"}.monstericon-video:before{content:"\0051"}.monstericon-times:before{content:"\f014"}.monstericon-check:before{content:"\f015"}.monstericon-info:before{content:"\f016"}.monstericon-exclamation-triangle:before{content:"\f017"}.monstericon-user:before{content:"\f018"}.monstericon-eye:before{content:"\f019"}.monstericon-info-circle:before{content:"\f01a"}.monstericon-info-circle-btm:before{content:"\f01c"}.monstericon-chevron-up:before{content:"\f01f"}.monstericon-times-fas:before{content:"\f021"}.monstericon-check-circle:before{content:"\f022"}.monstericon-exclamation-circle:before{content:"\f023"}.monstericon-star:before{content:"\f025"}.monstericon-times-circle-fas:before{content:"\f026"}.monstericon-check-circle-far:before{content:"\f027"}.monstericon-file-alt:before{content:"\f028"}.monstericon-search:before{content:"\f029"}.monstericon-user-far:before{content:"\f02a"}.monstericon-eye-far:before{content:"\f02b"}.monstericon-cog:before{content:"\f02c"}.monstericon-expand-alt:before{content:"\f02d"}.monstericon-compress-arrows-alt:before{content:"\f02e"}.monstericon-compress:before{content:"\f02f"}.monstericon-badge-check:before{content:"\f034"}.monstericon-download-em:before{content:"\f035"}.monstericon-globe:before{content:"\f036"}.monstericon-wand-magic:before{content:"\f037"}.monstericon-mouse-pointer:before{content:"\f038"}.monstericon-users:before{content:"\f039"}.monstericon-file-certificate:before{content:"\f03a"}.monstericon-bullseye-arrow:before{content:"\f03b"}.monstericon-cash-register:before{content:"\f03c"}.monstericon-chart-line:before{content:"\f03d"}.monstericon-clock:before{content:"\f03e"}.monstericon-box:before{content:"\f03f"}.monstericon-sack-dollar:before{content:"\f040"}.monstericon-browser:before{content:"\f041"}.monstericon-eye-em:before{content:"\f042"}.monstericon-newspaper:before{content:"\f043"}.monstericon-mobile:before{content:"\f044"}.monstericon-check-em-light:before{content:"\f045"}.monstericon-times-em-lite:before{content:"\f046"}.monstericon-code:before{content:"\f047"}.monstericon-clipboard:before{content:"\f048"}.monstericon-upload:before{content:"\f049"}.monstericon-clone:before{content:"\f04a"}.monstericon-id-card:before{content:"\f04b"}.monstericon-user-friends:before{content:"\f04c"}.monstericon-file-alt-em:before{content:"\f04d"}.monstericon-calendar-alt:before{content:"\f04e"}.monstericon-comment-alt-check:before{content:"\f04f"}.monstericon-arrow-circle-up:before{content:"\f050"}.monstericon-search-em:before{content:"\f051"}.monstericon-list-ol:before{content:"\f052"}.monstericon-hand-pointer:before{content:"\f053"}.monstericon-folder:before{content:"\f054"}.monstericon-sign-out-em-solid:before{content:"\f055"}.monstericon-external-link-alt:before{content:"\f056"}.monstericon-copy:before{content:"\f057"}.monstericon-sync:before{content:"\f058"}.monstericon-flag:before{content:"\f059"}.monstericon-building:before{content:"\f05a"}.monstericon-chart-bar:before{content:"\f05b"}.monstericon-shopping-bag:before{content:"\f05c"}.monstericon-exchange-alt:before{content:"\f05d"}.monstericon-plus:before{content:"\f05e"}.monstericon-tachometer-alt:before{content:"\f05f"}.monstericon-media:before{content:"\f072"}.monstericon-tag:before{content:"\f060"}.monstericon-check-circle-em:before{content:"\f061"}.monstericon-bullseye:before{content:"\f062"}.monstericon-rocket:before{content:"\f063"}.monstericon-exclamation-square:before{content:"\f064"}.monstericon-trash:before{content:"\f065"}.monstericon-user-em:before{content:"\f066"}.monstericon-unlock:before{content:"\f067"}.monstericon-exclamation-em-solid:before{content:"\f068"}.monstericon-key-em:before{content:"\f069"}.monstericon-long-arrow-right-light:before{content:"\f06a"}.monstericon-plug-light:before{content:"\f06b"}.monstericon-align-left-regular:before{content:"\f06c"}.monstericon-envelope-solid:before{content:"\f06f"}.monstericon-comment-alt-lines-solid:before{content:"\f06e"}.monstericon-arrow-circle-up-light:before{content:"\f071"}.monstericon-megaphone-solid:before{content:"\f070"}.monstericon-arrow-circle-up-light :before{content:"\f071"}@media (max-width:782px){.exactmetrics-notices-area{margin-left:10px;margin-right:10px}}.exactmetrics-notice .exactmetrics-notice-inner{position:relative;color:#210f59;padding:32px 45px;border:1px solid #f4f3f7;border-bottom:3px solid;-webkit-box-shadow:0 20px 30px rgba(48,44,62,.05);box-shadow:0 20px 30px rgba(48,44,62,.05);border-radius:10px;background:#fff;margin-top:40px}.exactmetrics-notice .exactmetrics-notice-inner .notice-title{color:#fff;font-weight:700;display:block;margin:0 0 6px;padding:0;font-size:17px}@media (max-width:782px){.exactmetrics-notice .exactmetrics-notice-inner{padding:10px}}.exactmetrics-notice .exactmetrics-notice-inner .notice-content{padding-left:92px;background:#fff;line-height:1.75;font-size:15px;position:relative}.exactmetrics-notice .exactmetrics-notice-inner .notice-content:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:48px;left:0;position:absolute;top:0;line-height:1}.exactmetrics-notice.exactmetrics-notice-error .exactmetrics-notice-inner{border-bottom-color:#d83638}.exactmetrics-notice.exactmetrics-notice-error .exactmetrics-notice-inner .notice-content:before{content:"\f064";color:#d83638}.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-notice-inner{border-bottom-color:#fa0}.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-notice-inner{border-bottom-color:#4d3f7a}.exactmetrics-notice.exactmetrics-notice-info-xl .exactmetrics-notice-inner{border:1px solid #6528f5;border-left-width:3px;color:#777}.exactmetrics-notice.exactmetrics-notice-info-xl .exactmetrics-notice-inner .exactmetrics-button{color:#fff;margin:15px 0 0}.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-notice-inner{border-bottom-color:#32a27a}.exactmetrics-notice .notice-content{margin-right:20px}.exactmetrics-notice .notice-content a{color:#210f59}.exactmetrics-notice .dismiss-notice{border:none;background:none;padding:0;margin:0;display:inline-block;cursor:pointer;color:#e9e7ee;position:relative;float:right}.exactmetrics-notice .dismiss-notice:focus,.exactmetrics-notice .dismiss-notice:hover{color:#210f59}.exactmetrics-notice.exactmetrics-notice-info .notice-content,.exactmetrics-notice.exactmetrics-notice-success .notice-content,.exactmetrics-notice.exactmetrics-notice-warning .notice-content{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:425px){.exactmetrics-notice.exactmetrics-notice-info .notice-content,.exactmetrics-notice.exactmetrics-notice-success .notice-content,.exactmetrics-notice.exactmetrics-notice-warning .notice-content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-notice-button{-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;margin-right:-20px;margin-left:auto}@media (max-width:782px){.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-notice-button{margin-left:0}}.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-button{margin-top:0;padding:10px 16px 8px;line-height:1;font-size:14px;font-weight:600}@media (max-width:782px){.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-button{margin-top:10px;margin-left:0}}.exactmetrics-notice.exactmetrics-notice-error .exactmetrics-button{margin-top:10px;margin-left:0;color:#fff}body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-end,body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-right{top:32px}@media screen and (max-width:767px){body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-end,body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-right{top:42px;right:auto;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast{border-radius:5px;padding:17px 28px;border:1px solid #f4f3f7;-webkit-box-shadow:0 20px 30px rgba(48,44,62,.05);box-shadow:0 20px 30px rgba(48,44,62,.05);min-width:380px}@media screen and (max-width:767px){body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast{width:80vw}}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-title{color:#210f59;font-size:15px;font-weight:700;line-height:1.5;margin-left:32px;margin-top:-3px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-close{font-size:26px;width:18px;height:18px;line-height:10px;position:absolute;right:14px;top:19px;color:#9087ac}@media screen and (max-width:767px){body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-close{padding:9px;line-height:0}}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon{width:27px;height:24px;min-width:27px;margin:0;border:0;color:#9087ac}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info{border:none;position:relative}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before{content:"\f01e";position:absolute;top:-1px;left:0;line-height:1;font-size:24px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info .swal2-icon-text{display:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error{border:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before{content:"\f023";position:absolute;top:-1px;left:0;line-height:1;font-size:24px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error .swal2-x-mark *{display:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon [class^=-ring]{width:14px;height:14px;top:0;left:0}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{top:0;left:0;border:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{content:"\f027";position:absolute;top:-1px;left:0;line-height:1;font-size:24px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success [class^=swal2-success-line]{display:none}@-webkit-keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@-webkit-keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}to{top:2.8125em;left:.875em;width:1.5625em}}@keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}to{top:2.8125em;left:.875em;width:1.5625em}}@-webkit-keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}to{top:2.375em;right:.5em;width:2.9375em}}@keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}to{top:2.375em;right:.5em;width:2.9375em}}@-webkit-keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}5%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}12%{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}to{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}}@keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}5%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}12%{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}to{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}}@-webkit-keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@-webkit-keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}@keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}.exactmetrics_page body.swal2-toast-shown .swal2-container,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-shown{background-color:rgba(0,0,0,0)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top{top:0;right:auto;bottom:auto;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-end,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;right:0;bottom:auto;left:auto}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-left,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-start{top:0;right:auto;bottom:auto;left:0}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-left,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-start{top:50%;right:auto;bottom:auto;left:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center{top:50%;right:auto;bottom:auto;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-end,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-right{top:50%;right:0;bottom:auto;left:auto;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-left,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-start{top:auto;right:auto;bottom:0;left:0}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom{top:auto;right:auto;bottom:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-end,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;right:0;bottom:0;left:auto}.exactmetrics_page body.swal2-toast-column .swal2-toast{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-actions{-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;height:2.2em;margin-top:.3125em}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-loading{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-input{height:2em;margin:.3125em auto;font-size:1em}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-validation-message{font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:auto;padding:.625em;-webkit-box-shadow:0 0 .625em #d9d9d9;box-shadow:0 0 .625em #d9d9d9;overflow-y:hidden}.exactmetrics_page .swal2-popup.swal2-toast .swal2-header{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;width:100%}.exactmetrics_page .swal2-popup.swal2-toast .swal2-title{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin:0 .6em;font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-close{position:static;width:.8em;height:.8em;line-height:.8}.exactmetrics_page .swal2-popup.swal2-toast .swal2-content{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon{width:2em;min-width:2em;height:2em;margin:0}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon-text{font-size:2em;font-weight:700;line-height:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:.3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:.3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-actions{height:auto;margin:0 .3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-styled{margin:0 .3125em;padding:.3125em .625em;font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-styled:focus{-webkit-box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4);box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4)}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{position:absolute;width:2em;height:2.8125em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);border-radius:50%}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.25em;left:-.9375em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:2em 2em;-ms-transform-origin:2em 2em;transform-origin:2em 2em;border-radius:4em 0 0 4em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.25em;left:.9375em;-webkit-transform-origin:0 2em;-ms-transform-origin:0 2em;transform-origin:0 2em;border-radius:0 4em 4em 0}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;left:.4375em;width:.4375em;height:2.6875em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;left:.1875em;width:.75em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;right:.1875em;width:1.375em}.exactmetrics_page .swal2-popup.swal2-toast.swal2-show{-webkit-animation:showSweetToast .5s;animation:showSweetToast .5s}.exactmetrics_page .swal2-popup.swal2-toast.swal2-hide{-webkit-animation:hideSweetToast .2s forwards;animation:hideSweetToast .2s forwards}.exactmetrics_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:animate-toast-success-tip .75s;animation:animate-toast-success-tip .75s}.exactmetrics_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:animate-toast-success-long .75s;animation:animate-toast-success-long .75s}@-webkit-keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(2deg);transform:translateY(-.625em) rotate(2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(-2deg);transform:translateY(0) rotate(-2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(2deg);transform:translateY(.3125em) rotate(2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(2deg);transform:translateY(-.625em) rotate(2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(-2deg);transform:translateY(0) rotate(-2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(2deg);transform:translateY(.3125em) rotate(2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@-webkit-keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(1deg);transform:rotate(1deg);opacity:0}}@keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(1deg);transform:rotate(1deg);opacity:0}}@-webkit-keyframes animate-toast-success-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}to{top:1.125em;left:.1875em;width:.75em}}@keyframes animate-toast-success-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}to{top:1.125em;left:.1875em;width:.75em}}@-webkit-keyframes animate-toast-success-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}to{top:.9375em;right:.1875em;width:1.375em}}@keyframes animate-toast-success-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}to{top:.9375em;right:.1875em;width:1.375em}}.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}.exactmetrics_page body.swal2-height-auto{height:auto!important}.exactmetrics_page body.swal2-no-backdrop .swal2-shown{top:auto;right:auto;bottom:auto;left:auto;background-color:rgba(0,0,0,0)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown>.swal2-modal{-webkit-box-shadow:0 0 10px rgba(0,0,0,.4);box-shadow:0 0 10px rgba(0,0,0,.4)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top{top:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-left,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-start{top:0;left:0}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-end,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-right{top:0;right:0}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center{top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-left,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-start{top:50%;left:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-end,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-right{top:50%;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom{bottom:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-left,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-start{bottom:0;left:0}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-end,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-right{right:0;bottom:0}.exactmetrics_page .swal2-container{display:-webkit-box;display:-ms-flexbox;display:flex;position:fixed;top:0;right:0;bottom:0;left:0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:10px;background-color:rgba(0,0,0,0);z-index:1060;overflow-x:hidden;-webkit-overflow-scrolling:touch}.exactmetrics_page .swal2-container.swal2-top{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.exactmetrics_page .swal2-container.swal2-top-left,.exactmetrics_page .swal2-container.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.exactmetrics_page .swal2-container.swal2-top-end,.exactmetrics_page .swal2-container.swal2-top-right{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.exactmetrics_page .swal2-container.swal2-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics_page .swal2-container.swal2-center-left,.exactmetrics_page .swal2-container.swal2-center-start{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.exactmetrics_page .swal2-container.swal2-center-end,.exactmetrics_page .swal2-container.swal2-center-right{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.exactmetrics_page .swal2-container.swal2-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.exactmetrics_page .swal2-container.swal2-bottom-left,.exactmetrics_page .swal2-container.swal2-bottom-start{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.exactmetrics_page .swal2-container.swal2-bottom-end,.exactmetrics_page .swal2-container.swal2-bottom-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.exactmetrics_page .swal2-container.swal2-grow-fullscreen>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;-ms-flex-pack:center}.exactmetrics_page .swal2-container.swal2-grow-fullscreen>.swal2-modal,.exactmetrics_page .swal2-container.swal2-grow-row>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-webkit-box-pack:center;justify-content:center}.exactmetrics_page .swal2-container.swal2-grow-row>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-ms-flex-pack:center}.exactmetrics_page .swal2-container.swal2-grow-column{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-left,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-start,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-left,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-start,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-left,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-end,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-right,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-end,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-right,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-end,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.exactmetrics_page .swal2-container.swal2-grow-column>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics_page .swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal{margin:auto}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.exactmetrics_page .swal2-container .swal2-modal{margin:0!important}}.exactmetrics_page .swal2-container.swal2-fade{-webkit-transition:background-color .1s;transition:background-color .1s}.exactmetrics_page .swal2-container.swal2-shown{background-color:rgba(0,0,0,.4)}.exactmetrics_page .swal2-popup{display:none;position:relative;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:32em;max-width:100%;padding:1.25em;border-radius:.3125em;background:#fff;font-family:inherit;font-size:1rem;-webkit-box-sizing:border-box;box-sizing:border-box;left:0;top:0}.exactmetrics_page .swal2-popup:focus{outline:0}.exactmetrics_page .swal2-popup.swal2-loading{overflow-y:hidden}.exactmetrics_page .swal2-popup .swal2-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics_page .swal2-popup .swal2-title{display:block;position:relative;max-width:100%;margin:0 0 .4em;padding:0;color:#595959;font-size:1.875em;font-weight:600;text-align:center;text-transform:none;word-wrap:break-word}.exactmetrics_page .swal2-popup .swal2-actions{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em auto 0;z-index:1}.exactmetrics_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.exactmetrics_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:hover{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.1)),to(rgba(0,0,0,.1)));background-image:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1))}.exactmetrics_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:active{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.2)),to(rgba(0,0,0,.2)));background-image:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2))}.exactmetrics_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-confirm{width:2.5em;height:2.5em;margin:.46875em;padding:0;border-radius:100%;border:.25em solid rgba(0,0,0,0);background-color:rgba(0,0,0,0)!important;color:rgba(0,0,0,0);cursor:default;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.exactmetrics_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-cancel{margin-right:30px;margin-left:30px}.exactmetrics_page .swal2-popup .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm:after{display:inline-block;width:15px;height:15px;margin-left:5px;border-radius:50%;border:3px solid #999;border-right-color:rgba(0,0,0,0);-webkit-box-shadow:1px 1px 1px #fff;box-shadow:1px 1px 1px #fff;content:"";-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal}.exactmetrics_page .swal2-popup .swal2-styled{margin:.3125em;padding:.625em 2em;font-weight:500;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .swal2-popup .swal2-styled:not([disabled]){cursor:pointer}.exactmetrics_page .swal2-popup .swal2-styled.swal2-confirm{border:0;border-radius:.25em;background:initial;background-color:#3085d6;color:#fff;font-size:1.0625em}.exactmetrics_page .swal2-popup .swal2-styled.swal2-cancel{border:0;border-radius:.25em;background:initial;background-color:#aaa;color:#fff;font-size:1.0625em}.exactmetrics_page .swal2-popup .swal2-styled:focus{outline:0;-webkit-box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4);box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4)}.exactmetrics_page .swal2-popup .swal2-styled::-moz-focus-inner{border:0}.exactmetrics_page .swal2-popup .swal2-footer{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em 0 0;padding:1em 0 0;border-top:1px solid #eee;color:#545454;font-size:1em}.exactmetrics_page .swal2-popup .swal2-image{max-width:100%;margin:1.25em auto}.exactmetrics_page .swal2-popup .swal2-close{position:absolute;top:0;right:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:1.2em;height:1.2em;padding:0;-webkit-transition:color .1s ease-out;transition:color .1s ease-out;border:none;border-radius:0;outline:initial;background:0 0;color:#ccc;font-family:serif;font-size:2.5em;line-height:1.2;cursor:pointer;overflow:hidden}.exactmetrics_page .swal2-popup .swal2-close:hover{-webkit-transform:none;-ms-transform:none;transform:none;color:#f27474}.exactmetrics_page .swal2-popup>.swal2-checkbox,.exactmetrics_page .swal2-popup>.swal2-file,.exactmetrics_page .swal2-popup>.swal2-input,.exactmetrics_page .swal2-popup>.swal2-radio,.exactmetrics_page .swal2-popup>.swal2-select,.exactmetrics_page .swal2-popup>.swal2-textarea{display:none}.exactmetrics_page .swal2-popup .swal2-content{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0;padding:0;color:#545454;font-size:1.125em;font-weight:300;line-height:normal;z-index:1;word-wrap:break-word}.exactmetrics_page .swal2-popup #swal2-content{text-align:center}.exactmetrics_page .swal2-popup .swal2-checkbox,.exactmetrics_page .swal2-popup .swal2-file,.exactmetrics_page .swal2-popup .swal2-input,.exactmetrics_page .swal2-popup .swal2-radio,.exactmetrics_page .swal2-popup .swal2-select,.exactmetrics_page .swal2-popup .swal2-textarea{margin:1em auto}.exactmetrics_page .swal2-popup .swal2-file,.exactmetrics_page .swal2-popup .swal2-input,.exactmetrics_page .swal2-popup .swal2-textarea{width:100%;-webkit-transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,box-shadow .3s;transition:border-color .3s,box-shadow .3s,-webkit-box-shadow .3s;border:1px solid #d9d9d9;border-radius:.1875em;font-size:1.125em;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.06);box-shadow:inset 0 1px 1px rgba(0,0,0,.06);-webkit-box-sizing:border-box;box-sizing:border-box}.exactmetrics_page .swal2-popup .swal2-file.swal2-inputerror,.exactmetrics_page .swal2-popup .swal2-input.swal2-inputerror,.exactmetrics_page .swal2-popup .swal2-textarea.swal2-inputerror{border-color:#f27474!important;-webkit-box-shadow:0 0 2px #f27474!important;box-shadow:0 0 2px #f27474!important}.exactmetrics_page .swal2-popup .swal2-file:focus,.exactmetrics_page .swal2-popup .swal2-input:focus,.exactmetrics_page .swal2-popup .swal2-textarea:focus{border:1px solid #b4dbed;outline:0;-webkit-box-shadow:0 0 3px #c4e6f5;box-shadow:0 0 3px #c4e6f5}.exactmetrics_page .swal2-popup .swal2-file::-webkit-input-placeholder,.exactmetrics_page .swal2-popup .swal2-input::-webkit-input-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::-webkit-input-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file::-moz-placeholder,.exactmetrics_page .swal2-popup .swal2-input::-moz-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::-moz-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file:-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-input:-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea:-ms-input-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file::-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-input::-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::-ms-input-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file::placeholder,.exactmetrics_page .swal2-popup .swal2-input::placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-range input{width:80%}.exactmetrics_page .swal2-popup .swal2-range output{width:20%;font-weight:600;text-align:center}.exactmetrics_page .swal2-popup .swal2-range input,.exactmetrics_page .swal2-popup .swal2-range output{height:2.625em;margin:1em auto;padding:0;font-size:1.125em;line-height:2.625em}.exactmetrics_page .swal2-popup .swal2-input{height:2.625em;padding:0 .75em}.exactmetrics_page .swal2-popup .swal2-input[type=number]{max-width:10em}.exactmetrics_page .swal2-popup .swal2-file{font-size:1.125em}.exactmetrics_page .swal2-popup .swal2-textarea{height:6.75em;padding:.75em}.exactmetrics_page .swal2-popup .swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;color:#545454;font-size:1.125em}.exactmetrics_page .swal2-popup .swal2-checkbox,.exactmetrics_page .swal2-popup .swal2-radio{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics_page .swal2-popup .swal2-checkbox label,.exactmetrics_page .swal2-popup .swal2-radio label{margin:0 .6em;font-size:1.125em}.exactmetrics_page .swal2-popup .swal2-checkbox input,.exactmetrics_page .swal2-popup .swal2-radio input{margin:0 .4em}.exactmetrics_page .swal2-popup .swal2-validation-message{display:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:.625em;background:#f0f0f0;color:#666;font-size:1em;font-weight:300;overflow:hidden}.exactmetrics_page .swal2-popup .swal2-validation-message:before{display:inline-block;width:1.5em;min-width:1.5em;height:1.5em;margin:0 .625em;border-radius:50%;background-color:#f27474;color:#fff;font-weight:600;line-height:1.5em;text-align:center;content:"!";zoom:normal}@supports (-ms-accelerator:true){.exactmetrics_page .swal2-range input{width:100%!important}.exactmetrics_page .swal2-range output{display:none}}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.exactmetrics_page .swal2-range input{width:100%!important}.exactmetrics_page .swal2-range output{display:none}}@-moz-document url-prefix(){.exactmetrics_page .swal2-close:focus{outline:2px solid rgba(50,100,150,.4)}}.exactmetrics_page .swal2-icon{position:relative;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:5em;height:5em;margin:1.25em auto 1.875em;border:.25em solid rgba(0,0,0,0);border-radius:50%;line-height:5em;cursor:default;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;zoom:normal}.exactmetrics_page .swal2-icon-text{font-size:3.75em}.exactmetrics_page .swal2-icon.swal2-error{border-color:#f27474}.exactmetrics_page .swal2-icon.swal2-error .swal2-x-mark{position:relative;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.exactmetrics_page .swal2-icon.swal2-error [class^=swal2-x-mark-line]{display:block;position:absolute;top:2.3125em;width:2.9375em;height:.3125em;border-radius:.125em;background-color:#f27474}.exactmetrics_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:1.0625em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.exactmetrics_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:1em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.exactmetrics_page .swal2-icon.swal2-warning{border-color:#facea8;color:#f8bb86}.exactmetrics_page .swal2-icon.swal2-info{border-color:#9de0f6;color:#3fc3ee;font-size:1rem}.exactmetrics_page .swal2-icon.swal2-question{border-color:#c9dae1;color:#87adbd}.exactmetrics_page .swal2-icon.swal2-success{border-color:#a5dc86}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-circular-line]{position:absolute;width:3.75em;height:7.5em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);border-radius:50%}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.4375em;left:-2.0635em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:3.75em 3.75em;-ms-transform-origin:3.75em 3.75em;transform-origin:3.75em 3.75em;border-radius:7.5em 0 0 7.5em}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.6875em;left:1.875em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:0 3.75em;-ms-transform-origin:0 3.75em;transform-origin:0 3.75em;border-radius:0 7.5em 7.5em 0}.exactmetrics_page .swal2-icon.swal2-success .swal2-success-ring{position:absolute;top:-.25em;left:-.25em;width:100%;height:100%;border:.25em solid rgba(165,220,134,.3);border-radius:50%;z-index:2;-webkit-box-sizing:content-box;box-sizing:content-box}.exactmetrics_page .swal2-icon.swal2-success .swal2-success-fix{position:absolute;top:.5em;left:1.625em;width:.4375em;height:5.625em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);z-index:1}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-line]{display:block;position:absolute;height:.3125em;border-radius:.125em;background-color:#a5dc86;z-index:2}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{top:2.875em;left:.875em;width:1.5625em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:2.375em;right:.5em;width:2.9375em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.exactmetrics_page .swal2-progresssteps{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 0 1.25em;padding:0;font-weight:600}.exactmetrics_page .swal2-progresssteps li{display:inline-block;position:relative}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle{width:2em;height:2em;border-radius:2em;background:#3085d6;color:#fff;line-height:2em;text-align:center;z-index:20}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle:first-child{margin-left:0}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle:last-child{margin-right:0}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep{background:#3085d6}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progresscircle,.exactmetrics_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progressline{background:#add8e6}.exactmetrics_page .swal2-progresssteps .swal2-progressline{width:2.5em;height:.4em;margin:0 -1px;background:#3085d6;z-index:10}.exactmetrics_page [class^=swal2]{-webkit-tap-highlight-color:transparent}.exactmetrics_page .swal2-show{-webkit-animation:swal2-show .3s;animation:swal2-show .3s}.exactmetrics_page .swal2-show.swal2-noanimation{-webkit-animation:none;animation:none}.exactmetrics_page .swal2-hide{-webkit-animation:swal2-hide .15s forwards;animation:swal2-hide .15s forwards}.exactmetrics_page .swal2-hide.swal2-noanimation{-webkit-animation:none;animation:none}.exactmetrics_page .swal2-rtl .swal2-close{right:auto;left:0}.exactmetrics_page .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:swal2-animate-success-line-tip .75s;animation:swal2-animate-success-line-tip .75s}.exactmetrics_page .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:swal2-animate-success-line-long .75s;animation:swal2-animate-success-line-long .75s}.exactmetrics_page .swal2-animate-success-icon .swal2-success-circular-line-right{-webkit-animation:swal2-rotate-success-circular-line 4.25s ease-in;animation:swal2-rotate-success-circular-line 4.25s ease-in}.exactmetrics_page .swal2-animate-error-icon{-webkit-animation:swal2-animate-error-icon .5s;animation:swal2-animate-error-icon .5s}.exactmetrics_page .swal2-animate-error-icon .swal2-x-mark{-webkit-animation:swal2-animate-error-x-mark .5s;animation:swal2-animate-error-x-mark .5s}@-webkit-keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@media print{.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}.exactmetrics-notifications-display{background:#f4f3f7;border-left:3px solid #6528f5;padding:20px;border-radius:3px 0 0 3px;margin-bottom:50px;position:relative}.exactmetrics-settings-panel .exactmetrics-notifications-display{margin-left:25px;margin-right:25px}.exactmetrics-notifications-display h3{margin:0 0 4px;font-size:16px;line-height:20px}.exactmetrics-notifications-display p{margin-top:4px;margin-bottom:12px;font-size:14px;line-height:18px}.exactmetrics-notifications-display .exactmetrics-notification{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-notifications-display .exactmetrics-notification .exactmetrics-notifications-indicator{padding-top:10px}.exactmetrics-notifications-display .exactmetrics-notification .exactmetrics-notifications-indicator a{position:relative}.exactmetrics-notifications-display .exactmetrics-notification-inner{margin-left:25px}.exactmetrics-notifications-display .exactmetrics-button{margin-right:15px}.exactmetrics-notifications-display .exactmetrics-notification-navigation{position:absolute;right:0;top:100%}.exactmetrics-notifications-display .exactmetrics-notification-navigation button{background:#f4f3f7;border:none;border-radius:0 0 3px 3px;margin:0;padding:5px 8px 7px;color:#a8aebd;cursor:pointer}.exactmetrics-notifications-display .exactmetrics-notification-navigation button:focus,.exactmetrics-notifications-display .exactmetrics-notification-navigation button:hover{color:#6528f5}.exactmetrics-notifications-display .exactmetrics-notification-navigation button .monstericon-arrow{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);font-size:10px}.exactmetrics-notifications-display .exactmetrics-notification-navigation button.exactmetrics-notification-previous{margin-right:2px}.exactmetrics-notifications-display .exactmetrics-notification-navigation button.exactmetrics-notification-previous .monstericon-arrow{-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.exactmetrics-notifications-display .exactmetrics-notification-dismiss{border:none;background:none;color:#a8aebd;position:absolute;right:12px;top:9px;padding:0;margin:0;font-size:16px;cursor:pointer}.exactmetrics-notifications-display .exactmetrics-notifications-unread{min-width:10px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:12px;left:18px;border-radius:20px;line-height:16px;color:#fff;font-weight:700;text-align:center;display:inline-block;padding:0 3px}.exactmetrics-report .exactmetrics-notifications-display .exactmetrics-notifications-unread{min-width:16px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:4px;border-radius:20px;line-height:1;color:#fff;font-weight:700;text-align:center;padding:0 2px;left:20px}.exactmetrics-admin-page.exactmetrics-path-about-us .exactmetrics-notificationsv3-container,.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-notificationsv3-container,.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-notificationsv3-container,.exactmetrics-admin-page.exactmetrics-path-tools-url-builder .exactmetrics-notificationsv3-container,.exactmetrics-admin-page.exactmetrics-reports-page .exactmetrics-notificationsv3-container{margin-right:0}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-navigation-bar{width:90%}.exactmetrics-admin-page .exactmetrics-notificationsv3-container{display:inline-block;margin-left:20px;float:right}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-number{position:absolute;top:-9px;min-width:20px;height:20px;line-height:20px;display:block;background:#eb5757;border-radius:20px;font-size:12px;color:#fff;font-weight:700;text-align:center;padding:0 6px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-number.number-greater-than-10{right:-13px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-number.number-less-than-10{right:-10px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-dismissed-number{min-width:24px;height:24px;background:#7c869d;border-radius:20px;display:inline-block;text-align:center;vertical-align:middle;line-height:24px;color:#fff;font-size:14px;font-weight:700;padding:0 8px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-no-notifications{text-align:center;position:absolute;top:50%;margin-top:-69px;width:100%}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-no-notifications h4{font-size:16px;color:#7c869d}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button{position:relative}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button{position:absolute;top:21px;right:15px}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button{background:#f0f2f4;border-radius:3px;padding:11px 7px;line-height:0;vertical-align:middle;margin-top:0;border:solid #d3d7de;border-width:1px 1px 2px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button{display:inline-block}}@media (max-width:959px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button{display:block}}@media (max-width:1099px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button{display:block}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button:hover{background:#e7eaec;border-color:#d3d7de;outline:none}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-notificationsv3-inbox-number{cursor:pointer}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar{width:440px;position:fixed;top:32px;right:0;background:#fff;z-index:1001;overflow:scroll;height:100%;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar{top:46px;width:300px}}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(50px)}to{opacity:1;-webkit-transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(50px);transform:translateX(50px)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar.exactmetrics-notificationsv3-sidebar-in{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-single-notification{padding:0 16px;overflow:hidden}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top{background:#2679c1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:50px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-title{width:50%;text-align:left}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-title svg{margin-right:10px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-title h3{display:inline-block;color:#fff;font-size:18px;font-weight:700}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions{width:50%;text-align:right}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button{color:#fff;text-decoration:underline;border:0;padding:0;background:rgba(0,0,0,0);border-radius:0;float:none}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button{display:inline-block}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button:hover{color:#efe5e5}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button:focus{outline:none}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-notificationsv3-sidebar-close{margin-left:12px;vertical-align:bottom}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-notificationsv3-sidebar-close:active svg path,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-notificationsv3-sidebar-close:focus svg path,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-notificationsv3-sidebar-close:hover svg path{fill:#efe5e5}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:60px;border-bottom:1px solid #e2e4e9;margin:0 16px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-notifications-count{width:50%;text-align:left}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-notifications-count .exactmetrics-notificationsv3-inbox-number{position:relative;display:inline-block;top:inherit;right:inherit;min-width:24px;height:24px;line-height:24px;margin-right:8px;padding:0 8px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-notifications-count .exactmetrics-notificationsv3-dismissed-number{margin-right:8px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-notifications-count h4{display:inline-block}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions{width:50%;text-align:right}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions span{text-decoration:underline;color:#99a1b3;cursor:pointer}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions span:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions span:focus,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions span:hover{color:#a9b1c3}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications{display:block;margin-bottom:32px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications{margin-bottom:46px}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification{border-bottom:1px solid #e2e4e9;padding-bottom:24px;display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-icon{width:54px;float:left;text-align:center;padding-top:24px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-icon{float:none;margin:0 auto}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details{float:left;width:354px;padding-top:20px;text-align:left}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details{width:260px}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-title h5{margin-top:0;margin-bottom:0;color:#393f4c;font-size:13px;font-weight:700;width:70%;display:inline-block}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-title h5{width:65%}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-title span{color:#7f899f;font-size:13px;float:right}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-content p{color:#393f4c;font-size:13px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-top:2px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions .exactmetrics-button{display:block;background:#f0f2f4;border:1px solid #d3d7de;border-radius:3px;font-weight:500;font-size:13px;color:#393f4c;letter-spacing:.02em;padding:6px 11px;margin-right:10px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions .exactmetrics-button:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions .exactmetrics-button:hover{background:#d3d7de}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions span{font-size:13px;color:#7f899f;cursor:pointer}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions span:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions span:focus,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions span:hover{color:#a9b1c3}.exactmetrics-tooltip{display:block!important;z-index:10000;max-width:350px}.exactmetrics-tooltip .exactmetrics-tooltip-inner{background:#6528f5;color:#fff;border-radius:5px;padding:16px 20px;font-size:15px;line-height:1.5;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;text-align:center}.exactmetrics-tooltip .exactmetrics-tooltip-inner a{color:#fff;font-weight:700}.exactmetrics-tooltip .exactmetrics-tooltip-arrow{width:0;height:0;border-style:solid;position:absolute;margin:8px;border-color:#6528f5;z-index:1}.exactmetrics-tooltip[x-placement^=top]{padding-bottom:8px}.exactmetrics-tooltip[x-placement^=top] .exactmetrics-tooltip-arrow{border-width:8px 8px 0;border-left-color:rgba(0,0,0,0)!important;border-right-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;bottom:0;left:calc(50% - 8px);margin-top:0;margin-bottom:0}.exactmetrics-tooltip[x-placement^=bottom]{padding-top:8px}.exactmetrics-tooltip[x-placement^=bottom] .exactmetrics-tooltip-arrow{border-width:0 8px 8px;border-left-color:rgba(0,0,0,0)!important;border-right-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;top:0;left:calc(50% - 8px);margin-top:0;margin-bottom:0}.exactmetrics-tooltip[x-placement^=right]{padding-left:8px}.exactmetrics-tooltip[x-placement^=right] .exactmetrics-tooltip-arrow{border-width:8px 8px 8px 0;border-left-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;left:0;top:calc(50% - 8px);margin-left:0;margin-right:0}.exactmetrics-tooltip[x-placement^=left]{padding-right:8px}.exactmetrics-tooltip[x-placement^=left] .exactmetrics-tooltip-arrow{border-width:8px 0 8px 8px;border-top-color:rgba(0,0,0,0)!important;border-right-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;right:0;top:calc(50% - 8px);margin-left:0;margin-right:0}.exactmetrics-tooltip.popover .popover-inner{background:#fff;color:#6528f5;padding:24px;border-radius:5px;-webkit-box-shadow:0 5px 30px rgba(0,0,0,.1);box-shadow:0 5px 30px rgba(0,0,0,.1)}.exactmetrics-tooltip.popover .popover-arrow{border-color:#fff}.exactmetrics-tooltip[aria-hidden=true]{visibility:hidden;opacity:0;-webkit-transition:opacity .15s,visibility .15s;transition:opacity .15s,visibility .15s}.exactmetrics-tooltip[aria-hidden=false]{visibility:visible;opacity:1;-webkit-transition:opacity .15s;transition:opacity .15s}.exactmetrics-roller{display:inline-block;position:relative;width:58px;height:58px}.exactmetrics-roller div{-webkit-animation:exactmetrics-roller 1.4s cubic-bezier(.5,0,.5,1) infinite;animation:exactmetrics-roller 1.4s cubic-bezier(.5,0,.5,1) infinite;-webkit-transform-origin:29px 29px;-ms-transform-origin:29px 29px;transform-origin:29px 29px}.exactmetrics-roller div:after{content:" ";display:block;position:absolute;width:8px;height:8px;border-radius:50%;background:#6528f5;margin:-4px 0 0 -4px}.exactmetrics-roller div:first-child{-webkit-animation-delay:-36ms;animation-delay:-36ms}.exactmetrics-roller div:nth-child(2){-webkit-animation-delay:-72ms;animation-delay:-72ms}.exactmetrics-roller div:nth-child(3){-webkit-animation-delay:-.108s;animation-delay:-.108s}.exactmetrics-roller div:nth-child(4){-webkit-animation-delay:-.144s;animation-delay:-.144s}.exactmetrics-roller div:nth-child(5){-webkit-animation-delay:-.18s;animation-delay:-.18s}.exactmetrics-roller div:nth-child(6){-webkit-animation-delay:-.216s;animation-delay:-.216s}.exactmetrics-roller div:nth-child(7){-webkit-animation-delay:-.252s;animation-delay:-.252s}.exactmetrics-roller div:first-child:after{top:49px;left:44px}.exactmetrics-roller div:nth-child(2):after{top:54px;left:28px}.exactmetrics-roller div:nth-child(3):after{top:48px;left:13px}.exactmetrics-roller div:nth-child(4):after{top:35px;left:5px}.exactmetrics-roller div:nth-child(5):after{top:19px;left:6px}.exactmetrics-roller div:nth-child(6):after{top:8px;left:15px}.exactmetrics-roller div:nth-child(7):after{top:4px;left:29px}@-webkit-keyframes exactmetrics-roller{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes exactmetrics-roller{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.exactmetrics-upload-media-wrapper .exactmetrics-dark{display:block}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media-label{margin-bottom:0!important}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media{display:block;width:100%;margin-top:20px;position:relative;max-width:300px}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media .exactmetrics-uploaded-media-overlay{display:none;background:rgba(0,0,0,.7);width:100%;position:absolute;top:0;left:0;height:100%;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media .exactmetrics-uploaded-media-overlay .exactmetrics-remove-uploaded-media{color:#fff;text-decoration:underline;margin-left:auto;cursor:pointer;padding:0 10px 10px 0}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media .exactmetrics-uploaded-media-overlay .exactmetrics-remove-uploaded-media:hover{text-decoration:none}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media:hover .exactmetrics-uploaded-media-overlay{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media img{max-width:100%;display:inline-block}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media{overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;margin-top:20px}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-input{width:73%;margin-right:2%;float:left;position:relative;margin-top:0}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button{width:25%;float:left;font-size:15px}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button:active,.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button:focus,.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button:hover{outline:none}.exactmetrics-upload-media-wrapper .inline-field .exactmetrics-button{position:relative!important;margin-left:10px;padding:12px 24px!important}.exactmetrics-upload-media-wrapper .inline-field .exactmetrics-button:first-child{margin-left:0}.exactmetrics-email-summaries-settings a{color:#6528f5!important}.exactmetrics-email-summaries-settings a:focus,.exactmetrics-email-summaries-settings a:hover{color:#393f4c!important}.exactmetrics-email-summaries-settings .exactmetrics-dark{display:block}.exactmetrics-email-summaries-settings .inline-field .exactmetrics-button{position:relative!important;margin-left:10px;padding:12px 24px!important}.exactmetrics-email-summaries-settings .inline-field .exactmetrics-button:first-child{margin-left:0}.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater{margin-bottom:18px}.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row input[type=number],.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row input[type=text],.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row textarea{border-color:#9087ac}.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row .exactmetrics-input-valid input{border-color:#32a27a}.exactmetrics-email-summaries-settings .exactmetrics-button.exactmetrics-button-disabled{cursor:not-allowed;background:#39967e!important;border-color:#4ab99b!important}.exactmetrics-accordion .exactmetrics-accordion{padding:0;border:1px solid #e0e0e0}.exactmetrics-accordion .exactmetrics-accordion div:not(:last-child){border-bottom:1px solid rgba(10,10,10,.1)}.exactmetrics-accordion .exactmetrics-accordion div:last-child .exactmetrics-accordion-item-details{border-radius:5px}.exactmetrics-accordion .exactmetrics-accordion dd{margin-left:0;margin-bottom:0}.exactmetrics-accordion .exactmetrics-accordion-item-trigger{cursor:pointer;outline:none}.exactmetrics-accordion .exactmetrics-accordion-item-details-inner,.exactmetrics-accordion .exactmetrics-accordion-item-trigger{padding:0 20px 30px}.exactmetrics-accordion .exactmetrics-accordion-item.is-active .exactmetrics-accordion-item-title{border-bottom:1px solid #e0e0e0}.exactmetrics-accordion .exactmetrics-accordion-item-title{position:relative;background-color:#fff;cursor:pointer}.exactmetrics-accordion .exactmetrics-accordion-item-title h4.exactmetrics-accordion-item-title-text{font-size:20px;margin-bottom:0;padding-right:1.25rem}.exactmetrics-accordion .exactmetrics-accordion-item-title h4.exactmetrics-accordion-item-title-text .title{padding-left:15px}.exactmetrics-accordion .exactmetrics-accordion-item-trigger{width:100%;text-align:left;background-color:rgba(0,0,0,0);border:none}.exactmetrics-accordion .exactmetrics-accordion-item-trigger-icon{display:block;position:absolute;top:0;right:1.5rem;bottom:0;margin:auto;width:8px;height:8px;border-right:2px solid #363636;border-bottom:2px solid #363636;-webkit-transform:translateY(-2px) rotate(45deg);-ms-transform:translateY(-2px) rotate(45deg);transform:translateY(-2px) rotate(45deg);-webkit-transition:-webkit-transform .2s ease;transition:-webkit-transform .2s ease;transition:transform .2s ease;transition:transform .2s ease,-webkit-transform .2s ease}.exactmetrics-accordion .exactmetrics-accordion-item-trigger-icon.is-active{-webkit-transform:translateY(2px) rotate(225deg);-ms-transform:translateY(2px) rotate(225deg);transform:translateY(2px) rotate(225deg)}.exactmetrics-accordion .exactmetrics-accordion-item-details{overflow:hidden;background-color:#fff;padding-top:15px}.exactmetrics-accordion .exactmetrics-accordion-item-details p,.exactmetrics-accordion .exactmetrics-accordion-item-details ul{font-size:1.2em;line-height:1.8}.exactmetrics-accordion .exactmetrics-accordion-item-enter-active,.exactmetrics-accordion .exactmetrics-accordion-item-leave-active{will-change:height;-webkit-transition:height .2s ease;transition:height .2s ease}.exactmetrics-accordion .exactmetrics-accordion-item-enter,.exactmetrics-accordion .exactmetrics-accordion-item-leave-to{height:0!important}body{background:#fff;margin:0}.exactmetrics-admin-page,.exactmetrics-admin-page *{-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}#wpcontent,.auto-fold #wpcontent{padding-left:0}.exactmetrics-highlighted-text{color:#64bfa5;font-weight:700}.exactmetrics-bold{font-weight:700}.exactmetrics-bg-img{width:100%;padding-top:66%;position:relative}.exactmetrics-bg-img:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;background-repeat:no-repeat;background-size:contain}.exactmetrics-header{padding:20px;background-color:#210f59;position:relative;z-index:90}.exactmetrics-header .exactmetrics-container{width:100%}@media (max-width:959px){.exactmetrics-header .exactmetrics-container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}}.exactmetrics-header .exactmetrics-float-right{text-align:center}@media (max-width:1099px){.exactmetrics-header .exactmetrics-float-right{text-align:right}}.exactmetrics-header .exactmetrics-float-right .exactmetrics-button{float:right;background:#fff;color:#210f59}@media (max-width:1099px){.exactmetrics-header .exactmetrics-float-right .exactmetrics-button{display:none}}.exactmetrics-header .exactmetrics-float-right .exactmetrics-button:focus,.exactmetrics-header .exactmetrics-float-right .exactmetrics-button:hover{color:#6528f5;background:#fff}.exactmetrics-header .exactmetrics-float-right .exactmetrics-button.exactmetrics-button-disabled{color:#9087ac}@media (max-width:959px){.exactmetrics-header .exactmetrics-float-right{text-align:right;width:100%}}.exactmetrics-logo-area{float:left;max-width:calc(100vw - 170px)}.exactmetrics-logo-area img{display:block;max-width:100%}@media (max-width:959px){.exactmetrics-logo-area{width:140px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0}}@media (max-width:959px){.exactmetrics-header .exactmetrics-container,.exactmetrics-navigation-bar .exactmetrics-container{padding:0;width:100%}}.exactmetrics-navigation-bar{background:rgba(0,0,0,0);display:inline-block}@media (max-width:959px){.exactmetrics-navigation-bar{padding:0;border:0}}@media (max-width:750px){.exactmetrics-navigation-bar{background:none;margin-right:40px}}.exactmetrics-admin-page{position:relative}.exactmetrics-admin-page .exactmetrics-blocked{position:absolute;top:0;bottom:0;right:0;left:0;background:hsla(0,0%,100%,.5);z-index:999}@media (max-width:959px){.exactmetrics-admin-page .exactmetrics-header{padding:20px 24px}.exactmetrics-admin-page .exactmetrics-header .exactmetrics-button{display:none}}.swal2-popup .swal2-title{line-height:1.2}#footer-left{color:#210f59}#footer-left .exactmetrics-no-text-decoration{text-decoration:none;color:#fdb72c;font-size:14px}#footer-left a{color:#6528f5}#wpfooter{display:none;margin-right:23px;margin-bottom:20px;left:23px;background:rgba(101,40,245,.05);padding:14px 20px;border-radius:5px}#wpfooter a{color:#6528f5}.exactmetrics-container{margin:0 auto;max-width:100%;width:750px}.exactmetrics-admin-page .exactmetrics-navigation-tab-link{text-decoration:none;padding:12px 4px 11px;font-size:15px;color:#fff;display:inline-block;margin-right:20px;line-height:1;outline:none;font-family:Lato,sans-serif;position:relative}.exactmetrics-admin-page .exactmetrics-navigation-tab-link:after{content:"";width:100%;left:0;position:absolute;top:100%;height:2px;border-radius:20px;background:#fff;display:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:focus,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:hover{border-bottom-color:#fff;color:#fff;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active:after,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:focus:after,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:hover:after{display:block}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.exactmetrics-navigation-tab-disabled:focus,.exactmetrics-admin-page .exactmetrics-navigation-tab-link.exactmetrics-navigation-tab-disabled:hover{border-bottom-color:rgba(0,0,0,0);color:#fff;cursor:default}@media (max-width:959px){.exactmetrics-admin-page .exactmetrics-navigation-tab-link{width:100%;padding:20px 0;color:#fff;font-size:16px;border-top:1px solid #4d3f7a;text-align:left}.exactmetrics-admin-page .exactmetrics-navigation-tab-link:first-child{border-top:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active:first-child+.exactmetrics-navigation-tab-link{border-top:0}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active{display:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link:focus{color:#fff;text-decoration:none}}.exactmetrics-admin-page .exactmetrics-button{background:#6528f5;border-radius:5px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:12px 24px;text-decoration:none;border:0}.exactmetrics-admin-page .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-button:hover{background-color:#37276a;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-disabled{background:#e9e7ee;color:#9087ac}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-secondary{background:#e9e7ee;color:#37276a}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-secondary:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-secondary:hover{background-color:#f4f3f7;color:#37276a}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-green{background:#32a27a;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-green:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-green:hover{background-color:#19865f;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text{background:rgba(0,0,0,0);border:none;color:#6528f5;padding:0;border-radius:0;text-decoration:underline}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text:hover{background:rgba(0,0,0,0);color:#393f4c}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text [class*=monstericon-]{margin-left:10px;min-width:16px;display:inline-block}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text [class*=monstericon-]:first-child{margin-left:0;margin-right:10px}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text.exactmetrics-button-text-dark{color:#210f59}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text.exactmetrics-button-text-dark:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text.exactmetrics-button-text-dark:hover{color:#6528f5}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-red{background:#e43462;border-color:#e43462;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-large{font-size:15px;padding:14px 30px 12px;font-weight:500}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-xl{font-size:20px;padding:23px 67px;font-weight:500}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-xl i{margin-left:10px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-xl{padding-left:45px;padding-right:45px}}.exactmetrics-admin-page .exactmetrics-spaced-top{margin-top:20px}.exactmetrics-green-text{color:#32a27a;font-weight:700}@media (max-width:782px){.wp-responsive-open #wpbody{margin-left:-18px}}.exactmetrics-mobile-nav-trigger{color:#fff;font-size:15px;font-weight:500;display:inline-block;border:none;background:#37276a;padding:7px 18px;line-height:1.7;margin:0;border-radius:5px}@media (min-width:960px){.exactmetrics-mobile-nav-trigger{display:none}}.exactmetrics-mobile-nav-trigger i{color:#fff;margin-left:25px;vertical-align:middle}.exactmetrics-mobile-nav-trigger.exactmetrics-mobile-nav-trigger-open{border-radius:5px 5px 0 0}@media (max-width:959px){.exactmetrics-main-navigation{background:#37276a;height:0;overflow:hidden;position:absolute;left:24px;right:24px;text-align:left;border-radius:5px 0 5px 5px}.exactmetrics-main-navigation.exactmetrics-main-navigation-open{padding:17px 40px;height:auto;-webkit-box-shadow:0 40px 30px rgba(33,15,89,.1);box-shadow:0 40px 30px rgba(33,15,89,.1)}}@media (min-width:782px){.exactmetrics_page .exactmetrics-swal{margin-left:160px}.auto-fold .exactmetrics_page .exactmetrics-swal{margin-left:36px}}@media (min-width:961px){.auto-fold .exactmetrics_page .exactmetrics-swal{margin-left:160px}.folded .exactmetrics_page .exactmetrics-swal{margin-left:36px}}.exactmetrics_page .exactmetrics-swal .swal2-footer{border-top:none;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left;margin-top:0;font-size:15px}.exactmetrics_page .exactmetrics-swal .swal2-footer a{color:#6528f5}.exactmetrics_page .exactmetrics-swal .swal2-footer a:focus,.exactmetrics_page .exactmetrics-swal .swal2-footer a:hover{color:#37276a}.exactmetrics-modal{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.8);z-index:99999;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics-modal .exactmetrics-modal-inner{background:#fff;padding:50px;border:1px solid #d6e2ed;text-align:center;width:750px}.exactmetrics-modal .exactmetrics-modal-inner h2{margin-top:0;margin-bottom:0;line-height:1.4}.exactmetrics-modal .exactmetrics-modal-inner p{margin-bottom:0}.exactmetrics-modal .exactmetrics-modal-inner .exactmetrics-modal-buttons{margin-top:50px}.exactmetrics-modal .exactmetrics-modal-inner .exactmetrics-button{margin:0 10px}.exactmetrics-welcome-overlay{position:fixed;top:0;left:0;right:0;bottom:0;z-index:99999999;font-family:inherit;overflow:hidden;background-color:rgba(33,15,89,.9)}.exactmetrics-welcome-overlay .exactmetrics-welcome-overlay-inner{background:#fff;padding:30px;width:70%;margin:0 auto;position:relative;top:10%;height:80%;border-radius:10px;-webkit-box-shadow:0 20px 80px rgba(13,7,36,.5);box-shadow:0 20px 80px rgba(13,7,36,.5)}.exactmetrics-welcome-overlay .exactmetrics-overlay-close{background:none;border:none;position:absolute;top:5px;right:7px;padding:0;color:#777}.exactmetrics-welcome-overlay .exactmetrics-welcome-overlay-content{height:100%}.exactmetrics-welcome-overlay .exactmetrics-welcome-overlay-content iframe{height:100%;width:100%}.swal2-container.exactmetrics-swal-loading{background:#fff;padding:20px;top:112px;height:auto}.swal2-container.exactmetrics-swal-loading.exactmetrics-swal-full-height{top:32px}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal{width:100%;height:100%;border-radius:10px;background:url(../img/loading-background.jpg) no-repeat bottom #f4f3f7;background-size:cover;-webkit-animation-duration:1ms;animation-duration:1ms}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-icon{visibility:hidden;height:0;padding:0}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-header{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-title{font-size:17px;color:#210f59}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-content{color:#9087ac;margin-top:6px;font-size:15px;line-height:1.75;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.swal2-container.exactmetrics-swal-loading .swal2-actions button{display:none}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess{padding:0;background:#f8f6ff}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-icon{visibility:hidden;height:0;width:0;margin:0;padding:0}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal{width:750px;background:none;padding-left:260px;position:relative}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-header{display:block}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-title{font-size:32px;line-height:1.3;color:#210f59;text-align:left}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal #swal2-content{font-size:15px;line-height:1.75;color:#210f59;text-align:left;margin-bottom:20px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal #swal2-content p{font-size:15px;margin:0;font-weight:500}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-actions{margin:0;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled{margin:0;font-size:15px;padding:16px 23px 14px;outline:none}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled .monstericon-long-arrow-right-light{margin-left:14px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled:focus,.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled:hover{border:none;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-confirm{background:#32a27a}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-confirm:focus,.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-confirm:hover{background:#19865f}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-cancel{margin-left:15px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-swal-icons{position:absolute;left:-35px;top:-15px;width:260px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-swal-icons [class^=monstericon-]{position:absolute;color:#6528f5;opacity:.5;font-size:41px;top:114px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-swal-icons [class^=monstericon-]:first-child{font-size:108px;opacity:1;top:-22px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-swal-icons [class^=monstericon-]:nth-child(2){left:35px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-swal-icons [class^=monstericon-].monstericon-exclamation-em-solid:nth-child(2){left:50px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-swal-icons [class^=monstericon-]:nth-child(3){top:147px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-swal-icons [class^=monstericon-]:nth-child(4){left:185px}.exactmetrics_page .exactmetrics-swal .swal2-title{line-height:1.2}.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-error,.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-info{border:none;border-radius:0}.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-error:before,.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-info:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f064";font-size:80px;color:#6528f5}.exactmetrics_page .exactmetrics-swal .swal2-icon .swal2-icon-text,.exactmetrics_page .exactmetrics-swal .swal2-icon .swal2-x-mark{display:none}.exactmetrics_page .exactmetrics-swal .swal2-styled{border-radius:5px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:12px 24px;text-decoration:none;border:0}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-confirm{background:#6528f5}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-confirm:focus,.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-confirm:hover{background-color:#37276a;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-cancel{background:#e9e7ee;color:#37276a}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-cancel:focus,.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-cancel:hover{background-color:#f4f3f7;color:#37276a;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .exactmetrics-swal .swal2-popup{border-radius:10px;padding:40px}.exactmetrics-list-check ul{margin:0;list-style:none;padding-left:0}.exactmetrics-list-check li{font-size:15px;margin-top:18px;padding-left:30px;position:relative;color:#fff}.exactmetrics-list-check li:first-child{margin-top:0}.exactmetrics-list-check li:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f045";font-size:15px;margin-right:10px;color:#fff;position:absolute;left:0;top:0}.exactmetrics-settings-input-select-input .multiselect__tags-wrap{position:relative}.exactmetrics-settings-input-select-input .multiselect__tags-wrap:after{content:attr(data-text);display:inline-block;position:relative;color:#9087ac;bottom:0;background:#fff;border-radius:4px;font-size:14px;vertical-align:top;padding:8px 15px}.exactmetrics-settings-input-select-input .multiselect__placeholder{display:none}.multiselect__content-wrapper{left:30px}.exactmetrics-semrush-cta{background:#f4f3f7;border-left:3px solid #6528f5;padding:20px 26px;border-radius:3px 0 0 3px;position:relative}.exactmetrics-semrush-cta br{display:none}.exactmetrics-semrush-cta .exactmetrics-semrush-cta-close{position:absolute;top:12px;right:12px;cursor:pointer;border:0;background:rgba(0,0,0,0);padding:0;margin:0;outline:none}.exactmetrics-semrush-cta .exactmetrics-semrush-cta-title{font-weight:700;font-size:16px;line-height:20px;color:#393f4c;margin:0}.exactmetrics-semrush-cta .exactmetrics-semrush-cta-content{font-weight:400;font-size:14px;color:#393f4c}.exactmetrics-semrush-cta .exactmetrics-button{background:#6528f5;border-radius:3px;font-weight:400;font-size:14px;border-width:0;padding:7px 12px}.exactmetrics-semrush-cta .exactmetrics-button:active,.exactmetrics-semrush-cta .exactmetrics-button:focus,.exactmetrics-semrush-cta .exactmetrics-button:hover{background:#6333d4;outline:none}.exactmetrics-row-highlight{-webkit-animation-name:color;animation-name:color;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-iteration-count:2;animation-iteration-count:2}@-webkit-keyframes color{0%{background-color:#fff}50%{background-color:#509fe2}to{background-color:#fff}}@keyframes color{0%{background-color:#fff}50%{background-color:#509fe2}to{background-color:#fff}}.exactmetrics-about-block{padding:0;background:#fff;margin-top:40px}@media (max-width:782px){.exactmetrics-about-block{padding:0 24px}}.exactmetrics-about-block h3{color:#210f59;font-size:24px;margin:0 0 20px;line-height:1.4;padding-top:25px}.exactmetrics-about-block p{font-size:15px;line-height:1.75;font-weight:500;color:#210f59}.exactmetrics-about-block:after{content:"";display:table;clear:both}div[class*=" exactmetrics-path-about-"] .exactmetrics-container,div[class^=exactmetrics-path-about-] .exactmetrics-container{width:1094px}@media (max-width:782px){div[class*=" exactmetrics-path-about-"] .exactmetrics-container,div[class^=exactmetrics-path-about-] .exactmetrics-container{padding-left:24px;padding-right:24px}}div[class*=" exactmetrics-path-about-"] .exactmetrics-header,div[class*=" exactmetrics-path-about-"] .exactmetrics-navigation-bar,div[class^=exactmetrics-path-about-] .exactmetrics-header,div[class^=exactmetrics-path-about-] .exactmetrics-navigation-bar{padding-left:20px;padding-right:20px}@media (max-width:782px){div[class*=" exactmetrics-path-about-"] .exactmetrics-header,div[class*=" exactmetrics-path-about-"] .exactmetrics-navigation-bar,div[class^=exactmetrics-path-about-] .exactmetrics-header,div[class^=exactmetrics-path-about-] .exactmetrics-navigation-bar{padding-left:0;padding-right:0}}div[class*=" exactmetrics-path-about-"] .exactmetrics-navigation-bar,div[class^=exactmetrics-path-about-] .exactmetrics-navigation-bar{margin-left:-163px}div[class*=" exactmetrics-path-about-"] .exactmetrics-navigation-bar .exactmetrics-container,div[class^=exactmetrics-path-about-] .exactmetrics-navigation-bar .exactmetrics-container{width:auto}div[class*=" exactmetrics-path-about-"] .exactmetrics-addons-list,div[class^=exactmetrics-path-about-] .exactmetrics-addons-list{padding:0 20px}div[class*=" exactmetrics-path-about-"] .exactmetrics-addons-list .exactmetrics-addon,div[class^=exactmetrics-path-about-] .exactmetrics-addons-list .exactmetrics-addon{width:calc(33.3333% - 21px)}@media (max-width:782px){div[class*=" exactmetrics-path-about-"] .exactmetrics-addons-list .exactmetrics-addon,div[class^=exactmetrics-path-about-] .exactmetrics-addons-list .exactmetrics-addon{width:100%}}div[class*=" exactmetrics-path-about-"] .exactmetrics-addon-image,div[class^=exactmetrics-path-about-] .exactmetrics-addon-image{min-height:74px;padding:5px;display:-webkit-box;display:-ms-flexbox;display:flex;height:74px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}div[class*=" exactmetrics-path-about-"] .monstericon-star:before,div[class^=exactmetrics-path-about-] .monstericon-star:before{color:#fdb72c}.exactmetrics-lite-vs-pro-table{padding:0}.exactmetrics-lite-vs-pro-table .exactmetrics-lite-vs-pro-footer{background:#e9e7ee}.exactmetrics-lite-vs-pro-header{text-align:center;padding:40px 0 22px}.exactmetrics-lite-vs-pro-header h1{font-size:22px;margin:0 0 22px}.exactmetrics-features-table{width:100%;border-collapse:collapse;position:relative;margin-bottom:95px}.exactmetrics-features-table tr{position:relative}.exactmetrics-features-table tr:first-child td{border-radius:0 10px 0 0}.exactmetrics-features-table tr:first-child .exactmetrics-features-table-feature-title+td{border-radius:10px 0 0 0}.exactmetrics-features-table tr:first-child:after{display:none}.exactmetrics-features-table tr:after{display:block;border-top:1px solid #bcb7cd;opacity:.5;content:"";position:absolute;left:0;right:40px}.exactmetrics-features-table tbody tr:last-child td{padding:0;background:none}.exactmetrics-features-table tbody tr:last-child:after{display:none}.exactmetrics-features-table td,.exactmetrics-features-table th{width:33.33333%;padding:40px;vertical-align:top}.exactmetrics-features-table td p,.exactmetrics-features-table th p{margin:0}.exactmetrics-features-table th{text-align:left;border-right:none;font-size:24px;line-height:1.4}.exactmetrics-features-table th i{width:40px;height:40px;border-radius:50%;color:#210f59;background-color:rgba(33,15,89,.1);display:inline-block;text-align:center;line-height:40px;font-size:15px;margin-right:30px}.exactmetrics-features-table td{background:#f4f3f7}.exactmetrics-features-table td p{font-size:17px;line-height:1.5}.exactmetrics-features-table td p>span{margin-top:16px;display:block}.exactmetrics-features-table .exactmetrics-features-table-feature-title{background:none;padding-left:0}.exactmetrics-features-table .exactmetrics-features-table-feature-title i{float:left;font-size:23px;color:#6528f5;margin-right:18px}.exactmetrics-features-table .exactmetrics-features-table-feature-title p{font-weight:700;font-size:17px;color:#37276a;line-height:1.5;margin-left:41px}.exactmetrics-features-full:before,.exactmetrics-features-none:before,.exactmetrics-features-partial:before{display:block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f026";font-size:20px;margin-right:10px;color:#d4393d;position:relative;top:2px;margin-bottom:16px}.exactmetrics-features-full:before,.exactmetrics-features-partial:before{content:"\f022";color:#19865f}.exactmetrics-features-table .exactmetrics-lite-vs-pro-footer{padding:40px;text-align:center;border-radius:0 0 10px 10px;border-top:1px solid #bcb7cd}.exactmetrics-features-table .exactmetrics-lite-vs-pro-footer h3{color:#210f59;font-size:17px;max-width:350px;line-height:1.5;margin:0 auto 16px}.exactmetrics-features-table .exactmetrics-lite-vs-pro-footer p{margin-bottom:24px;font-size:15px;line-height:1.75;color:#210f59;max-width:350px;margin-left:auto;margin-right:auto}.exactmetrics-two-column{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-two-column>div{width:50%}.exactmetrics-about-docs-row:after{display:table;clear:both;content:""}.exactmetrics-about-docs-image{width:158px;float:left;margin-right:32px}.exactmetrics-about-docs-image .exactmetrics-bg-img{width:158px;background-color:#fff;border-radius:5px;height:158px;padding-top:0}.exactmetrics-about-docs-image .exactmetrics-bg-img:after{background-position:50%;left:10px;right:10px;top:10px;bottom:10px}.exactmetrics-about-docs-1:after{background-image:url(../img/about-icon-connect.png)}.exactmetrics-about-docs-2:after{background-image:url(../img/about-icon-guide.png)}.exactmetrics-about-docs-3:after{background-image:url(../img/about-icon-gdpr.png)}.exactmetrics-about-docs-4:after{background-image:url(../img/about-icon-addons-em.png)}.exactmetrics-about-docs-5:after{background-image:url(../img/about-icon-ecommerce.png)}.exactmetrics-bg-img.exactmetrics-about-team{padding-top:70%}.exactmetrics-bg-img.exactmetrics-about-team:after{background-image:url(../img/about-team-photo.png)}.exactmetrics-about-docs-text h3{color:#210f59;font-size:17px;line-height:1.5}.exactmetrics-about-docs-text p{margin:16px 0 24px}.exactmetrics-about-page-right-image{float:right;width:48%;text-align:center;margin:0 0 0 20px}@media (max-width:782px){.exactmetrics-about-page-right-image{width:100%;float:none;margin:0 0 20px}}.exactmetrics-about-page-right-image img{width:100%}.exactmetrics-about-page-right-image figcaption{color:#4d3f7a;margin-top:5px}.exactmetrics-about-page-right-image iframe{max-width:100%}.exactmetrics-page-title{padding:32px;line-height:1.3;border-bottom:1px solid #e9e7ee}.exactmetrics-page-title h2{margin:0;font-size:32px;color:#210f59}.exactmetrics-about .exactmetrics-addon-top{padding:40px 40px 24px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.exactmetrics-about .exactmetrics-addon-noicon{margin-bottom:10px}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon{padding-bottom:145px}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon .exactmetrics-addon-message{padding:24px 40px 40px;background:rgba(0,0,0,0)}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-interior{border-top:1px solid #ccc;padding:24px 0 0;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;-webkit-box-align:start;-ms-flex-align:start;align-items:start;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-interior .exactmetrics-addon-status{margin-bottom:24px}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-interior .exactmetrics-addon-action{-ms-flex-item-align:start;align-self:start}.exactmetrics-about .exactmetrics-upsell-row{margin-top:70px;background:rgba(0,0,0,0)}.exactmetrics-about .exactmetrics-upsell-list-item>i{min-width:23px}.exactmetrics-about .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text i{margin-left:14px;font-size:15px}.exactmetrics-bg-img.exactmetrics-em-logo-color{padding-top:8%;width:387px;max-width:100%}@media (max-width:782px){.exactmetrics-bg-img.exactmetrics-em-logo-color{width:133px;padding-top:10%}}.exactmetrics-bg-img.exactmetrics-em-logo-color:after{background-position:50%;background-image:url(../img/em-logo.png)}.exactmetrics-about-page-top{padding:60px 0;background:radial-gradient(64.37% 131.18% at 50.04% 32.71%,hsla(0,0%,100%,.1) 0,hsla(0,0%,100%,0) 100%),rgba(101,40,245,.1);border-bottom:1px solid #e9e7ee;margin-bottom:635px}@media (max-width:782px){.exactmetrics-about-page-top{margin-bottom:0}}.exactmetrics-about-page-top h3{color:#6528f5;margin:0 0 0 135px;font-size:20px;line-height:1.3;font-weight:400}@media (max-width:782px){.exactmetrics-about-page-top h3{margin-left:0}}.exactmetrics-about-page-top h2{max-width:570px;margin-left:135px;margin-top:9px}@media (max-width:782px){.exactmetrics-about-page-top h2{margin-left:0;margin-right:0}}.exactmetrics-about-page-top .exactmetrics-about-top-button{width:750px;max-width:100%;margin-left:135px}@media (max-width:782px){.exactmetrics-about-page-top .exactmetrics-about-top-button{margin-left:0}}.exactmetrics-about-page-top .exactmetrics-about-top-button p{max-width:300px;margin-right:100px}@media (max-width:782px){.exactmetrics-about-page-top .exactmetrics-about-top-button p{margin-right:24px}}.exactmetrics-about-page-top .exactmetrics-about-top-button .exactmetrics-button{float:right;margin-top:10px}@media (max-width:782px){.exactmetrics-about-page-top .exactmetrics-about-top-button .exactmetrics-button{float:none}}.exactmetrics-about-page-top .exactmetrics-container{width:1094px}.exactmetrics-bg-img.exactmetrics-about-getting-started-video{margin-bottom:-635px;padding-top:52%;cursor:pointer}@media (max-width:782px){.exactmetrics-bg-img.exactmetrics-about-getting-started-video{margin-bottom:0}}.exactmetrics-bg-img.exactmetrics-about-getting-started-video:after{background-position:100% 100%;background-image:url(../img/about-getting-started-video.png)}.exactmetrics-about-page-top h2{font-size:24px;color:#210f59;line-height:1.4;margin-bottom:20px}@media (max-width:782px){.exactmetrics-about-page-top h2{font-size:20px}}.exactmetrics-about-page-top p{font-size:15px;line-height:1.7;color:#210f59}.exactmetrics-container.exactmetrics-about-middle-title{text-align:center;margin-top:-100px}@media (max-width:782px){.exactmetrics-container.exactmetrics-about-middle-title{margin-top:0;padding:0 24px}}.exactmetrics-container.exactmetrics-about-middle-title p{max-width:500px;margin:0 auto;font-size:15px;line-height:1.75;color:#210f59}.exactmetrics-container.exactmetrics-about-middle-title h2{font-size:24px;color:#210f59;line-height:1.4;margin-bottom:19px}.exactmetrics-admin-page .exactmetrics-wide-purple{background:#6528f5;padding:72px 0;margin-bottom:100px}.exactmetrics-admin-page .exactmetrics-wide-purple .exactmetrics-separator{background:rgba(0,0,0,.2)}.exactmetrics-about-upgrade-box-flex{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:45px}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box{width:334px;padding:65px 93px 56px;background:#210f59;border-radius:10px;color:#fff;text-align:center;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box span{font-size:17px;line-height:1.5;display:inline-block}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box span.exactmetrics-price-large{font-size:48px;line-height:1.3;font-weight:700}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box span.exactmetrics-price-term{font-size:15px;line-height:1.75;opacity:.5}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box .exactmetrics-button{background-color:#fff;color:#210f59;margin-top:27px;font-weight:500}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-checkboxes{padding-left:95px;max-width:650px;width:100%}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-checkboxes h3{color:#fff;font-size:24px;line-height:1.4;font-weight:500;margin-top:17px}.exactmetrics-testimonials-slider{position:relative;padding:0 40px;margin-top:60px}.exactmetrics-testimonials-slides{position:relative;overflow:hidden}.exactmetrics-testimonials-slide{visibility:hidden;position:absolute;top:0;left:0;width:100%;-webkit-transition:.5s;transition:.5s;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-testimonials-slide .exactmetrics-testimonial-image{padding:0 60px 0 80px;-ms-flex-negative:0;flex-shrink:0;margin-top:5px}.exactmetrics-testimonials-slide .exactmetrics-testimonial-image .exactmetrics-bg-img{width:90px;border-radius:50%;height:90px;border:5px solid #37276a;overflow:hidden}.exactmetrics-testimonials-slide .exactmetrics-about-testimonial-avatar-1:after{background-image:url(../img/testimonial-image-1.png)}.exactmetrics-testimonials-slide .exactmetrics-about-testimonial-avatar-2:after{background-image:url(../img/testimonial-image-2.png)}.exactmetrics-testimonials-slide .exactmetrics-about-testimonial-avatar-3:after{background-image:url(../img/testimonial-image-3.jpg)}.exactmetrics-testimonials-slide .exactmetrics-testimonial-text{padding-right:70px}.exactmetrics-testimonials-slide .exactmetrics-testimonial-text p{color:#fff;font-size:20px;line-height:1.5;margin:0 0 20px}.exactmetrics-testimonials-slide .exactmetrics-testimonial-text p.exactmetrics-testimonial-text-author{font-size:16px;line-height:1.75;color:#e9e7ee}.exactmetrics-testimonials-slide.exactmetrics-testimonials-slide-active{visibility:visible;position:static}.exactmetrics-testimonials-slide h2{margin:0}.exactmetrics-testimonials-slide img{width:300px}.exactmetrics-testimonials-slider-control{border:none;background:none;color:#fff;font-size:40px;line-height:1;position:absolute;top:45px;margin-top:-20px;padding:0;cursor:pointer}.exactmetrics-testimonials-slider-control.exactmetrics-testimonials-slider-control-left{left:0}.exactmetrics-testimonials-slider-control.exactmetrics-testimonials-slider-control-left i:before{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}.exactmetrics-testimonials-slider-control.exactmetrics-testimonials-slider-control-right{right:0}.exactmetrics-testimonials-slider-control.exactmetrics-testimonials-slider-control-right i:before{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.exactmetrics-about-documentation{background:#f4f3f7;border-radius:10px;padding:72px 100px;margin:40px 0 95px}@media (max-width:782px){.exactmetrics-about-documentation{margin:40px 0;padding:32px 24px}.exactmetrics-about-documentation .exactmetrics-about-docs-image{float:none}}.exactmetrics-full-width-upsell .exactmetrics-full-width-upsell-inner,.exactmetrics-upsell-row .exactmetrics-upsell-row-inner,.exactmetrics-upsell .exactmetrics-upsell-title .exactmetrics-upsell-title-inner{max-width:1400px;margin:0 auto}.exactmetrics-reports-page .exactmetrics-upsell{border-bottom:1px solid #d6e2ed}.exactmetrics-upsell-row{width:100%;background:rgba(101,40,245,.05)}.exactmetrics-upsell-row .exactmetrics-upsell-row-inner{padding:0 96px}@media (max-width:782px){.exactmetrics-upsell-row .exactmetrics-upsell-row-inner{padding:0 24px}}.exactmetrics-upsell-row h3{margin:0 0 60px;font-size:15px}.exactmetrics-upsell-row .exactmetrics-upsell-list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding-bottom:15px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 31%;flex:1 0 31%;margin-bottom:45px}.exactmetrics-report-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item,.exactmetrics-settings-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item{-webkit-box-flex:1;-ms-flex:1 0 21%;flex:1 0 21%}@media (max-width:782px){.exactmetrics-upsell-row .exactmetrics-upsell-list-item{width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}}.exactmetrics-upsell-row .exactmetrics-upsell-list-item i{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;color:#6528f5;font-size:23px;margin-right:18px;margin-top:6px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text{line-height:1.7;color:#37276a;max-width:232px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;font-weight:500;text-decoration:none}.exactmetrics-report-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text,.exactmetrics-settings-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text{max-width:170px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text{cursor:pointer}.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text:focus,.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text:hover{color:#6528f5}.exactmetrics-full-width-upsell{background:#f7f3fe;min-height:445px;margin-bottom:116px}.exactmetrics-reports-page .exactmetrics-full-width-upsell{margin-bottom:0}@media (max-width:959px){.exactmetrics-full-width-upsell{margin-bottom:48px}}.exactmetrics-full-width-upsell.exactmetrics-full-width-no-space{margin-bottom:0;min-height:380px}.exactmetrics-full-width-upsell.exactmetrics-full-width-no-space+.exactmetrics-full-width-upsell{margin-top:-100px}.exactmetrics-full-width-upsell .exactmetrics-full-width-upsell-inner{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;position:relative}.exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-full-width-upsell-inner{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-full-width-upsell-inner .exactmetrics-upsell-left{padding-left:0;padding-top:100px}.exactmetrics-full-width-upsell h2{color:#210f59;font-size:24px;line-height:1.4}.exactmetrics-full-width-upsell p{font-size:15px;line-height:1.7;color:#210f59;margin:11px 0 0}.exactmetrics-full-width-upsell p.exactmetrics-upsell-pbold{font-weight:700;margin-top:0}.exactmetrics-full-width-upsell a.exactmetrics-green-text{color:#32a27a;font-weight:400}.exactmetrics-full-width-upsell a.exactmetrics-green-text:focus,.exactmetrics-full-width-upsell a.exactmetrics-green-text:hover{color:#19865f;text-decoration:none}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons{margin-top:20px;margin-bottom:72px}@media (max-width:1099px){.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons{margin-bottom:48px}}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons .exactmetrics-button:first-child{margin-right:18px}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons .exactmetrics-button-text .monstericon-arrow-right{font-size:12px;vertical-align:text-top;margin-left:10px}.exactmetrics-upsell-half{position:relative;padding-top:56px}.exactmetrics-upsell-half.exactmetrics-upsell-left{padding-left:96px;padding-top:56px;width:40%}@media (max-width:1099px){.exactmetrics-upsell-half.exactmetrics-upsell-left{width:50%;padding-left:24px}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-left{padding-top:24px}}.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image{max-width:100%;left:0;height:auto;padding-top:67%}.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image:after{background-position:50%;left:-16%;right:-16%;top:-10%;bottom:-10%}@media (min-width:960px){.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image{display:none}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-left{width:100%;padding-right:24px}}.exactmetrics-upsell-half.exactmetrics-upsell-right{padding-left:96px;padding-top:0;width:60%}@media (max-width:1099px){.exactmetrics-upsell-half.exactmetrics-upsell-right{width:50%}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-right{display:none}}.exactmetrics-upsell-half.exactmetrics-upsell-right .exactmetrics-em-upsell-screen{position:absolute;bottom:-140px;left:68px}.exactmetrics-upsell-half h3{color:#6528f5;font-size:20px;line-height:1.3;font-weight:400;margin:0 0 15px}.exactmetrics-upsell a{color:#6528f5}.exactmetrics-upsell a:focus,.exactmetrics-upsell a:hover{color:#37276a}.exactmetrics-upsell .exactmetrics-upsell-title{border-bottom:1px solid #e9e7ee}.exactmetrics-upsell .exactmetrics-upsell-title h2{color:#210f59;font-size:32px;margin-left:100px;margin-top:45px;margin-bottom:35px}@media (max-width:782px){.exactmetrics-upsell .exactmetrics-upsell-title h2{margin-left:24px;line-height:1.4;margin-top:24px;margin-bottom:24px}}.exactmetrics-upsell .exactmetrics-upsell-half h3{font-size:24px;color:#210f59;font-weight:700}.exactmetrics-upsell-bottom{background:#f7f9fd;border-top:1px solid #d6e2ed;padding:36px 50px 30px;position:relative}@media (max-width:767px){.exactmetrics-upsell-bottom{padding-left:20px;padding-right:20px}}.exactmetrics-upsell-bottom .exactmetrics-button-top{position:absolute;top:0;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}@media (max-width:767px){.exactmetrics-upsell-bottom .exactmetrics-button-top{min-width:288px}}.exactmetrics-upsell-bottom img{max-width:100%}.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-upsell-screen,.exactmetrics-screen-image{width:848px;padding-top:0;height:566px}@media (max-width:1099px){.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-upsell-screen,.exactmetrics-screen-image{left:20px}}.exactmetrics-em-ecommerce-upsell-screen:after,.exactmetrics-em-upsell-screen:after,.exactmetrics-screen-image:after{background-position:100% 100%;background-image:url(../img/upsell-screen.png)}.exactmetrics-em-logo-text{width:432px;height:56px;margin-bottom:28px;padding-top:0;max-width:100%}@media (max-width:1400px){.exactmetrics-em-logo-text{padding-top:13%;height:auto}}@media (max-width:959px){.exactmetrics-em-logo-text{padding-top:8%}}.exactmetrics-em-logo-text:after{background-image:url(../img/exactmetrics.png)}.exactmetrics-em-addons-upsell-screen,.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-publishers-upsell-screen{bottom:auto;top:-90px}.exactmetrics-em-addons-upsell-screen:after,.exactmetrics-em-ecommerce-upsell-screen:after,.exactmetrics-em-publishers-upsell-screen:after{background-position:100% 0;background-image:url(../img/ecommerce-screen.png)}.exactmetrics-em-publishers-upsell-screen:after{background-image:url(../img/publishers-screen.png)}.exactmetrics-em-addons-upsell-screen{margin-bottom:-180px;top:-70px}.exactmetrics-em-addons-upsell-screen:after{background-image:url(../img/addons-help-screen.png)}.exactmetrics-em-search-console-upsell-screen:after{background-image:url(../img/search-console-screen.png)}.exactmetrics-em-real-time-upsell-screen:after{background-image:url(../img/real-time-screen.png)}.exactmetrics-em-site-speed-upsell-screen:after{background-image:url(../img/site-speed-screen.png)}.exactmetrics-em-forms-report-upsell-screen:after{background-image:url(../img/forms-report-screen.png)}.exactmetrics-em-dimensions-report-upsell-screen:after{background-image:url(../img/dimensions-report-screen.png)}.exactmetrics-em-forms-upsell-screen{width:758px;max-width:100%;margin-top:-75px}.exactmetrics-em-forms-upsell-screen:after{background-position:50%;background-image:url(../img/forms-screen.png)}.exactmetrics-em-optimize-upsell-screen{width:758px;max-width:100%;margin-left:-10%}.exactmetrics-em-optimize-upsell-screen:after{background-position:50%;background-image:url(../img/optimize-screen.png)}.exactmetrics-em-dimensions-upsell-screen{width:758px;max-width:100%}.exactmetrics-em-dimensions-upsell-screen:after{background-position:50%;background-image:url(../img/custom-dimensions-screen.png)}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-left:0}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half p{max-width:400px;margin-bottom:28px}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-left:96px}.exactmetrics-icon-background-large{position:absolute;font-size:130px;color:rgba(101,40,245,.05);left:25px;top:25px;line-height:1;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator{font-size:13px;color:#fff;background-color:#32a27a;border-radius:3px;font-weight:500;padding:4px 8px;vertical-align:top;margin-left:10px;display:inline-block;margin-top:-4px;cursor:pointer;text-decoration:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:hover,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:hover{color:#fff;background:#19865f}.exactmetrics-report .exactmetrics-upsell-dismissable{margin-left:-32px;margin-right:-32px;padding-left:32px;padding-right:32px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable{text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable h3{font-size:17px;color:#210f59;line-height:1.5;font-weight:700}.exactmetrics-report .exactmetrics-upsell-dismissable p{font-size:15px;margin-bottom:25px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{width:50%;padding-top:38px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{padding-left:32px;padding-right:32px;width:100%;text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half:first-child p{max-width:524px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-left:40px;color:#9087ac}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-left:0;margin-top:20px}}.exactmetrics-report .exactmetrics-upsell-dismiss{position:absolute;right:20px;top:20px;z-index:10}.exactmetrics-forms-image-wpf-upsell{margin-bottom:-140px;padding-top:85%}@media (max-width:782px){.exactmetrics-forms-image-wpf-upsell{margin-bottom:0}}.exactmetrics-forms-image-wpf-upsell:after{background-position:100% 100%;background-image:url(../img/forms-wpforms-upsell.png)}.exactmetrics-upsell-row{margin-top:70px;background:rgba(0,0,0,0)}.exactmetrics-upsell-list-item-text{font-size:15px}.exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text i{margin-left:14px;font-size:15px}.exactmetrics-about-middle-title .exactmetrics-button{margin:0 0 56px}.exactmetrics-bg-img.exactmetrics-about-getting-started-video{margin-bottom:-596px}.exactmetrics-container{width:1094px}.exactmetrics-bottom-buttons{margin:60px auto;text-align:center}.exactmetrics-bottom-buttons .exactmetrics-button{margin:20px 0}.exactmetrics-welcome-header-logo{text-align:center}.exactmetrics-em-logo-icon{padding:0;width:53px;height:46px;display:inline-block}.exactmetrics-em-logo-icon:after{background-position:0;background-image:url(../img/em-logo.png);background-size:auto 100%}.exactmetrics-em-migration-image{padding-top:55%}.exactmetrics-em-migration-image:after{background-image:url(../img/migration-screen.png)}.exactmetrics-onboarding-wizard-content .subtitle{padding-left:0}.exactmetrics-migration-step{text-align:center}.exactmetrics-migration-step h1{font-size:32px;color:#210f59;line-height:1.25;margin:32px auto 30px;max-width:500px}.exactmetrics-migration-step h2{font-size:24px;line-height:1.25;color:#210f59}.exactmetrics-migration-step p{font-size:16px;line-height:1.75;margin:0 auto;max-width:560px}.exactmetrics-migration-step .exactmetrics-button.exactmetrics-button-large{font-size:18px;line-height:21px;padding:18px 44px}.exactmetrics-migration-step .exactmetrics-button i{margin-left:10px}.exactmetrics-migration-step .exactmetrics-migration-footer{margin-top:50px;color:#210f59;font-size:14px;line-height:17px}.exactmetrics-migration-step .exactmetrics-migration-footer i{margin-right:13px}.exactmetrics-migration-step .exactmetrics-migration-footer i:after{color:#338eef}.exactmetrics-migration-step.exactmetrics-migration-step-upsell{text-align:left;max-width:582px}.exactmetrics-migration-step.exactmetrics-migration-step-upsell h1{margin:16px 0}.exactmetrics-migration-step.exactmetrics-migration-step-upsell p{margin:15px 0;max-width:580px}.exactmetrics-migration-step.exactmetrics-migration-step-upsell .exactmetrics-migration-checkboxes{max-width:100%}.exactmetrics-migration-step.exactmetrics-migration-step-upsell .exactmetrics-paragraph-limit{margin:0 auto}.exactmetrics-migration-step.exactmetrics-migration-step-upsell .exactmetrics-button-text{margin-left:27px;color:#9087ac}.exactmetrics-migration-step.exactmetrics-migration-step-upsell .monstericon-external-link-alt{color:#ac8afa}.exactmetrics-migration-checkboxes{margin:30px auto;max-width:400px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;text-align:left;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.exactmetrics-migration-checkboxes .exactmetrics-migration-checkbox{width:41%;font-size:18px;line-height:1.75;color:#210f59;margin-bottom:4px}.exactmetrics-migration-checkboxes .exactmetrics-migration-checkbox i{margin-right:10px;color:#32a27a}.exactmetrics-highlight{color:#6528f5}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:nth-child(9){background-color:#32a27a}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:nth-child(9):after{content:"\f045"}.exactmetrics-migration-info{background:#ecf5fe;max-width:500px;display:inline-block;padding:15px;border-radius:5px;color:#210f59;font-size:14px;line-height:1.4;margin-top:15px}button[data-v-bcb9681a]{margin-top:3px}
1
+ @import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap);.exactmetrics-admin-page fieldset[disabled] .multiselect{pointer-events:none}.exactmetrics-admin-page .multiselect__spinner{position:absolute;right:1px;top:1px;width:48px;height:35px;background:#fff;display:block}.exactmetrics-admin-page .multiselect__spinner:after,.exactmetrics-admin-page .multiselect__spinner:before{position:absolute;content:"";top:50%;left:50%;margin:-8px 0 0 -8px;width:16px;height:16px;border-radius:100%;border:2px solid rgba(0,0,0,0);border-top-color:#b7c9d9;-webkit-box-shadow:0 0 0 1px rgba(0,0,0,0);box-shadow:0 0 0 1px rgba(0,0,0,0)}.exactmetrics-admin-page .multiselect__spinner:before{-webkit-animation:a 2.4s cubic-bezier(.41,.26,.2,.62);animation:a 2.4s cubic-bezier(.41,.26,.2,.62);-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.exactmetrics-admin-page .multiselect__spinner:after{-webkit-animation:a 2.4s cubic-bezier(.51,.09,.21,.8);animation:a 2.4s cubic-bezier(.51,.09,.21,.8);-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.exactmetrics-admin-page .multiselect__loading-enter-active,.exactmetrics-admin-page .multiselect__loading-leave-active{-webkit-transition:opacity .4s ease-in-out;transition:opacity .4s ease-in-out;opacity:1}.exactmetrics-admin-page .multiselect__loading-enter,.exactmetrics-admin-page .multiselect__loading-leave-active{opacity:0}.exactmetrics-admin-page .multiselect,.exactmetrics-admin-page .multiselect__input,.exactmetrics-admin-page .multiselect__single{font-family:inherit;font-size:16px;-ms-touch-action:manipulation;touch-action:manipulation}.exactmetrics-admin-page .multiselect{-webkit-box-sizing:content-box;box-sizing:content-box;display:block;position:relative;width:100%;min-height:40px;text-align:left;color:#35495e}.exactmetrics-admin-page .multiselect *{-webkit-box-sizing:border-box;box-sizing:border-box}.exactmetrics-admin-page .multiselect:focus{outline:none}.exactmetrics-admin-page .multiselect--disabled{opacity:.6}.exactmetrics-admin-page .multiselect--active{z-index:1}.exactmetrics-admin-page .multiselect--active:not(.multiselect--above) .multiselect__current,.exactmetrics-admin-page .multiselect--active:not(.multiselect--above) .multiselect__input,.exactmetrics-admin-page .multiselect--active:not(.multiselect--above) .multiselect__tags{border-bottom-left-radius:0;border-bottom-right-radius:0}.exactmetrics-admin-page .multiselect--active .multiselect__select{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.exactmetrics-admin-page .multiselect--above.multiselect--active .multiselect__current,.exactmetrics-admin-page .multiselect--above.multiselect--active .multiselect__input,.exactmetrics-admin-page .multiselect--above.multiselect--active .multiselect__tags{border-top-left-radius:0;border-top-right-radius:0}.exactmetrics-admin-page .multiselect__input,.exactmetrics-admin-page .multiselect__single{position:relative;display:inline-block;min-height:20px;line-height:20px;border:none;border-radius:5px;background:#fff;padding:0 0 0 5px;width:100%;-webkit-transition:border .1s ease;transition:border .1s ease;-webkit-box-sizing:border-box;box-sizing:border-box;margin-bottom:8px;vertical-align:top}.exactmetrics-admin-page .multiselect__input:-ms-input-placeholder{color:#35495e}.exactmetrics-admin-page .multiselect__input::-webkit-input-placeholder{color:#35495e}.exactmetrics-admin-page .multiselect__input::-moz-placeholder{color:#35495e}.exactmetrics-admin-page .multiselect__input::-ms-input-placeholder{color:#35495e}.exactmetrics-admin-page .multiselect__input::placeholder{color:#35495e}.exactmetrics-admin-page .multiselect__tag~.multiselect__input,.exactmetrics-admin-page .multiselect__tag~.multiselect__single{width:auto}.exactmetrics-admin-page .multiselect__input:hover,.exactmetrics-admin-page .multiselect__single:hover{border-color:#cfcfcf}.exactmetrics-admin-page .multiselect__input:focus,.exactmetrics-admin-page .multiselect__single:focus{border-color:#a8a8a8;outline:none}.exactmetrics-admin-page .multiselect__single{padding-left:5px;margin-bottom:8px}.exactmetrics-admin-page .multiselect__tags-wrap{display:inline}.exactmetrics-admin-page .multiselect__tags{min-height:40px;display:block;padding:32px 32px 30px;border-radius:5px;background:#f4f3f7;font-size:14px}.exactmetrics-admin-page .multiselect__tag{position:relative;display:inline-block;padding:10px 15px 10px 27px;border-radius:5px;margin-right:10px;color:#fff;line-height:1;background:#6528f5;white-space:nowrap;overflow:hidden;max-width:100%;text-overflow:ellipsis;font-size:14px}.exactmetrics-admin-page .multiselect__tag.exactmetrics-tag-forced{padding-left:15px}.exactmetrics-admin-page .multiselect__tag.exactmetrics-tag-forced i{display:none}.exactmetrics-admin-page .multiselect__tag-icon{cursor:pointer;position:absolute;left:0;top:0;bottom:0;font-weight:400;font-style:normal;width:32px;text-align:center;line-height:38px;-webkit-transition:all .2s ease;transition:all .2s ease;border-radius:5px;margin-left:0}.exactmetrics-admin-page .multiselect__tag-icon:hover{background:rgba(0,0,0,0)}.exactmetrics-admin-page .multiselect__tag-icon:after{content:"\f046";color:#fff;line-height:2;margin-top:1px;font-size:16px;display:block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.exactmetrics-admin-page .multiselect__tag-icon:hover:after{color:#9087ac}.exactmetrics-admin-page .multiselect__tag-icon:focus{outline:none}.exactmetrics-admin-page .multiselect__tag-icon:focus:after{text-decoration:underline;color:#fff}.exactmetrics-admin-page .multiselect__current{min-height:40px;overflow:hidden;padding:8px 30px 0 12px;white-space:nowrap;border-radius:5px;border:1px solid #e8e8e8}.exactmetrics-admin-page .multiselect__current,.exactmetrics-admin-page .multiselect__select{line-height:16px;-webkit-box-sizing:border-box;box-sizing:border-box;display:block;margin:0;text-decoration:none;cursor:pointer}.exactmetrics-admin-page .multiselect__select{display:none}.exactmetrics-admin-page .multiselect__placeholder{color:#adadad;display:inline-block;margin-bottom:10px;padding-top:2px}.exactmetrics-admin-page .multiselect--active .multiselect__placeholder{display:none}.exactmetrics-admin-page .multiselect__content-wrapper{position:absolute;display:block;background:#fff;max-height:240px;overflow:auto;border:1px solid #f4f3f7;border-top:none;border-radius:3px;z-index:1;-webkit-overflow-scrolling:touch;padding:6px}.exactmetrics-admin-page .multiselect__content{list-style:none;display:inline-block;padding:0;margin:0;min-width:100%;vertical-align:top}.exactmetrics-admin-page .multiselect--above .multiselect__content-wrapper{bottom:100%;border-bottom-left-radius:0;border-bottom-right-radius:0;border-top-left-radius:5px;border-top-right-radius:5px;border-bottom:none;border-top:1px solid #e8e8e8}.exactmetrics-admin-page .multiselect__content::webkit-scrollbar{display:none}.exactmetrics-admin-page .multiselect__element{display:block}.exactmetrics-admin-page .multiselect__option{display:block;padding:10px;line-height:16px;text-decoration:none;text-transform:none;vertical-align:middle;position:relative;cursor:pointer;white-space:nowrap;font-size:14px}.exactmetrics-admin-page .multiselect__option:after{top:0;right:0;position:absolute;line-height:40px;padding-right:12px;padding-left:20px;font-size:13px}.exactmetrics-admin-page .multiselect__option--highlight{background:#f4f3f7;outline:none;color:#210f59}.exactmetrics-admin-page .multiselect__option--highlight:after{content:attr(data-select);background:#f4f3f7;color:#210f59}.exactmetrics-admin-page .multiselect__option--selected{background:#f4f3f7;color:#210f59;font-weight:700}.exactmetrics-admin-page .multiselect__option--selected:after{content:attr(data-selected);color:silver}.exactmetrics-admin-page .multiselect__option--selected.multiselect__option--highlight{background:#6528f5;color:#fff}.exactmetrics-admin-page .multiselect__option--selected.multiselect__option--highlight:after{background:#6528f5;content:attr(data-deselect);color:#fff}.exactmetrics-admin-page .multiselect--disabled{background:#ededed;pointer-events:none}.exactmetrics-admin-page .multiselect--disabled .multiselect__current,.exactmetrics-admin-page .multiselect--disabled .multiselect__select{background:#ededed;color:#a6a6a6}.exactmetrics-admin-page .multiselect__option--disabled{background:#ededed!important;color:#a6a6a6!important;cursor:text;pointer-events:none}.exactmetrics-admin-page .multiselect__option--group{background:#ededed;color:#35495e}.exactmetrics-admin-page .multiselect__option--group.multiselect__option--highlight{background:#35495e;color:#fff}.exactmetrics-admin-page .multiselect__option--group.multiselect__option--highlight:after{background:#35495e}.exactmetrics-admin-page .multiselect__option--disabled.multiselect__option--highlight{background:#dedede}.exactmetrics-admin-page .multiselect__option--group-selected.multiselect__option--highlight{background:#6528f5;color:#fff}.exactmetrics-admin-page .multiselect__option--group-selected.multiselect__option--highlight:after{background:#6528f5;content:attr(data-deselect);color:#fff}.exactmetrics-admin-page .multiselect-enter-active,.exactmetrics-admin-page .multiselect-leave-active{-webkit-transition:all .15s ease;transition:all .15s ease}.exactmetrics-admin-page .multiselect-enter,.exactmetrics-admin-page .multiselect-leave-active{opacity:0}.exactmetrics-admin-page .multiselect__strong{margin-bottom:8px;line-height:20px;display:inline-block;vertical-align:top}.exactmetrics-admin-page [dir=rtl] .multiselect{text-align:right}.exactmetrics-admin-page [dir=rtl] .multiselect__select{right:auto;left:1px}.exactmetrics-admin-page [dir=rtl] .multiselect__tags{padding:8px 8px 0 40px}.exactmetrics-admin-page [dir=rtl] .multiselect__content{text-align:right}.exactmetrics-admin-page [dir=rtl] .multiselect__option:after{right:auto;left:0}.exactmetrics-admin-page [dir=rtl] .multiselect__clear{right:auto;left:12px}.exactmetrics-admin-page [dir=rtl] .multiselect__spinner{right:auto;left:1px}@-webkit-keyframes a{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(2turn);transform:rotate(2turn)}}@keyframes a{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(2turn);transform:rotate(2turn)}}*{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}body{font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.exactmetrics-onboarding-header{text-align:center;background-color:#210f59;padding:20px}.exactmetrics-header-navigation{display:none}.exactmetrics-onboarding-header h1{margin:0;line-height:1}img{max-width:100%}a{color:#6528f5}a:focus,a:hover{color:#37276a}.exactmetrics-onboarding-wizard-container{margin:0 auto;width:750px;position:relative}.exactmetrics-onboarding-wizard-steps{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:60px;position:absolute;right:100%;margin-right:138px;width:40px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.exactmetrics-onboarding-wizard-step-line{background:#e9e7ee;height:32px;width:4px;margin:14px 0;border-radius:10px}.exactmetrics-onboarding-wizard-step-line.exactmetrics-onboarding-wizard-line-active{background:#32a27a}.exactmetrics-onboarding-wizard-step{border-radius:50%;-ms-flex-negative:0;flex-shrink:0;height:24px;width:24px;background-color:#e9e7ee}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active,.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-completed{background-color:#32a27a;position:relative}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active{width:40px;height:40px;background-color:#210f59;text-align:center;line-height:40px;margin:-8px 0}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:first-child{margin-top:0}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:after{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#fff}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:first-child:after{content:"\f059"}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:nth-child(3):after{content:"\004a"}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:nth-child(5):after{content:"\f062"}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:nth-child(7):after{content:"\f06b"}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:nth-child(9):after{content:"\f06c"}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:nth-child(11){background-color:#32a27a}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:nth-child(11):after{content:"\f045"}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-completed:after{color:#fff;content:"\f045";display:block;font-family:Misettings;font-size:15px;font-weight:400;left:0;position:absolute;text-align:center;line-height:25px;width:100%}.exactmetrics-onboarding-wizard-content{position:relative;color:#210f59;font-size:15px;margin:60px 0}.exactmetrics-onboarding-wizard-content h2{color:#210f59;font-size:32px;font-weight:500;margin:0 0 12px}.exactmetrics-onboarding-wizard-content .subtitle{font-size:16px;line-height:1.75;margin-top:0;margin-bottom:20px}.exactmetrics-onboarding-wizard-content .exactmetrics-separator{border-top:1px solid #e9e7ee;clear:both;margin:24px 0}.exactmetrics-icon-info{display:inline-block;vertical-align:middle}.exactmetrics-icon-info svg{height:16px;width:16px}.exactmetrics-onboarding-wizard-form label{color:#210f59;font-size:17px;font-weight:500;line-height:1.5}.exactmetrics-description{margin-top:16px;line-height:1.75;margin-bottom:20px}.exactmetrics-form-input{margin:5px 0 0;position:relative}.exactmetrics-form-input input[type=radio]{opacity:0;position:absolute}.exactmetrics-settings-input-radio{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.exactmetrics-settings-input-radio input{opacity:0;position:absolute}.exactmetrics-settings-input-radio label{color:#37276a;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;border:2px solid #f4f3f7;height:200px;border-radius:10px;background-color:#f4f3f7;text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;cursor:pointer}.exactmetrics-settings-input-radio label:hover{background-color:#fff;border-color:#bcb7cd}.exactmetrics-settings-input-radio label:hover .exactmetrics-styled-radio{background-color:#f4f3f7}.exactmetrics-settings-input-radio label.exactmetrics-styled-radio-label-checked{border-color:#32a27a;background-color:#fff;color:#210f59}.exactmetrics-settings-input-radio label small{font-size:16px;color:#210f59;font-weight:400}.exactmetrics-settings-input-radio label>span{vertical-align:middle;font-weight:500;line-height:1;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.exactmetrics-settings-input-radio label>span:not(.exactmetrics-styled-radio):before{font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:31px;margin-bottom:24px;display:block}.exactmetrics-settings-input-radio label:last-child{margin-bottom:0}.exactmetrics-settings-input-radio label[for="exactmetrics-settings-radio-site_type[business]"]>span:not(.exactmetrics-styled-radio):before{content:"\f05a"}.exactmetrics-settings-input-radio label[for="exactmetrics-settings-radio-site_type[publisher]"]>span:not(.exactmetrics-styled-radio):before{content:"\f043"}.exactmetrics-settings-input-radio label[for="exactmetrics-settings-radio-site_type[ecommerce]"]>span:not(.exactmetrics-styled-radio):before{content:"\f033"}.exactmetrics-settings-input-radio .exactmetrics-styled-radio{width:40px;height:40px;position:relative;display:inline-block;border-radius:50%;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;background-color:#fff;margin-top:20px}.exactmetrics-settings-input-radio .exactmetrics-styled-radio.exactmetrics-styled-radio-checked{background:rgba(50,162,122,.1);text-align:center;line-height:40px}.exactmetrics-settings-input-radio .exactmetrics-styled-radio.exactmetrics-styled-radio-checked:after{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f045";color:#32a27a}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-radio>span{width:30%}.exactmetrics-form-input input:focus~.exactmetrics-styled-checkbox-status{-webkit-box-shadow:0 0 5px 2px #4d90fe;box-shadow:0 0 5px 2px #4d90fe}.exactmetrics-form-input .exactmetrics-form-input-label{display:inline-block;vertical-align:top}.exactmetrics-form-input .exactmetrics-form-input-label span{font-weight:400}.exactmetrics-onboarding-button,.request-filesystem-credentials-action-buttons .button,.request-filesystem-credentials-action-buttons input[type=submit]{border:none;border-radius:3px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:600;line-height:1.2;padding:12px 20px;text-decoration:none}.exactmetrics-onboarding-button.exactmetrics-onboarding-button-large{background-color:#32a27a;font-size:15px;padding:16px 23px}.exactmetrics-onboarding-button.exactmetrics-onboarding-button-large:after{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f06a";margin-left:13px}.exactmetrics-onboarding-button.exactmetrics-onboarding-button-large:focus,.exactmetrics-onboarding-button.exactmetrics-onboarding-button-large:hover{background-color:#19865f;color:#fff}.exactmetrics-onboarding-button.exactmetrics-onboarding-button-regular,.request-filesystem-credentials-action-buttons .button,.request-filesystem-credentials-action-buttons input[type=submit]{background-color:#6528f5;font-size:14px;font-weight:500;padding:10px 16px}.exactmetrics-onboarding-button.exactmetrics-onboarding-button-regular:focus,.exactmetrics-onboarding-button.exactmetrics-onboarding-button-regular:hover,.request-filesystem-credentials-action-buttons .button:focus,.request-filesystem-credentials-action-buttons .button:hover,.request-filesystem-credentials-action-buttons input[type=submit]:focus,.request-filesystem-credentials-action-buttons input[type=submit]:hover{background-color:#37276a;color:#fff}.exactmetrics-onboarding-button.exactmetrics-button-disabled,.exactmetrics-onboarding-button.exactmetrics-button-disabled:focus,.exactmetrics-onboarding-button.exactmetrics-button-disabled:hover{background-color:#e9e7ee;color:#9087ac;cursor:auto;outline:none}.exactmetrics-onboarding-button.exactmetrics-button-activated,.exactmetrics-onboarding-button.exactmetrics-button-activated:focus,.exactmetrics-onboarding-button.exactmetrics-button-activated:hover{background-color:#fff;border-color:#8aa4b8;color:#8aa4b8;cursor:auto;outline:none}.exactmetrics-onboarding-wizard-form input[type=email],.exactmetrics-onboarding-wizard-form input[type=text]{border:none;color:#9087ac;display:block;border-radius:3px;font-size:14px;padding:9px 15px;height:40px;width:100%;background:#f4f3f7}.exactmetrics-onboarding-wizard-form .exactmetrics-form-row-license input[type=text]{background:#fff;color:#210f59}.exactmetrics-onboarding-wizard-form input[type=email]:focus,.exactmetrics-onboarding-wizard-form input[type=text]:focus{border-color:#6528f5;outline:none}.exactmetrics-form-input.valid input[type=email],.exactmetrics-form-input.valid input[type=text]{border-color:#64bfa5}.exactmetrics-form-input.error input[type=email],.exactmetrics-form-input.error input[type=text]{border-color:#dc3232}.exactmetrics-form-input select{width:100%}.exactmetrics-form-input.error:after,.exactmetrics-form-input.valid:after{display:none;font-family:Misettings;font-size:20px;font-weight:400;position:absolute;right:12px;top:10px}.exactmetrics-form-input.valid:after{color:#32a27a;content:"\f045";display:block}.exactmetrics-form-input.error:after{color:#d83638;content:"\f046";display:block}.exactmetrics-error-message{color:#d83638;font-weight:500}::-webkit-input-placeholder{color:#9087ac}::-moz-placeholder{color:#9087ac}:-ms-input-placeholder{color:#9087ac}:-moz-placeholder{color:#9087ac}.exactmetrics-notice{color:#8aa4b8;font-size:16px;line-height:1.4;margin:30px 0}.exactmetrics-text-button{background:none;border:none;border-bottom:1px solid rgba(0,0,0,0);color:#9087ac;cursor:pointer;font-size:15px;padding:0}.exactmetrics-text-button i{margin-left:4px}.exactmetrics-text-button:hover{border-bottom-color:#9087ac}.exactmetrics-pull-right{float:right}.exactmetrics-text-button.exactmetrics-pull-right{margin-top:15px}.exactmetrics-form-inline .exactmetrics-form-input,.exactmetrics-form-inline .exactmetrics-form-label{float:left;width:80%}.exactmetrics-form-inline .exactmetrics-form-input{float:right;text-align:right;width:20%}.exactmetrics-form-inline:after{clear:both;content:"";display:table}.exactmetrics-form-inline p.exactmetrics-description{margin-bottom:0}.exactmetrics-form-inline .exactmetrics-separator{float:left;margin-top:27px;width:100%}.exactmetrics-settings-input-checkbox>label{color:#210f59;font-size:14px;margin:0;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap}.exactmetrics-settings-input-checkbox>label.exactmetrics-styled-checkbox-faux{cursor:default}.exactmetrics-settings-input-checkbox>label.exactmetrics-styled-checkbox-faux .exactmetrics-styled-checkbox{cursor:default;background-color:#e9e7ee}.exactmetrics-settings-input-checkbox>label.exactmetrics-styled-checkbox-faux .exactmetrics-styled-checkbox.exactmetrics-styled-checkbox-checked{background-color:#e9e7ee}.exactmetrics-settings-input-checkbox>label.exactmetrics-styled-checkbox-faux .exactmetrics-styled-checkbox.exactmetrics-styled-checkbox-checked:after{opacity:.5}.exactmetrics-settings-input-checkbox>label input{display:none}.exactmetrics-settings-input-checkbox>label>span{vertical-align:middle}.exactmetrics-settings-input-checkbox>label:last-child{margin-bottom:0}.exactmetrics-settings-input-checkbox .exactmetrics-styled-checkbox{width:40px;height:23px;position:relative;display:inline-block;border-radius:20px;margin-right:15px;background-color:#e9e7ee;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.exactmetrics-settings-input-checkbox .exactmetrics-styled-checkbox.exactmetrics-styled-checkbox-checked:after{right:3px;left:auto;background:#6528f5}.exactmetrics-settings-input-checkbox .exactmetrics-styled-checkbox:after{left:3px;top:3px;bottom:3px;width:17px;position:absolute;content:"";background:#bcb7cd;display:block;border-radius:50%}.exactmetrics-settings-input-checkbox .exactmetrics-checkbox-label{display:block;font-weight:500;font-size:17px;color:#210f59;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;width:100%;margin-bottom:16px}.exactmetrics-settings-input-checkbox .exactmetrics-checkbox-description{font-weight:400;color:#6528f5;display:inline-block;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;font-size:15px;line-height:1.75}.exactmetrics-settings-input-checkbox .exactmetrics-info{margin-left:12px;display:inline-block;-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-separator,.exactmetrics-onboarding-step-recommended-settings .exactmetrics-onboarding-wizard-form .exactmetrics-separator{display:block}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-grey-area>.exactmetrics-separator:first-child{display:none}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-grey-area .exactmetrics-text-right{margin-top:44px}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-grey-area .exactmetrics-text-button{color:#6528f5}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-grey-area .exactmetrics-text-button:focus,.exactmetrics-onboarding-step-recommended-addons .exactmetrics-grey-area .exactmetrics-text-button:hover{color:#37276a}.exactmetrics-text-right{text-align:right}.exactmetrics-addon-icon,.exactmetrics-addon-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-addon-icon{-ms-flex-negative:0;flex-shrink:0;height:32px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;width:32px;border-radius:50%;background:rgba(33,15,89,.1)}.exactmetrics-addon-icon img{display:block;vertical-align:middle}.exactmetrics-addon-text{padding:0 10px 0 20px;width:100%}.exactmetrics-addon-text label{line-height:1;display:block;margin-bottom:16px;font-size:17px}.exactmetrics-addon-text p{margin:6px 0 4px;display:inline;line-height:1.75}.exactmetrics-addon-text a{color:#9087ac;margin-left:5px}.exactmetrics-green-link{color:#5cc0a5;font-size:16px}.exactmetrics-addon-button{-ms-flex-negative:0;flex-shrink:0;padding-top:38px;-ms-flex-item-align:start;align-self:start}.exactmetrics-addon-button .exactmetrics-onboarding-button{text-align:center;line-height:1.2;padding:12px 24px 11px}.exactmetrics-wpforms-row .exactmetrics-addon-icon{height:158px;width:145px;background:#fff;border-radius:5px}.exactmetrics-wpforms-row .exactmetrics-addon-text{padding-left:40px}.exactmetrics-wpforms-row .exactmetrics-addon-text label{font-size:18px;font-weight:900}.exactmetrics-wpforms-row .exactmetrics-addon-text p{font-size:16px;line-height:1.4;margin-bottom:0}[class*=monstericon-]:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.monstericon-info-circle-regular:before{color:#9087ac;font-size:15px}.exactmetrics-loader-animated{animation:exactmetrics-rotate-loading 1.5s linear 0s infinite normal;-webkit-animation:exactmetrics-rotate-loading 1.5s linear 0s infinite normal;background-color:rgba(0,0,0,0)!important;border-radius:100%;border-color:rgba(0,0,0,0) #4b9ce4;border-style:solid;border-width:.25em;-webkit-box-sizing:border-box;box-sizing:border-box;color:rgba(0,0,0,0);cursor:default;height:2em;left:0;opacity:0;padding:0;position:absolute;top:0;width:2em;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}@-webkit-keyframes exactmetrics-rotate-loading{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes exactmetrics-rotate-loading{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.exactmetrics-settings-input-select label>span,.settings-input-text label>span{font-weight:400;color:#210f59;display:inline-block;margin-top:7px;font-size:15px}.exactmetrics-settings-input-select .exactmetrics-reset-default,.settings-input-text .exactmetrics-reset-default{font-size:14px;margin-top:7px;float:right;font-weight:400}.exactmetrics-settings-input-select label>span.exactmetrics-dark,.settings-input-text label>span.exactmetrics-dark{display:block;font-weight:500;font-size:16px;color:#393f4c}.exactmetrics-settings-input-select .exactmetrics-info,.settings-input-text .exactmetrics-info{margin-left:4px}.exactmetrics-settings-input-select .settings-input-text-input,.settings-input-text .settings-input-text-input{margin-top:18px}.exactmetrics-settings-input-authenticate .exactmetrics-dark{display:block;font-weight:500;font-size:17px;color:#210f59;margin-bottom:16px}.exactmetrics-settings-input-authenticate p{font-weight:400;color:#210f59;display:inline-block;margin-top:0;font-size:15px;line-height:1.75}.exactmetrics-settings-input-select-input{margin-top:18px}.exactmetrics-onboarding-wizard-form .field-title{display:block;margin:15px 0}.exactmetrics-onboarding-wizard-form fieldset{border:none;padding:0;margin:0;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-onboarding-wizard-form .ftp-password{margin-bottom:15px}.exactmetrics-onboarding-wizard-form ol{padding-left:20px}.exactmetrics-onboarding-wizard-form ol li{color:#393f4b;line-height:1.5;margin-bottom:30px;padding-left:15px}.exactmetrics-hidden{display:none}.exactmetrics-small{font-size:12px}.exactmetrics-auth-info .exactmetrics-dark{color:#210f59;font-size:16px;font-weight:500}.exactmetrics-auth-info p{margin:0;color:#210f59}.exactmetrics-onboarding-wizard-form .exactmetrics-separator{display:none}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater .exactmetrics-error{margin-top:0;margin-bottom:18px}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-labels label{color:#210f59;font-weight:700;margin-bottom:6px;font-size:17px}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:18px}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row>span{width:100%;margin-right:18px}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row button{padding:0;border:none;background:rgba(33,15,89,.1);color:#210f59;width:32px;height:32px;border-radius:50%;cursor:pointer;display:block;position:relative;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row button i{position:absolute;left:10px;top:7px;font-size:15px}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row button i:before{content:"\f065"}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row input[type=number]{width:30%;margin-right:15px}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row select{width:70%;height:40px;margin-right:15px;border:1px solid #9087ac;border-radius:3px;margin-top:0;margin-bottom:0;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row.exactmetrics-disabled-row{opacity:.5}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row input[type=text]{border-color:rgba(0,0,0,0);background-color:#fff;color:#210f59}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row .exactmetrics-input-error input{border-color:#e43462}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row .exactmetrics-input-valid{position:relative}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row .exactmetrics-input-valid:after{position:absolute;right:8px;height:26px;width:26px;background:rgba(50,162,122,.1);top:7px;content:"\f015";display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#32a27a;border-radius:50%;text-align:center;line-height:26px}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row .exactmetrics-input-valid input{border-color:#32a27a}.exactmetrics-onboarding-wizard-form .exactmetrics-error{margin:18px 0 0;color:#d83638;cursor:default}.exactmetrics-onboarding-wizard-form .exactmetrics-error i{margin-right:10px}.exactmetrics-onboarding-wizard-form h3{font-size:24px;line-height:1.4;color:#210f59;margin-bottom:16px}.exactmetrics-onboarding-wizard-form .exactmetrics-flex-row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap}.exactmetrics-onboarding-wizard-form .exactmetrics-flex-row p{line-height:1.75}.exactmetrics-onboarding-wizard-form .exactmetrics-flex-row .exactmetrics-flex-row-half{width:60%}.exactmetrics-onboarding-wizard-form .exactmetrics-flex-row .exactmetrics-flex-row-half:first-child{width:40%}p>label{display:block}p .exactmetrics-info{margin-left:4px}.exactmetrics-sublabel{font-weight:400;color:#210f59;display:inline-block;margin-top:8px;font-size:15px}.exactmetrics-settings-input-repeater-labels label{color:#fff;font-weight:700;margin-bottom:6px;display:block;width:calc(50% - 8px)}.exactmetrics-settings-input-repeater-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:18px}.exactmetrics-settings-input-repeater-row:first-child{margin-bottom:14px}.exactmetrics-settings-input-repeater-row>input[type=text]{width:50%}.exactmetrics-settings-input-repeater-row input,.exactmetrics-settings-input-repeater-row select{margin-right:18px}.exactmetrics-settings-input-repeater-row button{padding:0;border:none;background:rgba(0,0,0,0);color:#dc3232;cursor:pointer;font-size:14px}.exactmetrics-settings-input-repeater-row input[type=number]{width:30%}.exactmetrics-settings-input-repeater-row select{width:70%}.exactmetrics-settings-input-repeater-row.exactmetrics-disabled-row{opacity:.5}.exactmetrics-button{background:#6528f5;border:solid #6528f5;border-width:1px 1px 2px;border-radius:3px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none}.exactmetrics-button:focus,.exactmetrics-button:hover{background-color:#37276a;border-color:#37276a}.exactmetrics-logo{display:inline-block;width:165px;max-width:100%}.exactmetrics-logo .exactmetrics-bg-img{padding-top:23%}.exactmetrics-logo .exactmetrics-bg-img:after{background-position:50%;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAUUAAABKCAMAAAAbi7YOAAAAn1BMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8Kd3m4AAAANHRSTlMAQN8ggL9g758QMLB5cwNv+5BQz14J9tSPF/HkxgdXSA0B7aqbpCkk2oRouDvLloobEug208uV8wAACFtJREFUeNrs1+1yojAUBuATIEBABVHU+t1aa+u222597//a1hgJKFaFdWY70zw/nCmaCX3nnHxQRX/ePyFZ63sy6km7I2Q6M5NjLa9jFC1sMqp6WuBI71GQUcXk3UPZaN0i41rz7ie0uINcn5FRY0EcBzTrI7c0y+M1Vo8xtP5U9nCrOYIWN/6QcV7qDKENnTkpH7970J7dCRlfm3RHhQz9YtGtFjG0N7M8fm0zRu5XQAfukzdosf9Exil3y2LXTstdO18/HHa7cWze7BUjmpwOuh1Ds1xzKTySWMj5Nn0l4MjxDRm5YIwcD+iMVvIMrbdYkaGIZQxtlKQXe/8TmmeWx71W0T1ddvfYg8ZTMurZcGihibGu+2kfGXMEr++uMYKyIOOsdMWm04R9TM4d00f000ymDed6v/sxpOH4ZdOishdIHv0w818x6onDgEqaPzPFF1TysFizJzuYRb96QK/dMinu9CtlGH1Qxn5/AMZ39VIM+KGQbsnnnNERm3MuqCqbo2PTZc8VWng5p6IVB55FrRQZDll0Sx7A6YgDIKCqfAA+XdbE1abH/dsaAH3xHVJs+1sJKeLUkdUC4J4pOgBUFgLgdNk8jHGV3pTKHGDxHVK0sOWQEqD8v7vYiiqnGHjwEroGa1w2Vu9YFgLsu6WYQGLlH7Qrp0g2E3Qr9gjjlE5JH9Bp1U0xdDPJLVOMIPmlUkRYJcXbawCvOrdZ4yV61cl1Ec/qpuiQdssU24D82z783gM6/zXF9A18H9v9bBwDiPkTKXMLi2+WYgg4HGgflmIEeP81xU2MLinTHpTPjT62D9NbpMjy1k5cKVCPnZDzASPhSoIUEfkdi+935e1zD1vh/gcciBjgCcpwwJc55U/YIOQ87NokCcdpA3Acp0vEdp+unNWW3zjieIx+h5DLVyhKm4/+VziGK71AZvqpDoTdIkXbg8SyRcwS8k1DKCErbBnC8aBY8gEKbHVcZGQBTnE2WxSa3ObYc1QhZjiRIz99SBHZ+aBAj/F3uXY9SAen8rtnnPM2Kd8X1/uWBpr/uruwfGu1hLB0HraFjM5YPdWccooAAnJVMepS3IWb7Gf3oPmnUnSxwwopRshZdvGU0SFtibNCvf7klqQMMaiZoubvdwVpMNBFovIsYjpErXucYqBaVxdjFkUHcPOqb7uMRZacj+RqIUOSC4pK0UIncqNQ5Cm6gEyXMZcDHUHEd41gOwCS6y6COrEUBeP9hjPC421SLIZmqTP9qRR9FHkRcc693Rh1VWZq/kgXo68mCIF2VgpWkN8LWb676EnDfRnbeVPI0HZc2cMiG+gXt7H+VSm2/rZzts2JwkAAzgsQgneCYrVYq6117LVaXzr7/3/bDZc0GxLlkPFjni9VEHQel91NLCkAiY3Fw30skgzdcIx8ESV5jBa5fvcxTRhAzL0anaiLTAor63EV6qnJknbd8S0yTpoWU3OMs4NwSrnVEbayI4oFIBttdgrHO1nE5DOxEiW3wpLWMtBYlHudji4P6q/Q0RLrk5f4HD+I8C2mriymtyGizgUuQ/wF2genbj4B0c32CeCzp0XBNCMMDW0VzWX2HqofsCv9Il5jKhgnSgRVMaoOKwEibhAA3LNIHYtZY0IIQzaixOF9mVxjY84hv/Ai1xf0CiC7W9dNwTKX2qfKtUUcEfsWje8IgxJDL9Oi/JLlWXQvXOr25JjE4wnpyPvaNDPbEhRmynMDT693s6jbw0e0yIgi6WyRqaqpgpFy9RSNdLDIWiwiEcMP24kY/gyJgo9YAdNZ/oLN8obcy2KEeVGVA2z60obFuMWi9qKDMUcpumGsa1Jqk7kWY7RoN08eNIrFDQPZiT3Ded6vsmecH4Viey+LvFmjc/NV48gGddZQ7lrEkNPBWCdHfFFiOh6Hdovy6hQvH6kvugtyBk8VuUQ2hzfS12JKDdLpF2OUmtaXlN5Ffw5lk38DQTZxLKr9jdhmVrqIsJFUcN7BouqxG64y9ZGV4Iw4bDe7+AJMNTse5xnMT30tuiM3PWhRrUyOFRuEsFMY0xuZmoLgjsWx5U0KnR3s7ltaTYosIR53sEit9kdO1LlyJ4EgewFX2TwTl+cY4Be5i0UzCfETkhl24Qj1jx2hRceCWyoibBxB/ZZOS22p3aJOy6z2LSmr32iMjayXMoeD1gGMq/F9oXrvu1jkZhKCmjmdHBpg44eU0rE4asxpcy7tWUZmtVBxKfCoNos6aGsYE1aRG6SpuNAwnBm0Mds3lI+/Ad4e7mUxxoIzMmUlF6CJ7KLCMBKlkxexXfSgaMoehneySOQIj0kacyIpcXiYQTuL8VnPeVfLGcA0Ij1/1WcOPGE1pc5WrKZWxlP2L24yrjcpkliF08/zuN6phAyYKjk+9Sm4fpjqIbq09un2nrGBe4g+Rs15RFI/Zdh1+xLaWe+izyQ/LuZ4J2Uni/3JKCc+Ejf3Pe3tJ+A0k16h9hk+igK6UZS/H8J/O13m9URbWR5iNi/mbPCxQofIy5sKWBJoZygrXskhucTqS5chEugLHYDmQAL9qA5z0EzDjZX9kPkaDL9JoHZCLd471CQ6A+Qj3HKurCwZGIpN9Z9Xbwd2A7QnAc3DowCDyB/IdV5GUzB8h7UPGlRpAQa2fL2mO7Ecro/Bocu+w929jYQ4CGvCXGL5B5DDyWvA7YQIi3D33xXOx7W9HJYkNvJoJ8SwVlYL2RsgX2MrED+tQC0+TiTQwnBVWrbMajD7EpBBGKzctHYliEPlrUi0CneVd6H6mFvpMa8iy+F3WP6lM3xgiVuHhNgXWoJHsQvrvtzI8+81NJmtQndzO+fDHJCnKBSVfmxNepweKxLoy+qrqB3uMhIw/AWFbdSoUycRogAAAABJRU5ErkJggg==)}.settings-input-license p{color:#210f59}.settings-input-license p a{color:#6528f5}.settings-input-license label{font-size:15px;color:#210f59;font-weight:400;margin-bottom:16px;margin-top:16px;display:block}.exactmetrics-bg-img.exactmetrics-smile{display:inline-block;width:16px;height:16px;padding:0;vertical-align:middle}.exactmetrics-bg-img.exactmetrics-smile:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAYFBMVEUAAAD/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE1mRQDuvkTSpDZ7VwqgeB2bdBqvhiV+Wgx2Uwj4xkn3xUnfsD3KnTKziSeLZhOFYRBnRgD04bLqAAAADnRSTlMALPrz8dvSp6SXYxMNONmrFGwAAADrSURBVDjLhZPploMgDIVjqQjY3hS12r3v/5bDjFGH0gPfH+4JS0IW2mid0QpQ2riWUqpmh5VdU1HMweIDe4iu10io/z1y3OML++N6X/aTE5X4l/dT6jkOCyHF/jmAcAIS+eukET1wJ/ZTx4MYG6JW8uOZuZ9lH6SXjLXkMHMO1m6WXZBnMTsy+QOGNHIuoEkhFyQUxX9LJaEAKWRRpJFFk0EWQw7C/YaV2x2CW1ONx3vwVwSufng/sKR6K9ZlZOZpHKewjJelWFG5nyw8t3LHDeP71zS9eo8FW2y5UtMW2748OOXRKw9vcfx/ACZnLYWsWc2gAAAAAElFTkSuQmCC)}.exactmetrics-onboarding-license-lite p a{font-weight:700}.exactmetrics-onboarding-license-lite p .exactmetrics-highlighted-text{font-weight:700;color:#32a27a}.exactmetrics-onboarding-license-lite .exactmetrics-settings-license-lite{display:none}.exactmetrics-form-row-license,.exactmetrics-grey-area,.exactmetrics-onboarding-license-lite,.exactmetrics-settings-input-repeater,.exactmetrics-wpforms-row{padding:40px;background:#f4f3f7;border-radius:10px;margin-bottom:24px}.exactmetrics-form-row-license .exactmetrics-onboarding-wizard-form input[type=text],.exactmetrics-grey-area .exactmetrics-onboarding-wizard-form input[type=text],.exactmetrics-onboarding-license-lite .exactmetrics-onboarding-wizard-form input[type=text],.exactmetrics-settings-input-repeater .exactmetrics-onboarding-wizard-form input[type=text],.exactmetrics-wpforms-row .exactmetrics-onboarding-wizard-form input[type=text]{background-color:#fff;color:#210f59}@media (max-width:767px){.exactmetrics-onboarding-wizard-container{max-width:100%;width:auto;margin:0 10px}.exactmetrics-onboarding-wizard-content{padding-left:20px;padding-right:20px}.exactmetrics-addon-row{-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics-addon-text{width:calc(100% - 80px);padding-right:0}.exactmetrics-addon-button{margin-top:20px}.exactmetrics-addon-icon{-ms-flex-item-align:start;align-self:flex-start}.exactmetrics-wpforms-row .exactmetrics-addon-text{width:calc(100% - 100px)}.exactmetrics-text-button.exactmetrics-pull-right{float:none}.exactmetrics-form-buttons{text-align:center}}.exactmetrics-form-buttons{margin-top:43px}.exactmetrics-form-buttons .exactmetrics-onboarding-button+.exactmetrics-text-button{float:right;margin-top:16px;color:#6528f5}.exactmetrics-form-buttons .exactmetrics-onboarding-button+.exactmetrics-text-button i{margin-left:15px}.exactmetrics-form-buttons .exactmetrics-onboarding-button+.exactmetrics-text-button:focus,.exactmetrics-form-buttons .exactmetrics-onboarding-button+.exactmetrics-text-button:hover{color:#37276a}.exactmetrics-addon-icon>div{display:inline-block;width:32px;height:32px;background:none}.exactmetrics-addon-icon>div:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;line-height:32px}.exactmetrics-addon-icon .exactmetrics-addon-icon-ads:before{content:"\004a"}.exactmetrics-addon-icon .exactmetrics-addon-icon-amp:before{content:"\f044"}.exactmetrics-addon-icon .exactmetrics-addon-icon-dimensions:before{content:"\f060"}.exactmetrics-addon-icon .exactmetrics-addon-icon-ecommerce:before{content:"\f033"}.exactmetrics-addon-icon .exactmetrics-addon-icon-eu-compliance:before{content:"\f067"}.exactmetrics-addon-icon .exactmetrics-addon-icon-facebook-instant-articles:before{content:"\f043"}.exactmetrics-addon-icon .exactmetrics-addon-icon-forms:before{content:"\f048"}.exactmetrics-addon-icon .exactmetrics-addon-icon-google-optimize:before{content:"\f053"}.exactmetrics-addon-icon .exactmetrics-addon-icon-page-insights:before{content:"\f041"}.exactmetrics-addon-icon .exactmetrics-addon-icon-performance:before{content:"\f058"}.exactmetrics-addon-icon .exactmetrics-addon-icon-media:before{content:"\f072"}.exactmetrics-addon-icon .exactmetrics-addon-wpforms{width:90px;height:79px;background-image:url(../img/wpforms.png);background-size:contain}.exactmetrics-step-current{font-size:13px;color:#9087ac;line-height:1.75;margin-bottom:8px}.exactmetrics-button-go-back{font-size:15px;color:#9087ac;line-height:1.75;margin-top:40px;padding:0;background:rgba(0,0,0,0);border:none;cursor:pointer}.exactmetrics-button-go-back:focus,.exactmetrics-button-go-back:hover{text-decoration:underline}.exactmetrics-button-go-back .monstericon-long-arrow-right-light{margin-right:10px}.exactmetrics-button-go-back .monstericon-long-arrow-right-light:before{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.exactmetrics-auth-actions{margin-top:40px}.monstericon-arrow-right:before{content:"\f06a"}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-em-forms-upsell-screen{margin-top:0;padding-top:68%;max-width:115%}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-em-forms-upsell-screen:after{background-position:50%;background-image:url(../img/forms-screen.png)}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-em-ecommerce-upsell-screen{top:0;width:100%;height:auto;padding-top:64%;max-width:115%;left:33px}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-em-ecommerce-upsell-screen:after{background-position:50%;background-image:url(../img/ecommerce-screen.png)}.exactmetrics-and-more{font-weight:700;margin:0 0 36px;display:inline-block}.exactmetrics-lite-addons-list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.exactmetrics-lite-addons-list .exactmetrics-lite-addon{width:calc(50% - 35px);display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:40px}.exactmetrics-lite-addons-list .exactmetrics-lite-addon i{font-size:23px;min-width:25px;-ms-flex-negative:0;flex-shrink:0;margin-top:5px}.exactmetrics-lite-addons-list .exactmetrics-lite-addon p{margin:0 0 0 25px;line-height:1.75}.exactmetrics-wizard-notice{padding:32px 48px 17px 136px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:0 20px 30px rgba(48,44,62,.05);box-shadow:0 20px 30px rgba(48,44,62,.05);border-radius:10px;background:#fff;border:1px solid #d6e2ed;border-bottom:3px solid #4d3f7a;margin-bottom:24px;position:relative}.exactmetrics-wizard-notice p{line-height:1.75;margin-top:0}.exactmetrics-wizard-notice h3{margin-top:0;font-size:17px;margin-bottom:15px}.exactmetrics-wizard-notice:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:48px;position:absolute;top:34px;left:42px;content:"\f06e"}.exactmetrics-wizard-notice:first-child:before{content:"\f04f";color:#32a27a}.exactmetrics-wizard-notice.exactmetrics-newsletter-item:before{content:"\f06f"}.exactmetrics-info-notices .exactmetrics-wizard-notice{padding:32px 30px 17px}.exactmetrics-info-notices .exactmetrics-wizard-notice.exactmetrics-newsletter-item:before,.exactmetrics-info-notices .exactmetrics-wizard-notice:before,.exactmetrics-info-notices .exactmetrics-wizard-notice:first-child:before{content:""}.exactmetrics-onboarding .swal2-container.exactmetrics-swal-loading{top:82px;margin-left:0}.exactmetrics-onboarding .exactmetrics-admin-page .exactmetrics-wide-purple{margin-bottom:0}.exactmetrics-bg-img.exactmetrics-icon-warning{width:48px;padding-top:48px}.exactmetrics-bg-img.exactmetrics-icon-warning:after{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f01e";font-size:22px;text-align:center;line-height:48px;color:#210f59;background:#f4f3f7;border-radius:5px}.exactmetrics-settings-network-notice{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-bottom:20px;border-bottom:1px solid #d6e2ed;margin-bottom:15px;color:#777}.exactmetrics-settings-network-notice .exactmetrics-bg-img{margin-right:25px}.exactmetrics-settings-network-notice .exactmetrics-network-message{width:100%}.exactmetrics-license-type-text{color:#210f59;font-weight:500;margin-bottom:30px}.exactmetrics-license-type-text .exactmetrics-info{margin-left:10px}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round{display:block;position:relative;padding-left:35px;margin-bottom:12px;cursor:pointer;font-size:22px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round .loader{border:2px solid #f3f3f3;border-top-color:#3498db;border-radius:50%;width:25px;height:25px;-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite;display:none}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input{position:absolute;opacity:0;cursor:pointer;height:0;width:0}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round .checkmark{position:absolute;top:0;left:0;height:25px;width:25px;background-color:#fff;border:1px solid #d2dde9;border-radius:50%}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round .checkmark:after{left:9px;top:4px;width:3px;height:10px;border:solid #fff;border-width:0 3px 3px 0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round:hover input~.checkmark{background-color:#fff}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.faux:checked~.checkmark{background-color:#46bf40;opacity:.5}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.faux:checked~.checkmark:after{display:block}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.addon-checkbox~.error.checkmark{background-color:#c00}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.addon-checkbox~.error.checkmark:after,.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.addon-checkbox~.error.checkmark:before{position:absolute;left:10px;content:" ";height:10px;width:0;background-color:#fff;display:block}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.addon-checkbox~.error.checkmark:after{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.addon-checkbox~.checkmark{background-color:#338eef}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.addon-checkbox~.checkmark:after{display:block}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.addon-checkbox~.remove.checkmark{background-color:#fff}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.addon-checkbox~.remove.checkmark:after{display:block}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round .checkmark:after{content:"";position:absolute;display:none}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-flex{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;height:60px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-features .exactmetrics-feat-content p{margin:0;padding:0}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-features .exactmetrics-feat-content p:first-child{font-size:16px;font-weight:700;margin-bottom:4px;color:#23262e}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-features .exactmetrics-feat-content p:nth-child(2){font-size:14px;color:#586074;max-width:95%;line-height:1.4}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-skip-addons{color:#586074;margin-left:30px}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-skip-addons svg{margin-left:5px}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-wizard-form .exactmetrics-flex{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;height:10px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-wizard-form .exactmetrics-tracking-info-text{color:#23262e;font-size:16px}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-wizard-form .exactmetrics-tracking-info-icon .exactmetrics-success{color:#46bf40;font-size:12px;display:inline-block}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-wizard-form .exactmetrics-tracking-info-icon .exactmetrics-success-icon{display:inline-block;margin-left:10px}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-wizard-form .exactmetrics-tracking-info-icon .exactmetrics-success-icon svg{position:relative;top:3px}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-wizard-form .exactmetrics-form-buttons{margin-top:50px}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-upsell{background-color:#f5fafe;padding:32px;margin-top:47px;color:#23262e}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-upsell h2{font-size:18px;font-weight:800}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-upsell p,.exactmetrics-onboarding-step-success .exactmetrics-onboarding-upsell ul{font-size:16px}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-upsell ul{list-style-type:none;margin:24px 0 32px0;padding:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-upsell ul li{width:50%;list-style-type:none;margin-bottom:15px}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-upsell ul li span.exactmetrics-icon{margin-right:5px}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-upsell .exactmetrics-upsell-upgrade-button{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics-onboarding-step-success .exactmetrics-upsell-bottom-text{background-color:#ffecad;padding:12px}.exactmetrics-onboarding-step-success .exactmetrics-upsell-bottom-text p{margin:0;padding:0;text-align:center;color:#23262e}.exactmetrics-settings-license-lite{margin-top:32px}.exactmetrics-settings-license-lite label{color:#393e4b;font-size:16px;margin-bottom:16px;display:block}.exactmetrics-settings-license-lite .exactmetrics-inline-field{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-settings-license-lite .exactmetrics-inline-field input{margin-right:15px;width:448px;height:49px}.exactmetrics-settings-license-lite .exactmetrics-inline-field .exactmetrics-button{width:197px;height:48px;font-size:16px}.exactmetrics-settings-license-lite .exactmetrics-inline-field .exactmetrics-button.disabled{background-color:#e2e4e9;color:rgba(57,62,75,.5);border-color:#e2e4e9}.exactmetrics-exit-link{color:#586074;display:block;text-align:center;margin-top:30px}.exactmetrics-features-awaiting-install{position:absolute;bottom:0;top:100%;margin-top:22px;padding-bottom:100px;line-height:1.4;padding-right:50px}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}button[data-v-283d1087]{margin-top:3px}@font-face{font-family:Lato;src:url(../fonts/lato-regular-webfont.woff) format("woff"),url(../fonts/lato-regular-webfont.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-bold-webfont.woff) format("woff"),url(../fonts/lato-bold-webfont.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:text-security-disc;src:url(data:font/woff2;base64,d09GMgABAAAAAAjoAAsAAAAAMGgAAAidAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFQGVgDWYgpQdQE2AiQDCAsGAAQgBYUOBy4bvi8lYxtWw7BxAPB87x5FmeAMlf3/96RzDN74RcXUcjTKmrJ3T2VDSShiPhfiIJxxS7DiLkHFfQV33CM4427mAred74pWur/J3dyVsKy7coREA8fzvPvpfUk+tB3R8YTCzE0SCLepejmJ2u1yqp+kC7W4Rc/tDTs3GpNJ8ttRPOSTPhsXlwbi4kVYWQmAcXmlrqYHMMsBwP/zHMz7fkF1gijOKuFQIxjwlGa2lkARhYaBxFHT54IOgBMQADi3LipIMAA3geO41EUkBTCO2gkxnOwnKYBx1E6p5WS+QUCMq50rNch6MwUCAAiAcdgttYVSIfPJ5kn6ApRFQ6I88BxLvvIC/maHUHS3TIoKiwLbbM8nEFWgE1oDz3woSxpagWbBXcQWhKtPeIlg6tK+7vX57QOszwU3sGUJrA7h2Mx1IWCNr9BKxsYo+pzS/OCO0OG9mwBkx337+lcuSxRdBcc+fJxlcAjK/zCfdgtBzuxQcTqfY4Yn6EB/Az3JS/RMu5f6B8wrn55S0IxdlLn+4Yb/ctIT+ocWYPcGAOvxSjEjpSiVMqSgFWVjzpCCXjAIRirTABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REdFDlkZEh2jE3SKztA5ukCX6Apdoxt0i+7QPXpAj+gJPaMX9Ire0Dv6QJ/oC/qKvqHv6Af6iX6h3+gP+ov+of+I+ECMxETMiDmxIJbEilgTG2JL7Ig9cSCOxIk4ExfiStyIO/EgnsSLeBMf4kv8iD/taQANoiE0jEbQKBpD42gCTaIpNI1m0CyaQ/NoAS2iJbSMVtAqWkPraANtoi20jXbQLtpD++gAHaIjdIxO0Ck6Q+foAl2iK3SNbtAtukP36AE9oif0jF7QK3pD79B79AF9RJ/QZ/QFfUXf0Hf0A/1Ev9Bv9Af9Rf/Qf9DQABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REfoGJ2gU3SGztEFukRX6BrdoFt0h+7RA3pET+gZvaBX9Aa9Re/Qe/QBfUSf0Gf0BX1F39B39AP9RL/Qb/QH/UX/0P8l9vq9gXwDIUCliyAhRAgTIoQoIUaIExKEJCFFSBMyhCwhR8gTCoQioUQoEyqEKqFGqBMahCahRWgTOoQuoUfoEwaEIWFEGBMmhClhRpgTFoQlYUVYEzaELWFH2BMOhGPCCeGUcEY4J1wQLglXhGvCDeGWcEe4JzwQHglPhGfCC+GV8EZ4J3wQPglfhG/CD+GX8Ef4p9sdgoQQIUyIEKKEGCFOSBCShBQhTcgQsoQcIU8oEIqEEqFMqBCqhBqhTmgkNBGaCS2EVkIboZ3QQegkdBG6CT2EXkIfoZ8wQBgkDBGGCSOEUcIYYZwwQZgkTBGmCTOEWcIcYZ6wQFgkLBGWCSuEVcIaYZ2wQdgkbBG2CTuEXcIeYZ9wQDgkHBGOCSeEU8IZ4ZxwQbgkXBGuCTeEW8Id4Z7wQHgkPBGeCS+EV8Ib4Z3wQfgkfBG+CT+EX8If4Z8AZpAQIoQJEUKUECPECQlCkpAipAkZQpaQI+QJBUKRUCKUCRVClVAj1AkNQpPQIrQJHUKX0CP0CQPCkDAijAkTwpQwI8wJC8KSsCKsCRvClrAj7AkHwpFwIpwJF8IV4ZpwQ7gl3BHuCQ+ER8IT4ZnwQnglvBHeCR+ET8IX4ZvwQ/gl/BH+lzv+AmMkTYAmSBOiCdNEaKI0MZo4TYImSZOiSdNkaLI0OZo8TYGmSFOiKdNUaKo0NZo6TYOmSdOiadN0aLo0PZo+zYBmSDOiGdNMaKY0M5o5zYJmSbOiWdNsaLY0O5o9zYHmmOaE5pTmjOac5oLmkuaK5prmhuaW5o7mnuaB5pHmieaZ5oXmleaN5p3mg+aT5ovmm+aH5pfmj2ZRAqCCoEKgwqAioKKgYqDioBKgkqBSoNKgMqCyoHKg8qAKoIqgSqDKoCqgqqBqoOqgGkE1gWoG1QKqFVQbqHZQHaA6QXWB6gbVA6oXVB+oflADoAZBDYH+uxaEWDBiIYiFIhaGWDhiEYhFIhaFWDRiMYjFIhaHWDxiCYglIpaEWDJiKYilIpaGWDpiGYhlIpaFWDZiOYjlIpaHWD5iBYgVIlaEWDFiJYiVIlaGWDliFYhVIlaFWDViNYjVIlaHWD1iDYg1ItaEWDNiLYi1ItaGWDtiHYh1ItaFWDdiPYj1ItaHWD9iA4gNIjaE2DBiI4iNIjaG2DhiE4hNIjaF2DRiM4jNIjaH2DxiC4gtIraE2DJiK4itIraG2DpiG4htIraF2DZiO4jtIraH2D5iB4gdInaE2DFiJ4idInaG2DliF4hdInaF2DViN4jdInaH2D1iD4g9IvaE2DNiL4i9IvaG2DvE3iP2AbGPiH1C7DNiXxD7itg3xL4j9gOxn4j9Quw3Yn8Q+4vYP8T+M6cIDBz9EXfeUHR1JyygPL/++I3R1cRvdDr+E12Jfh3Q0EN/fHn2mXptpJxUkIqu/Cs2egM33OjSLcT33I82+B9nP37X/c0W52623s45CYCo03QIBCVrAFAycnSYSqvO4YJt/NP73YqA/giNZhJ6sBbmql+0SQZaxNOZudJbc2nqxNvpM+veq7Sz2LUgFEu+VLs+Ay3yp7MVertp6i23v2Rmv5gmHDhSQ6t5GmTaqTsqhpWwmbOk3uKJrNOmwSSMC17jghqygilDOUU3KlLmHHNrajw3DVNVGWytGZDisM/cbkdRnvfIUJkaGJlgAYcoQ5bGptTmGc1R7pBC3XhFsLXnXR54qrMc+dGNBkqE4laBi4KmZYGom8vIy0lTyBkppBjLoTndMmrofIRORirsNlCbXzCgulmo36KztS2iV8rrNoRUL5VdkMSGoSXroC1KOQAA) format("woff2"),url(data:font/woff;base64,d09GRgABAAAAAAusAAsAAAAAMGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZjRmM5Y21hcAAAAYQAAAgCAAArYmjjYVVnbHlmAAAJiAAAAEEAAABQiOYj2mhlYWQAAAnMAAAALgAAADYR8XmmaGhlYQAACfwAAAAcAAAAJAqNAyNobXR4AAAKGAAAAAgAAAAIAyAAAGxvY2EAAAogAAAABgAAAAYAKAAAbWF4cAAACigAAAAeAAAAIAEOACJuYW1lAAAKSAAAAUIAAAKOcN63t3Bvc3QAAAuMAAAAHQAAAC5lhHRpeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGScwDiBgZWBgSGVtYKBgVECQjMfYEhiYmFgYGJgZWbACgLSXFMYHIAq/rNfAHK3gEmgASACAIekCT4AAHic7dhl0zDVmUXh5+XFHYK7E0IguFtwt4QQgmtwd3d3d7cED+4SXIO7u7vbsNfaUzU1fyGcu66u1adOf+6uHhgYGGpgYGDwL37/iyEHBoZZcWDQLzUw9NK/7A5if/DA8OwPOfQknBky+0P8/PPPOcd1UJ785frr/Dq/zq/z6/w3zsCgoX/xX74GRsxbcYpRB1iDB/7PGvT/DFGDenBwe8hKD1XpoSs9TKWHrfRwlR6+0iNUesRKj1TpkSs9SqVHrfRolR690r+p9BiVHrPSY1V67EqPU+lxKz1epcev9ASVnrDSE1V64kpPUulJKz1ZpSev9BSVnrLSU1V66kr/ttLTVPp3lZ62/KJSerpKT1/pP1R6hkrPWOmZKj1zpWep9KyVnq3Ss1d6jkrPWem5Kj13peep9LyVnq/S81d6gUr/sdILVnqhSi9c6UUqvWilF6v04pVeotJLVnqpSi9d6WUqvWyll6v08pVeodIrVvpPlf5zpVeq9F8qvXKl/1rpVSr9t0qvWunVKr16pdeo9JqVXqvSa1d6nUqvW+n1Kr1+pTeo9N8rvWGlN6r0xpXepNKbVnqzSm9e6S0qvWWlt6r01pXeptLbVnq7Sm9f6R0qvWOld6r0zpXepdK7Vnq3Su9e6T0qvWel96r03pXep9L7Vnq/Su9f6QMqfWClD6r0wZU+pNKHVvqwSh9e6SMqfWSlj6r00ZU+ptLHVvq4Sh9f6RMqfWKlT6r0yZU+pdKnVvq0Sp9e6TMqfWalz6r02ZU+p9LnVvq8Sp9f6QsqfWGl/1Hpf1b6okpfXOlLKn1ppS+r9OWVvqLS/6r0lZW+qtJXV/qaSl9b6esqfX2lb6j0jZW+qdI3V/qWSt9a6dsqfXul76j0vyt9Z6XvqvTdlb6n0vdW+r5K31/pByr9YKUfqvTDlX6k0v+p9KOVfqzSj1f6iUo/WemnKv10pZ+p9LOVfq7Sz1f6hUq/WOmXKv1ypV+p9KuVfq3Sr1f6jUq/Wem3Kv12pd+p9LuVfq/S71f6g0p/WOmPKv1xpT+p9KeV/qzSn1f6i0p/WemvKv11pb+p9LeV/q7S31f6h0r/WOmfKv1zDfI26KKHED1Y9JCihxI9tOhhRA8rejjRw4seQfSIokcSPbLoUUSPKno00aOL/o3oMUSPKXos0WOLHkf0uKLHEz2+6AlETyh6ItETi55E9KSiJxM9uegpRE8peirRU4v+rehpRP9O9LSify96OtHTi/6D6BlEzyh6JtEzi55F9KyiZxM9u+g5RM8pei7Rc4ueR/S8oucTPb/oBUT/UfSCohcSvbDoRUQvKnox0YuLXkL0kqKXEr206GVELyt6OdHLi15B9Iqi/yT6z6JXEv0X0SuL/qvoVUT/TfSqolcTvbroNUSvKXot0WuLXkf0uqLXE72+6A1E/130hqI3Er2x6E1Ebyp6M9Gbi95C9JaitxK9tehtRG8rejvR24veQfSOoncSvbPoXUTvKno30buL3kP0nqL3Er236H1E7yt6P9H7iz5A9IGiDxJ9sOhDRB8q+jDRh4s+QvSRoo8SfbToY0QfK/o40ceLPkH0iaJPEn2y6FNEnyr6NNGniz5D9JmizxJ9tuhzRJ8r+jzR54u+QPSFov8h+p+iLxJ9sehLRF8q+jLRl4u+QvS/RF8p+irRV4u+RvS1oq8Tfb3oG0TfKPom0TeLvkX0raJvE3276DtE/1v0naLvEn236HtE3yv6PtH3i35A9IOiHxL9sOhHRP9H9KOiHxP9uOgnRD8p+inRT4t+RvSzop8T/bzoF0S/KPol0S+LfkX0q6JfE/266DdEvyn6LdFvi35H9Lui3xP9vugPRH8o+iPRH4v+RPSnoj8T/bnoL0R/Kfor0V+L/kb0t6K/E/296B9E/yj6J9E/K/2/v/npoocQPVj0kKKHEj206GFEDyt6ONHDix5B9IiiRxI9suhRRI8qejTRo4v+jegxRI8peizRY4seR/S4oscTPb7oCURPKHoi0ROLnkT0pKInEz256ClETyl6KtFTi/6t6GlE/070tKJ/L3o60dOL/oPoGUTPKHom0TOLnkX0rKJnEz276DlEzyl6LtFzi55H9Lyi5xM9v+gFRP9R9IKiFxK9sOhFRC8qejHRi4teQvSSopcSvbToZUQvK3o50cuLXkH0iqL/JPrPolcS/RfRK4v+q+hVRP9N9KqiVxO9uug1RK8pei3Ra4teR/S6otcTvb7oDUT/XfSGojcSvbHoTURvKnoz0ZuL3kL0lqK3Er216G1Ebyt6O9Hbi95B9I6idxK9s+hdRO8qejfRu4veQ/SeovcSvbfofUTvK3o/0fuLPkD0gaIPEn2w6ENEHyr6MNGHiz5C9JGijxJ9tOhjRB8r+jjRx4s+QfSJok8SfbLoU0SfKvo00aeLPkP0maLPEn226HNEnyv6PNHni75A9IWi/yH6n6IvEn2x6EtEXyr6MtGXi75C9L9EXyn6KtFXi75G9LWirxN9vegbRN8o+ibRN4u+RfStom8TfbvoO0T/W/Sdou8Sfbfoe0TfK/o+0feLfkD0g6IfEv2w6EdE/0f0o6IfE/246CdEPyn6KdFPi35G9LOinxP9vOgXRL8o+iXRL4t+RfSrol8T/broN0S/Kfot0W+Lfkf0u6LfE/2+6A9Efyj6I9Efi/5E9KeiPxP9uegvRH8p+ivRX4v+RvS3or8T/b3oH0T/KPon0T9rYND/AOaSEScAAHicY2BiAAKmPSy+QEqUgYFRUURcTFzMyNzM3MxEXU1dTYmdjZ2NccK/K5oaLm6L3Fw0NOEMZoVAFD6IAQD4PA9iAAAAeJxjYGRgYADilrme/fH8Nl8ZuNkvAEUYbnDPcEOmmfaw+AIpDgYmEA8AHMMJGAAAeJxjYGRgYL/AAATMCiCSaQ8DIwMqYAIAK/QBvQAAAAADIAAAAAAAAAAoAAB4nGNgZGBgYGIQA2IGMIuBgQsIGRj+g/kMAArUATEAAHicjY69TsMwFIWP+4doJYSKhMTmoUJIqOnPWIm1ZWDq0IEtTZw2VRpHjlu1D8A7MPMczAw8DM/AifFEl9qS9d1zzr3XAK7xBYHqCHTdW50aLlj9cZ1057lBfvTcRAdPnlvUnz23mXj13MEN3jhBNC6p9PDuuYYrfHquU//23CD/eG7iVnQ9t9ATD57bWIgXzx3ciw+rDrZfqmhnUnvsx2kZzdVql4Xm1DhVFsqUqc7lKBiemjOVKxNaFcvlUZb71djaRCZGb+VU51ZlmZaF0RsV2WBtbTEZDBKvB5HewkLhwLePkhRhB4OU9ZFKTCqpzems6GQI6Z7TcU5mQceQUmjkkBghwPCszhmd3HWHLh+ze8mEpLvnT8dULRLWCTMaW9LUbanSGa+mUjhv47ZY7l67rgITDHiTf/mAKU76BTuXfk8AAHicY2BigAARBuyAiZGJkZmBJSWzOJmBAQALQwHHAAAA) format("woff"),url(../fonts/text-security-disc.ttf) format("truetype")}@font-face{font-family:Misettings;src:url(../fonts/icons.woff2) format("woff2"),url(../fonts/icons.woff) format("woff"),url(../fonts/icons.ttf) format("truetype"),url(../fonts/icons.otf) format("opentype");font-weight:400;font-style:normal}[class*=monstericon-]:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.monstericon-times-circle:before{content:"\f01b"}.monstericon-times:before{content:"\f021"}.monstericon-info-circle-regular:before{content:"\f01e"}.monstericon-arrow{-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);display:inline-block}.monstericon-arrow.monstericon-down{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.monstericon-arrow:before{content:"\f01f"}.monstericon-warning-triangle:before{content:"\f020"}.monstericon-files:before{content:"\f028"}.monstericon-user:before{content:"\f02a"}.monstericon-eye:before{content:"\f02b"}.monstericon-expand:before{content:"\f02d"}.monstericon-life-ring:before{content:"\f030"}.monstericon-wpbeginner:before{content:"\f031"}.monstericon-lightbulb:before{content:"\f032"}.monstericon-shopping-cart:before{content:"\f033"}.monstericon-arrow-right:before{content:"\f01d"}.monstericon-amp-icon:before{content:"\f000"}.monstericon-fbia:before{content:"\f001"}.monstericon-google-optimize:before{content:"\f002"}.monstericon-ads:before{content:"\0041"}.monstericon-affiliate:before{content:"\0042"}.monstericon-compatibility:before{content:"\0043"}.monstericon-demographics:before{content:"\0044"}.monstericon-download:before{content:"\0046"}.monstericon-ecommerce:before{content:"\0047"}.monstericon-engagement:before{content:"\0048"}.monstericon-forms:before{content:"\0049"}.monstericon-links:before{content:"\004a"}.monstericon-memberships:before{content:"\004b"}.monstericon-notifications:before{content:"\004c"}.monstericon-performance:before{content:"\004d"}.monstericon-permissions:before{content:"\004e"}.monstericon-reporting:before{content:"\004f"}.monstericon-social:before{content:"\0050"}.monstericon-video:before{content:"\0051"}.monstericon-times:before{content:"\f014"}.monstericon-check:before{content:"\f015"}.monstericon-info:before{content:"\f016"}.monstericon-exclamation-triangle:before{content:"\f017"}.monstericon-user:before{content:"\f018"}.monstericon-eye:before{content:"\f019"}.monstericon-info-circle:before{content:"\f01a"}.monstericon-info-circle-btm:before{content:"\f01c"}.monstericon-chevron-up:before{content:"\f01f"}.monstericon-times-fas:before{content:"\f021"}.monstericon-check-circle:before{content:"\f022"}.monstericon-exclamation-circle:before{content:"\f023"}.monstericon-star:before{content:"\f025"}.monstericon-times-circle-fas:before{content:"\f026"}.monstericon-check-circle-far:before{content:"\f027"}.monstericon-file-alt:before{content:"\f028"}.monstericon-search:before{content:"\f029"}.monstericon-user-far:before{content:"\f02a"}.monstericon-eye-far:before{content:"\f02b"}.monstericon-cog:before{content:"\f02c"}.monstericon-expand-alt:before{content:"\f02d"}.monstericon-compress-arrows-alt:before{content:"\f02e"}.monstericon-compress:before{content:"\f02f"}.monstericon-badge-check:before{content:"\f034"}.monstericon-download-em:before{content:"\f035"}.monstericon-globe:before{content:"\f036"}.monstericon-wand-magic:before{content:"\f037"}.monstericon-mouse-pointer:before{content:"\f038"}.monstericon-users:before{content:"\f039"}.monstericon-file-certificate:before{content:"\f03a"}.monstericon-bullseye-arrow:before{content:"\f03b"}.monstericon-cash-register:before{content:"\f03c"}.monstericon-chart-line:before{content:"\f03d"}.monstericon-clock:before{content:"\f03e"}.monstericon-box:before{content:"\f03f"}.monstericon-sack-dollar:before{content:"\f040"}.monstericon-browser:before{content:"\f041"}.monstericon-eye-em:before{content:"\f042"}.monstericon-newspaper:before{content:"\f043"}.monstericon-mobile:before{content:"\f044"}.monstericon-check-em-light:before{content:"\f045"}.monstericon-times-em-lite:before{content:"\f046"}.monstericon-code:before{content:"\f047"}.monstericon-clipboard:before{content:"\f048"}.monstericon-upload:before{content:"\f049"}.monstericon-clone:before{content:"\f04a"}.monstericon-id-card:before{content:"\f04b"}.monstericon-user-friends:before{content:"\f04c"}.monstericon-file-alt-em:before{content:"\f04d"}.monstericon-calendar-alt:before{content:"\f04e"}.monstericon-comment-alt-check:before{content:"\f04f"}.monstericon-arrow-circle-up:before{content:"\f050"}.monstericon-search-em:before{content:"\f051"}.monstericon-list-ol:before{content:"\f052"}.monstericon-hand-pointer:before{content:"\f053"}.monstericon-folder:before{content:"\f054"}.monstericon-sign-out-em-solid:before{content:"\f055"}.monstericon-external-link-alt:before{content:"\f056"}.monstericon-copy:before{content:"\f057"}.monstericon-sync:before{content:"\f058"}.monstericon-flag:before{content:"\f059"}.monstericon-building:before{content:"\f05a"}.monstericon-chart-bar:before{content:"\f05b"}.monstericon-shopping-bag:before{content:"\f05c"}.monstericon-exchange-alt:before{content:"\f05d"}.monstericon-plus:before{content:"\f05e"}.monstericon-tachometer-alt:before{content:"\f05f"}.monstericon-media:before{content:"\f072"}.monstericon-tag:before{content:"\f060"}.monstericon-check-circle-em:before{content:"\f061"}.monstericon-bullseye:before{content:"\f062"}.monstericon-rocket:before{content:"\f063"}.monstericon-exclamation-square:before{content:"\f064"}.monstericon-trash:before{content:"\f065"}.monstericon-user-em:before{content:"\f066"}.monstericon-unlock:before{content:"\f067"}.monstericon-exclamation-em-solid:before{content:"\f068"}.monstericon-key-em:before{content:"\f069"}.monstericon-long-arrow-right-light:before{content:"\f06a"}.monstericon-plug-light:before{content:"\f06b"}.monstericon-align-left-regular:before{content:"\f06c"}.monstericon-envelope-solid:before{content:"\f06f"}.monstericon-comment-alt-lines-solid:before{content:"\f06e"}.monstericon-arrow-circle-up-light:before{content:"\f071"}.monstericon-megaphone-solid:before{content:"\f070"}.monstericon-arrow-circle-up-light :before{content:"\f071"}@media (max-width:782px){.exactmetrics-notices-area{margin-left:10px;margin-right:10px}}.exactmetrics-notice .exactmetrics-notice-inner{position:relative;color:#210f59;padding:32px 45px;border:1px solid #f4f3f7;border-bottom:3px solid;-webkit-box-shadow:0 20px 30px rgba(48,44,62,.05);box-shadow:0 20px 30px rgba(48,44,62,.05);border-radius:10px;background:#fff;margin-top:40px}.exactmetrics-notice .exactmetrics-notice-inner .notice-title{color:#fff;font-weight:700;display:block;margin:0 0 6px;padding:0;font-size:17px}@media (max-width:782px){.exactmetrics-notice .exactmetrics-notice-inner{padding:10px}}.exactmetrics-notice .exactmetrics-notice-inner .notice-content{padding-left:92px;background:#fff;line-height:1.75;font-size:15px;position:relative}.exactmetrics-notice .exactmetrics-notice-inner .notice-content:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:48px;left:0;position:absolute;top:0;line-height:1}.exactmetrics-notice.exactmetrics-notice-error .exactmetrics-notice-inner{border-bottom-color:#d83638}.exactmetrics-notice.exactmetrics-notice-error .exactmetrics-notice-inner .notice-content:before{content:"\f064";color:#d83638}.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-notice-inner{border-bottom-color:#fa0}.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-notice-inner{border-bottom-color:#4d3f7a}.exactmetrics-notice.exactmetrics-notice-info-xl .exactmetrics-notice-inner{border:1px solid #6528f5;border-left-width:3px;color:#777}.exactmetrics-notice.exactmetrics-notice-info-xl .exactmetrics-notice-inner .exactmetrics-button{color:#fff;margin:15px 0 0}.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-notice-inner{border-bottom-color:#32a27a}.exactmetrics-notice .notice-content{margin-right:20px}.exactmetrics-notice .notice-content a{color:#210f59}.exactmetrics-notice .dismiss-notice{border:none;background:none;padding:0;margin:0;display:inline-block;cursor:pointer;color:#e9e7ee;position:relative;float:right}.exactmetrics-notice .dismiss-notice:focus,.exactmetrics-notice .dismiss-notice:hover{color:#210f59}.exactmetrics-notice.exactmetrics-notice-info .notice-content,.exactmetrics-notice.exactmetrics-notice-success .notice-content,.exactmetrics-notice.exactmetrics-notice-warning .notice-content{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:425px){.exactmetrics-notice.exactmetrics-notice-info .notice-content,.exactmetrics-notice.exactmetrics-notice-success .notice-content,.exactmetrics-notice.exactmetrics-notice-warning .notice-content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-notice-button{-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;margin-right:-20px;margin-left:auto}@media (max-width:782px){.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-notice-button{margin-left:0}}.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-button{margin-top:0;padding:10px 16px 8px;line-height:1;font-size:14px;font-weight:600}@media (max-width:782px){.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-button{margin-top:10px;margin-left:0}}.exactmetrics-notice.exactmetrics-notice-error .exactmetrics-button{margin-top:10px;margin-left:0;color:#fff}body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-end,body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-right{top:32px}@media screen and (max-width:767px){body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-end,body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-right{top:42px;right:auto;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast{border-radius:5px;padding:17px 28px;border:1px solid #f4f3f7;-webkit-box-shadow:0 20px 30px rgba(48,44,62,.05);box-shadow:0 20px 30px rgba(48,44,62,.05);min-width:380px}@media screen and (max-width:767px){body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast{width:80vw}}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-title{color:#210f59;font-size:15px;font-weight:700;line-height:1.5;margin-left:32px;margin-top:-3px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-close{font-size:26px;width:18px;height:18px;line-height:10px;position:absolute;right:14px;top:19px;color:#9087ac}@media screen and (max-width:767px){body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-close{padding:9px;line-height:0}}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon{width:27px;height:24px;min-width:27px;margin:0;border:0;color:#9087ac}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info{border:none;position:relative}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before{content:"\f01e";position:absolute;top:-1px;left:0;line-height:1;font-size:24px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info .swal2-icon-text{display:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error{border:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before{content:"\f023";position:absolute;top:-1px;left:0;line-height:1;font-size:24px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error .swal2-x-mark *{display:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon [class^=-ring]{width:14px;height:14px;top:0;left:0}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{top:0;left:0;border:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{content:"\f027";position:absolute;top:-1px;left:0;line-height:1;font-size:24px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success [class^=swal2-success-line]{display:none}@-webkit-keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@-webkit-keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}to{top:2.8125em;left:.875em;width:1.5625em}}@keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}to{top:2.8125em;left:.875em;width:1.5625em}}@-webkit-keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}to{top:2.375em;right:.5em;width:2.9375em}}@keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}to{top:2.375em;right:.5em;width:2.9375em}}@-webkit-keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}5%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}12%{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}to{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}}@keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}5%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}12%{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}to{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}}@-webkit-keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@-webkit-keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}@keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}.exactmetrics_page body.swal2-toast-shown .swal2-container,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-shown{background-color:rgba(0,0,0,0)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top{top:0;right:auto;bottom:auto;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-end,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;right:0;bottom:auto;left:auto}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-left,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-start{top:0;right:auto;bottom:auto;left:0}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-left,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-start{top:50%;right:auto;bottom:auto;left:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center{top:50%;right:auto;bottom:auto;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-end,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-right{top:50%;right:0;bottom:auto;left:auto;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-left,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-start{top:auto;right:auto;bottom:0;left:0}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom{top:auto;right:auto;bottom:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-end,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;right:0;bottom:0;left:auto}.exactmetrics_page body.swal2-toast-column .swal2-toast{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-actions{-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;height:2.2em;margin-top:.3125em}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-loading{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-input{height:2em;margin:.3125em auto;font-size:1em}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-validation-message{font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:auto;padding:.625em;-webkit-box-shadow:0 0 .625em #d9d9d9;box-shadow:0 0 .625em #d9d9d9;overflow-y:hidden}.exactmetrics_page .swal2-popup.swal2-toast .swal2-header{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;width:100%}.exactmetrics_page .swal2-popup.swal2-toast .swal2-title{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin:0 .6em;font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-close{position:static;width:.8em;height:.8em;line-height:.8}.exactmetrics_page .swal2-popup.swal2-toast .swal2-content{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon{width:2em;min-width:2em;height:2em;margin:0}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon-text{font-size:2em;font-weight:700;line-height:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:.3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:.3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-actions{height:auto;margin:0 .3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-styled{margin:0 .3125em;padding:.3125em .625em;font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-styled:focus{-webkit-box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4);box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4)}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{position:absolute;width:2em;height:2.8125em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);border-radius:50%}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.25em;left:-.9375em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:2em 2em;-ms-transform-origin:2em 2em;transform-origin:2em 2em;border-radius:4em 0 0 4em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.25em;left:.9375em;-webkit-transform-origin:0 2em;-ms-transform-origin:0 2em;transform-origin:0 2em;border-radius:0 4em 4em 0}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;left:.4375em;width:.4375em;height:2.6875em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;left:.1875em;width:.75em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;right:.1875em;width:1.375em}.exactmetrics_page .swal2-popup.swal2-toast.swal2-show{-webkit-animation:showSweetToast .5s;animation:showSweetToast .5s}.exactmetrics_page .swal2-popup.swal2-toast.swal2-hide{-webkit-animation:hideSweetToast .2s forwards;animation:hideSweetToast .2s forwards}.exactmetrics_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:animate-toast-success-tip .75s;animation:animate-toast-success-tip .75s}.exactmetrics_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:animate-toast-success-long .75s;animation:animate-toast-success-long .75s}@-webkit-keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(2deg);transform:translateY(-.625em) rotate(2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(-2deg);transform:translateY(0) rotate(-2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(2deg);transform:translateY(.3125em) rotate(2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(2deg);transform:translateY(-.625em) rotate(2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(-2deg);transform:translateY(0) rotate(-2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(2deg);transform:translateY(.3125em) rotate(2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@-webkit-keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(1deg);transform:rotate(1deg);opacity:0}}@keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(1deg);transform:rotate(1deg);opacity:0}}@-webkit-keyframes animate-toast-success-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}to{top:1.125em;left:.1875em;width:.75em}}@keyframes animate-toast-success-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}to{top:1.125em;left:.1875em;width:.75em}}@-webkit-keyframes animate-toast-success-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}to{top:.9375em;right:.1875em;width:1.375em}}@keyframes animate-toast-success-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}to{top:.9375em;right:.1875em;width:1.375em}}.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}.exactmetrics_page body.swal2-height-auto{height:auto!important}.exactmetrics_page body.swal2-no-backdrop .swal2-shown{top:auto;right:auto;bottom:auto;left:auto;background-color:rgba(0,0,0,0)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown>.swal2-modal{-webkit-box-shadow:0 0 10px rgba(0,0,0,.4);box-shadow:0 0 10px rgba(0,0,0,.4)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top{top:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-left,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-start{top:0;left:0}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-end,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-right{top:0;right:0}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center{top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-left,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-start{top:50%;left:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-end,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-right{top:50%;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom{bottom:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-left,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-start{bottom:0;left:0}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-end,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-right{right:0;bottom:0}.exactmetrics_page .swal2-container{display:-webkit-box;display:-ms-flexbox;display:flex;position:fixed;top:0;right:0;bottom:0;left:0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:10px;background-color:rgba(0,0,0,0);z-index:1060;overflow-x:hidden;-webkit-overflow-scrolling:touch}.exactmetrics_page .swal2-container.swal2-top{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.exactmetrics_page .swal2-container.swal2-top-left,.exactmetrics_page .swal2-container.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.exactmetrics_page .swal2-container.swal2-top-end,.exactmetrics_page .swal2-container.swal2-top-right{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.exactmetrics_page .swal2-container.swal2-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics_page .swal2-container.swal2-center-left,.exactmetrics_page .swal2-container.swal2-center-start{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.exactmetrics_page .swal2-container.swal2-center-end,.exactmetrics_page .swal2-container.swal2-center-right{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.exactmetrics_page .swal2-container.swal2-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.exactmetrics_page .swal2-container.swal2-bottom-left,.exactmetrics_page .swal2-container.swal2-bottom-start{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.exactmetrics_page .swal2-container.swal2-bottom-end,.exactmetrics_page .swal2-container.swal2-bottom-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.exactmetrics_page .swal2-container.swal2-grow-fullscreen>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;-ms-flex-pack:center}.exactmetrics_page .swal2-container.swal2-grow-fullscreen>.swal2-modal,.exactmetrics_page .swal2-container.swal2-grow-row>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-webkit-box-pack:center;justify-content:center}.exactmetrics_page .swal2-container.swal2-grow-row>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-ms-flex-pack:center}.exactmetrics_page .swal2-container.swal2-grow-column{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-left,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-start,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-left,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-start,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-left,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-end,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-right,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-end,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-right,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-end,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.exactmetrics_page .swal2-container.swal2-grow-column>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics_page .swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal{margin:auto}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.exactmetrics_page .swal2-container .swal2-modal{margin:0!important}}.exactmetrics_page .swal2-container.swal2-fade{-webkit-transition:background-color .1s;transition:background-color .1s}.exactmetrics_page .swal2-container.swal2-shown{background-color:rgba(0,0,0,.4)}.exactmetrics_page .swal2-popup{display:none;position:relative;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:32em;max-width:100%;padding:1.25em;border-radius:.3125em;background:#fff;font-family:inherit;font-size:1rem;-webkit-box-sizing:border-box;box-sizing:border-box;left:0;top:0}.exactmetrics_page .swal2-popup:focus{outline:0}.exactmetrics_page .swal2-popup.swal2-loading{overflow-y:hidden}.exactmetrics_page .swal2-popup .swal2-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics_page .swal2-popup .swal2-title{display:block;position:relative;max-width:100%;margin:0 0 .4em;padding:0;color:#595959;font-size:1.875em;font-weight:600;text-align:center;text-transform:none;word-wrap:break-word}.exactmetrics_page .swal2-popup .swal2-actions{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em auto 0;z-index:1}.exactmetrics_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.exactmetrics_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:hover{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.1)),to(rgba(0,0,0,.1)));background-image:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1))}.exactmetrics_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:active{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.2)),to(rgba(0,0,0,.2)));background-image:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2))}.exactmetrics_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-confirm{width:2.5em;height:2.5em;margin:.46875em;padding:0;border-radius:100%;border:.25em solid rgba(0,0,0,0);background-color:rgba(0,0,0,0)!important;color:rgba(0,0,0,0);cursor:default;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.exactmetrics_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-cancel{margin-right:30px;margin-left:30px}.exactmetrics_page .swal2-popup .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm:after{display:inline-block;width:15px;height:15px;margin-left:5px;border-radius:50%;border:3px solid #999;border-right-color:rgba(0,0,0,0);-webkit-box-shadow:1px 1px 1px #fff;box-shadow:1px 1px 1px #fff;content:"";-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal}.exactmetrics_page .swal2-popup .swal2-styled{margin:.3125em;padding:.625em 2em;font-weight:500;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .swal2-popup .swal2-styled:not([disabled]){cursor:pointer}.exactmetrics_page .swal2-popup .swal2-styled.swal2-confirm{border:0;border-radius:.25em;background:initial;background-color:#3085d6;color:#fff;font-size:1.0625em}.exactmetrics_page .swal2-popup .swal2-styled.swal2-cancel{border:0;border-radius:.25em;background:initial;background-color:#aaa;color:#fff;font-size:1.0625em}.exactmetrics_page .swal2-popup .swal2-styled:focus{outline:0;-webkit-box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4);box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4)}.exactmetrics_page .swal2-popup .swal2-styled::-moz-focus-inner{border:0}.exactmetrics_page .swal2-popup .swal2-footer{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em 0 0;padding:1em 0 0;border-top:1px solid #eee;color:#545454;font-size:1em}.exactmetrics_page .swal2-popup .swal2-image{max-width:100%;margin:1.25em auto}.exactmetrics_page .swal2-popup .swal2-close{position:absolute;top:0;right:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:1.2em;height:1.2em;padding:0;-webkit-transition:color .1s ease-out;transition:color .1s ease-out;border:none;border-radius:0;outline:initial;background:0 0;color:#ccc;font-family:serif;font-size:2.5em;line-height:1.2;cursor:pointer;overflow:hidden}.exactmetrics_page .swal2-popup .swal2-close:hover{-webkit-transform:none;-ms-transform:none;transform:none;color:#f27474}.exactmetrics_page .swal2-popup>.swal2-checkbox,.exactmetrics_page .swal2-popup>.swal2-file,.exactmetrics_page .swal2-popup>.swal2-input,.exactmetrics_page .swal2-popup>.swal2-radio,.exactmetrics_page .swal2-popup>.swal2-select,.exactmetrics_page .swal2-popup>.swal2-textarea{display:none}.exactmetrics_page .swal2-popup .swal2-content{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0;padding:0;color:#545454;font-size:1.125em;font-weight:300;line-height:normal;z-index:1;word-wrap:break-word}.exactmetrics_page .swal2-popup #swal2-content{text-align:center}.exactmetrics_page .swal2-popup .swal2-checkbox,.exactmetrics_page .swal2-popup .swal2-file,.exactmetrics_page .swal2-popup .swal2-input,.exactmetrics_page .swal2-popup .swal2-radio,.exactmetrics_page .swal2-popup .swal2-select,.exactmetrics_page .swal2-popup .swal2-textarea{margin:1em auto}.exactmetrics_page .swal2-popup .swal2-file,.exactmetrics_page .swal2-popup .swal2-input,.exactmetrics_page .swal2-popup .swal2-textarea{width:100%;-webkit-transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,box-shadow .3s;transition:border-color .3s,box-shadow .3s,-webkit-box-shadow .3s;border:1px solid #d9d9d9;border-radius:.1875em;font-size:1.125em;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.06);box-shadow:inset 0 1px 1px rgba(0,0,0,.06);-webkit-box-sizing:border-box;box-sizing:border-box}.exactmetrics_page .swal2-popup .swal2-file.swal2-inputerror,.exactmetrics_page .swal2-popup .swal2-input.swal2-inputerror,.exactmetrics_page .swal2-popup .swal2-textarea.swal2-inputerror{border-color:#f27474!important;-webkit-box-shadow:0 0 2px #f27474!important;box-shadow:0 0 2px #f27474!important}.exactmetrics_page .swal2-popup .swal2-file:focus,.exactmetrics_page .swal2-popup .swal2-input:focus,.exactmetrics_page .swal2-popup .swal2-textarea:focus{border:1px solid #b4dbed;outline:0;-webkit-box-shadow:0 0 3px #c4e6f5;box-shadow:0 0 3px #c4e6f5}.exactmetrics_page .swal2-popup .swal2-file::-webkit-input-placeholder,.exactmetrics_page .swal2-popup .swal2-input::-webkit-input-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::-webkit-input-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file::-moz-placeholder,.exactmetrics_page .swal2-popup .swal2-input::-moz-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::-moz-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file:-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-input:-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea:-ms-input-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file::-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-input::-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::-ms-input-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file::placeholder,.exactmetrics_page .swal2-popup .swal2-input::placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-range input{width:80%}.exactmetrics_page .swal2-popup .swal2-range output{width:20%;font-weight:600;text-align:center}.exactmetrics_page .swal2-popup .swal2-range input,.exactmetrics_page .swal2-popup .swal2-range output{height:2.625em;margin:1em auto;padding:0;font-size:1.125em;line-height:2.625em}.exactmetrics_page .swal2-popup .swal2-input{height:2.625em;padding:0 .75em}.exactmetrics_page .swal2-popup .swal2-input[type=number]{max-width:10em}.exactmetrics_page .swal2-popup .swal2-file{font-size:1.125em}.exactmetrics_page .swal2-popup .swal2-textarea{height:6.75em;padding:.75em}.exactmetrics_page .swal2-popup .swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;color:#545454;font-size:1.125em}.exactmetrics_page .swal2-popup .swal2-checkbox,.exactmetrics_page .swal2-popup .swal2-radio{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics_page .swal2-popup .swal2-checkbox label,.exactmetrics_page .swal2-popup .swal2-radio label{margin:0 .6em;font-size:1.125em}.exactmetrics_page .swal2-popup .swal2-checkbox input,.exactmetrics_page .swal2-popup .swal2-radio input{margin:0 .4em}.exactmetrics_page .swal2-popup .swal2-validation-message{display:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:.625em;background:#f0f0f0;color:#666;font-size:1em;font-weight:300;overflow:hidden}.exactmetrics_page .swal2-popup .swal2-validation-message:before{display:inline-block;width:1.5em;min-width:1.5em;height:1.5em;margin:0 .625em;border-radius:50%;background-color:#f27474;color:#fff;font-weight:600;line-height:1.5em;text-align:center;content:"!";zoom:normal}@supports (-ms-accelerator:true){.exactmetrics_page .swal2-range input{width:100%!important}.exactmetrics_page .swal2-range output{display:none}}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.exactmetrics_page .swal2-range input{width:100%!important}.exactmetrics_page .swal2-range output{display:none}}@-moz-document url-prefix(){.exactmetrics_page .swal2-close:focus{outline:2px solid rgba(50,100,150,.4)}}.exactmetrics_page .swal2-icon{position:relative;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:5em;height:5em;margin:1.25em auto 1.875em;border:.25em solid rgba(0,0,0,0);border-radius:50%;line-height:5em;cursor:default;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;zoom:normal}.exactmetrics_page .swal2-icon-text{font-size:3.75em}.exactmetrics_page .swal2-icon.swal2-error{border-color:#f27474}.exactmetrics_page .swal2-icon.swal2-error .swal2-x-mark{position:relative;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.exactmetrics_page .swal2-icon.swal2-error [class^=swal2-x-mark-line]{display:block;position:absolute;top:2.3125em;width:2.9375em;height:.3125em;border-radius:.125em;background-color:#f27474}.exactmetrics_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:1.0625em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.exactmetrics_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:1em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.exactmetrics_page .swal2-icon.swal2-warning{border-color:#facea8;color:#f8bb86}.exactmetrics_page .swal2-icon.swal2-info{border-color:#9de0f6;color:#3fc3ee;font-size:1rem}.exactmetrics_page .swal2-icon.swal2-question{border-color:#c9dae1;color:#87adbd}.exactmetrics_page .swal2-icon.swal2-success{border-color:#a5dc86}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-circular-line]{position:absolute;width:3.75em;height:7.5em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);border-radius:50%}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.4375em;left:-2.0635em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:3.75em 3.75em;-ms-transform-origin:3.75em 3.75em;transform-origin:3.75em 3.75em;border-radius:7.5em 0 0 7.5em}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.6875em;left:1.875em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:0 3.75em;-ms-transform-origin:0 3.75em;transform-origin:0 3.75em;border-radius:0 7.5em 7.5em 0}.exactmetrics_page .swal2-icon.swal2-success .swal2-success-ring{position:absolute;top:-.25em;left:-.25em;width:100%;height:100%;border:.25em solid rgba(165,220,134,.3);border-radius:50%;z-index:2;-webkit-box-sizing:content-box;box-sizing:content-box}.exactmetrics_page .swal2-icon.swal2-success .swal2-success-fix{position:absolute;top:.5em;left:1.625em;width:.4375em;height:5.625em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);z-index:1}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-line]{display:block;position:absolute;height:.3125em;border-radius:.125em;background-color:#a5dc86;z-index:2}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{top:2.875em;left:.875em;width:1.5625em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:2.375em;right:.5em;width:2.9375em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.exactmetrics_page .swal2-progresssteps{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 0 1.25em;padding:0;font-weight:600}.exactmetrics_page .swal2-progresssteps li{display:inline-block;position:relative}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle{width:2em;height:2em;border-radius:2em;background:#3085d6;color:#fff;line-height:2em;text-align:center;z-index:20}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle:first-child{margin-left:0}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle:last-child{margin-right:0}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep{background:#3085d6}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progresscircle,.exactmetrics_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progressline{background:#add8e6}.exactmetrics_page .swal2-progresssteps .swal2-progressline{width:2.5em;height:.4em;margin:0 -1px;background:#3085d6;z-index:10}.exactmetrics_page [class^=swal2]{-webkit-tap-highlight-color:transparent}.exactmetrics_page .swal2-show{-webkit-animation:swal2-show .3s;animation:swal2-show .3s}.exactmetrics_page .swal2-show.swal2-noanimation{-webkit-animation:none;animation:none}.exactmetrics_page .swal2-hide{-webkit-animation:swal2-hide .15s forwards;animation:swal2-hide .15s forwards}.exactmetrics_page .swal2-hide.swal2-noanimation{-webkit-animation:none;animation:none}.exactmetrics_page .swal2-rtl .swal2-close{right:auto;left:0}.exactmetrics_page .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:swal2-animate-success-line-tip .75s;animation:swal2-animate-success-line-tip .75s}.exactmetrics_page .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:swal2-animate-success-line-long .75s;animation:swal2-animate-success-line-long .75s}.exactmetrics_page .swal2-animate-success-icon .swal2-success-circular-line-right{-webkit-animation:swal2-rotate-success-circular-line 4.25s ease-in;animation:swal2-rotate-success-circular-line 4.25s ease-in}.exactmetrics_page .swal2-animate-error-icon{-webkit-animation:swal2-animate-error-icon .5s;animation:swal2-animate-error-icon .5s}.exactmetrics_page .swal2-animate-error-icon .swal2-x-mark{-webkit-animation:swal2-animate-error-x-mark .5s;animation:swal2-animate-error-x-mark .5s}@-webkit-keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@media print{.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}.exactmetrics-notifications-display{background:#f4f3f7;border-left:3px solid #6528f5;padding:20px;border-radius:3px 0 0 3px;margin-bottom:50px;position:relative}.exactmetrics-settings-panel .exactmetrics-notifications-display{margin-left:25px;margin-right:25px}.exactmetrics-notifications-display h3{margin:0 0 4px;font-size:16px;line-height:20px}.exactmetrics-notifications-display p{margin-top:4px;margin-bottom:12px;font-size:14px;line-height:18px}.exactmetrics-notifications-display .exactmetrics-notification{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-notifications-display .exactmetrics-notification .exactmetrics-notifications-indicator{padding-top:10px}.exactmetrics-notifications-display .exactmetrics-notification .exactmetrics-notifications-indicator a{position:relative}.exactmetrics-notifications-display .exactmetrics-notification-inner{margin-left:25px}.exactmetrics-notifications-display .exactmetrics-button{margin-right:15px}.exactmetrics-notifications-display .exactmetrics-notification-navigation{position:absolute;right:0;top:100%}.exactmetrics-notifications-display .exactmetrics-notification-navigation button{background:#f4f3f7;border:none;border-radius:0 0 3px 3px;margin:0;padding:5px 8px 7px;color:#a8aebd;cursor:pointer}.exactmetrics-notifications-display .exactmetrics-notification-navigation button:focus,.exactmetrics-notifications-display .exactmetrics-notification-navigation button:hover{color:#6528f5}.exactmetrics-notifications-display .exactmetrics-notification-navigation button .monstericon-arrow{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);font-size:10px}.exactmetrics-notifications-display .exactmetrics-notification-navigation button.exactmetrics-notification-previous{margin-right:2px}.exactmetrics-notifications-display .exactmetrics-notification-navigation button.exactmetrics-notification-previous .monstericon-arrow{-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.exactmetrics-notifications-display .exactmetrics-notification-dismiss{border:none;background:none;color:#a8aebd;position:absolute;right:12px;top:9px;padding:0;margin:0;font-size:16px;cursor:pointer}.exactmetrics-notifications-display .exactmetrics-notifications-unread{min-width:10px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:12px;left:18px;border-radius:20px;line-height:16px;color:#fff;font-weight:700;text-align:center;display:inline-block;padding:0 3px}.exactmetrics-report .exactmetrics-notifications-display .exactmetrics-notifications-unread{min-width:16px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:4px;border-radius:20px;line-height:1;color:#fff;font-weight:700;text-align:center;padding:0 2px;left:20px}.exactmetrics-admin-page.exactmetrics-path-about-us .exactmetrics-notificationsv3-container,.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-notificationsv3-container,.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-notificationsv3-container,.exactmetrics-admin-page.exactmetrics-path-tools-url-builder .exactmetrics-notificationsv3-container,.exactmetrics-admin-page.exactmetrics-reports-page .exactmetrics-notificationsv3-container{margin-right:0}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-navigation-bar{width:90%}.exactmetrics-admin-page .exactmetrics-notificationsv3-container{display:inline-block;margin-left:20px;float:right}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-number{position:absolute;top:-9px;min-width:20px;height:20px;line-height:20px;display:block;background:#eb5757;border-radius:20px;font-size:12px;color:#fff;font-weight:700;text-align:center;padding:0 6px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-number.number-greater-than-10{right:-13px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-number.number-less-than-10{right:-10px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-dismissed-number{min-width:24px;height:24px;background:#7c869d;border-radius:20px;display:inline-block;text-align:center;vertical-align:middle;line-height:24px;color:#fff;font-size:14px;font-weight:700;padding:0 8px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-no-notifications{text-align:center;position:absolute;top:50%;margin-top:-69px;width:100%}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-no-notifications h4{font-size:16px;color:#7c869d}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button{position:relative}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button{position:absolute;top:21px;right:15px}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button{background:#f0f2f4;border-radius:3px;padding:11px 7px;line-height:0;vertical-align:middle;margin-top:0;border:solid #d3d7de;border-width:1px 1px 2px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button{display:inline-block}}@media (max-width:959px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button{display:block}}@media (max-width:1099px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button{display:block}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button:hover{background:#e7eaec;border-color:#d3d7de;outline:none}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-notificationsv3-inbox-number{cursor:pointer}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar{width:440px;position:fixed;top:32px;right:0;background:#fff;z-index:1001;overflow:scroll;height:100%;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar{top:46px;width:300px}}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(50px)}to{opacity:1;-webkit-transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(50px);transform:translateX(50px)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar.exactmetrics-notificationsv3-sidebar-in{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-single-notification{padding:0 16px;overflow:hidden}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top{background:#2679c1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:50px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-title{width:50%;text-align:left}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-title svg{margin-right:10px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-title h3{display:inline-block;color:#fff;font-size:18px;font-weight:700}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions{width:50%;text-align:right}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button{color:#fff;text-decoration:underline;border:0;padding:0;background:rgba(0,0,0,0);border-radius:0;float:none}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button{display:inline-block}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button:hover{color:#efe5e5}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button:focus{outline:none}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-notificationsv3-sidebar-close{margin-left:12px;vertical-align:bottom}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-notificationsv3-sidebar-close:active svg path,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-notificationsv3-sidebar-close:focus svg path,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-notificationsv3-sidebar-close:hover svg path{fill:#efe5e5}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:60px;border-bottom:1px solid #e2e4e9;margin:0 16px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-notifications-count{width:50%;text-align:left}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-notifications-count .exactmetrics-notificationsv3-inbox-number{position:relative;display:inline-block;top:inherit;right:inherit;min-width:24px;height:24px;line-height:24px;margin-right:8px;padding:0 8px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-notifications-count .exactmetrics-notificationsv3-dismissed-number{margin-right:8px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-notifications-count h4{display:inline-block}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions{width:50%;text-align:right}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions span{text-decoration:underline;color:#99a1b3;cursor:pointer}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions span:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions span:focus,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions span:hover{color:#a9b1c3}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications{display:block;margin-bottom:32px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications{margin-bottom:46px}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification{border-bottom:1px solid #e2e4e9;padding-bottom:24px;display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-icon{width:54px;float:left;text-align:center;padding-top:24px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-icon{float:none;margin:0 auto}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details{float:left;width:354px;padding-top:20px;text-align:left}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details{width:260px}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-title h5{margin-top:0;margin-bottom:0;color:#393f4c;font-size:13px;font-weight:700;width:70%;display:inline-block}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-title h5{width:65%}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-title span{color:#7f899f;font-size:13px;float:right}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-content p{color:#393f4c;font-size:13px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-top:2px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions .exactmetrics-button{display:block;background:#f0f2f4;border:1px solid #d3d7de;border-radius:3px;font-weight:500;font-size:13px;color:#393f4c;letter-spacing:.02em;padding:6px 11px;margin-right:10px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions .exactmetrics-button:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions .exactmetrics-button:hover{background:#d3d7de}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions span{font-size:13px;color:#7f899f;cursor:pointer}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions span:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions span:focus,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions span:hover{color:#a9b1c3}.exactmetrics-tooltip{display:block!important;z-index:10000;max-width:350px}.exactmetrics-tooltip .exactmetrics-tooltip-inner{background:#6528f5;color:#fff;border-radius:5px;padding:16px 20px;font-size:15px;line-height:1.5;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;text-align:center}.exactmetrics-tooltip .exactmetrics-tooltip-inner a{color:#fff;font-weight:700}.exactmetrics-tooltip .exactmetrics-tooltip-arrow{width:0;height:0;border-style:solid;position:absolute;margin:8px;border-color:#6528f5;z-index:1}.exactmetrics-tooltip[x-placement^=top]{padding-bottom:8px}.exactmetrics-tooltip[x-placement^=top] .exactmetrics-tooltip-arrow{border-width:8px 8px 0;border-left-color:rgba(0,0,0,0)!important;border-right-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;bottom:0;left:calc(50% - 8px);margin-top:0;margin-bottom:0}.exactmetrics-tooltip[x-placement^=bottom]{padding-top:8px}.exactmetrics-tooltip[x-placement^=bottom] .exactmetrics-tooltip-arrow{border-width:0 8px 8px;border-left-color:rgba(0,0,0,0)!important;border-right-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;top:0;left:calc(50% - 8px);margin-top:0;margin-bottom:0}.exactmetrics-tooltip[x-placement^=right]{padding-left:8px}.exactmetrics-tooltip[x-placement^=right] .exactmetrics-tooltip-arrow{border-width:8px 8px 8px 0;border-left-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;left:0;top:calc(50% - 8px);margin-left:0;margin-right:0}.exactmetrics-tooltip[x-placement^=left]{padding-right:8px}.exactmetrics-tooltip[x-placement^=left] .exactmetrics-tooltip-arrow{border-width:8px 0 8px 8px;border-top-color:rgba(0,0,0,0)!important;border-right-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;right:0;top:calc(50% - 8px);margin-left:0;margin-right:0}.exactmetrics-tooltip.popover .popover-inner{background:#fff;color:#6528f5;padding:24px;border-radius:5px;-webkit-box-shadow:0 5px 30px rgba(0,0,0,.1);box-shadow:0 5px 30px rgba(0,0,0,.1)}.exactmetrics-tooltip.popover .popover-arrow{border-color:#fff}.exactmetrics-tooltip[aria-hidden=true]{visibility:hidden;opacity:0;-webkit-transition:opacity .15s,visibility .15s;transition:opacity .15s,visibility .15s}.exactmetrics-tooltip[aria-hidden=false]{visibility:visible;opacity:1;-webkit-transition:opacity .15s;transition:opacity .15s}.exactmetrics-roller{display:inline-block;position:relative;width:58px;height:58px}.exactmetrics-roller div{-webkit-animation:exactmetrics-roller 1.4s cubic-bezier(.5,0,.5,1) infinite;animation:exactmetrics-roller 1.4s cubic-bezier(.5,0,.5,1) infinite;-webkit-transform-origin:29px 29px;-ms-transform-origin:29px 29px;transform-origin:29px 29px}.exactmetrics-roller div:after{content:" ";display:block;position:absolute;width:8px;height:8px;border-radius:50%;background:#6528f5;margin:-4px 0 0 -4px}.exactmetrics-roller div:first-child{-webkit-animation-delay:-36ms;animation-delay:-36ms}.exactmetrics-roller div:nth-child(2){-webkit-animation-delay:-72ms;animation-delay:-72ms}.exactmetrics-roller div:nth-child(3){-webkit-animation-delay:-.108s;animation-delay:-.108s}.exactmetrics-roller div:nth-child(4){-webkit-animation-delay:-.144s;animation-delay:-.144s}.exactmetrics-roller div:nth-child(5){-webkit-animation-delay:-.18s;animation-delay:-.18s}.exactmetrics-roller div:nth-child(6){-webkit-animation-delay:-.216s;animation-delay:-.216s}.exactmetrics-roller div:nth-child(7){-webkit-animation-delay:-.252s;animation-delay:-.252s}.exactmetrics-roller div:first-child:after{top:49px;left:44px}.exactmetrics-roller div:nth-child(2):after{top:54px;left:28px}.exactmetrics-roller div:nth-child(3):after{top:48px;left:13px}.exactmetrics-roller div:nth-child(4):after{top:35px;left:5px}.exactmetrics-roller div:nth-child(5):after{top:19px;left:6px}.exactmetrics-roller div:nth-child(6):after{top:8px;left:15px}.exactmetrics-roller div:nth-child(7):after{top:4px;left:29px}@-webkit-keyframes exactmetrics-roller{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes exactmetrics-roller{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.exactmetrics-upload-media-wrapper .exactmetrics-dark{display:block}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media-label{margin-bottom:0!important}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media{display:block;width:100%;margin-top:20px;position:relative;max-width:300px}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media .exactmetrics-uploaded-media-overlay{display:none;background:rgba(0,0,0,.7);width:100%;position:absolute;top:0;left:0;height:100%;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media .exactmetrics-uploaded-media-overlay .exactmetrics-remove-uploaded-media{color:#fff;text-decoration:underline;margin-left:auto;cursor:pointer;padding:0 10px 10px 0}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media .exactmetrics-uploaded-media-overlay .exactmetrics-remove-uploaded-media:hover{text-decoration:none}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media:hover .exactmetrics-uploaded-media-overlay{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media img{max-width:100%;display:inline-block}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media{overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;margin-top:20px}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-input{width:73%;margin-right:2%;float:left;position:relative;margin-top:0}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button{width:25%;float:left;font-size:15px}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button:active,.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button:focus,.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button:hover{outline:none}.exactmetrics-upload-media-wrapper .inline-field .exactmetrics-button{position:relative!important;margin-left:10px;padding:12px 24px!important}.exactmetrics-upload-media-wrapper .inline-field .exactmetrics-button:first-child{margin-left:0}.exactmetrics-email-summaries-settings a{color:#6528f5!important}.exactmetrics-email-summaries-settings a:focus,.exactmetrics-email-summaries-settings a:hover{color:#393f4c!important}.exactmetrics-email-summaries-settings .exactmetrics-dark{display:block}.exactmetrics-email-summaries-settings .inline-field .exactmetrics-button{position:relative!important;margin-left:10px;padding:12px 24px!important}.exactmetrics-email-summaries-settings .inline-field .exactmetrics-button:first-child{margin-left:0}.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater{margin-bottom:18px}.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row input[type=number],.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row input[type=text],.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row textarea{border-color:#9087ac}.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row .exactmetrics-input-valid input{border-color:#32a27a}.exactmetrics-email-summaries-settings .exactmetrics-button.exactmetrics-button-disabled{cursor:not-allowed;background:#39967e!important;border-color:#4ab99b!important}.exactmetrics-accordion .exactmetrics-accordion{padding:0;border:1px solid #e0e0e0}.exactmetrics-accordion .exactmetrics-accordion div:not(:last-child){border-bottom:1px solid rgba(10,10,10,.1)}.exactmetrics-accordion .exactmetrics-accordion div:last-child .exactmetrics-accordion-item-details{border-radius:5px}.exactmetrics-accordion .exactmetrics-accordion dd{margin-left:0;margin-bottom:0}.exactmetrics-accordion .exactmetrics-accordion-item-trigger{cursor:pointer;outline:none}.exactmetrics-accordion .exactmetrics-accordion-item-details-inner,.exactmetrics-accordion .exactmetrics-accordion-item-trigger{padding:0 20px 30px}.exactmetrics-accordion .exactmetrics-accordion-item.is-active .exactmetrics-accordion-item-title{border-bottom:1px solid #e0e0e0}.exactmetrics-accordion .exactmetrics-accordion-item-title{position:relative;background-color:#fff;cursor:pointer}.exactmetrics-accordion .exactmetrics-accordion-item-title h4.exactmetrics-accordion-item-title-text{font-size:20px;margin-bottom:0;padding-right:1.25rem}.exactmetrics-accordion .exactmetrics-accordion-item-title h4.exactmetrics-accordion-item-title-text .title{padding-left:15px}.exactmetrics-accordion .exactmetrics-accordion-item-trigger{width:100%;text-align:left;background-color:rgba(0,0,0,0);border:none}.exactmetrics-accordion .exactmetrics-accordion-item-trigger-icon{display:block;position:absolute;top:0;right:1.5rem;bottom:0;margin:auto;width:8px;height:8px;border-right:2px solid #363636;border-bottom:2px solid #363636;-webkit-transform:translateY(-2px) rotate(45deg);-ms-transform:translateY(-2px) rotate(45deg);transform:translateY(-2px) rotate(45deg);-webkit-transition:-webkit-transform .2s ease;transition:-webkit-transform .2s ease;transition:transform .2s ease;transition:transform .2s ease,-webkit-transform .2s ease}.exactmetrics-accordion .exactmetrics-accordion-item-trigger-icon.is-active{-webkit-transform:translateY(2px) rotate(225deg);-ms-transform:translateY(2px) rotate(225deg);transform:translateY(2px) rotate(225deg)}.exactmetrics-accordion .exactmetrics-accordion-item-details{overflow:hidden;background-color:#fff;padding-top:15px}.exactmetrics-accordion .exactmetrics-accordion-item-details p,.exactmetrics-accordion .exactmetrics-accordion-item-details ul{font-size:1.2em;line-height:1.8}.exactmetrics-accordion .exactmetrics-accordion-item-enter-active,.exactmetrics-accordion .exactmetrics-accordion-item-leave-active{will-change:height;-webkit-transition:height .2s ease;transition:height .2s ease}.exactmetrics-accordion .exactmetrics-accordion-item-enter,.exactmetrics-accordion .exactmetrics-accordion-item-leave-to{height:0!important}body{background:#fff;margin:0}.exactmetrics-admin-page,.exactmetrics-admin-page *{-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}#wpcontent,.auto-fold #wpcontent{padding-left:0}.exactmetrics-highlighted-text{color:#64bfa5;font-weight:700}.exactmetrics-bold{font-weight:700}.exactmetrics-bg-img{width:100%;padding-top:66%;position:relative}.exactmetrics-bg-img:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;background-repeat:no-repeat;background-size:contain}.exactmetrics-header{padding:20px;background-color:#210f59;position:relative;z-index:90}.exactmetrics-header .exactmetrics-container{width:100%}@media (max-width:959px){.exactmetrics-header .exactmetrics-container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}}.exactmetrics-header .exactmetrics-float-right{text-align:center}@media (max-width:1099px){.exactmetrics-header .exactmetrics-float-right{text-align:right}}.exactmetrics-header .exactmetrics-float-right .exactmetrics-button{float:right;background:#fff;color:#210f59}@media (max-width:1099px){.exactmetrics-header .exactmetrics-float-right .exactmetrics-button{display:none}}.exactmetrics-header .exactmetrics-float-right .exactmetrics-button:focus,.exactmetrics-header .exactmetrics-float-right .exactmetrics-button:hover{color:#6528f5;background:#fff}.exactmetrics-header .exactmetrics-float-right .exactmetrics-button.exactmetrics-button-disabled{color:#9087ac}@media (max-width:959px){.exactmetrics-header .exactmetrics-float-right{text-align:right;width:100%}}.exactmetrics-logo-area{float:left;max-width:calc(100vw - 170px)}.exactmetrics-logo-area img{display:block;max-width:100%}@media (max-width:959px){.exactmetrics-logo-area{width:140px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0}}@media (max-width:959px){.exactmetrics-header .exactmetrics-container,.exactmetrics-navigation-bar .exactmetrics-container{padding:0;width:100%}}.exactmetrics-navigation-bar{background:rgba(0,0,0,0);display:inline-block}@media (max-width:959px){.exactmetrics-navigation-bar{padding:0;border:0}}@media (max-width:750px){.exactmetrics-navigation-bar{background:none;margin-right:40px}}.exactmetrics-admin-page{position:relative}.exactmetrics-admin-page .exactmetrics-blocked{position:absolute;top:0;bottom:0;right:0;left:0;background:hsla(0,0%,100%,.5);z-index:999}@media (max-width:959px){.exactmetrics-admin-page .exactmetrics-header{padding:20px 24px}.exactmetrics-admin-page .exactmetrics-header .exactmetrics-button{display:none}}.swal2-popup .swal2-title{line-height:1.2}#footer-left{color:#210f59}#footer-left .exactmetrics-no-text-decoration{text-decoration:none;color:#fdb72c;font-size:14px}#footer-left a{color:#6528f5}#wpfooter{display:none;margin-right:23px;margin-bottom:20px;left:23px;background:rgba(101,40,245,.05);padding:14px 20px;border-radius:5px}#wpfooter a{color:#6528f5}.exactmetrics-container{margin:0 auto;max-width:100%;width:750px}.exactmetrics-admin-page .exactmetrics-navigation-tab-link{text-decoration:none;padding:12px 4px 11px;font-size:15px;color:#fff;display:inline-block;margin-right:20px;line-height:1;outline:none;font-family:Lato,sans-serif;position:relative}.exactmetrics-admin-page .exactmetrics-navigation-tab-link:after{content:"";width:100%;left:0;position:absolute;top:100%;height:2px;border-radius:20px;background:#fff;display:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:focus,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:hover{border-bottom-color:#fff;color:#fff;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active:after,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:focus:after,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:hover:after{display:block}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.exactmetrics-navigation-tab-disabled:focus,.exactmetrics-admin-page .exactmetrics-navigation-tab-link.exactmetrics-navigation-tab-disabled:hover{border-bottom-color:rgba(0,0,0,0);color:#fff;cursor:default}@media (max-width:959px){.exactmetrics-admin-page .exactmetrics-navigation-tab-link{width:100%;padding:20px 0;color:#fff;font-size:16px;border-top:1px solid #4d3f7a;text-align:left}.exactmetrics-admin-page .exactmetrics-navigation-tab-link:first-child{border-top:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active:first-child+.exactmetrics-navigation-tab-link{border-top:0}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active{display:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link:focus{color:#fff;text-decoration:none}}.exactmetrics-admin-page .exactmetrics-button{background:#6528f5;border-radius:5px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:12px 24px;text-decoration:none;border:0}.exactmetrics-admin-page .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-button:hover{background-color:#37276a;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-disabled{background:#e9e7ee;color:#9087ac}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-secondary{background:#e9e7ee;color:#37276a}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-secondary:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-secondary:hover{background-color:#f4f3f7;color:#37276a}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-green{background:#32a27a;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-green:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-green:hover{background-color:#19865f;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text{background:rgba(0,0,0,0);border:none;color:#6528f5;padding:0;border-radius:0;text-decoration:underline}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text:hover{background:rgba(0,0,0,0);color:#393f4c}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text [class*=monstericon-]{margin-left:10px;min-width:16px;display:inline-block}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text [class*=monstericon-]:first-child{margin-left:0;margin-right:10px}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text.exactmetrics-button-text-dark{color:#210f59}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text.exactmetrics-button-text-dark:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text.exactmetrics-button-text-dark:hover{color:#6528f5}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-red{background:#e43462;border-color:#e43462;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-large{font-size:15px;padding:14px 30px 12px;font-weight:500}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-xl{font-size:20px;padding:23px 67px;font-weight:500}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-xl i{margin-left:10px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-xl{padding-left:45px;padding-right:45px}}.exactmetrics-admin-page .exactmetrics-spaced-top{margin-top:20px}.exactmetrics-green-text{color:#32a27a;font-weight:700}@media (max-width:782px){.wp-responsive-open #wpbody{margin-left:-18px}}.exactmetrics-mobile-nav-trigger{color:#fff;font-size:15px;font-weight:500;display:inline-block;border:none;background:#37276a;padding:7px 18px;line-height:1.7;margin:0;border-radius:5px}@media (min-width:960px){.exactmetrics-mobile-nav-trigger{display:none}}.exactmetrics-mobile-nav-trigger i{color:#fff;margin-left:25px;vertical-align:middle}.exactmetrics-mobile-nav-trigger.exactmetrics-mobile-nav-trigger-open{border-radius:5px 5px 0 0}@media (max-width:959px){.exactmetrics-main-navigation{background:#37276a;height:0;overflow:hidden;position:absolute;left:24px;right:24px;text-align:left;border-radius:5px 0 5px 5px}.exactmetrics-main-navigation.exactmetrics-main-navigation-open{padding:17px 40px;height:auto;-webkit-box-shadow:0 40px 30px rgba(33,15,89,.1);box-shadow:0 40px 30px rgba(33,15,89,.1)}}@media (min-width:782px){.exactmetrics_page .exactmetrics-swal{margin-left:160px}.auto-fold .exactmetrics_page .exactmetrics-swal{margin-left:36px}}@media (min-width:961px){.auto-fold .exactmetrics_page .exactmetrics-swal{margin-left:160px}.folded .exactmetrics_page .exactmetrics-swal{margin-left:36px}}.exactmetrics_page .exactmetrics-swal .swal2-footer{border-top:none;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left;margin-top:0;font-size:15px}.exactmetrics_page .exactmetrics-swal .swal2-footer a{color:#6528f5}.exactmetrics_page .exactmetrics-swal .swal2-footer a:focus,.exactmetrics_page .exactmetrics-swal .swal2-footer a:hover{color:#37276a}.exactmetrics-modal{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.8);z-index:99999;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics-modal .exactmetrics-modal-inner{background:#fff;padding:50px;border:1px solid #d6e2ed;text-align:center;width:750px}.exactmetrics-modal .exactmetrics-modal-inner h2{margin-top:0;margin-bottom:0;line-height:1.4}.exactmetrics-modal .exactmetrics-modal-inner p{margin-bottom:0}.exactmetrics-modal .exactmetrics-modal-inner .exactmetrics-modal-buttons{margin-top:50px}.exactmetrics-modal .exactmetrics-modal-inner .exactmetrics-button{margin:0 10px}.exactmetrics-welcome-overlay{position:fixed;top:0;left:0;right:0;bottom:0;z-index:99999999;font-family:inherit;overflow:hidden;background-color:rgba(33,15,89,.9)}.exactmetrics-welcome-overlay .exactmetrics-welcome-overlay-inner{background:#fff;padding:30px;width:70%;margin:0 auto;position:relative;top:10%;height:80%;border-radius:10px;-webkit-box-shadow:0 20px 80px rgba(13,7,36,.5);box-shadow:0 20px 80px rgba(13,7,36,.5)}.exactmetrics-welcome-overlay .exactmetrics-overlay-close{background:none;border:none;position:absolute;top:5px;right:7px;padding:0;color:#777}.exactmetrics-welcome-overlay .exactmetrics-welcome-overlay-content{height:100%}.exactmetrics-welcome-overlay .exactmetrics-welcome-overlay-content iframe{height:100%;width:100%}.swal2-container.exactmetrics-swal-loading{background:#fff;padding:20px;top:112px;height:auto}.swal2-container.exactmetrics-swal-loading.exactmetrics-swal-full-height{top:32px}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal{width:100%;height:100%;border-radius:10px;background:url(../img/loading-background.jpg) no-repeat bottom #f4f3f7;background-size:cover;-webkit-animation-duration:1ms;animation-duration:1ms}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-icon{visibility:hidden;height:0;padding:0}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-header{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-title{font-size:17px;color:#210f59}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-content{color:#9087ac;margin-top:6px;font-size:15px;line-height:1.75;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.swal2-container.exactmetrics-swal-loading .swal2-actions button{display:none}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess{padding:0;background:#f8f6ff}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-icon{visibility:hidden;height:0;width:0;margin:0;padding:0}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal{width:750px;background:none;padding-left:260px;position:relative}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-header{display:block}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-title{font-size:32px;line-height:1.3;color:#210f59;text-align:left}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal #swal2-content{font-size:15px;line-height:1.75;color:#210f59;text-align:left;margin-bottom:20px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal #swal2-content p{font-size:15px;margin:0;font-weight:500}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-actions{margin:0;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled{margin:0;font-size:15px;padding:16px 23px 14px;outline:none}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled .monstericon-long-arrow-right-light{margin-left:14px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled:focus,.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled:hover{border:none;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-confirm{background:#32a27a}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-confirm:focus,.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-confirm:hover{background:#19865f}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-cancel{margin-left:15px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-swal-icons{position:absolute;left:-35px;top:-15px;width:260px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-swal-icons [class^=monstericon-]{position:absolute;color:#6528f5;opacity:.5;font-size:41px;top:114px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-swal-icons [class^=monstericon-]:first-child{font-size:108px;opacity:1;top:-22px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-swal-icons [class^=monstericon-]:nth-child(2){left:35px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-swal-icons [class^=monstericon-].monstericon-exclamation-em-solid:nth-child(2){left:50px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-swal-icons [class^=monstericon-]:nth-child(3){top:147px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-swal-icons [class^=monstericon-]:nth-child(4){left:185px}.exactmetrics_page .exactmetrics-swal .swal2-title{line-height:1.2}.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-error,.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-info{border:none;border-radius:0}.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-error:before,.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-info:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f064";font-size:80px;color:#6528f5}.exactmetrics_page .exactmetrics-swal .swal2-icon .swal2-icon-text,.exactmetrics_page .exactmetrics-swal .swal2-icon .swal2-x-mark{display:none}.exactmetrics_page .exactmetrics-swal .swal2-styled{border-radius:5px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:12px 24px;text-decoration:none;border:0}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-confirm{background:#6528f5}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-confirm:focus,.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-confirm:hover{background-color:#37276a;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-cancel{background:#e9e7ee;color:#37276a}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-cancel:focus,.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-cancel:hover{background-color:#f4f3f7;color:#37276a;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .exactmetrics-swal .swal2-popup{border-radius:10px;padding:40px}.exactmetrics-list-check ul{margin:0;list-style:none;padding-left:0}.exactmetrics-list-check li{font-size:15px;margin-top:18px;padding-left:30px;position:relative;color:#fff}.exactmetrics-list-check li:first-child{margin-top:0}.exactmetrics-list-check li:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f045";font-size:15px;margin-right:10px;color:#fff;position:absolute;left:0;top:0}.exactmetrics-settings-input-select-input .multiselect__tags-wrap{position:relative}.exactmetrics-settings-input-select-input .multiselect__tags-wrap:after{content:attr(data-text);display:inline-block;position:relative;color:#9087ac;bottom:0;background:#fff;border-radius:4px;font-size:14px;vertical-align:top;padding:8px 15px}.exactmetrics-settings-input-select-input .multiselect__placeholder{display:none}.multiselect__content-wrapper{left:30px}.exactmetrics-semrush-cta{background:#f4f3f7;border-left:3px solid #6528f5;padding:20px 26px;border-radius:3px 0 0 3px;position:relative}.exactmetrics-semrush-cta br{display:none}.exactmetrics-semrush-cta .exactmetrics-semrush-cta-close{position:absolute;top:12px;right:12px;cursor:pointer;border:0;background:rgba(0,0,0,0);padding:0;margin:0;outline:none}.exactmetrics-semrush-cta .exactmetrics-semrush-cta-title{font-weight:700;font-size:16px;line-height:20px;color:#393f4c;margin:0}.exactmetrics-semrush-cta .exactmetrics-semrush-cta-content{font-weight:400;font-size:14px;color:#393f4c}.exactmetrics-semrush-cta .exactmetrics-button{background:#6528f5;border-radius:3px;font-weight:400;font-size:14px;border-width:0;padding:7px 12px}.exactmetrics-semrush-cta .exactmetrics-button:active,.exactmetrics-semrush-cta .exactmetrics-button:focus,.exactmetrics-semrush-cta .exactmetrics-button:hover{background:#6333d4;outline:none}.exactmetrics-row-highlight{-webkit-animation-name:color;animation-name:color;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-iteration-count:2;animation-iteration-count:2}@-webkit-keyframes color{0%{background-color:#fff}50%{background-color:#509fe2}to{background-color:#fff}}@keyframes color{0%{background-color:#fff}50%{background-color:#509fe2}to{background-color:#fff}}.exactmetrics-about-block{padding:0;background:#fff;margin-top:40px}@media (max-width:782px){.exactmetrics-about-block{padding:0 24px}}.exactmetrics-about-block h3{color:#210f59;font-size:24px;margin:0 0 20px;line-height:1.4;padding-top:25px}.exactmetrics-about-block p{font-size:15px;line-height:1.75;font-weight:500;color:#210f59}.exactmetrics-about-block:after{content:"";display:table;clear:both}div[class*=" exactmetrics-path-about-"] .exactmetrics-container,div[class^=exactmetrics-path-about-] .exactmetrics-container{width:1094px}@media (max-width:782px){div[class*=" exactmetrics-path-about-"] .exactmetrics-container,div[class^=exactmetrics-path-about-] .exactmetrics-container{padding-left:24px;padding-right:24px}}div[class*=" exactmetrics-path-about-"] .exactmetrics-header,div[class*=" exactmetrics-path-about-"] .exactmetrics-navigation-bar,div[class^=exactmetrics-path-about-] .exactmetrics-header,div[class^=exactmetrics-path-about-] .exactmetrics-navigation-bar{padding-left:20px;padding-right:20px}@media (max-width:782px){div[class*=" exactmetrics-path-about-"] .exactmetrics-header,div[class*=" exactmetrics-path-about-"] .exactmetrics-navigation-bar,div[class^=exactmetrics-path-about-] .exactmetrics-header,div[class^=exactmetrics-path-about-] .exactmetrics-navigation-bar{padding-left:0;padding-right:0}}div[class*=" exactmetrics-path-about-"] .exactmetrics-navigation-bar,div[class^=exactmetrics-path-about-] .exactmetrics-navigation-bar{margin-left:-163px}div[class*=" exactmetrics-path-about-"] .exactmetrics-navigation-bar .exactmetrics-container,div[class^=exactmetrics-path-about-] .exactmetrics-navigation-bar .exactmetrics-container{width:auto}div[class*=" exactmetrics-path-about-"] .exactmetrics-addons-list,div[class^=exactmetrics-path-about-] .exactmetrics-addons-list{padding:0 20px}div[class*=" exactmetrics-path-about-"] .exactmetrics-addons-list .exactmetrics-addon,div[class^=exactmetrics-path-about-] .exactmetrics-addons-list .exactmetrics-addon{width:calc(33.3333% - 21px)}@media (max-width:782px){div[class*=" exactmetrics-path-about-"] .exactmetrics-addons-list .exactmetrics-addon,div[class^=exactmetrics-path-about-] .exactmetrics-addons-list .exactmetrics-addon{width:100%}}div[class*=" exactmetrics-path-about-"] .exactmetrics-addon-image,div[class^=exactmetrics-path-about-] .exactmetrics-addon-image{min-height:74px;padding:5px;display:-webkit-box;display:-ms-flexbox;display:flex;height:74px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}div[class*=" exactmetrics-path-about-"] .monstericon-star:before,div[class^=exactmetrics-path-about-] .monstericon-star:before{color:#fdb72c}.exactmetrics-lite-vs-pro-table{padding:0}.exactmetrics-lite-vs-pro-table .exactmetrics-lite-vs-pro-footer{background:#e9e7ee}.exactmetrics-lite-vs-pro-header{text-align:center;padding:40px 0 22px}.exactmetrics-lite-vs-pro-header h1{font-size:22px;margin:0 0 22px}.exactmetrics-features-table{width:100%;border-collapse:collapse;position:relative;margin-bottom:95px}.exactmetrics-features-table tr{position:relative}.exactmetrics-features-table tr:first-child td{border-radius:0 10px 0 0}.exactmetrics-features-table tr:first-child .exactmetrics-features-table-feature-title+td{border-radius:10px 0 0 0}.exactmetrics-features-table tr:first-child:after{display:none}.exactmetrics-features-table tr:after{display:block;border-top:1px solid #bcb7cd;opacity:.5;content:"";position:absolute;left:0;right:40px}.exactmetrics-features-table tbody tr:last-child td{padding:0;background:none}.exactmetrics-features-table tbody tr:last-child:after{display:none}.exactmetrics-features-table td,.exactmetrics-features-table th{width:33.33333%;padding:40px;vertical-align:top}.exactmetrics-features-table td p,.exactmetrics-features-table th p{margin:0}.exactmetrics-features-table th{text-align:left;border-right:none;font-size:24px;line-height:1.4}.exactmetrics-features-table th i{width:40px;height:40px;border-radius:50%;color:#210f59;background-color:rgba(33,15,89,.1);display:inline-block;text-align:center;line-height:40px;font-size:15px;margin-right:30px}.exactmetrics-features-table td{background:#f4f3f7}.exactmetrics-features-table td p{font-size:17px;line-height:1.5}.exactmetrics-features-table td p>span{margin-top:16px;display:block}.exactmetrics-features-table .exactmetrics-features-table-feature-title{background:none;padding-left:0}.exactmetrics-features-table .exactmetrics-features-table-feature-title i{float:left;font-size:23px;color:#6528f5;margin-right:18px}.exactmetrics-features-table .exactmetrics-features-table-feature-title p{font-weight:700;font-size:17px;color:#37276a;line-height:1.5;margin-left:41px}.exactmetrics-features-full:before,.exactmetrics-features-none:before,.exactmetrics-features-partial:before{display:block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f026";font-size:20px;margin-right:10px;color:#d4393d;position:relative;top:2px;margin-bottom:16px}.exactmetrics-features-full:before,.exactmetrics-features-partial:before{content:"\f022";color:#19865f}.exactmetrics-features-table .exactmetrics-lite-vs-pro-footer{padding:40px;text-align:center;border-radius:0 0 10px 10px;border-top:1px solid #bcb7cd}.exactmetrics-features-table .exactmetrics-lite-vs-pro-footer h3{color:#210f59;font-size:17px;max-width:350px;line-height:1.5;margin:0 auto 16px}.exactmetrics-features-table .exactmetrics-lite-vs-pro-footer p{margin-bottom:24px;font-size:15px;line-height:1.75;color:#210f59;max-width:350px;margin-left:auto;margin-right:auto}.exactmetrics-two-column{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-two-column>div{width:50%}.exactmetrics-about-docs-row:after{display:table;clear:both;content:""}.exactmetrics-about-docs-image{width:158px;float:left;margin-right:32px}.exactmetrics-about-docs-image .exactmetrics-bg-img{width:158px;background-color:#fff;border-radius:5px;height:158px;padding-top:0}.exactmetrics-about-docs-image .exactmetrics-bg-img:after{background-position:50%;left:10px;right:10px;top:10px;bottom:10px}.exactmetrics-about-docs-1:after{background-image:url(../img/about-icon-connect.png)}.exactmetrics-about-docs-2:after{background-image:url(../img/about-icon-guide.png)}.exactmetrics-about-docs-3:after{background-image:url(../img/about-icon-gdpr.png)}.exactmetrics-about-docs-4:after{background-image:url(../img/about-icon-addons-em.png)}.exactmetrics-about-docs-5:after{background-image:url(../img/about-icon-ecommerce.png)}.exactmetrics-bg-img.exactmetrics-about-team{padding-top:70%}.exactmetrics-bg-img.exactmetrics-about-team:after{background-image:url(../img/about-team-photo.png)}.exactmetrics-about-docs-text h3{color:#210f59;font-size:17px;line-height:1.5}.exactmetrics-about-docs-text p{margin:16px 0 24px}.exactmetrics-about-page-right-image{float:right;width:48%;text-align:center;margin:0 0 0 20px}@media (max-width:782px){.exactmetrics-about-page-right-image{width:100%;float:none;margin:0 0 20px}}.exactmetrics-about-page-right-image img{width:100%}.exactmetrics-about-page-right-image figcaption{color:#4d3f7a;margin-top:5px}.exactmetrics-about-page-right-image iframe{max-width:100%}.exactmetrics-page-title{padding:32px;line-height:1.3;border-bottom:1px solid #e9e7ee}.exactmetrics-page-title h2{margin:0;font-size:32px;color:#210f59}.exactmetrics-about .exactmetrics-addon-top{padding:40px 40px 24px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.exactmetrics-about .exactmetrics-addon-noicon{margin-bottom:10px}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon{padding-bottom:145px}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon .exactmetrics-addon-message{padding:24px 40px 40px;background:rgba(0,0,0,0)}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-interior{border-top:1px solid #ccc;padding:24px 0 0;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;-webkit-box-align:start;-ms-flex-align:start;align-items:start;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-interior .exactmetrics-addon-status{margin-bottom:24px}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-interior .exactmetrics-addon-action{-ms-flex-item-align:start;align-self:start}.exactmetrics-about .exactmetrics-upsell-row{margin-top:70px;background:rgba(0,0,0,0)}.exactmetrics-about .exactmetrics-upsell-list-item>i{min-width:23px}.exactmetrics-about .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text i{margin-left:14px;font-size:15px}.exactmetrics-bg-img.exactmetrics-em-logo-color{padding-top:8%;width:387px;max-width:100%}@media (max-width:782px){.exactmetrics-bg-img.exactmetrics-em-logo-color{width:133px;padding-top:10%}}.exactmetrics-bg-img.exactmetrics-em-logo-color:after{background-position:50%;background-image:url(../img/em-logo.png)}.exactmetrics-about-page-top{padding:60px 0;background:radial-gradient(64.37% 131.18% at 50.04% 32.71%,hsla(0,0%,100%,.1) 0,hsla(0,0%,100%,0) 100%),rgba(101,40,245,.1);border-bottom:1px solid #e9e7ee;margin-bottom:635px}@media (max-width:782px){.exactmetrics-about-page-top{margin-bottom:0}}.exactmetrics-about-page-top h3{color:#6528f5;margin:0 0 0 135px;font-size:20px;line-height:1.3;font-weight:400}@media (max-width:782px){.exactmetrics-about-page-top h3{margin-left:0}}.exactmetrics-about-page-top h2{max-width:570px;margin-left:135px;margin-top:9px}@media (max-width:782px){.exactmetrics-about-page-top h2{margin-left:0;margin-right:0}}.exactmetrics-about-page-top .exactmetrics-about-top-button{width:750px;max-width:100%;margin-left:135px}@media (max-width:782px){.exactmetrics-about-page-top .exactmetrics-about-top-button{margin-left:0}}.exactmetrics-about-page-top .exactmetrics-about-top-button p{max-width:300px;margin-right:100px}@media (max-width:782px){.exactmetrics-about-page-top .exactmetrics-about-top-button p{margin-right:24px}}.exactmetrics-about-page-top .exactmetrics-about-top-button .exactmetrics-button{float:right;margin-top:10px}@media (max-width:782px){.exactmetrics-about-page-top .exactmetrics-about-top-button .exactmetrics-button{float:none}}.exactmetrics-about-page-top .exactmetrics-container{width:1094px}.exactmetrics-bg-img.exactmetrics-about-getting-started-video{margin-bottom:-635px;padding-top:52%;cursor:pointer}@media (max-width:782px){.exactmetrics-bg-img.exactmetrics-about-getting-started-video{margin-bottom:0}}.exactmetrics-bg-img.exactmetrics-about-getting-started-video:after{background-position:100% 100%;background-image:url(../img/about-getting-started-video.png)}.exactmetrics-about-page-top h2{font-size:24px;color:#210f59;line-height:1.4;margin-bottom:20px}@media (max-width:782px){.exactmetrics-about-page-top h2{font-size:20px}}.exactmetrics-about-page-top p{font-size:15px;line-height:1.7;color:#210f59}.exactmetrics-container.exactmetrics-about-middle-title{text-align:center;margin-top:-100px}@media (max-width:782px){.exactmetrics-container.exactmetrics-about-middle-title{margin-top:0;padding:0 24px}}.exactmetrics-container.exactmetrics-about-middle-title p{max-width:500px;margin:0 auto;font-size:15px;line-height:1.75;color:#210f59}.exactmetrics-container.exactmetrics-about-middle-title h2{font-size:24px;color:#210f59;line-height:1.4;margin-bottom:19px}.exactmetrics-admin-page .exactmetrics-wide-purple{background:#6528f5;padding:72px 0;margin-bottom:100px}.exactmetrics-admin-page .exactmetrics-wide-purple .exactmetrics-separator{background:rgba(0,0,0,.2)}.exactmetrics-about-upgrade-box-flex{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:45px}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box{width:334px;padding:65px 93px 56px;background:#210f59;border-radius:10px;color:#fff;text-align:center;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box span{font-size:17px;line-height:1.5;display:inline-block}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box span.exactmetrics-price-large{font-size:48px;line-height:1.3;font-weight:700}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box span.exactmetrics-price-term{font-size:15px;line-height:1.75;opacity:.5}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box .exactmetrics-button{background-color:#fff;color:#210f59;margin-top:27px;font-weight:500}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-checkboxes{padding-left:95px;max-width:650px;width:100%}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-checkboxes h3{color:#fff;font-size:24px;line-height:1.4;font-weight:500;margin-top:17px}.exactmetrics-testimonials-slider{position:relative;padding:0 40px;margin-top:60px}.exactmetrics-testimonials-slides{position:relative;overflow:hidden}.exactmetrics-testimonials-slide{visibility:hidden;position:absolute;top:0;left:0;width:100%;-webkit-transition:.5s;transition:.5s;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-testimonials-slide .exactmetrics-testimonial-image{padding:0 60px 0 80px;-ms-flex-negative:0;flex-shrink:0;margin-top:5px}.exactmetrics-testimonials-slide .exactmetrics-testimonial-image .exactmetrics-bg-img{width:90px;border-radius:50%;height:90px;border:5px solid #37276a;overflow:hidden}.exactmetrics-testimonials-slide .exactmetrics-about-testimonial-avatar-1:after{background-image:url(../img/testimonial-image-1.png)}.exactmetrics-testimonials-slide .exactmetrics-about-testimonial-avatar-2:after{background-image:url(../img/testimonial-image-2.png)}.exactmetrics-testimonials-slide .exactmetrics-about-testimonial-avatar-3:after{background-image:url(../img/testimonial-image-3.jpg)}.exactmetrics-testimonials-slide .exactmetrics-testimonial-text{padding-right:70px}.exactmetrics-testimonials-slide .exactmetrics-testimonial-text p{color:#fff;font-size:20px;line-height:1.5;margin:0 0 20px}.exactmetrics-testimonials-slide .exactmetrics-testimonial-text p.exactmetrics-testimonial-text-author{font-size:16px;line-height:1.75;color:#e9e7ee}.exactmetrics-testimonials-slide.exactmetrics-testimonials-slide-active{visibility:visible;position:static}.exactmetrics-testimonials-slide h2{margin:0}.exactmetrics-testimonials-slide img{width:300px}.exactmetrics-testimonials-slider-control{border:none;background:none;color:#fff;font-size:40px;line-height:1;position:absolute;top:45px;margin-top:-20px;padding:0;cursor:pointer}.exactmetrics-testimonials-slider-control.exactmetrics-testimonials-slider-control-left{left:0}.exactmetrics-testimonials-slider-control.exactmetrics-testimonials-slider-control-left i:before{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}.exactmetrics-testimonials-slider-control.exactmetrics-testimonials-slider-control-right{right:0}.exactmetrics-testimonials-slider-control.exactmetrics-testimonials-slider-control-right i:before{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.exactmetrics-about-documentation{background:#f4f3f7;border-radius:10px;padding:72px 100px;margin:40px 0 95px}@media (max-width:782px){.exactmetrics-about-documentation{margin:40px 0;padding:32px 24px}.exactmetrics-about-documentation .exactmetrics-about-docs-image{float:none}}.exactmetrics-full-width-upsell .exactmetrics-full-width-upsell-inner,.exactmetrics-upsell-row .exactmetrics-upsell-row-inner,.exactmetrics-upsell .exactmetrics-upsell-title .exactmetrics-upsell-title-inner{max-width:1400px;margin:0 auto}.exactmetrics-reports-page .exactmetrics-upsell{border-bottom:1px solid #d6e2ed}.exactmetrics-upsell-row{width:100%;background:rgba(101,40,245,.05)}.exactmetrics-upsell-row .exactmetrics-upsell-row-inner{padding:0 96px}@media (max-width:782px){.exactmetrics-upsell-row .exactmetrics-upsell-row-inner{padding:0 24px}}.exactmetrics-upsell-row h3{margin:0 0 60px;font-size:15px}.exactmetrics-upsell-row .exactmetrics-upsell-list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding-bottom:15px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 31%;flex:1 0 31%;margin-bottom:45px}.exactmetrics-report-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item,.exactmetrics-settings-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item{-webkit-box-flex:1;-ms-flex:1 0 21%;flex:1 0 21%}@media (max-width:782px){.exactmetrics-upsell-row .exactmetrics-upsell-list-item{width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}}.exactmetrics-upsell-row .exactmetrics-upsell-list-item i{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;color:#6528f5;font-size:23px;margin-right:18px;margin-top:6px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text{line-height:1.7;color:#37276a;max-width:232px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;font-weight:500;text-decoration:none}.exactmetrics-report-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text,.exactmetrics-settings-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text{max-width:170px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text{cursor:pointer}.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text:focus,.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text:hover{color:#6528f5}.exactmetrics-full-width-upsell{background:#f7f3fe;min-height:445px;margin-bottom:116px}.exactmetrics-reports-page .exactmetrics-full-width-upsell{margin-bottom:0}@media (max-width:959px){.exactmetrics-full-width-upsell{margin-bottom:48px}}.exactmetrics-full-width-upsell.exactmetrics-full-width-no-space{margin-bottom:0;min-height:380px}.exactmetrics-full-width-upsell.exactmetrics-full-width-no-space+.exactmetrics-full-width-upsell{margin-top:-100px}.exactmetrics-full-width-upsell .exactmetrics-full-width-upsell-inner{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;position:relative}.exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-full-width-upsell-inner{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-full-width-upsell-inner .exactmetrics-upsell-left{padding-left:0;padding-top:100px}.exactmetrics-full-width-upsell h2{color:#210f59;font-size:24px;line-height:1.4}.exactmetrics-full-width-upsell p{font-size:15px;line-height:1.7;color:#210f59;margin:11px 0 0}.exactmetrics-full-width-upsell p.exactmetrics-upsell-pbold{font-weight:700;margin-top:0}.exactmetrics-full-width-upsell a.exactmetrics-green-text{color:#32a27a;font-weight:400}.exactmetrics-full-width-upsell a.exactmetrics-green-text:focus,.exactmetrics-full-width-upsell a.exactmetrics-green-text:hover{color:#19865f;text-decoration:none}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons{margin-top:20px;margin-bottom:72px}@media (max-width:1099px){.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons{margin-bottom:48px}}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons .exactmetrics-button:first-child{margin-right:18px}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons .exactmetrics-button-text .monstericon-arrow-right{font-size:12px;vertical-align:text-top;margin-left:10px}.exactmetrics-upsell-half{position:relative;padding-top:56px}.exactmetrics-upsell-half.exactmetrics-upsell-left{padding-left:96px;padding-top:56px;width:40%}@media (max-width:1099px){.exactmetrics-upsell-half.exactmetrics-upsell-left{width:50%;padding-left:24px}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-left{padding-top:24px}}.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image{max-width:100%;left:0;height:auto;padding-top:67%}.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image:after{background-position:50%;left:-16%;right:-16%;top:-10%;bottom:-10%}@media (min-width:960px){.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image{display:none}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-left{width:100%;padding-right:24px}}.exactmetrics-upsell-half.exactmetrics-upsell-right{padding-left:96px;padding-top:0;width:60%}@media (max-width:1099px){.exactmetrics-upsell-half.exactmetrics-upsell-right{width:50%}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-right{display:none}}.exactmetrics-upsell-half.exactmetrics-upsell-right .exactmetrics-em-upsell-screen{position:absolute;bottom:-140px;left:68px}.exactmetrics-upsell-half h3{color:#6528f5;font-size:20px;line-height:1.3;font-weight:400;margin:0 0 15px}.exactmetrics-upsell a{color:#6528f5}.exactmetrics-upsell a:focus,.exactmetrics-upsell a:hover{color:#37276a}.exactmetrics-upsell .exactmetrics-upsell-title{border-bottom:1px solid #e9e7ee}.exactmetrics-upsell .exactmetrics-upsell-title h2{color:#210f59;font-size:32px;margin-left:100px;margin-top:45px;margin-bottom:35px}@media (max-width:782px){.exactmetrics-upsell .exactmetrics-upsell-title h2{margin-left:24px;line-height:1.4;margin-top:24px;margin-bottom:24px}}.exactmetrics-upsell .exactmetrics-upsell-half h3{font-size:24px;color:#210f59;font-weight:700}.exactmetrics-upsell-bottom{background:#f7f9fd;border-top:1px solid #d6e2ed;padding:36px 50px 30px;position:relative}@media (max-width:767px){.exactmetrics-upsell-bottom{padding-left:20px;padding-right:20px}}.exactmetrics-upsell-bottom .exactmetrics-button-top{position:absolute;top:0;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}@media (max-width:767px){.exactmetrics-upsell-bottom .exactmetrics-button-top{min-width:288px}}.exactmetrics-upsell-bottom img{max-width:100%}.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-upsell-screen,.exactmetrics-screen-image{width:848px;padding-top:0;height:566px}@media (max-width:1099px){.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-upsell-screen,.exactmetrics-screen-image{left:20px}}.exactmetrics-em-ecommerce-upsell-screen:after,.exactmetrics-em-upsell-screen:after,.exactmetrics-screen-image:after{background-position:100% 100%;background-image:url(../img/upsell-screen.png)}.exactmetrics-em-logo-text{width:432px;height:56px;margin-bottom:28px;padding-top:0;max-width:100%}@media (max-width:1400px){.exactmetrics-em-logo-text{padding-top:13%;height:auto}}@media (max-width:959px){.exactmetrics-em-logo-text{padding-top:8%}}.exactmetrics-em-logo-text:after{background-image:url(../img/exactmetrics.png)}.exactmetrics-em-addons-upsell-screen,.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-publishers-upsell-screen{bottom:auto;top:-90px}.exactmetrics-em-addons-upsell-screen:after,.exactmetrics-em-ecommerce-upsell-screen:after,.exactmetrics-em-publishers-upsell-screen:after{background-position:100% 0;background-image:url(../img/ecommerce-screen.png)}.exactmetrics-em-publishers-upsell-screen:after{background-image:url(../img/publishers-screen.png)}.exactmetrics-em-addons-upsell-screen{margin-bottom:-180px;top:-70px}.exactmetrics-em-addons-upsell-screen:after{background-image:url(../img/addons-help-screen.png)}.exactmetrics-em-search-console-upsell-screen:after{background-image:url(../img/search-console-screen.png)}.exactmetrics-em-real-time-upsell-screen:after{background-image:url(../img/real-time-screen.png)}.exactmetrics-em-site-speed-upsell-screen:after{background-image:url(../img/site-speed-screen.png)}.exactmetrics-em-forms-report-upsell-screen:after{background-image:url(../img/forms-report-screen.png)}.exactmetrics-em-dimensions-report-upsell-screen:after{background-image:url(../img/dimensions-report-screen.png)}.exactmetrics-em-forms-upsell-screen{width:758px;max-width:100%;margin-top:-75px}.exactmetrics-em-forms-upsell-screen:after{background-position:50%;background-image:url(../img/forms-screen.png)}.exactmetrics-em-optimize-upsell-screen{width:758px;max-width:100%;margin-left:-10%}.exactmetrics-em-optimize-upsell-screen:after{background-position:50%;background-image:url(../img/optimize-screen.png)}.exactmetrics-em-dimensions-upsell-screen{width:758px;max-width:100%}.exactmetrics-em-dimensions-upsell-screen:after{background-position:50%;background-image:url(../img/custom-dimensions-screen.png)}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-left:0}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half p{max-width:400px;margin-bottom:28px}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-left:96px}.exactmetrics-icon-background-large{position:absolute;font-size:130px;color:rgba(101,40,245,.05);left:25px;top:25px;line-height:1;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator{font-size:13px;color:#fff;background-color:#32a27a;border-radius:3px;font-weight:500;padding:4px 8px;vertical-align:top;margin-left:10px;display:inline-block;margin-top:-4px;cursor:pointer;text-decoration:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:hover,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:hover{color:#fff;background:#19865f}.exactmetrics-report .exactmetrics-upsell-dismissable{margin-left:-32px;margin-right:-32px;padding-left:32px;padding-right:32px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable{text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable h3{font-size:17px;color:#210f59;line-height:1.5;font-weight:700}.exactmetrics-report .exactmetrics-upsell-dismissable p{font-size:15px;margin-bottom:25px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{width:50%;padding-top:38px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{padding-left:32px;padding-right:32px;width:100%;text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half:first-child p{max-width:524px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-left:40px;color:#9087ac}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-left:0;margin-top:20px}}.exactmetrics-report .exactmetrics-upsell-dismiss{position:absolute;right:20px;top:20px;z-index:10}.exactmetrics-forms-image-wpf-upsell{margin-bottom:-140px;padding-top:85%}@media (max-width:782px){.exactmetrics-forms-image-wpf-upsell{margin-bottom:0}}.exactmetrics-forms-image-wpf-upsell:after{background-position:100% 100%;background-image:url(../img/forms-wpforms-upsell.png)}.exactmetrics-upsell-row{margin-top:70px;background:rgba(0,0,0,0)}.exactmetrics-upsell-list-item-text{font-size:15px}.exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text i{margin-left:14px;font-size:15px}.exactmetrics-about-middle-title .exactmetrics-button{margin:0 0 56px}.exactmetrics-bg-img.exactmetrics-about-getting-started-video{margin-bottom:-596px}.exactmetrics-container{width:1094px}.exactmetrics-bottom-buttons{margin:60px auto;text-align:center}.exactmetrics-bottom-buttons .exactmetrics-button{margin:20px 0}.exactmetrics-welcome-header-logo{text-align:center}.exactmetrics-em-logo-icon{padding:0;width:53px;height:46px;display:inline-block}.exactmetrics-em-logo-icon:after{background-position:0;background-image:url(../img/em-logo.png);background-size:auto 100%}.exactmetrics-em-migration-image{padding-top:55%}.exactmetrics-em-migration-image:after{background-image:url(../img/migration-screen.png)}.exactmetrics-onboarding-wizard-content .subtitle{padding-left:0}.exactmetrics-migration-step{text-align:center}.exactmetrics-migration-step h1{font-size:32px;color:#210f59;line-height:1.25;margin:32px auto 30px;max-width:500px}.exactmetrics-migration-step h2{font-size:24px;line-height:1.25;color:#210f59}.exactmetrics-migration-step p{font-size:16px;line-height:1.75;margin:0 auto;max-width:560px}.exactmetrics-migration-step .exactmetrics-button.exactmetrics-button-large{font-size:18px;line-height:21px;padding:18px 44px}.exactmetrics-migration-step .exactmetrics-button i{margin-left:10px}.exactmetrics-migration-step .exactmetrics-migration-footer{margin-top:50px;color:#210f59;font-size:14px;line-height:17px}.exactmetrics-migration-step .exactmetrics-migration-footer i{margin-right:13px}.exactmetrics-migration-step .exactmetrics-migration-footer i:after{color:#338eef}.exactmetrics-migration-step.exactmetrics-migration-step-upsell{text-align:left;max-width:582px}.exactmetrics-migration-step.exactmetrics-migration-step-upsell h1{margin:16px 0}.exactmetrics-migration-step.exactmetrics-migration-step-upsell p{margin:15px 0;max-width:580px}.exactmetrics-migration-step.exactmetrics-migration-step-upsell .exactmetrics-migration-checkboxes{max-width:100%}.exactmetrics-migration-step.exactmetrics-migration-step-upsell .exactmetrics-paragraph-limit{margin:0 auto}.exactmetrics-migration-step.exactmetrics-migration-step-upsell .exactmetrics-button-text{margin-left:27px;color:#9087ac}.exactmetrics-migration-step.exactmetrics-migration-step-upsell .monstericon-external-link-alt{color:#ac8afa}.exactmetrics-migration-checkboxes{margin:30px auto;max-width:400px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;text-align:left;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.exactmetrics-migration-checkboxes .exactmetrics-migration-checkbox{width:41%;font-size:18px;line-height:1.75;color:#210f59;margin-bottom:4px}.exactmetrics-migration-checkboxes .exactmetrics-migration-checkbox i{margin-right:10px;color:#32a27a}.exactmetrics-highlight{color:#6528f5}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:nth-child(9){background-color:#32a27a}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:nth-child(9):after{content:"\f045"}.exactmetrics-migration-info{background:#ecf5fe;max-width:500px;display:inline-block;padding:15px;border-radius:5px;color:#210f59;font-size:14px;line-height:1.4;margin-top:15px}button[data-v-bcb9681a]{margin-top:3px}
lite/assets/vue/css/wizard.rtl.css CHANGED
@@ -1 +1 @@
1
- @import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap);.exactmetrics-admin-page fieldset[disabled] .multiselect{pointer-events:none}.exactmetrics-admin-page .multiselect__spinner{position:absolute;left:1px;top:1px;width:48px;height:35px;background:#fff;display:block}.exactmetrics-admin-page .multiselect__spinner:after,.exactmetrics-admin-page .multiselect__spinner:before{position:absolute;content:"";top:50%;right:50%;margin:-8px -8px 0 0;width:16px;height:16px;border-radius:100%;border:2px solid rgba(0,0,0,0);border-top-color:#b7c9d9;-webkit-box-shadow:0 0 0 1px rgba(0,0,0,0);box-shadow:0 0 0 1px rgba(0,0,0,0)}.exactmetrics-admin-page .multiselect__spinner:before{-webkit-animation:a 2.4s cubic-bezier(.41,.26,.2,.62);animation:a 2.4s cubic-bezier(.41,.26,.2,.62);-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.exactmetrics-admin-page .multiselect__spinner:after{-webkit-animation:a 2.4s cubic-bezier(.51,.09,.21,.8);animation:a 2.4s cubic-bezier(.51,.09,.21,.8);-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.exactmetrics-admin-page .multiselect__loading-enter-active,.exactmetrics-admin-page .multiselect__loading-leave-active{-webkit-transition:opacity .4s ease-in-out;transition:opacity .4s ease-in-out;opacity:1}.exactmetrics-admin-page .multiselect__loading-enter,.exactmetrics-admin-page .multiselect__loading-leave-active{opacity:0}.exactmetrics-admin-page .multiselect,.exactmetrics-admin-page .multiselect__input,.exactmetrics-admin-page .multiselect__single{font-family:inherit;font-size:16px;-ms-touch-action:manipulation;touch-action:manipulation}.exactmetrics-admin-page .multiselect{-webkit-box-sizing:content-box;box-sizing:content-box;display:block;position:relative;width:100%;min-height:40px;text-align:right;color:#35495e}.exactmetrics-admin-page .multiselect *{-webkit-box-sizing:border-box;box-sizing:border-box}.exactmetrics-admin-page .multiselect:focus{outline:none}.exactmetrics-admin-page .multiselect--disabled{opacity:.6}.exactmetrics-admin-page .multiselect--active{z-index:1}.exactmetrics-admin-page .multiselect--active:not(.multiselect--above) .multiselect__current,.exactmetrics-admin-page .multiselect--active:not(.multiselect--above) .multiselect__input,.exactmetrics-admin-page .multiselect--active:not(.multiselect--above) .multiselect__tags{border-bottom-right-radius:0;border-bottom-left-radius:0}.exactmetrics-admin-page .multiselect--active .multiselect__select{-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg)}.exactmetrics-admin-page .multiselect--above.multiselect--active .multiselect__current,.exactmetrics-admin-page .multiselect--above.multiselect--active .multiselect__input,.exactmetrics-admin-page .multiselect--above.multiselect--active .multiselect__tags{border-top-right-radius:0;border-top-left-radius:0}.exactmetrics-admin-page .multiselect__input,.exactmetrics-admin-page .multiselect__single{position:relative;display:inline-block;min-height:20px;line-height:20px;border:none;border-radius:5px;background:#fff;padding:0 5px 0 0;width:100%;-webkit-transition:border .1s ease;transition:border .1s ease;-webkit-box-sizing:border-box;box-sizing:border-box;margin-bottom:8px;vertical-align:top}.exactmetrics-admin-page .multiselect__input:-ms-input-placeholder{color:#35495e}.exactmetrics-admin-page .multiselect__input::-webkit-input-placeholder{color:#35495e}.exactmetrics-admin-page .multiselect__input::-moz-placeholder{color:#35495e}.exactmetrics-admin-page .multiselect__input::-ms-input-placeholder{color:#35495e}.exactmetrics-admin-page .multiselect__input::placeholder{color:#35495e}.exactmetrics-admin-page .multiselect__tag~.multiselect__input,.exactmetrics-admin-page .multiselect__tag~.multiselect__single{width:auto}.exactmetrics-admin-page .multiselect__input:hover,.exactmetrics-admin-page .multiselect__single:hover{border-color:#cfcfcf}.exactmetrics-admin-page .multiselect__input:focus,.exactmetrics-admin-page .multiselect__single:focus{border-color:#a8a8a8;outline:none}.exactmetrics-admin-page .multiselect__single{padding-right:5px;margin-bottom:8px}.exactmetrics-admin-page .multiselect__tags-wrap{display:inline}.exactmetrics-admin-page .multiselect__tags{min-height:40px;display:block;padding:32px 32px 30px;border-radius:5px;background:#f4f3f7;font-size:14px}.exactmetrics-admin-page .multiselect__tag{position:relative;display:inline-block;padding:10px 27px 10px 15px;border-radius:5px;margin-left:10px;color:#fff;line-height:1;background:#6528f5;white-space:nowrap;overflow:hidden;max-width:100%;text-overflow:ellipsis;font-size:14px}.exactmetrics-admin-page .multiselect__tag.exactmetrics-tag-forced{padding-right:15px}.exactmetrics-admin-page .multiselect__tag.exactmetrics-tag-forced i{display:none}.exactmetrics-admin-page .multiselect__tag-icon{cursor:pointer;position:absolute;right:0;top:0;bottom:0;font-weight:400;font-style:normal;width:32px;text-align:center;line-height:38px;-webkit-transition:all .2s ease;transition:all .2s ease;border-radius:5px;margin-right:0}.exactmetrics-admin-page .multiselect__tag-icon:hover{background:rgba(0,0,0,0)}.exactmetrics-admin-page .multiselect__tag-icon:after{content:"\f046";color:#fff;line-height:2;margin-top:1px;font-size:16px;display:block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.exactmetrics-admin-page .multiselect__tag-icon:hover:after{color:#9087ac}.exactmetrics-admin-page .multiselect__tag-icon:focus{outline:none}.exactmetrics-admin-page .multiselect__tag-icon:focus:after{text-decoration:underline;color:#fff}.exactmetrics-admin-page .multiselect__current{min-height:40px;overflow:hidden;padding:8px 12px 0 30px;white-space:nowrap;border-radius:5px;border:1px solid #e8e8e8}.exactmetrics-admin-page .multiselect__current,.exactmetrics-admin-page .multiselect__select{line-height:16px;-webkit-box-sizing:border-box;box-sizing:border-box;display:block;margin:0;text-decoration:none;cursor:pointer}.exactmetrics-admin-page .multiselect__select{display:none}.exactmetrics-admin-page .multiselect__placeholder{color:#adadad;display:inline-block;margin-bottom:10px;padding-top:2px}.exactmetrics-admin-page .multiselect--active .multiselect__placeholder{display:none}.exactmetrics-admin-page .multiselect__content-wrapper{position:absolute;display:block;background:#fff;max-height:240px;overflow:auto;border:1px solid #f4f3f7;border-top:none;border-radius:3px;z-index:1;-webkit-overflow-scrolling:touch;padding:6px}.exactmetrics-admin-page .multiselect__content{list-style:none;display:inline-block;padding:0;margin:0;min-width:100%;vertical-align:top}.exactmetrics-admin-page .multiselect--above .multiselect__content-wrapper{bottom:100%;border-bottom-right-radius:0;border-bottom-left-radius:0;border-top-right-radius:5px;border-top-left-radius:5px;border-bottom:none;border-top:1px solid #e8e8e8}.exactmetrics-admin-page .multiselect__content::webkit-scrollbar{display:none}.exactmetrics-admin-page .multiselect__element{display:block}.exactmetrics-admin-page .multiselect__option{display:block;padding:10px;line-height:16px;text-decoration:none;text-transform:none;vertical-align:middle;position:relative;cursor:pointer;white-space:nowrap;font-size:14px}.exactmetrics-admin-page .multiselect__option:after{top:0;left:0;position:absolute;line-height:40px;padding-left:12px;padding-right:20px;font-size:13px}.exactmetrics-admin-page .multiselect__option--highlight{background:#f4f3f7;outline:none;color:#210f59}.exactmetrics-admin-page .multiselect__option--highlight:after{content:attr(data-select);background:#f4f3f7;color:#210f59}.exactmetrics-admin-page .multiselect__option--selected{background:#f4f3f7;color:#210f59;font-weight:700}.exactmetrics-admin-page .multiselect__option--selected:after{content:attr(data-selected);color:silver}.exactmetrics-admin-page .multiselect__option--selected.multiselect__option--highlight{background:#6528f5;color:#fff}.exactmetrics-admin-page .multiselect__option--selected.multiselect__option--highlight:after{background:#6528f5;content:attr(data-deselect);color:#fff}.exactmetrics-admin-page .multiselect--disabled{background:#ededed;pointer-events:none}.exactmetrics-admin-page .multiselect--disabled .multiselect__current,.exactmetrics-admin-page .multiselect--disabled .multiselect__select{background:#ededed;color:#a6a6a6}.exactmetrics-admin-page .multiselect__option--disabled{background:#ededed!important;color:#a6a6a6!important;cursor:text;pointer-events:none}.exactmetrics-admin-page .multiselect__option--group{background:#ededed;color:#35495e}.exactmetrics-admin-page .multiselect__option--group.multiselect__option--highlight{background:#35495e;color:#fff}.exactmetrics-admin-page .multiselect__option--group.multiselect__option--highlight:after{background:#35495e}.exactmetrics-admin-page .multiselect__option--disabled.multiselect__option--highlight{background:#dedede}.exactmetrics-admin-page .multiselect__option--group-selected.multiselect__option--highlight{background:#6528f5;color:#fff}.exactmetrics-admin-page .multiselect__option--group-selected.multiselect__option--highlight:after{background:#6528f5;content:attr(data-deselect);color:#fff}.exactmetrics-admin-page .multiselect-enter-active,.exactmetrics-admin-page .multiselect-leave-active{-webkit-transition:all .15s ease;transition:all .15s ease}.exactmetrics-admin-page .multiselect-enter,.exactmetrics-admin-page .multiselect-leave-active{opacity:0}.exactmetrics-admin-page .multiselect__strong{margin-bottom:8px;line-height:20px;display:inline-block;vertical-align:top}.exactmetrics-admin-page [dir=rtl] .multiselect{text-align:left}.exactmetrics-admin-page [dir=rtl] .multiselect__select{left:auto;right:1px}.exactmetrics-admin-page [dir=rtl] .multiselect__tags{padding:8px 40px 0 8px}.exactmetrics-admin-page [dir=rtl] .multiselect__content{text-align:left}.exactmetrics-admin-page [dir=rtl] .multiselect__option:after{left:auto;right:0}.exactmetrics-admin-page [dir=rtl] .multiselect__clear{left:auto;right:12px}.exactmetrics-admin-page [dir=rtl] .multiselect__spinner{left:auto;right:1px}@-webkit-keyframes a{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-2turn);transform:rotate(-2turn)}}@keyframes a{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-2turn);transform:rotate(-2turn)}}*{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}body{font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.exactmetrics-onboarding-header{text-align:center;background-color:#210f59;padding:20px}.exactmetrics-header-navigation{display:none}.exactmetrics-onboarding-header h1{margin:0;line-height:1}img{max-width:100%}a{color:#6528f5}a:focus,a:hover{color:#37276a}.exactmetrics-onboarding-wizard-container{margin:0 auto;width:750px;position:relative}.exactmetrics-onboarding-wizard-steps{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:60px;position:absolute;left:100%;margin-left:138px;width:40px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.exactmetrics-onboarding-wizard-step-line{background:#e9e7ee;height:32px;width:4px;margin:14px 0;border-radius:10px}.exactmetrics-onboarding-wizard-step-line.exactmetrics-onboarding-wizard-line-active{background:#32a27a}.exactmetrics-onboarding-wizard-step{border-radius:50%;-ms-flex-negative:0;flex-shrink:0;height:24px;width:24px;background-color:#e9e7ee}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active,.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-completed{background-color:#32a27a;position:relative}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active{width:40px;height:40px;background-color:#210f59;text-align:center;line-height:40px;margin:-8px 0}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:first-child{margin-top:0}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:after{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#fff}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:first-child:after{content:"\f059"}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:nth-child(3):after{content:"\004a"}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:nth-child(5):after{content:"\f062"}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:nth-child(7):after{content:"\f06b"}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:nth-child(9):after{content:"\f06c"}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:nth-child(11){background-color:#32a27a}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:nth-child(11):after{content:"\f045"}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-completed:after{color:#fff;content:"\f045";display:block;font-family:Misettings;font-size:15px;font-weight:400;right:0;position:absolute;text-align:center;line-height:25px;width:100%}.exactmetrics-onboarding-wizard-content{color:#210f59;font-size:15px;margin:60px 0}.exactmetrics-onboarding-wizard-content h2{color:#210f59;font-size:32px;font-weight:500;margin:0 0 12px}.exactmetrics-onboarding-wizard-content .subtitle{font-size:16px;line-height:1.75;margin-top:0;margin-bottom:20px}.exactmetrics-onboarding-wizard-content .exactmetrics-separator{border-top:1px solid #e9e7ee;clear:both;margin:24px 0}.exactmetrics-icon-info{display:inline-block;vertical-align:middle}.exactmetrics-icon-info svg{height:16px;width:16px}.exactmetrics-onboarding-wizard-form label{color:#210f59;font-size:17px;font-weight:500;line-height:1.5}.exactmetrics-description{margin-top:16px;line-height:1.75;margin-bottom:20px}.exactmetrics-form-input{margin:5px 0 0;position:relative}.exactmetrics-form-input input[type=radio]{opacity:0;position:absolute}.exactmetrics-settings-input-radio{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.exactmetrics-settings-input-radio input{opacity:0;position:absolute}.exactmetrics-settings-input-radio label{color:#37276a;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;border:2px solid #f4f3f7;height:200px;border-radius:10px;background-color:#f4f3f7;text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;cursor:pointer}.exactmetrics-settings-input-radio label:hover{background-color:#fff;border-color:#bcb7cd}.exactmetrics-settings-input-radio label:hover .exactmetrics-styled-radio{background-color:#f4f3f7}.exactmetrics-settings-input-radio label.exactmetrics-styled-radio-label-checked{border-color:#32a27a;background-color:#fff;color:#210f59}.exactmetrics-settings-input-radio label small{font-size:16px;color:#210f59;font-weight:400}.exactmetrics-settings-input-radio label>span{vertical-align:middle;font-weight:500;line-height:1;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.exactmetrics-settings-input-radio label>span:not(.exactmetrics-styled-radio):before{font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:31px;margin-bottom:24px;display:block}.exactmetrics-settings-input-radio label:last-child{margin-bottom:0}.exactmetrics-settings-input-radio label[for="exactmetrics-settings-radio-site_type[business]"]>span:not(.exactmetrics-styled-radio):before{content:"\f05a"}.exactmetrics-settings-input-radio label[for="exactmetrics-settings-radio-site_type[publisher]"]>span:not(.exactmetrics-styled-radio):before{content:"\f043"}.exactmetrics-settings-input-radio label[for="exactmetrics-settings-radio-site_type[ecommerce]"]>span:not(.exactmetrics-styled-radio):before{content:"\f033"}.exactmetrics-settings-input-radio .exactmetrics-styled-radio{width:40px;height:40px;position:relative;display:inline-block;border-radius:50%;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;background-color:#fff;margin-top:20px}.exactmetrics-settings-input-radio .exactmetrics-styled-radio.exactmetrics-styled-radio-checked{background:rgba(50,162,122,.1);text-align:center;line-height:40px}.exactmetrics-settings-input-radio .exactmetrics-styled-radio.exactmetrics-styled-radio-checked:after{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f045";color:#32a27a}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-radio>span{width:30%}.exactmetrics-form-input input:focus~.exactmetrics-styled-checkbox-status{-webkit-box-shadow:0 0 5px 2px #4d90fe;box-shadow:0 0 5px 2px #4d90fe}.exactmetrics-form-input .exactmetrics-form-input-label{display:inline-block;vertical-align:top}.exactmetrics-form-input .exactmetrics-form-input-label span{font-weight:400}.exactmetrics-onboarding-button,.request-filesystem-credentials-action-buttons .button,.request-filesystem-credentials-action-buttons input[type=submit]{border:none;border-radius:3px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:600;line-height:1.2;padding:12px 20px;text-decoration:none}.exactmetrics-onboarding-button.exactmetrics-onboarding-button-large{background-color:#32a27a;font-size:15px;padding:16px 23px}.exactmetrics-onboarding-button.exactmetrics-onboarding-button-large:after{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f06a";margin-right:13px}.exactmetrics-onboarding-button.exactmetrics-onboarding-button-large:focus,.exactmetrics-onboarding-button.exactmetrics-onboarding-button-large:hover{background-color:#19865f;color:#fff}.exactmetrics-onboarding-button.exactmetrics-onboarding-button-regular,.request-filesystem-credentials-action-buttons .button,.request-filesystem-credentials-action-buttons input[type=submit]{background-color:#6528f5;font-size:14px;font-weight:500;padding:10px 16px}.exactmetrics-onboarding-button.exactmetrics-onboarding-button-regular:focus,.exactmetrics-onboarding-button.exactmetrics-onboarding-button-regular:hover,.request-filesystem-credentials-action-buttons .button:focus,.request-filesystem-credentials-action-buttons .button:hover,.request-filesystem-credentials-action-buttons input[type=submit]:focus,.request-filesystem-credentials-action-buttons input[type=submit]:hover{background-color:#37276a;color:#fff}.exactmetrics-onboarding-button.exactmetrics-button-disabled,.exactmetrics-onboarding-button.exactmetrics-button-disabled:focus,.exactmetrics-onboarding-button.exactmetrics-button-disabled:hover{background-color:#e9e7ee;color:#9087ac;cursor:auto;outline:none}.exactmetrics-onboarding-button.exactmetrics-button-activated,.exactmetrics-onboarding-button.exactmetrics-button-activated:focus,.exactmetrics-onboarding-button.exactmetrics-button-activated:hover{background-color:#fff;border-color:#8aa4b8;color:#8aa4b8;cursor:auto;outline:none}.exactmetrics-onboarding-wizard-form input[type=email],.exactmetrics-onboarding-wizard-form input[type=text]{border:none;color:#9087ac;display:block;border-radius:3px;font-size:14px;padding:9px 15px;height:40px;width:100%;background:#f4f3f7}.exactmetrics-onboarding-wizard-form .exactmetrics-form-row-license input[type=text]{background:#fff;color:#210f59}.exactmetrics-onboarding-wizard-form input[type=email]:focus,.exactmetrics-onboarding-wizard-form input[type=text]:focus{border-color:#6528f5;outline:none}.exactmetrics-form-input.valid input[type=email],.exactmetrics-form-input.valid input[type=text]{border-color:#64bfa5}.exactmetrics-form-input.error input[type=email],.exactmetrics-form-input.error input[type=text]{border-color:#dc3232}.exactmetrics-form-input select{width:100%}.exactmetrics-form-input.error:after,.exactmetrics-form-input.valid:after{display:none;font-family:Misettings;font-size:20px;font-weight:400;position:absolute;left:12px;top:10px}.exactmetrics-form-input.valid:after{color:#32a27a;content:"\f045";display:block}.exactmetrics-form-input.error:after{color:#d83638;content:"\f046";display:block}.exactmetrics-error-message{color:#d83638;font-weight:500}::-webkit-input-placeholder{color:#9087ac}::-moz-placeholder{color:#9087ac}:-ms-input-placeholder{color:#9087ac}:-moz-placeholder{color:#9087ac}.exactmetrics-notice{color:#8aa4b8;font-size:16px;line-height:1.4;margin:30px 0}.exactmetrics-text-button{background:none;border:none;border-bottom:1px solid rgba(0,0,0,0);color:#9087ac;cursor:pointer;font-size:15px;padding:0}.exactmetrics-text-button i{margin-right:4px}.exactmetrics-text-button:hover{border-bottom-color:#9087ac}.exactmetrics-pull-right{float:left}.exactmetrics-text-button.exactmetrics-pull-right{margin-top:15px}.exactmetrics-form-inline .exactmetrics-form-input,.exactmetrics-form-inline .exactmetrics-form-label{float:right;width:80%}.exactmetrics-form-inline .exactmetrics-form-input{float:left;text-align:left;width:20%}.exactmetrics-form-inline:after{clear:both;content:"";display:table}.exactmetrics-form-inline p.exactmetrics-description{margin-bottom:0}.exactmetrics-form-inline .exactmetrics-separator{float:right;margin-top:27px;width:100%}.exactmetrics-settings-input-checkbox>label{color:#210f59;font-size:14px;margin:0;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap}.exactmetrics-settings-input-checkbox>label.exactmetrics-styled-checkbox-faux{cursor:default}.exactmetrics-settings-input-checkbox>label.exactmetrics-styled-checkbox-faux .exactmetrics-styled-checkbox{cursor:default;background-color:#e9e7ee}.exactmetrics-settings-input-checkbox>label.exactmetrics-styled-checkbox-faux .exactmetrics-styled-checkbox.exactmetrics-styled-checkbox-checked{background-color:#e9e7ee}.exactmetrics-settings-input-checkbox>label.exactmetrics-styled-checkbox-faux .exactmetrics-styled-checkbox.exactmetrics-styled-checkbox-checked:after{opacity:.5}.exactmetrics-settings-input-checkbox>label input{display:none}.exactmetrics-settings-input-checkbox>label>span{vertical-align:middle}.exactmetrics-settings-input-checkbox>label:last-child{margin-bottom:0}.exactmetrics-settings-input-checkbox .exactmetrics-styled-checkbox{width:40px;height:23px;position:relative;display:inline-block;border-radius:20px;margin-left:15px;background-color:#e9e7ee;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.exactmetrics-settings-input-checkbox .exactmetrics-styled-checkbox.exactmetrics-styled-checkbox-checked:after{left:3px;right:auto;background:#6528f5}.exactmetrics-settings-input-checkbox .exactmetrics-styled-checkbox:after{right:3px;top:3px;bottom:3px;width:17px;position:absolute;content:"";background:#bcb7cd;display:block;border-radius:50%}.exactmetrics-settings-input-checkbox .exactmetrics-checkbox-label{display:block;font-weight:500;font-size:17px;color:#210f59;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;width:100%;margin-bottom:16px}.exactmetrics-settings-input-checkbox .exactmetrics-checkbox-description{font-weight:400;color:#6528f5;display:inline-block;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;font-size:15px;line-height:1.75}.exactmetrics-settings-input-checkbox .exactmetrics-info{margin-right:12px;display:inline-block;-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-separator,.exactmetrics-onboarding-step-recommended-settings .exactmetrics-onboarding-wizard-form .exactmetrics-separator{display:block}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-grey-area>.exactmetrics-separator:first-child{display:none}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-grey-area .exactmetrics-text-right{margin-top:44px}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-grey-area .exactmetrics-text-button{color:#6528f5}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-grey-area .exactmetrics-text-button:focus,.exactmetrics-onboarding-step-recommended-addons .exactmetrics-grey-area .exactmetrics-text-button:hover{color:#37276a}.exactmetrics-text-right{text-align:left}.exactmetrics-addon-icon,.exactmetrics-addon-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-addon-icon{-ms-flex-negative:0;flex-shrink:0;height:32px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;width:32px;border-radius:50%;background:rgba(33,15,89,.1)}.exactmetrics-addon-icon img{display:block;vertical-align:middle}.exactmetrics-addon-text{padding:0 20px 0 10px;width:100%}.exactmetrics-addon-text label{line-height:1;display:block;margin-bottom:16px;font-size:17px}.exactmetrics-addon-text p{margin:6px 0 4px;display:inline;line-height:1.75}.exactmetrics-addon-text a{color:#9087ac;margin-right:5px}.exactmetrics-green-link{color:#5cc0a5;font-size:16px}.exactmetrics-addon-button{-ms-flex-negative:0;flex-shrink:0;padding-top:38px;-ms-flex-item-align:start;align-self:start}.exactmetrics-addon-button .exactmetrics-onboarding-button{text-align:center;line-height:1.2;padding:12px 24px 11px}.exactmetrics-wpforms-row .exactmetrics-addon-icon{height:158px;width:145px;background:#fff;border-radius:5px}.exactmetrics-wpforms-row .exactmetrics-addon-text{padding-right:40px}.exactmetrics-wpforms-row .exactmetrics-addon-text label{font-size:18px;font-weight:900}.exactmetrics-wpforms-row .exactmetrics-addon-text p{font-size:16px;line-height:1.4;margin-bottom:0}[class*=monstericon-]:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.monstericon-info-circle-regular:before{color:#9087ac;font-size:15px}.exactmetrics-loader-animated{animation:exactmetrics-rotate-loading 1.5s linear 0s infinite normal;-webkit-animation:exactmetrics-rotate-loading 1.5s linear 0s infinite normal;background-color:rgba(0,0,0,0)!important;border-radius:100%;border-color:rgba(0,0,0,0) #4b9ce4;border-style:solid;border-width:.25em;-webkit-box-sizing:border-box;box-sizing:border-box;color:rgba(0,0,0,0);cursor:default;height:2em;right:0;opacity:0;padding:0;position:absolute;top:0;width:2em;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}@-webkit-keyframes exactmetrics-rotate-loading{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@keyframes exactmetrics-rotate-loading{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}.exactmetrics-settings-input-select label>span,.settings-input-text label>span{font-weight:400;color:#210f59;display:inline-block;margin-top:7px;font-size:15px}.exactmetrics-settings-input-select .exactmetrics-reset-default,.settings-input-text .exactmetrics-reset-default{font-size:14px;margin-top:7px;float:left;font-weight:400}.exactmetrics-settings-input-select label>span.exactmetrics-dark,.settings-input-text label>span.exactmetrics-dark{display:block;font-weight:500;font-size:16px;color:#393f4c}.exactmetrics-settings-input-select .exactmetrics-info,.settings-input-text .exactmetrics-info{margin-right:4px}.exactmetrics-settings-input-select .settings-input-text-input,.settings-input-text .settings-input-text-input{margin-top:18px}.exactmetrics-settings-input-authenticate .exactmetrics-dark{display:block;font-weight:500;font-size:17px;color:#210f59;margin-bottom:16px}.exactmetrics-settings-input-authenticate p{font-weight:400;color:#210f59;display:inline-block;margin-top:0;font-size:15px;line-height:1.75}.exactmetrics-settings-input-select-input{margin-top:18px}.exactmetrics-onboarding-wizard-form .field-title{display:block;margin:15px 0}.exactmetrics-onboarding-wizard-form fieldset{border:none;padding:0;margin:0;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-onboarding-wizard-form .ftp-password{margin-bottom:15px}.exactmetrics-onboarding-wizard-form ol{padding-right:20px}.exactmetrics-onboarding-wizard-form ol li{color:#393f4b;line-height:1.5;margin-bottom:30px;padding-right:15px}.exactmetrics-hidden{display:none}.exactmetrics-small{font-size:12px}.exactmetrics-auth-info .exactmetrics-dark{color:#210f59;font-size:16px;font-weight:500}.exactmetrics-auth-info p{margin:0;color:#210f59}.exactmetrics-onboarding-wizard-form .exactmetrics-separator{display:none}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater .exactmetrics-error{margin-top:0;margin-bottom:18px}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-labels label{color:#210f59;font-weight:700;margin-bottom:6px;font-size:17px}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:18px}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row>span{width:100%;margin-left:18px}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row button{padding:0;border:none;background:rgba(33,15,89,.1);color:#210f59;width:32px;height:32px;border-radius:50%;cursor:pointer;display:block;position:relative;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row button i{position:absolute;right:10px;top:7px;font-size:15px}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row button i:before{content:"\f065"}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row input[type=number]{width:30%;margin-left:15px}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row select{width:70%;height:40px;margin-left:15px;border:1px solid #9087ac;border-radius:3px;margin-top:0;margin-bottom:0;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row.exactmetrics-disabled-row{opacity:.5}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row input[type=text]{border-color:rgba(0,0,0,0);background-color:#fff;color:#210f59}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row .exactmetrics-input-error input{border-color:#e43462}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row .exactmetrics-input-valid{position:relative}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row .exactmetrics-input-valid:after{position:absolute;left:8px;height:26px;width:26px;background:rgba(50,162,122,.1);top:7px;content:"\f015";display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#32a27a;border-radius:50%;text-align:center;line-height:26px}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row .exactmetrics-input-valid input{border-color:#32a27a}.exactmetrics-onboarding-wizard-form .exactmetrics-error{margin:18px 0 0;color:#d83638;cursor:default}.exactmetrics-onboarding-wizard-form .exactmetrics-error i{margin-left:10px}.exactmetrics-onboarding-wizard-form h3{font-size:24px;line-height:1.4;color:#210f59;margin-bottom:16px}.exactmetrics-onboarding-wizard-form .exactmetrics-flex-row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap}.exactmetrics-onboarding-wizard-form .exactmetrics-flex-row p{line-height:1.75}.exactmetrics-onboarding-wizard-form .exactmetrics-flex-row .exactmetrics-flex-row-half{width:60%}.exactmetrics-onboarding-wizard-form .exactmetrics-flex-row .exactmetrics-flex-row-half:first-child{width:40%}p>label{display:block}p .exactmetrics-info{margin-right:4px}.exactmetrics-sublabel{font-weight:400;color:#210f59;display:inline-block;margin-top:8px;font-size:15px}.exactmetrics-settings-input-repeater-labels label{color:#fff;font-weight:700;margin-bottom:6px;display:block;width:calc(50% - 8px)}.exactmetrics-settings-input-repeater-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:18px}.exactmetrics-settings-input-repeater-row:first-child{margin-bottom:14px}.exactmetrics-settings-input-repeater-row>input[type=text]{width:50%}.exactmetrics-settings-input-repeater-row input,.exactmetrics-settings-input-repeater-row select{margin-left:18px}.exactmetrics-settings-input-repeater-row button{padding:0;border:none;background:rgba(0,0,0,0);color:#dc3232;cursor:pointer;font-size:14px}.exactmetrics-settings-input-repeater-row input[type=number]{width:30%}.exactmetrics-settings-input-repeater-row select{width:70%}.exactmetrics-settings-input-repeater-row.exactmetrics-disabled-row{opacity:.5}.exactmetrics-button{background:#6528f5;border:solid #6528f5;border-width:1px 1px 2px;border-radius:3px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none}.exactmetrics-button:focus,.exactmetrics-button:hover{background-color:#37276a;border-color:#37276a}.exactmetrics-logo{display:inline-block;width:165px;max-width:100%}.exactmetrics-logo .exactmetrics-bg-img{padding-top:23%}.exactmetrics-logo .exactmetrics-bg-img:after{background-position:50%;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAUUAAABKCAMAAAAbi7YOAAAAn1BMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8Kd3m4AAAANHRSTlMAQN8ggL9g758QMLB5cwNv+5BQz14J9tSPF/HkxgdXSA0B7aqbpCkk2oRouDvLloobEug208uV8wAACFtJREFUeNrs1+1yojAUBuATIEBABVHU+t1aa+u222597//a1hgJKFaFdWY70zw/nCmaCX3nnHxQRX/ePyFZ63sy6km7I2Q6M5NjLa9jFC1sMqp6WuBI71GQUcXk3UPZaN0i41rz7ie0uINcn5FRY0EcBzTrI7c0y+M1Vo8xtP5U9nCrOYIWN/6QcV7qDKENnTkpH7970J7dCRlfm3RHhQz9YtGtFjG0N7M8fm0zRu5XQAfukzdosf9Exil3y2LXTstdO18/HHa7cWze7BUjmpwOuh1Ds1xzKTySWMj5Nn0l4MjxDRm5YIwcD+iMVvIMrbdYkaGIZQxtlKQXe/8TmmeWx71W0T1ddvfYg8ZTMurZcGihibGu+2kfGXMEr++uMYKyIOOsdMWm04R9TM4d00f000ymDed6v/sxpOH4ZdOishdIHv0w818x6onDgEqaPzPFF1TysFizJzuYRb96QK/dMinu9CtlGH1Qxn5/AMZ39VIM+KGQbsnnnNERm3MuqCqbo2PTZc8VWng5p6IVB55FrRQZDll0Sx7A6YgDIKCqfAA+XdbE1abH/dsaAH3xHVJs+1sJKeLUkdUC4J4pOgBUFgLgdNk8jHGV3pTKHGDxHVK0sOWQEqD8v7vYiiqnGHjwEroGa1w2Vu9YFgLsu6WYQGLlH7Qrp0g2E3Qr9gjjlE5JH9Bp1U0xdDPJLVOMIPmlUkRYJcXbawCvOrdZ4yV61cl1Ec/qpuiQdssU24D82z783gM6/zXF9A18H9v9bBwDiPkTKXMLi2+WYgg4HGgflmIEeP81xU2MLinTHpTPjT62D9NbpMjy1k5cKVCPnZDzASPhSoIUEfkdi+935e1zD1vh/gcciBjgCcpwwJc55U/YIOQ87NokCcdpA3Acp0vEdp+unNWW3zjieIx+h5DLVyhKm4/+VziGK71AZvqpDoTdIkXbg8SyRcwS8k1DKCErbBnC8aBY8gEKbHVcZGQBTnE2WxSa3ObYc1QhZjiRIz99SBHZ+aBAj/F3uXY9SAen8rtnnPM2Kd8X1/uWBpr/uruwfGu1hLB0HraFjM5YPdWccooAAnJVMepS3IWb7Gf3oPmnUnSxwwopRshZdvGU0SFtibNCvf7klqQMMaiZoubvdwVpMNBFovIsYjpErXucYqBaVxdjFkUHcPOqb7uMRZacj+RqIUOSC4pK0UIncqNQ5Cm6gEyXMZcDHUHEd41gOwCS6y6COrEUBeP9hjPC421SLIZmqTP9qRR9FHkRcc693Rh1VWZq/kgXo68mCIF2VgpWkN8LWb676EnDfRnbeVPI0HZc2cMiG+gXt7H+VSm2/rZzts2JwkAAzgsQgneCYrVYq6117LVaXzr7/3/bDZc0GxLlkPFjni9VEHQel91NLCkAiY3Fw30skgzdcIx8ESV5jBa5fvcxTRhAzL0anaiLTAor63EV6qnJknbd8S0yTpoWU3OMs4NwSrnVEbayI4oFIBttdgrHO1nE5DOxEiW3wpLWMtBYlHudji4P6q/Q0RLrk5f4HD+I8C2mriymtyGizgUuQ/wF2genbj4B0c32CeCzp0XBNCMMDW0VzWX2HqofsCv9Il5jKhgnSgRVMaoOKwEibhAA3LNIHYtZY0IIQzaixOF9mVxjY84hv/Ai1xf0CiC7W9dNwTKX2qfKtUUcEfsWje8IgxJDL9Oi/JLlWXQvXOr25JjE4wnpyPvaNDPbEhRmynMDT693s6jbw0e0yIgi6WyRqaqpgpFy9RSNdLDIWiwiEcMP24kY/gyJgo9YAdNZ/oLN8obcy2KEeVGVA2z60obFuMWi9qKDMUcpumGsa1Jqk7kWY7RoN08eNIrFDQPZiT3Ded6vsmecH4Viey+LvFmjc/NV48gGddZQ7lrEkNPBWCdHfFFiOh6Hdovy6hQvH6kvugtyBk8VuUQ2hzfS12JKDdLpF2OUmtaXlN5Ffw5lk38DQTZxLKr9jdhmVrqIsJFUcN7BouqxG64y9ZGV4Iw4bDe7+AJMNTse5xnMT30tuiM3PWhRrUyOFRuEsFMY0xuZmoLgjsWx5U0KnR3s7ltaTYosIR53sEit9kdO1LlyJ4EgewFX2TwTl+cY4Be5i0UzCfETkhl24Qj1jx2hRceCWyoibBxB/ZZOS22p3aJOy6z2LSmr32iMjayXMoeD1gGMq/F9oXrvu1jkZhKCmjmdHBpg44eU0rE4asxpcy7tWUZmtVBxKfCoNos6aGsYE1aRG6SpuNAwnBm0Mds3lI+/Ad4e7mUxxoIzMmUlF6CJ7KLCMBKlkxexXfSgaMoehneySOQIj0kacyIpcXiYQTuL8VnPeVfLGcA0Ij1/1WcOPGE1pc5WrKZWxlP2L24yrjcpkliF08/zuN6phAyYKjk+9Sm4fpjqIbq09un2nrGBe4g+Rs15RFI/Zdh1+xLaWe+izyQ/LuZ4J2Uni/3JKCc+Ejf3Pe3tJ+A0k16h9hk+igK6UZS/H8J/O13m9URbWR5iNi/mbPCxQofIy5sKWBJoZygrXskhucTqS5chEugLHYDmQAL9qA5z0EzDjZX9kPkaDL9JoHZCLd471CQ6A+Qj3HKurCwZGIpN9Z9Xbwd2A7QnAc3DowCDyB/IdV5GUzB8h7UPGlRpAQa2fL2mO7Ecro/Bocu+w929jYQ4CGvCXGL5B5DDyWvA7YQIi3D33xXOx7W9HJYkNvJoJ8SwVlYL2RsgX2MrED+tQC0+TiTQwnBVWrbMajD7EpBBGKzctHYliEPlrUi0CneVd6H6mFvpMa8iy+F3WP6lM3xgiVuHhNgXWoJHsQvrvtzI8+81NJmtQndzO+fDHJCnKBSVfmxNepweKxLoy+qrqB3uMhIw/AWFbdSoUycRogAAAABJRU5ErkJggg==)}.settings-input-license p{color:#210f59}.settings-input-license p a{color:#6528f5}.settings-input-license label{font-size:15px;color:#210f59;font-weight:400;margin-bottom:16px;margin-top:16px;display:block}.exactmetrics-bg-img.exactmetrics-smile{display:inline-block;width:16px;height:16px;padding:0;vertical-align:middle}.exactmetrics-bg-img.exactmetrics-smile:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAYFBMVEUAAAD/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE1mRQDuvkTSpDZ7VwqgeB2bdBqvhiV+Wgx2Uwj4xkn3xUnfsD3KnTKziSeLZhOFYRBnRgD04bLqAAAADnRSTlMALPrz8dvSp6SXYxMNONmrFGwAAADrSURBVDjLhZPploMgDIVjqQjY3hS12r3v/5bDjFGH0gPfH+4JS0IW2mid0QpQ2riWUqpmh5VdU1HMweIDe4iu10io/z1y3OML++N6X/aTE5X4l/dT6jkOCyHF/jmAcAIS+eukET1wJ/ZTx4MYG6JW8uOZuZ9lH6SXjLXkMHMO1m6WXZBnMTsy+QOGNHIuoEkhFyQUxX9LJaEAKWRRpJFFk0EWQw7C/YaV2x2CW1ONx3vwVwSufng/sKR6K9ZlZOZpHKewjJelWFG5nyw8t3LHDeP71zS9eo8FW2y5UtMW2748OOXRKw9vcfx/ACZnLYWsWc2gAAAAAElFTkSuQmCC)}.exactmetrics-onboarding-license-lite p a{font-weight:700}.exactmetrics-onboarding-license-lite p .exactmetrics-highlighted-text{font-weight:700;color:#32a27a}.exactmetrics-onboarding-license-lite .exactmetrics-settings-license-lite{display:none}.exactmetrics-form-row-license,.exactmetrics-grey-area,.exactmetrics-onboarding-license-lite,.exactmetrics-settings-input-repeater,.exactmetrics-wpforms-row{padding:40px;background:#f4f3f7;border-radius:10px;margin-bottom:24px}.exactmetrics-form-row-license .exactmetrics-onboarding-wizard-form input[type=text],.exactmetrics-grey-area .exactmetrics-onboarding-wizard-form input[type=text],.exactmetrics-onboarding-license-lite .exactmetrics-onboarding-wizard-form input[type=text],.exactmetrics-settings-input-repeater .exactmetrics-onboarding-wizard-form input[type=text],.exactmetrics-wpforms-row .exactmetrics-onboarding-wizard-form input[type=text]{background-color:#fff;color:#210f59}@media (max-width:767px){.exactmetrics-onboarding-wizard-container{max-width:100%;width:auto;margin:0 10px}.exactmetrics-onboarding-wizard-content{padding-right:20px;padding-left:20px}.exactmetrics-addon-row{-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics-addon-text{width:calc(100% - 80px);padding-left:0}.exactmetrics-addon-button{margin-top:20px}.exactmetrics-addon-icon{-ms-flex-item-align:start;align-self:flex-start}.exactmetrics-wpforms-row .exactmetrics-addon-text{width:calc(100% - 100px)}.exactmetrics-text-button.exactmetrics-pull-right{float:none}.exactmetrics-form-buttons{text-align:center}}.exactmetrics-form-buttons{margin-top:43px}.exactmetrics-form-buttons .exactmetrics-onboarding-button+.exactmetrics-text-button{float:left;margin-top:16px;color:#6528f5}.exactmetrics-form-buttons .exactmetrics-onboarding-button+.exactmetrics-text-button i{margin-right:15px}.exactmetrics-form-buttons .exactmetrics-onboarding-button+.exactmetrics-text-button:focus,.exactmetrics-form-buttons .exactmetrics-onboarding-button+.exactmetrics-text-button:hover{color:#37276a}.exactmetrics-addon-icon>div{display:inline-block;width:32px;height:32px;background:none}.exactmetrics-addon-icon>div:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;line-height:32px}.exactmetrics-addon-icon .exactmetrics-addon-icon-ads:before{content:"\004a"}.exactmetrics-addon-icon .exactmetrics-addon-icon-amp:before{content:"\f044"}.exactmetrics-addon-icon .exactmetrics-addon-icon-dimensions:before{content:"\f060"}.exactmetrics-addon-icon .exactmetrics-addon-icon-ecommerce:before{content:"\f033"}.exactmetrics-addon-icon .exactmetrics-addon-icon-eu-compliance:before{content:"\f067"}.exactmetrics-addon-icon .exactmetrics-addon-icon-facebook-instant-articles:before{content:"\f043"}.exactmetrics-addon-icon .exactmetrics-addon-icon-forms:before{content:"\f048"}.exactmetrics-addon-icon .exactmetrics-addon-icon-google-optimize:before{content:"\f053"}.exactmetrics-addon-icon .exactmetrics-addon-icon-page-insights:before{content:"\f041"}.exactmetrics-addon-icon .exactmetrics-addon-icon-performance:before{content:"\f058"}.exactmetrics-addon-icon .exactmetrics-addon-icon-media:before{content:"\f072"}.exactmetrics-addon-icon .exactmetrics-addon-wpforms{width:90px;height:79px;background-image:url(../img/wpforms.png);background-size:contain}.exactmetrics-step-current{font-size:13px;color:#9087ac;line-height:1.75;margin-bottom:8px}.exactmetrics-button-go-back{font-size:15px;color:#9087ac;line-height:1.75;margin-top:40px;padding:0;background:rgba(0,0,0,0);border:none;cursor:pointer}.exactmetrics-button-go-back:focus,.exactmetrics-button-go-back:hover{text-decoration:underline}.exactmetrics-button-go-back .monstericon-long-arrow-right-light{margin-left:10px}.exactmetrics-button-go-back .monstericon-long-arrow-right-light:before{-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg)}.exactmetrics-auth-actions{margin-top:40px}.monstericon-arrow-right:before{content:"\f06a"}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-em-forms-upsell-screen{margin-top:0;padding-top:68%;max-width:115%}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-em-forms-upsell-screen:after{background-position:50%;background-image:url(../img/forms-screen.png)}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-em-ecommerce-upsell-screen{top:0;width:100%;height:auto;padding-top:64%;max-width:115%;right:33px}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-em-ecommerce-upsell-screen:after{background-position:50%;background-image:url(../img/ecommerce-screen.png)}.exactmetrics-and-more{font-weight:700;margin:0 0 36px;display:inline-block}.exactmetrics-lite-addons-list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.exactmetrics-lite-addons-list .exactmetrics-lite-addon{width:calc(50% - 35px);display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:40px}.exactmetrics-lite-addons-list .exactmetrics-lite-addon i{font-size:23px;min-width:25px;-ms-flex-negative:0;flex-shrink:0;margin-top:5px}.exactmetrics-lite-addons-list .exactmetrics-lite-addon p{margin:0 25px 0 0;line-height:1.75}.exactmetrics-wizard-notice{padding:32px 136px 17px 48px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:0 20px 30px rgba(48,44,62,.05);box-shadow:0 20px 30px rgba(48,44,62,.05);border-radius:10px;background:#fff;border:1px solid #d6e2ed;border-bottom:3px solid #4d3f7a;margin-bottom:24px;position:relative}.exactmetrics-wizard-notice p{line-height:1.75;margin-top:0}.exactmetrics-wizard-notice h3{margin-top:0;font-size:17px;margin-bottom:15px}.exactmetrics-wizard-notice:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:48px;position:absolute;top:34px;right:42px;content:"\f06e"}.exactmetrics-wizard-notice:first-child:before{content:"\f04f";color:#32a27a}.exactmetrics-wizard-notice.exactmetrics-newsletter-item:before{content:"\f06f"}.exactmetrics-info-notices .exactmetrics-wizard-notice{padding:32px 30px 17px}.exactmetrics-info-notices .exactmetrics-wizard-notice.exactmetrics-newsletter-item:before,.exactmetrics-info-notices .exactmetrics-wizard-notice:before,.exactmetrics-info-notices .exactmetrics-wizard-notice:first-child:before{content:""}.exactmetrics-onboarding .swal2-container.exactmetrics-swal-loading{top:82px;margin-right:0}.exactmetrics-onboarding .exactmetrics-admin-page .exactmetrics-wide-purple{margin-bottom:0}.exactmetrics-bg-img.exactmetrics-icon-warning{width:48px;padding-top:48px}.exactmetrics-bg-img.exactmetrics-icon-warning:after{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f01e";font-size:22px;text-align:center;line-height:48px;color:#210f59;background:#f4f3f7;border-radius:5px}.exactmetrics-settings-network-notice{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-bottom:20px;border-bottom:1px solid #d6e2ed;margin-bottom:15px;color:#777}.exactmetrics-settings-network-notice .exactmetrics-bg-img{margin-left:25px}.exactmetrics-settings-network-notice .exactmetrics-network-message{width:100%}.exactmetrics-license-type-text{color:#210f59;font-weight:500;margin-bottom:30px}.exactmetrics-license-type-text .exactmetrics-info{margin-right:10px}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round{display:block;position:relative;padding-right:35px;margin-bottom:12px;cursor:pointer;font-size:22px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round .loader{border:2px solid #f3f3f3;border-top-color:#3498db;border-radius:50%;width:25px;height:25px;-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite;display:none}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input{position:absolute;opacity:0;cursor:pointer;height:0;width:0}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round .checkmark{position:absolute;top:0;right:0;height:25px;width:25px;background-color:#fff;border:1px solid #d2dde9;border-radius:50%}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round .checkmark:after{right:9px;top:4px;width:3px;height:10px;border:solid #fff;border-width:0 0 3px 3px;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round:hover input~.checkmark{background-color:#fff}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.faux:checked~.checkmark{background-color:#46bf40;opacity:.5}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.faux:checked~.checkmark:after{display:block}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.addon-checkbox~.error.checkmark{background-color:#c00}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.addon-checkbox~.error.checkmark:after,.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.addon-checkbox~.error.checkmark:before{position:absolute;right:10px;content:" ";height:10px;width:0;background-color:#fff;display:block}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.addon-checkbox~.error.checkmark:after{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.addon-checkbox~.checkmark{background-color:#338eef}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.addon-checkbox~.checkmark:after{display:block}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.addon-checkbox~.remove.checkmark{background-color:#fff}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.addon-checkbox~.remove.checkmark:after{display:block}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round .checkmark:after{content:"";position:absolute;display:none}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-flex{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;height:60px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-features .exactmetrics-feat-content p{margin:0;padding:0}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-features .exactmetrics-feat-content p:first-child{font-size:16px;font-weight:700;margin-bottom:4px;color:#23262e}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-features .exactmetrics-feat-content p:nth-child(2){font-size:14px;color:#586074;max-width:95%;line-height:1.4}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-skip-addons{color:#586074;margin-right:30px}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-skip-addons svg{margin-right:5px}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-wizard-form .exactmetrics-flex{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;height:10px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-wizard-form .exactmetrics-tracking-info-text{color:#23262e;font-size:16px}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-wizard-form .exactmetrics-tracking-info-icon .exactmetrics-success{color:#46bf40;font-size:12px;display:inline-block}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-wizard-form .exactmetrics-tracking-info-icon .exactmetrics-success-icon{display:inline-block;margin-right:10px}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-wizard-form .exactmetrics-tracking-info-icon .exactmetrics-success-icon svg{position:relative;top:3px}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-wizard-form .exactmetrics-form-buttons{margin-top:50px}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-upsell{background-color:#f5fafe;padding:32px;margin-top:47px;color:#23262e}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-upsell h2{font-size:18px;font-weight:800}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-upsell p,.exactmetrics-onboarding-step-success .exactmetrics-onboarding-upsell ul{font-size:16px}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-upsell ul{list-style-type:none;margin:24px 0 32px0;padding:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-upsell ul li{width:50%;list-style-type:none;margin-bottom:15px}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-upsell ul li span.exactmetrics-icon{margin-left:5px}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-upsell .exactmetrics-upsell-upgrade-button{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics-onboarding-step-success .exactmetrics-upsell-bottom-text{background-color:#ffecad;padding:12px}.exactmetrics-onboarding-step-success .exactmetrics-upsell-bottom-text p{margin:0;padding:0;text-align:center;color:#23262e}.exactmetrics-settings-license-lite{margin-top:32px}.exactmetrics-settings-license-lite label{color:#393e4b;font-size:16px;margin-bottom:16px;display:block}.exactmetrics-settings-license-lite .exactmetrics-inline-field{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-settings-license-lite .exactmetrics-inline-field input{margin-left:15px;width:448px;height:49px}.exactmetrics-settings-license-lite .exactmetrics-inline-field .exactmetrics-button{width:197px;height:48px;font-size:16px}.exactmetrics-settings-license-lite .exactmetrics-inline-field .exactmetrics-button.disabled{background-color:#e2e4e9;color:rgba(57,62,75,.5);border-color:#e2e4e9}.exactmetrics-exit-link{color:#586074;display:block;text-align:center;margin-top:30px}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}button[data-v-283d1087]{margin-top:3px}@font-face{font-family:Lato;src:url(../fonts/lato-regular-webfont.woff) format("woff"),url(../fonts/lato-regular-webfont.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-bold-webfont.woff) format("woff"),url(../fonts/lato-bold-webfont.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:text-security-disc;src:url(data:font/woff2;base64,d09GMgABAAAAAAjoAAsAAAAAMGgAAAidAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFQGVgDWYgpQdQE2AiQDCAsGAAQgBYUOBy4bvi8lYxtWw7BxAPB87x5FmeAMlf3/96RzDN74RcXUcjTKmrJ3T2VDSShiPhfiIJxxS7DiLkHFfQV33CM4427mAred74pWur/J3dyVsKy7coREA8fzvPvpfUk+tB3R8YTCzE0SCLepejmJ2u1yqp+kC7W4Rc/tDTs3GpNJ8ttRPOSTPhsXlwbi4kVYWQmAcXmlrqYHMMsBwP/zHMz7fkF1gijOKuFQIxjwlGa2lkARhYaBxFHT54IOgBMQADi3LipIMAA3geO41EUkBTCO2gkxnOwnKYBx1E6p5WS+QUCMq50rNch6MwUCAAiAcdgttYVSIfPJ5kn6ApRFQ6I88BxLvvIC/maHUHS3TIoKiwLbbM8nEFWgE1oDz3woSxpagWbBXcQWhKtPeIlg6tK+7vX57QOszwU3sGUJrA7h2Mx1IWCNr9BKxsYo+pzS/OCO0OG9mwBkx337+lcuSxRdBcc+fJxlcAjK/zCfdgtBzuxQcTqfY4Yn6EB/Az3JS/RMu5f6B8wrn55S0IxdlLn+4Yb/ctIT+ocWYPcGAOvxSjEjpSiVMqSgFWVjzpCCXjAIRirTABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REdFDlkZEh2jE3SKztA5ukCX6Apdoxt0i+7QPXpAj+gJPaMX9Ire0Dv6QJ/oC/qKvqHv6Af6iX6h3+gP+ov+of+I+ECMxETMiDmxIJbEilgTG2JL7Ig9cSCOxIk4ExfiStyIO/EgnsSLeBMf4kv8iD/taQANoiE0jEbQKBpD42gCTaIpNI1m0CyaQ/NoAS2iJbSMVtAqWkPraANtoi20jXbQLtpD++gAHaIjdIxO0Ck6Q+foAl2iK3SNbtAtukP36AE9oif0jF7QK3pD79B79AF9RJ/QZ/QFfUXf0Hf0A/1Ev9Bv9Af9Rf/Qf9DQABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REfoGJ2gU3SGztEFukRX6BrdoFt0h+7RA3pET+gZvaBX9Aa9Re/Qe/QBfUSf0Gf0BX1F39B39AP9RL/Qb/QH/UX/0P8l9vq9gXwDIUCliyAhRAgTIoQoIUaIExKEJCFFSBMyhCwhR8gTCoQioUQoEyqEKqFGqBMahCahRWgTOoQuoUfoEwaEIWFEGBMmhClhRpgTFoQlYUVYEzaELWFH2BMOhGPCCeGUcEY4J1wQLglXhGvCDeGWcEe4JzwQHglPhGfCC+GV8EZ4J3wQPglfhG/CD+GX8Ef4p9sdgoQQIUyIEKKEGCFOSBCShBQhTcgQsoQcIU8oEIqEEqFMqBCqhBqhTmgkNBGaCS2EVkIboZ3QQegkdBG6CT2EXkIfoZ8wQBgkDBGGCSOEUcIYYZwwQZgkTBGmCTOEWcIcYZ6wQFgkLBGWCSuEVcIaYZ2wQdgkbBG2CTuEXcIeYZ9wQDgkHBGOCSeEU8IZ4ZxwQbgkXBGuCTeEW8Id4Z7wQHgkPBGeCS+EV8Ib4Z3wQfgkfBG+CT+EX8If4Z8AZpAQIoQJEUKUECPECQlCkpAipAkZQpaQI+QJBUKRUCKUCRVClVAj1AkNQpPQIrQJHUKX0CP0CQPCkDAijAkTwpQwI8wJC8KSsCKsCRvClrAj7AkHwpFwIpwJF8IV4ZpwQ7gl3BHuCQ+ER8IT4ZnwQnglvBHeCR+ET8IX4ZvwQ/gl/BH+lzv+AmMkTYAmSBOiCdNEaKI0MZo4TYImSZOiSdNkaLI0OZo8TYGmSFOiKdNUaKo0NZo6TYOmSdOiadN0aLo0PZo+zYBmSDOiGdNMaKY0M5o5zYJmSbOiWdNsaLY0O5o9zYHmmOaE5pTmjOac5oLmkuaK5prmhuaW5o7mnuaB5pHmieaZ5oXmleaN5p3mg+aT5ovmm+aH5pfmj2ZRAqCCoEKgwqAioKKgYqDioBKgkqBSoNKgMqCyoHKg8qAKoIqgSqDKoCqgqqBqoOqgGkE1gWoG1QKqFVQbqHZQHaA6QXWB6gbVA6oXVB+oflADoAZBDYH+uxaEWDBiIYiFIhaGWDhiEYhFIhaFWDRiMYjFIhaHWDxiCYglIpaEWDJiKYilIpaGWDpiGYhlIpaFWDZiOYjlIpaHWD5iBYgVIlaEWDFiJYiVIlaGWDliFYhVIlaFWDViNYjVIlaHWD1iDYg1ItaEWDNiLYi1ItaGWDtiHYh1ItaFWDdiPYj1ItaHWD9iA4gNIjaE2DBiI4iNIjaG2DhiE4hNIjaF2DRiM4jNIjaH2DxiC4gtIraE2DJiK4itIraG2DpiG4htIraF2DZiO4jtIraH2D5iB4gdInaE2DFiJ4idInaG2DliF4hdInaF2DViN4jdInaH2D1iD4g9IvaE2DNiL4i9IvaG2DvE3iP2AbGPiH1C7DNiXxD7itg3xL4j9gOxn4j9Quw3Yn8Q+4vYP8T+M6cIDBz9EXfeUHR1JyygPL/++I3R1cRvdDr+E12Jfh3Q0EN/fHn2mXptpJxUkIqu/Cs2egM33OjSLcT33I82+B9nP37X/c0W52623s45CYCo03QIBCVrAFAycnSYSqvO4YJt/NP73YqA/giNZhJ6sBbmql+0SQZaxNOZudJbc2nqxNvpM+veq7Sz2LUgFEu+VLs+Ay3yp7MVertp6i23v2Rmv5gmHDhSQ6t5GmTaqTsqhpWwmbOk3uKJrNOmwSSMC17jghqygilDOUU3KlLmHHNrajw3DVNVGWytGZDisM/cbkdRnvfIUJkaGJlgAYcoQ5bGptTmGc1R7pBC3XhFsLXnXR54qrMc+dGNBkqE4laBi4KmZYGom8vIy0lTyBkppBjLoTndMmrofIRORirsNlCbXzCgulmo36KztS2iV8rrNoRUL5VdkMSGoSXroC1KOQAA) format("woff2"),url(data:font/woff;base64,d09GRgABAAAAAAusAAsAAAAAMGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZjRmM5Y21hcAAAAYQAAAgCAAArYmjjYVVnbHlmAAAJiAAAAEEAAABQiOYj2mhlYWQAAAnMAAAALgAAADYR8XmmaGhlYQAACfwAAAAcAAAAJAqNAyNobXR4AAAKGAAAAAgAAAAIAyAAAGxvY2EAAAogAAAABgAAAAYAKAAAbWF4cAAACigAAAAeAAAAIAEOACJuYW1lAAAKSAAAAUIAAAKOcN63t3Bvc3QAAAuMAAAAHQAAAC5lhHRpeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGScwDiBgZWBgSGVtYKBgVECQjMfYEhiYmFgYGJgZWbACgLSXFMYHIAq/rNfAHK3gEmgASACAIekCT4AAHic7dhl0zDVmUXh5+XFHYK7E0IguFtwt4QQgmtwd3d3d7cED+4SXIO7u7vbsNfaUzU1fyGcu66u1adOf+6uHhgYGGpgYGDwL37/iyEHBoZZcWDQLzUw9NK/7A5if/DA8OwPOfQknBky+0P8/PPPOcd1UJ785frr/Dq/zq/z6/w3zsCgoX/xX74GRsxbcYpRB1iDB/7PGvT/DFGDenBwe8hKD1XpoSs9TKWHrfRwlR6+0iNUesRKj1TpkSs9SqVHrfRolR690r+p9BiVHrPSY1V67EqPU+lxKz1epcev9ASVnrDSE1V64kpPUulJKz1ZpSev9BSVnrLSU1V66kr/ttLTVPp3lZ62/KJSerpKT1/pP1R6hkrPWOmZKj1zpWep9KyVnq3Ss1d6jkrPWem5Kj13peep9LyVnq/S81d6gUr/sdILVnqhSi9c6UUqvWilF6v04pVeotJLVnqpSi9d6WUqvWyll6v08pVeodIrVvpPlf5zpVeq9F8qvXKl/1rpVSr9t0qvWunVKr16pdeo9JqVXqvSa1d6nUqvW+n1Kr1+pTeo9N8rvWGlN6r0xpXepNKbVnqzSm9e6S0qvWWlt6r01pXeptLbVnq7Sm9f6R0qvWOld6r0zpXepdK7Vnq3Su9e6T0qvWel96r03pXep9L7Vnq/Su9f6QMqfWClD6r0wZU+pNKHVvqwSh9e6SMqfWSlj6r00ZU+ptLHVvq4Sh9f6RMqfWKlT6r0yZU+pdKnVvq0Sp9e6TMqfWalz6r02ZU+p9LnVvq8Sp9f6QsqfWGl/1Hpf1b6okpfXOlLKn1ppS+r9OWVvqLS/6r0lZW+qtJXV/qaSl9b6esqfX2lb6j0jZW+qdI3V/qWSt9a6dsqfXul76j0vyt9Z6XvqvTdlb6n0vdW+r5K31/pByr9YKUfqvTDlX6k0v+p9KOVfqzSj1f6iUo/WemnKv10pZ+p9LOVfq7Sz1f6hUq/WOmXKv1ypV+p9KuVfq3Sr1f6jUq/Wem3Kv12pd+p9LuVfq/S71f6g0p/WOmPKv1xpT+p9KeV/qzSn1f6i0p/WemvKv11pb+p9LeV/q7S31f6h0r/WOmfKv1zDfI26KKHED1Y9JCihxI9tOhhRA8rejjRw4seQfSIokcSPbLoUUSPKno00aOL/o3oMUSPKXos0WOLHkf0uKLHEz2+6AlETyh6ItETi55E9KSiJxM9uegpRE8peirRU4v+rehpRP9O9LSify96OtHTi/6D6BlEzyh6JtEzi55F9KyiZxM9u+g5RM8pei7Rc4ueR/S8oucTPb/oBUT/UfSCohcSvbDoRUQvKnox0YuLXkL0kqKXEr206GVELyt6OdHLi15B9Iqi/yT6z6JXEv0X0SuL/qvoVUT/TfSqolcTvbroNUSvKXot0WuLXkf0uqLXE72+6A1E/130hqI3Er2x6E1Ebyp6M9Gbi95C9JaitxK9tehtRG8rejvR24veQfSOoncSvbPoXUTvKno30buL3kP0nqL3Er236H1E7yt6P9H7iz5A9IGiDxJ9sOhDRB8q+jDRh4s+QvSRoo8SfbToY0QfK/o40ceLPkH0iaJPEn2y6FNEnyr6NNGniz5D9JmizxJ9tuhzRJ8r+jzR54u+QPSFov8h+p+iLxJ9sehLRF8q+jLRl4u+QvS/RF8p+irRV4u+RvS1oq8Tfb3oG0TfKPom0TeLvkX0raJvE3276DtE/1v0naLvEn236HtE3yv6PtH3i35A9IOiHxL9sOhHRP9H9KOiHxP9uOgnRD8p+inRT4t+RvSzop8T/bzoF0S/KPol0S+LfkX0q6JfE/266DdEvyn6LdFvi35H9Lui3xP9vugPRH8o+iPRH4v+RPSnoj8T/bnoL0R/Kfor0V+L/kb0t6K/E/296B9E/yj6J9E/K/2/v/npoocQPVj0kKKHEj206GFEDyt6ONHDix5B9IiiRxI9suhRRI8qejTRo4v+jegxRI8peizRY4seR/S4oscTPb7oCURPKHoi0ROLnkT0pKInEz256ClETyl6KtFTi/6t6GlE/070tKJ/L3o60dOL/oPoGUTPKHom0TOLnkX0rKJnEz276DlEzyl6LtFzi55H9Lyi5xM9v+gFRP9R9IKiFxK9sOhFRC8qejHRi4teQvSSopcSvbToZUQvK3o50cuLXkH0iqL/JPrPolcS/RfRK4v+q+hVRP9N9KqiVxO9uug1RK8pei3Ra4teR/S6otcTvb7oDUT/XfSGojcSvbHoTURvKnoz0ZuL3kL0lqK3Er216G1Ebyt6O9Hbi95B9I6idxK9s+hdRO8qejfRu4veQ/SeovcSvbfofUTvK3o/0fuLPkD0gaIPEn2w6ENEHyr6MNGHiz5C9JGijxJ9tOhjRB8r+jjRx4s+QfSJok8SfbLoU0SfKvo00aeLPkP0maLPEn226HNEnyv6PNHni75A9IWi/yH6n6IvEn2x6EtEXyr6MtGXi75C9L9EXyn6KtFXi75G9LWirxN9vegbRN8o+ibRN4u+RfStom8TfbvoO0T/W/Sdou8Sfbfoe0TfK/o+0feLfkD0g6IfEv2w6EdE/0f0o6IfE/246CdEPyn6KdFPi35G9LOinxP9vOgXRL8o+iXRL4t+RfSrol8T/broN0S/Kfot0W+Lfkf0u6LfE/2+6A9Efyj6I9Efi/5E9KeiPxP9uegvRH8p+ivRX4v+RvS3or8T/b3oH0T/KPon0T9rYND/AOaSEScAAHicY2BiAAKmPSy+QEqUgYFRUURcTFzMyNzM3MxEXU1dTYmdjZ2NccK/K5oaLm6L3Fw0NOEMZoVAFD6IAQD4PA9iAAAAeJxjYGRgYADilrme/fH8Nl8ZuNkvAEUYbnDPcEOmmfaw+AIpDgYmEA8AHMMJGAAAeJxjYGRgYL/AAATMCiCSaQ8DIwMqYAIAK/QBvQAAAAADIAAAAAAAAAAoAAB4nGNgZGBgYGIQA2IGMIuBgQsIGRj+g/kMAArUATEAAHicjY69TsMwFIWP+4doJYSKhMTmoUJIqOnPWIm1ZWDq0IEtTZw2VRpHjlu1D8A7MPMczAw8DM/AifFEl9qS9d1zzr3XAK7xBYHqCHTdW50aLlj9cZ1057lBfvTcRAdPnlvUnz23mXj13MEN3jhBNC6p9PDuuYYrfHquU//23CD/eG7iVnQ9t9ATD57bWIgXzx3ciw+rDrZfqmhnUnvsx2kZzdVql4Xm1DhVFsqUqc7lKBiemjOVKxNaFcvlUZb71djaRCZGb+VU51ZlmZaF0RsV2WBtbTEZDBKvB5HewkLhwLePkhRhB4OU9ZFKTCqpzems6GQI6Z7TcU5mQceQUmjkkBghwPCszhmd3HWHLh+ze8mEpLvnT8dULRLWCTMaW9LUbanSGa+mUjhv47ZY7l67rgITDHiTf/mAKU76BTuXfk8AAHicY2BigAARBuyAiZGJkZmBJSWzOJmBAQALQwHHAAAA) format("woff"),url(../fonts/text-security-disc.ttf) format("truetype")}@font-face{font-family:Misettings;src:url(../fonts/icons.woff2) format("woff2"),url(../fonts/icons.woff) format("woff"),url(../fonts/icons.ttf) format("truetype"),url(../fonts/icons.otf) format("opentype");font-weight:400;font-style:normal}[class*=monstericon-]:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.monstericon-times-circle:before{content:"\f01b"}.monstericon-times:before{content:"\f021"}.monstericon-info-circle-regular:before{content:"\f01e"}.monstericon-arrow{-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease;-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg);display:inline-block}.monstericon-arrow.monstericon-down{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.monstericon-arrow:before{content:"\f01f"}.monstericon-warning-triangle:before{content:"\f020"}.monstericon-files:before{content:"\f028"}.monstericon-user:before{content:"\f02a"}.monstericon-eye:before{content:"\f02b"}.monstericon-expand:before{content:"\f02d"}.monstericon-life-ring:before{content:"\f030"}.monstericon-wpbeginner:before{content:"\f031"}.monstericon-lightbulb:before{content:"\f032"}.monstericon-shopping-cart:before{content:"\f033"}.monstericon-arrow-right:before{content:"\f01d"}.monstericon-amp-icon:before{content:"\f000"}.monstericon-fbia:before{content:"\f001"}.monstericon-google-optimize:before{content:"\f002"}.monstericon-ads:before{content:"\0041"}.monstericon-affiliate:before{content:"\0042"}.monstericon-compatibility:before{content:"\0043"}.monstericon-demographics:before{content:"\0044"}.monstericon-download:before{content:"\0046"}.monstericon-ecommerce:before{content:"\0047"}.monstericon-engagement:before{content:"\0048"}.monstericon-forms:before{content:"\0049"}.monstericon-links:before{content:"\004a"}.monstericon-memberships:before{content:"\004b"}.monstericon-notifications:before{content:"\004c"}.monstericon-performance:before{content:"\004d"}.monstericon-permissions:before{content:"\004e"}.monstericon-reporting:before{content:"\004f"}.monstericon-social:before{content:"\0050"}.monstericon-video:before{content:"\0051"}.monstericon-times:before{content:"\f014"}.monstericon-check:before{content:"\f015"}.monstericon-info:before{content:"\f016"}.monstericon-exclamation-triangle:before{content:"\f017"}.monstericon-user:before{content:"\f018"}.monstericon-eye:before{content:"\f019"}.monstericon-info-circle:before{content:"\f01a"}.monstericon-info-circle-btm:before{content:"\f01c"}.monstericon-chevron-up:before{content:"\f01f"}.monstericon-times-fas:before{content:"\f021"}.monstericon-check-circle:before{content:"\f022"}.monstericon-exclamation-circle:before{content:"\f023"}.monstericon-star:before{content:"\f025"}.monstericon-times-circle-fas:before{content:"\f026"}.monstericon-check-circle-far:before{content:"\f027"}.monstericon-file-alt:before{content:"\f028"}.monstericon-search:before{content:"\f029"}.monstericon-user-far:before{content:"\f02a"}.monstericon-eye-far:before{content:"\f02b"}.monstericon-cog:before{content:"\f02c"}.monstericon-expand-alt:before{content:"\f02d"}.monstericon-compress-arrows-alt:before{content:"\f02e"}.monstericon-compress:before{content:"\f02f"}.monstericon-badge-check:before{content:"\f034"}.monstericon-download-em:before{content:"\f035"}.monstericon-globe:before{content:"\f036"}.monstericon-wand-magic:before{content:"\f037"}.monstericon-mouse-pointer:before{content:"\f038"}.monstericon-users:before{content:"\f039"}.monstericon-file-certificate:before{content:"\f03a"}.monstericon-bullseye-arrow:before{content:"\f03b"}.monstericon-cash-register:before{content:"\f03c"}.monstericon-chart-line:before{content:"\f03d"}.monstericon-clock:before{content:"\f03e"}.monstericon-box:before{content:"\f03f"}.monstericon-sack-dollar:before{content:"\f040"}.monstericon-browser:before{content:"\f041"}.monstericon-eye-em:before{content:"\f042"}.monstericon-newspaper:before{content:"\f043"}.monstericon-mobile:before{content:"\f044"}.monstericon-check-em-light:before{content:"\f045"}.monstericon-times-em-lite:before{content:"\f046"}.monstericon-code:before{content:"\f047"}.monstericon-clipboard:before{content:"\f048"}.monstericon-upload:before{content:"\f049"}.monstericon-clone:before{content:"\f04a"}.monstericon-id-card:before{content:"\f04b"}.monstericon-user-friends:before{content:"\f04c"}.monstericon-file-alt-em:before{content:"\f04d"}.monstericon-calendar-alt:before{content:"\f04e"}.monstericon-comment-alt-check:before{content:"\f04f"}.monstericon-arrow-circle-up:before{content:"\f050"}.monstericon-search-em:before{content:"\f051"}.monstericon-list-ol:before{content:"\f052"}.monstericon-hand-pointer:before{content:"\f053"}.monstericon-folder:before{content:"\f054"}.monstericon-sign-out-em-solid:before{content:"\f055"}.monstericon-external-link-alt:before{content:"\f056"}.monstericon-copy:before{content:"\f057"}.monstericon-sync:before{content:"\f058"}.monstericon-flag:before{content:"\f059"}.monstericon-building:before{content:"\f05a"}.monstericon-chart-bar:before{content:"\f05b"}.monstericon-shopping-bag:before{content:"\f05c"}.monstericon-exchange-alt:before{content:"\f05d"}.monstericon-plus:before{content:"\f05e"}.monstericon-tachometer-alt:before{content:"\f05f"}.monstericon-media:before{content:"\f072"}.monstericon-tag:before{content:"\f060"}.monstericon-check-circle-em:before{content:"\f061"}.monstericon-bullseye:before{content:"\f062"}.monstericon-rocket:before{content:"\f063"}.monstericon-exclamation-square:before{content:"\f064"}.monstericon-trash:before{content:"\f065"}.monstericon-user-em:before{content:"\f066"}.monstericon-unlock:before{content:"\f067"}.monstericon-exclamation-em-solid:before{content:"\f068"}.monstericon-key-em:before{content:"\f069"}.monstericon-long-arrow-right-light:before{content:"\f06a"}.monstericon-plug-light:before{content:"\f06b"}.monstericon-align-left-regular:before{content:"\f06c"}.monstericon-envelope-solid:before{content:"\f06f"}.monstericon-comment-alt-lines-solid:before{content:"\f06e"}.monstericon-arrow-circle-up-light:before{content:"\f071"}.monstericon-megaphone-solid:before{content:"\f070"}.monstericon-arrow-circle-up-light :before{content:"\f071"}@media (max-width:782px){.exactmetrics-notices-area{margin-right:10px;margin-left:10px}}.exactmetrics-notice .exactmetrics-notice-inner{position:relative;color:#210f59;padding:32px 45px;border:1px solid #f4f3f7;border-bottom:3px solid;-webkit-box-shadow:0 20px 30px rgba(48,44,62,.05);box-shadow:0 20px 30px rgba(48,44,62,.05);border-radius:10px;background:#fff;margin-top:40px}.exactmetrics-notice .exactmetrics-notice-inner .notice-title{color:#fff;font-weight:700;display:block;margin:0 0 6px;padding:0;font-size:17px}@media (max-width:782px){.exactmetrics-notice .exactmetrics-notice-inner{padding:10px}}.exactmetrics-notice .exactmetrics-notice-inner .notice-content{padding-right:92px;background:#fff;line-height:1.75;font-size:15px;position:relative}.exactmetrics-notice .exactmetrics-notice-inner .notice-content:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:48px;right:0;position:absolute;top:0;line-height:1}.exactmetrics-notice.exactmetrics-notice-error .exactmetrics-notice-inner{border-bottom-color:#d83638}.exactmetrics-notice.exactmetrics-notice-error .exactmetrics-notice-inner .notice-content:before{content:"\f064";color:#d83638}.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-notice-inner{border-bottom-color:#fa0}.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-notice-inner{border-bottom-color:#4d3f7a}.exactmetrics-notice.exactmetrics-notice-info-xl .exactmetrics-notice-inner{border:1px solid #6528f5;border-right-width:3px;color:#777}.exactmetrics-notice.exactmetrics-notice-info-xl .exactmetrics-notice-inner .exactmetrics-button{color:#fff;margin:15px 0 0}.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-notice-inner{border-bottom-color:#32a27a}.exactmetrics-notice .notice-content{margin-left:20px}.exactmetrics-notice .notice-content a{color:#210f59}.exactmetrics-notice .dismiss-notice{border:none;background:none;padding:0;margin:0;display:inline-block;cursor:pointer;color:#e9e7ee;position:relative;float:left}.exactmetrics-notice .dismiss-notice:focus,.exactmetrics-notice .dismiss-notice:hover{color:#210f59}.exactmetrics-notice.exactmetrics-notice-info .notice-content,.exactmetrics-notice.exactmetrics-notice-success .notice-content,.exactmetrics-notice.exactmetrics-notice-warning .notice-content{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:425px){.exactmetrics-notice.exactmetrics-notice-info .notice-content,.exactmetrics-notice.exactmetrics-notice-success .notice-content,.exactmetrics-notice.exactmetrics-notice-warning .notice-content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-notice-button{-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;margin-left:-20px;margin-right:auto}@media (max-width:782px){.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-notice-button{margin-right:0}}.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-button{margin-top:0;padding:10px 16px 8px;line-height:1;font-size:14px;font-weight:600}@media (max-width:782px){.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-button{margin-top:10px;margin-right:0}}.exactmetrics-notice.exactmetrics-notice-error .exactmetrics-button{margin-top:10px;margin-right:0;color:#fff}body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-end,body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-right{top:32px}@media screen and (max-width:767px){body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-end,body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-right{top:42px;left:auto;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast{border-radius:5px;padding:17px 28px;border:1px solid #f4f3f7;-webkit-box-shadow:0 20px 30px rgba(48,44,62,.05);box-shadow:0 20px 30px rgba(48,44,62,.05);min-width:380px}@media screen and (max-width:767px){body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast{width:80vw}}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-title{color:#210f59;font-size:15px;font-weight:700;line-height:1.5;margin-right:32px;margin-top:-3px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-close{font-size:26px;width:18px;height:18px;line-height:10px;position:absolute;left:14px;top:19px;color:#9087ac}@media screen and (max-width:767px){body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-close{padding:9px;line-height:0}}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon{width:27px;height:24px;min-width:27px;margin:0;border:0;color:#9087ac}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info{border:none;position:relative}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before{content:"\f01e";position:absolute;top:-1px;right:0;line-height:1;font-size:24px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info .swal2-icon-text{display:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error{border:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before{content:"\f023";position:absolute;top:-1px;right:0;line-height:1;font-size:24px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error .swal2-x-mark *{display:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon [class^=-ring]{width:14px;height:14px;top:0;right:0}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{top:0;right:0;border:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{content:"\f027";position:absolute;top:-1px;right:0;line-height:1;font-size:24px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success [class^=swal2-success-line]{display:none}@-webkit-keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@-webkit-keyframes swal2-animate-success-line-tip{0%{top:1.1875em;right:.0625em;width:0}54%{top:1.0625em;right:.125em;width:0}70%{top:2.1875em;right:-.375em;width:3.125em}84%{top:3em;right:1.3125em;width:1.0625em}to{top:2.8125em;right:.875em;width:1.5625em}}@keyframes swal2-animate-success-line-tip{0%{top:1.1875em;right:.0625em;width:0}54%{top:1.0625em;right:.125em;width:0}70%{top:2.1875em;right:-.375em;width:3.125em}84%{top:3em;right:1.3125em;width:1.0625em}to{top:2.8125em;right:.875em;width:1.5625em}}@-webkit-keyframes swal2-animate-success-line-long{0%{top:3.375em;left:2.875em;width:0}65%{top:3.375em;left:2.875em;width:0}84%{top:2.1875em;left:0;width:3.4375em}to{top:2.375em;left:.5em;width:2.9375em}}@keyframes swal2-animate-success-line-long{0%{top:3.375em;left:2.875em;width:0}65%{top:3.375em;left:2.875em;width:0}84%{top:2.1875em;left:0;width:3.4375em}to{top:2.375em;left:.5em;width:2.9375em}}@-webkit-keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}5%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}12%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}to{-webkit-transform:rotate(405deg);transform:rotate(405deg)}}@keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}5%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}12%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}to{-webkit-transform:rotate(405deg);transform:rotate(405deg)}}@-webkit-keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@-webkit-keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}@keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}.exactmetrics_page body.swal2-toast-shown .swal2-container,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-shown{background-color:rgba(0,0,0,0)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top{top:0;left:auto;bottom:auto;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-end,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;left:0;bottom:auto;right:auto}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-left,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-start{top:0;left:auto;bottom:auto;right:0}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-left,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-start{top:50%;left:auto;bottom:auto;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center{top:50%;left:auto;bottom:auto;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-end,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-right{top:50%;left:0;bottom:auto;right:auto;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-left,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-start{top:auto;left:auto;bottom:0;right:0}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom{top:auto;left:auto;bottom:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-end,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;left:0;bottom:0;right:auto}.exactmetrics_page body.swal2-toast-column .swal2-toast{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-actions{-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;height:2.2em;margin-top:.3125em}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-loading{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-input{height:2em;margin:.3125em auto;font-size:1em}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-validation-message{font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:auto;padding:.625em;-webkit-box-shadow:0 0 .625em #d9d9d9;box-shadow:0 0 .625em #d9d9d9;overflow-y:hidden}.exactmetrics_page .swal2-popup.swal2-toast .swal2-header{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;width:100%}.exactmetrics_page .swal2-popup.swal2-toast .swal2-title{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin:0 .6em;font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-close{position:static;width:.8em;height:.8em;line-height:.8}.exactmetrics_page .swal2-popup.swal2-toast .swal2-content{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon{width:2em;min-width:2em;height:2em;margin:0}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon-text{font-size:2em;font-weight:700;line-height:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{right:.3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{left:.3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-actions{height:auto;margin:0 .3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-styled{margin:0 .3125em;padding:.3125em .625em;font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-styled:focus{-webkit-box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4);box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4)}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{position:absolute;width:2em;height:2.8125em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);border-radius:50%}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.25em;right:-.9375em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:2em 2em;-ms-transform-origin:2em 2em;transform-origin:2em 2em;border-radius:0 4em 4em 0}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.25em;right:.9375em;-webkit-transform-origin:100% 2em;-ms-transform-origin:100% 2em;transform-origin:100% 2em;border-radius:4em 0 0 4em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;right:.4375em;width:.4375em;height:2.6875em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;right:.1875em;width:.75em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;left:.1875em;width:1.375em}.exactmetrics_page .swal2-popup.swal2-toast.swal2-show{-webkit-animation:showSweetToast .5s;animation:showSweetToast .5s}.exactmetrics_page .swal2-popup.swal2-toast.swal2-hide{-webkit-animation:hideSweetToast .2s forwards;animation:hideSweetToast .2s forwards}.exactmetrics_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:animate-toast-success-tip .75s;animation:animate-toast-success-tip .75s}.exactmetrics_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:animate-toast-success-long .75s;animation:animate-toast-success-long .75s}@-webkit-keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(-2deg);transform:translateY(-.625em) rotate(-2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(2deg);transform:translateY(0) rotate(2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(-2deg);transform:translateY(.3125em) rotate(-2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(-2deg);transform:translateY(-.625em) rotate(-2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(2deg);transform:translateY(0) rotate(2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(-2deg);transform:translateY(.3125em) rotate(-2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@-webkit-keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(-1deg);transform:rotate(-1deg);opacity:0}}@keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(-1deg);transform:rotate(-1deg);opacity:0}}@-webkit-keyframes animate-toast-success-tip{0%{top:.5625em;right:.0625em;width:0}54%{top:.125em;right:.125em;width:0}70%{top:.625em;right:-.25em;width:1.625em}84%{top:1.0625em;right:.75em;width:.5em}to{top:1.125em;right:.1875em;width:.75em}}@keyframes animate-toast-success-tip{0%{top:.5625em;right:.0625em;width:0}54%{top:.125em;right:.125em;width:0}70%{top:.625em;right:-.25em;width:1.625em}84%{top:1.0625em;right:.75em;width:.5em}to{top:1.125em;right:.1875em;width:.75em}}@-webkit-keyframes animate-toast-success-long{0%{top:1.625em;left:1.375em;width:0}65%{top:1.25em;left:.9375em;width:0}84%{top:.9375em;left:0;width:1.125em}to{top:.9375em;left:.1875em;width:1.375em}}@keyframes animate-toast-success-long{0%{top:1.625em;left:1.375em;width:0}65%{top:1.25em;left:.9375em;width:0}84%{top:.9375em;left:0;width:1.125em}to{top:.9375em;left:.1875em;width:1.375em}}.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}.exactmetrics_page body.swal2-height-auto{height:auto!important}.exactmetrics_page body.swal2-no-backdrop .swal2-shown{top:auto;left:auto;bottom:auto;right:auto;background-color:rgba(0,0,0,0)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown>.swal2-modal{-webkit-box-shadow:0 0 10px rgba(0,0,0,.4);box-shadow:0 0 10px rgba(0,0,0,.4)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top{top:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-left,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-start{top:0;right:0}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-end,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-right{top:0;left:0}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center{top:50%;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-left,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-start{top:50%;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-end,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-right{top:50%;left:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom{bottom:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-left,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-start{bottom:0;right:0}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-end,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-right{left:0;bottom:0}.exactmetrics_page .swal2-container{display:-webkit-box;display:-ms-flexbox;display:flex;position:fixed;top:0;left:0;bottom:0;right:0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:10px;background-color:rgba(0,0,0,0);z-index:1060;overflow-x:hidden;-webkit-overflow-scrolling:touch}.exactmetrics_page .swal2-container.swal2-top{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.exactmetrics_page .swal2-container.swal2-top-left,.exactmetrics_page .swal2-container.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.exactmetrics_page .swal2-container.swal2-top-end,.exactmetrics_page .swal2-container.swal2-top-right{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.exactmetrics_page .swal2-container.swal2-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics_page .swal2-container.swal2-center-left,.exactmetrics_page .swal2-container.swal2-center-start{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.exactmetrics_page .swal2-container.swal2-center-end,.exactmetrics_page .swal2-container.swal2-center-right{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.exactmetrics_page .swal2-container.swal2-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.exactmetrics_page .swal2-container.swal2-bottom-left,.exactmetrics_page .swal2-container.swal2-bottom-start{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.exactmetrics_page .swal2-container.swal2-bottom-end,.exactmetrics_page .swal2-container.swal2-bottom-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.exactmetrics_page .swal2-container.swal2-grow-fullscreen>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;-ms-flex-pack:center}.exactmetrics_page .swal2-container.swal2-grow-fullscreen>.swal2-modal,.exactmetrics_page .swal2-container.swal2-grow-row>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-webkit-box-pack:center;justify-content:center}.exactmetrics_page .swal2-container.swal2-grow-row>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-ms-flex-pack:center}.exactmetrics_page .swal2-container.swal2-grow-column{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-left,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-start,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-left,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-start,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-left,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-end,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-right,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-end,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-right,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-end,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.exactmetrics_page .swal2-container.swal2-grow-column>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics_page .swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal{margin:auto}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.exactmetrics_page .swal2-container .swal2-modal{margin:0!important}}.exactmetrics_page .swal2-container.swal2-fade{-webkit-transition:background-color .1s;transition:background-color .1s}.exactmetrics_page .swal2-container.swal2-shown{background-color:rgba(0,0,0,.4)}.exactmetrics_page .swal2-popup{display:none;position:relative;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:32em;max-width:100%;padding:1.25em;border-radius:.3125em;background:#fff;font-family:inherit;font-size:1rem;-webkit-box-sizing:border-box;box-sizing:border-box;right:0;top:0}.exactmetrics_page .swal2-popup:focus{outline:0}.exactmetrics_page .swal2-popup.swal2-loading{overflow-y:hidden}.exactmetrics_page .swal2-popup .swal2-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics_page .swal2-popup .swal2-title{display:block;position:relative;max-width:100%;margin:0 0 .4em;padding:0;color:#595959;font-size:1.875em;font-weight:600;text-align:center;text-transform:none;word-wrap:break-word}.exactmetrics_page .swal2-popup .swal2-actions{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em auto 0;z-index:1}.exactmetrics_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.exactmetrics_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:hover{background-image:-webkit-gradient(linear,right top,right bottom,from(rgba(0,0,0,.1)),to(rgba(0,0,0,.1)));background-image:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1))}.exactmetrics_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:active{background-image:-webkit-gradient(linear,right top,right bottom,from(rgba(0,0,0,.2)),to(rgba(0,0,0,.2)));background-image:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2))}.exactmetrics_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-confirm{width:2.5em;height:2.5em;margin:.46875em;padding:0;border-radius:100%;border:.25em solid rgba(0,0,0,0);background-color:rgba(0,0,0,0)!important;color:rgba(0,0,0,0);cursor:default;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.exactmetrics_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-cancel{margin-left:30px;margin-right:30px}.exactmetrics_page .swal2-popup .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm:after{display:inline-block;width:15px;height:15px;margin-right:5px;border-radius:50%;border:3px solid #999;border-left-color:rgba(0,0,0,0);-webkit-box-shadow:-1px 1px 1px #fff;box-shadow:-1px 1px 1px #fff;content:"";-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal}.exactmetrics_page .swal2-popup .swal2-styled{margin:.3125em;padding:.625em 2em;font-weight:500;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .swal2-popup .swal2-styled:not([disabled]){cursor:pointer}.exactmetrics_page .swal2-popup .swal2-styled.swal2-confirm{border:0;border-radius:.25em;background:initial;background-color:#3085d6;color:#fff;font-size:1.0625em}.exactmetrics_page .swal2-popup .swal2-styled.swal2-cancel{border:0;border-radius:.25em;background:initial;background-color:#aaa;color:#fff;font-size:1.0625em}.exactmetrics_page .swal2-popup .swal2-styled:focus{outline:0;-webkit-box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4);box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4)}.exactmetrics_page .swal2-popup .swal2-styled::-moz-focus-inner{border:0}.exactmetrics_page .swal2-popup .swal2-footer{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em 0 0;padding:1em 0 0;border-top:1px solid #eee;color:#545454;font-size:1em}.exactmetrics_page .swal2-popup .swal2-image{max-width:100%;margin:1.25em auto}.exactmetrics_page .swal2-popup .swal2-close{position:absolute;top:0;left:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:1.2em;height:1.2em;padding:0;-webkit-transition:color .1s ease-out;transition:color .1s ease-out;border:none;border-radius:0;outline:initial;background:100% 0;color:#ccc;font-family:serif;font-size:2.5em;line-height:1.2;cursor:pointer;overflow:hidden}.exactmetrics_page .swal2-popup .swal2-close:hover{-webkit-transform:none;-ms-transform:none;transform:none;color:#f27474}.exactmetrics_page .swal2-popup>.swal2-checkbox,.exactmetrics_page .swal2-popup>.swal2-file,.exactmetrics_page .swal2-popup>.swal2-input,.exactmetrics_page .swal2-popup>.swal2-radio,.exactmetrics_page .swal2-popup>.swal2-select,.exactmetrics_page .swal2-popup>.swal2-textarea{display:none}.exactmetrics_page .swal2-popup .swal2-content{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0;padding:0;color:#545454;font-size:1.125em;font-weight:300;line-height:normal;z-index:1;word-wrap:break-word}.exactmetrics_page .swal2-popup #swal2-content{text-align:center}.exactmetrics_page .swal2-popup .swal2-checkbox,.exactmetrics_page .swal2-popup .swal2-file,.exactmetrics_page .swal2-popup .swal2-input,.exactmetrics_page .swal2-popup .swal2-radio,.exactmetrics_page .swal2-popup .swal2-select,.exactmetrics_page .swal2-popup .swal2-textarea{margin:1em auto}.exactmetrics_page .swal2-popup .swal2-file,.exactmetrics_page .swal2-popup .swal2-input,.exactmetrics_page .swal2-popup .swal2-textarea{width:100%;-webkit-transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,box-shadow .3s;transition:border-color .3s,box-shadow .3s,-webkit-box-shadow .3s;border:1px solid #d9d9d9;border-radius:.1875em;font-size:1.125em;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.06);box-shadow:inset 0 1px 1px rgba(0,0,0,.06);-webkit-box-sizing:border-box;box-sizing:border-box}.exactmetrics_page .swal2-popup .swal2-file.swal2-inputerror,.exactmetrics_page .swal2-popup .swal2-input.swal2-inputerror,.exactmetrics_page .swal2-popup .swal2-textarea.swal2-inputerror{border-color:#f27474!important;-webkit-box-shadow:0 0 2px #f27474!important;box-shadow:0 0 2px #f27474!important}.exactmetrics_page .swal2-popup .swal2-file:focus,.exactmetrics_page .swal2-popup .swal2-input:focus,.exactmetrics_page .swal2-popup .swal2-textarea:focus{border:1px solid #b4dbed;outline:0;-webkit-box-shadow:0 0 3px #c4e6f5;box-shadow:0 0 3px #c4e6f5}.exactmetrics_page .swal2-popup .swal2-file::-webkit-input-placeholder,.exactmetrics_page .swal2-popup .swal2-input::-webkit-input-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::-webkit-input-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file::-moz-placeholder,.exactmetrics_page .swal2-popup .swal2-input::-moz-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::-moz-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file:-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-input:-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea:-ms-input-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file::-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-input::-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::-ms-input-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file::placeholder,.exactmetrics_page .swal2-popup .swal2-input::placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-range input{width:80%}.exactmetrics_page .swal2-popup .swal2-range output{width:20%;font-weight:600;text-align:center}.exactmetrics_page .swal2-popup .swal2-range input,.exactmetrics_page .swal2-popup .swal2-range output{height:2.625em;margin:1em auto;padding:0;font-size:1.125em;line-height:2.625em}.exactmetrics_page .swal2-popup .swal2-input{height:2.625em;padding:0 .75em}.exactmetrics_page .swal2-popup .swal2-input[type=number]{max-width:10em}.exactmetrics_page .swal2-popup .swal2-file{font-size:1.125em}.exactmetrics_page .swal2-popup .swal2-textarea{height:6.75em;padding:.75em}.exactmetrics_page .swal2-popup .swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;color:#545454;font-size:1.125em}.exactmetrics_page .swal2-popup .swal2-checkbox,.exactmetrics_page .swal2-popup .swal2-radio{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics_page .swal2-popup .swal2-checkbox label,.exactmetrics_page .swal2-popup .swal2-radio label{margin:0 .6em;font-size:1.125em}.exactmetrics_page .swal2-popup .swal2-checkbox input,.exactmetrics_page .swal2-popup .swal2-radio input{margin:0 .4em}.exactmetrics_page .swal2-popup .swal2-validation-message{display:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:.625em;background:#f0f0f0;color:#666;font-size:1em;font-weight:300;overflow:hidden}.exactmetrics_page .swal2-popup .swal2-validation-message:before{display:inline-block;width:1.5em;min-width:1.5em;height:1.5em;margin:0 .625em;border-radius:50%;background-color:#f27474;color:#fff;font-weight:600;line-height:1.5em;text-align:center;content:"!";zoom:normal}@supports (-ms-accelerator:true){.exactmetrics_page .swal2-range input{width:100%!important}.exactmetrics_page .swal2-range output{display:none}}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.exactmetrics_page .swal2-range input{width:100%!important}.exactmetrics_page .swal2-range output{display:none}}@-moz-document url-prefix(){.exactmetrics_page .swal2-close:focus{outline:2px solid rgba(50,100,150,.4)}}.exactmetrics_page .swal2-icon{position:relative;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:5em;height:5em;margin:1.25em auto 1.875em;border:.25em solid rgba(0,0,0,0);border-radius:50%;line-height:5em;cursor:default;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;zoom:normal}.exactmetrics_page .swal2-icon-text{font-size:3.75em}.exactmetrics_page .swal2-icon.swal2-error{border-color:#f27474}.exactmetrics_page .swal2-icon.swal2-error .swal2-x-mark{position:relative;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.exactmetrics_page .swal2-icon.swal2-error [class^=swal2-x-mark-line]{display:block;position:absolute;top:2.3125em;width:2.9375em;height:.3125em;border-radius:.125em;background-color:#f27474}.exactmetrics_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{right:1.0625em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.exactmetrics_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{left:1em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.exactmetrics_page .swal2-icon.swal2-warning{border-color:#facea8;color:#f8bb86}.exactmetrics_page .swal2-icon.swal2-info{border-color:#9de0f6;color:#3fc3ee;font-size:1rem}.exactmetrics_page .swal2-icon.swal2-question{border-color:#c9dae1;color:#87adbd}.exactmetrics_page .swal2-icon.swal2-success{border-color:#a5dc86}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-circular-line]{position:absolute;width:3.75em;height:7.5em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);border-radius:50%}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.4375em;right:-2.0635em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:3.75em 3.75em;-ms-transform-origin:3.75em 3.75em;transform-origin:3.75em 3.75em;border-radius:0 7.5em 7.5em 0}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.6875em;right:1.875em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:100% 3.75em;-ms-transform-origin:100% 3.75em;transform-origin:100% 3.75em;border-radius:7.5em 0 0 7.5em}.exactmetrics_page .swal2-icon.swal2-success .swal2-success-ring{position:absolute;top:-.25em;right:-.25em;width:100%;height:100%;border:.25em solid rgba(165,220,134,.3);border-radius:50%;z-index:2;-webkit-box-sizing:content-box;box-sizing:content-box}.exactmetrics_page .swal2-icon.swal2-success .swal2-success-fix{position:absolute;top:.5em;right:1.625em;width:.4375em;height:5.625em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);z-index:1}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-line]{display:block;position:absolute;height:.3125em;border-radius:.125em;background-color:#a5dc86;z-index:2}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{top:2.875em;right:.875em;width:1.5625em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:2.375em;left:.5em;width:2.9375em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.exactmetrics_page .swal2-progresssteps{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 0 1.25em;padding:0;font-weight:600}.exactmetrics_page .swal2-progresssteps li{display:inline-block;position:relative}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle{width:2em;height:2em;border-radius:2em;background:#3085d6;color:#fff;line-height:2em;text-align:center;z-index:20}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle:first-child{margin-right:0}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle:last-child{margin-left:0}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep{background:#3085d6}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progresscircle,.exactmetrics_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progressline{background:#add8e6}.exactmetrics_page .swal2-progresssteps .swal2-progressline{width:2.5em;height:.4em;margin:0 -1px;background:#3085d6;z-index:10}.exactmetrics_page [class^=swal2]{-webkit-tap-highlight-color:transparent}.exactmetrics_page .swal2-show{-webkit-animation:swal2-show .3s;animation:swal2-show .3s}.exactmetrics_page .swal2-show.swal2-noanimation{-webkit-animation:none;animation:none}.exactmetrics_page .swal2-hide{-webkit-animation:swal2-hide .15s forwards;animation:swal2-hide .15s forwards}.exactmetrics_page .swal2-hide.swal2-noanimation{-webkit-animation:none;animation:none}.exactmetrics_page .swal2-rtl .swal2-close{left:auto;right:0}.exactmetrics_page .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:swal2-animate-success-line-tip .75s;animation:swal2-animate-success-line-tip .75s}.exactmetrics_page .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:swal2-animate-success-line-long .75s;animation:swal2-animate-success-line-long .75s}.exactmetrics_page .swal2-animate-success-icon .swal2-success-circular-line-right{-webkit-animation:swal2-rotate-success-circular-line 4.25s ease-in;animation:swal2-rotate-success-circular-line 4.25s ease-in}.exactmetrics_page .swal2-animate-error-icon{-webkit-animation:swal2-animate-error-icon .5s;animation:swal2-animate-error-icon .5s}.exactmetrics_page .swal2-animate-error-icon .swal2-x-mark{-webkit-animation:swal2-animate-error-x-mark .5s;animation:swal2-animate-error-x-mark .5s}@-webkit-keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@media print{.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}.exactmetrics-notifications-display{background:#f4f3f7;border-right:3px solid #6528f5;padding:20px;border-radius:0 3px 3px 0;margin-bottom:50px;position:relative}.exactmetrics-settings-panel .exactmetrics-notifications-display{margin-right:25px;margin-left:25px}.exactmetrics-notifications-display h3{margin:0 0 4px;font-size:16px;line-height:20px}.exactmetrics-notifications-display p{margin-top:4px;margin-bottom:12px;font-size:14px;line-height:18px}.exactmetrics-notifications-display .exactmetrics-notification{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-notifications-display .exactmetrics-notification .exactmetrics-notifications-indicator{padding-top:10px}.exactmetrics-notifications-display .exactmetrics-notification .exactmetrics-notifications-indicator a{position:relative}.exactmetrics-notifications-display .exactmetrics-notification-inner{margin-right:25px}.exactmetrics-notifications-display .exactmetrics-button{margin-left:15px}.exactmetrics-notifications-display .exactmetrics-notification-navigation{position:absolute;left:0;top:100%}.exactmetrics-notifications-display .exactmetrics-notification-navigation button{background:#f4f3f7;border:none;border-radius:0 0 3px 3px;margin:0;padding:5px 8px 7px;color:#a8aebd;cursor:pointer}.exactmetrics-notifications-display .exactmetrics-notification-navigation button:focus,.exactmetrics-notifications-display .exactmetrics-notification-navigation button:hover{color:#6528f5}.exactmetrics-notifications-display .exactmetrics-notification-navigation button .monstericon-arrow{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);font-size:10px}.exactmetrics-notifications-display .exactmetrics-notification-navigation button.exactmetrics-notification-previous{margin-left:2px}.exactmetrics-notifications-display .exactmetrics-notification-navigation button.exactmetrics-notification-previous .monstericon-arrow{-webkit-transform:rotate(-270deg);-ms-transform:rotate(-270deg);transform:rotate(-270deg)}.exactmetrics-notifications-display .exactmetrics-notification-dismiss{border:none;background:none;color:#a8aebd;position:absolute;left:12px;top:9px;padding:0;margin:0;font-size:16px;cursor:pointer}.exactmetrics-notifications-display .exactmetrics-notifications-unread{min-width:10px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:12px;right:18px;border-radius:20px;line-height:16px;color:#fff;font-weight:700;text-align:center;display:inline-block;padding:0 3px}.exactmetrics-report .exactmetrics-notifications-display .exactmetrics-notifications-unread{min-width:16px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:4px;border-radius:20px;line-height:1;color:#fff;font-weight:700;text-align:center;padding:0 2px;right:20px}.exactmetrics-admin-page.exactmetrics-path-about-us .exactmetrics-notificationsv3-container,.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-notificationsv3-container,.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-notificationsv3-container,.exactmetrics-admin-page.exactmetrics-path-tools-url-builder .exactmetrics-notificationsv3-container,.exactmetrics-admin-page.exactmetrics-reports-page .exactmetrics-notificationsv3-container{margin-left:0}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-navigation-bar{width:90%}.exactmetrics-admin-page .exactmetrics-notificationsv3-container{display:inline-block;margin-right:20px;float:left}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-number{position:absolute;top:-9px;min-width:20px;height:20px;line-height:20px;display:block;background:#eb5757;border-radius:20px;font-size:12px;color:#fff;font-weight:700;text-align:center;padding:0 6px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-number.number-greater-than-10{left:-13px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-number.number-less-than-10{left:-10px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-dismissed-number{min-width:24px;height:24px;background:#7c869d;border-radius:20px;display:inline-block;text-align:center;vertical-align:middle;line-height:24px;color:#fff;font-size:14px;font-weight:700;padding:0 8px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-no-notifications{text-align:center;position:absolute;top:50%;margin-top:-69px;width:100%}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-no-notifications h4{font-size:16px;color:#7c869d}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button{position:relative}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button{position:absolute;top:21px;left:15px}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button{background:#f0f2f4;border-radius:3px;padding:11px 7px;line-height:0;vertical-align:middle;margin-top:0;border:solid #d3d7de;border-width:1px 1px 2px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button{display:inline-block}}@media (max-width:959px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button{display:block}}@media (max-width:1099px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button{display:block}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button:hover{background:#e7eaec;border-color:#d3d7de;outline:none}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-notificationsv3-inbox-number{cursor:pointer}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar{width:440px;position:fixed;top:32px;left:0;background:#fff;z-index:1001;overflow:scroll;height:100%;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar{top:46px;width:300px}}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(-50px)}to{opacity:1;-webkit-transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(-50px);transform:translateX(-50px)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar.exactmetrics-notificationsv3-sidebar-in{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-single-notification{padding:0 16px;overflow:hidden}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top{background:#2679c1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:50px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-title{width:50%;text-align:right}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-title svg{margin-left:10px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-title h3{display:inline-block;color:#fff;font-size:18px;font-weight:700}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions{width:50%;text-align:left}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button{color:#fff;text-decoration:underline;border:0;padding:0;background:rgba(0,0,0,0);border-radius:0;float:none}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button{display:inline-block}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button:hover{color:#efe5e5}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button:focus{outline:none}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-notificationsv3-sidebar-close{margin-right:12px;vertical-align:bottom}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-notificationsv3-sidebar-close:active svg path,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-notificationsv3-sidebar-close:focus svg path,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-notificationsv3-sidebar-close:hover svg path{fill:#efe5e5}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:60px;border-bottom:1px solid #e2e4e9;margin:0 16px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-notifications-count{width:50%;text-align:right}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-notifications-count .exactmetrics-notificationsv3-inbox-number{position:relative;display:inline-block;top:inherit;left:inherit;min-width:24px;height:24px;line-height:24px;margin-left:8px;padding:0 8px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-notifications-count .exactmetrics-notificationsv3-dismissed-number{margin-left:8px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-notifications-count h4{display:inline-block}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions{width:50%;text-align:left}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions span{text-decoration:underline;color:#99a1b3;cursor:pointer}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions span:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions span:focus,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions span:hover{color:#a9b1c3}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications{display:block;margin-bottom:32px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications{margin-bottom:46px}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification{border-bottom:1px solid #e2e4e9;padding-bottom:24px;display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-icon{width:54px;float:right;text-align:center;padding-top:24px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-icon{float:none;margin:0 auto}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details{float:right;width:354px;padding-top:20px;text-align:right}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details{width:260px}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-title h5{margin-top:0;margin-bottom:0;color:#393f4c;font-size:13px;font-weight:700;width:70%;display:inline-block}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-title h5{width:65%}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-title span{color:#7f899f;font-size:13px;float:left}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-content p{color:#393f4c;font-size:13px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-top:2px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions .exactmetrics-button{display:block;background:#f0f2f4;border:1px solid #d3d7de;border-radius:3px;font-weight:500;font-size:13px;color:#393f4c;letter-spacing:.02em;padding:6px 11px;margin-left:10px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions .exactmetrics-button:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions .exactmetrics-button:hover{background:#d3d7de}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions span{font-size:13px;color:#7f899f;cursor:pointer}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions span:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions span:focus,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions span:hover{color:#a9b1c3}.exactmetrics-tooltip{display:block!important;z-index:10000;max-width:350px}.exactmetrics-tooltip .exactmetrics-tooltip-inner{background:#6528f5;color:#fff;border-radius:5px;padding:16px 20px;font-size:15px;line-height:1.5;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;text-align:center}.exactmetrics-tooltip .exactmetrics-tooltip-inner a{color:#fff;font-weight:700}.exactmetrics-tooltip .exactmetrics-tooltip-arrow{width:0;height:0;border-style:solid;position:absolute;margin:8px;border-color:#6528f5;z-index:1}.exactmetrics-tooltip[x-placement^=top]{padding-bottom:8px}.exactmetrics-tooltip[x-placement^=top] .exactmetrics-tooltip-arrow{border-width:8px 8px 0;border-right-color:rgba(0,0,0,0)!important;border-left-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;bottom:0;right:calc(50% - 8px);margin-top:0;margin-bottom:0}.exactmetrics-tooltip[x-placement^=bottom]{padding-top:8px}.exactmetrics-tooltip[x-placement^=bottom] .exactmetrics-tooltip-arrow{border-width:0 8px 8px;border-right-color:rgba(0,0,0,0)!important;border-left-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;top:0;right:calc(50% - 8px);margin-top:0;margin-bottom:0}.exactmetrics-tooltip[x-placement^=right]{padding-right:8px}.exactmetrics-tooltip[x-placement^=right] .exactmetrics-tooltip-arrow{border-width:8px 0 8px 8px;border-right-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;right:0;top:calc(50% - 8px);margin-right:0;margin-left:0}.exactmetrics-tooltip[x-placement^=left]{padding-left:8px}.exactmetrics-tooltip[x-placement^=left] .exactmetrics-tooltip-arrow{border-width:8px 8px 8px 0;border-top-color:rgba(0,0,0,0)!important;border-left-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;left:0;top:calc(50% - 8px);margin-right:0;margin-left:0}.exactmetrics-tooltip.popover .popover-inner{background:#fff;color:#6528f5;padding:24px;border-radius:5px;-webkit-box-shadow:0 5px 30px rgba(0,0,0,.1);box-shadow:0 5px 30px rgba(0,0,0,.1)}.exactmetrics-tooltip.popover .popover-arrow{border-color:#fff}.exactmetrics-tooltip[aria-hidden=true]{visibility:hidden;opacity:0;-webkit-transition:opacity .15s,visibility .15s;transition:opacity .15s,visibility .15s}.exactmetrics-tooltip[aria-hidden=false]{visibility:visible;opacity:1;-webkit-transition:opacity .15s;transition:opacity .15s}.exactmetrics-roller{display:inline-block;position:relative;width:58px;height:58px}.exactmetrics-roller div{-webkit-animation:exactmetrics-roller 1.4s cubic-bezier(.5,0,.5,1) infinite;animation:exactmetrics-roller 1.4s cubic-bezier(.5,0,.5,1) infinite;-webkit-transform-origin:29px 29px;-ms-transform-origin:29px 29px;transform-origin:29px 29px}.exactmetrics-roller div:after{content:" ";display:block;position:absolute;width:8px;height:8px;border-radius:50%;background:#6528f5;margin:-4px -4px 0 0}.exactmetrics-roller div:first-child{-webkit-animation-delay:-36ms;animation-delay:-36ms}.exactmetrics-roller div:nth-child(2){-webkit-animation-delay:-72ms;animation-delay:-72ms}.exactmetrics-roller div:nth-child(3){-webkit-animation-delay:-.108s;animation-delay:-.108s}.exactmetrics-roller div:nth-child(4){-webkit-animation-delay:-.144s;animation-delay:-.144s}.exactmetrics-roller div:nth-child(5){-webkit-animation-delay:-.18s;animation-delay:-.18s}.exactmetrics-roller div:nth-child(6){-webkit-animation-delay:-.216s;animation-delay:-.216s}.exactmetrics-roller div:nth-child(7){-webkit-animation-delay:-.252s;animation-delay:-.252s}.exactmetrics-roller div:first-child:after{top:49px;right:44px}.exactmetrics-roller div:nth-child(2):after{top:54px;right:28px}.exactmetrics-roller div:nth-child(3):after{top:48px;right:13px}.exactmetrics-roller div:nth-child(4):after{top:35px;right:5px}.exactmetrics-roller div:nth-child(5):after{top:19px;right:6px}.exactmetrics-roller div:nth-child(6):after{top:8px;right:15px}.exactmetrics-roller div:nth-child(7):after{top:4px;right:29px}@-webkit-keyframes exactmetrics-roller{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@keyframes exactmetrics-roller{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}.exactmetrics-upload-media-wrapper .exactmetrics-dark{display:block}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media-label{margin-bottom:0!important}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media{display:block;width:100%;margin-top:20px;position:relative;max-width:300px}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media .exactmetrics-uploaded-media-overlay{display:none;background:rgba(0,0,0,.7);width:100%;position:absolute;top:0;right:0;height:100%;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media .exactmetrics-uploaded-media-overlay .exactmetrics-remove-uploaded-media{color:#fff;text-decoration:underline;margin-right:auto;cursor:pointer;padding:0 0 10px 10px}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media .exactmetrics-uploaded-media-overlay .exactmetrics-remove-uploaded-media:hover{text-decoration:none}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media:hover .exactmetrics-uploaded-media-overlay{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media img{max-width:100%;display:inline-block}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media{overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;margin-top:20px}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-input{width:73%;margin-left:2%;float:right;position:relative;margin-top:0}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button{width:25%;float:right;font-size:15px}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button:active,.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button:focus,.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button:hover{outline:none}.exactmetrics-upload-media-wrapper .inline-field .exactmetrics-button{position:relative!important;margin-right:10px;padding:12px 24px!important}.exactmetrics-upload-media-wrapper .inline-field .exactmetrics-button:first-child{margin-right:0}.exactmetrics-email-summaries-settings a{color:#6528f5!important}.exactmetrics-email-summaries-settings a:focus,.exactmetrics-email-summaries-settings a:hover{color:#393f4c!important}.exactmetrics-email-summaries-settings .exactmetrics-dark{display:block}.exactmetrics-email-summaries-settings .inline-field .exactmetrics-button{position:relative!important;margin-right:10px;padding:12px 24px!important}.exactmetrics-email-summaries-settings .inline-field .exactmetrics-button:first-child{margin-right:0}.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater{margin-bottom:18px}.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row input[type=number],.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row input[type=text],.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row textarea{border-color:#9087ac}.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row .exactmetrics-input-valid input{border-color:#32a27a}.exactmetrics-email-summaries-settings .exactmetrics-button.exactmetrics-button-disabled{cursor:not-allowed;background:#39967e!important;border-color:#4ab99b!important}.exactmetrics-accordion .exactmetrics-accordion{padding:0;border:1px solid #e0e0e0}.exactmetrics-accordion .exactmetrics-accordion div:not(:last-child){border-bottom:1px solid rgba(10,10,10,.1)}.exactmetrics-accordion .exactmetrics-accordion div:last-child .exactmetrics-accordion-item-details{border-radius:5px}.exactmetrics-accordion .exactmetrics-accordion dd{margin-right:0;margin-bottom:0}.exactmetrics-accordion .exactmetrics-accordion-item-trigger{cursor:pointer;outline:none}.exactmetrics-accordion .exactmetrics-accordion-item-details-inner,.exactmetrics-accordion .exactmetrics-accordion-item-trigger{padding:0 20px 30px}.exactmetrics-accordion .exactmetrics-accordion-item.is-active .exactmetrics-accordion-item-title{border-bottom:1px solid #e0e0e0}.exactmetrics-accordion .exactmetrics-accordion-item-title{position:relative;background-color:#fff;cursor:pointer}.exactmetrics-accordion .exactmetrics-accordion-item-title h4.exactmetrics-accordion-item-title-text{font-size:20px;margin-bottom:0;padding-left:1.25rem}.exactmetrics-accordion .exactmetrics-accordion-item-title h4.exactmetrics-accordion-item-title-text .title{padding-right:15px}.exactmetrics-accordion .exactmetrics-accordion-item-trigger{width:100%;text-align:right;background-color:rgba(0,0,0,0);border:none}.exactmetrics-accordion .exactmetrics-accordion-item-trigger-icon{display:block;position:absolute;top:0;left:1.5rem;bottom:0;margin:auto;width:8px;height:8px;border-left:2px solid #363636;border-bottom:2px solid #363636;-webkit-transform:translateY(-2px) rotate(-45deg);-ms-transform:translateY(-2px) rotate(-45deg);transform:translateY(-2px) rotate(-45deg);-webkit-transition:-webkit-transform .2s ease;transition:-webkit-transform .2s ease;transition:transform .2s ease;transition:transform .2s ease,-webkit-transform .2s ease}.exactmetrics-accordion .exactmetrics-accordion-item-trigger-icon.is-active{-webkit-transform:translateY(2px) rotate(-225deg);-ms-transform:translateY(2px) rotate(-225deg);transform:translateY(2px) rotate(-225deg)}.exactmetrics-accordion .exactmetrics-accordion-item-details{overflow:hidden;background-color:#fff;padding-top:15px}.exactmetrics-accordion .exactmetrics-accordion-item-details p,.exactmetrics-accordion .exactmetrics-accordion-item-details ul{font-size:1.2em;line-height:1.8}.exactmetrics-accordion .exactmetrics-accordion-item-enter-active,.exactmetrics-accordion .exactmetrics-accordion-item-leave-active{will-change:height;-webkit-transition:height .2s ease;transition:height .2s ease}.exactmetrics-accordion .exactmetrics-accordion-item-enter,.exactmetrics-accordion .exactmetrics-accordion-item-leave-to{height:0!important}body{background:#fff;margin:0}.exactmetrics-admin-page,.exactmetrics-admin-page *{-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}#wpcontent,.auto-fold #wpcontent{padding-right:0}.exactmetrics-highlighted-text{color:#64bfa5;font-weight:700}.exactmetrics-bold{font-weight:700}.exactmetrics-bg-img{width:100%;padding-top:66%;position:relative}.exactmetrics-bg-img:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;background-repeat:no-repeat;background-size:contain}.exactmetrics-header{padding:20px;background-color:#210f59;position:relative;z-index:90}.exactmetrics-header .exactmetrics-container{width:100%}@media (max-width:959px){.exactmetrics-header .exactmetrics-container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}}.exactmetrics-header .exactmetrics-float-right{text-align:center}@media (max-width:1099px){.exactmetrics-header .exactmetrics-float-right{text-align:left}}.exactmetrics-header .exactmetrics-float-right .exactmetrics-button{float:left;background:#fff;color:#210f59}@media (max-width:1099px){.exactmetrics-header .exactmetrics-float-right .exactmetrics-button{display:none}}.exactmetrics-header .exactmetrics-float-right .exactmetrics-button:focus,.exactmetrics-header .exactmetrics-float-right .exactmetrics-button:hover{color:#6528f5;background:#fff}.exactmetrics-header .exactmetrics-float-right .exactmetrics-button.exactmetrics-button-disabled{color:#9087ac}@media (max-width:959px){.exactmetrics-header .exactmetrics-float-right{text-align:left;width:100%}}.exactmetrics-logo-area{float:right;max-width:calc(100vw - 170px)}.exactmetrics-logo-area img{display:block;max-width:100%}@media (max-width:959px){.exactmetrics-logo-area{width:140px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0}}@media (max-width:959px){.exactmetrics-header .exactmetrics-container,.exactmetrics-navigation-bar .exactmetrics-container{padding:0;width:100%}}.exactmetrics-navigation-bar{background:rgba(0,0,0,0);display:inline-block}@media (max-width:959px){.exactmetrics-navigation-bar{padding:0;border:0}}@media (max-width:750px){.exactmetrics-navigation-bar{background:none;margin-left:40px}}.exactmetrics-admin-page{position:relative}.exactmetrics-admin-page .exactmetrics-blocked{position:absolute;top:0;bottom:0;left:0;right:0;background:hsla(0,0%,100%,.5);z-index:999}@media (max-width:959px){.exactmetrics-admin-page .exactmetrics-header{padding:20px 24px}.exactmetrics-admin-page .exactmetrics-header .exactmetrics-button{display:none}}.swal2-popup .swal2-title{line-height:1.2}#footer-left{color:#210f59}#footer-left .exactmetrics-no-text-decoration{text-decoration:none;color:#fdb72c;font-size:14px}#footer-left a{color:#6528f5}#wpfooter{display:none;margin-left:23px;margin-bottom:20px;right:23px;background:rgba(101,40,245,.05);padding:14px 20px;border-radius:5px}#wpfooter a{color:#6528f5}.exactmetrics-container{margin:0 auto;max-width:100%;width:750px}.exactmetrics-admin-page .exactmetrics-navigation-tab-link{text-decoration:none;padding:12px 4px 11px;font-size:15px;color:#fff;display:inline-block;margin-left:20px;line-height:1;outline:none;font-family:Lato,sans-serif;position:relative}.exactmetrics-admin-page .exactmetrics-navigation-tab-link:after{content:"";width:100%;right:0;position:absolute;top:100%;height:2px;border-radius:20px;background:#fff;display:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:focus,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:hover{border-bottom-color:#fff;color:#fff;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active:after,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:focus:after,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:hover:after{display:block}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.exactmetrics-navigation-tab-disabled:focus,.exactmetrics-admin-page .exactmetrics-navigation-tab-link.exactmetrics-navigation-tab-disabled:hover{border-bottom-color:rgba(0,0,0,0);color:#fff;cursor:default}@media (max-width:959px){.exactmetrics-admin-page .exactmetrics-navigation-tab-link{width:100%;padding:20px 0;color:#fff;font-size:16px;border-top:1px solid #4d3f7a;text-align:right}.exactmetrics-admin-page .exactmetrics-navigation-tab-link:first-child{border-top:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active:first-child+.exactmetrics-navigation-tab-link{border-top:0}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active{display:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link:focus{color:#fff;text-decoration:none}}.exactmetrics-admin-page .exactmetrics-button{background:#6528f5;border-radius:5px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:12px 24px;text-decoration:none;border:0}.exactmetrics-admin-page .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-button:hover{background-color:#37276a;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-disabled{background:#e9e7ee;color:#9087ac}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-secondary{background:#e9e7ee;color:#37276a}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-secondary:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-secondary:hover{background-color:#f4f3f7;color:#37276a}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-green{background:#32a27a;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-green:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-green:hover{background-color:#19865f;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text{background:rgba(0,0,0,0);border:none;color:#6528f5;padding:0;border-radius:0;text-decoration:underline}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text:hover{background:rgba(0,0,0,0);color:#393f4c}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text [class*=monstericon-]{margin-right:10px;min-width:16px;display:inline-block}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text [class*=monstericon-]:first-child{margin-right:0;margin-left:10px}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text.exactmetrics-button-text-dark{color:#210f59}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text.exactmetrics-button-text-dark:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text.exactmetrics-button-text-dark:hover{color:#6528f5}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-red{background:#e43462;border-color:#e43462;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-large{font-size:15px;padding:14px 30px 12px;font-weight:500}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-xl{font-size:20px;padding:23px 67px;font-weight:500}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-xl i{margin-right:10px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-xl{padding-right:45px;padding-left:45px}}.exactmetrics-admin-page .exactmetrics-spaced-top{margin-top:20px}.exactmetrics-green-text{color:#32a27a;font-weight:700}@media (max-width:782px){.wp-responsive-open #wpbody{margin-right:-18px}}.exactmetrics-mobile-nav-trigger{color:#fff;font-size:15px;font-weight:500;display:inline-block;border:none;background:#37276a;padding:7px 18px;line-height:1.7;margin:0;border-radius:5px}@media (min-width:960px){.exactmetrics-mobile-nav-trigger{display:none}}.exactmetrics-mobile-nav-trigger i{color:#fff;margin-right:25px;vertical-align:middle}.exactmetrics-mobile-nav-trigger.exactmetrics-mobile-nav-trigger-open{border-radius:5px 5px 0 0}@media (max-width:959px){.exactmetrics-main-navigation{background:#37276a;height:0;overflow:hidden;position:absolute;right:24px;left:24px;text-align:right;border-radius:0 5px 5px 5px}.exactmetrics-main-navigation.exactmetrics-main-navigation-open{padding:17px 40px;height:auto;-webkit-box-shadow:0 40px 30px rgba(33,15,89,.1);box-shadow:0 40px 30px rgba(33,15,89,.1)}}@media (min-width:782px){.exactmetrics_page .exactmetrics-swal{margin-right:160px}.auto-fold .exactmetrics_page .exactmetrics-swal{margin-right:36px}}@media (min-width:961px){.auto-fold .exactmetrics_page .exactmetrics-swal{margin-right:160px}.folded .exactmetrics_page .exactmetrics-swal{margin-right:36px}}.exactmetrics_page .exactmetrics-swal .swal2-footer{border-top:none;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left;margin-top:0;font-size:15px}.exactmetrics_page .exactmetrics-swal .swal2-footer a{color:#6528f5}.exactmetrics_page .exactmetrics-swal .swal2-footer a:focus,.exactmetrics_page .exactmetrics-swal .swal2-footer a:hover{color:#37276a}.exactmetrics-modal{position:fixed;top:0;right:0;left:0;bottom:0;background:rgba(0,0,0,.8);z-index:99999;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics-modal .exactmetrics-modal-inner{background:#fff;padding:50px;border:1px solid #d6e2ed;text-align:center;width:750px}.exactmetrics-modal .exactmetrics-modal-inner h2{margin-top:0;margin-bottom:0;line-height:1.4}.exactmetrics-modal .exactmetrics-modal-inner p{margin-bottom:0}.exactmetrics-modal .exactmetrics-modal-inner .exactmetrics-modal-buttons{margin-top:50px}.exactmetrics-modal .exactmetrics-modal-inner .exactmetrics-button{margin:0 10px}.exactmetrics-welcome-overlay{position:fixed;top:0;right:0;left:0;bottom:0;z-index:99999999;font-family:inherit;overflow:hidden;background-color:rgba(33,15,89,.9)}.exactmetrics-welcome-overlay .exactmetrics-welcome-overlay-inner{background:#fff;padding:30px;width:70%;margin:0 auto;position:relative;top:10%;height:80%;border-radius:10px;-webkit-box-shadow:0 20px 80px rgba(13,7,36,.5);box-shadow:0 20px 80px rgba(13,7,36,.5)}.exactmetrics-welcome-overlay .exactmetrics-overlay-close{background:none;border:none;position:absolute;top:5px;left:7px;padding:0;color:#777}.exactmetrics-welcome-overlay .exactmetrics-welcome-overlay-content{height:100%}.exactmetrics-welcome-overlay .exactmetrics-welcome-overlay-content iframe{height:100%;width:100%}.swal2-container.exactmetrics-swal-loading{background:#fff;padding:20px;top:112px;height:auto}.swal2-container.exactmetrics-swal-loading.exactmetrics-swal-full-height{top:32px}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal{width:100%;height:100%;border-radius:10px;background:url(../img/loading-background.jpg) no-repeat bottom #f4f3f7;background-size:cover;-webkit-animation-duration:1ms;animation-duration:1ms}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-icon{visibility:hidden;height:0;padding:0}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-header{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-title{font-size:17px;color:#210f59}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-content{color:#9087ac;margin-top:6px;font-size:15px;line-height:1.75;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.swal2-container.exactmetrics-swal-loading .swal2-actions button{display:none}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess{padding:0;background:#f8f6ff}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-icon{visibility:hidden;height:0;width:0;margin:0;padding:0}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal{width:750px;background:none;padding-right:260px;position:relative}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-header{display:block}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-title{font-size:32px;line-height:1.3;color:#210f59;text-align:right}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal #swal2-content{font-size:15px;line-height:1.75;color:#210f59;text-align:right;margin-bottom:20px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal #swal2-content p{font-size:15px;margin:0;font-weight:500}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-actions{margin:0;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled{margin:0;font-size:15px;padding:16px 23px 14px;outline:none}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled .monstericon-long-arrow-right-light{margin-right:14px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled:focus,.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled:hover{border:none;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-confirm{background:#32a27a}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-confirm:focus,.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-confirm:hover{background:#19865f}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-cancel{margin-right:15px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-swal-icons{position:absolute;right:-35px;top:-15px;width:260px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-swal-icons [class^=monstericon-]{position:absolute;color:#6528f5;opacity:.5;font-size:41px;top:114px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-swal-icons [class^=monstericon-]:first-child{font-size:108px;opacity:1;top:-22px;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-swal-icons [class^=monstericon-]:nth-child(2){right:35px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-swal-icons [class^=monstericon-].monstericon-exclamation-em-solid:nth-child(2){right:50px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-swal-icons [class^=monstericon-]:nth-child(3){top:147px;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-swal-icons [class^=monstericon-]:nth-child(4){right:185px}.exactmetrics_page .exactmetrics-swal .swal2-title{line-height:1.2}.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-error,.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-info{border:none;border-radius:0}.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-error:before,.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-info:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f064";font-size:80px;color:#6528f5}.exactmetrics_page .exactmetrics-swal .swal2-icon .swal2-icon-text,.exactmetrics_page .exactmetrics-swal .swal2-icon .swal2-x-mark{display:none}.exactmetrics_page .exactmetrics-swal .swal2-styled{border-radius:5px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:12px 24px;text-decoration:none;border:0}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-confirm{background:#6528f5}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-confirm:focus,.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-confirm:hover{background-color:#37276a;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-cancel{background:#e9e7ee;color:#37276a}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-cancel:focus,.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-cancel:hover{background-color:#f4f3f7;color:#37276a;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .exactmetrics-swal .swal2-popup{border-radius:10px;padding:40px}.exactmetrics-list-check ul{margin:0;list-style:none;padding-right:0}.exactmetrics-list-check li{font-size:15px;margin-top:18px;padding-right:30px;position:relative;color:#fff}.exactmetrics-list-check li:first-child{margin-top:0}.exactmetrics-list-check li:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f045";font-size:15px;margin-left:10px;color:#fff;position:absolute;right:0;top:0}.exactmetrics-settings-input-select-input .multiselect__tags-wrap{position:relative}.exactmetrics-settings-input-select-input .multiselect__tags-wrap:after{content:attr(data-text);display:inline-block;position:relative;color:#9087ac;bottom:0;background:#fff;border-radius:4px;font-size:14px;vertical-align:top;padding:8px 15px}.exactmetrics-settings-input-select-input .multiselect__placeholder{display:none}.multiselect__content-wrapper{right:30px}.exactmetrics-semrush-cta{background:#f4f3f7;border-right:3px solid #6528f5;padding:20px 26px;border-radius:0 3px 3px 0;position:relative}.exactmetrics-semrush-cta br{display:none}.exactmetrics-semrush-cta .exactmetrics-semrush-cta-close{position:absolute;top:12px;left:12px;cursor:pointer;border:0;background:rgba(0,0,0,0);padding:0;margin:0;outline:none}.exactmetrics-semrush-cta .exactmetrics-semrush-cta-title{font-weight:700;font-size:16px;line-height:20px;color:#393f4c;margin:0}.exactmetrics-semrush-cta .exactmetrics-semrush-cta-content{font-weight:400;font-size:14px;color:#393f4c}.exactmetrics-semrush-cta .exactmetrics-button{background:#6528f5;border-radius:3px;font-weight:400;font-size:14px;border-width:0;padding:7px 12px}.exactmetrics-semrush-cta .exactmetrics-button:active,.exactmetrics-semrush-cta .exactmetrics-button:focus,.exactmetrics-semrush-cta .exactmetrics-button:hover{background:#6333d4;outline:none}.exactmetrics-row-highlight{-webkit-animation-name:color;animation-name:color;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-iteration-count:2;animation-iteration-count:2}@-webkit-keyframes color{0%{background-color:#fff}50%{background-color:#509fe2}to{background-color:#fff}}@keyframes color{0%{background-color:#fff}50%{background-color:#509fe2}to{background-color:#fff}}.exactmetrics-about-block{padding:0;background:#fff;margin-top:40px}@media (max-width:782px){.exactmetrics-about-block{padding:0 24px}}.exactmetrics-about-block h3{color:#210f59;font-size:24px;margin:0 0 20px;line-height:1.4;padding-top:25px}.exactmetrics-about-block p{font-size:15px;line-height:1.75;font-weight:500;color:#210f59}.exactmetrics-about-block:after{content:"";display:table;clear:both}div[class*=" exactmetrics-path-about-"] .exactmetrics-container,div[class^=exactmetrics-path-about-] .exactmetrics-container{width:1094px}@media (max-width:782px){div[class*=" exactmetrics-path-about-"] .exactmetrics-container,div[class^=exactmetrics-path-about-] .exactmetrics-container{padding-right:24px;padding-left:24px}}div[class*=" exactmetrics-path-about-"] .exactmetrics-header,div[class*=" exactmetrics-path-about-"] .exactmetrics-navigation-bar,div[class^=exactmetrics-path-about-] .exactmetrics-header,div[class^=exactmetrics-path-about-] .exactmetrics-navigation-bar{padding-right:20px;padding-left:20px}@media (max-width:782px){div[class*=" exactmetrics-path-about-"] .exactmetrics-header,div[class*=" exactmetrics-path-about-"] .exactmetrics-navigation-bar,div[class^=exactmetrics-path-about-] .exactmetrics-header,div[class^=exactmetrics-path-about-] .exactmetrics-navigation-bar{padding-right:0;padding-left:0}}div[class*=" exactmetrics-path-about-"] .exactmetrics-navigation-bar,div[class^=exactmetrics-path-about-] .exactmetrics-navigation-bar{margin-right:-163px}div[class*=" exactmetrics-path-about-"] .exactmetrics-navigation-bar .exactmetrics-container,div[class^=exactmetrics-path-about-] .exactmetrics-navigation-bar .exactmetrics-container{width:auto}div[class*=" exactmetrics-path-about-"] .exactmetrics-addons-list,div[class^=exactmetrics-path-about-] .exactmetrics-addons-list{padding:0 20px}div[class*=" exactmetrics-path-about-"] .exactmetrics-addons-list .exactmetrics-addon,div[class^=exactmetrics-path-about-] .exactmetrics-addons-list .exactmetrics-addon{width:calc(33.3333% - 21px)}@media (max-width:782px){div[class*=" exactmetrics-path-about-"] .exactmetrics-addons-list .exactmetrics-addon,div[class^=exactmetrics-path-about-] .exactmetrics-addons-list .exactmetrics-addon{width:100%}}div[class*=" exactmetrics-path-about-"] .exactmetrics-addon-image,div[class^=exactmetrics-path-about-] .exactmetrics-addon-image{min-height:74px;padding:5px;display:-webkit-box;display:-ms-flexbox;display:flex;height:74px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}div[class*=" exactmetrics-path-about-"] .monstericon-star:before,div[class^=exactmetrics-path-about-] .monstericon-star:before{color:#fdb72c}.exactmetrics-lite-vs-pro-table{padding:0}.exactmetrics-lite-vs-pro-table .exactmetrics-lite-vs-pro-footer{background:#e9e7ee}.exactmetrics-lite-vs-pro-header{text-align:center;padding:40px 0 22px}.exactmetrics-lite-vs-pro-header h1{font-size:22px;margin:0 0 22px}.exactmetrics-features-table{width:100%;border-collapse:collapse;position:relative;margin-bottom:95px}.exactmetrics-features-table tr{position:relative}.exactmetrics-features-table tr:first-child td{border-radius:10px 0 0 0}.exactmetrics-features-table tr:first-child .exactmetrics-features-table-feature-title+td{border-radius:0 10px 0 0}.exactmetrics-features-table tr:first-child:after{display:none}.exactmetrics-features-table tr:after{display:block;border-top:1px solid #bcb7cd;opacity:.5;content:"";position:absolute;right:0;left:40px}.exactmetrics-features-table tbody tr:last-child td{padding:0;background:none}.exactmetrics-features-table tbody tr:last-child:after{display:none}.exactmetrics-features-table td,.exactmetrics-features-table th{width:33.33333%;padding:40px;vertical-align:top}.exactmetrics-features-table td p,.exactmetrics-features-table th p{margin:0}.exactmetrics-features-table th{text-align:right;border-left:none;font-size:24px;line-height:1.4}.exactmetrics-features-table th i{width:40px;height:40px;border-radius:50%;color:#210f59;background-color:rgba(33,15,89,.1);display:inline-block;text-align:center;line-height:40px;font-size:15px;margin-left:30px}.exactmetrics-features-table td{background:#f4f3f7}.exactmetrics-features-table td p{font-size:17px;line-height:1.5}.exactmetrics-features-table td p>span{margin-top:16px;display:block}.exactmetrics-features-table .exactmetrics-features-table-feature-title{background:none;padding-right:0}.exactmetrics-features-table .exactmetrics-features-table-feature-title i{float:right;font-size:23px;color:#6528f5;margin-left:18px}.exactmetrics-features-table .exactmetrics-features-table-feature-title p{font-weight:700;font-size:17px;color:#37276a;line-height:1.5;margin-right:41px}.exactmetrics-features-full:before,.exactmetrics-features-none:before,.exactmetrics-features-partial:before{display:block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f026";font-size:20px;margin-left:10px;color:#d4393d;position:relative;top:2px;margin-bottom:16px}.exactmetrics-features-full:before,.exactmetrics-features-partial:before{content:"\f022";color:#19865f}.exactmetrics-features-table .exactmetrics-lite-vs-pro-footer{padding:40px;text-align:center;border-radius:0 0 10px 10px;border-top:1px solid #bcb7cd}.exactmetrics-features-table .exactmetrics-lite-vs-pro-footer h3{color:#210f59;font-size:17px;max-width:350px;line-height:1.5;margin:0 auto 16px}.exactmetrics-features-table .exactmetrics-lite-vs-pro-footer p{margin-bottom:24px;font-size:15px;line-height:1.75;color:#210f59;max-width:350px;margin-right:auto;margin-left:auto}.exactmetrics-two-column{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-two-column>div{width:50%}.exactmetrics-about-docs-row:after{display:table;clear:both;content:""}.exactmetrics-about-docs-image{width:158px;float:right;margin-left:32px}.exactmetrics-about-docs-image .exactmetrics-bg-img{width:158px;background-color:#fff;border-radius:5px;height:158px;padding-top:0}.exactmetrics-about-docs-image .exactmetrics-bg-img:after{background-position:50%;right:10px;left:10px;top:10px;bottom:10px}.exactmetrics-about-docs-1:after{background-image:url(../img/about-icon-connect.png)}.exactmetrics-about-docs-2:after{background-image:url(../img/about-icon-guide.png)}.exactmetrics-about-docs-3:after{background-image:url(../img/about-icon-gdpr.png)}.exactmetrics-about-docs-4:after{background-image:url(../img/about-icon-addons-em.png)}.exactmetrics-about-docs-5:after{background-image:url(../img/about-icon-ecommerce.png)}.exactmetrics-bg-img.exactmetrics-about-team{padding-top:70%}.exactmetrics-bg-img.exactmetrics-about-team:after{background-image:url(../img/about-team-photo.png)}.exactmetrics-about-docs-text h3{color:#210f59;font-size:17px;line-height:1.5}.exactmetrics-about-docs-text p{margin:16px 0 24px}.exactmetrics-about-page-right-image{float:left;width:48%;text-align:center;margin:0 20px 0 0}@media (max-width:782px){.exactmetrics-about-page-right-image{width:100%;float:none;margin:0 0 20px}}.exactmetrics-about-page-right-image img{width:100%}.exactmetrics-about-page-right-image figcaption{color:#4d3f7a;margin-top:5px}.exactmetrics-about-page-right-image iframe{max-width:100%}.exactmetrics-page-title{padding:32px;line-height:1.3;border-bottom:1px solid #e9e7ee}.exactmetrics-page-title h2{margin:0;font-size:32px;color:#210f59}.exactmetrics-about .exactmetrics-addon-top{padding:40px 40px 24px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.exactmetrics-about .exactmetrics-addon-noicon{margin-bottom:10px}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon{padding-bottom:145px}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon .exactmetrics-addon-message{padding:24px 40px 40px;background:rgba(0,0,0,0)}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-interior{border-top:1px solid #ccc;padding:24px 0 0;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;-webkit-box-align:start;-ms-flex-align:start;align-items:start;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-interior .exactmetrics-addon-status{margin-bottom:24px}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-interior .exactmetrics-addon-action{-ms-flex-item-align:start;align-self:start}.exactmetrics-about .exactmetrics-upsell-row{margin-top:70px;background:rgba(0,0,0,0)}.exactmetrics-about .exactmetrics-upsell-list-item>i{min-width:23px}.exactmetrics-about .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text i{margin-right:14px;font-size:15px}.exactmetrics-bg-img.exactmetrics-em-logo-color{padding-top:8%;width:387px;max-width:100%}@media (max-width:782px){.exactmetrics-bg-img.exactmetrics-em-logo-color{width:133px;padding-top:10%}}.exactmetrics-bg-img.exactmetrics-em-logo-color:after{background-position:50%;background-image:url(../img/em-logo.png)}.exactmetrics-about-page-top{padding:60px 0;background:radial-gradient(64.37% 131.18% at 50.04% 32.71%,hsla(0,0%,100%,.1) 0,hsla(0,0%,100%,0) 100%),rgba(101,40,245,.1);border-bottom:1px solid #e9e7ee;margin-bottom:635px}@media (max-width:782px){.exactmetrics-about-page-top{margin-bottom:0}}.exactmetrics-about-page-top h3{color:#6528f5;margin:0 135px 0 0;font-size:20px;line-height:1.3;font-weight:400}@media (max-width:782px){.exactmetrics-about-page-top h3{margin-right:0}}.exactmetrics-about-page-top h2{max-width:570px;margin-right:135px;margin-top:9px}@media (max-width:782px){.exactmetrics-about-page-top h2{margin-right:0;margin-left:0}}.exactmetrics-about-page-top .exactmetrics-about-top-button{width:750px;max-width:100%;margin-right:135px}@media (max-width:782px){.exactmetrics-about-page-top .exactmetrics-about-top-button{margin-right:0}}.exactmetrics-about-page-top .exactmetrics-about-top-button p{max-width:300px;margin-left:100px}@media (max-width:782px){.exactmetrics-about-page-top .exactmetrics-about-top-button p{margin-left:24px}}.exactmetrics-about-page-top .exactmetrics-about-top-button .exactmetrics-button{float:left;margin-top:10px}@media (max-width:782px){.exactmetrics-about-page-top .exactmetrics-about-top-button .exactmetrics-button{float:none}}.exactmetrics-about-page-top .exactmetrics-container{width:1094px}.exactmetrics-bg-img.exactmetrics-about-getting-started-video{margin-bottom:-635px;padding-top:52%;cursor:pointer}@media (max-width:782px){.exactmetrics-bg-img.exactmetrics-about-getting-started-video{margin-bottom:0}}.exactmetrics-bg-img.exactmetrics-about-getting-started-video:after{background-position:0 100%;background-image:url(../img/about-getting-started-video.png)}.exactmetrics-about-page-top h2{font-size:24px;color:#210f59;line-height:1.4;margin-bottom:20px}@media (max-width:782px){.exactmetrics-about-page-top h2{font-size:20px}}.exactmetrics-about-page-top p{font-size:15px;line-height:1.7;color:#210f59}.exactmetrics-container.exactmetrics-about-middle-title{text-align:center;margin-top:-100px}@media (max-width:782px){.exactmetrics-container.exactmetrics-about-middle-title{margin-top:0;padding:0 24px}}.exactmetrics-container.exactmetrics-about-middle-title p{max-width:500px;margin:0 auto;font-size:15px;line-height:1.75;color:#210f59}.exactmetrics-container.exactmetrics-about-middle-title h2{font-size:24px;color:#210f59;line-height:1.4;margin-bottom:19px}.exactmetrics-admin-page .exactmetrics-wide-purple{background:#6528f5;padding:72px 0;margin-bottom:100px}.exactmetrics-admin-page .exactmetrics-wide-purple .exactmetrics-separator{background:rgba(0,0,0,.2)}.exactmetrics-about-upgrade-box-flex{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:45px}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box{width:334px;padding:65px 93px 56px;background:#210f59;border-radius:10px;color:#fff;text-align:center;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box span{font-size:17px;line-height:1.5;display:inline-block}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box span.exactmetrics-price-large{font-size:48px;line-height:1.3;font-weight:700}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box span.exactmetrics-price-term{font-size:15px;line-height:1.75;opacity:.5}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box .exactmetrics-button{background-color:#fff;color:#210f59;margin-top:27px;font-weight:500}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-checkboxes{padding-right:95px;max-width:650px;width:100%}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-checkboxes h3{color:#fff;font-size:24px;line-height:1.4;font-weight:500;margin-top:17px}.exactmetrics-testimonials-slider{position:relative;padding:0 40px;margin-top:60px}.exactmetrics-testimonials-slides{position:relative;overflow:hidden}.exactmetrics-testimonials-slide{visibility:hidden;position:absolute;top:0;right:0;width:100%;-webkit-transition:.5s;transition:.5s;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-testimonials-slide .exactmetrics-testimonial-image{padding:0 80px 0 60px;-ms-flex-negative:0;flex-shrink:0;margin-top:5px}.exactmetrics-testimonials-slide .exactmetrics-testimonial-image .exactmetrics-bg-img{width:90px;border-radius:50%;height:90px;border:5px solid #37276a;overflow:hidden}.exactmetrics-testimonials-slide .exactmetrics-about-testimonial-avatar-1:after{background-image:url(../img/testimonial-image-1.png)}.exactmetrics-testimonials-slide .exactmetrics-about-testimonial-avatar-2:after{background-image:url(../img/testimonial-image-2.png)}.exactmetrics-testimonials-slide .exactmetrics-about-testimonial-avatar-3:after{background-image:url(../img/testimonial-image-3.jpg)}.exactmetrics-testimonials-slide .exactmetrics-testimonial-text{padding-left:70px}.exactmetrics-testimonials-slide .exactmetrics-testimonial-text p{color:#fff;font-size:20px;line-height:1.5;margin:0 0 20px}.exactmetrics-testimonials-slide .exactmetrics-testimonial-text p.exactmetrics-testimonial-text-author{font-size:16px;line-height:1.75;color:#e9e7ee}.exactmetrics-testimonials-slide.exactmetrics-testimonials-slide-active{visibility:visible;position:static}.exactmetrics-testimonials-slide h2{margin:0}.exactmetrics-testimonials-slide img{width:300px}.exactmetrics-testimonials-slider-control{border:none;background:none;color:#fff;font-size:40px;line-height:1;position:absolute;top:45px;margin-top:-20px;padding:0;cursor:pointer}.exactmetrics-testimonials-slider-control.exactmetrics-testimonials-slider-control-left{right:0}.exactmetrics-testimonials-slider-control.exactmetrics-testimonials-slider-control-left i:before{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.exactmetrics-testimonials-slider-control.exactmetrics-testimonials-slider-control-right{left:0}.exactmetrics-testimonials-slider-control.exactmetrics-testimonials-slider-control-right i:before{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}.exactmetrics-about-documentation{background:#f4f3f7;border-radius:10px;padding:72px 100px;margin:40px 0 95px}@media (max-width:782px){.exactmetrics-about-documentation{margin:40px 0;padding:32px 24px}.exactmetrics-about-documentation .exactmetrics-about-docs-image{float:none}}.exactmetrics-full-width-upsell .exactmetrics-full-width-upsell-inner,.exactmetrics-upsell-row .exactmetrics-upsell-row-inner,.exactmetrics-upsell .exactmetrics-upsell-title .exactmetrics-upsell-title-inner{max-width:1400px;margin:0 auto}.exactmetrics-reports-page .exactmetrics-upsell{border-bottom:1px solid #d6e2ed}.exactmetrics-upsell-row{width:100%;background:rgba(101,40,245,.05)}.exactmetrics-upsell-row .exactmetrics-upsell-row-inner{padding:0 96px}@media (max-width:782px){.exactmetrics-upsell-row .exactmetrics-upsell-row-inner{padding:0 24px}}.exactmetrics-upsell-row h3{margin:0 0 60px;font-size:15px}.exactmetrics-upsell-row .exactmetrics-upsell-list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding-bottom:15px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 31%;flex:1 0 31%;margin-bottom:45px}.exactmetrics-report-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item,.exactmetrics-settings-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item{-webkit-box-flex:1;-ms-flex:1 0 21%;flex:1 0 21%}@media (max-width:782px){.exactmetrics-upsell-row .exactmetrics-upsell-list-item{width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}}.exactmetrics-upsell-row .exactmetrics-upsell-list-item i{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;color:#6528f5;font-size:23px;margin-left:18px;margin-top:6px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text{line-height:1.7;color:#37276a;max-width:232px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;font-weight:500;text-decoration:none}.exactmetrics-report-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text,.exactmetrics-settings-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text{max-width:170px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text{cursor:pointer}.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text:focus,.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text:hover{color:#6528f5}.exactmetrics-full-width-upsell{background:#f7f3fe;min-height:445px;margin-bottom:116px}.exactmetrics-reports-page .exactmetrics-full-width-upsell{margin-bottom:0}@media (max-width:959px){.exactmetrics-full-width-upsell{margin-bottom:48px}}.exactmetrics-full-width-upsell.exactmetrics-full-width-no-space{margin-bottom:0;min-height:380px}.exactmetrics-full-width-upsell.exactmetrics-full-width-no-space+.exactmetrics-full-width-upsell{margin-top:-100px}.exactmetrics-full-width-upsell .exactmetrics-full-width-upsell-inner{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;position:relative}.exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-full-width-upsell-inner{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-full-width-upsell-inner .exactmetrics-upsell-left{padding-right:0;padding-top:100px}.exactmetrics-full-width-upsell h2{color:#210f59;font-size:24px;line-height:1.4}.exactmetrics-full-width-upsell p{font-size:15px;line-height:1.7;color:#210f59;margin:11px 0 0}.exactmetrics-full-width-upsell p.exactmetrics-upsell-pbold{font-weight:700;margin-top:0}.exactmetrics-full-width-upsell a.exactmetrics-green-text{color:#32a27a;font-weight:400}.exactmetrics-full-width-upsell a.exactmetrics-green-text:focus,.exactmetrics-full-width-upsell a.exactmetrics-green-text:hover{color:#19865f;text-decoration:none}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons{margin-top:20px;margin-bottom:72px}@media (max-width:1099px){.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons{margin-bottom:48px}}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons .exactmetrics-button:first-child{margin-left:18px}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons .exactmetrics-button-text .monstericon-arrow-right{font-size:12px;vertical-align:text-top;margin-right:10px}.exactmetrics-upsell-half{position:relative;padding-top:56px}.exactmetrics-upsell-half.exactmetrics-upsell-left{padding-right:96px;padding-top:56px;width:40%}@media (max-width:1099px){.exactmetrics-upsell-half.exactmetrics-upsell-left{width:50%;padding-right:24px}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-left{padding-top:24px}}.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image{max-width:100%;right:0;height:auto;padding-top:67%}.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image:after{background-position:50%;right:-16%;left:-16%;top:-10%;bottom:-10%}@media (min-width:960px){.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image{display:none}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-left{width:100%;padding-left:24px}}.exactmetrics-upsell-half.exactmetrics-upsell-right{padding-right:96px;padding-top:0;width:60%}@media (max-width:1099px){.exactmetrics-upsell-half.exactmetrics-upsell-right{width:50%}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-right{display:none}}.exactmetrics-upsell-half.exactmetrics-upsell-right .exactmetrics-em-upsell-screen{position:absolute;bottom:-140px;right:68px}.exactmetrics-upsell-half h3{color:#6528f5;font-size:20px;line-height:1.3;font-weight:400;margin:0 0 15px}.exactmetrics-upsell a{color:#6528f5}.exactmetrics-upsell a:focus,.exactmetrics-upsell a:hover{color:#37276a}.exactmetrics-upsell .exactmetrics-upsell-title{border-bottom:1px solid #e9e7ee}.exactmetrics-upsell .exactmetrics-upsell-title h2{color:#210f59;font-size:32px;margin-right:100px;margin-top:45px;margin-bottom:35px}@media (max-width:782px){.exactmetrics-upsell .exactmetrics-upsell-title h2{margin-right:24px;line-height:1.4;margin-top:24px;margin-bottom:24px}}.exactmetrics-upsell .exactmetrics-upsell-half h3{font-size:24px;color:#210f59;font-weight:700}.exactmetrics-upsell-bottom{background:#f7f9fd;border-top:1px solid #d6e2ed;padding:36px 50px 30px;position:relative}@media (max-width:767px){.exactmetrics-upsell-bottom{padding-right:20px;padding-left:20px}}.exactmetrics-upsell-bottom .exactmetrics-button-top{position:absolute;top:0;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}@media (max-width:767px){.exactmetrics-upsell-bottom .exactmetrics-button-top{min-width:288px}}.exactmetrics-upsell-bottom img{max-width:100%}.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-upsell-screen,.exactmetrics-screen-image{width:848px;padding-top:0;height:566px}@media (max-width:1099px){.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-upsell-screen,.exactmetrics-screen-image{right:20px}}.exactmetrics-em-ecommerce-upsell-screen:after,.exactmetrics-em-upsell-screen:after,.exactmetrics-screen-image:after{background-position:0 100%;background-image:url(../img/upsell-screen.png)}.exactmetrics-em-logo-text{width:432px;height:56px;margin-bottom:28px;padding-top:0;max-width:100%}@media (max-width:1400px){.exactmetrics-em-logo-text{padding-top:13%;height:auto}}@media (max-width:959px){.exactmetrics-em-logo-text{padding-top:8%}}.exactmetrics-em-logo-text:after{background-image:url(../img/exactmetrics.png)}.exactmetrics-em-addons-upsell-screen,.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-publishers-upsell-screen{bottom:auto;top:-90px}.exactmetrics-em-addons-upsell-screen:after,.exactmetrics-em-ecommerce-upsell-screen:after,.exactmetrics-em-publishers-upsell-screen:after{background-position:0 0;background-image:url(../img/ecommerce-screen.png)}.exactmetrics-em-publishers-upsell-screen:after{background-image:url(../img/publishers-screen.png)}.exactmetrics-em-addons-upsell-screen{margin-bottom:-180px;top:-70px}.exactmetrics-em-addons-upsell-screen:after{background-image:url(../img/addons-help-screen.png)}.exactmetrics-em-search-console-upsell-screen:after{background-image:url(../img/search-console-screen.png)}.exactmetrics-em-real-time-upsell-screen:after{background-image:url(../img/real-time-screen.png)}.exactmetrics-em-site-speed-upsell-screen:after{background-image:url(../img/site-speed-screen.png)}.exactmetrics-em-forms-report-upsell-screen:after{background-image:url(../img/forms-report-screen.png)}.exactmetrics-em-dimensions-report-upsell-screen:after{background-image:url(../img/dimensions-report-screen.png)}.exactmetrics-em-forms-upsell-screen{width:758px;max-width:100%;margin-top:-75px}.exactmetrics-em-forms-upsell-screen:after{background-position:50%;background-image:url(../img/forms-screen.png)}.exactmetrics-em-optimize-upsell-screen{width:758px;max-width:100%;margin-right:-10%}.exactmetrics-em-optimize-upsell-screen:after{background-position:50%;background-image:url(../img/optimize-screen.png)}.exactmetrics-em-dimensions-upsell-screen{width:758px;max-width:100%}.exactmetrics-em-dimensions-upsell-screen:after{background-position:50%;background-image:url(../img/custom-dimensions-screen.png)}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-right:0}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half p{max-width:400px;margin-bottom:28px}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-right:96px}.exactmetrics-icon-background-large{position:absolute;font-size:130px;color:rgba(101,40,245,.05);right:25px;top:25px;line-height:1;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator{font-size:13px;color:#fff;background-color:#32a27a;border-radius:3px;font-weight:500;padding:4px 8px;vertical-align:top;margin-right:10px;display:inline-block;margin-top:-4px;cursor:pointer;text-decoration:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:hover,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:hover{color:#fff;background:#19865f}.exactmetrics-report .exactmetrics-upsell-dismissable{margin-right:-32px;margin-left:-32px;padding-right:32px;padding-left:32px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable{text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable h3{font-size:17px;color:#210f59;line-height:1.5;font-weight:700}.exactmetrics-report .exactmetrics-upsell-dismissable p{font-size:15px;margin-bottom:25px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{width:50%;padding-top:38px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{padding-right:32px;padding-left:32px;width:100%;text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half:first-child p{max-width:524px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-right:40px;color:#9087ac}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-right:0;margin-top:20px}}.exactmetrics-report .exactmetrics-upsell-dismiss{position:absolute;left:20px;top:20px;z-index:10}.exactmetrics-forms-image-wpf-upsell{margin-bottom:-140px;padding-top:85%}@media (max-width:782px){.exactmetrics-forms-image-wpf-upsell{margin-bottom:0}}.exactmetrics-forms-image-wpf-upsell:after{background-position:0 100%;background-image:url(../img/forms-wpforms-upsell.png)}.exactmetrics-upsell-row{margin-top:70px;background:rgba(0,0,0,0)}.exactmetrics-upsell-list-item-text{font-size:15px}.exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text i{margin-right:14px;font-size:15px}.exactmetrics-about-middle-title .exactmetrics-button{margin:0 0 56px}.exactmetrics-bg-img.exactmetrics-about-getting-started-video{margin-bottom:-596px}.exactmetrics-container{width:1094px}.exactmetrics-bottom-buttons{margin:60px auto;text-align:center}.exactmetrics-bottom-buttons .exactmetrics-button{margin:20px 0}.exactmetrics-welcome-header-logo{text-align:center}.exactmetrics-em-logo-icon{padding:0;width:53px;height:46px;display:inline-block}.exactmetrics-em-logo-icon:after{background-position:100%;background-image:url(../img/em-logo.png);background-size:auto 100%}.exactmetrics-em-migration-image{padding-top:55%}.exactmetrics-em-migration-image:after{background-image:url(../img/migration-screen.png)}.exactmetrics-onboarding-wizard-content .subtitle{padding-right:0}.exactmetrics-migration-step{text-align:center}.exactmetrics-migration-step h1{font-size:32px;color:#210f59;line-height:1.25;margin:32px auto 30px;max-width:500px}.exactmetrics-migration-step h2{font-size:24px;line-height:1.25;color:#210f59}.exactmetrics-migration-step p{font-size:16px;line-height:1.75;margin:0 auto;max-width:560px}.exactmetrics-migration-step .exactmetrics-button.exactmetrics-button-large{font-size:18px;line-height:21px;padding:18px 44px}.exactmetrics-migration-step .exactmetrics-button i{margin-right:10px}.exactmetrics-migration-step .exactmetrics-migration-footer{margin-top:50px;color:#210f59;font-size:14px;line-height:17px}.exactmetrics-migration-step .exactmetrics-migration-footer i{margin-left:13px}.exactmetrics-migration-step .exactmetrics-migration-footer i:after{color:#338eef}.exactmetrics-migration-step.exactmetrics-migration-step-upsell{text-align:right;max-width:582px}.exactmetrics-migration-step.exactmetrics-migration-step-upsell h1{margin:16px 0}.exactmetrics-migration-step.exactmetrics-migration-step-upsell p{margin:15px 0;max-width:580px}.exactmetrics-migration-step.exactmetrics-migration-step-upsell .exactmetrics-migration-checkboxes{max-width:100%}.exactmetrics-migration-step.exactmetrics-migration-step-upsell .exactmetrics-paragraph-limit{margin:0 auto}.exactmetrics-migration-step.exactmetrics-migration-step-upsell .exactmetrics-button-text{margin-right:27px;color:#9087ac}.exactmetrics-migration-step.exactmetrics-migration-step-upsell .monstericon-external-link-alt{color:#ac8afa}.exactmetrics-migration-checkboxes{margin:30px auto;max-width:400px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;text-align:right;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.exactmetrics-migration-checkboxes .exactmetrics-migration-checkbox{width:41%;font-size:18px;line-height:1.75;color:#210f59;margin-bottom:4px}.exactmetrics-migration-checkboxes .exactmetrics-migration-checkbox i{margin-left:10px;color:#32a27a}.exactmetrics-highlight{color:#6528f5}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:nth-child(9){background-color:#32a27a}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:nth-child(9):after{content:"\f045"}.exactmetrics-migration-info{background:#ecf5fe;max-width:500px;display:inline-block;padding:15px;border-radius:5px;color:#210f59;font-size:14px;line-height:1.4;margin-top:15px}button[data-v-bcb9681a]{margin-top:3px}
1
+ @import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap);.exactmetrics-admin-page fieldset[disabled] .multiselect{pointer-events:none}.exactmetrics-admin-page .multiselect__spinner{position:absolute;left:1px;top:1px;width:48px;height:35px;background:#fff;display:block}.exactmetrics-admin-page .multiselect__spinner:after,.exactmetrics-admin-page .multiselect__spinner:before{position:absolute;content:"";top:50%;right:50%;margin:-8px -8px 0 0;width:16px;height:16px;border-radius:100%;border:2px solid rgba(0,0,0,0);border-top-color:#b7c9d9;-webkit-box-shadow:0 0 0 1px rgba(0,0,0,0);box-shadow:0 0 0 1px rgba(0,0,0,0)}.exactmetrics-admin-page .multiselect__spinner:before{-webkit-animation:a 2.4s cubic-bezier(.41,.26,.2,.62);animation:a 2.4s cubic-bezier(.41,.26,.2,.62);-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.exactmetrics-admin-page .multiselect__spinner:after{-webkit-animation:a 2.4s cubic-bezier(.51,.09,.21,.8);animation:a 2.4s cubic-bezier(.51,.09,.21,.8);-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.exactmetrics-admin-page .multiselect__loading-enter-active,.exactmetrics-admin-page .multiselect__loading-leave-active{-webkit-transition:opacity .4s ease-in-out;transition:opacity .4s ease-in-out;opacity:1}.exactmetrics-admin-page .multiselect__loading-enter,.exactmetrics-admin-page .multiselect__loading-leave-active{opacity:0}.exactmetrics-admin-page .multiselect,.exactmetrics-admin-page .multiselect__input,.exactmetrics-admin-page .multiselect__single{font-family:inherit;font-size:16px;-ms-touch-action:manipulation;touch-action:manipulation}.exactmetrics-admin-page .multiselect{-webkit-box-sizing:content-box;box-sizing:content-box;display:block;position:relative;width:100%;min-height:40px;text-align:right;color:#35495e}.exactmetrics-admin-page .multiselect *{-webkit-box-sizing:border-box;box-sizing:border-box}.exactmetrics-admin-page .multiselect:focus{outline:none}.exactmetrics-admin-page .multiselect--disabled{opacity:.6}.exactmetrics-admin-page .multiselect--active{z-index:1}.exactmetrics-admin-page .multiselect--active:not(.multiselect--above) .multiselect__current,.exactmetrics-admin-page .multiselect--active:not(.multiselect--above) .multiselect__input,.exactmetrics-admin-page .multiselect--active:not(.multiselect--above) .multiselect__tags{border-bottom-right-radius:0;border-bottom-left-radius:0}.exactmetrics-admin-page .multiselect--active .multiselect__select{-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg)}.exactmetrics-admin-page .multiselect--above.multiselect--active .multiselect__current,.exactmetrics-admin-page .multiselect--above.multiselect--active .multiselect__input,.exactmetrics-admin-page .multiselect--above.multiselect--active .multiselect__tags{border-top-right-radius:0;border-top-left-radius:0}.exactmetrics-admin-page .multiselect__input,.exactmetrics-admin-page .multiselect__single{position:relative;display:inline-block;min-height:20px;line-height:20px;border:none;border-radius:5px;background:#fff;padding:0 5px 0 0;width:100%;-webkit-transition:border .1s ease;transition:border .1s ease;-webkit-box-sizing:border-box;box-sizing:border-box;margin-bottom:8px;vertical-align:top}.exactmetrics-admin-page .multiselect__input:-ms-input-placeholder{color:#35495e}.exactmetrics-admin-page .multiselect__input::-webkit-input-placeholder{color:#35495e}.exactmetrics-admin-page .multiselect__input::-moz-placeholder{color:#35495e}.exactmetrics-admin-page .multiselect__input::-ms-input-placeholder{color:#35495e}.exactmetrics-admin-page .multiselect__input::placeholder{color:#35495e}.exactmetrics-admin-page .multiselect__tag~.multiselect__input,.exactmetrics-admin-page .multiselect__tag~.multiselect__single{width:auto}.exactmetrics-admin-page .multiselect__input:hover,.exactmetrics-admin-page .multiselect__single:hover{border-color:#cfcfcf}.exactmetrics-admin-page .multiselect__input:focus,.exactmetrics-admin-page .multiselect__single:focus{border-color:#a8a8a8;outline:none}.exactmetrics-admin-page .multiselect__single{padding-right:5px;margin-bottom:8px}.exactmetrics-admin-page .multiselect__tags-wrap{display:inline}.exactmetrics-admin-page .multiselect__tags{min-height:40px;display:block;padding:32px 32px 30px;border-radius:5px;background:#f4f3f7;font-size:14px}.exactmetrics-admin-page .multiselect__tag{position:relative;display:inline-block;padding:10px 27px 10px 15px;border-radius:5px;margin-left:10px;color:#fff;line-height:1;background:#6528f5;white-space:nowrap;overflow:hidden;max-width:100%;text-overflow:ellipsis;font-size:14px}.exactmetrics-admin-page .multiselect__tag.exactmetrics-tag-forced{padding-right:15px}.exactmetrics-admin-page .multiselect__tag.exactmetrics-tag-forced i{display:none}.exactmetrics-admin-page .multiselect__tag-icon{cursor:pointer;position:absolute;right:0;top:0;bottom:0;font-weight:400;font-style:normal;width:32px;text-align:center;line-height:38px;-webkit-transition:all .2s ease;transition:all .2s ease;border-radius:5px;margin-right:0}.exactmetrics-admin-page .multiselect__tag-icon:hover{background:rgba(0,0,0,0)}.exactmetrics-admin-page .multiselect__tag-icon:after{content:"\f046";color:#fff;line-height:2;margin-top:1px;font-size:16px;display:block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.exactmetrics-admin-page .multiselect__tag-icon:hover:after{color:#9087ac}.exactmetrics-admin-page .multiselect__tag-icon:focus{outline:none}.exactmetrics-admin-page .multiselect__tag-icon:focus:after{text-decoration:underline;color:#fff}.exactmetrics-admin-page .multiselect__current{min-height:40px;overflow:hidden;padding:8px 12px 0 30px;white-space:nowrap;border-radius:5px;border:1px solid #e8e8e8}.exactmetrics-admin-page .multiselect__current,.exactmetrics-admin-page .multiselect__select{line-height:16px;-webkit-box-sizing:border-box;box-sizing:border-box;display:block;margin:0;text-decoration:none;cursor:pointer}.exactmetrics-admin-page .multiselect__select{display:none}.exactmetrics-admin-page .multiselect__placeholder{color:#adadad;display:inline-block;margin-bottom:10px;padding-top:2px}.exactmetrics-admin-page .multiselect--active .multiselect__placeholder{display:none}.exactmetrics-admin-page .multiselect__content-wrapper{position:absolute;display:block;background:#fff;max-height:240px;overflow:auto;border:1px solid #f4f3f7;border-top:none;border-radius:3px;z-index:1;-webkit-overflow-scrolling:touch;padding:6px}.exactmetrics-admin-page .multiselect__content{list-style:none;display:inline-block;padding:0;margin:0;min-width:100%;vertical-align:top}.exactmetrics-admin-page .multiselect--above .multiselect__content-wrapper{bottom:100%;border-bottom-right-radius:0;border-bottom-left-radius:0;border-top-right-radius:5px;border-top-left-radius:5px;border-bottom:none;border-top:1px solid #e8e8e8}.exactmetrics-admin-page .multiselect__content::webkit-scrollbar{display:none}.exactmetrics-admin-page .multiselect__element{display:block}.exactmetrics-admin-page .multiselect__option{display:block;padding:10px;line-height:16px;text-decoration:none;text-transform:none;vertical-align:middle;position:relative;cursor:pointer;white-space:nowrap;font-size:14px}.exactmetrics-admin-page .multiselect__option:after{top:0;left:0;position:absolute;line-height:40px;padding-left:12px;padding-right:20px;font-size:13px}.exactmetrics-admin-page .multiselect__option--highlight{background:#f4f3f7;outline:none;color:#210f59}.exactmetrics-admin-page .multiselect__option--highlight:after{content:attr(data-select);background:#f4f3f7;color:#210f59}.exactmetrics-admin-page .multiselect__option--selected{background:#f4f3f7;color:#210f59;font-weight:700}.exactmetrics-admin-page .multiselect__option--selected:after{content:attr(data-selected);color:silver}.exactmetrics-admin-page .multiselect__option--selected.multiselect__option--highlight{background:#6528f5;color:#fff}.exactmetrics-admin-page .multiselect__option--selected.multiselect__option--highlight:after{background:#6528f5;content:attr(data-deselect);color:#fff}.exactmetrics-admin-page .multiselect--disabled{background:#ededed;pointer-events:none}.exactmetrics-admin-page .multiselect--disabled .multiselect__current,.exactmetrics-admin-page .multiselect--disabled .multiselect__select{background:#ededed;color:#a6a6a6}.exactmetrics-admin-page .multiselect__option--disabled{background:#ededed!important;color:#a6a6a6!important;cursor:text;pointer-events:none}.exactmetrics-admin-page .multiselect__option--group{background:#ededed;color:#35495e}.exactmetrics-admin-page .multiselect__option--group.multiselect__option--highlight{background:#35495e;color:#fff}.exactmetrics-admin-page .multiselect__option--group.multiselect__option--highlight:after{background:#35495e}.exactmetrics-admin-page .multiselect__option--disabled.multiselect__option--highlight{background:#dedede}.exactmetrics-admin-page .multiselect__option--group-selected.multiselect__option--highlight{background:#6528f5;color:#fff}.exactmetrics-admin-page .multiselect__option--group-selected.multiselect__option--highlight:after{background:#6528f5;content:attr(data-deselect);color:#fff}.exactmetrics-admin-page .multiselect-enter-active,.exactmetrics-admin-page .multiselect-leave-active{-webkit-transition:all .15s ease;transition:all .15s ease}.exactmetrics-admin-page .multiselect-enter,.exactmetrics-admin-page .multiselect-leave-active{opacity:0}.exactmetrics-admin-page .multiselect__strong{margin-bottom:8px;line-height:20px;display:inline-block;vertical-align:top}.exactmetrics-admin-page [dir=rtl] .multiselect{text-align:left}.exactmetrics-admin-page [dir=rtl] .multiselect__select{left:auto;right:1px}.exactmetrics-admin-page [dir=rtl] .multiselect__tags{padding:8px 40px 0 8px}.exactmetrics-admin-page [dir=rtl] .multiselect__content{text-align:left}.exactmetrics-admin-page [dir=rtl] .multiselect__option:after{left:auto;right:0}.exactmetrics-admin-page [dir=rtl] .multiselect__clear{left:auto;right:12px}.exactmetrics-admin-page [dir=rtl] .multiselect__spinner{left:auto;right:1px}@-webkit-keyframes a{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-2turn);transform:rotate(-2turn)}}@keyframes a{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-2turn);transform:rotate(-2turn)}}*{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}body{font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.exactmetrics-onboarding-header{text-align:center;background-color:#210f59;padding:20px}.exactmetrics-header-navigation{display:none}.exactmetrics-onboarding-header h1{margin:0;line-height:1}img{max-width:100%}a{color:#6528f5}a:focus,a:hover{color:#37276a}.exactmetrics-onboarding-wizard-container{margin:0 auto;width:750px;position:relative}.exactmetrics-onboarding-wizard-steps{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:60px;position:absolute;left:100%;margin-left:138px;width:40px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.exactmetrics-onboarding-wizard-step-line{background:#e9e7ee;height:32px;width:4px;margin:14px 0;border-radius:10px}.exactmetrics-onboarding-wizard-step-line.exactmetrics-onboarding-wizard-line-active{background:#32a27a}.exactmetrics-onboarding-wizard-step{border-radius:50%;-ms-flex-negative:0;flex-shrink:0;height:24px;width:24px;background-color:#e9e7ee}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active,.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-completed{background-color:#32a27a;position:relative}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active{width:40px;height:40px;background-color:#210f59;text-align:center;line-height:40px;margin:-8px 0}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:first-child{margin-top:0}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:after{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#fff}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:first-child:after{content:"\f059"}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:nth-child(3):after{content:"\004a"}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:nth-child(5):after{content:"\f062"}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:nth-child(7):after{content:"\f06b"}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:nth-child(9):after{content:"\f06c"}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:nth-child(11){background-color:#32a27a}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:nth-child(11):after{content:"\f045"}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-completed:after{color:#fff;content:"\f045";display:block;font-family:Misettings;font-size:15px;font-weight:400;right:0;position:absolute;text-align:center;line-height:25px;width:100%}.exactmetrics-onboarding-wizard-content{position:relative;color:#210f59;font-size:15px;margin:60px 0}.exactmetrics-onboarding-wizard-content h2{color:#210f59;font-size:32px;font-weight:500;margin:0 0 12px}.exactmetrics-onboarding-wizard-content .subtitle{font-size:16px;line-height:1.75;margin-top:0;margin-bottom:20px}.exactmetrics-onboarding-wizard-content .exactmetrics-separator{border-top:1px solid #e9e7ee;clear:both;margin:24px 0}.exactmetrics-icon-info{display:inline-block;vertical-align:middle}.exactmetrics-icon-info svg{height:16px;width:16px}.exactmetrics-onboarding-wizard-form label{color:#210f59;font-size:17px;font-weight:500;line-height:1.5}.exactmetrics-description{margin-top:16px;line-height:1.75;margin-bottom:20px}.exactmetrics-form-input{margin:5px 0 0;position:relative}.exactmetrics-form-input input[type=radio]{opacity:0;position:absolute}.exactmetrics-settings-input-radio{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.exactmetrics-settings-input-radio input{opacity:0;position:absolute}.exactmetrics-settings-input-radio label{color:#37276a;font-size:16px;display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;border:2px solid #f4f3f7;height:200px;border-radius:10px;background-color:#f4f3f7;text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;cursor:pointer}.exactmetrics-settings-input-radio label:hover{background-color:#fff;border-color:#bcb7cd}.exactmetrics-settings-input-radio label:hover .exactmetrics-styled-radio{background-color:#f4f3f7}.exactmetrics-settings-input-radio label.exactmetrics-styled-radio-label-checked{border-color:#32a27a;background-color:#fff;color:#210f59}.exactmetrics-settings-input-radio label small{font-size:16px;color:#210f59;font-weight:400}.exactmetrics-settings-input-radio label>span{vertical-align:middle;font-weight:500;line-height:1;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.exactmetrics-settings-input-radio label>span:not(.exactmetrics-styled-radio):before{font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:31px;margin-bottom:24px;display:block}.exactmetrics-settings-input-radio label:last-child{margin-bottom:0}.exactmetrics-settings-input-radio label[for="exactmetrics-settings-radio-site_type[business]"]>span:not(.exactmetrics-styled-radio):before{content:"\f05a"}.exactmetrics-settings-input-radio label[for="exactmetrics-settings-radio-site_type[publisher]"]>span:not(.exactmetrics-styled-radio):before{content:"\f043"}.exactmetrics-settings-input-radio label[for="exactmetrics-settings-radio-site_type[ecommerce]"]>span:not(.exactmetrics-styled-radio):before{content:"\f033"}.exactmetrics-settings-input-radio .exactmetrics-styled-radio{width:40px;height:40px;position:relative;display:inline-block;border-radius:50%;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;background-color:#fff;margin-top:20px}.exactmetrics-settings-input-radio .exactmetrics-styled-radio.exactmetrics-styled-radio-checked{background:rgba(50,162,122,.1);text-align:center;line-height:40px}.exactmetrics-settings-input-radio .exactmetrics-styled-radio.exactmetrics-styled-radio-checked:after{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f045";color:#32a27a}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-radio>span{width:30%}.exactmetrics-form-input input:focus~.exactmetrics-styled-checkbox-status{-webkit-box-shadow:0 0 5px 2px #4d90fe;box-shadow:0 0 5px 2px #4d90fe}.exactmetrics-form-input .exactmetrics-form-input-label{display:inline-block;vertical-align:top}.exactmetrics-form-input .exactmetrics-form-input-label span{font-weight:400}.exactmetrics-onboarding-button,.request-filesystem-credentials-action-buttons .button,.request-filesystem-credentials-action-buttons input[type=submit]{border:none;border-radius:3px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:600;line-height:1.2;padding:12px 20px;text-decoration:none}.exactmetrics-onboarding-button.exactmetrics-onboarding-button-large{background-color:#32a27a;font-size:15px;padding:16px 23px}.exactmetrics-onboarding-button.exactmetrics-onboarding-button-large:after{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f06a";margin-right:13px}.exactmetrics-onboarding-button.exactmetrics-onboarding-button-large:focus,.exactmetrics-onboarding-button.exactmetrics-onboarding-button-large:hover{background-color:#19865f;color:#fff}.exactmetrics-onboarding-button.exactmetrics-onboarding-button-regular,.request-filesystem-credentials-action-buttons .button,.request-filesystem-credentials-action-buttons input[type=submit]{background-color:#6528f5;font-size:14px;font-weight:500;padding:10px 16px}.exactmetrics-onboarding-button.exactmetrics-onboarding-button-regular:focus,.exactmetrics-onboarding-button.exactmetrics-onboarding-button-regular:hover,.request-filesystem-credentials-action-buttons .button:focus,.request-filesystem-credentials-action-buttons .button:hover,.request-filesystem-credentials-action-buttons input[type=submit]:focus,.request-filesystem-credentials-action-buttons input[type=submit]:hover{background-color:#37276a;color:#fff}.exactmetrics-onboarding-button.exactmetrics-button-disabled,.exactmetrics-onboarding-button.exactmetrics-button-disabled:focus,.exactmetrics-onboarding-button.exactmetrics-button-disabled:hover{background-color:#e9e7ee;color:#9087ac;cursor:auto;outline:none}.exactmetrics-onboarding-button.exactmetrics-button-activated,.exactmetrics-onboarding-button.exactmetrics-button-activated:focus,.exactmetrics-onboarding-button.exactmetrics-button-activated:hover{background-color:#fff;border-color:#8aa4b8;color:#8aa4b8;cursor:auto;outline:none}.exactmetrics-onboarding-wizard-form input[type=email],.exactmetrics-onboarding-wizard-form input[type=text]{border:none;color:#9087ac;display:block;border-radius:3px;font-size:14px;padding:9px 15px;height:40px;width:100%;background:#f4f3f7}.exactmetrics-onboarding-wizard-form .exactmetrics-form-row-license input[type=text]{background:#fff;color:#210f59}.exactmetrics-onboarding-wizard-form input[type=email]:focus,.exactmetrics-onboarding-wizard-form input[type=text]:focus{border-color:#6528f5;outline:none}.exactmetrics-form-input.valid input[type=email],.exactmetrics-form-input.valid input[type=text]{border-color:#64bfa5}.exactmetrics-form-input.error input[type=email],.exactmetrics-form-input.error input[type=text]{border-color:#dc3232}.exactmetrics-form-input select{width:100%}.exactmetrics-form-input.error:after,.exactmetrics-form-input.valid:after{display:none;font-family:Misettings;font-size:20px;font-weight:400;position:absolute;left:12px;top:10px}.exactmetrics-form-input.valid:after{color:#32a27a;content:"\f045";display:block}.exactmetrics-form-input.error:after{color:#d83638;content:"\f046";display:block}.exactmetrics-error-message{color:#d83638;font-weight:500}::-webkit-input-placeholder{color:#9087ac}::-moz-placeholder{color:#9087ac}:-ms-input-placeholder{color:#9087ac}:-moz-placeholder{color:#9087ac}.exactmetrics-notice{color:#8aa4b8;font-size:16px;line-height:1.4;margin:30px 0}.exactmetrics-text-button{background:none;border:none;border-bottom:1px solid rgba(0,0,0,0);color:#9087ac;cursor:pointer;font-size:15px;padding:0}.exactmetrics-text-button i{margin-right:4px}.exactmetrics-text-button:hover{border-bottom-color:#9087ac}.exactmetrics-pull-right{float:left}.exactmetrics-text-button.exactmetrics-pull-right{margin-top:15px}.exactmetrics-form-inline .exactmetrics-form-input,.exactmetrics-form-inline .exactmetrics-form-label{float:right;width:80%}.exactmetrics-form-inline .exactmetrics-form-input{float:left;text-align:left;width:20%}.exactmetrics-form-inline:after{clear:both;content:"";display:table}.exactmetrics-form-inline p.exactmetrics-description{margin-bottom:0}.exactmetrics-form-inline .exactmetrics-separator{float:right;margin-top:27px;width:100%}.exactmetrics-settings-input-checkbox>label{color:#210f59;font-size:14px;margin:0;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap}.exactmetrics-settings-input-checkbox>label.exactmetrics-styled-checkbox-faux{cursor:default}.exactmetrics-settings-input-checkbox>label.exactmetrics-styled-checkbox-faux .exactmetrics-styled-checkbox{cursor:default;background-color:#e9e7ee}.exactmetrics-settings-input-checkbox>label.exactmetrics-styled-checkbox-faux .exactmetrics-styled-checkbox.exactmetrics-styled-checkbox-checked{background-color:#e9e7ee}.exactmetrics-settings-input-checkbox>label.exactmetrics-styled-checkbox-faux .exactmetrics-styled-checkbox.exactmetrics-styled-checkbox-checked:after{opacity:.5}.exactmetrics-settings-input-checkbox>label input{display:none}.exactmetrics-settings-input-checkbox>label>span{vertical-align:middle}.exactmetrics-settings-input-checkbox>label:last-child{margin-bottom:0}.exactmetrics-settings-input-checkbox .exactmetrics-styled-checkbox{width:40px;height:23px;position:relative;display:inline-block;border-radius:20px;margin-left:15px;background-color:#e9e7ee;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.exactmetrics-settings-input-checkbox .exactmetrics-styled-checkbox.exactmetrics-styled-checkbox-checked:after{left:3px;right:auto;background:#6528f5}.exactmetrics-settings-input-checkbox .exactmetrics-styled-checkbox:after{right:3px;top:3px;bottom:3px;width:17px;position:absolute;content:"";background:#bcb7cd;display:block;border-radius:50%}.exactmetrics-settings-input-checkbox .exactmetrics-checkbox-label{display:block;font-weight:500;font-size:17px;color:#210f59;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;width:100%;margin-bottom:16px}.exactmetrics-settings-input-checkbox .exactmetrics-checkbox-description{font-weight:400;color:#6528f5;display:inline-block;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;font-size:15px;line-height:1.75}.exactmetrics-settings-input-checkbox .exactmetrics-info{margin-right:12px;display:inline-block;-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-separator,.exactmetrics-onboarding-step-recommended-settings .exactmetrics-onboarding-wizard-form .exactmetrics-separator{display:block}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-grey-area>.exactmetrics-separator:first-child{display:none}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-grey-area .exactmetrics-text-right{margin-top:44px}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-grey-area .exactmetrics-text-button{color:#6528f5}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-grey-area .exactmetrics-text-button:focus,.exactmetrics-onboarding-step-recommended-addons .exactmetrics-grey-area .exactmetrics-text-button:hover{color:#37276a}.exactmetrics-text-right{text-align:left}.exactmetrics-addon-icon,.exactmetrics-addon-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-addon-icon{-ms-flex-negative:0;flex-shrink:0;height:32px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;width:32px;border-radius:50%;background:rgba(33,15,89,.1)}.exactmetrics-addon-icon img{display:block;vertical-align:middle}.exactmetrics-addon-text{padding:0 20px 0 10px;width:100%}.exactmetrics-addon-text label{line-height:1;display:block;margin-bottom:16px;font-size:17px}.exactmetrics-addon-text p{margin:6px 0 4px;display:inline;line-height:1.75}.exactmetrics-addon-text a{color:#9087ac;margin-right:5px}.exactmetrics-green-link{color:#5cc0a5;font-size:16px}.exactmetrics-addon-button{-ms-flex-negative:0;flex-shrink:0;padding-top:38px;-ms-flex-item-align:start;align-self:start}.exactmetrics-addon-button .exactmetrics-onboarding-button{text-align:center;line-height:1.2;padding:12px 24px 11px}.exactmetrics-wpforms-row .exactmetrics-addon-icon{height:158px;width:145px;background:#fff;border-radius:5px}.exactmetrics-wpforms-row .exactmetrics-addon-text{padding-right:40px}.exactmetrics-wpforms-row .exactmetrics-addon-text label{font-size:18px;font-weight:900}.exactmetrics-wpforms-row .exactmetrics-addon-text p{font-size:16px;line-height:1.4;margin-bottom:0}[class*=monstericon-]:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.monstericon-info-circle-regular:before{color:#9087ac;font-size:15px}.exactmetrics-loader-animated{animation:exactmetrics-rotate-loading 1.5s linear 0s infinite normal;-webkit-animation:exactmetrics-rotate-loading 1.5s linear 0s infinite normal;background-color:rgba(0,0,0,0)!important;border-radius:100%;border-color:rgba(0,0,0,0) #4b9ce4;border-style:solid;border-width:.25em;-webkit-box-sizing:border-box;box-sizing:border-box;color:rgba(0,0,0,0);cursor:default;height:2em;right:0;opacity:0;padding:0;position:absolute;top:0;width:2em;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}@-webkit-keyframes exactmetrics-rotate-loading{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@keyframes exactmetrics-rotate-loading{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}.exactmetrics-settings-input-select label>span,.settings-input-text label>span{font-weight:400;color:#210f59;display:inline-block;margin-top:7px;font-size:15px}.exactmetrics-settings-input-select .exactmetrics-reset-default,.settings-input-text .exactmetrics-reset-default{font-size:14px;margin-top:7px;float:left;font-weight:400}.exactmetrics-settings-input-select label>span.exactmetrics-dark,.settings-input-text label>span.exactmetrics-dark{display:block;font-weight:500;font-size:16px;color:#393f4c}.exactmetrics-settings-input-select .exactmetrics-info,.settings-input-text .exactmetrics-info{margin-right:4px}.exactmetrics-settings-input-select .settings-input-text-input,.settings-input-text .settings-input-text-input{margin-top:18px}.exactmetrics-settings-input-authenticate .exactmetrics-dark{display:block;font-weight:500;font-size:17px;color:#210f59;margin-bottom:16px}.exactmetrics-settings-input-authenticate p{font-weight:400;color:#210f59;display:inline-block;margin-top:0;font-size:15px;line-height:1.75}.exactmetrics-settings-input-select-input{margin-top:18px}.exactmetrics-onboarding-wizard-form .field-title{display:block;margin:15px 0}.exactmetrics-onboarding-wizard-form fieldset{border:none;padding:0;margin:0;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-onboarding-wizard-form .ftp-password{margin-bottom:15px}.exactmetrics-onboarding-wizard-form ol{padding-right:20px}.exactmetrics-onboarding-wizard-form ol li{color:#393f4b;line-height:1.5;margin-bottom:30px;padding-right:15px}.exactmetrics-hidden{display:none}.exactmetrics-small{font-size:12px}.exactmetrics-auth-info .exactmetrics-dark{color:#210f59;font-size:16px;font-weight:500}.exactmetrics-auth-info p{margin:0;color:#210f59}.exactmetrics-onboarding-wizard-form .exactmetrics-separator{display:none}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater .exactmetrics-error{margin-top:0;margin-bottom:18px}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-labels label{color:#210f59;font-weight:700;margin-bottom:6px;font-size:17px}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:18px}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row>span{width:100%;margin-left:18px}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row button{padding:0;border:none;background:rgba(33,15,89,.1);color:#210f59;width:32px;height:32px;border-radius:50%;cursor:pointer;display:block;position:relative;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row button i{position:absolute;right:10px;top:7px;font-size:15px}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row button i:before{content:"\f065"}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row input[type=number]{width:30%;margin-left:15px}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row select{width:70%;height:40px;margin-left:15px;border:1px solid #9087ac;border-radius:3px;margin-top:0;margin-bottom:0;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row.exactmetrics-disabled-row{opacity:.5}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row input[type=text]{border-color:rgba(0,0,0,0);background-color:#fff;color:#210f59}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row .exactmetrics-input-error input{border-color:#e43462}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row .exactmetrics-input-valid{position:relative}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row .exactmetrics-input-valid:after{position:absolute;left:8px;height:26px;width:26px;background:rgba(50,162,122,.1);top:7px;content:"\f015";display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#32a27a;border-radius:50%;text-align:center;line-height:26px}.exactmetrics-onboarding-wizard-form .exactmetrics-settings-input-repeater-row .exactmetrics-input-valid input{border-color:#32a27a}.exactmetrics-onboarding-wizard-form .exactmetrics-error{margin:18px 0 0;color:#d83638;cursor:default}.exactmetrics-onboarding-wizard-form .exactmetrics-error i{margin-left:10px}.exactmetrics-onboarding-wizard-form h3{font-size:24px;line-height:1.4;color:#210f59;margin-bottom:16px}.exactmetrics-onboarding-wizard-form .exactmetrics-flex-row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap}.exactmetrics-onboarding-wizard-form .exactmetrics-flex-row p{line-height:1.75}.exactmetrics-onboarding-wizard-form .exactmetrics-flex-row .exactmetrics-flex-row-half{width:60%}.exactmetrics-onboarding-wizard-form .exactmetrics-flex-row .exactmetrics-flex-row-half:first-child{width:40%}p>label{display:block}p .exactmetrics-info{margin-right:4px}.exactmetrics-sublabel{font-weight:400;color:#210f59;display:inline-block;margin-top:8px;font-size:15px}.exactmetrics-settings-input-repeater-labels label{color:#fff;font-weight:700;margin-bottom:6px;display:block;width:calc(50% - 8px)}.exactmetrics-settings-input-repeater-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:18px}.exactmetrics-settings-input-repeater-row:first-child{margin-bottom:14px}.exactmetrics-settings-input-repeater-row>input[type=text]{width:50%}.exactmetrics-settings-input-repeater-row input,.exactmetrics-settings-input-repeater-row select{margin-left:18px}.exactmetrics-settings-input-repeater-row button{padding:0;border:none;background:rgba(0,0,0,0);color:#dc3232;cursor:pointer;font-size:14px}.exactmetrics-settings-input-repeater-row input[type=number]{width:30%}.exactmetrics-settings-input-repeater-row select{width:70%}.exactmetrics-settings-input-repeater-row.exactmetrics-disabled-row{opacity:.5}.exactmetrics-button{background:#6528f5;border:solid #6528f5;border-width:1px 1px 2px;border-radius:3px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none}.exactmetrics-button:focus,.exactmetrics-button:hover{background-color:#37276a;border-color:#37276a}.exactmetrics-logo{display:inline-block;width:165px;max-width:100%}.exactmetrics-logo .exactmetrics-bg-img{padding-top:23%}.exactmetrics-logo .exactmetrics-bg-img:after{background-position:50%;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAUUAAABKCAMAAAAbi7YOAAAAn1BMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8Kd3m4AAAANHRSTlMAQN8ggL9g758QMLB5cwNv+5BQz14J9tSPF/HkxgdXSA0B7aqbpCkk2oRouDvLloobEug208uV8wAACFtJREFUeNrs1+1yojAUBuATIEBABVHU+t1aa+u222597//a1hgJKFaFdWY70zw/nCmaCX3nnHxQRX/ePyFZ63sy6km7I2Q6M5NjLa9jFC1sMqp6WuBI71GQUcXk3UPZaN0i41rz7ie0uINcn5FRY0EcBzTrI7c0y+M1Vo8xtP5U9nCrOYIWN/6QcV7qDKENnTkpH7970J7dCRlfm3RHhQz9YtGtFjG0N7M8fm0zRu5XQAfukzdosf9Exil3y2LXTstdO18/HHa7cWze7BUjmpwOuh1Ds1xzKTySWMj5Nn0l4MjxDRm5YIwcD+iMVvIMrbdYkaGIZQxtlKQXe/8TmmeWx71W0T1ddvfYg8ZTMurZcGihibGu+2kfGXMEr++uMYKyIOOsdMWm04R9TM4d00f000ymDed6v/sxpOH4ZdOishdIHv0w818x6onDgEqaPzPFF1TysFizJzuYRb96QK/dMinu9CtlGH1Qxn5/AMZ39VIM+KGQbsnnnNERm3MuqCqbo2PTZc8VWng5p6IVB55FrRQZDll0Sx7A6YgDIKCqfAA+XdbE1abH/dsaAH3xHVJs+1sJKeLUkdUC4J4pOgBUFgLgdNk8jHGV3pTKHGDxHVK0sOWQEqD8v7vYiiqnGHjwEroGa1w2Vu9YFgLsu6WYQGLlH7Qrp0g2E3Qr9gjjlE5JH9Bp1U0xdDPJLVOMIPmlUkRYJcXbawCvOrdZ4yV61cl1Ec/qpuiQdssU24D82z783gM6/zXF9A18H9v9bBwDiPkTKXMLi2+WYgg4HGgflmIEeP81xU2MLinTHpTPjT62D9NbpMjy1k5cKVCPnZDzASPhSoIUEfkdi+935e1zD1vh/gcciBjgCcpwwJc55U/YIOQ87NokCcdpA3Acp0vEdp+unNWW3zjieIx+h5DLVyhKm4/+VziGK71AZvqpDoTdIkXbg8SyRcwS8k1DKCErbBnC8aBY8gEKbHVcZGQBTnE2WxSa3ObYc1QhZjiRIz99SBHZ+aBAj/F3uXY9SAen8rtnnPM2Kd8X1/uWBpr/uruwfGu1hLB0HraFjM5YPdWccooAAnJVMepS3IWb7Gf3oPmnUnSxwwopRshZdvGU0SFtibNCvf7klqQMMaiZoubvdwVpMNBFovIsYjpErXucYqBaVxdjFkUHcPOqb7uMRZacj+RqIUOSC4pK0UIncqNQ5Cm6gEyXMZcDHUHEd41gOwCS6y6COrEUBeP9hjPC421SLIZmqTP9qRR9FHkRcc693Rh1VWZq/kgXo68mCIF2VgpWkN8LWb676EnDfRnbeVPI0HZc2cMiG+gXt7H+VSm2/rZzts2JwkAAzgsQgneCYrVYq6117LVaXzr7/3/bDZc0GxLlkPFjni9VEHQel91NLCkAiY3Fw30skgzdcIx8ESV5jBa5fvcxTRhAzL0anaiLTAor63EV6qnJknbd8S0yTpoWU3OMs4NwSrnVEbayI4oFIBttdgrHO1nE5DOxEiW3wpLWMtBYlHudji4P6q/Q0RLrk5f4HD+I8C2mriymtyGizgUuQ/wF2genbj4B0c32CeCzp0XBNCMMDW0VzWX2HqofsCv9Il5jKhgnSgRVMaoOKwEibhAA3LNIHYtZY0IIQzaixOF9mVxjY84hv/Ai1xf0CiC7W9dNwTKX2qfKtUUcEfsWje8IgxJDL9Oi/JLlWXQvXOr25JjE4wnpyPvaNDPbEhRmynMDT693s6jbw0e0yIgi6WyRqaqpgpFy9RSNdLDIWiwiEcMP24kY/gyJgo9YAdNZ/oLN8obcy2KEeVGVA2z60obFuMWi9qKDMUcpumGsa1Jqk7kWY7RoN08eNIrFDQPZiT3Ded6vsmecH4Viey+LvFmjc/NV48gGddZQ7lrEkNPBWCdHfFFiOh6Hdovy6hQvH6kvugtyBk8VuUQ2hzfS12JKDdLpF2OUmtaXlN5Ffw5lk38DQTZxLKr9jdhmVrqIsJFUcN7BouqxG64y9ZGV4Iw4bDe7+AJMNTse5xnMT30tuiM3PWhRrUyOFRuEsFMY0xuZmoLgjsWx5U0KnR3s7ltaTYosIR53sEit9kdO1LlyJ4EgewFX2TwTl+cY4Be5i0UzCfETkhl24Qj1jx2hRceCWyoibBxB/ZZOS22p3aJOy6z2LSmr32iMjayXMoeD1gGMq/F9oXrvu1jkZhKCmjmdHBpg44eU0rE4asxpcy7tWUZmtVBxKfCoNos6aGsYE1aRG6SpuNAwnBm0Mds3lI+/Ad4e7mUxxoIzMmUlF6CJ7KLCMBKlkxexXfSgaMoehneySOQIj0kacyIpcXiYQTuL8VnPeVfLGcA0Ij1/1WcOPGE1pc5WrKZWxlP2L24yrjcpkliF08/zuN6phAyYKjk+9Sm4fpjqIbq09un2nrGBe4g+Rs15RFI/Zdh1+xLaWe+izyQ/LuZ4J2Uni/3JKCc+Ejf3Pe3tJ+A0k16h9hk+igK6UZS/H8J/O13m9URbWR5iNi/mbPCxQofIy5sKWBJoZygrXskhucTqS5chEugLHYDmQAL9qA5z0EzDjZX9kPkaDL9JoHZCLd471CQ6A+Qj3HKurCwZGIpN9Z9Xbwd2A7QnAc3DowCDyB/IdV5GUzB8h7UPGlRpAQa2fL2mO7Ecro/Bocu+w929jYQ4CGvCXGL5B5DDyWvA7YQIi3D33xXOx7W9HJYkNvJoJ8SwVlYL2RsgX2MrED+tQC0+TiTQwnBVWrbMajD7EpBBGKzctHYliEPlrUi0CneVd6H6mFvpMa8iy+F3WP6lM3xgiVuHhNgXWoJHsQvrvtzI8+81NJmtQndzO+fDHJCnKBSVfmxNepweKxLoy+qrqB3uMhIw/AWFbdSoUycRogAAAABJRU5ErkJggg==)}.settings-input-license p{color:#210f59}.settings-input-license p a{color:#6528f5}.settings-input-license label{font-size:15px;color:#210f59;font-weight:400;margin-bottom:16px;margin-top:16px;display:block}.exactmetrics-bg-img.exactmetrics-smile{display:inline-block;width:16px;height:16px;padding:0;vertical-align:middle}.exactmetrics-bg-img.exactmetrics-smile:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAYFBMVEUAAAD/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE1mRQDuvkTSpDZ7VwqgeB2bdBqvhiV+Wgx2Uwj4xkn3xUnfsD3KnTKziSeLZhOFYRBnRgD04bLqAAAADnRSTlMALPrz8dvSp6SXYxMNONmrFGwAAADrSURBVDjLhZPploMgDIVjqQjY3hS12r3v/5bDjFGH0gPfH+4JS0IW2mid0QpQ2riWUqpmh5VdU1HMweIDe4iu10io/z1y3OML++N6X/aTE5X4l/dT6jkOCyHF/jmAcAIS+eukET1wJ/ZTx4MYG6JW8uOZuZ9lH6SXjLXkMHMO1m6WXZBnMTsy+QOGNHIuoEkhFyQUxX9LJaEAKWRRpJFFk0EWQw7C/YaV2x2CW1ONx3vwVwSufng/sKR6K9ZlZOZpHKewjJelWFG5nyw8t3LHDeP71zS9eo8FW2y5UtMW2748OOXRKw9vcfx/ACZnLYWsWc2gAAAAAElFTkSuQmCC)}.exactmetrics-onboarding-license-lite p a{font-weight:700}.exactmetrics-onboarding-license-lite p .exactmetrics-highlighted-text{font-weight:700;color:#32a27a}.exactmetrics-onboarding-license-lite .exactmetrics-settings-license-lite{display:none}.exactmetrics-form-row-license,.exactmetrics-grey-area,.exactmetrics-onboarding-license-lite,.exactmetrics-settings-input-repeater,.exactmetrics-wpforms-row{padding:40px;background:#f4f3f7;border-radius:10px;margin-bottom:24px}.exactmetrics-form-row-license .exactmetrics-onboarding-wizard-form input[type=text],.exactmetrics-grey-area .exactmetrics-onboarding-wizard-form input[type=text],.exactmetrics-onboarding-license-lite .exactmetrics-onboarding-wizard-form input[type=text],.exactmetrics-settings-input-repeater .exactmetrics-onboarding-wizard-form input[type=text],.exactmetrics-wpforms-row .exactmetrics-onboarding-wizard-form input[type=text]{background-color:#fff;color:#210f59}@media (max-width:767px){.exactmetrics-onboarding-wizard-container{max-width:100%;width:auto;margin:0 10px}.exactmetrics-onboarding-wizard-content{padding-right:20px;padding-left:20px}.exactmetrics-addon-row{-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics-addon-text{width:calc(100% - 80px);padding-left:0}.exactmetrics-addon-button{margin-top:20px}.exactmetrics-addon-icon{-ms-flex-item-align:start;align-self:flex-start}.exactmetrics-wpforms-row .exactmetrics-addon-text{width:calc(100% - 100px)}.exactmetrics-text-button.exactmetrics-pull-right{float:none}.exactmetrics-form-buttons{text-align:center}}.exactmetrics-form-buttons{margin-top:43px}.exactmetrics-form-buttons .exactmetrics-onboarding-button+.exactmetrics-text-button{float:left;margin-top:16px;color:#6528f5}.exactmetrics-form-buttons .exactmetrics-onboarding-button+.exactmetrics-text-button i{margin-right:15px}.exactmetrics-form-buttons .exactmetrics-onboarding-button+.exactmetrics-text-button:focus,.exactmetrics-form-buttons .exactmetrics-onboarding-button+.exactmetrics-text-button:hover{color:#37276a}.exactmetrics-addon-icon>div{display:inline-block;width:32px;height:32px;background:none}.exactmetrics-addon-icon>div:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;line-height:32px}.exactmetrics-addon-icon .exactmetrics-addon-icon-ads:before{content:"\004a"}.exactmetrics-addon-icon .exactmetrics-addon-icon-amp:before{content:"\f044"}.exactmetrics-addon-icon .exactmetrics-addon-icon-dimensions:before{content:"\f060"}.exactmetrics-addon-icon .exactmetrics-addon-icon-ecommerce:before{content:"\f033"}.exactmetrics-addon-icon .exactmetrics-addon-icon-eu-compliance:before{content:"\f067"}.exactmetrics-addon-icon .exactmetrics-addon-icon-facebook-instant-articles:before{content:"\f043"}.exactmetrics-addon-icon .exactmetrics-addon-icon-forms:before{content:"\f048"}.exactmetrics-addon-icon .exactmetrics-addon-icon-google-optimize:before{content:"\f053"}.exactmetrics-addon-icon .exactmetrics-addon-icon-page-insights:before{content:"\f041"}.exactmetrics-addon-icon .exactmetrics-addon-icon-performance:before{content:"\f058"}.exactmetrics-addon-icon .exactmetrics-addon-icon-media:before{content:"\f072"}.exactmetrics-addon-icon .exactmetrics-addon-wpforms{width:90px;height:79px;background-image:url(../img/wpforms.png);background-size:contain}.exactmetrics-step-current{font-size:13px;color:#9087ac;line-height:1.75;margin-bottom:8px}.exactmetrics-button-go-back{font-size:15px;color:#9087ac;line-height:1.75;margin-top:40px;padding:0;background:rgba(0,0,0,0);border:none;cursor:pointer}.exactmetrics-button-go-back:focus,.exactmetrics-button-go-back:hover{text-decoration:underline}.exactmetrics-button-go-back .monstericon-long-arrow-right-light{margin-left:10px}.exactmetrics-button-go-back .monstericon-long-arrow-right-light:before{-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg)}.exactmetrics-auth-actions{margin-top:40px}.monstericon-arrow-right:before{content:"\f06a"}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-em-forms-upsell-screen{margin-top:0;padding-top:68%;max-width:115%}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-em-forms-upsell-screen:after{background-position:50%;background-image:url(../img/forms-screen.png)}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-em-ecommerce-upsell-screen{top:0;width:100%;height:auto;padding-top:64%;max-width:115%;right:33px}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-em-ecommerce-upsell-screen:after{background-position:50%;background-image:url(../img/ecommerce-screen.png)}.exactmetrics-and-more{font-weight:700;margin:0 0 36px;display:inline-block}.exactmetrics-lite-addons-list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.exactmetrics-lite-addons-list .exactmetrics-lite-addon{width:calc(50% - 35px);display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:40px}.exactmetrics-lite-addons-list .exactmetrics-lite-addon i{font-size:23px;min-width:25px;-ms-flex-negative:0;flex-shrink:0;margin-top:5px}.exactmetrics-lite-addons-list .exactmetrics-lite-addon p{margin:0 25px 0 0;line-height:1.75}.exactmetrics-wizard-notice{padding:32px 136px 17px 48px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:0 20px 30px rgba(48,44,62,.05);box-shadow:0 20px 30px rgba(48,44,62,.05);border-radius:10px;background:#fff;border:1px solid #d6e2ed;border-bottom:3px solid #4d3f7a;margin-bottom:24px;position:relative}.exactmetrics-wizard-notice p{line-height:1.75;margin-top:0}.exactmetrics-wizard-notice h3{margin-top:0;font-size:17px;margin-bottom:15px}.exactmetrics-wizard-notice:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:48px;position:absolute;top:34px;right:42px;content:"\f06e"}.exactmetrics-wizard-notice:first-child:before{content:"\f04f";color:#32a27a}.exactmetrics-wizard-notice.exactmetrics-newsletter-item:before{content:"\f06f"}.exactmetrics-info-notices .exactmetrics-wizard-notice{padding:32px 30px 17px}.exactmetrics-info-notices .exactmetrics-wizard-notice.exactmetrics-newsletter-item:before,.exactmetrics-info-notices .exactmetrics-wizard-notice:before,.exactmetrics-info-notices .exactmetrics-wizard-notice:first-child:before{content:""}.exactmetrics-onboarding .swal2-container.exactmetrics-swal-loading{top:82px;margin-right:0}.exactmetrics-onboarding .exactmetrics-admin-page .exactmetrics-wide-purple{margin-bottom:0}.exactmetrics-bg-img.exactmetrics-icon-warning{width:48px;padding-top:48px}.exactmetrics-bg-img.exactmetrics-icon-warning:after{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f01e";font-size:22px;text-align:center;line-height:48px;color:#210f59;background:#f4f3f7;border-radius:5px}.exactmetrics-settings-network-notice{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-bottom:20px;border-bottom:1px solid #d6e2ed;margin-bottom:15px;color:#777}.exactmetrics-settings-network-notice .exactmetrics-bg-img{margin-left:25px}.exactmetrics-settings-network-notice .exactmetrics-network-message{width:100%}.exactmetrics-license-type-text{color:#210f59;font-weight:500;margin-bottom:30px}.exactmetrics-license-type-text .exactmetrics-info{margin-right:10px}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round{display:block;position:relative;padding-right:35px;margin-bottom:12px;cursor:pointer;font-size:22px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round .loader{border:2px solid #f3f3f3;border-top-color:#3498db;border-radius:50%;width:25px;height:25px;-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite;display:none}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input{position:absolute;opacity:0;cursor:pointer;height:0;width:0}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round .checkmark{position:absolute;top:0;right:0;height:25px;width:25px;background-color:#fff;border:1px solid #d2dde9;border-radius:50%}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round .checkmark:after{right:9px;top:4px;width:3px;height:10px;border:solid #fff;border-width:0 0 3px 3px;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round:hover input~.checkmark{background-color:#fff}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.faux:checked~.checkmark{background-color:#46bf40;opacity:.5}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.faux:checked~.checkmark:after{display:block}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.addon-checkbox~.error.checkmark{background-color:#c00}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.addon-checkbox~.error.checkmark:after,.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.addon-checkbox~.error.checkmark:before{position:absolute;right:10px;content:" ";height:10px;width:0;background-color:#fff;display:block}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.addon-checkbox~.error.checkmark:after{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.addon-checkbox~.checkmark{background-color:#338eef}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.addon-checkbox~.checkmark:after{display:block}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.addon-checkbox~.remove.checkmark{background-color:#fff}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round input.addon-checkbox~.remove.checkmark:after{display:block}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-checkbox-round .checkmark:after{content:"";position:absolute;display:none}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-flex{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;height:60px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-features .exactmetrics-feat-content p{margin:0;padding:0}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-features .exactmetrics-feat-content p:first-child{font-size:16px;font-weight:700;margin-bottom:4px;color:#23262e}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-features .exactmetrics-feat-content p:nth-child(2){font-size:14px;color:#586074;max-width:95%;line-height:1.4}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-skip-addons{color:#586074;margin-right:30px}.exactmetrics-onboarding-step-recommended-addons .exactmetrics-onboarding-wizard-form .exactmetrics-skip-addons svg{margin-right:5px}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-wizard-form .exactmetrics-flex{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;height:10px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-wizard-form .exactmetrics-tracking-info-text{color:#23262e;font-size:16px}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-wizard-form .exactmetrics-tracking-info-icon .exactmetrics-success{color:#46bf40;font-size:12px;display:inline-block}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-wizard-form .exactmetrics-tracking-info-icon .exactmetrics-success-icon{display:inline-block;margin-right:10px}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-wizard-form .exactmetrics-tracking-info-icon .exactmetrics-success-icon svg{position:relative;top:3px}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-wizard-form .exactmetrics-form-buttons{margin-top:50px}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-upsell{background-color:#f5fafe;padding:32px;margin-top:47px;color:#23262e}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-upsell h2{font-size:18px;font-weight:800}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-upsell p,.exactmetrics-onboarding-step-success .exactmetrics-onboarding-upsell ul{font-size:16px}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-upsell ul{list-style-type:none;margin:24px 0 32px0;padding:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-upsell ul li{width:50%;list-style-type:none;margin-bottom:15px}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-upsell ul li span.exactmetrics-icon{margin-left:5px}.exactmetrics-onboarding-step-success .exactmetrics-onboarding-upsell .exactmetrics-upsell-upgrade-button{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics-onboarding-step-success .exactmetrics-upsell-bottom-text{background-color:#ffecad;padding:12px}.exactmetrics-onboarding-step-success .exactmetrics-upsell-bottom-text p{margin:0;padding:0;text-align:center;color:#23262e}.exactmetrics-settings-license-lite{margin-top:32px}.exactmetrics-settings-license-lite label{color:#393e4b;font-size:16px;margin-bottom:16px;display:block}.exactmetrics-settings-license-lite .exactmetrics-inline-field{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-settings-license-lite .exactmetrics-inline-field input{margin-left:15px;width:448px;height:49px}.exactmetrics-settings-license-lite .exactmetrics-inline-field .exactmetrics-button{width:197px;height:48px;font-size:16px}.exactmetrics-settings-license-lite .exactmetrics-inline-field .exactmetrics-button.disabled{background-color:#e2e4e9;color:rgba(57,62,75,.5);border-color:#e2e4e9}.exactmetrics-exit-link{color:#586074;display:block;text-align:center;margin-top:30px}.exactmetrics-features-awaiting-install{position:absolute;bottom:0;top:100%;margin-top:22px;padding-bottom:100px;line-height:1.4;padding-left:50px}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}button[data-v-283d1087]{margin-top:3px}@font-face{font-family:Lato;src:url(../fonts/lato-regular-webfont.woff) format("woff"),url(../fonts/lato-regular-webfont.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-bold-webfont.woff) format("woff"),url(../fonts/lato-bold-webfont.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:text-security-disc;src:url(data:font/woff2;base64,d09GMgABAAAAAAjoAAsAAAAAMGgAAAidAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFQGVgDWYgpQdQE2AiQDCAsGAAQgBYUOBy4bvi8lYxtWw7BxAPB87x5FmeAMlf3/96RzDN74RcXUcjTKmrJ3T2VDSShiPhfiIJxxS7DiLkHFfQV33CM4427mAred74pWur/J3dyVsKy7coREA8fzvPvpfUk+tB3R8YTCzE0SCLepejmJ2u1yqp+kC7W4Rc/tDTs3GpNJ8ttRPOSTPhsXlwbi4kVYWQmAcXmlrqYHMMsBwP/zHMz7fkF1gijOKuFQIxjwlGa2lkARhYaBxFHT54IOgBMQADi3LipIMAA3geO41EUkBTCO2gkxnOwnKYBx1E6p5WS+QUCMq50rNch6MwUCAAiAcdgttYVSIfPJ5kn6ApRFQ6I88BxLvvIC/maHUHS3TIoKiwLbbM8nEFWgE1oDz3woSxpagWbBXcQWhKtPeIlg6tK+7vX57QOszwU3sGUJrA7h2Mx1IWCNr9BKxsYo+pzS/OCO0OG9mwBkx337+lcuSxRdBcc+fJxlcAjK/zCfdgtBzuxQcTqfY4Yn6EB/Az3JS/RMu5f6B8wrn55S0IxdlLn+4Yb/ctIT+ocWYPcGAOvxSjEjpSiVMqSgFWVjzpCCXjAIRirTABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REdFDlkZEh2jE3SKztA5ukCX6Apdoxt0i+7QPXpAj+gJPaMX9Ire0Dv6QJ/oC/qKvqHv6Af6iX6h3+gP+ov+of+I+ECMxETMiDmxIJbEilgTG2JL7Ig9cSCOxIk4ExfiStyIO/EgnsSLeBMf4kv8iD/taQANoiE0jEbQKBpD42gCTaIpNI1m0CyaQ/NoAS2iJbSMVtAqWkPraANtoi20jXbQLtpD++gAHaIjdIxO0Ck6Q+foAl2iK3SNbtAtukP36AE9oif0jF7QK3pD79B79AF9RJ/QZ/QFfUXf0Hf0A/1Ev9Bv9Af9Rf/Qf9DQABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REfoGJ2gU3SGztEFukRX6BrdoFt0h+7RA3pET+gZvaBX9Aa9Re/Qe/QBfUSf0Gf0BX1F39B39AP9RL/Qb/QH/UX/0P8l9vq9gXwDIUCliyAhRAgTIoQoIUaIExKEJCFFSBMyhCwhR8gTCoQioUQoEyqEKqFGqBMahCahRWgTOoQuoUfoEwaEIWFEGBMmhClhRpgTFoQlYUVYEzaELWFH2BMOhGPCCeGUcEY4J1wQLglXhGvCDeGWcEe4JzwQHglPhGfCC+GV8EZ4J3wQPglfhG/CD+GX8Ef4p9sdgoQQIUyIEKKEGCFOSBCShBQhTcgQsoQcIU8oEIqEEqFMqBCqhBqhTmgkNBGaCS2EVkIboZ3QQegkdBG6CT2EXkIfoZ8wQBgkDBGGCSOEUcIYYZwwQZgkTBGmCTOEWcIcYZ6wQFgkLBGWCSuEVcIaYZ2wQdgkbBG2CTuEXcIeYZ9wQDgkHBGOCSeEU8IZ4ZxwQbgkXBGuCTeEW8Id4Z7wQHgkPBGeCS+EV8Ib4Z3wQfgkfBG+CT+EX8If4Z8AZpAQIoQJEUKUECPECQlCkpAipAkZQpaQI+QJBUKRUCKUCRVClVAj1AkNQpPQIrQJHUKX0CP0CQPCkDAijAkTwpQwI8wJC8KSsCKsCRvClrAj7AkHwpFwIpwJF8IV4ZpwQ7gl3BHuCQ+ER8IT4ZnwQnglvBHeCR+ET8IX4ZvwQ/gl/BH+lzv+AmMkTYAmSBOiCdNEaKI0MZo4TYImSZOiSdNkaLI0OZo8TYGmSFOiKdNUaKo0NZo6TYOmSdOiadN0aLo0PZo+zYBmSDOiGdNMaKY0M5o5zYJmSbOiWdNsaLY0O5o9zYHmmOaE5pTmjOac5oLmkuaK5prmhuaW5o7mnuaB5pHmieaZ5oXmleaN5p3mg+aT5ovmm+aH5pfmj2ZRAqCCoEKgwqAioKKgYqDioBKgkqBSoNKgMqCyoHKg8qAKoIqgSqDKoCqgqqBqoOqgGkE1gWoG1QKqFVQbqHZQHaA6QXWB6gbVA6oXVB+oflADoAZBDYH+uxaEWDBiIYiFIhaGWDhiEYhFIhaFWDRiMYjFIhaHWDxiCYglIpaEWDJiKYilIpaGWDpiGYhlIpaFWDZiOYjlIpaHWD5iBYgVIlaEWDFiJYiVIlaGWDliFYhVIlaFWDViNYjVIlaHWD1iDYg1ItaEWDNiLYi1ItaGWDtiHYh1ItaFWDdiPYj1ItaHWD9iA4gNIjaE2DBiI4iNIjaG2DhiE4hNIjaF2DRiM4jNIjaH2DxiC4gtIraE2DJiK4itIraG2DpiG4htIraF2DZiO4jtIraH2D5iB4gdInaE2DFiJ4idInaG2DliF4hdInaF2DViN4jdInaH2D1iD4g9IvaE2DNiL4i9IvaG2DvE3iP2AbGPiH1C7DNiXxD7itg3xL4j9gOxn4j9Quw3Yn8Q+4vYP8T+M6cIDBz9EXfeUHR1JyygPL/++I3R1cRvdDr+E12Jfh3Q0EN/fHn2mXptpJxUkIqu/Cs2egM33OjSLcT33I82+B9nP37X/c0W52623s45CYCo03QIBCVrAFAycnSYSqvO4YJt/NP73YqA/giNZhJ6sBbmql+0SQZaxNOZudJbc2nqxNvpM+veq7Sz2LUgFEu+VLs+Ay3yp7MVertp6i23v2Rmv5gmHDhSQ6t5GmTaqTsqhpWwmbOk3uKJrNOmwSSMC17jghqygilDOUU3KlLmHHNrajw3DVNVGWytGZDisM/cbkdRnvfIUJkaGJlgAYcoQ5bGptTmGc1R7pBC3XhFsLXnXR54qrMc+dGNBkqE4laBi4KmZYGom8vIy0lTyBkppBjLoTndMmrofIRORirsNlCbXzCgulmo36KztS2iV8rrNoRUL5VdkMSGoSXroC1KOQAA) format("woff2"),url(data:font/woff;base64,d09GRgABAAAAAAusAAsAAAAAMGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZjRmM5Y21hcAAAAYQAAAgCAAArYmjjYVVnbHlmAAAJiAAAAEEAAABQiOYj2mhlYWQAAAnMAAAALgAAADYR8XmmaGhlYQAACfwAAAAcAAAAJAqNAyNobXR4AAAKGAAAAAgAAAAIAyAAAGxvY2EAAAogAAAABgAAAAYAKAAAbWF4cAAACigAAAAeAAAAIAEOACJuYW1lAAAKSAAAAUIAAAKOcN63t3Bvc3QAAAuMAAAAHQAAAC5lhHRpeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGScwDiBgZWBgSGVtYKBgVECQjMfYEhiYmFgYGJgZWbACgLSXFMYHIAq/rNfAHK3gEmgASACAIekCT4AAHic7dhl0zDVmUXh5+XFHYK7E0IguFtwt4QQgmtwd3d3d7cED+4SXIO7u7vbsNfaUzU1fyGcu66u1adOf+6uHhgYGGpgYGDwL37/iyEHBoZZcWDQLzUw9NK/7A5if/DA8OwPOfQknBky+0P8/PPPOcd1UJ785frr/Dq/zq/z6/w3zsCgoX/xX74GRsxbcYpRB1iDB/7PGvT/DFGDenBwe8hKD1XpoSs9TKWHrfRwlR6+0iNUesRKj1TpkSs9SqVHrfRolR690r+p9BiVHrPSY1V67EqPU+lxKz1epcev9ASVnrDSE1V64kpPUulJKz1ZpSev9BSVnrLSU1V66kr/ttLTVPp3lZ62/KJSerpKT1/pP1R6hkrPWOmZKj1zpWep9KyVnq3Ss1d6jkrPWem5Kj13peep9LyVnq/S81d6gUr/sdILVnqhSi9c6UUqvWilF6v04pVeotJLVnqpSi9d6WUqvWyll6v08pVeodIrVvpPlf5zpVeq9F8qvXKl/1rpVSr9t0qvWunVKr16pdeo9JqVXqvSa1d6nUqvW+n1Kr1+pTeo9N8rvWGlN6r0xpXepNKbVnqzSm9e6S0qvWWlt6r01pXeptLbVnq7Sm9f6R0qvWOld6r0zpXepdK7Vnq3Su9e6T0qvWel96r03pXep9L7Vnq/Su9f6QMqfWClD6r0wZU+pNKHVvqwSh9e6SMqfWSlj6r00ZU+ptLHVvq4Sh9f6RMqfWKlT6r0yZU+pdKnVvq0Sp9e6TMqfWalz6r02ZU+p9LnVvq8Sp9f6QsqfWGl/1Hpf1b6okpfXOlLKn1ppS+r9OWVvqLS/6r0lZW+qtJXV/qaSl9b6esqfX2lb6j0jZW+qdI3V/qWSt9a6dsqfXul76j0vyt9Z6XvqvTdlb6n0vdW+r5K31/pByr9YKUfqvTDlX6k0v+p9KOVfqzSj1f6iUo/WemnKv10pZ+p9LOVfq7Sz1f6hUq/WOmXKv1ypV+p9KuVfq3Sr1f6jUq/Wem3Kv12pd+p9LuVfq/S71f6g0p/WOmPKv1xpT+p9KeV/qzSn1f6i0p/WemvKv11pb+p9LeV/q7S31f6h0r/WOmfKv1zDfI26KKHED1Y9JCihxI9tOhhRA8rejjRw4seQfSIokcSPbLoUUSPKno00aOL/o3oMUSPKXos0WOLHkf0uKLHEz2+6AlETyh6ItETi55E9KSiJxM9uegpRE8peirRU4v+rehpRP9O9LSify96OtHTi/6D6BlEzyh6JtEzi55F9KyiZxM9u+g5RM8pei7Rc4ueR/S8oucTPb/oBUT/UfSCohcSvbDoRUQvKnox0YuLXkL0kqKXEr206GVELyt6OdHLi15B9Iqi/yT6z6JXEv0X0SuL/qvoVUT/TfSqolcTvbroNUSvKXot0WuLXkf0uqLXE72+6A1E/130hqI3Er2x6E1Ebyp6M9Gbi95C9JaitxK9tehtRG8rejvR24veQfSOoncSvbPoXUTvKno30buL3kP0nqL3Er236H1E7yt6P9H7iz5A9IGiDxJ9sOhDRB8q+jDRh4s+QvSRoo8SfbToY0QfK/o40ceLPkH0iaJPEn2y6FNEnyr6NNGniz5D9JmizxJ9tuhzRJ8r+jzR54u+QPSFov8h+p+iLxJ9sehLRF8q+jLRl4u+QvS/RF8p+irRV4u+RvS1oq8Tfb3oG0TfKPom0TeLvkX0raJvE3276DtE/1v0naLvEn236HtE3yv6PtH3i35A9IOiHxL9sOhHRP9H9KOiHxP9uOgnRD8p+inRT4t+RvSzop8T/bzoF0S/KPol0S+LfkX0q6JfE/266DdEvyn6LdFvi35H9Lui3xP9vugPRH8o+iPRH4v+RPSnoj8T/bnoL0R/Kfor0V+L/kb0t6K/E/296B9E/yj6J9E/K/2/v/npoocQPVj0kKKHEj206GFEDyt6ONHDix5B9IiiRxI9suhRRI8qejTRo4v+jegxRI8peizRY4seR/S4oscTPb7oCURPKHoi0ROLnkT0pKInEz256ClETyl6KtFTi/6t6GlE/070tKJ/L3o60dOL/oPoGUTPKHom0TOLnkX0rKJnEz276DlEzyl6LtFzi55H9Lyi5xM9v+gFRP9R9IKiFxK9sOhFRC8qejHRi4teQvSSopcSvbToZUQvK3o50cuLXkH0iqL/JPrPolcS/RfRK4v+q+hVRP9N9KqiVxO9uug1RK8pei3Ra4teR/S6otcTvb7oDUT/XfSGojcSvbHoTURvKnoz0ZuL3kL0lqK3Er216G1Ebyt6O9Hbi95B9I6idxK9s+hdRO8qejfRu4veQ/SeovcSvbfofUTvK3o/0fuLPkD0gaIPEn2w6ENEHyr6MNGHiz5C9JGijxJ9tOhjRB8r+jjRx4s+QfSJok8SfbLoU0SfKvo00aeLPkP0maLPEn226HNEnyv6PNHni75A9IWi/yH6n6IvEn2x6EtEXyr6MtGXi75C9L9EXyn6KtFXi75G9LWirxN9vegbRN8o+ibRN4u+RfStom8TfbvoO0T/W/Sdou8Sfbfoe0TfK/o+0feLfkD0g6IfEv2w6EdE/0f0o6IfE/246CdEPyn6KdFPi35G9LOinxP9vOgXRL8o+iXRL4t+RfSrol8T/broN0S/Kfot0W+Lfkf0u6LfE/2+6A9Efyj6I9Efi/5E9KeiPxP9uegvRH8p+ivRX4v+RvS3or8T/b3oH0T/KPon0T9rYND/AOaSEScAAHicY2BiAAKmPSy+QEqUgYFRUURcTFzMyNzM3MxEXU1dTYmdjZ2NccK/K5oaLm6L3Fw0NOEMZoVAFD6IAQD4PA9iAAAAeJxjYGRgYADilrme/fH8Nl8ZuNkvAEUYbnDPcEOmmfaw+AIpDgYmEA8AHMMJGAAAeJxjYGRgYL/AAATMCiCSaQ8DIwMqYAIAK/QBvQAAAAADIAAAAAAAAAAoAAB4nGNgZGBgYGIQA2IGMIuBgQsIGRj+g/kMAArUATEAAHicjY69TsMwFIWP+4doJYSKhMTmoUJIqOnPWIm1ZWDq0IEtTZw2VRpHjlu1D8A7MPMczAw8DM/AifFEl9qS9d1zzr3XAK7xBYHqCHTdW50aLlj9cZ1057lBfvTcRAdPnlvUnz23mXj13MEN3jhBNC6p9PDuuYYrfHquU//23CD/eG7iVnQ9t9ATD57bWIgXzx3ciw+rDrZfqmhnUnvsx2kZzdVql4Xm1DhVFsqUqc7lKBiemjOVKxNaFcvlUZb71djaRCZGb+VU51ZlmZaF0RsV2WBtbTEZDBKvB5HewkLhwLePkhRhB4OU9ZFKTCqpzems6GQI6Z7TcU5mQceQUmjkkBghwPCszhmd3HWHLh+ze8mEpLvnT8dULRLWCTMaW9LUbanSGa+mUjhv47ZY7l67rgITDHiTf/mAKU76BTuXfk8AAHicY2BigAARBuyAiZGJkZmBJSWzOJmBAQALQwHHAAAA) format("woff"),url(../fonts/text-security-disc.ttf) format("truetype")}@font-face{font-family:Misettings;src:url(../fonts/icons.woff2) format("woff2"),url(../fonts/icons.woff) format("woff"),url(../fonts/icons.ttf) format("truetype"),url(../fonts/icons.otf) format("opentype");font-weight:400;font-style:normal}[class*=monstericon-]:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.monstericon-times-circle:before{content:"\f01b"}.monstericon-times:before{content:"\f021"}.monstericon-info-circle-regular:before{content:"\f01e"}.monstericon-arrow{-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease;-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg);display:inline-block}.monstericon-arrow.monstericon-down{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.monstericon-arrow:before{content:"\f01f"}.monstericon-warning-triangle:before{content:"\f020"}.monstericon-files:before{content:"\f028"}.monstericon-user:before{content:"\f02a"}.monstericon-eye:before{content:"\f02b"}.monstericon-expand:before{content:"\f02d"}.monstericon-life-ring:before{content:"\f030"}.monstericon-wpbeginner:before{content:"\f031"}.monstericon-lightbulb:before{content:"\f032"}.monstericon-shopping-cart:before{content:"\f033"}.monstericon-arrow-right:before{content:"\f01d"}.monstericon-amp-icon:before{content:"\f000"}.monstericon-fbia:before{content:"\f001"}.monstericon-google-optimize:before{content:"\f002"}.monstericon-ads:before{content:"\0041"}.monstericon-affiliate:before{content:"\0042"}.monstericon-compatibility:before{content:"\0043"}.monstericon-demographics:before{content:"\0044"}.monstericon-download:before{content:"\0046"}.monstericon-ecommerce:before{content:"\0047"}.monstericon-engagement:before{content:"\0048"}.monstericon-forms:before{content:"\0049"}.monstericon-links:before{content:"\004a"}.monstericon-memberships:before{content:"\004b"}.monstericon-notifications:before{content:"\004c"}.monstericon-performance:before{content:"\004d"}.monstericon-permissions:before{content:"\004e"}.monstericon-reporting:before{content:"\004f"}.monstericon-social:before{content:"\0050"}.monstericon-video:before{content:"\0051"}.monstericon-times:before{content:"\f014"}.monstericon-check:before{content:"\f015"}.monstericon-info:before{content:"\f016"}.monstericon-exclamation-triangle:before{content:"\f017"}.monstericon-user:before{content:"\f018"}.monstericon-eye:before{content:"\f019"}.monstericon-info-circle:before{content:"\f01a"}.monstericon-info-circle-btm:before{content:"\f01c"}.monstericon-chevron-up:before{content:"\f01f"}.monstericon-times-fas:before{content:"\f021"}.monstericon-check-circle:before{content:"\f022"}.monstericon-exclamation-circle:before{content:"\f023"}.monstericon-star:before{content:"\f025"}.monstericon-times-circle-fas:before{content:"\f026"}.monstericon-check-circle-far:before{content:"\f027"}.monstericon-file-alt:before{content:"\f028"}.monstericon-search:before{content:"\f029"}.monstericon-user-far:before{content:"\f02a"}.monstericon-eye-far:before{content:"\f02b"}.monstericon-cog:before{content:"\f02c"}.monstericon-expand-alt:before{content:"\f02d"}.monstericon-compress-arrows-alt:before{content:"\f02e"}.monstericon-compress:before{content:"\f02f"}.monstericon-badge-check:before{content:"\f034"}.monstericon-download-em:before{content:"\f035"}.monstericon-globe:before{content:"\f036"}.monstericon-wand-magic:before{content:"\f037"}.monstericon-mouse-pointer:before{content:"\f038"}.monstericon-users:before{content:"\f039"}.monstericon-file-certificate:before{content:"\f03a"}.monstericon-bullseye-arrow:before{content:"\f03b"}.monstericon-cash-register:before{content:"\f03c"}.monstericon-chart-line:before{content:"\f03d"}.monstericon-clock:before{content:"\f03e"}.monstericon-box:before{content:"\f03f"}.monstericon-sack-dollar:before{content:"\f040"}.monstericon-browser:before{content:"\f041"}.monstericon-eye-em:before{content:"\f042"}.monstericon-newspaper:before{content:"\f043"}.monstericon-mobile:before{content:"\f044"}.monstericon-check-em-light:before{content:"\f045"}.monstericon-times-em-lite:before{content:"\f046"}.monstericon-code:before{content:"\f047"}.monstericon-clipboard:before{content:"\f048"}.monstericon-upload:before{content:"\f049"}.monstericon-clone:before{content:"\f04a"}.monstericon-id-card:before{content:"\f04b"}.monstericon-user-friends:before{content:"\f04c"}.monstericon-file-alt-em:before{content:"\f04d"}.monstericon-calendar-alt:before{content:"\f04e"}.monstericon-comment-alt-check:before{content:"\f04f"}.monstericon-arrow-circle-up:before{content:"\f050"}.monstericon-search-em:before{content:"\f051"}.monstericon-list-ol:before{content:"\f052"}.monstericon-hand-pointer:before{content:"\f053"}.monstericon-folder:before{content:"\f054"}.monstericon-sign-out-em-solid:before{content:"\f055"}.monstericon-external-link-alt:before{content:"\f056"}.monstericon-copy:before{content:"\f057"}.monstericon-sync:before{content:"\f058"}.monstericon-flag:before{content:"\f059"}.monstericon-building:before{content:"\f05a"}.monstericon-chart-bar:before{content:"\f05b"}.monstericon-shopping-bag:before{content:"\f05c"}.monstericon-exchange-alt:before{content:"\f05d"}.monstericon-plus:before{content:"\f05e"}.monstericon-tachometer-alt:before{content:"\f05f"}.monstericon-media:before{content:"\f072"}.monstericon-tag:before{content:"\f060"}.monstericon-check-circle-em:before{content:"\f061"}.monstericon-bullseye:before{content:"\f062"}.monstericon-rocket:before{content:"\f063"}.monstericon-exclamation-square:before{content:"\f064"}.monstericon-trash:before{content:"\f065"}.monstericon-user-em:before{content:"\f066"}.monstericon-unlock:before{content:"\f067"}.monstericon-exclamation-em-solid:before{content:"\f068"}.monstericon-key-em:before{content:"\f069"}.monstericon-long-arrow-right-light:before{content:"\f06a"}.monstericon-plug-light:before{content:"\f06b"}.monstericon-align-left-regular:before{content:"\f06c"}.monstericon-envelope-solid:before{content:"\f06f"}.monstericon-comment-alt-lines-solid:before{content:"\f06e"}.monstericon-arrow-circle-up-light:before{content:"\f071"}.monstericon-megaphone-solid:before{content:"\f070"}.monstericon-arrow-circle-up-light :before{content:"\f071"}@media (max-width:782px){.exactmetrics-notices-area{margin-right:10px;margin-left:10px}}.exactmetrics-notice .exactmetrics-notice-inner{position:relative;color:#210f59;padding:32px 45px;border:1px solid #f4f3f7;border-bottom:3px solid;-webkit-box-shadow:0 20px 30px rgba(48,44,62,.05);box-shadow:0 20px 30px rgba(48,44,62,.05);border-radius:10px;background:#fff;margin-top:40px}.exactmetrics-notice .exactmetrics-notice-inner .notice-title{color:#fff;font-weight:700;display:block;margin:0 0 6px;padding:0;font-size:17px}@media (max-width:782px){.exactmetrics-notice .exactmetrics-notice-inner{padding:10px}}.exactmetrics-notice .exactmetrics-notice-inner .notice-content{padding-right:92px;background:#fff;line-height:1.75;font-size:15px;position:relative}.exactmetrics-notice .exactmetrics-notice-inner .notice-content:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:48px;right:0;position:absolute;top:0;line-height:1}.exactmetrics-notice.exactmetrics-notice-error .exactmetrics-notice-inner{border-bottom-color:#d83638}.exactmetrics-notice.exactmetrics-notice-error .exactmetrics-notice-inner .notice-content:before{content:"\f064";color:#d83638}.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-notice-inner{border-bottom-color:#fa0}.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-notice-inner{border-bottom-color:#4d3f7a}.exactmetrics-notice.exactmetrics-notice-info-xl .exactmetrics-notice-inner{border:1px solid #6528f5;border-right-width:3px;color:#777}.exactmetrics-notice.exactmetrics-notice-info-xl .exactmetrics-notice-inner .exactmetrics-button{color:#fff;margin:15px 0 0}.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-notice-inner{border-bottom-color:#32a27a}.exactmetrics-notice .notice-content{margin-left:20px}.exactmetrics-notice .notice-content a{color:#210f59}.exactmetrics-notice .dismiss-notice{border:none;background:none;padding:0;margin:0;display:inline-block;cursor:pointer;color:#e9e7ee;position:relative;float:left}.exactmetrics-notice .dismiss-notice:focus,.exactmetrics-notice .dismiss-notice:hover{color:#210f59}.exactmetrics-notice.exactmetrics-notice-info .notice-content,.exactmetrics-notice.exactmetrics-notice-success .notice-content,.exactmetrics-notice.exactmetrics-notice-warning .notice-content{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:425px){.exactmetrics-notice.exactmetrics-notice-info .notice-content,.exactmetrics-notice.exactmetrics-notice-success .notice-content,.exactmetrics-notice.exactmetrics-notice-warning .notice-content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-notice-button{-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;margin-left:-20px;margin-right:auto}@media (max-width:782px){.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-notice-button{margin-right:0}}.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-button{margin-top:0;padding:10px 16px 8px;line-height:1;font-size:14px;font-weight:600}@media (max-width:782px){.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-button{margin-top:10px;margin-right:0}}.exactmetrics-notice.exactmetrics-notice-error .exactmetrics-button{margin-top:10px;margin-right:0;color:#fff}body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-end,body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-right{top:32px}@media screen and (max-width:767px){body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-end,body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-right{top:42px;left:auto;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast{border-radius:5px;padding:17px 28px;border:1px solid #f4f3f7;-webkit-box-shadow:0 20px 30px rgba(48,44,62,.05);box-shadow:0 20px 30px rgba(48,44,62,.05);min-width:380px}@media screen and (max-width:767px){body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast{width:80vw}}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-title{color:#210f59;font-size:15px;font-weight:700;line-height:1.5;margin-right:32px;margin-top:-3px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-close{font-size:26px;width:18px;height:18px;line-height:10px;position:absolute;left:14px;top:19px;color:#9087ac}@media screen and (max-width:767px){body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-close{padding:9px;line-height:0}}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon{width:27px;height:24px;min-width:27px;margin:0;border:0;color:#9087ac}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info{border:none;position:relative}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before{content:"\f01e";position:absolute;top:-1px;right:0;line-height:1;font-size:24px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info .swal2-icon-text{display:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error{border:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before{content:"\f023";position:absolute;top:-1px;right:0;line-height:1;font-size:24px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error .swal2-x-mark *{display:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon [class^=-ring]{width:14px;height:14px;top:0;right:0}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{top:0;right:0;border:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{content:"\f027";position:absolute;top:-1px;right:0;line-height:1;font-size:24px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success [class^=swal2-success-line]{display:none}@-webkit-keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@-webkit-keyframes swal2-animate-success-line-tip{0%{top:1.1875em;right:.0625em;width:0}54%{top:1.0625em;right:.125em;width:0}70%{top:2.1875em;right:-.375em;width:3.125em}84%{top:3em;right:1.3125em;width:1.0625em}to{top:2.8125em;right:.875em;width:1.5625em}}@keyframes swal2-animate-success-line-tip{0%{top:1.1875em;right:.0625em;width:0}54%{top:1.0625em;right:.125em;width:0}70%{top:2.1875em;right:-.375em;width:3.125em}84%{top:3em;right:1.3125em;width:1.0625em}to{top:2.8125em;right:.875em;width:1.5625em}}@-webkit-keyframes swal2-animate-success-line-long{0%{top:3.375em;left:2.875em;width:0}65%{top:3.375em;left:2.875em;width:0}84%{top:2.1875em;left:0;width:3.4375em}to{top:2.375em;left:.5em;width:2.9375em}}@keyframes swal2-animate-success-line-long{0%{top:3.375em;left:2.875em;width:0}65%{top:3.375em;left:2.875em;width:0}84%{top:2.1875em;left:0;width:3.4375em}to{top:2.375em;left:.5em;width:2.9375em}}@-webkit-keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}5%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}12%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}to{-webkit-transform:rotate(405deg);transform:rotate(405deg)}}@keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}5%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}12%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}to{-webkit-transform:rotate(405deg);transform:rotate(405deg)}}@-webkit-keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@-webkit-keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}@keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}.exactmetrics_page body.swal2-toast-shown .swal2-container,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-shown{background-color:rgba(0,0,0,0)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top{top:0;left:auto;bottom:auto;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-end,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;left:0;bottom:auto;right:auto}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-left,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-start{top:0;left:auto;bottom:auto;right:0}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-left,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-start{top:50%;left:auto;bottom:auto;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center{top:50%;left:auto;bottom:auto;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-end,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-right{top:50%;left:0;bottom:auto;right:auto;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-left,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-start{top:auto;left:auto;bottom:0;right:0}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom{top:auto;left:auto;bottom:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-end,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;left:0;bottom:0;right:auto}.exactmetrics_page body.swal2-toast-column .swal2-toast{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-actions{-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;height:2.2em;margin-top:.3125em}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-loading{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-input{height:2em;margin:.3125em auto;font-size:1em}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-validation-message{font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:auto;padding:.625em;-webkit-box-shadow:0 0 .625em #d9d9d9;box-shadow:0 0 .625em #d9d9d9;overflow-y:hidden}.exactmetrics_page .swal2-popup.swal2-toast .swal2-header{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;width:100%}.exactmetrics_page .swal2-popup.swal2-toast .swal2-title{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin:0 .6em;font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-close{position:static;width:.8em;height:.8em;line-height:.8}.exactmetrics_page .swal2-popup.swal2-toast .swal2-content{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon{width:2em;min-width:2em;height:2em;margin:0}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon-text{font-size:2em;font-weight:700;line-height:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{right:.3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{left:.3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-actions{height:auto;margin:0 .3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-styled{margin:0 .3125em;padding:.3125em .625em;font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-styled:focus{-webkit-box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4);box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4)}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{position:absolute;width:2em;height:2.8125em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);border-radius:50%}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.25em;right:-.9375em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:2em 2em;-ms-transform-origin:2em 2em;transform-origin:2em 2em;border-radius:0 4em 4em 0}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.25em;right:.9375em;-webkit-transform-origin:100% 2em;-ms-transform-origin:100% 2em;transform-origin:100% 2em;border-radius:4em 0 0 4em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;right:.4375em;width:.4375em;height:2.6875em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;right:.1875em;width:.75em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;left:.1875em;width:1.375em}.exactmetrics_page .swal2-popup.swal2-toast.swal2-show{-webkit-animation:showSweetToast .5s;animation:showSweetToast .5s}.exactmetrics_page .swal2-popup.swal2-toast.swal2-hide{-webkit-animation:hideSweetToast .2s forwards;animation:hideSweetToast .2s forwards}.exactmetrics_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:animate-toast-success-tip .75s;animation:animate-toast-success-tip .75s}.exactmetrics_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:animate-toast-success-long .75s;animation:animate-toast-success-long .75s}@-webkit-keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(-2deg);transform:translateY(-.625em) rotate(-2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(2deg);transform:translateY(0) rotate(2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(-2deg);transform:translateY(.3125em) rotate(-2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(-2deg);transform:translateY(-.625em) rotate(-2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(2deg);transform:translateY(0) rotate(2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(-2deg);transform:translateY(.3125em) rotate(-2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@-webkit-keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(-1deg);transform:rotate(-1deg);opacity:0}}@keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(-1deg);transform:rotate(-1deg);opacity:0}}@-webkit-keyframes animate-toast-success-tip{0%{top:.5625em;right:.0625em;width:0}54%{top:.125em;right:.125em;width:0}70%{top:.625em;right:-.25em;width:1.625em}84%{top:1.0625em;right:.75em;width:.5em}to{top:1.125em;right:.1875em;width:.75em}}@keyframes animate-toast-success-tip{0%{top:.5625em;right:.0625em;width:0}54%{top:.125em;right:.125em;width:0}70%{top:.625em;right:-.25em;width:1.625em}84%{top:1.0625em;right:.75em;width:.5em}to{top:1.125em;right:.1875em;width:.75em}}@-webkit-keyframes animate-toast-success-long{0%{top:1.625em;left:1.375em;width:0}65%{top:1.25em;left:.9375em;width:0}84%{top:.9375em;left:0;width:1.125em}to{top:.9375em;left:.1875em;width:1.375em}}@keyframes animate-toast-success-long{0%{top:1.625em;left:1.375em;width:0}65%{top:1.25em;left:.9375em;width:0}84%{top:.9375em;left:0;width:1.125em}to{top:.9375em;left:.1875em;width:1.375em}}.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}.exactmetrics_page body.swal2-height-auto{height:auto!important}.exactmetrics_page body.swal2-no-backdrop .swal2-shown{top:auto;left:auto;bottom:auto;right:auto;background-color:rgba(0,0,0,0)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown>.swal2-modal{-webkit-box-shadow:0 0 10px rgba(0,0,0,.4);box-shadow:0 0 10px rgba(0,0,0,.4)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top{top:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-left,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-start{top:0;right:0}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-end,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-right{top:0;left:0}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center{top:50%;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-left,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-start{top:50%;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-end,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-right{top:50%;left:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom{bottom:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-left,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-start{bottom:0;right:0}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-end,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-right{left:0;bottom:0}.exactmetrics_page .swal2-container{display:-webkit-box;display:-ms-flexbox;display:flex;position:fixed;top:0;left:0;bottom:0;right:0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:10px;background-color:rgba(0,0,0,0);z-index:1060;overflow-x:hidden;-webkit-overflow-scrolling:touch}.exactmetrics_page .swal2-container.swal2-top{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.exactmetrics_page .swal2-container.swal2-top-left,.exactmetrics_page .swal2-container.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.exactmetrics_page .swal2-container.swal2-top-end,.exactmetrics_page .swal2-container.swal2-top-right{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.exactmetrics_page .swal2-container.swal2-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics_page .swal2-container.swal2-center-left,.exactmetrics_page .swal2-container.swal2-center-start{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.exactmetrics_page .swal2-container.swal2-center-end,.exactmetrics_page .swal2-container.swal2-center-right{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.exactmetrics_page .swal2-container.swal2-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.exactmetrics_page .swal2-container.swal2-bottom-left,.exactmetrics_page .swal2-container.swal2-bottom-start{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.exactmetrics_page .swal2-container.swal2-bottom-end,.exactmetrics_page .swal2-container.swal2-bottom-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.exactmetrics_page .swal2-container.swal2-grow-fullscreen>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;-ms-flex-pack:center}.exactmetrics_page .swal2-container.swal2-grow-fullscreen>.swal2-modal,.exactmetrics_page .swal2-container.swal2-grow-row>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-webkit-box-pack:center;justify-content:center}.exactmetrics_page .swal2-container.swal2-grow-row>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-ms-flex-pack:center}.exactmetrics_page .swal2-container.swal2-grow-column{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-left,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-start,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-left,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-start,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-left,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-end,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-right,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-end,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-right,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-end,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.exactmetrics_page .swal2-container.swal2-grow-column>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics_page .swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal{margin:auto}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.exactmetrics_page .swal2-container .swal2-modal{margin:0!important}}.exactmetrics_page .swal2-container.swal2-fade{-webkit-transition:background-color .1s;transition:background-color .1s}.exactmetrics_page .swal2-container.swal2-shown{background-color:rgba(0,0,0,.4)}.exactmetrics_page .swal2-popup{display:none;position:relative;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:32em;max-width:100%;padding:1.25em;border-radius:.3125em;background:#fff;font-family:inherit;font-size:1rem;-webkit-box-sizing:border-box;box-sizing:border-box;right:0;top:0}.exactmetrics_page .swal2-popup:focus{outline:0}.exactmetrics_page .swal2-popup.swal2-loading{overflow-y:hidden}.exactmetrics_page .swal2-popup .swal2-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics_page .swal2-popup .swal2-title{display:block;position:relative;max-width:100%;margin:0 0 .4em;padding:0;color:#595959;font-size:1.875em;font-weight:600;text-align:center;text-transform:none;word-wrap:break-word}.exactmetrics_page .swal2-popup .swal2-actions{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em auto 0;z-index:1}.exactmetrics_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.exactmetrics_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:hover{background-image:-webkit-gradient(linear,right top,right bottom,from(rgba(0,0,0,.1)),to(rgba(0,0,0,.1)));background-image:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1))}.exactmetrics_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:active{background-image:-webkit-gradient(linear,right top,right bottom,from(rgba(0,0,0,.2)),to(rgba(0,0,0,.2)));background-image:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2))}.exactmetrics_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-confirm{width:2.5em;height:2.5em;margin:.46875em;padding:0;border-radius:100%;border:.25em solid rgba(0,0,0,0);background-color:rgba(0,0,0,0)!important;color:rgba(0,0,0,0);cursor:default;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.exactmetrics_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-cancel{margin-left:30px;margin-right:30px}.exactmetrics_page .swal2-popup .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm:after{display:inline-block;width:15px;height:15px;margin-right:5px;border-radius:50%;border:3px solid #999;border-left-color:rgba(0,0,0,0);-webkit-box-shadow:-1px 1px 1px #fff;box-shadow:-1px 1px 1px #fff;content:"";-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal}.exactmetrics_page .swal2-popup .swal2-styled{margin:.3125em;padding:.625em 2em;font-weight:500;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .swal2-popup .swal2-styled:not([disabled]){cursor:pointer}.exactmetrics_page .swal2-popup .swal2-styled.swal2-confirm{border:0;border-radius:.25em;background:initial;background-color:#3085d6;color:#fff;font-size:1.0625em}.exactmetrics_page .swal2-popup .swal2-styled.swal2-cancel{border:0;border-radius:.25em;background:initial;background-color:#aaa;color:#fff;font-size:1.0625em}.exactmetrics_page .swal2-popup .swal2-styled:focus{outline:0;-webkit-box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4);box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4)}.exactmetrics_page .swal2-popup .swal2-styled::-moz-focus-inner{border:0}.exactmetrics_page .swal2-popup .swal2-footer{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em 0 0;padding:1em 0 0;border-top:1px solid #eee;color:#545454;font-size:1em}.exactmetrics_page .swal2-popup .swal2-image{max-width:100%;margin:1.25em auto}.exactmetrics_page .swal2-popup .swal2-close{position:absolute;top:0;left:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:1.2em;height:1.2em;padding:0;-webkit-transition:color .1s ease-out;transition:color .1s ease-out;border:none;border-radius:0;outline:initial;background:100% 0;color:#ccc;font-family:serif;font-size:2.5em;line-height:1.2;cursor:pointer;overflow:hidden}.exactmetrics_page .swal2-popup .swal2-close:hover{-webkit-transform:none;-ms-transform:none;transform:none;color:#f27474}.exactmetrics_page .swal2-popup>.swal2-checkbox,.exactmetrics_page .swal2-popup>.swal2-file,.exactmetrics_page .swal2-popup>.swal2-input,.exactmetrics_page .swal2-popup>.swal2-radio,.exactmetrics_page .swal2-popup>.swal2-select,.exactmetrics_page .swal2-popup>.swal2-textarea{display:none}.exactmetrics_page .swal2-popup .swal2-content{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0;padding:0;color:#545454;font-size:1.125em;font-weight:300;line-height:normal;z-index:1;word-wrap:break-word}.exactmetrics_page .swal2-popup #swal2-content{text-align:center}.exactmetrics_page .swal2-popup .swal2-checkbox,.exactmetrics_page .swal2-popup .swal2-file,.exactmetrics_page .swal2-popup .swal2-input,.exactmetrics_page .swal2-popup .swal2-radio,.exactmetrics_page .swal2-popup .swal2-select,.exactmetrics_page .swal2-popup .swal2-textarea{margin:1em auto}.exactmetrics_page .swal2-popup .swal2-file,.exactmetrics_page .swal2-popup .swal2-input,.exactmetrics_page .swal2-popup .swal2-textarea{width:100%;-webkit-transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,box-shadow .3s;transition:border-color .3s,box-shadow .3s,-webkit-box-shadow .3s;border:1px solid #d9d9d9;border-radius:.1875em;font-size:1.125em;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.06);box-shadow:inset 0 1px 1px rgba(0,0,0,.06);-webkit-box-sizing:border-box;box-sizing:border-box}.exactmetrics_page .swal2-popup .swal2-file.swal2-inputerror,.exactmetrics_page .swal2-popup .swal2-input.swal2-inputerror,.exactmetrics_page .swal2-popup .swal2-textarea.swal2-inputerror{border-color:#f27474!important;-webkit-box-shadow:0 0 2px #f27474!important;box-shadow:0 0 2px #f27474!important}.exactmetrics_page .swal2-popup .swal2-file:focus,.exactmetrics_page .swal2-popup .swal2-input:focus,.exactmetrics_page .swal2-popup .swal2-textarea:focus{border:1px solid #b4dbed;outline:0;-webkit-box-shadow:0 0 3px #c4e6f5;box-shadow:0 0 3px #c4e6f5}.exactmetrics_page .swal2-popup .swal2-file::-webkit-input-placeholder,.exactmetrics_page .swal2-popup .swal2-input::-webkit-input-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::-webkit-input-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file::-moz-placeholder,.exactmetrics_page .swal2-popup .swal2-input::-moz-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::-moz-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file:-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-input:-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea:-ms-input-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file::-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-input::-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::-ms-input-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file::placeholder,.exactmetrics_page .swal2-popup .swal2-input::placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-range input{width:80%}.exactmetrics_page .swal2-popup .swal2-range output{width:20%;font-weight:600;text-align:center}.exactmetrics_page .swal2-popup .swal2-range input,.exactmetrics_page .swal2-popup .swal2-range output{height:2.625em;margin:1em auto;padding:0;font-size:1.125em;line-height:2.625em}.exactmetrics_page .swal2-popup .swal2-input{height:2.625em;padding:0 .75em}.exactmetrics_page .swal2-popup .swal2-input[type=number]{max-width:10em}.exactmetrics_page .swal2-popup .swal2-file{font-size:1.125em}.exactmetrics_page .swal2-popup .swal2-textarea{height:6.75em;padding:.75em}.exactmetrics_page .swal2-popup .swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;color:#545454;font-size:1.125em}.exactmetrics_page .swal2-popup .swal2-checkbox,.exactmetrics_page .swal2-popup .swal2-radio{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics_page .swal2-popup .swal2-checkbox label,.exactmetrics_page .swal2-popup .swal2-radio label{margin:0 .6em;font-size:1.125em}.exactmetrics_page .swal2-popup .swal2-checkbox input,.exactmetrics_page .swal2-popup .swal2-radio input{margin:0 .4em}.exactmetrics_page .swal2-popup .swal2-validation-message{display:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:.625em;background:#f0f0f0;color:#666;font-size:1em;font-weight:300;overflow:hidden}.exactmetrics_page .swal2-popup .swal2-validation-message:before{display:inline-block;width:1.5em;min-width:1.5em;height:1.5em;margin:0 .625em;border-radius:50%;background-color:#f27474;color:#fff;font-weight:600;line-height:1.5em;text-align:center;content:"!";zoom:normal}@supports (-ms-accelerator:true){.exactmetrics_page .swal2-range input{width:100%!important}.exactmetrics_page .swal2-range output{display:none}}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.exactmetrics_page .swal2-range input{width:100%!important}.exactmetrics_page .swal2-range output{display:none}}@-moz-document url-prefix(){.exactmetrics_page .swal2-close:focus{outline:2px solid rgba(50,100,150,.4)}}.exactmetrics_page .swal2-icon{position:relative;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:5em;height:5em;margin:1.25em auto 1.875em;border:.25em solid rgba(0,0,0,0);border-radius:50%;line-height:5em;cursor:default;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;zoom:normal}.exactmetrics_page .swal2-icon-text{font-size:3.75em}.exactmetrics_page .swal2-icon.swal2-error{border-color:#f27474}.exactmetrics_page .swal2-icon.swal2-error .swal2-x-mark{position:relative;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.exactmetrics_page .swal2-icon.swal2-error [class^=swal2-x-mark-line]{display:block;position:absolute;top:2.3125em;width:2.9375em;height:.3125em;border-radius:.125em;background-color:#f27474}.exactmetrics_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{right:1.0625em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.exactmetrics_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{left:1em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.exactmetrics_page .swal2-icon.swal2-warning{border-color:#facea8;color:#f8bb86}.exactmetrics_page .swal2-icon.swal2-info{border-color:#9de0f6;color:#3fc3ee;font-size:1rem}.exactmetrics_page .swal2-icon.swal2-question{border-color:#c9dae1;color:#87adbd}.exactmetrics_page .swal2-icon.swal2-success{border-color:#a5dc86}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-circular-line]{position:absolute;width:3.75em;height:7.5em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);border-radius:50%}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.4375em;right:-2.0635em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:3.75em 3.75em;-ms-transform-origin:3.75em 3.75em;transform-origin:3.75em 3.75em;border-radius:0 7.5em 7.5em 0}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.6875em;right:1.875em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:100% 3.75em;-ms-transform-origin:100% 3.75em;transform-origin:100% 3.75em;border-radius:7.5em 0 0 7.5em}.exactmetrics_page .swal2-icon.swal2-success .swal2-success-ring{position:absolute;top:-.25em;right:-.25em;width:100%;height:100%;border:.25em solid rgba(165,220,134,.3);border-radius:50%;z-index:2;-webkit-box-sizing:content-box;box-sizing:content-box}.exactmetrics_page .swal2-icon.swal2-success .swal2-success-fix{position:absolute;top:.5em;right:1.625em;width:.4375em;height:5.625em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);z-index:1}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-line]{display:block;position:absolute;height:.3125em;border-radius:.125em;background-color:#a5dc86;z-index:2}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{top:2.875em;right:.875em;width:1.5625em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:2.375em;left:.5em;width:2.9375em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.exactmetrics_page .swal2-progresssteps{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 0 1.25em;padding:0;font-weight:600}.exactmetrics_page .swal2-progresssteps li{display:inline-block;position:relative}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle{width:2em;height:2em;border-radius:2em;background:#3085d6;color:#fff;line-height:2em;text-align:center;z-index:20}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle:first-child{margin-right:0}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle:last-child{margin-left:0}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep{background:#3085d6}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progresscircle,.exactmetrics_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progressline{background:#add8e6}.exactmetrics_page .swal2-progresssteps .swal2-progressline{width:2.5em;height:.4em;margin:0 -1px;background:#3085d6;z-index:10}.exactmetrics_page [class^=swal2]{-webkit-tap-highlight-color:transparent}.exactmetrics_page .swal2-show{-webkit-animation:swal2-show .3s;animation:swal2-show .3s}.exactmetrics_page .swal2-show.swal2-noanimation{-webkit-animation:none;animation:none}.exactmetrics_page .swal2-hide{-webkit-animation:swal2-hide .15s forwards;animation:swal2-hide .15s forwards}.exactmetrics_page .swal2-hide.swal2-noanimation{-webkit-animation:none;animation:none}.exactmetrics_page .swal2-rtl .swal2-close{left:auto;right:0}.exactmetrics_page .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:swal2-animate-success-line-tip .75s;animation:swal2-animate-success-line-tip .75s}.exactmetrics_page .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:swal2-animate-success-line-long .75s;animation:swal2-animate-success-line-long .75s}.exactmetrics_page .swal2-animate-success-icon .swal2-success-circular-line-right{-webkit-animation:swal2-rotate-success-circular-line 4.25s ease-in;animation:swal2-rotate-success-circular-line 4.25s ease-in}.exactmetrics_page .swal2-animate-error-icon{-webkit-animation:swal2-animate-error-icon .5s;animation:swal2-animate-error-icon .5s}.exactmetrics_page .swal2-animate-error-icon .swal2-x-mark{-webkit-animation:swal2-animate-error-x-mark .5s;animation:swal2-animate-error-x-mark .5s}@-webkit-keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@media print{.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}.exactmetrics-notifications-display{background:#f4f3f7;border-right:3px solid #6528f5;padding:20px;border-radius:0 3px 3px 0;margin-bottom:50px;position:relative}.exactmetrics-settings-panel .exactmetrics-notifications-display{margin-right:25px;margin-left:25px}.exactmetrics-notifications-display h3{margin:0 0 4px;font-size:16px;line-height:20px}.exactmetrics-notifications-display p{margin-top:4px;margin-bottom:12px;font-size:14px;line-height:18px}.exactmetrics-notifications-display .exactmetrics-notification{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-notifications-display .exactmetrics-notification .exactmetrics-notifications-indicator{padding-top:10px}.exactmetrics-notifications-display .exactmetrics-notification .exactmetrics-notifications-indicator a{position:relative}.exactmetrics-notifications-display .exactmetrics-notification-inner{margin-right:25px}.exactmetrics-notifications-display .exactmetrics-button{margin-left:15px}.exactmetrics-notifications-display .exactmetrics-notification-navigation{position:absolute;left:0;top:100%}.exactmetrics-notifications-display .exactmetrics-notification-navigation button{background:#f4f3f7;border:none;border-radius:0 0 3px 3px;margin:0;padding:5px 8px 7px;color:#a8aebd;cursor:pointer}.exactmetrics-notifications-display .exactmetrics-notification-navigation button:focus,.exactmetrics-notifications-display .exactmetrics-notification-navigation button:hover{color:#6528f5}.exactmetrics-notifications-display .exactmetrics-notification-navigation button .monstericon-arrow{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);font-size:10px}.exactmetrics-notifications-display .exactmetrics-notification-navigation button.exactmetrics-notification-previous{margin-left:2px}.exactmetrics-notifications-display .exactmetrics-notification-navigation button.exactmetrics-notification-previous .monstericon-arrow{-webkit-transform:rotate(-270deg);-ms-transform:rotate(-270deg);transform:rotate(-270deg)}.exactmetrics-notifications-display .exactmetrics-notification-dismiss{border:none;background:none;color:#a8aebd;position:absolute;left:12px;top:9px;padding:0;margin:0;font-size:16px;cursor:pointer}.exactmetrics-notifications-display .exactmetrics-notifications-unread{min-width:10px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:12px;right:18px;border-radius:20px;line-height:16px;color:#fff;font-weight:700;text-align:center;display:inline-block;padding:0 3px}.exactmetrics-report .exactmetrics-notifications-display .exactmetrics-notifications-unread{min-width:16px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:4px;border-radius:20px;line-height:1;color:#fff;font-weight:700;text-align:center;padding:0 2px;right:20px}.exactmetrics-admin-page.exactmetrics-path-about-us .exactmetrics-notificationsv3-container,.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-notificationsv3-container,.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-notificationsv3-container,.exactmetrics-admin-page.exactmetrics-path-tools-url-builder .exactmetrics-notificationsv3-container,.exactmetrics-admin-page.exactmetrics-reports-page .exactmetrics-notificationsv3-container{margin-left:0}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-navigation-bar{width:90%}.exactmetrics-admin-page .exactmetrics-notificationsv3-container{display:inline-block;margin-right:20px;float:left}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-number{position:absolute;top:-9px;min-width:20px;height:20px;line-height:20px;display:block;background:#eb5757;border-radius:20px;font-size:12px;color:#fff;font-weight:700;text-align:center;padding:0 6px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-number.number-greater-than-10{left:-13px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-number.number-less-than-10{left:-10px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-dismissed-number{min-width:24px;height:24px;background:#7c869d;border-radius:20px;display:inline-block;text-align:center;vertical-align:middle;line-height:24px;color:#fff;font-size:14px;font-weight:700;padding:0 8px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-no-notifications{text-align:center;position:absolute;top:50%;margin-top:-69px;width:100%}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-no-notifications h4{font-size:16px;color:#7c869d}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button{position:relative}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button{position:absolute;top:21px;left:15px}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button{background:#f0f2f4;border-radius:3px;padding:11px 7px;line-height:0;vertical-align:middle;margin-top:0;border:solid #d3d7de;border-width:1px 1px 2px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button{display:inline-block}}@media (max-width:959px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button{display:block}}@media (max-width:1099px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button{display:block}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button:hover{background:#e7eaec;border-color:#d3d7de;outline:none}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-notificationsv3-inbox-number{cursor:pointer}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar{width:440px;position:fixed;top:32px;left:0;background:#fff;z-index:1001;overflow:scroll;height:100%;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar{top:46px;width:300px}}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(-50px)}to{opacity:1;-webkit-transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(-50px);transform:translateX(-50px)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar.exactmetrics-notificationsv3-sidebar-in{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-single-notification{padding:0 16px;overflow:hidden}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top{background:#2679c1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:50px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-title{width:50%;text-align:right}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-title svg{margin-left:10px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-title h3{display:inline-block;color:#fff;font-size:18px;font-weight:700}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions{width:50%;text-align:left}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button{color:#fff;text-decoration:underline;border:0;padding:0;background:rgba(0,0,0,0);border-radius:0;float:none}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button{display:inline-block}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button:hover{color:#efe5e5}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button:focus{outline:none}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-notificationsv3-sidebar-close{margin-right:12px;vertical-align:bottom}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-notificationsv3-sidebar-close:active svg path,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-notificationsv3-sidebar-close:focus svg path,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-notificationsv3-sidebar-close:hover svg path{fill:#efe5e5}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:60px;border-bottom:1px solid #e2e4e9;margin:0 16px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-notifications-count{width:50%;text-align:right}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-notifications-count .exactmetrics-notificationsv3-inbox-number{position:relative;display:inline-block;top:inherit;left:inherit;min-width:24px;height:24px;line-height:24px;margin-left:8px;padding:0 8px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-notifications-count .exactmetrics-notificationsv3-dismissed-number{margin-left:8px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-notifications-count h4{display:inline-block}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions{width:50%;text-align:left}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions span{text-decoration:underline;color:#99a1b3;cursor:pointer}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions span:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions span:focus,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions span:hover{color:#a9b1c3}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications{display:block;margin-bottom:32px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications{margin-bottom:46px}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification{border-bottom:1px solid #e2e4e9;padding-bottom:24px;display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-icon{width:54px;float:right;text-align:center;padding-top:24px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-icon{float:none;margin:0 auto}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details{float:right;width:354px;padding-top:20px;text-align:right}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details{width:260px}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-title h5{margin-top:0;margin-bottom:0;color:#393f4c;font-size:13px;font-weight:700;width:70%;display:inline-block}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-title h5{width:65%}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-title span{color:#7f899f;font-size:13px;float:left}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-content p{color:#393f4c;font-size:13px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-top:2px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions .exactmetrics-button{display:block;background:#f0f2f4;border:1px solid #d3d7de;border-radius:3px;font-weight:500;font-size:13px;color:#393f4c;letter-spacing:.02em;padding:6px 11px;margin-left:10px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions .exactmetrics-button:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions .exactmetrics-button:hover{background:#d3d7de}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions span{font-size:13px;color:#7f899f;cursor:pointer}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions span:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions span:focus,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions span:hover{color:#a9b1c3}.exactmetrics-tooltip{display:block!important;z-index:10000;max-width:350px}.exactmetrics-tooltip .exactmetrics-tooltip-inner{background:#6528f5;color:#fff;border-radius:5px;padding:16px 20px;font-size:15px;line-height:1.5;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;text-align:center}.exactmetrics-tooltip .exactmetrics-tooltip-inner a{color:#fff;font-weight:700}.exactmetrics-tooltip .exactmetrics-tooltip-arrow{width:0;height:0;border-style:solid;position:absolute;margin:8px;border-color:#6528f5;z-index:1}.exactmetrics-tooltip[x-placement^=top]{padding-bottom:8px}.exactmetrics-tooltip[x-placement^=top] .exactmetrics-tooltip-arrow{border-width:8px 8px 0;border-right-color:rgba(0,0,0,0)!important;border-left-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;bottom:0;right:calc(50% - 8px);margin-top:0;margin-bottom:0}.exactmetrics-tooltip[x-placement^=bottom]{padding-top:8px}.exactmetrics-tooltip[x-placement^=bottom] .exactmetrics-tooltip-arrow{border-width:0 8px 8px;border-right-color:rgba(0,0,0,0)!important;border-left-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;top:0;right:calc(50% - 8px);margin-top:0;margin-bottom:0}.exactmetrics-tooltip[x-placement^=right]{padding-right:8px}.exactmetrics-tooltip[x-placement^=right] .exactmetrics-tooltip-arrow{border-width:8px 0 8px 8px;border-right-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;right:0;top:calc(50% - 8px);margin-right:0;margin-left:0}.exactmetrics-tooltip[x-placement^=left]{padding-left:8px}.exactmetrics-tooltip[x-placement^=left] .exactmetrics-tooltip-arrow{border-width:8px 8px 8px 0;border-top-color:rgba(0,0,0,0)!important;border-left-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;left:0;top:calc(50% - 8px);margin-right:0;margin-left:0}.exactmetrics-tooltip.popover .popover-inner{background:#fff;color:#6528f5;padding:24px;border-radius:5px;-webkit-box-shadow:0 5px 30px rgba(0,0,0,.1);box-shadow:0 5px 30px rgba(0,0,0,.1)}.exactmetrics-tooltip.popover .popover-arrow{border-color:#fff}.exactmetrics-tooltip[aria-hidden=true]{visibility:hidden;opacity:0;-webkit-transition:opacity .15s,visibility .15s;transition:opacity .15s,visibility .15s}.exactmetrics-tooltip[aria-hidden=false]{visibility:visible;opacity:1;-webkit-transition:opacity .15s;transition:opacity .15s}.exactmetrics-roller{display:inline-block;position:relative;width:58px;height:58px}.exactmetrics-roller div{-webkit-animation:exactmetrics-roller 1.4s cubic-bezier(.5,0,.5,1) infinite;animation:exactmetrics-roller 1.4s cubic-bezier(.5,0,.5,1) infinite;-webkit-transform-origin:29px 29px;-ms-transform-origin:29px 29px;transform-origin:29px 29px}.exactmetrics-roller div:after{content:" ";display:block;position:absolute;width:8px;height:8px;border-radius:50%;background:#6528f5;margin:-4px -4px 0 0}.exactmetrics-roller div:first-child{-webkit-animation-delay:-36ms;animation-delay:-36ms}.exactmetrics-roller div:nth-child(2){-webkit-animation-delay:-72ms;animation-delay:-72ms}.exactmetrics-roller div:nth-child(3){-webkit-animation-delay:-.108s;animation-delay:-.108s}.exactmetrics-roller div:nth-child(4){-webkit-animation-delay:-.144s;animation-delay:-.144s}.exactmetrics-roller div:nth-child(5){-webkit-animation-delay:-.18s;animation-delay:-.18s}.exactmetrics-roller div:nth-child(6){-webkit-animation-delay:-.216s;animation-delay:-.216s}.exactmetrics-roller div:nth-child(7){-webkit-animation-delay:-.252s;animation-delay:-.252s}.exactmetrics-roller div:first-child:after{top:49px;right:44px}.exactmetrics-roller div:nth-child(2):after{top:54px;right:28px}.exactmetrics-roller div:nth-child(3):after{top:48px;right:13px}.exactmetrics-roller div:nth-child(4):after{top:35px;right:5px}.exactmetrics-roller div:nth-child(5):after{top:19px;right:6px}.exactmetrics-roller div:nth-child(6):after{top:8px;right:15px}.exactmetrics-roller div:nth-child(7):after{top:4px;right:29px}@-webkit-keyframes exactmetrics-roller{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@keyframes exactmetrics-roller{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}.exactmetrics-upload-media-wrapper .exactmetrics-dark{display:block}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media-label{margin-bottom:0!important}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media{display:block;width:100%;margin-top:20px;position:relative;max-width:300px}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media .exactmetrics-uploaded-media-overlay{display:none;background:rgba(0,0,0,.7);width:100%;position:absolute;top:0;right:0;height:100%;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media .exactmetrics-uploaded-media-overlay .exactmetrics-remove-uploaded-media{color:#fff;text-decoration:underline;margin-right:auto;cursor:pointer;padding:0 0 10px 10px}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media .exactmetrics-uploaded-media-overlay .exactmetrics-remove-uploaded-media:hover{text-decoration:none}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media:hover .exactmetrics-uploaded-media-overlay{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media img{max-width:100%;display:inline-block}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media{overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;margin-top:20px}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-input{width:73%;margin-left:2%;float:right;position:relative;margin-top:0}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button{width:25%;float:right;font-size:15px}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button:active,.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button:focus,.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button:hover{outline:none}.exactmetrics-upload-media-wrapper .inline-field .exactmetrics-button{position:relative!important;margin-right:10px;padding:12px 24px!important}.exactmetrics-upload-media-wrapper .inline-field .exactmetrics-button:first-child{margin-right:0}.exactmetrics-email-summaries-settings a{color:#6528f5!important}.exactmetrics-email-summaries-settings a:focus,.exactmetrics-email-summaries-settings a:hover{color:#393f4c!important}.exactmetrics-email-summaries-settings .exactmetrics-dark{display:block}.exactmetrics-email-summaries-settings .inline-field .exactmetrics-button{position:relative!important;margin-right:10px;padding:12px 24px!important}.exactmetrics-email-summaries-settings .inline-field .exactmetrics-button:first-child{margin-right:0}.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater{margin-bottom:18px}.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row input[type=number],.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row input[type=text],.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row textarea{border-color:#9087ac}.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row .exactmetrics-input-valid input{border-color:#32a27a}.exactmetrics-email-summaries-settings .exactmetrics-button.exactmetrics-button-disabled{cursor:not-allowed;background:#39967e!important;border-color:#4ab99b!important}.exactmetrics-accordion .exactmetrics-accordion{padding:0;border:1px solid #e0e0e0}.exactmetrics-accordion .exactmetrics-accordion div:not(:last-child){border-bottom:1px solid rgba(10,10,10,.1)}.exactmetrics-accordion .exactmetrics-accordion div:last-child .exactmetrics-accordion-item-details{border-radius:5px}.exactmetrics-accordion .exactmetrics-accordion dd{margin-right:0;margin-bottom:0}.exactmetrics-accordion .exactmetrics-accordion-item-trigger{cursor:pointer;outline:none}.exactmetrics-accordion .exactmetrics-accordion-item-details-inner,.exactmetrics-accordion .exactmetrics-accordion-item-trigger{padding:0 20px 30px}.exactmetrics-accordion .exactmetrics-accordion-item.is-active .exactmetrics-accordion-item-title{border-bottom:1px solid #e0e0e0}.exactmetrics-accordion .exactmetrics-accordion-item-title{position:relative;background-color:#fff;cursor:pointer}.exactmetrics-accordion .exactmetrics-accordion-item-title h4.exactmetrics-accordion-item-title-text{font-size:20px;margin-bottom:0;padding-left:1.25rem}.exactmetrics-accordion .exactmetrics-accordion-item-title h4.exactmetrics-accordion-item-title-text .title{padding-right:15px}.exactmetrics-accordion .exactmetrics-accordion-item-trigger{width:100%;text-align:right;background-color:rgba(0,0,0,0);border:none}.exactmetrics-accordion .exactmetrics-accordion-item-trigger-icon{display:block;position:absolute;top:0;left:1.5rem;bottom:0;margin:auto;width:8px;height:8px;border-left:2px solid #363636;border-bottom:2px solid #363636;-webkit-transform:translateY(-2px) rotate(-45deg);-ms-transform:translateY(-2px) rotate(-45deg);transform:translateY(-2px) rotate(-45deg);-webkit-transition:-webkit-transform .2s ease;transition:-webkit-transform .2s ease;transition:transform .2s ease;transition:transform .2s ease,-webkit-transform .2s ease}.exactmetrics-accordion .exactmetrics-accordion-item-trigger-icon.is-active{-webkit-transform:translateY(2px) rotate(-225deg);-ms-transform:translateY(2px) rotate(-225deg);transform:translateY(2px) rotate(-225deg)}.exactmetrics-accordion .exactmetrics-accordion-item-details{overflow:hidden;background-color:#fff;padding-top:15px}.exactmetrics-accordion .exactmetrics-accordion-item-details p,.exactmetrics-accordion .exactmetrics-accordion-item-details ul{font-size:1.2em;line-height:1.8}.exactmetrics-accordion .exactmetrics-accordion-item-enter-active,.exactmetrics-accordion .exactmetrics-accordion-item-leave-active{will-change:height;-webkit-transition:height .2s ease;transition:height .2s ease}.exactmetrics-accordion .exactmetrics-accordion-item-enter,.exactmetrics-accordion .exactmetrics-accordion-item-leave-to{height:0!important}body{background:#fff;margin:0}.exactmetrics-admin-page,.exactmetrics-admin-page *{-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}#wpcontent,.auto-fold #wpcontent{padding-right:0}.exactmetrics-highlighted-text{color:#64bfa5;font-weight:700}.exactmetrics-bold{font-weight:700}.exactmetrics-bg-img{width:100%;padding-top:66%;position:relative}.exactmetrics-bg-img:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;background-repeat:no-repeat;background-size:contain}.exactmetrics-header{padding:20px;background-color:#210f59;position:relative;z-index:90}.exactmetrics-header .exactmetrics-container{width:100%}@media (max-width:959px){.exactmetrics-header .exactmetrics-container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}}.exactmetrics-header .exactmetrics-float-right{text-align:center}@media (max-width:1099px){.exactmetrics-header .exactmetrics-float-right{text-align:left}}.exactmetrics-header .exactmetrics-float-right .exactmetrics-button{float:left;background:#fff;color:#210f59}@media (max-width:1099px){.exactmetrics-header .exactmetrics-float-right .exactmetrics-button{display:none}}.exactmetrics-header .exactmetrics-float-right .exactmetrics-button:focus,.exactmetrics-header .exactmetrics-float-right .exactmetrics-button:hover{color:#6528f5;background:#fff}.exactmetrics-header .exactmetrics-float-right .exactmetrics-button.exactmetrics-button-disabled{color:#9087ac}@media (max-width:959px){.exactmetrics-header .exactmetrics-float-right{text-align:left;width:100%}}.exactmetrics-logo-area{float:right;max-width:calc(100vw - 170px)}.exactmetrics-logo-area img{display:block;max-width:100%}@media (max-width:959px){.exactmetrics-logo-area{width:140px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0}}@media (max-width:959px){.exactmetrics-header .exactmetrics-container,.exactmetrics-navigation-bar .exactmetrics-container{padding:0;width:100%}}.exactmetrics-navigation-bar{background:rgba(0,0,0,0);display:inline-block}@media (max-width:959px){.exactmetrics-navigation-bar{padding:0;border:0}}@media (max-width:750px){.exactmetrics-navigation-bar{background:none;margin-left:40px}}.exactmetrics-admin-page{position:relative}.exactmetrics-admin-page .exactmetrics-blocked{position:absolute;top:0;bottom:0;left:0;right:0;background:hsla(0,0%,100%,.5);z-index:999}@media (max-width:959px){.exactmetrics-admin-page .exactmetrics-header{padding:20px 24px}.exactmetrics-admin-page .exactmetrics-header .exactmetrics-button{display:none}}.swal2-popup .swal2-title{line-height:1.2}#footer-left{color:#210f59}#footer-left .exactmetrics-no-text-decoration{text-decoration:none;color:#fdb72c;font-size:14px}#footer-left a{color:#6528f5}#wpfooter{display:none;margin-left:23px;margin-bottom:20px;right:23px;background:rgba(101,40,245,.05);padding:14px 20px;border-radius:5px}#wpfooter a{color:#6528f5}.exactmetrics-container{margin:0 auto;max-width:100%;width:750px}.exactmetrics-admin-page .exactmetrics-navigation-tab-link{text-decoration:none;padding:12px 4px 11px;font-size:15px;color:#fff;display:inline-block;margin-left:20px;line-height:1;outline:none;font-family:Lato,sans-serif;position:relative}.exactmetrics-admin-page .exactmetrics-navigation-tab-link:after{content:"";width:100%;right:0;position:absolute;top:100%;height:2px;border-radius:20px;background:#fff;display:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:focus,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:hover{border-bottom-color:#fff;color:#fff;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active:after,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:focus:after,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:hover:after{display:block}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.exactmetrics-navigation-tab-disabled:focus,.exactmetrics-admin-page .exactmetrics-navigation-tab-link.exactmetrics-navigation-tab-disabled:hover{border-bottom-color:rgba(0,0,0,0);color:#fff;cursor:default}@media (max-width:959px){.exactmetrics-admin-page .exactmetrics-navigation-tab-link{width:100%;padding:20px 0;color:#fff;font-size:16px;border-top:1px solid #4d3f7a;text-align:right}.exactmetrics-admin-page .exactmetrics-navigation-tab-link:first-child{border-top:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active:first-child+.exactmetrics-navigation-tab-link{border-top:0}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active{display:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link:focus{color:#fff;text-decoration:none}}.exactmetrics-admin-page .exactmetrics-button{background:#6528f5;border-radius:5px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:12px 24px;text-decoration:none;border:0}.exactmetrics-admin-page .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-button:hover{background-color:#37276a;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-disabled{background:#e9e7ee;color:#9087ac}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-secondary{background:#e9e7ee;color:#37276a}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-secondary:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-secondary:hover{background-color:#f4f3f7;color:#37276a}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-green{background:#32a27a;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-green:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-green:hover{background-color:#19865f;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text{background:rgba(0,0,0,0);border:none;color:#6528f5;padding:0;border-radius:0;text-decoration:underline}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text:hover{background:rgba(0,0,0,0);color:#393f4c}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text [class*=monstericon-]{margin-right:10px;min-width:16px;display:inline-block}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text [class*=monstericon-]:first-child{margin-right:0;margin-left:10px}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text.exactmetrics-button-text-dark{color:#210f59}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text.exactmetrics-button-text-dark:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text.exactmetrics-button-text-dark:hover{color:#6528f5}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-red{background:#e43462;border-color:#e43462;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-large{font-size:15px;padding:14px 30px 12px;font-weight:500}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-xl{font-size:20px;padding:23px 67px;font-weight:500}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-xl i{margin-right:10px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-xl{padding-right:45px;padding-left:45px}}.exactmetrics-admin-page .exactmetrics-spaced-top{margin-top:20px}.exactmetrics-green-text{color:#32a27a;font-weight:700}@media (max-width:782px){.wp-responsive-open #wpbody{margin-right:-18px}}.exactmetrics-mobile-nav-trigger{color:#fff;font-size:15px;font-weight:500;display:inline-block;border:none;background:#37276a;padding:7px 18px;line-height:1.7;margin:0;border-radius:5px}@media (min-width:960px){.exactmetrics-mobile-nav-trigger{display:none}}.exactmetrics-mobile-nav-trigger i{color:#fff;margin-right:25px;vertical-align:middle}.exactmetrics-mobile-nav-trigger.exactmetrics-mobile-nav-trigger-open{border-radius:5px 5px 0 0}@media (max-width:959px){.exactmetrics-main-navigation{background:#37276a;height:0;overflow:hidden;position:absolute;right:24px;left:24px;text-align:right;border-radius:0 5px 5px 5px}.exactmetrics-main-navigation.exactmetrics-main-navigation-open{padding:17px 40px;height:auto;-webkit-box-shadow:0 40px 30px rgba(33,15,89,.1);box-shadow:0 40px 30px rgba(33,15,89,.1)}}@media (min-width:782px){.exactmetrics_page .exactmetrics-swal{margin-right:160px}.auto-fold .exactmetrics_page .exactmetrics-swal{margin-right:36px}}@media (min-width:961px){.auto-fold .exactmetrics_page .exactmetrics-swal{margin-right:160px}.folded .exactmetrics_page .exactmetrics-swal{margin-right:36px}}.exactmetrics_page .exactmetrics-swal .swal2-footer{border-top:none;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left;margin-top:0;font-size:15px}.exactmetrics_page .exactmetrics-swal .swal2-footer a{color:#6528f5}.exactmetrics_page .exactmetrics-swal .swal2-footer a:focus,.exactmetrics_page .exactmetrics-swal .swal2-footer a:hover{color:#37276a}.exactmetrics-modal{position:fixed;top:0;right:0;left:0;bottom:0;background:rgba(0,0,0,.8);z-index:99999;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics-modal .exactmetrics-modal-inner{background:#fff;padding:50px;border:1px solid #d6e2ed;text-align:center;width:750px}.exactmetrics-modal .exactmetrics-modal-inner h2{margin-top:0;margin-bottom:0;line-height:1.4}.exactmetrics-modal .exactmetrics-modal-inner p{margin-bottom:0}.exactmetrics-modal .exactmetrics-modal-inner .exactmetrics-modal-buttons{margin-top:50px}.exactmetrics-modal .exactmetrics-modal-inner .exactmetrics-button{margin:0 10px}.exactmetrics-welcome-overlay{position:fixed;top:0;right:0;left:0;bottom:0;z-index:99999999;font-family:inherit;overflow:hidden;background-color:rgba(33,15,89,.9)}.exactmetrics-welcome-overlay .exactmetrics-welcome-overlay-inner{background:#fff;padding:30px;width:70%;margin:0 auto;position:relative;top:10%;height:80%;border-radius:10px;-webkit-box-shadow:0 20px 80px rgba(13,7,36,.5);box-shadow:0 20px 80px rgba(13,7,36,.5)}.exactmetrics-welcome-overlay .exactmetrics-overlay-close{background:none;border:none;position:absolute;top:5px;left:7px;padding:0;color:#777}.exactmetrics-welcome-overlay .exactmetrics-welcome-overlay-content{height:100%}.exactmetrics-welcome-overlay .exactmetrics-welcome-overlay-content iframe{height:100%;width:100%}.swal2-container.exactmetrics-swal-loading{background:#fff;padding:20px;top:112px;height:auto}.swal2-container.exactmetrics-swal-loading.exactmetrics-swal-full-height{top:32px}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal{width:100%;height:100%;border-radius:10px;background:url(../img/loading-background.jpg) no-repeat bottom #f4f3f7;background-size:cover;-webkit-animation-duration:1ms;animation-duration:1ms}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-icon{visibility:hidden;height:0;padding:0}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-header{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-title{font-size:17px;color:#210f59}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-content{color:#9087ac;margin-top:6px;font-size:15px;line-height:1.75;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.swal2-container.exactmetrics-swal-loading .swal2-actions button{display:none}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess{padding:0;background:#f8f6ff}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-icon{visibility:hidden;height:0;width:0;margin:0;padding:0}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal{width:750px;background:none;padding-right:260px;position:relative}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-header{display:block}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-title{font-size:32px;line-height:1.3;color:#210f59;text-align:right}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal #swal2-content{font-size:15px;line-height:1.75;color:#210f59;text-align:right;margin-bottom:20px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal #swal2-content p{font-size:15px;margin:0;font-weight:500}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-actions{margin:0;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled{margin:0;font-size:15px;padding:16px 23px 14px;outline:none}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled .monstericon-long-arrow-right-light{margin-right:14px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled:focus,.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled:hover{border:none;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-confirm{background:#32a27a}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-confirm:focus,.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-confirm:hover{background:#19865f}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-cancel{margin-right:15px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-swal-icons{position:absolute;right:-35px;top:-15px;width:260px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-swal-icons [class^=monstericon-]{position:absolute;color:#6528f5;opacity:.5;font-size:41px;top:114px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-swal-icons [class^=monstericon-]:first-child{font-size:108px;opacity:1;top:-22px;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-swal-icons [class^=monstericon-]:nth-child(2){right:35px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-swal-icons [class^=monstericon-].monstericon-exclamation-em-solid:nth-child(2){right:50px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-swal-icons [class^=monstericon-]:nth-child(3){top:147px;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-swal-icons [class^=monstericon-]:nth-child(4){right:185px}.exactmetrics_page .exactmetrics-swal .swal2-title{line-height:1.2}.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-error,.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-info{border:none;border-radius:0}.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-error:before,.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-info:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f064";font-size:80px;color:#6528f5}.exactmetrics_page .exactmetrics-swal .swal2-icon .swal2-icon-text,.exactmetrics_page .exactmetrics-swal .swal2-icon .swal2-x-mark{display:none}.exactmetrics_page .exactmetrics-swal .swal2-styled{border-radius:5px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:12px 24px;text-decoration:none;border:0}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-confirm{background:#6528f5}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-confirm:focus,.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-confirm:hover{background-color:#37276a;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-cancel{background:#e9e7ee;color:#37276a}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-cancel:focus,.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-cancel:hover{background-color:#f4f3f7;color:#37276a;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .exactmetrics-swal .swal2-popup{border-radius:10px;padding:40px}.exactmetrics-list-check ul{margin:0;list-style:none;padding-right:0}.exactmetrics-list-check li{font-size:15px;margin-top:18px;padding-right:30px;position:relative;color:#fff}.exactmetrics-list-check li:first-child{margin-top:0}.exactmetrics-list-check li:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f045";font-size:15px;margin-left:10px;color:#fff;position:absolute;right:0;top:0}.exactmetrics-settings-input-select-input .multiselect__tags-wrap{position:relative}.exactmetrics-settings-input-select-input .multiselect__tags-wrap:after{content:attr(data-text);display:inline-block;position:relative;color:#9087ac;bottom:0;background:#fff;border-radius:4px;font-size:14px;vertical-align:top;padding:8px 15px}.exactmetrics-settings-input-select-input .multiselect__placeholder{display:none}.multiselect__content-wrapper{right:30px}.exactmetrics-semrush-cta{background:#f4f3f7;border-right:3px solid #6528f5;padding:20px 26px;border-radius:0 3px 3px 0;position:relative}.exactmetrics-semrush-cta br{display:none}.exactmetrics-semrush-cta .exactmetrics-semrush-cta-close{position:absolute;top:12px;left:12px;cursor:pointer;border:0;background:rgba(0,0,0,0);padding:0;margin:0;outline:none}.exactmetrics-semrush-cta .exactmetrics-semrush-cta-title{font-weight:700;font-size:16px;line-height:20px;color:#393f4c;margin:0}.exactmetrics-semrush-cta .exactmetrics-semrush-cta-content{font-weight:400;font-size:14px;color:#393f4c}.exactmetrics-semrush-cta .exactmetrics-button{background:#6528f5;border-radius:3px;font-weight:400;font-size:14px;border-width:0;padding:7px 12px}.exactmetrics-semrush-cta .exactmetrics-button:active,.exactmetrics-semrush-cta .exactmetrics-button:focus,.exactmetrics-semrush-cta .exactmetrics-button:hover{background:#6333d4;outline:none}.exactmetrics-row-highlight{-webkit-animation-name:color;animation-name:color;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-iteration-count:2;animation-iteration-count:2}@-webkit-keyframes color{0%{background-color:#fff}50%{background-color:#509fe2}to{background-color:#fff}}@keyframes color{0%{background-color:#fff}50%{background-color:#509fe2}to{background-color:#fff}}.exactmetrics-about-block{padding:0;background:#fff;margin-top:40px}@media (max-width:782px){.exactmetrics-about-block{padding:0 24px}}.exactmetrics-about-block h3{color:#210f59;font-size:24px;margin:0 0 20px;line-height:1.4;padding-top:25px}.exactmetrics-about-block p{font-size:15px;line-height:1.75;font-weight:500;color:#210f59}.exactmetrics-about-block:after{content:"";display:table;clear:both}div[class*=" exactmetrics-path-about-"] .exactmetrics-container,div[class^=exactmetrics-path-about-] .exactmetrics-container{width:1094px}@media (max-width:782px){div[class*=" exactmetrics-path-about-"] .exactmetrics-container,div[class^=exactmetrics-path-about-] .exactmetrics-container{padding-right:24px;padding-left:24px}}div[class*=" exactmetrics-path-about-"] .exactmetrics-header,div[class*=" exactmetrics-path-about-"] .exactmetrics-navigation-bar,div[class^=exactmetrics-path-about-] .exactmetrics-header,div[class^=exactmetrics-path-about-] .exactmetrics-navigation-bar{padding-right:20px;padding-left:20px}@media (max-width:782px){div[class*=" exactmetrics-path-about-"] .exactmetrics-header,div[class*=" exactmetrics-path-about-"] .exactmetrics-navigation-bar,div[class^=exactmetrics-path-about-] .exactmetrics-header,div[class^=exactmetrics-path-about-] .exactmetrics-navigation-bar{padding-right:0;padding-left:0}}div[class*=" exactmetrics-path-about-"] .exactmetrics-navigation-bar,div[class^=exactmetrics-path-about-] .exactmetrics-navigation-bar{margin-right:-163px}div[class*=" exactmetrics-path-about-"] .exactmetrics-navigation-bar .exactmetrics-container,div[class^=exactmetrics-path-about-] .exactmetrics-navigation-bar .exactmetrics-container{width:auto}div[class*=" exactmetrics-path-about-"] .exactmetrics-addons-list,div[class^=exactmetrics-path-about-] .exactmetrics-addons-list{padding:0 20px}div[class*=" exactmetrics-path-about-"] .exactmetrics-addons-list .exactmetrics-addon,div[class^=exactmetrics-path-about-] .exactmetrics-addons-list .exactmetrics-addon{width:calc(33.3333% - 21px)}@media (max-width:782px){div[class*=" exactmetrics-path-about-"] .exactmetrics-addons-list .exactmetrics-addon,div[class^=exactmetrics-path-about-] .exactmetrics-addons-list .exactmetrics-addon{width:100%}}div[class*=" exactmetrics-path-about-"] .exactmetrics-addon-image,div[class^=exactmetrics-path-about-] .exactmetrics-addon-image{min-height:74px;padding:5px;display:-webkit-box;display:-ms-flexbox;display:flex;height:74px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}div[class*=" exactmetrics-path-about-"] .monstericon-star:before,div[class^=exactmetrics-path-about-] .monstericon-star:before{color:#fdb72c}.exactmetrics-lite-vs-pro-table{padding:0}.exactmetrics-lite-vs-pro-table .exactmetrics-lite-vs-pro-footer{background:#e9e7ee}.exactmetrics-lite-vs-pro-header{text-align:center;padding:40px 0 22px}.exactmetrics-lite-vs-pro-header h1{font-size:22px;margin:0 0 22px}.exactmetrics-features-table{width:100%;border-collapse:collapse;position:relative;margin-bottom:95px}.exactmetrics-features-table tr{position:relative}.exactmetrics-features-table tr:first-child td{border-radius:10px 0 0 0}.exactmetrics-features-table tr:first-child .exactmetrics-features-table-feature-title+td{border-radius:0 10px 0 0}.exactmetrics-features-table tr:first-child:after{display:none}.exactmetrics-features-table tr:after{display:block;border-top:1px solid #bcb7cd;opacity:.5;content:"";position:absolute;right:0;left:40px}.exactmetrics-features-table tbody tr:last-child td{padding:0;background:none}.exactmetrics-features-table tbody tr:last-child:after{display:none}.exactmetrics-features-table td,.exactmetrics-features-table th{width:33.33333%;padding:40px;vertical-align:top}.exactmetrics-features-table td p,.exactmetrics-features-table th p{margin:0}.exactmetrics-features-table th{text-align:right;border-left:none;font-size:24px;line-height:1.4}.exactmetrics-features-table th i{width:40px;height:40px;border-radius:50%;color:#210f59;background-color:rgba(33,15,89,.1);display:inline-block;text-align:center;line-height:40px;font-size:15px;margin-left:30px}.exactmetrics-features-table td{background:#f4f3f7}.exactmetrics-features-table td p{font-size:17px;line-height:1.5}.exactmetrics-features-table td p>span{margin-top:16px;display:block}.exactmetrics-features-table .exactmetrics-features-table-feature-title{background:none;padding-right:0}.exactmetrics-features-table .exactmetrics-features-table-feature-title i{float:right;font-size:23px;color:#6528f5;margin-left:18px}.exactmetrics-features-table .exactmetrics-features-table-feature-title p{font-weight:700;font-size:17px;color:#37276a;line-height:1.5;margin-right:41px}.exactmetrics-features-full:before,.exactmetrics-features-none:before,.exactmetrics-features-partial:before{display:block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f026";font-size:20px;margin-left:10px;color:#d4393d;position:relative;top:2px;margin-bottom:16px}.exactmetrics-features-full:before,.exactmetrics-features-partial:before{content:"\f022";color:#19865f}.exactmetrics-features-table .exactmetrics-lite-vs-pro-footer{padding:40px;text-align:center;border-radius:0 0 10px 10px;border-top:1px solid #bcb7cd}.exactmetrics-features-table .exactmetrics-lite-vs-pro-footer h3{color:#210f59;font-size:17px;max-width:350px;line-height:1.5;margin:0 auto 16px}.exactmetrics-features-table .exactmetrics-lite-vs-pro-footer p{margin-bottom:24px;font-size:15px;line-height:1.75;color:#210f59;max-width:350px;margin-right:auto;margin-left:auto}.exactmetrics-two-column{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-two-column>div{width:50%}.exactmetrics-about-docs-row:after{display:table;clear:both;content:""}.exactmetrics-about-docs-image{width:158px;float:right;margin-left:32px}.exactmetrics-about-docs-image .exactmetrics-bg-img{width:158px;background-color:#fff;border-radius:5px;height:158px;padding-top:0}.exactmetrics-about-docs-image .exactmetrics-bg-img:after{background-position:50%;right:10px;left:10px;top:10px;bottom:10px}.exactmetrics-about-docs-1:after{background-image:url(../img/about-icon-connect.png)}.exactmetrics-about-docs-2:after{background-image:url(../img/about-icon-guide.png)}.exactmetrics-about-docs-3:after{background-image:url(../img/about-icon-gdpr.png)}.exactmetrics-about-docs-4:after{background-image:url(../img/about-icon-addons-em.png)}.exactmetrics-about-docs-5:after{background-image:url(../img/about-icon-ecommerce.png)}.exactmetrics-bg-img.exactmetrics-about-team{padding-top:70%}.exactmetrics-bg-img.exactmetrics-about-team:after{background-image:url(../img/about-team-photo.png)}.exactmetrics-about-docs-text h3{color:#210f59;font-size:17px;line-height:1.5}.exactmetrics-about-docs-text p{margin:16px 0 24px}.exactmetrics-about-page-right-image{float:left;width:48%;text-align:center;margin:0 20px 0 0}@media (max-width:782px){.exactmetrics-about-page-right-image{width:100%;float:none;margin:0 0 20px}}.exactmetrics-about-page-right-image img{width:100%}.exactmetrics-about-page-right-image figcaption{color:#4d3f7a;margin-top:5px}.exactmetrics-about-page-right-image iframe{max-width:100%}.exactmetrics-page-title{padding:32px;line-height:1.3;border-bottom:1px solid #e9e7ee}.exactmetrics-page-title h2{margin:0;font-size:32px;color:#210f59}.exactmetrics-about .exactmetrics-addon-top{padding:40px 40px 24px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.exactmetrics-about .exactmetrics-addon-noicon{margin-bottom:10px}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon{padding-bottom:145px}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon .exactmetrics-addon-message{padding:24px 40px 40px;background:rgba(0,0,0,0)}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-interior{border-top:1px solid #ccc;padding:24px 0 0;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;-webkit-box-align:start;-ms-flex-align:start;align-items:start;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-interior .exactmetrics-addon-status{margin-bottom:24px}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-interior .exactmetrics-addon-action{-ms-flex-item-align:start;align-self:start}.exactmetrics-about .exactmetrics-upsell-row{margin-top:70px;background:rgba(0,0,0,0)}.exactmetrics-about .exactmetrics-upsell-list-item>i{min-width:23px}.exactmetrics-about .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text i{margin-right:14px;font-size:15px}.exactmetrics-bg-img.exactmetrics-em-logo-color{padding-top:8%;width:387px;max-width:100%}@media (max-width:782px){.exactmetrics-bg-img.exactmetrics-em-logo-color{width:133px;padding-top:10%}}.exactmetrics-bg-img.exactmetrics-em-logo-color:after{background-position:50%;background-image:url(../img/em-logo.png)}.exactmetrics-about-page-top{padding:60px 0;background:radial-gradient(64.37% 131.18% at 50.04% 32.71%,hsla(0,0%,100%,.1) 0,hsla(0,0%,100%,0) 100%),rgba(101,40,245,.1);border-bottom:1px solid #e9e7ee;margin-bottom:635px}@media (max-width:782px){.exactmetrics-about-page-top{margin-bottom:0}}.exactmetrics-about-page-top h3{color:#6528f5;margin:0 135px 0 0;font-size:20px;line-height:1.3;font-weight:400}@media (max-width:782px){.exactmetrics-about-page-top h3{margin-right:0}}.exactmetrics-about-page-top h2{max-width:570px;margin-right:135px;margin-top:9px}@media (max-width:782px){.exactmetrics-about-page-top h2{margin-right:0;margin-left:0}}.exactmetrics-about-page-top .exactmetrics-about-top-button{width:750px;max-width:100%;margin-right:135px}@media (max-width:782px){.exactmetrics-about-page-top .exactmetrics-about-top-button{margin-right:0}}.exactmetrics-about-page-top .exactmetrics-about-top-button p{max-width:300px;margin-left:100px}@media (max-width:782px){.exactmetrics-about-page-top .exactmetrics-about-top-button p{margin-left:24px}}.exactmetrics-about-page-top .exactmetrics-about-top-button .exactmetrics-button{float:left;margin-top:10px}@media (max-width:782px){.exactmetrics-about-page-top .exactmetrics-about-top-button .exactmetrics-button{float:none}}.exactmetrics-about-page-top .exactmetrics-container{width:1094px}.exactmetrics-bg-img.exactmetrics-about-getting-started-video{margin-bottom:-635px;padding-top:52%;cursor:pointer}@media (max-width:782px){.exactmetrics-bg-img.exactmetrics-about-getting-started-video{margin-bottom:0}}.exactmetrics-bg-img.exactmetrics-about-getting-started-video:after{background-position:0 100%;background-image:url(../img/about-getting-started-video.png)}.exactmetrics-about-page-top h2{font-size:24px;color:#210f59;line-height:1.4;margin-bottom:20px}@media (max-width:782px){.exactmetrics-about-page-top h2{font-size:20px}}.exactmetrics-about-page-top p{font-size:15px;line-height:1.7;color:#210f59}.exactmetrics-container.exactmetrics-about-middle-title{text-align:center;margin-top:-100px}@media (max-width:782px){.exactmetrics-container.exactmetrics-about-middle-title{margin-top:0;padding:0 24px}}.exactmetrics-container.exactmetrics-about-middle-title p{max-width:500px;margin:0 auto;font-size:15px;line-height:1.75;color:#210f59}.exactmetrics-container.exactmetrics-about-middle-title h2{font-size:24px;color:#210f59;line-height:1.4;margin-bottom:19px}.exactmetrics-admin-page .exactmetrics-wide-purple{background:#6528f5;padding:72px 0;margin-bottom:100px}.exactmetrics-admin-page .exactmetrics-wide-purple .exactmetrics-separator{background:rgba(0,0,0,.2)}.exactmetrics-about-upgrade-box-flex{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:45px}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box{width:334px;padding:65px 93px 56px;background:#210f59;border-radius:10px;color:#fff;text-align:center;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box span{font-size:17px;line-height:1.5;display:inline-block}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box span.exactmetrics-price-large{font-size:48px;line-height:1.3;font-weight:700}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box span.exactmetrics-price-term{font-size:15px;line-height:1.75;opacity:.5}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box .exactmetrics-button{background-color:#fff;color:#210f59;margin-top:27px;font-weight:500}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-checkboxes{padding-right:95px;max-width:650px;width:100%}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-checkboxes h3{color:#fff;font-size:24px;line-height:1.4;font-weight:500;margin-top:17px}.exactmetrics-testimonials-slider{position:relative;padding:0 40px;margin-top:60px}.exactmetrics-testimonials-slides{position:relative;overflow:hidden}.exactmetrics-testimonials-slide{visibility:hidden;position:absolute;top:0;right:0;width:100%;-webkit-transition:.5s;transition:.5s;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-testimonials-slide .exactmetrics-testimonial-image{padding:0 80px 0 60px;-ms-flex-negative:0;flex-shrink:0;margin-top:5px}.exactmetrics-testimonials-slide .exactmetrics-testimonial-image .exactmetrics-bg-img{width:90px;border-radius:50%;height:90px;border:5px solid #37276a;overflow:hidden}.exactmetrics-testimonials-slide .exactmetrics-about-testimonial-avatar-1:after{background-image:url(../img/testimonial-image-1.png)}.exactmetrics-testimonials-slide .exactmetrics-about-testimonial-avatar-2:after{background-image:url(../img/testimonial-image-2.png)}.exactmetrics-testimonials-slide .exactmetrics-about-testimonial-avatar-3:after{background-image:url(../img/testimonial-image-3.jpg)}.exactmetrics-testimonials-slide .exactmetrics-testimonial-text{padding-left:70px}.exactmetrics-testimonials-slide .exactmetrics-testimonial-text p{color:#fff;font-size:20px;line-height:1.5;margin:0 0 20px}.exactmetrics-testimonials-slide .exactmetrics-testimonial-text p.exactmetrics-testimonial-text-author{font-size:16px;line-height:1.75;color:#e9e7ee}.exactmetrics-testimonials-slide.exactmetrics-testimonials-slide-active{visibility:visible;position:static}.exactmetrics-testimonials-slide h2{margin:0}.exactmetrics-testimonials-slide img{width:300px}.exactmetrics-testimonials-slider-control{border:none;background:none;color:#fff;font-size:40px;line-height:1;position:absolute;top:45px;margin-top:-20px;padding:0;cursor:pointer}.exactmetrics-testimonials-slider-control.exactmetrics-testimonials-slider-control-left{right:0}.exactmetrics-testimonials-slider-control.exactmetrics-testimonials-slider-control-left i:before{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.exactmetrics-testimonials-slider-control.exactmetrics-testimonials-slider-control-right{left:0}.exactmetrics-testimonials-slider-control.exactmetrics-testimonials-slider-control-right i:before{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}.exactmetrics-about-documentation{background:#f4f3f7;border-radius:10px;padding:72px 100px;margin:40px 0 95px}@media (max-width:782px){.exactmetrics-about-documentation{margin:40px 0;padding:32px 24px}.exactmetrics-about-documentation .exactmetrics-about-docs-image{float:none}}.exactmetrics-full-width-upsell .exactmetrics-full-width-upsell-inner,.exactmetrics-upsell-row .exactmetrics-upsell-row-inner,.exactmetrics-upsell .exactmetrics-upsell-title .exactmetrics-upsell-title-inner{max-width:1400px;margin:0 auto}.exactmetrics-reports-page .exactmetrics-upsell{border-bottom:1px solid #d6e2ed}.exactmetrics-upsell-row{width:100%;background:rgba(101,40,245,.05)}.exactmetrics-upsell-row .exactmetrics-upsell-row-inner{padding:0 96px}@media (max-width:782px){.exactmetrics-upsell-row .exactmetrics-upsell-row-inner{padding:0 24px}}.exactmetrics-upsell-row h3{margin:0 0 60px;font-size:15px}.exactmetrics-upsell-row .exactmetrics-upsell-list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding-bottom:15px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 31%;flex:1 0 31%;margin-bottom:45px}.exactmetrics-report-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item,.exactmetrics-settings-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item{-webkit-box-flex:1;-ms-flex:1 0 21%;flex:1 0 21%}@media (max-width:782px){.exactmetrics-upsell-row .exactmetrics-upsell-list-item{width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}}.exactmetrics-upsell-row .exactmetrics-upsell-list-item i{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;color:#6528f5;font-size:23px;margin-left:18px;margin-top:6px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text{line-height:1.7;color:#37276a;max-width:232px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;font-weight:500;text-decoration:none}.exactmetrics-report-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text,.exactmetrics-settings-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text{max-width:170px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text{cursor:pointer}.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text:focus,.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text:hover{color:#6528f5}.exactmetrics-full-width-upsell{background:#f7f3fe;min-height:445px;margin-bottom:116px}.exactmetrics-reports-page .exactmetrics-full-width-upsell{margin-bottom:0}@media (max-width:959px){.exactmetrics-full-width-upsell{margin-bottom:48px}}.exactmetrics-full-width-upsell.exactmetrics-full-width-no-space{margin-bottom:0;min-height:380px}.exactmetrics-full-width-upsell.exactmetrics-full-width-no-space+.exactmetrics-full-width-upsell{margin-top:-100px}.exactmetrics-full-width-upsell .exactmetrics-full-width-upsell-inner{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;position:relative}.exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-full-width-upsell-inner{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-full-width-upsell-inner .exactmetrics-upsell-left{padding-right:0;padding-top:100px}.exactmetrics-full-width-upsell h2{color:#210f59;font-size:24px;line-height:1.4}.exactmetrics-full-width-upsell p{font-size:15px;line-height:1.7;color:#210f59;margin:11px 0 0}.exactmetrics-full-width-upsell p.exactmetrics-upsell-pbold{font-weight:700;margin-top:0}.exactmetrics-full-width-upsell a.exactmetrics-green-text{color:#32a27a;font-weight:400}.exactmetrics-full-width-upsell a.exactmetrics-green-text:focus,.exactmetrics-full-width-upsell a.exactmetrics-green-text:hover{color:#19865f;text-decoration:none}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons{margin-top:20px;margin-bottom:72px}@media (max-width:1099px){.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons{margin-bottom:48px}}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons .exactmetrics-button:first-child{margin-left:18px}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons .exactmetrics-button-text .monstericon-arrow-right{font-size:12px;vertical-align:text-top;margin-right:10px}.exactmetrics-upsell-half{position:relative;padding-top:56px}.exactmetrics-upsell-half.exactmetrics-upsell-left{padding-right:96px;padding-top:56px;width:40%}@media (max-width:1099px){.exactmetrics-upsell-half.exactmetrics-upsell-left{width:50%;padding-right:24px}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-left{padding-top:24px}}.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image{max-width:100%;right:0;height:auto;padding-top:67%}.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image:after{background-position:50%;right:-16%;left:-16%;top:-10%;bottom:-10%}@media (min-width:960px){.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image{display:none}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-left{width:100%;padding-left:24px}}.exactmetrics-upsell-half.exactmetrics-upsell-right{padding-right:96px;padding-top:0;width:60%}@media (max-width:1099px){.exactmetrics-upsell-half.exactmetrics-upsell-right{width:50%}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-right{display:none}}.exactmetrics-upsell-half.exactmetrics-upsell-right .exactmetrics-em-upsell-screen{position:absolute;bottom:-140px;right:68px}.exactmetrics-upsell-half h3{color:#6528f5;font-size:20px;line-height:1.3;font-weight:400;margin:0 0 15px}.exactmetrics-upsell a{color:#6528f5}.exactmetrics-upsell a:focus,.exactmetrics-upsell a:hover{color:#37276a}.exactmetrics-upsell .exactmetrics-upsell-title{border-bottom:1px solid #e9e7ee}.exactmetrics-upsell .exactmetrics-upsell-title h2{color:#210f59;font-size:32px;margin-right:100px;margin-top:45px;margin-bottom:35px}@media (max-width:782px){.exactmetrics-upsell .exactmetrics-upsell-title h2{margin-right:24px;line-height:1.4;margin-top:24px;margin-bottom:24px}}.exactmetrics-upsell .exactmetrics-upsell-half h3{font-size:24px;color:#210f59;font-weight:700}.exactmetrics-upsell-bottom{background:#f7f9fd;border-top:1px solid #d6e2ed;padding:36px 50px 30px;position:relative}@media (max-width:767px){.exactmetrics-upsell-bottom{padding-right:20px;padding-left:20px}}.exactmetrics-upsell-bottom .exactmetrics-button-top{position:absolute;top:0;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}@media (max-width:767px){.exactmetrics-upsell-bottom .exactmetrics-button-top{min-width:288px}}.exactmetrics-upsell-bottom img{max-width:100%}.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-upsell-screen,.exactmetrics-screen-image{width:848px;padding-top:0;height:566px}@media (max-width:1099px){.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-upsell-screen,.exactmetrics-screen-image{right:20px}}.exactmetrics-em-ecommerce-upsell-screen:after,.exactmetrics-em-upsell-screen:after,.exactmetrics-screen-image:after{background-position:0 100%;background-image:url(../img/upsell-screen.png)}.exactmetrics-em-logo-text{width:432px;height:56px;margin-bottom:28px;padding-top:0;max-width:100%}@media (max-width:1400px){.exactmetrics-em-logo-text{padding-top:13%;height:auto}}@media (max-width:959px){.exactmetrics-em-logo-text{padding-top:8%}}.exactmetrics-em-logo-text:after{background-image:url(../img/exactmetrics.png)}.exactmetrics-em-addons-upsell-screen,.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-publishers-upsell-screen{bottom:auto;top:-90px}.exactmetrics-em-addons-upsell-screen:after,.exactmetrics-em-ecommerce-upsell-screen:after,.exactmetrics-em-publishers-upsell-screen:after{background-position:0 0;background-image:url(../img/ecommerce-screen.png)}.exactmetrics-em-publishers-upsell-screen:after{background-image:url(../img/publishers-screen.png)}.exactmetrics-em-addons-upsell-screen{margin-bottom:-180px;top:-70px}.exactmetrics-em-addons-upsell-screen:after{background-image:url(../img/addons-help-screen.png)}.exactmetrics-em-search-console-upsell-screen:after{background-image:url(../img/search-console-screen.png)}.exactmetrics-em-real-time-upsell-screen:after{background-image:url(../img/real-time-screen.png)}.exactmetrics-em-site-speed-upsell-screen:after{background-image:url(../img/site-speed-screen.png)}.exactmetrics-em-forms-report-upsell-screen:after{background-image:url(../img/forms-report-screen.png)}.exactmetrics-em-dimensions-report-upsell-screen:after{background-image:url(../img/dimensions-report-screen.png)}.exactmetrics-em-forms-upsell-screen{width:758px;max-width:100%;margin-top:-75px}.exactmetrics-em-forms-upsell-screen:after{background-position:50%;background-image:url(../img/forms-screen.png)}.exactmetrics-em-optimize-upsell-screen{width:758px;max-width:100%;margin-right:-10%}.exactmetrics-em-optimize-upsell-screen:after{background-position:50%;background-image:url(../img/optimize-screen.png)}.exactmetrics-em-dimensions-upsell-screen{width:758px;max-width:100%}.exactmetrics-em-dimensions-upsell-screen:after{background-position:50%;background-image:url(../img/custom-dimensions-screen.png)}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-right:0}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half p{max-width:400px;margin-bottom:28px}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-right:96px}.exactmetrics-icon-background-large{position:absolute;font-size:130px;color:rgba(101,40,245,.05);right:25px;top:25px;line-height:1;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator{font-size:13px;color:#fff;background-color:#32a27a;border-radius:3px;font-weight:500;padding:4px 8px;vertical-align:top;margin-right:10px;display:inline-block;margin-top:-4px;cursor:pointer;text-decoration:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:hover,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:hover{color:#fff;background:#19865f}.exactmetrics-report .exactmetrics-upsell-dismissable{margin-right:-32px;margin-left:-32px;padding-right:32px;padding-left:32px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable{text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable h3{font-size:17px;color:#210f59;line-height:1.5;font-weight:700}.exactmetrics-report .exactmetrics-upsell-dismissable p{font-size:15px;margin-bottom:25px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{width:50%;padding-top:38px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{padding-right:32px;padding-left:32px;width:100%;text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half:first-child p{max-width:524px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-right:40px;color:#9087ac}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-right:0;margin-top:20px}}.exactmetrics-report .exactmetrics-upsell-dismiss{position:absolute;left:20px;top:20px;z-index:10}.exactmetrics-forms-image-wpf-upsell{margin-bottom:-140px;padding-top:85%}@media (max-width:782px){.exactmetrics-forms-image-wpf-upsell{margin-bottom:0}}.exactmetrics-forms-image-wpf-upsell:after{background-position:0 100%;background-image:url(../img/forms-wpforms-upsell.png)}.exactmetrics-upsell-row{margin-top:70px;background:rgba(0,0,0,0)}.exactmetrics-upsell-list-item-text{font-size:15px}.exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text i{margin-right:14px;font-size:15px}.exactmetrics-about-middle-title .exactmetrics-button{margin:0 0 56px}.exactmetrics-bg-img.exactmetrics-about-getting-started-video{margin-bottom:-596px}.exactmetrics-container{width:1094px}.exactmetrics-bottom-buttons{margin:60px auto;text-align:center}.exactmetrics-bottom-buttons .exactmetrics-button{margin:20px 0}.exactmetrics-welcome-header-logo{text-align:center}.exactmetrics-em-logo-icon{padding:0;width:53px;height:46px;display:inline-block}.exactmetrics-em-logo-icon:after{background-position:100%;background-image:url(../img/em-logo.png);background-size:auto 100%}.exactmetrics-em-migration-image{padding-top:55%}.exactmetrics-em-migration-image:after{background-image:url(../img/migration-screen.png)}.exactmetrics-onboarding-wizard-content .subtitle{padding-right:0}.exactmetrics-migration-step{text-align:center}.exactmetrics-migration-step h1{font-size:32px;color:#210f59;line-height:1.25;margin:32px auto 30px;max-width:500px}.exactmetrics-migration-step h2{font-size:24px;line-height:1.25;color:#210f59}.exactmetrics-migration-step p{font-size:16px;line-height:1.75;margin:0 auto;max-width:560px}.exactmetrics-migration-step .exactmetrics-button.exactmetrics-button-large{font-size:18px;line-height:21px;padding:18px 44px}.exactmetrics-migration-step .exactmetrics-button i{margin-right:10px}.exactmetrics-migration-step .exactmetrics-migration-footer{margin-top:50px;color:#210f59;font-size:14px;line-height:17px}.exactmetrics-migration-step .exactmetrics-migration-footer i{margin-left:13px}.exactmetrics-migration-step .exactmetrics-migration-footer i:after{color:#338eef}.exactmetrics-migration-step.exactmetrics-migration-step-upsell{text-align:right;max-width:582px}.exactmetrics-migration-step.exactmetrics-migration-step-upsell h1{margin:16px 0}.exactmetrics-migration-step.exactmetrics-migration-step-upsell p{margin:15px 0;max-width:580px}.exactmetrics-migration-step.exactmetrics-migration-step-upsell .exactmetrics-migration-checkboxes{max-width:100%}.exactmetrics-migration-step.exactmetrics-migration-step-upsell .exactmetrics-paragraph-limit{margin:0 auto}.exactmetrics-migration-step.exactmetrics-migration-step-upsell .exactmetrics-button-text{margin-right:27px;color:#9087ac}.exactmetrics-migration-step.exactmetrics-migration-step-upsell .monstericon-external-link-alt{color:#ac8afa}.exactmetrics-migration-checkboxes{margin:30px auto;max-width:400px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;text-align:right;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.exactmetrics-migration-checkboxes .exactmetrics-migration-checkbox{width:41%;font-size:18px;line-height:1.75;color:#210f59;margin-bottom:4px}.exactmetrics-migration-checkboxes .exactmetrics-migration-checkbox i{margin-left:10px;color:#32a27a}.exactmetrics-highlight{color:#6528f5}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:nth-child(9){background-color:#32a27a}.exactmetrics-onboarding-wizard-step.exactmetrics-onboarding-wizard-step-active:nth-child(9):after{content:"\f045"}.exactmetrics-migration-info{background:#ecf5fe;max-width:500px;display:inline-block;padding:15px;border-radius:5px;color:#210f59;font-size:14px;line-height:1.4;margin-top:15px}button[data-v-bcb9681a]{margin-top:3px}
lite/assets/vue/js/wizard.js CHANGED
@@ -1 +1 @@
1
- (function(t){function e(e){for(var o,i,r=e[0],c=e[1],l=e[2],u=0,g=[];u<r.length;u++)i=r[u],a[i]&&g.push(a[i][0]),a[i]=0;for(o in c)Object.prototype.hasOwnProperty.call(c,o)&&(t[o]=c[o]);d&&d(e);while(g.length)g.shift()();return n.push.apply(n,l||[]),s()}function s(){for(var t,e=0;e<n.length;e++){for(var s=n[e],o=!0,r=1;r<s.length;r++){var c=s[r];0!==a[c]&&(o=!1)}o&&(n.splice(e--,1),t=i(i.s=s[0]))}return t}var o={},a={wizard:0},n=[];function i(e){if(o[e])return o[e].exports;var s=o[e]={i:e,l:!1,exports:{}};return t[e].call(s.exports,s,s.exports,i),s.l=!0,s.exports}i.m=t,i.c=o,i.d=function(t,e,s){i.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:s})},i.r=function(t){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},i.t=function(t,e){if(1&e&&(t=i(t)),8&e)return t;if(4&e&&"object"===typeof t&&t&&t.__esModule)return t;var s=Object.create(null);if(i.r(s),Object.defineProperty(s,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var o in t)i.d(s,o,function(e){return t[e]}.bind(null,o));return s},i.n=function(t){var e=t&&t.__esModule?function(){return t["default"]}:function(){return t};return i.d(e,"a",e),e},i.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},i.p="https://am-plugins.site/";var r=window["exactmetricsjsonp"]=window["exactmetricsjsonp"]||[],c=r.push.bind(r);r.push=e,r=r.slice();for(var l=0;l<r.length;l++)e(r[l]);var d=c;n.push([1,"chunk-vendors","chunk-common"]),s()})({"01cb":function(t,e,s){},"0951":function(t,e,s){"use strict";s.r(e);s("e260"),s("e6cf"),s("cca6"),s("a79d");var o=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-admin-page onboarding-wizard"},[s("the-wizard-header"),s("the-wizard-timeline"),s("div",{staticClass:"exactmetrics-onboarding-wizard-container"},[s("div",{staticClass:"exactmetrics-onboarding-wizard-content"},[s("router-view")],1)]),"success"===t.route?s("OnboardingBottomUpsell"):t._e(),t.blocked?s("div",{staticClass:"exactmetrics-blocked"}):t._e()],1)},a=[],n=(s("a4d3"),s("4de4"),s("4160"),s("b0c0"),s("e439"),s("dbb4"),s("b64b"),s("159b"),s("fc11")),i=s("8c4f"),r=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-onboarding-step-welcome"},[s("onboarding-content-header",{attrs:{title:t.text_header_title,subtitle:t.text_header_subtitle}}),s("div",{staticClass:"exactmetrics-onboarding-wizard-form"},[s("div",{staticClass:"exactmetrics-separator"}),s("form",{on:{submit:function(e){return e.preventDefault(),t.handleSubmit(e)}}},[s("div",{staticClass:"exactmetrics-form-row"},[s("div",{staticClass:"exactmetrics-form-label"},[s("label",{domProps:{textContent:t._s(t.text_category_label)}}),s("p",{staticClass:"exactmetrics-description",domProps:{textContent:t._s(t.text_category_sublabel)}})]),s("settings-input-radio",{attrs:{name:"site_type",options:t.options,auth_disabled:!1}})],1),s("div",{staticClass:"exactmetrics-separator"}),s("div",{staticClass:"exactmetrics-form-row exactmetrics-form-buttons"},[s("button",{staticClass:"exactmetrics-onboarding-button exactmetrics-onboarding-button-large",attrs:{type:"submit",name:"next_step"},domProps:{textContent:t._s(t.text_save)}})])])])],1)},c=[],l=s("561c"),d=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("header",[s("h2",{domProps:{innerHTML:t._s(t.title)}}),t.subtitle?s("p",{staticClass:"subtitle",domProps:{innerHTML:t._s(t.subtitle)}}):t._e()])},u=[],g={name:"OnboardingContentHeader",props:{title:String,subtitle:String}},p=g,h=s("2877"),b=Object(h["a"])(p,d,u,!1,null,null,null),m=b.exports,f=s("6d70"),_={name:"OnboardingStepWelcome",components:{SettingsInputRadio:f["a"],OnboardingContentHeader:m},data:function(){return{text_header_title:Object(l["a"])("Welcome to ExactMetrics!","google-analytics-dashboard-for-wp"),text_header_subtitle:Object(l["a"])("Let's get you set up.","google-analytics-dashboard-for-wp"),text_save:Object(l["a"])("Save and Continue","google-analytics-dashboard-for-wp"),text_category_label:Object(l["a"])("Which category best describes your website?","google-analytics-dashboard-for-wp"),text_category_sublabel:Object(l["a"])("We will recommend the optimal settings for ExactMetrics based on your choice.","google-analytics-dashboard-for-wp"),options:[{value:"business",label:Object(l["a"])("Business Website","google-analytics-dashboard-for-wp")},{value:"publisher",label:Object(l["d"])(Object(l["a"])("Publisher %1$s(Blog)%2$s","google-analytics-dashboard-for-wp"),"<small>","</small>")},{value:"ecommerce",label:Object(l["a"])("Ecommerce","google-analytics-dashboard-for-wp")}]}},methods:{handleSubmit:function(){this.$router.push(this.$wizard_steps[1])}}},w=_,y=Object(h["a"])(w,r,c,!1,null,null,null),v=y.exports,O=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-onboarding-step-authenticate"},[s("onboarding-content-header",{attrs:{title:t.text_header_title,subtitle:t.text_header_subtitle}}),s("div",{staticClass:"exactmetrics-onboarding-wizard-form"},[s("form",[s("div",{staticClass:"exactmetrics-form-row"},[s("onboarding-license")],1),s("div",{staticClass:"exactmetrics-separator"}),t.auth_error?[t.auth.network_manual_ua||t.auth.manual_ua?t._e():s("div",{staticClass:"exactmetrics-notice exactmetrics-notice-error"},[s("div",{staticClass:"exactmetrics-notice-inner"},[s("span",{domProps:{textContent:t._s(t.text_error_auth)}})])]),t.auth.network_manual_ua||t.auth.manual_ua?t._e():s("div",{staticClass:"exactmetrics-separator"}),s("label",{domProps:{textContent:t._s(t.text_manual_label)}}),s("p",{domProps:{innerHTML:t._s(t.text_manual_description)}}),s("input",{staticClass:"exactmetrics-manual-ua",attrs:{id:"exactmetrics-auth-manual-ua-input",type:"text"},domProps:{value:t.is_network?t.auth.network_manual_ua:t.auth.manual_ua},on:{change:t.updateManualUa,input:t.fieldInput}}),t.has_error?s("label",{staticClass:"exactmetrics-error"},[s("i",{staticClass:"monstericon-warning-triangle"}),s("span",{domProps:{innerHTML:t._s(t.has_error)}})]):t._e(),s("div",{staticClass:"exactmetrics-separator"}),s("div",{staticClass:"exactmetrics-form-row exactmetrics-form-buttons"},[s("button",{class:t.manual_button_class,attrs:{type:"submit",name:"next_step"},domProps:{textContent:t._s(t.text_save)},on:{click:function(e){return e.preventDefault(),t.handleSubmit(e)}}})])]:[s("onboarding-authenticate",{attrs:{label:t.text_authenticate_label,description:t.text_authenticate_description},on:{nextstep:t.handleSubmit}})]],2)])],1)},x=[],j=(s("d3b7"),s("e25e"),s("ac1f"),s("3ca3"),s("841c"),s("ddb0"),s("2b3d"),s("2f62")),k=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-onboarding-license-lite"},[s("div",{staticClass:"exactmetrics-separator"}),s("label",{domProps:{textContent:t._s(t.text_license_label)}}),s("div",{staticClass:"settings-input settings-input-license"},[s("p",{domProps:{innerHTML:t._s(t.text_license_description_1)}}),s("p",{domProps:{innerHTML:t._s(t.text_license_description_2)}}),s("a",{staticClass:"exactmetrics-onboarding-button exactmetrics-onboarding-button-regular",attrs:{href:t.$getUpgradeUrl("onboarding","license"),target:"_blank"},domProps:{textContent:t._s(t.text_upgrade_button)}})])])},C=[];function P(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,o)}return s}function $(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?P(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):P(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var S={name:"OnboardingLicense",computed:$({},Object(j["b"])({license:"$_license/license",license_network:"$_license/license_network",auth:"$_auth/auth"})),data:function(){return{text_license_label:Object(l["a"])("License Key","google-analytics-dashboard-for-wp"),text_license_description_1:Object(l["d"])(Object(l["a"])("You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s","google-analytics-dashboard-for-wp"),"<strong>","</strong>",'<span class="exactmetrics-bg-img exactmetrics-smile"></span>'),text_license_description_2:Object(l["d"])(Object(l["a"])("As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout.","google-analytics-dashboard-for-wp"),'<span class="exactmetrics-highlighted-text">',"</span>"),text_upgrade_button:Object(l["a"])("Unlock All Features and Upgrade to Pro","google-analytics-dashboard-for-wp")}}},E=S,T=Object(h["a"])(E,k,C,!1,null,null,null),M=T.exports,A=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-settings-input exactmetrics-settings-input-authenticate"},[!t.auth.network_ua||t.is_network||t.auth.ua||t.auth.v4?t._e():s("settings-network-notice",[s("strong",{domProps:{textContent:t._s(t.text_auth_network)}}),s("span",{domProps:{textContent:t._s(t.text_auth_network_2)}})]),(t.is_network?t.auth.network_ua||t.auth.network_v4:t.auth.ua||t.auth.v4)?s("div",{staticClass:"exactmetrics-auth-info"},[s("span",{staticClass:"exactmetrics-dark",domProps:{textContent:t._s(t.text_website_profile)}}),s("p",[s("span",{domProps:{textContent:t._s(t.text_active_profile)}}),t._v(": "),s("span",{domProps:{textContent:t._s(t.is_network?t.auth.network_viewname:t.auth.viewname)}})]),s("div",[s("div",{staticClass:"exactmetrics-auth-actions"},[s("button",{staticClass:"exactmetrics-onboarding-button exactmetrics-onboarding-button-large",domProps:{textContent:t._s(t.text_button_reconnect)},on:{click:t.doReAuth}}),s("button",{staticClass:"exactmetrics-text-button exactmetrics-pull-right",attrs:{type:"submit"},on:{click:function(e){return e.preventDefault(),t.submitForm(e)}}},[s("span",{domProps:{textContent:t._s(t.text_skip)}}),s("i",{staticClass:"monstericon-arrow-right"})])])])]):s("div",[s("span",{staticClass:"exactmetrics-dark",domProps:{textContent:t._s(t.label)}}),s("p",{domProps:{innerHTML:t._s(t.description)}}),s("button",{staticClass:"exactmetrics-onboarding-button exactmetrics-onboarding-button-large",domProps:{textContent:t._s(t.text_button_connect)},on:{click:t.doAuth}})])],1)},z=[],L=s("b333");function D(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,o)}return s}function W(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?D(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):D(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var I={name:"OnboardingAuthenticate",components:{SettingsNetworkNotice:L["a"]},props:{label:String,description:String},data:function(){return{is_network:this.$mi.network,text_button_connect:Object(l["a"])("Connect ExactMetrics","google-analytics-dashboard-for-wp"),text_button_reconnect:Object(l["a"])("Reconnect ExactMetrics","google-analytics-dashboard-for-wp"),text_website_profile:Object(l["a"])("Website profile","google-analytics-dashboard-for-wp"),text_active_profile:Object(l["a"])("Active profile","google-analytics-dashboard-for-wp"),text_auth_network:Object(l["a"])("Your website profile has been set at the network level of your WordPress Multisite.","google-analytics-dashboard-for-wp"),text_auth_network_2:Object(l["a"])("If you would like to use a different profile for this subsite, you can authenticate below.","google-analytics-dashboard-for-wp"),text_skip:Object(l["a"])("Skip and Keep Connection","google-analytics-dashboard-for-wp")}},computed:W({},Object(j["b"])({license:"$_license/license",license_network:"$_license/license_network",auth:"$_auth/auth"}),{iconClass:function(){var t="monstericon-arrow";return this.showButtons&&(t+=" monstericon-down"),t}}),methods:{submitForm:function(){this.$emit("nextstep",!0)},doAuth:function(t){t.preventDefault();var e=this;this.$swal({customContainerClass:"exactmetrics-swal exactmetrics-swal-loading",type:"info",title:Object(l["a"])("Authenticating","google-analytics-dashboard-for-wp"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){e.$swal.showLoading(),e.$addCustomLoader()}}),this.$store.dispatch("$_auth/doAuth",this.is_network).then((function(t){t.data.redirect?window.location=t.data.redirect:e.$swal({type:"error",title:Object(l["a"])("Error","google-analytics-dashboard-for-wp"),html:t.data.message,confirmButtonText:Object(l["a"])("Ok","google-analytics-dashboard-for-wp")})}))},doReAuth:function(t){t.preventDefault();var e=this;this.$swal({customContainerClass:"exactmetrics-swal exactmetrics-swal-loading",type:"info",title:Object(l["a"])("Re-Authenticating","google-analytics-dashboard-for-wp"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){e.$swal.showLoading(),e.$addCustomLoader()}}),this.$store.dispatch("$_auth/doReAuth",this.is_network).then((function(t){t.data.redirect?window.location=t.data.redirect:e.$swal({type:"error",title:Object(l["a"])("Error","google-analytics-dashboard-for-wp"),html:t.data.message,confirmButtonText:Object(l["a"])("Ok","google-analytics-dashboard-for-wp")})}))}}},U=I,R=Object(h["a"])(U,A,z,!1,null,null,null),H=R.exports,F=s("f7fe"),B=s.n(F);function G(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,o)}return s}function K(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?G(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):G(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var N={name:"OnboardingStepWelcome",components:{OnboardingAuthenticate:H,OnboardingLicense:M,OnboardingContentHeader:m},data:function(){return{text_header_title:Object(l["a"])("Connect ExactMetrics to Your Website","google-analytics-dashboard-for-wp"),text_header_subtitle:Object(l["a"])("ExactMetrics connects Google Analytics to WordPress and shows you stats that matter.","google-analytics-dashboard-for-wp"),text_authenticate_label:Object(l["a"])("Connect Google Analytics + WordPress","google-analytics-dashboard-for-wp"),text_authenticate_description:Object(l["a"])("You will be taken to the ExactMetrics website where you'll need to connect your Analytics account.","google-analytics-dashboard-for-wp"),text_error_auth:Object(l["a"])("Whoops, something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually.","google-analytics-dashboard-for-wp"),text_manual_label:Object(l["a"])("Manually enter your UA code","google-analytics-dashboard-for-wp"),text_manual_description:Object(l["a"])("Warning: If you use a manual UA code, you won't be able to use any of the reporting and some of the tracking features. Your UA code should look like UA-XXXXXX-XX where the X's are numbers.","google-analytics-dashboard-for-wp"),text_save:Object(l["a"])("Save and Continue","google-analytics-dashboard-for-wp"),is_network:this.$mi.network,has_error:!1,auth_error:!1,manual_valid:!0}},computed:K({},Object(j["b"])({auth:"$_auth/auth"}),{manual_button_class:function(){var t="exactmetrics-onboarding-button exactmetrics-onboarding-button-large";return this.manual_valid||(t+=" exactmetrics-button-disabled"),t}}),methods:{fieldInput:B()((function(t){this.updateManualUa(t)}),500),handleSubmit:function(){if(this.auth_error&&""===this.auth.manual_ua&&""===this.auth.network_manual_ua)return this.manual_valid=!1,void(this.has_error=Object(l["a"])("UA code can't be empty","google-analytics-dashboard-for-wp"));this.auth_error&&!this.manual_valid||this.$router.push(this.$wizard_steps[2])},updateManualUa:function(t){var e=this;e.$swal({type:"info",title:Object(l["a"])("Saving UA code...","google-analytics-dashboard-for-wp"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){e.$swal.showLoading()}}),e.has_error=!1,e.manual_valid=!1,this.$store.dispatch("$_auth/updateManualUa",{ua:t.target.value,network:this.is_network}).then((function(s){!1===s.success?(e.has_error=s.data.error,e.$swal.close(),t.target.value=""):(e.has_error=!1,e.manual_valid=!0,e.$swal.close())}))}},mounted:function(){if("undefined"!==typeof URLSearchParams){var t=new URLSearchParams(window.location.search);if(t){var e=t.get("mi-auth-error");"1"!==e&&"2"!==e||(this.auth_error=parseInt(e),this.auth.manual_ua&&(this.manual_valid=!0))}}}},Y=N,q=Object(h["a"])(Y,O,x,!1,null,null,null),V=q.exports,X=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-onboarding-step-recommended-settings"},[s("onboarding-content-header",{attrs:{title:t.text_header_title,subtitle:t.text_header_subtitle}}),s("div",{staticClass:"exactmetrics-onboarding-wizard-form"},[s("form",{attrs:{action:"",method:"post"},on:{submit:function(e){return e.preventDefault(),t.handleSubmit(e)}}},[s("div",{staticClass:"exactmetrics-separator"}),s("settings-input-checkbox",{attrs:{label:t.text_events_label,description:t.text_events_description,tooltip:t.text_events_tooltip,faux:!0,faux_tooltip:t.text_events_faux_tooltip}}),s("div",{staticClass:"exactmetrics-separator"}),s("settings-input-checkbox",{attrs:{label:t.text_link_attribution_label,description:t.text_link_attribution_description,tooltip:t.text_link_attribution_tooltip,faux:!0,faux_tooltip:t.text_link_attribution_faux_tooltip}}),s("div",{staticClass:"exactmetrics-separator"}),s("settings-input-text",{attrs:{default_value:"doc,pdf,ppt,zip,xls,docx,pptx,xlsx",name:"extensions_of_files",label:t.text_extensions_of_files_label,description:t.text_extensions_of_files_description,tooltip:t.text_extensions_of_files_tooltip}}),s("div",{staticClass:"exactmetrics-separator"}),s("p",[s("label",{domProps:{textContent:t._s(t.text_affiliate_label)}}),s("span",{staticClass:"exactmetrics-sublabel",domProps:{innerHTML:t._s(t.text_affiliate_repeater_description)}}),s("settings-info-tooltip",{attrs:{content:t.text_affiliate_tooltip_content}})],1),s("settings-input-repeater",{attrs:{structure:t.repeater_structure,name:"affiliate_links",data:t.settings["affiliate_links"]}}),s("div",{staticClass:"exactmetrics-separator"}),s("settings-input-select",{attrs:{options:t.user_roles,forced:t.user_roles_manage_options,multiple:!0,name:"view_reports",label:t.text_permissions_view_label,description:t.text_permissions_view_description,tooltip:t.text_permissions_view_tooltip,addtext:t.text_add_role}}),s("div",{staticClass:"exactmetrics-separator"}),s("settings-input-checkbox",{attrs:{"value-on":"all","value-off":"none",name:"automatic_updates",label:t.text_updates_label,description:t.text_updates_description,tooltip:t.text_updates_tooltip}}),s("div",{staticClass:"exactmetrics-separator"}),s("onboarding-improve"),s("div",{staticClass:"exactmetrics-form-row exactmetrics-form-buttons"},[s("button",{staticClass:"exactmetrics-onboarding-button exactmetrics-onboarding-button-large",attrs:{type:"submit",name:"next_step"},domProps:{textContent:t._s(t.text_save)}})])],1)])],1)},Z=[],J=s("088d"),Q=s("c472"),tt=s("6ffa"),et=s("93ec"),st=s("aa9f"),ot=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",[s("settings-input-checkbox",{attrs:{name:"anonymous_data",label:t.text_anonymous_label,description:t.text_anonymous_description,tooltip:t.text_anonymous_tooltip}}),s("div",{staticClass:"exactmetrics-separator"})],1)},at=[],nt={name:"OnboardingImprove",components:{SettingsInputCheckbox:J["a"]},data:function(){return{text_anonymous_label:Object(l["a"])("Help Us Improve","google-analytics-dashboard-for-wp"),text_anonymous_description:Object(l["a"])("Help us better understand our users and their website needs.","google-analytics-dashboard-for-wp"),text_anonymous_tooltip:Object(l["d"])(Object(l["a"])("If enabled ExactMetrics will send some information about your WordPress site like what plugins and themes you use and which ExactMetrics settings you use to us so that we can improve our product. For a complete list of what we send and what we use it for, %1$svisit our website.%2$s","google-analytics-dashboard-for-wp"),'<a target="_blank" href="'+this.$getUrl("onboarding-wizard","usage-tracking","https://www.exactmetrics.com/docs/usage-tracking/")+'">',"</a>")}}},it=nt,rt=Object(h["a"])(it,ot,at,!1,null,null,null),ct=rt.exports;function lt(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,o)}return s}function dt(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?lt(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):lt(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var ut={name:"OnboardingStepRecommendedSettings",components:{OnboardingImprove:ct,SettingsInputSelect:st["a"],SettingsInfoTooltip:et["a"],SettingsInputRepeater:tt["a"],SettingsInputText:Q["a"],SettingsInputCheckbox:J["a"],OnboardingContentHeader:m},data:function(){return{text_header_title:Object(l["a"])("Recommended Settings","google-analytics-dashboard-for-wp"),text_header_subtitle:Object(l["a"])("ExactMetrics recommends the following settings based on your configuration.","google-analytics-dashboard-for-wp"),text_events_label:Object(l["a"])("Events Tracking","google-analytics-dashboard-for-wp"),text_events_description:Object(l["a"])("Must have for all click tracking on site.","google-analytics-dashboard-for-wp"),text_events_tooltip:Object(l["a"])("ExactMetrics uses an advanced system to automatically detect all outbound links, download links, affiliate links, telephone links, mail links, and more automatically. We do all the work for you so you don't have to write any code.","google-analytics-dashboard-for-wp"),text_link_attribution_label:Object(l["a"])("Enhanced Link Attribution","google-analytics-dashboard-for-wp"),text_link_attribution_description:Object(l["a"])("Improves the accuracy of your In-Page Analytics.","google-analytics-dashboard-for-wp"),text_link_attribution_tooltip:Object(l["a"])("ExactMetrics will automatically help Google determine which links are unique and where they are on your site so that your In-Page Analytics reporting will be more accurate.","google-analytics-dashboard-for-wp"),text_updates_label:Object(l["a"])("Install Updates Automatically","google-analytics-dashboard-for-wp"),text_updates_description:Object(l["a"])("Get the latest features, bug fixes, and security updates as they are released.","google-analytics-dashboard-for-wp"),text_updates_tooltip:Object(l["a"])("To ensure you get the latest bug fixes and security updates and avoid needing to spend time logging into your WordPress site to update ExactMetrics, we offer the ability to automatically have ExactMetrics update itself.","google-analytics-dashboard-for-wp"),text_extensions_of_files_label:Object(l["a"])("File Download Tracking","google-analytics-dashboard-for-wp"),text_extensions_of_files_description:Object(l["a"])("Helps you see file downloads data.","google-analytics-dashboard-for-wp"),text_extensions_of_files_tooltip:Object(l["a"])("ExactMetrics will automatically track downloads of common file types from links you have inserted onto your website. For example: want to know how many of your site's visitors have downloaded a PDF or other file you offer your visitors to download on your site? ExactMetrics makes this both easy, and code-free! You can customize the file types to track at any time from our settings panel.","google-analytics-dashboard-for-wp"),repeater_structure:[{name:"path",label:Object(l["d"])(Object(l["a"])("Path (example: %s)","google-analytics-dashboard-for-wp"),"/go/"),pattern:/^\/\S+$/,error:Object(l["a"])("Path has to start with a / and have no spaces","google-analytics-dashboard-for-wp")},{name:"label",label:Object(l["d"])(Object(l["a"])("Label (example: %s)","google-analytics-dashboard-for-wp"),"aff"),pattern:/^\S+$/,error:Object(l["a"])("Label can't contain any spaces","google-analytics-dashboard-for-wp")}],text_affiliate_repeater_description:Object(l["a"])("Helps you increase affiliate revenue.","google-analytics-dashboard-for-wp"),text_affiliate_tooltip_content:Object(l["a"])("ExactMetrics will automatically help you track affiliate links that use internal looking urls like example.com/go/ or example.com/refer/. You can add custom affiliate patterns on our settings panel when you finish the onboarding wizard.","google-analytics-dashboard-for-wp"),text_affiliate_label:Object(l["a"])("Affiliate Link Tracking","google-analytics-dashboard-for-wp"),text_permissions_view_label:Object(l["a"])("Who Can See Reports","google-analytics-dashboard-for-wp"),text_permissions_view_description:Object(l["a"])("These user roles will be able to access ExactMetrics' reports in the WordPress admin area.","google-analytics-dashboard-for-wp"),text_permissions_view_tooltip:Object(l["a"])("Users that have at least one of these roles will be able to view the reports, along with any user with the manage_options capability.","google-analytics-dashboard-for-wp"),text_save:Object(l["a"])("Save and continue","google-analytics-dashboard-for-wp"),text_events_faux_tooltip:Object(l["a"])("Events Tracking is enabled the moment you set up ExactMetrics","google-analytics-dashboard-for-wp"),text_link_attribution_faux_tooltip:Object(l["a"])("Enhanced Link Attribution is enabled the moment you set up ExactMetrics","google-analytics-dashboard-for-wp"),text_add_role:Object(l["a"])("+ Add Role","google-analytics-dashboard-for-wp")}},mounted:function(){this.turnOnAutoUpdatesOption(),this.turnOnUsageTrackingOption()},methods:{handleSubmit:function(){this.$router.push(this.$wizard_steps[3])},turnOnAutoUpdatesOption:function(){this.$store.dispatch("$_settings/updateSettings",{name:"automatic_updates",value:"all"})},turnOnUsageTrackingOption:function(){this.$store.dispatch("$_settings/updateSettings",{name:"anonymous_data",value:"all"})}},computed:dt({},Object(j["b"])({settings:"$_settings/settings"}),{user_roles:function(){var t=[];for(var e in this.$mi.roles)t.push({label:this.$mi.roles[e],value:e});return t},user_roles_manage_options:function(){var t=[];for(var e in this.$mi.roles_manage_options)t.push({label:this.$mi.roles_manage_options[e],value:e});return t}})},gt=ut,pt=Object(h["a"])(gt,X,Z,!1,null,null,null),ht=pt.exports,bt=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-onboarding-step-recommended-addons"},[s("onboarding-content-header",{attrs:{title:t.text_header_title,subtitle:t.text_header_subtitle}}),s("div",{staticClass:"exactmetrics-onboarding-wizard-form"},[s("div",{staticClass:"exactmetrics-grey-area"},[s("div",{staticClass:"exactmetrics-separator"}),t._l(t.adddonList,(function(t,e){return s("div",{key:e},[s("onboarding-addon",{attrs:{feature:t}}),s("div",{staticClass:"exactmetrics-separator"})],1)})),s("button",{staticClass:"exactmetrics-onboarding-button exactmetrics-onboarding-button-large",attrs:{type:"button",name:"next_step"},domProps:{textContent:t._s(t.text_save)},on:{click:function(e){return e.preventDefault(),t.continueNextStep(e)}}}),s("a",{staticClass:"exactmetrics-skip-addons",attrs:{href:"#",title:""},on:{click:function(e){return e.preventDefault(),t.skipAddons()}}},[s("span",[t._v("Skip for Now")]),s("svg",{attrs:{width:"16",height:"9",viewBox:"0 0 16 9",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[s("path",{attrs:{d:"M11.1289 3.34375H0.546875C0.300781 3.34375 0.125 3.55469 0.125 3.76562V5.73438C0.125 5.98047 0.300781 6.15625 0.546875 6.15625H11.1289V7.80859C11.1289 8.54688 12.043 8.93359 12.5703 8.40625L15.5938 5.34766C15.9453 5.03125 15.9453 4.50391 15.5938 4.1875L12.5703 1.12891C12.043 0.601562 11.1289 0.988281 11.1289 1.72656V3.34375Z",fill:"#586074"}})])])],2)])],1)},mt=[],ft=(s("25f0"),s("96cf"),s("c964"));s("e01a"),s("d28b");function _t(t){return _t="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"===typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},_t(t)}function wt(t){return wt="function"===typeof Symbol&&"symbol"===_t(Symbol.iterator)?function(t){return _t(t)}:function(t){return t&&"function"===typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":_t(t)},wt(t)}var yt=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-features exactmetrics-flex"},[s("div",{staticClass:"exactmetrics-feat-content"},[s("p",[t._v(t._s(t.feature.data.title))]),s("p",[t._v(t._s(t.feature.data.description))])]),s("div",{staticClass:"exactmetrics-feat-checkbox"},[t.feature.data.faux?s("label",{staticClass:"exactmetrics-checkbox-round"},[s("input",{staticClass:"faux",attrs:{id:t.feature.id,type:"checkbox",checked:"",disabled:""}}),s("span",{staticClass:"checkmark",attrs:{id:"checkmark-loader-"+t.feature.id}})]):t.feature.data.checked?s("label",{staticClass:"exactmetrics-checkbox-round"},[s("div",{staticClass:"loader",attrs:{id:"loader-"+t.feature.id}}),s("input",{staticClass:"addon-checkbox",attrs:{id:t.feature.id,type:"checkbox",checked:"",name:t.feature.id},on:{click:function(e){return e.preventDefault(),t.toggleCheck(e)}}}),s("span",{staticClass:"checkmark",attrs:{id:"checkmark-loader-"+t.feature.id}})]):s("label",{staticClass:"exactmetrics-checkbox-round"},[s("div",{staticClass:"loader",attrs:{id:"loader-"+t.feature.id}}),s("input",{staticClass:"addon-checkbox",attrs:{id:t.feature.id,type:"checkbox",name:t.feature.id},on:{click:function(e){return e.preventDefault(),t.toggleCheck(e)}}}),s("span",{staticClass:"checkmark remove",attrs:{id:"checkmark-loader-"+t.feature.id}})])])])},vt=[];function Ot(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,o)}return s}function xt(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?Ot(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):Ot(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var jt={name:"OnboardingAddon",props:{feature:Object,installed_addons:Object},data:function(){return{}},computed:xt({},Object(j["b"])({addons:"$_addons/addons"})),methods:{toggleCheck:function(t){var e=t.target.nextElementSibling;e.classList.toggle("remove"),t.target.toggleAttribute("checked")}}},kt=jt,Ct=Object(h["a"])(kt,yt,vt,!1,null,null,null),Pt=Ct.exports;function $t(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,o)}return s}function St(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?$t(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):$t(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var Et={name:"OnboardingStepRecommendedFeatures",components:{OnboardingContentHeader:m,OnboardingAddon:Pt},data:function(){return{text_header_title:Object(l["a"])("Which website features would you like to enable?","google-analytics-dashboard-for-wp"),text_header_subtitle:Object(l["a"])("We’ve already selected our recommended features based on your site. ","google-analytics-dashboard-for-wp"),text_other_addons:Object(l["a"])("Other Addons","google-analytics-dashboard-for-wp"),text_other_addons_button:Object(l["a"])("View all ExactMetrics addons","google-analytics-dashboard-for-wp"),text_save:Object(l["a"])("Continue","google-analytics-dashboard-for-wp")}},computed:St({},Object(j["b"])({settings:"$_settings/settings",addons:"$_addons/addons"}),{adddonList:function(){return this.addonState(this.addons)}}),mounted:function(){localStorage.removeItem("activated_addons")},methods:{featuresList:function(){var t=[{id:"standard",standard:{addons:"standard"},data:{feature:"standard",title:Object(l["a"])("Standard Analytics & Reports","google-analytics-dashboard-for-wp"),description:Object(l["a"])("Get the reports and stats that matter right inside your WordPress Dashboard.","google-analytics-dashboard-for-wp"),faux:!0}},{id:"enhanced_link",enhanced_link:{addons:"enhanced-link"},data:{feature:"enhanced-link",title:Object(l["a"])("Enhanced Link Attribution","google-analytics-dashboard-for-wp"),description:Object(l["a"])("Helps you see what links your users are clicking on your site.","google-analytics-dashboard-for-wp"),faux:!0}},{id:"aioseo",aioseo:{addons:"aioseo"},data:{feature:"aioseo",title:Object(l["a"])("All In One SEO Toolkit","google-analytics-dashboard-for-wp"),description:Object(l["a"])("The best WordPress SEO plugin that works with ExactMetrics to boost your rankings.","google-analytics-dashboard-for-wp"),checked:!0}},{id:"wpforms_lite",wpforms_lite:{addons:"wpforms-lite"},data:{feature:"wpforms-lite",title:Object(l["a"])("Smart Form Builder by WPForms","google-analytics-dashboard-for-wp"),description:Object(l["a"])("The most popular WordPress form plugin, trusted by over 5 million websites. Easily create contact forms, payment forms, surveys and more.","google-analytics-dashboard-for-wp"),checked:!0}},{id:"eu_compliance",eu_compliance:{addons:"eu-compliance"},data:{feature:"eu-compliance",title:Object(l["a"])("Privacy Compliance Addon","google-analytics-dashboard-for-wp"),description:Object(l["a"])("Help Google Analytics become compliant with internet privacy laws like GDPR, PECR, and CCPA.","google-analytics-dashboard-for-wp")}},{id:"advanced_reports",advanced_reports:{addons:["dimensions","forms","ecommerce","page-insights"]},data:{feature:["dimensions","forms","ecommerce","page-insights"],title:Object(l["a"])("Advanced Reports","google-analytics-dashboard-for-wp"),description:Object(l["a"])("Get access to advanced reports inside WordPress including search keywords report, real-time analytics dashboard, publishers / eCommerce report, custom dimensions, and more.","google-analytics-dashboard-for-wp")}},{id:"ecommerce",ecommerce:{addons:"ecommerce"},data:{feature:"ecommerce",title:Object(l["a"])("eCommerce Tracking","google-analytics-dashboard-for-wp"),description:Object(l["a"])("Instantly enable enhanced eCommerce tracking, so you can measure conversions, sales, and revenue stats. Works with WooCommerce, Easy Digital Downloads, MemberPress, and more.","google-analytics-dashboard-for-wp")}},{id:"advanced_tracking",advanced_tracking:{addons:["dimensions","forms"]},data:{feature:["dimensions","forms"],title:Object(l["a"])("20+ Advanced Tracking","google-analytics-dashboard-for-wp"),description:Object(l["a"])("Get access to advanced tracking features like form conversion tracking, author tracking, custom dimensions, scroll tracking, and more.","google-analytics-dashboard-for-wp")}},{id:"google_optimize",google_optimize:{addons:"google-optimize"},data:{feature:"google-optimize",title:Object(l["a"])("Advanced Growth Tools","google-analytics-dashboard-for-wp"),description:Object(l["a"])("Get access to advanced growth tools such as popular posts addon, A/B testing tool, smart URL builder, and more.","google-analytics-dashboard-for-wp")}},{id:"media",media:{addons:"media"},data:{feature:"media",title:Object(l["a"])("Media Tracking","google-analytics-dashboard-for-wp"),description:Object(l["a"])("Track how your users interact with videos on your website.","google-analytics-dashboard-for-wp")}}];return t},skipAddons:function(){this.$router.push(this.$wizard_steps[4])},addonState:function(t){for(var e=this.featuresList(),s=0;s<e.length;s++){var o=e[s].data.feature;if("standard"!==o&&"enhanced-link"!==o&&("string"===typeof o&&t[o]&&(t[o].active?e[s].data.faux=!0:t[o].installed&&(e[s].data.checked=!0)),"object"===wt(o))){var a=o.length,n=[],i=[];for(var r in o){var c=o[r];t[c]&&(t[c].active?(i.push(c),n.push(c)):t[c].installed&&n.push(c))}a===i.length?e[s].data.faux=!0:a===n.length&&(e[s].data.checked=!0)}}return e},continueNextStep:function(){var t=Object(ft["a"])(regeneratorRuntime.mark((function t(e){var s,o,a,n,i,r,c,d,u,g,p,h,b,m,f,_,w,y,v,O,x,j,k,C,P,$;return regeneratorRuntime.wrap((function(t){while(1)switch(t.prev=t.next){case 0:for(s=this,o=this.featuresList(),a=document.querySelectorAll(".addon-checkbox"),n=[],i=0;i<a.length;i++)a[i].hasAttribute("checked")&&(r=a[i].name,n.push(r));for(c in n)d=n[c],u="checkmark-loader-"+d,g=document.getElementById(u),g&&(g.style.visibility="hidden"),p="loader-"+d,h=document.getElementById(p),h&&(h.style.display="block");b=[],m=[],f=0;case 9:if(!(f<o.length)){t.next=36;break}t.t0=regeneratorRuntime.keys(n);case 11:if((t.t1=t.t0()).done){t.next=33;break}if(_=t.t1.value,w=n[_],!o[f].hasOwnProperty(w)){t.next=31;break}if(e.target.setAttribute("disabled",!0),e.target.innerHTML="Please Wait...",y=document.querySelector(".exactmetrics-skip-addons"),y.style.visibility="hidden",v="checkmark-loader-"+w,O=document.getElementById(v),O&&(O.style.visibility="hidden"),x="loader-"+w,j=document.getElementById(x),j&&(j.style.display="block"),k=document.getElementById(w),C=o[f][w].addons,"wpforms-lite"!==C&&"aioseo"!==C){t.next=31;break}return P=this.addons[C],t.next=31,s.executeAddon(P,C,j,O,k,m,b);case 31:t.next=11;break;case 33:f++,t.next=9;break;case 36:0===m.length?(localStorage.setItem("activated_addons",b),void 0!==this.$wizard_steps[4]?this.$router.push(this.$wizard_steps[4]):this.$router.push({name:"success"})):(console.log("===================================================================="),console.log("ExactMetrics Onboarding Wizard Debug"),console.log("Following addons were not installed:"),console.log(m.toString()),console.log("===================================================================="),s.$swal({type:"error",title:Object(l["a"])("Error Processing","google-analytics-dashboard-for-wp"),text:Object(l["a"])("There was an error while processing some features. Please try again or you can skip this process for now","google-analytics-dashboard-for-wp"),confirmButtonText:Object(l["a"])("Ok","google-analytics-dashboard-for-wp")}),e.target.removeAttribute("disabled"),e.target.innerHTML="Continue",$=document.querySelector(".exactmetrics-skip-addons"),$.style.visibility="visible");case 37:case"end":return t.stop()}}),t,this)})));function e(e){return t.apply(this,arguments)}return e}(),executeAddon:function(){var t=Object(ft["a"])(regeneratorRuntime.mark((function t(e,s,o,a,n,i,r){var c,l,d,u;return regeneratorRuntime.wrap((function(t){while(1)switch(t.prev=t.next){case 0:if(c=this,void 0===e){t.next=28;break}if(a&&(a.style.visibility="hidden"),e.installed){t.next=21;break}if(l="","wpforms-lite"!==s&&"aioseo"!==s){t.next=9;break}return t.next=8,c.installPlugin(e);case 8:l=t.sent;case 9:if(!0!==l){t.next=16;break}return t.next=12,c.activateAddon(e);case 12:d=t.sent,!0===d?("wpforms-lite"!==s&&"aioseo"!==s||(o.style.display="none",n.classList.add("faux"),a.style.visibility="visible"),r.push(e.title)):(i.push(s),o.style.display="none",a.classList.add("error")),t.next=19;break;case 16:i.push(s),o.style.display="none",a.classList.add("error");case 19:t.next=26;break;case 21:if(!e.installed||e.active){t.next=26;break}return t.next=24,c.activateAddon(e);case 24:u=t.sent,!0===u?r.push(e.title):(i.push(s),o.style.display="none",a.classList.add("error"));case 26:t.next=31;break;case 28:i.push(s),o.style.display="none",a.classList.add("error");case 31:n.checked=!0,a&&(a.style.visibility="visible");case 33:case"end":return t.stop()}}),t,this)})));function e(e,s,o,a,n,i,r){return t.apply(this,arguments)}return e}(),installAddon:function(){var t=Object(ft["a"])(regeneratorRuntime.mark((function t(e){var s;return regeneratorRuntime.wrap((function(t){while(1)switch(t.prev=t.next){case 0:return t.next=2,this.$store.dispatch("$_addons/installAddon",e);case 2:if(s=t.sent,void 0===s){t.next=7;break}if(!(s&&"plugin"in s)){t.next=7;break}if(e.basename!==s.plugin){t.next=7;break}return t.abrupt("return",!0);case 7:return t.abrupt("return",!1);case 8:case"end":return t.stop()}}),t,this)})));function e(e){return t.apply(this,arguments)}return e}(),installPlugin:function(){var t=Object(ft["a"])(regeneratorRuntime.mark((function t(e){var s;return regeneratorRuntime.wrap((function(t){while(1)switch(t.prev=t.next){case 0:return t.next=2,this.$store.dispatch("$_addons/installOnboardingPlugin",e);case 2:if(s=t.sent,void 0===s){t.next=7;break}if(!(s&&"success"in s)){t.next=7;break}if(!0!==s.success){t.next=7;break}return t.abrupt("return",!0);case 7:return t.abrupt("return",!1);case 8:case"end":return t.stop()}}),t,this)})));function e(e){return t.apply(this,arguments)}return e}(),activateAddon:function(){var t=Object(ft["a"])(regeneratorRuntime.mark((function t(e){var s;return regeneratorRuntime.wrap((function(t){while(1)switch(t.prev=t.next){case 0:return t.next=2,this.$store.dispatch("$_addons/activateOnboardingAddon",e);case 2:return s=t.sent,t.abrupt("return",s);case 4:case"end":return t.stop()}}),t,this)})));function e(e){return t.apply(this,arguments)}return e}()}},Tt=Et,Mt=Object(h["a"])(Tt,bt,mt,!1,null,null,null),At=Mt.exports,zt=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-onboarding-step-wpforms"},[s("onboarding-content-header",{attrs:{title:t.text_header_title,subtitle:t.text_header_subtitle}}),s("div",{staticClass:"exactmetrics-onboarding-wizard-form"},[s("form",{attrs:{action:"",method:"post"},on:{submit:function(e){return e.preventDefault(),t.handleSubmit(e)}}},[s("div",{staticClass:"exactmetrics-separator"}),s("div",{staticClass:"exactmetrics-addon-row exactmetrics-wpforms-row"},[t._m(0),s("div",{staticClass:"exactmetrics-addon-text"},[s("label",{domProps:{textContent:t._s(t.text_wpforms_label)}}),s("p",{domProps:{textContent:t._s(t.text_wpforms_description)}})])]),s("div",{staticClass:"exactmetrics-separator"}),s("div",{staticClass:"exactmetrics-form-row exactmetrics-form-buttons"},[s("div",{staticClass:"exactmetrics-form-input"},[s("button",{class:t.buttonClass(),attrs:{type:"button"},domProps:{textContent:t._s(t.button_text)},on:{click:function(e){return e.preventDefault(),t.installPlugin(e)}}}),t.loading?t._e():s("button",{staticClass:"exactmetrics-text-button exactmetrics-pull-right",attrs:{type:"submit",name:"next_step"}},[s("span",{domProps:{textContent:t._s(t.text_skip_step)}}),s("i",{staticClass:"monstericon-arrow-right"})])])])])])],1)},Lt=[function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-addon-icon"},[s("div",{staticClass:"exactmetrics-addon-wpforms"})])}],Dt={name:"OnboardingStepWpforms",components:{OnboardingContentHeader:m},data:function(){return{text_header_title:Object(l["a"])("ExactMetrics Recommends WPForms","google-analytics-dashboard-for-wp"),text_header_subtitle:Object(l["a"])("Built by the folks behind ExactMetrics, WPForms is the most beginner friendly form plugin in the market.","google-analytics-dashboard-for-wp"),text_wpforms_label:Object(l["a"])("Used on over 4,000,000 websites!","google-analytics-dashboard-for-wp"),text_wpforms_description:Object(l["a"])("WPForms allow you to create beautiful contact forms, subscription forms, payment forms, and other types of forms for your site in minutes, not hours!","google-analytics-dashboard-for-wp"),text_skip_step:Object(l["a"])("Skip this Step","google-analytics-dashboard-for-wp"),text_install_wpforms:Object(l["a"])("Continue & Install WPForms","google-analytics-dashboard-for-wp"),text_installing_wpforms:Object(l["a"])("Installing...","google-analytics-dashboard-for-wp"),button_text:"",loading:!1}},mounted:function(){this.button_text=this.text_install_wpforms},methods:{handleSubmit:function(){this.$router.push(this.$wizard_steps[5])},buttonClass:function(){var t="exactmetrics-onboarding-button exactmetrics-onboarding-button-large exactmetrics-install-wpforms";return this.loading&&(t+=" exactmetrics-button-disabled"),t},installPlugin:function(){var t=this;this.loading=!0,this.button_text=this.text_installing_wpforms,this.$store.dispatch("$_addons/installWPForms").then((function(){t.loading=!1,t.button_text=t.text_install_wpforms,t.handleSubmit()}))}}},Wt=Dt,It=Object(h["a"])(Wt,zt,Lt,!1,null,null,null),Ut=It.exports,Rt=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-onboarding-step-success"},[s("onboarding-content-header",{attrs:{title:t.text_header_title,subtitle:t.text_header_subtitle}}),s("div",{staticClass:"exactmetrics-onboarding-wizard-form"},[s("div",{staticClass:"exactmetrics-wizard-notices"},[s("div",{staticClass:"exactmetrics-wizard-notice"},[s("p",{domProps:{innerHTML:t._s(t.text_notice)}})]),t._l(t.install_errors,(function(e,o){return[s("div",{key:o,staticClass:"exactmetrics-wizard-notice"},[s("p",{domProps:{innerHTML:t._s(e)}})])]}))],2),s("div",{staticClass:"exactmetrics-wizard-notices exactmetrics-info-notices"},[s("div",{staticClass:"exactmetrics-wizard-notice"},[s("div",{staticClass:"exactmetrics-tracking-info-container"},[s("div",{staticClass:"exactmetrics-flex exactmetrics-tracking-info"},[s("div",{staticClass:"exactmetrics-tracking-info-text"},[s("p",[t._v(t._s(t.text_connected))])]),s("div",{staticClass:"exactmetrics-tracking-info-icon"},[s("span",{staticClass:"exactmetrics-success",domProps:{innerHTML:t._s(t.text_success)}}),s("span",{staticClass:"exactmetrics-success-icon",domProps:{innerHTML:t._s(t.icon_success)}})])])])])]),s("div",{staticClass:"exactmetrics-wizard-notices exactmetrics-info-notices"},[s("div",{staticClass:"exactmetrics-wizard-notice"},[s("div",{staticClass:"exactmetrics-tracking-info-container"},[s("div",{staticClass:"exactmetrics-flex exactmetrics-tracking-info"},[s("div",{staticClass:"exactmetrics-tracking-info-text"},[s("p",[t._v(t._s(t.text_code_installed))])]),s("div",{staticClass:"exactmetrics-tracking-info-icon"},[s("span",{staticClass:"exactmetrics-success",domProps:{innerHTML:t._s(t.text_success)}}),s("span",{staticClass:"exactmetrics-success-icon",domProps:{innerHTML:t._s(t.icon_success)}})])])])])]),s("div",{staticClass:"exactmetrics-wizard-notices exactmetrics-info-notices"},[s("div",{staticClass:"exactmetrics-wizard-notice"},[s("div",{staticClass:"exactmetrics-tracking-info-container"},[s("div",{staticClass:"exactmetrics-flex exactmetrics-tracking-info"},[s("div",{staticClass:"exactmetrics-tracking-info-text"},[s("p",[t._v(t._s(t.text_data_collected))])]),s("div",{staticClass:"exactmetrics-tracking-info-icon"},[s("span",{staticClass:"exactmetrics-success",domProps:{innerHTML:t._s(t.text_success)}}),s("span",{staticClass:"exactmetrics-success-icon",domProps:{innerHTML:t._s(t.icon_success)}})])])])])]),t.activated_addons?s("div",t._l(t.activated_addons,(function(e,o){return s("div",{key:o},[s("div",{staticClass:"exactmetrics-wizard-notices exactmetrics-info-notices"},[s("div",{staticClass:"exactmetrics-wizard-notice"},[s("div",{staticClass:"exactmetrics-tracking-info-container"},[s("div",{staticClass:"exactmetrics-flex exactmetrics-tracking-info"},[s("div",{staticClass:"exactmetrics-tracking-info-text"},[s("p",[t._v(t._s(e+" Installed"))])]),s("div",{staticClass:"exactmetrics-tracking-info-icon"},[s("span",{staticClass:"exactmetrics-success"},[t._v(t._s(t.text_success))]),s("span",{staticClass:"exactmetrics-success-icon",domProps:{innerHTML:t._s(t.icon_success)}})])])])])])])})),0):t._e(),"pro"!==t.license.type?s("div",[s("div",{staticClass:"exactmetrics-onboarding-upsell"},[s("h2",[t._v(t._s(t.text_lite_user.heading))]),s("p",[t._v(t._s(t.text_lite_user.description))]),s("ul",t._l(t.text_lite_user.features,(function(e,o){return s("li",{key:o},[s("span",{staticClass:"exactmetrics-icon",domProps:{innerHTML:t._s(t.icon_checkmark)}}),s("span",{staticClass:"exactmetrics-text"},[t._v(t._s(e))])])})),0),s("div",{staticClass:"exactmetrics-upsell-upgrade-button"},[s("a",{staticClass:"exactmetrics-button exactmetrics-button-large",attrs:{target:"_blank",href:t.upgrade_button_url},domProps:{textContent:t._s(t.text_button_upgrade)}})])]),s("div",{staticClass:"exactmetrics-upsell-bottom-text"},[s("p",{domProps:{innerHTML:t._s(t.text_lite_user.bottom_text)}})]),s("div",{staticClass:"exactmetrics-settings-license-lite"},[s("label",{attrs:{for:"exactmetrics-license-key"},domProps:{innerHTML:t._s(t.text_license_label)}}),s("div",{staticClass:"exactmetrics-inline-field"},[s("input",{directives:[{name:"model",rawName:"v-model",value:t.connect_key,expression:"connect_key"}],attrs:{id:"exactmetrics-license-key",readonly:t.is_loading,type:"text",autocomplete:"off",placeholder:t.text_license_placeholder},domProps:{value:t.connect_key},on:{input:[function(e){e.target.composing||(t.connect_key=e.target.value)},t.fieldInput]}}),t.show_connect?s("span",[s("button",{staticClass:"exactmetrics-button",domProps:{textContent:t._s(t.text_upgrade_to_pro)},on:{click:function(e){return e.preventDefault(),t.startUpgradeToPro(e)}}})]):s("span",[s("button",{staticClass:"exactmetrics-button disabled",domProps:{textContent:t._s(t.text_upgrade_to_pro)}})])])])]):t._e(),"pro"!==t.license.type&&"pro"!==t.license_network.type?s("div",[s("div",{staticClass:"exactmetrics-separator"}),s("a",{staticClass:"exactmetrics-exit-link",attrs:{href:"#",title:""},on:{click:function(e){return e.preventDefault(),t.exitOnboardingWizard(e)}}},[t._v(t._s(t.text_exit_lite))])]):s("div",{staticClass:"exactmetrics-form-row exactmetrics-form-buttons"},[s("div",{staticClass:"exactmetrics-form-input"},[s("a",{staticClass:"exactmetrics-onboarding-button exactmetrics-onboarding-button-large",attrs:{href:"#"},domProps:{textContent:t._s(t.text_exit)},on:{click:function(e){return e.preventDefault(),t.exitOnboardingWizard(e)}}})])])])],1)},Ht=[],Ft=(s("1276"),s("dd62"));function Bt(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,o)}return s}function Gt(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?Bt(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):Bt(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var Kt={name:"OnboardingStepSuccess",components:{OnboardingContentHeader:m},data:function(){return{text_header_title:Object(l["a"])("Awesome! Tracking and Analytics are All Setup!","google-analytics-dashboard-for-wp"),text_header_subtitle:Object(l["a"])("ExactMetrics is connected to Google Analytics and data is being collected.","google-analytics-dashboard-for-wp"),text_notice:Object(l["d"])(Object(l["a"])("%1$sPlease Note:%2$s While Google Analytics is properly setup and tracking everything, it does not send the data back to WordPress immediately. Depending on the size of your website, it can take between a few hours to 24 hours for reports to populate.","google-analytics-dashboard-for-wp"),"<strong>","</strong>"),text_newsletter:Object(l["d"])(Object(l["a"])("%1$sSubscribe to the ExactMetrics blog%2$s for tips on how to get more traffic and grow your business.","google-analytics-dashboard-for-wp"),'<a target="_blank" href="https://www.exactmetrics.com/blog/">',"</a>"),text_exit:Object(l["a"])("Finish Setup & Exit Wizard","google-analytics-dashboard-for-wp"),text_exit_lite:Object(l["a"])("Complete Setup without Upgrading","google-analytics-dashboard-for-wp"),exit_url:this.$mi.exit_url,text_success:Object(l["a"])("Success","google-analytics-dashboard-for-wp"),text_connected:Object(l["a"])("Connected to Google Analytics","google-analytics-dashboard-for-wp"),text_code_installed:Object(l["a"])("Tracking Code Installed","google-analytics-dashboard-for-wp"),text_data_collected:Object(l["a"])("Data Being Collected","google-analytics-dashboard-for-wp"),icon_success:'<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="16" height="16" rx="8" fill="#EAFAEE"/><path d="M6.70312 10.875C6.85938 11.0312 7.125 11.0312 7.28125 10.875L11.875 6.28125C12.0312 6.125 12.0312 5.85938 11.875 5.70312L11.3125 5.14062C11.1562 4.98438 10.9062 4.98438 10.75 5.14062L7 8.89062L5.23438 7.14062C5.07812 6.98438 4.82812 6.98438 4.67188 7.14062L4.10938 7.70312C3.95312 7.85938 3.95312 8.125 4.10938 8.28125L6.70312 10.875Z" fill="#46BF40"/></svg>',icon_checkmark:'<svg width="14" height="11" viewBox="0 0 14 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.05469 9.8125C5.28906 10.0469 5.6875 10.0469 5.92188 9.8125L12.8125 2.92188C13.0469 2.6875 13.0469 2.28906 12.8125 2.05469L11.9688 1.21094C11.7344 0.976562 11.3594 0.976562 11.125 1.21094L5.5 6.83594L2.85156 4.21094C2.61719 3.97656 2.24219 3.97656 2.00781 4.21094L1.16406 5.05469C0.929688 5.28906 0.929688 5.6875 1.16406 5.92188L5.05469 9.8125Z" fill="#46BF40"/></svg>',text_button_upgrade:Object(l["a"])("Upgrade to ExactMetrics Pro","google-analytics-dashboard-for-wp"),upgrade_button_url:this.$getUpgradeUrl("onboarding-lite","onboarding-lite"),activated_addons:[],text_license_label:Object(l["a"])("Already purchased? Simply enter your license key below to connect with ExactMetrics PRO!","google-analytics-dashboard-for-wp"),is_loading:!1,show_connect:!1,connect_key:"",text_license_placeholder:Object(l["a"])("Paste your license key here","google-analytics-dashboard-for-wp"),text_license_verify:Object(l["a"])("Verify","google-analytics-dashboard-for-wp"),text_upgrade_to_pro:Object(l["a"])("Verify License Key","google-analytics-dashboard-for-wp"),text_lite_user:{heading:Object(l["a"])("Upgrade to Unlock These Features","google-analytics-dashboard-for-wp"),description:Object(l["a"])("To unlock the selected features, please upgrade to Pro and enter your license key below.","google-analytics-dashboard-for-wp"),bottom_text:Object(l["d"])(Object(l["a"])("%1$sBonus:%2$s Upgrade today and save %3$s50%% on a Pro License!%4$s (auto-applied at checkout)","google-analytics-dashboard-for-wp"),"<strong>","</strong>","<strong>","</strong>"),features:["Advanced Reporting","20+ Advanced Tracking","eCommerce Tracking","Advanced Growth Tools","EU and Privacy Compliance","and Dozens More!"]}}},computed:Gt({},Object(j["b"])({install_errors:"$_onboarding/install_errors",license:"$_license/license",license_network:"$_license/license_network",auth:"$_auth/auth"})),mounted:function(){var t=this;t.$swal({type:"info",title:Object(l["a"])("Checking your website...","google-analytics-dashboard-for-wp"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){t.$swal.showLoading()}}),this.$store.dispatch("$_onboarding/getErrors").then((function(){t.$swal.close()}));var e=localStorage.getItem("activated_addons");e&&(this.activated_addons=e.split(","))},methods:{fieldInput:B()((function(){this.show_connect=""!==this.connect_key}),100),startUpgradeToPro:function(){var t=this;this.$swal({type:"info",title:Object(l["a"])("Verifying License...","google-analytics-dashboard-for-wp"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,customContainerClass:"exactmetrics-swal",onOpen:function(){t.$swal.showLoading()}}),Ft["a"].getUpgradeLink(t.connect_key).then((function(e){if(e.success&&e.data.url)return window.location=e.data.url;var s=e.data.message?e.data.message:Object(l["a"])("There was an error unlocking ExactMetrics PRO please try again or install manually.","google-analytics-dashboard-for-wp");t.$mi_error_toast({title:Object(l["a"])("Error","google-analytics-dashboard-for-wp"),text:s,toast:!1,position:"center",showConfirmButton:!0,showCloseButton:!1,customClass:!1,confirmButtonText:Object(l["a"])("Ok","google-analytics-dashboard-for-wp")}).then((function(){e.data.reload&&window.location.reload()}))})).catch((function(){t.$swal.close()}))},exitOnboardingWizard:function(){var t=this;this.$store.dispatch("$_onboarding/disableWPFormsWelcomeScreen").then((function(){window.location=t.exit_url}))}}},Nt=Kt,Yt=Object(h["a"])(Nt,Rt,Ht,!1,null,null,null),qt=Yt.exports,Vt=new i["a"]({routes:[{path:"*",redirect:"/"},{path:"/",name:"welcome",component:v},{path:"/authenticate",name:"authenticate",component:V},{path:"/recommended_settings",name:"recommended_settings",component:ht},{path:"/recommended_addons",name:"recommended_addons",component:At},{path:"/wpforms",name:"wpforms",component:Ut},{path:"/success",name:"success",component:qt}],scrollBehavior:function(){return{x:0,y:0}}}),Xt=s("7220"),Zt=s("bc3a"),Jt=s.n(Zt),Qt=s("2b0e"),te=function(t){return new Promise((function(e){var s=new FormData,o=Qt["a"].prototype.$addQueryArg(Qt["a"].prototype.$mi.ajax,"page","exactmetrics-onboarding");s.append("action","exactmetrics_onboarding_get_errors"),Jt.a.post(o,s).then((function(t){e(t.data)})).catch((function(e){if(t.dispatch("$_app/block",!1,{root:!0}),e.response){var s=e.response;return Qt["a"].prototype.$mi_error_toast({title:Object(l["d"])(Object(l["a"])("Can't load errors. Error: %1$s, %2$s","google-analytics-dashboard-for-wp"),s.status,s.statusText)})}Qt["a"].prototype.$mi_error_toast({title:Object(l["a"])("You appear to be offline.","google-analytics-dashboard-for-wp")})}))}))},ee=function(){return new Promise((function(t){var e=new FormData;e.append("action","exactmetrics_onboarding_disable_wpforms_onboarding"),Jt.a.post(Qt["a"].prototype.$mi.ajax,e).then((function(e){t(e.data)})).catch((function(t){if(t.response){var e=t.response;return Qt["a"].prototype.$mi_error_toast({title:Object(l["d"])(Object(l["a"])("Can't load errors. Error: %1$s, %2$s","google-analytics-dashboard-for-wp"),e.status,e.statusText)})}Qt["a"].prototype.$mi_error_toast({title:Object(l["a"])("You appear to be offline.","google-analytics-dashboard-for-wp")})}))}))},se={fetchErrors:te,disableWPFormsWelcomeScreen:ee},oe=function(t){var e=se.fetchErrors(t);return e.then((function(e){t.commit("ERRORS_UPDATED",e)})).catch((function(t){console.error(t)})),e},ae=function(){se.disableWPFormsWelcomeScreen()},ne={getErrors:oe,disableWPFormsWelcomeScreen:ae},ie=function(t){return t.install_errors},re={install_errors:ie},ce=function(t,e){t.install_errors=e},le={ERRORS_UPDATED:ce},de={install_errors:[]},ue={namespaced:!0,state:de,actions:ne,getters:re,mutations:le},ge=(s("3358"),function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("header",{staticClass:"exactmetrics-onboarding-header"},[s("nav",{staticClass:"exactmetrics-header-navigation"},[s("a",{staticClass:"exactmetrics-exit-button",attrs:{href:"#"},on:{click:function(e){return e.preventDefault(),t.exitOnboardingWizard(e)}}},[s("i",{staticClass:"monstericon-times-circle"}),s("span",{domProps:{textContent:t._s(t.text_exit)}})])]),t._m(0)])}),pe=[function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("h1",{staticClass:"exactmetrics-onboarding-wizard-logo"},[s("div",{staticClass:"exactmetrics-logo"},[s("div",{staticClass:"exactmetrics-bg-img"})])])}],he={name:"TheWizardHeader",data:function(){return{text_exit:Object(l["a"])("Exit Setup","google-analytics-dashboard-for-wp"),href:this.$mi.exit_url}},methods:{exitOnboardingWizard:function(){var t=this;this.$store.dispatch("$_onboarding/disableWPFormsWelcomeScreen").then((function(){window.location=t.href}))}}},be=he,me=Object(h["a"])(be,ge,pe,!1,null,null,null),fe=me.exports,_e=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-onboarding-wizard-container"},[s("div",{staticClass:"exactmetrics-onboarding-wizard-steps"},[t._l(t.steps,(function(e,o){return[o>0?s("div",{key:o+"line",class:t.lineClass(o)}):t._e(),s("div",{key:o,class:t.stepClass(o)})]}))],2)])},we=[],ye={name:"TheWizardTimeline",data:function(){return{steps:this.$wizard_steps}},methods:{stepClass:function(t){var e="exactmetrics-onboarding-wizard-step",s=0;for(var o in this.steps)this.$route.name===this.steps[o]&&(s=o);return t<s&&(e+=" exactmetrics-onboarding-wizard-step-completed"),parseInt(t)===parseInt(s)&&(e+=" exactmetrics-onboarding-wizard-step-active"),e},lineClass:function(t){var e="exactmetrics-onboarding-wizard-step-line",s=0;for(var o in this.steps)this.$route.name===this.steps[o]&&(s=o);return t<=s&&(e+=" exactmetrics-onboarding-wizard-line-active"),e}}},ve=ye,Oe=Object(h["a"])(ve,_e,we,!1,null,null,null),xe=Oe.exports,je=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div")},ke=[],Ce={name:"OnboardingBottomUpsell",data:function(){return{text_pro_plan:Object(l["a"])("Pro Plan","google-analytics-dashboard-for-wp"),text_per_year:Object(l["a"])("per year","google-analytics-dashboard-for-wp"),text_upgrade_now:Object(l["a"])("Upgrade Now","google-analytics-dashboard-for-wp"),upgrade_url:this.$getUpgradeUrl("welcome-screen","upgrade-upsell"),text_get_pro:Object(l["a"])("Upgrade to PRO","google-analytics-dashboard-for-wp"),check_list:[Object(l["a"])("eCommerce Tracking","google-analytics-dashboard-for-wp"),Object(l["a"])("Custom Dimensions","google-analytics-dashboard-for-wp"),Object(l["a"])("Form Tracking","google-analytics-dashboard-for-wp"),Object(l["a"])("AMP Support","google-analytics-dashboard-for-wp"),Object(l["a"])("Author Tracking","google-analytics-dashboard-for-wp")],check_list_2:[Object(l["a"])("EU Compliance Addon","google-analytics-dashboard-for-wp"),Object(l["a"])("Real Time Report","google-analytics-dashboard-for-wp"),Object(l["a"])("Google Optimize","google-analytics-dashboard-for-wp"),Object(l["a"])("Search Console","google-analytics-dashboard-for-wp"),Object(l["a"])("Custom Date Ranges","google-analytics-dashboard-for-wp")],testimonials:[{image:"exactmetrics-about-testimonial-avatar-1",text:Object(l["a"])("This is absolutely, positively, one of the TOP plugins to install on your WP site. There is no better way to quickly gauge traffic for spikes, surges, and consistency. I installed this on over a dozen WordPress installations and counting, thank you for an outstanding app!","google-analytics-dashboard-for-wp"),author:Object(l["a"])("Daniel Monaghan - Experienced","google-analytics-dashboard-for-wp")},{image:"exactmetrics-about-testimonial-avatar-2",text:Object(l["a"])("Very simple to configure and the results are very clearly displayed. So much easier for clients to view than in their own analytics account! Delighted with it.","google-analytics-dashboard-for-wp"),author:Object(l["a"])("Naomi Spirit - From This Day","google-analytics-dashboard-for-wp")},{image:"exactmetrics-about-testimonial-avatar-3",text:Object(l["a"])("Love this plugin! It’s got powerful customization options, it’s easy to use, there’s good documentation, and if all that’s not enough, ExactMetrics is quick to provide support. Thanks for this wonderful plugin!","google-analytics-dashboard-for-wp"),author:Object(l["a"])("Julie Dupuis - Faraway Land Travel","google-analytics-dashboard-for-wp")}]}}},Pe=Ce,$e=Object(h["a"])(Pe,je,ke,!1,null,null,null),Se=$e.exports;function Ee(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,o)}return s}function Te(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?Ee(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):Ee(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var Me={name:"WizardModuleOnboarding",components:{OnboardingBottomUpsell:Se,TheWizardTimeline:xe,TheWizardHeader:fe},router:Vt,created:function(){var t="$_settings";t in this.$store._modules.root._children||this.$store.registerModule(t,Xt["a"]);var e="$_onboarding";e in this.$store._modules.root._children||this.$store.registerModule(e,ue)},computed:Te({},Object(j["b"])({blocked:"$_app/blocked"}),{route:function(){return this.$route.name}}),mounted:function(){this.$mi_loading_toast(),this.$store.dispatch("$_settings/getSettings")}},Ae=Me,ze=(s("1608"),Object(h["a"])(Ae,o,a,!1,null,"283d1087",null)),Le=ze.exports,De=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-admin-page"},[s("div",{staticClass:"exactmetrics-about-page-top"},[s("div",{staticClass:"exactmetrics-container"},[s("h3",{domProps:{textContent:t._s(t.text_welcome)}}),s("div",{staticClass:"exactmetrics-bg-img exactmetrics-em-logo-color"}),s("h2",{domProps:{innerHTML:t._s(t.text_thank_you)}}),s("div",{staticClass:"exactmetrics-about-top-button"},[s("a",{staticClass:"exactmetrics-button exactmetrics-button-green exactmetrics-button-xl",attrs:{href:t.wizard_url}},[s("span",{domProps:{textContent:t._s(t.text_getting_started_link1)}}),s("i",{staticClass:"monstericon-long-arrow-right-light"})]),s("p",{domProps:{innerHTML:t._s(t.text_efortless)}})])]),s("div",{staticClass:"exactmetrics-bg-img exactmetrics-about-getting-started-video",on:{click:function(e){t.welcome_video=!0}}}),t.welcome_video?s("welcome-overlay",{attrs:{id:"getting-started-video"},on:{close:function(e){t.welcome_video=!1}}},[s("iframe",{attrs:{width:"1280",height:"720",src:"https://www.youtube.com/embed/4GZ-IgZssao?autoplay=1&modestbranding=1&showinfo=0&rel=0&fs=1",frameborder:"0",allow:"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture",allowfullscreen:""}})]):t._e()],1),s("div",{staticClass:"exactmetrics-container exactmetrics-about-middle-title"},[s("a",{staticClass:"exactmetrics-button exactmetrics-button-green exactmetrics-button-xl",attrs:{href:t.wizard_url}},[s("span",{domProps:{textContent:t._s(t.text_getting_started_link1)}}),s("i",{staticClass:"monstericon-long-arrow-right-light"})]),s("h2",{domProps:{textContent:t._s(t.text_features_addons)}}),s("p",{domProps:{textContent:t._s(t.text_features_addons_subtitle)}})]),s("content-icon-list",{attrs:{upsell_list:t.icons_list}}),s("div",{staticClass:"exactmetrics-wide-purple"},[s("div",{staticClass:"exactmetrics-container"},[s("div",{staticClass:"exactmetrics-about-upgrade-box-flex"},[s("div",{staticClass:"exactmetrics-about-pro-plan-box"},[s("span",{domProps:{textContent:t._s(t.text_pro_plan)}}),s("span",{staticClass:"exactmetrics-price-large"},[t._v("$199")]),s("span",{staticClass:"exactmetrics-price-term",domProps:{textContent:t._s(t.text_per_year)}}),s("a",{staticClass:"exactmetrics-button",attrs:{href:t.upgrade_url},domProps:{textContent:t._s(t.text_upgrade_now)}})]),s("div",{staticClass:"exactmetrics-about-pro-checkboxes"},[s("h3",{domProps:{textContent:t._s(t.text_get_pro)}}),s("div",{staticClass:"exactmetrics-two-column"},[s("div",{staticClass:"exactmetrics-list-check"},[s("ul",t._l(t.check_list,(function(e,o){return s("li",{key:o,domProps:{innerHTML:t._s(e)}})})),0)]),s("div",{staticClass:"exactmetrics-list-check"},[s("ul",t._l(t.check_list_2,(function(e,o){return s("li",{key:o,domProps:{innerHTML:t._s(e)}})})),0)])])])]),s("div",{staticClass:"exactmetrics-separator"}),s("about-testimonials-slider",{attrs:{testimonials:t.testimonials}})],1)]),s("div",{staticClass:"exactmetrics-container exactmetrics-bottom-buttons"},[s("a",{staticClass:"exactmetrics-button exactmetrics-button-green exactmetrics-button-xl",attrs:{href:t.wizard_url}},[s("span",{domProps:{textContent:t._s(t.text_getting_started_link1)}}),s("i",{staticClass:"monstericon-long-arrow-right-light"})]),s("br"),s("a",{staticClass:"exactmetrics-button exactmetrics-button-text",attrs:{href:t.$getUpgradeUrl("welcome-screen","bottom-link")}},[s("span",{domProps:{textContent:t._s(t.text_upgrade_pro_now)}}),s("i",{staticClass:"monstericon-long-arrow-right-light"})])])],1)},We=[],Ie=(s("01cb"),s("a4cc")),Ue=s("8a0f"),Re=s("de15"),He={name:"WizardModuleWelcome",components:{AboutTestimonialsSlider:Re["a"],ContentIconList:Ue["a"],WelcomeOverlay:Ie["a"]},data:function(){return{text_getting_started_title:Object(l["a"])("Getting Started with ExactMetrics","google-analytics-dashboard-for-wp"),text_getting_started_p1:Object(l["a"])("ExactMetrics is the easiest analytics solution on the market to get started with, as we walk you through exactly what you need to do, in plain english, using our 3 minute setup wizard.","google-analytics-dashboard-for-wp"),text_getting_started_p2:Object(l["a"])("To begin with, we’ll get your site authorized with Google Analytics, so we can start tracking and generating reports for you right away.","google-analytics-dashboard-for-wp"),text_getting_started_p3:Object(l["a"])("In no time at all, and after just a few clicks, you'll have setup the most powerful Google Analytics tracking available for WordPress. It's easy to double your traffic and sales when you know exactly how people find and use your website. Let's get started!.","google-analytics-dashboard-for-wp"),text_getting_started_link1:Object(l["a"])("Launch the wizard!","google-analytics-dashboard-for-wp"),wizard_url:this.$mi.wizard_url,text_welcome:Object(l["a"])("Welcome to","google-analytics-dashboard-for-wp"),text_thank_you:Object(l["d"])(Object(l["a"])("Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin","google-analytics-dashboard-for-wp"),"<br />"),text_efortless:Object(l["d"])(Object(l["a"])("%1$sExactMetrics%2$s makes it “effortless” to setup Google Analytics in WordPress, the RIGHT Way. You can watch the video tutorial or use our 3 minute setup wizard.","google-analytics-dashboard-for-wp"),"<b>","</b>"),welcome_video:!1,text_features_addons:Object(l["a"])("ExactMetrics Features & Addons","google-analytics-dashboard-for-wp"),text_features_addons_subtitle:Object(l["a"])("Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market.","google-analytics-dashboard-for-wp"),icons_list:[{icon:"monstericon-chart-bar",text:Object(l["d"])(Object(l["a"])("%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code).","google-analytics-dashboard-for-wp"),"<b>","</b>")},{icon:"monstericon-file-alt-em",text:Object(l["d"])(Object(l["a"])("%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights.","google-analytics-dashboard-for-wp"),"<b>","</b>")},{icon:"monstericon-clock",text:Object(l["d"])(Object(l["a"])("%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more.","google-analytics-dashboard-for-wp"),"<b>","</b>")},{icon:"monstericon-check-circle-em",text:Object(l["d"])(Object(l["a"])("%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress.","google-analytics-dashboard-for-wp"),"<b>","</b>")},{icon:"monstericon-shopping-bag",text:Object(l["d"])(Object(l["a"])("%1$sPage Level Analytics%2$s - Get detailed stats for each post and page, so you can see the most popular posts, pages, and sections of your site.","google-analytics-dashboard-for-wp"),"<b>","</b>")},{icon:"monstericon-links",text:Object(l["d"])(Object(l["a"])("%1$sAffiliate Link & Ads Tracking%2$s - Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking.","google-analytics-dashboard-for-wp"),"<b>","</b>")},{icon:"monstericon-unlock",text:Object(l["d"])(Object(l["a"])("%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically.","google-analytics-dashboard-for-wp"),"<b>","</b>")},{icon:"monstericon-cog",text:Object(l["d"])(Object(l["a"])("%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click.","google-analytics-dashboard-for-wp"),"<b>","</b>")},{icon:"",text:Object(l["d"])(Object(l["a"])("%1$sSee All Features%2$s","google-analytics-dashboard-for-wp"),'<a target="_blank" href="'+this.$getUrl("about-page","features","https://www.exactmetrics.com/features/")+'">','<i class="monstericon-long-arrow-right-light"></i></a>')}],text_pro_plan:Object(l["a"])("Pro Plan","google-analytics-dashboard-for-wp"),text_per_year:Object(l["a"])("per year","google-analytics-dashboard-for-wp"),text_upgrade_now:Object(l["a"])("Upgrade Now","google-analytics-dashboard-for-wp"),text_upgrade_pro_now:Object(l["a"])("Upgrade to ExactMetrics Pro Now","google-analytics-dashboard-for-wp"),upgrade_url:this.$getUpgradeUrl("welcome-screen","upgrade-upsell"),testimonials:[{image:"exactmetrics-about-testimonial-avatar-1",text:Object(l["a"])("This is absolutely, positively, one of the TOP plugins to install on your WP site. There is no better way to quickly gauge traffic for spikes, surges, and consistency. I installed this on over a dozen WordPress installations and counting, thank you for an outstanding app!","google-analytics-dashboard-for-wp"),author:Object(l["a"])("Daniel Monaghan - Experienced","google-analytics-dashboard-for-wp")},{image:"exactmetrics-about-testimonial-avatar-2",text:Object(l["a"])("Very simple to configure and the results are very clearly displayed. So much easier for clients to view than in their own analytics account! Delighted with it.","google-analytics-dashboard-for-wp"),author:Object(l["a"])("Naomi Spirit - From This Day","google-analytics-dashboard-for-wp")},{image:"exactmetrics-about-testimonial-avatar-3",text:Object(l["a"])("Love this plugin! It’s got powerful customization options, it’s easy to use, there’s good documentation, and if all that’s not enough, ExactMetrics is quick to provide support.