Google Analytics Dashboard for WP (GADWP) - Version 7.7.0

Version Description

Download this release

Release Info

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

Code changes from version 7.6.0 to 7.7.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.6.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.6.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.7.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.7.0';
48
 
49
  /**
50
  * Plugin file.
includes/admin/common.php CHANGED
@@ -262,6 +262,7 @@ function exactmetrics_admin_scripts() {
262
  'new_pretty_link_url' => admin_url( 'post-new.php?post_type=pretty-link' ),
263
  'wpmailsmtp_admin_url' => admin_url( 'admin.php?page=wp-mail-smtp' ),
264
  'load_headline_analyzer_settings' => exactmetrics_load_gutenberg_app() ? 'true' : 'false',
 
265
  )
266
  );
267
 
262
  'new_pretty_link_url' => admin_url( 'post-new.php?post_type=pretty-link' ),
263
  'wpmailsmtp_admin_url' => admin_url( 'admin.php?page=wp-mail-smtp' ),
264
  'load_headline_analyzer_settings' => exactmetrics_load_gutenberg_app() ? 'true' : 'false',
265
+ 'exit_url' => add_query_arg( 'page', 'exactmetrics_settings', admin_url( 'admin.php' ) ),
266
  )
267
  );
268
 
includes/admin/routes.php CHANGED
@@ -72,6 +72,7 @@ class ExactMetrics_Rest_Routes {
72
  'type' => ExactMetrics()->license->get_site_license_type(),
73
  'is_disabled' => ExactMetrics()->license->site_license_disabled(),
74
  'is_expired' => ExactMetrics()->license->site_license_expired(),
 
75
  'is_invalid' => ExactMetrics()->license->site_license_invalid(),
76
  );
77
  $network_license = array(
@@ -79,6 +80,7 @@ class ExactMetrics_Rest_Routes {
79
  'type' => ExactMetrics()->license->get_network_license_type(),
80
  'is_disabled' => ExactMetrics()->license->network_license_disabled(),
81
  'is_expired' => ExactMetrics()->license->network_license_expired(),
 
82
  'is_invalid' => ExactMetrics()->license->network_license_disabled(),
83
  );
84
 
@@ -396,7 +398,7 @@ class ExactMetrics_Rest_Routes {
396
  'active' => function_exists( 'wpforms' ),
397
  'icon' => plugin_dir_url( EXACTMETRICS_PLUGIN_FILE ) . 'assets/images/plugin-wpforms.png',
398
  'title' => 'WPForms',
399
- 'excerpt' => __( 'The best drag & drop WordPress form builder. Easily create beautiful contact forms, surveys, payment forms, and more with our 150+ form templates. Trusted by over 4 million websites as the best forms plugin', 'google-analytics-dashboard-for-wp' ),
400
  'installed' => array_key_exists( 'wpforms-lite/wpforms.php', $installed_plugins ),
401
  'basename' => 'wpforms-lite/wpforms.php',
402
  'slug' => 'wpforms-lite',
@@ -876,15 +878,41 @@ class ExactMetrics_Rest_Routes {
876
  if ( ! empty( $_REQUEST['isnetwork'] ) && $_REQUEST['isnetwork'] ) {
877
  define( 'WP_NETWORK_ADMIN', true );
878
  }
879
- $settings_page = admin_url( 'admin.php?page=exactmetrics_settings' );
 
 
880
 
881
  // Only for Pro users, require a license key to be entered first so we can link to things.
882
  if ( exactmetrics_is_pro_version() ) {
883
  if ( ! ExactMetrics()->license->is_site_licensed() && ! ExactMetrics()->license->is_network_licensed() ) {
884
- wp_send_json_error( array(
885
- 'message' => __( "You can't view ExactMetrics reports because you are not licensed.", 'google-analytics-dashboard-for-wp' ),
886
- 'footer' => '<a href="' . $settings_page . '">' . __( 'Add your license', 'google-analytics-dashboard-for-wp' ) . '</a>',
887
- ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
888
  } else if ( ExactMetrics()->license->is_site_licensed() && ! ExactMetrics()->license->site_license_has_error() ) {
889
  // Good to go: site licensed.
890
  } else if ( ExactMetrics()->license->is_network_licensed() && ! ExactMetrics()->license->network_license_has_error() ) {
72
  'type' => ExactMetrics()->license->get_site_license_type(),
73
  'is_disabled' => ExactMetrics()->license->site_license_disabled(),
74
  'is_expired' => ExactMetrics()->license->site_license_expired(),
75
+ 'expiry_date' => ExactMetrics()->license->get_license_expiry_date(),
76
  'is_invalid' => ExactMetrics()->license->site_license_invalid(),
77
  );
78
  $network_license = array(
80
  'type' => ExactMetrics()->license->get_network_license_type(),
81
  'is_disabled' => ExactMetrics()->license->network_license_disabled(),
82
  'is_expired' => ExactMetrics()->license->network_license_expired(),
83
+ 'expiry_date' => ExactMetrics()->license->get_license_expiry_date(),
84
  'is_invalid' => ExactMetrics()->license->network_license_disabled(),
85
  );
86
 
398
  'active' => function_exists( 'wpforms' ),
399
  'icon' => plugin_dir_url( EXACTMETRICS_PLUGIN_FILE ) . 'assets/images/plugin-wpforms.png',
400
  'title' => 'WPForms',
401
+ 'excerpt' => __( 'The best drag & drop WordPress form builder. Easily create beautiful contact forms, surveys, payment forms, and more with our 150+ form templates. Trusted by over 5 million websites as the best forms plugin. We also have 400+ form templates and over 100 million downloads for WPForms Lite.', 'google-analytics-dashboard-for-wp' ),
402
  'installed' => array_key_exists( 'wpforms-lite/wpforms.php', $installed_plugins ),
403
  'basename' => 'wpforms-lite/wpforms.php',
404
  'slug' => 'wpforms-lite',
878
  if ( ! empty( $_REQUEST['isnetwork'] ) && $_REQUEST['isnetwork'] ) {
879
  define( 'WP_NETWORK_ADMIN', true );
880
  }
881
+ $settings_page = admin_url( 'admin.php?page=exactmetrics_settings' );
882
+ $reactivation_url = exactmetrics_get_url( 'admin-notices', 'expired-license', "https://www.exactmetrics.com/my-account/" );
883
+ $learn_more_link = esc_url( 'https://www.exactmetrics.com/docs/faq/#licensedplugin' );
884
 
885
  // Only for Pro users, require a license key to be entered first so we can link to things.
886
  if ( exactmetrics_is_pro_version() ) {
887
  if ( ! ExactMetrics()->license->is_site_licensed() && ! ExactMetrics()->license->is_network_licensed() ) {
888
+ if ( ExactMetrics()->license->license_expired() ) {
889
+ $expiry_message_html = '<div style="display:flex;">';
890
+ $expiry_message_html .= '<div class="exactmetrics-expired-license-alert">';
891
+ $expiry_message_html .= '<h3>' . esc_html__( 'License Expired', 'google-analytics-dashboard-for-wp' ) . '</h3>';
892
+ $expiry_message_html .= '<h4>' . sprintf( esc_html__( 'Your license for ExactMetrics %1$s has expired.', 'google-analytics-dashboard-for-wp' ), ucfirst( ExactMetrics()->license->get_license_type() ) ) . '</h4>';
893
+ if ( '' !== ExactMetrics()->license->get_license_expiry_date() ) {
894
+ $expiry_message_html .= '<p class="exactmetrics-expired-date">' . sprintf( esc_html__( 'Expired %1$s', 'google-analytics-dashboard-for-wp' ), ExactMetrics()->license->get_license_expiry_date() ) . '</p>';
895
+ }
896
+ $expiry_message_html .= '<p>' . esc_html__( 'To ensure your site keeps tracking properly, and to view Reports you must have a valid ExactMetrics license.', 'google-analytics-dashboard-for-wp' ) . '</p>';
897
+ $expiry_message_html .= '</div>';
898
+ $expiry_message_html .= '<div class="exactmetrics-expired-license-alert-icon">';
899
+ $expiry_message_html .= '<svg width="137" height="119" viewBox="0 0 137 119" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M132.164 102.414L77.7891 7.9375C73.7109 0.914062 63.0625 0.6875 58.9844 7.9375L4.60938 102.414C0.53125 109.438 5.74219 118.5 14.125 118.5H122.648C131.031 118.5 136.242 109.664 132.164 102.414ZM68.5 82.7031C74.1641 82.7031 78.9219 87.4609 78.9219 93.125C78.9219 99.0156 74.1641 103.547 68.5 103.547C62.6094 103.547 58.0781 99.0156 58.0781 93.125C58.0781 87.4609 62.6094 82.7031 68.5 82.7031ZM58.5312 45.3203C58.3047 43.7344 59.6641 42.375 61.25 42.375H75.5234C77.1094 42.375 78.4688 43.7344 78.2422 45.3203L76.6562 76.1328C76.4297 77.7188 75.2969 78.625 73.9375 78.625H62.8359C61.4766 78.625 60.3438 77.7188 60.1172 76.1328L58.5312 45.3203Z" fill="#E64949"/></svg>';
900
+ $expiry_message_html .= '</div>';
901
+ $expiry_message_html .= '</div>';
902
+
903
+ $expiry_footer_html = '<div><a target="_blank" class="swal2-confirm swal2-styled" href="' . esc_url( $reactivation_url ) . '">' . __( 'Reactivate License', 'google-analytics-dashboard-for-wp' ) . '</a><br/>';
904
+ $expiry_footer_html .= '<a target="_blank" href="' . $learn_more_link . '">' . __( 'Learn More', 'google-analytics-dashboard-for-wp' ) . '</a></div>';
905
+ wp_send_json_error( array(
906
+ 'type' => 'expired_license',
907
+ 'message' => $expiry_message_html,
908
+ 'footer' => $expiry_footer_html,
909
+ ) );
910
+ } else {
911
+ wp_send_json_error( array(
912
+ 'message' => __( "You can't view ExactMetrics reports because you are not licensed.", 'google-analytics-dashboard-for-wp' ),
913
+ 'footer' => '<a href="' . $settings_page . '">' . __( 'Add your license', 'google-analytics-dashboard-for-wp' ) . '</a>',
914
+ ) );
915
+ }
916
  } else if ( ExactMetrics()->license->is_site_licensed() && ! ExactMetrics()->license->site_license_has_error() ) {
917
  // Good to go: site licensed.
918
  } else if ( ExactMetrics()->license->is_network_licensed() && ! ExactMetrics()->license->network_license_has_error() ) {
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.6.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-06-13T16:20: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:3479
19
  msgid "ExactMetrics Pro"
20
  msgstr ""
21
 
@@ -113,7 +113,7 @@ msgstr ""
113
  #: includes/admin/admin.php:34
114
  #: includes/admin/admin.php:42
115
  #: includes/admin/admin.php:222
116
- #: languages/vue.php:534
117
  msgid "Settings"
118
  msgstr ""
119
 
@@ -129,7 +129,7 @@ msgstr ""
129
 
130
  #: includes/admin/admin.php:39
131
  #: includes/admin/admin.php:130
132
- #: languages/vue.php:2296
133
  msgid "Reports"
134
  msgstr ""
135
 
@@ -139,7 +139,7 @@ msgstr ""
139
 
140
  #: includes/admin/admin.php:51
141
  #: languages/gutenberg.php:83
142
- #: languages/vue.php:992
143
  msgid "Popular Posts"
144
  msgstr ""
145
 
@@ -192,7 +192,7 @@ msgstr ""
192
  #: includes/admin/admin.php:76
193
  #: includes/admin/notifications/notification-upgrade-to-pro-high-traffic.php:41
194
  #: includes/admin/notifications/notification-upgrade-to-pro.php:33
195
- #: languages/vue.php:1041
196
  msgid "Upgrade to Pro"
197
  msgstr ""
198
 
@@ -220,7 +220,7 @@ msgstr ""
220
 
221
  #: includes/admin/admin.php:212
222
  #: includes/admin/admin.php:215
223
- #: languages/vue.php:1016
224
  msgid "Support"
225
  msgstr ""
226
 
@@ -232,7 +232,7 @@ msgstr ""
232
  #: includes/admin/notifications/notification-upgrade-for-google-optimize.php:32
233
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:32
234
  #: includes/admin/reports/abstract-report.php:418
235
- #: languages/vue.php:1148
236
  msgid "Get ExactMetrics Pro"
237
  msgstr ""
238
 
@@ -242,31 +242,32 @@ msgid "Please rate %1$sExactMetrics%2$s on %3$s %4$sWordPress.org%5$s to help us
242
  msgstr ""
243
 
244
  #: includes/admin/admin.php:324
245
- #: languages/vue.php:1139
246
  msgid "Please Setup Website Analytics to See Audience Insights"
247
  msgstr ""
248
 
249
  #: includes/admin/admin.php:325
250
- #: languages/vue.php:1145
251
  msgid "Connect ExactMetrics and Setup Website Analytics"
252
  msgstr ""
253
 
254
  #: includes/admin/admin.php:327
255
- #: includes/admin/common.php:895
256
- #: includes/admin/common.php:922
257
- #: includes/admin/common.php:955
258
  #: includes/admin/notifications/notification-audience.php:45
259
  #: includes/admin/notifications/notification-bounce-rate.php:47
260
  #: includes/admin/notifications/notification-headline-analyzer.php:39
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:333
 
265
  msgid "Learn More"
266
  msgstr ""
267
 
268
  #: includes/admin/admin.php:329
269
- #: languages/vue.php:1142
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 +278,17 @@ msgstr ""
277
 
278
  #. Translators: Adds a link to the license renewal.
279
  #: includes/admin/admin.php:350
280
- #: languages/vue.php:473
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:476
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:479
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 +346,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:971
349
  #: lite/includes/admin/onboarding-wizard.php:247
350
  msgid "You are not allowed to install plugins"
351
  msgstr ""
@@ -441,57 +442,57 @@ msgid "Could not deauthenticate."
441
  msgstr ""
442
 
443
  #. Translators: Placeholders are for links to fix the issue.
444
- #: includes/admin/common.php:757
445
  msgid "ExactMetrics has detected that it's files are being blocked. This is usually caused by a adblock browser plugin (particularly uBlock Origin), or a conflicting WordPress theme or plugin. This issue only affects the admin side of ExactMetrics. To solve this, ensure ExactMetrics is whitelisted for your website URL in any adblock browser plugin you use. For step by step directions on how to do this, %1$sclick here%2$s. If this doesn't solve the issue (rare), send us a ticket %3$shere%2$s and we'll be happy to help diagnose the issue."
446
  msgstr ""
447
 
448
- #: includes/admin/common.php:876
449
  msgid "ACTION REQUIRED: Your PHP version is putting your site at risk!"
450
  msgstr ""
451
 
452
- #: includes/admin/common.php:878
453
  msgid "ACTION REQUIRED: Speed your website up 400% with a single email!"
454
  msgstr ""
455
 
456
  #. Translators: Placeholder is for the current PHP version.
457
- #: includes/admin/common.php:885
458
  msgid "In the next major release of ExactMetrics we are planning to remove support for the version of PHP you are using (%s). This insecure version is no longer supported by WordPress itself, so you are already missing out on the latest features of WordPress along with critical updates for security and performance (modern PHP versions make websites much faster)."
459
  msgstr ""
460
 
461
  #. Translators: Placeholders add a link to an article.
462
- #: includes/admin/common.php:888
463
  msgid "To ensure ExactMetrics and other plugins on your site continue to function properly, and avoid putting your site at risk, please take a few minutes to ask your website hosting provider to upgrade the version of PHP to a modern PHP version (7.2 or newer). We provide helpful templates for how to ask them %1$shere%2$s."
464
  msgstr ""
465
 
466
  #. Translators: Placeholders add a link to an article.
467
- #: includes/admin/common.php:889
468
  msgid "Upgrading your PHP version will make sure you are able to continue using WordPress without issues in the future, keep your site secure, and will also make your website up to 400% faster!"
469
  msgstr ""
470
 
471
- #: includes/admin/common.php:909
472
  msgid "ACTION REQUIRED: Your WordPress version is putting your site at risk!"
473
  msgstr ""
474
 
475
  #. Translators: Placeholder is for the current WordPress version.
476
- #: includes/admin/common.php:912
477
  msgid "In the next major release of ExactMetrics we are planning to remove support for the version of WordPress you are using (version %s). This version is several years out of date, and most plugins do not support this version anymore, so you could be missing out on critical updates for performance and security already!"
478
  msgstr ""
479
 
480
- #: includes/admin/common.php:914
481
  msgid "The good news: updating WordPress has never been easier and only takes a few moments."
482
  msgstr ""
483
 
484
  #. Translators: Placeholders add links to articles.
485
- #: includes/admin/common.php:916
486
  msgid "To update, we recommend following this %1$sstep by step guide for updating WordPress%2$s from IsItWP and afterwards check out %3$sWhy You Should Always Use the Latest Version of WordPress%4$s on WPBeginner."
487
  msgstr ""
488
 
489
- #: includes/admin/common.php:950
490
  msgid "View 2021 Year in Review report!"
491
  msgstr ""
492
 
493
- #: includes/admin/common.php:951
494
- #: languages/vue.php:3324
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 +513,7 @@ msgstr ""
512
 
513
  #: includes/admin/exclude-page-metabox.php:147
514
  #: languages/gutenberg.php:354
515
- #: languages/vue.php:3111
516
  msgid "Upgrade"
517
  msgstr ""
518
 
@@ -540,8 +541,8 @@ msgid "Dismiss this notice"
540
  msgstr ""
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
 
@@ -710,7 +711,7 @@ msgstr ""
710
  #: includes/admin/notifications/notification-upgrade-for-custom-dimensions.php:26
711
  #: includes/admin/notifications/notification-upgrade-for-events-reporting.php:26
712
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:26
713
- #: languages/vue.php:1729
714
  #: lite/includes/admin/helpers.php:85
715
  msgid "Upgrade to ExactMetrics Pro"
716
  msgstr ""
@@ -746,7 +747,7 @@ msgstr ""
746
  #: includes/admin/notifications/notification-upgrade-for-form-conversion.php:31
747
  #: includes/admin/notifications/notification-upgrade-for-search-console.php:32
748
  #: includes/admin/reports/abstract-report.php:415
749
- #: languages/vue.php:227
750
  msgid "Upgrade Now"
751
  msgstr ""
752
 
@@ -923,7 +924,7 @@ msgid "Please ask your webmaster to enable this addon."
923
  msgstr ""
924
 
925
  #: includes/admin/reports/overview.php:34
926
- #: languages/vue.php:435
927
  msgid "Overview"
928
  msgstr ""
929
 
@@ -971,117 +972,139 @@ msgstr ""
971
  msgid "I already did"
972
  msgstr ""
973
 
974
- #: includes/admin/routes.php:333
975
  msgid "Easy digital downloads plugin."
976
  msgstr ""
977
 
978
- #: includes/admin/routes.php:399
979
- msgid "The best drag & drop WordPress form builder. Easily create beautiful contact forms, surveys, payment forms, and more with our 150+ form templates. Trusted by over 4 million websites as the best forms plugin"
980
  msgstr ""
981
 
982
- #: includes/admin/routes.php:410
983
  msgid "The original WordPress SEO plugin and toolkit that improves your website’s search rankings. Comes with all the SEO features like Local SEO, WooCommerce SEO, sitemaps, SEO optimizer, schema, and more."
984
  msgstr ""
985
 
986
- #: includes/admin/routes.php:421
987
  msgid "Instantly get more subscribers, leads, and sales with the #1 conversion optimization toolkit. Create high converting popups, announcement bars, spin a wheel, and more with smart targeting and personalization."
988
  msgstr ""
989
 
990
- #: includes/admin/routes.php:432
991
  msgid "Improve your WordPress email deliverability and make sure that your website emails reach user’s inbox with the #1 SMTP plugin for WordPress. Over 2 million websites use it to fix WordPress email issues."
992
  msgstr ""
993
 
994
- #: includes/admin/routes.php:442
995
  msgid "The fastest drag & drop landing page builder for WordPress. Create custom landing pages without writing code, connect them with your CRM, collect subscribers, and grow your audience. Trusted by 1 million sites."
996
  msgstr ""
997
 
998
- #: includes/admin/routes.php:453
999
  msgid "Turn your website visitors into brand ambassadors! Easily grow your email list, website traffic, and social media followers with the most powerful giveaways & contests plugin for WordPress."
1000
  msgstr ""
1001
 
1002
- #: includes/admin/routes.php:464
1003
  msgid "Boost your sales and conversions by up to 15% with real-time social proof notifications. TrustPulse helps you show live user activity and purchases to help convince other users to purchase."
1004
  msgstr ""
1005
 
1006
- #: includes/admin/routes.php:474
1007
  msgid "Easily display Instagram content on your WordPress site without writing any code. Comes with multiple templates, ability to show content from multiple accounts, hashtags, and more. Trusted by 1 million websites."
1008
  msgstr ""
1009
 
1010
- #: includes/admin/routes.php:485
1011
  msgid "Easily display Facebook content on your WordPress site without writing any code. Comes with multiple templates, ability to show content from multiple accounts, hashtags, and more. Trusted by 1 million websites."
1012
  msgstr ""
1013
 
1014
- #: includes/admin/routes.php:496
1015
  msgid "Connect with your visitors after they leave your website with the leading web push notification software. Over 10,000+ businesses worldwide use PushEngage to send 9 billion notifications each month."
1016
  msgstr ""
1017
 
1018
- #: includes/admin/routes.php:506
1019
  msgid "Pretty Links helps you shrink, beautify, track, manage and share any URL on or off of your WordPress website. Create links that look how you want using your own domain name!"
1020
  msgstr ""
1021
 
1022
- #: includes/admin/routes.php:517
1023
  msgid "ThirstyAffiliates is a revolution in affiliate link management. Collect, collate and store your affiliate links for use in your posts and pages."
1024
  msgstr ""
1025
 
1026
- #: includes/admin/routes.php:529
1027
  msgid "Advanced Coupons for WooCommerce (Free Version) gives WooCommerce store owners extra coupon features so they can market their stores better."
1028
  msgstr ""
1029
 
1030
- #: includes/admin/routes.php:658
1031
  msgid "Invalid UA code"
1032
  msgstr ""
1033
 
1034
- #: includes/admin/routes.php:712
1035
  msgid "Invalid GAv4 code"
1036
  msgstr ""
1037
 
1038
- #: includes/admin/routes.php:740
1039
  msgid "Invalid dual tracking code"
1040
  msgstr ""
1041
 
1042
- #: includes/admin/routes.php:819
1043
  msgid "Please upload a valid .json file"
1044
  msgstr ""
1045
 
1046
- #: includes/admin/routes.php:828
1047
  msgid "Please upload a file to import"
1048
  msgstr ""
1049
 
1050
- #: includes/admin/routes.php:885
1051
- #: includes/admin/routes.php:1223
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1052
  msgid "You can't view ExactMetrics reports because you are not licensed."
1053
  msgstr ""
1054
 
1055
- #: includes/admin/routes.php:886
1056
- #: includes/admin/routes.php:1224
1057
  msgid "Add your license"
1058
  msgstr ""
1059
 
1060
- #: includes/admin/routes.php:893
1061
- #: includes/admin/routes.php:1231
1062
  msgid "You can't view ExactMetrics reports due to license key errors."
1063
  msgstr ""
1064
 
1065
- #: includes/admin/routes.php:901
1066
- #: includes/admin/routes.php:1239
1067
  msgid "You must authenticate with ExactMetrics before you can view reports."
1068
  msgstr ""
1069
 
1070
- #: includes/admin/routes.php:907
1071
- #: includes/admin/routes.php:1245
1072
  msgid "Unknown report. Try refreshing and retrying. Contact support if this issue persists."
1073
  msgstr ""
1074
 
1075
- #: includes/admin/routes.php:959
1076
- #: includes/admin/routes.php:1293
1077
  msgid "We encountered an error when fetching the report data."
1078
  msgstr ""
1079
 
1080
- #: includes/admin/routes.php:979
1081
  msgid "Missing plugin name."
1082
  msgstr ""
1083
 
1084
- #: includes/admin/routes.php:1123
1085
  msgid "Homepage"
1086
  msgstr ""
1087
 
@@ -1435,7 +1458,7 @@ msgid "Question"
1435
  msgstr ""
1436
 
1437
  #: includes/gutenberg/headline-tool/headline-tool.php:290
1438
- #: languages/vue.php:540
1439
  msgid "General"
1440
  msgstr ""
1441
 
@@ -4835,7 +4858,7 @@ msgid "Theme"
4835
  msgstr ""
4836
 
4837
  #: languages/gutenberg.php:77
4838
- #: languages/vue.php:525
4839
  msgid "Inline Popular Posts"
4840
  msgstr ""
4841
 
@@ -4872,7 +4895,7 @@ msgid "Comment Color"
4872
  msgstr ""
4873
 
4874
  #: languages/gutenberg.php:107
4875
- #: languages/vue.php:3067
4876
  msgid "Wide-Layout Options"
4877
  msgstr ""
4878
 
@@ -4881,12 +4904,12 @@ msgid "Choose Layout"
4881
  msgstr ""
4882
 
4883
  #: languages/gutenberg.php:113
4884
- #: languages/vue.php:3070
4885
  msgid "Adjust the number of columns displayed when the widget is placed in a wide container."
4886
  msgstr ""
4887
 
4888
  #: languages/gutenberg.php:116
4889
- #: languages/vue.php:3091
4890
  msgid "Post Count"
4891
  msgstr ""
4892
 
@@ -4895,7 +4918,7 @@ msgid "Number of posts displayed."
4895
  msgstr ""
4896
 
4897
  #: languages/gutenberg.php:122
4898
- #: languages/vue.php:3073
4899
  msgid "Display Options"
4900
  msgstr ""
4901
 
@@ -4908,7 +4931,7 @@ msgid "Display Widget Title"
4908
  msgstr ""
4909
 
4910
  #: languages/gutenberg.php:131
4911
- #: languages/vue.php:1951
4912
  msgid "Widget Title"
4913
  msgstr ""
4914
 
@@ -4917,17 +4940,17 @@ msgid "Only Show Posts From These Categories"
4917
  msgstr ""
4918
 
4919
  #: languages/gutenberg.php:137
4920
- #: languages/vue.php:3079
4921
  msgid "Display Author"
4922
  msgstr ""
4923
 
4924
  #: languages/gutenberg.php:140
4925
- #: languages/vue.php:3082
4926
  msgid "Display Date"
4927
  msgstr ""
4928
 
4929
  #: languages/gutenberg.php:143
4930
- #: languages/vue.php:3085
4931
  msgid "Display Comments"
4932
  msgstr ""
4933
 
@@ -5148,7 +5171,7 @@ msgid "Goal: "
5148
  msgstr ""
5149
 
5150
  #: languages/gutenberg.php:312
5151
- #: languages/vue.php:980
5152
  msgid "Headline Analyzer"
5153
  msgstr ""
5154
 
@@ -5161,19 +5184,19 @@ msgid "This headline analyzer is part of ExactMetrics to help you increase your
5161
  msgstr ""
5162
 
5163
  #: languages/gutenberg.php:321
5164
- #: languages/vue.php:108
5165
  #: lite/includes/admin/metaboxes.php:42
5166
  msgid "Last 30 days"
5167
  msgstr ""
5168
 
5169
  #: languages/gutenberg.php:324
5170
- #: languages/vue.php:96
5171
  #: lite/includes/admin/metaboxes.php:45
5172
  msgid "Yesterday"
5173
  msgstr ""
5174
 
5175
  #: languages/gutenberg.php:327
5176
- #: languages/vue.php:1299
5177
  #: lite/includes/admin/metaboxes.php:57
5178
  #: lite/includes/admin/metaboxes.php:111
5179
  msgid "Bounce Rate"
@@ -5229,33 +5252,33 @@ msgstr ""
5229
  msgid "Loading Settings"
5230
  msgstr ""
5231
 
5232
- #: languages/vue.php:14
5233
  msgid "Please wait..."
5234
  msgstr ""
5235
 
5236
- #: languages/vue.php:17
5237
  msgid "Saving Changes..."
5238
  msgstr ""
5239
 
5240
- #: languages/vue.php:20
5241
  msgid "Settings Updated"
5242
  msgstr ""
5243
 
5244
  #. Translators: Add a link to the onboarding wizard.
5245
- #: languages/vue.php:24
5246
  msgid "You need to %1$sconnect ExactMetrics%2$s first"
5247
  msgstr ""
5248
 
5249
- #: languages/vue.php:27
5250
  msgid "Could Not Save Changes"
5251
  msgstr ""
5252
 
5253
- #: languages/vue.php:30
5254
  msgid "Loading new report data"
5255
  msgstr ""
5256
 
5257
- #. Translators: Placeholder gets replaced with an arrow icon.
5258
- #: languages/vue.php:34
5259
  msgid "Continue %s"
5260
  msgstr ""
5261
 
@@ -5279,89 +5302,89 @@ msgstr ""
5279
  msgid "Unlock the Publishers Report and Focus on the Content That Matters"
5280
  msgstr ""
5281
 
5282
- #: languages/vue.php:53
5283
  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."
5284
  msgstr ""
5285
 
5286
- #: languages/vue.php:56
5287
  msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
5288
  msgstr ""
5289
 
5290
- #: languages/vue.php:59
5291
  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."
5292
  msgstr ""
5293
 
5294
- #: languages/vue.php:62
5295
  msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
5296
  msgstr ""
5297
 
5298
- #: languages/vue.php:65
5299
  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."
5300
  msgstr ""
5301
 
5302
- #: languages/vue.php:68
5303
  msgid "Unlock the Forms Report and Improve Conversions"
5304
  msgstr ""
5305
 
5306
- #: languages/vue.php:71
5307
  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."
5308
  msgstr ""
5309
 
5310
- #: languages/vue.php:74
5311
  msgid "Unlock the Search Console Report and See How People Find Your Website"
5312
  msgstr ""
5313
 
5314
- #: languages/vue.php:77
5315
  msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
5316
  msgstr ""
5317
 
5318
- #: languages/vue.php:80
5319
  msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
5320
  msgstr ""
5321
 
5322
- #: languages/vue.php:83
5323
  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."
5324
  msgstr ""
5325
 
5326
- #: languages/vue.php:86
5327
  msgid "Unlock the Site Speed Report and Improve the Performance of Your Site"
5328
  msgstr ""
5329
 
5330
- #: languages/vue.php:89
5331
  msgid "See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking"
5332
  msgstr ""
5333
 
5334
- #: languages/vue.php:92
5335
  msgid "Today"
5336
  msgstr ""
5337
 
5338
- #: languages/vue.php:99
5339
  msgid "Last Week"
5340
  msgstr ""
5341
 
5342
- #: languages/vue.php:102
5343
  msgid "Last Month"
5344
  msgstr ""
5345
 
5346
- #: languages/vue.php:105
5347
  msgid "Last 7 days"
5348
  msgstr ""
5349
 
5350
- #: languages/vue.php:111
5351
  msgid "Loading settings"
5352
  msgstr ""
5353
 
5354
  #. Translators: Number of visitors.
5355
- #: languages/vue.php:115
5356
  msgid "See how %s visitors found your site!"
5357
  msgstr ""
5358
 
5359
  #. Translators: Number of visitors.
5360
- #: languages/vue.php:119
5361
  msgid "Your website was visited by %s users in the last 30 days."
5362
  msgstr ""
5363
 
5364
- #: languages/vue.php:122
5365
  msgid "See the full analytics report!"
5366
  msgstr ""
5367
 
@@ -5409,4436 +5432,4461 @@ msgstr ""
5409
  msgid "Getting Started"
5410
  msgstr ""
5411
 
5412
- #: languages/vue.php:164
5413
  msgid "Lite vs Pro"
5414
  msgstr ""
5415
 
5416
- #: languages/vue.php:167
5417
  msgid "Success! "
5418
  msgstr ""
5419
 
5420
- #: languages/vue.php:170
5421
  msgid "You're now using ExactMetrics Pro with all the features."
5422
  msgstr ""
5423
 
5424
  #. Translators: Placeholder gets replaced with an arrow icon.
5425
- #: languages/vue.php:174
5426
  msgid "Get Started %s"
5427
  msgstr ""
5428
 
5429
  #. Translators: Error status and error text.
5430
- #: languages/vue.php:178
5431
  msgid "Can't load report data. Error: %1$s, %2$s"
5432
  msgstr ""
5433
 
5434
- #: languages/vue.php:181
5435
  msgid "Error loading report data"
5436
  msgstr ""
5437
 
5438
- #. Translators: Makes the text bold.
5439
- #: languages/vue.php:185
5440
  msgid "%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
5441
  msgstr ""
5442
 
5443
- #. Translators: Makes the text bold.
5444
- #: languages/vue.php:189
5445
  msgid "%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights."
5446
  msgstr ""
5447
 
5448
- #. Translators: Makes the text bold.
5449
- #: languages/vue.php:193
5450
  msgid "%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more."
5451
  msgstr ""
5452
 
5453
  #. Translators: Makes text bold.
5454
- #: languages/vue.php:197
5455
  msgid "%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress."
5456
  msgstr ""
5457
 
5458
- #. Translators: Makes the text bold.
5459
- #: languages/vue.php:201
5460
  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."
5461
  msgstr ""
5462
 
5463
- #. Translators: Makes the text bold.
5464
- #: languages/vue.php:205
5465
  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."
5466
  msgstr ""
5467
 
5468
- #. Translators: Makes the text bold.
5469
- #: languages/vue.php:209
5470
  msgid "%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically."
5471
  msgstr ""
5472
 
5473
  #. Translators: Makes text bold.
5474
- #: languages/vue.php:213
5475
  msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click."
5476
  msgstr ""
5477
 
5478
- #. Translators: Adds a link and an arrow icon.
5479
- #: languages/vue.php:217
5480
  msgid "%1$sSee All Features%2$s"
5481
  msgstr ""
5482
 
5483
- #: languages/vue.php:220
5484
  msgid "Pro Plan"
5485
  msgstr ""
5486
 
5487
- #: languages/vue.php:223
5488
  msgid "per year"
5489
  msgstr ""
5490
 
5491
- #: languages/vue.php:230
5492
  msgid "Upgrade to ExactMetrics Pro Now"
5493
  msgstr ""
5494
 
5495
- #: languages/vue.php:233
5496
  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!"
5497
  msgstr ""
5498
 
5499
- #: languages/vue.php:236
5500
  msgid "Daniel Monaghan - Experienced"
5501
  msgstr ""
5502
 
5503
- #: languages/vue.php:239
5504
  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."
5505
  msgstr ""
5506
 
5507
- #: languages/vue.php:242
5508
  msgid "Naomi Spirit - From This Day"
5509
  msgstr ""
5510
 
5511
- #: languages/vue.php:245
5512
  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!"
5513
  msgstr ""
5514
 
5515
- #: languages/vue.php:248
5516
  msgid "Julie Dupuis - Faraway Land Travel"
5517
  msgstr ""
5518
 
5519
- #: languages/vue.php:251
5520
  msgid "Guides and Documentation:"
5521
  msgstr ""
5522
 
5523
- #: languages/vue.php:255
5524
  msgid "Upgrade to PRO"
5525
  msgstr ""
5526
 
5527
- #: languages/vue.php:258
5528
  msgid "eCommerce Tracking"
5529
  msgstr ""
5530
 
5531
- #: languages/vue.php:262
5532
  msgid "Custom Dimensions"
5533
  msgstr ""
5534
 
5535
- #: languages/vue.php:265
5536
  msgid "Form Tracking"
5537
  msgstr ""
5538
 
5539
- #: languages/vue.php:268
5540
  msgid "AMP Support"
5541
  msgstr ""
5542
 
5543
- #: languages/vue.php:271
5544
  msgid "Author Tracking"
5545
  msgstr ""
5546
 
5547
- #: languages/vue.php:274
5548
  msgid "EU Compliance Addon"
5549
  msgstr ""
5550
 
5551
- #: languages/vue.php:277
5552
  msgid "Real Time Report"
5553
  msgstr ""
5554
 
5555
- #: languages/vue.php:280
5556
  msgid "Google Optimize"
5557
  msgstr ""
5558
 
5559
- #: languages/vue.php:283
5560
  #: lite/includes/admin/reports/report-queries.php:22
5561
  msgid "Search Console"
5562
  msgstr ""
5563
 
5564
- #: languages/vue.php:286
5565
  msgid "Custom Date Ranges"
5566
  msgstr ""
5567
 
5568
- #: languages/vue.php:289
5569
- #: languages/vue.php:919
5570
  msgid "Getting Started with ExactMetrics"
5571
  msgstr ""
5572
 
5573
- #: languages/vue.php:292
5574
- #: languages/vue.php:922
5575
  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."
5576
  msgstr ""
5577
 
5578
- #: languages/vue.php:295
5579
  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."
5580
  msgstr ""
5581
 
5582
- #: languages/vue.php:298
5583
  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!."
5584
  msgstr ""
5585
 
5586
- #: languages/vue.php:301
5587
  msgid "Launch the wizard!"
5588
  msgstr ""
5589
 
5590
- #: languages/vue.php:304
5591
  msgid "Welcome to"
5592
  msgstr ""
5593
 
5594
  #. Translators: Adds a line break.
5595
- #: languages/vue.php:308
5596
  msgid "Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin"
5597
  msgstr ""
5598
 
5599
- #. Translators: Makes the product name bold.
5600
- #: languages/vue.php:312
5601
  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."
5602
  msgstr ""
5603
 
5604
- #: languages/vue.php:315
5605
  msgid "ExactMetrics Features & Addons"
5606
  msgstr ""
5607
 
5608
- #: languages/vue.php:318
5609
  msgid "Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market."
5610
  msgstr ""
5611
 
5612
  #. Translators: Placeholder is replaced with WPForms.
5613
- #: languages/vue.php:322
5614
  msgid "Recommended Plugin: %s"
5615
  msgstr ""
5616
 
5617
- #: languages/vue.php:325
5618
  msgid "Install"
5619
  msgstr ""
5620
 
5621
- #: languages/vue.php:328
5622
  msgid "Activate"
5623
  msgstr ""
5624
 
5625
- #: languages/vue.php:336
5626
  msgid "ExactMetrics encountered an error loading your report data"
5627
  msgstr ""
5628
 
5629
- #: languages/vue.php:339
5630
  msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
5631
  msgstr ""
5632
 
5633
- #: languages/vue.php:342
5634
- #: languages/vue.php:1842
5635
  msgid "Reconnect ExactMetrics"
5636
  msgstr ""
5637
 
5638
- #: languages/vue.php:345
5639
  msgid "Re-Authenticating"
5640
  msgstr ""
5641
 
5642
- #: languages/vue.php:348
5643
  msgid "Ok"
5644
  msgstr ""
5645
 
5646
- #: languages/vue.php:351
5647
- #: languages/vue.php:858
5648
  msgid "ExactMetrics Addons"
5649
  msgstr ""
5650
 
5651
- #: languages/vue.php:354
5652
  msgid "Search Addons"
5653
  msgstr ""
5654
 
5655
- #: languages/vue.php:357
5656
  msgid "Save Changes"
5657
  msgstr ""
5658
 
5659
- #: languages/vue.php:360
5660
  msgid "Exit Setup"
5661
  msgstr ""
5662
 
5663
- #: languages/vue.php:363
5664
  msgid "Time to Purchase"
5665
  msgstr ""
5666
 
5667
- #: languages/vue.php:366
5668
  msgid "This list shows how many days from first visit it took users to purchase products from your site."
5669
  msgstr ""
5670
 
5671
- #: languages/vue.php:369
5672
  msgid "Sessions to Purchase"
5673
  msgstr ""
5674
 
5675
- #: languages/vue.php:372
5676
  msgid "This list shows the number of sessions it took users before they purchased a product from your website."
5677
  msgstr ""
5678
 
5679
- #: languages/vue.php:375
5680
  msgid "New Customers"
5681
  msgstr ""
5682
 
5683
- #: languages/vue.php:378
5684
  msgid "This list shows the percentage of new customers who purchased a product from your website."
5685
  msgstr ""
5686
 
5687
- #: languages/vue.php:381
5688
  msgid "Abandoned Checkouts"
5689
  msgstr ""
5690
 
5691
- #: languages/vue.php:384
5692
  msgid "This list shows the percentage of carts that never went through the checkout process."
5693
  msgstr ""
5694
 
5695
- #: languages/vue.php:387
5696
  msgid "Top Posts/Pages"
5697
  msgstr ""
5698
 
5699
- #: languages/vue.php:390
5700
  msgid "This list shows the most viewed posts and pages on your website."
5701
  msgstr ""
5702
 
5703
- #: languages/vue.php:393
5704
  msgid "New vs. Returning Visitors"
5705
  msgstr ""
5706
 
5707
- #: languages/vue.php:396
5708
  msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
5709
  msgstr ""
5710
 
5711
- #: languages/vue.php:399
5712
  msgid "Device Breakdown"
5713
  msgstr ""
5714
 
5715
- #: languages/vue.php:402
5716
  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."
5717
  msgstr ""
5718
 
5719
- #: languages/vue.php:405
5720
  msgid "Top Landing Pages"
5721
  msgstr ""
5722
 
5723
- #: languages/vue.php:408
5724
  msgid "This list shows the top pages users first land on when visiting your website."
5725
  msgstr ""
5726
 
5727
- #: languages/vue.php:411
5728
  msgid "Top Exit Pages"
5729
  msgstr ""
5730
 
5731
- #: languages/vue.php:414
5732
  msgid "This list shows the top pages users exit your website from."
5733
  msgstr ""
5734
 
5735
- #: languages/vue.php:417
5736
  msgid "Top Outbound Links"
5737
  msgstr ""
5738
 
5739
- #: languages/vue.php:420
5740
  msgid "This list shows the top links clicked on your website that go to another website."
5741
  msgstr ""
5742
 
5743
- #: languages/vue.php:423
5744
  msgid "Top Affiliate Links"
5745
  msgstr ""
5746
 
5747
- #: languages/vue.php:426
5748
  msgid "This list shows the top affiliate links your visitors clicked on."
5749
  msgstr ""
5750
 
5751
- #: languages/vue.php:429
5752
  msgid "Top Download Links"
5753
  msgstr ""
5754
 
5755
- #: languages/vue.php:432
5756
  msgid "This list shows the download links your visitors clicked the most."
5757
  msgstr ""
5758
 
5759
- #: languages/vue.php:438
5760
  msgid "Top Products"
5761
  msgstr ""
5762
 
5763
- #: languages/vue.php:441
5764
  msgid "This list shows the top selling products on your website."
5765
  msgstr ""
5766
 
5767
- #: languages/vue.php:444
5768
  msgid "Top Conversion Sources"
5769
  msgstr ""
5770
 
5771
- #: languages/vue.php:447
5772
  msgid "This list shows the top referral websites in terms of product revenue."
5773
  msgstr ""
5774
 
5775
- #: languages/vue.php:450
5776
  msgid "Total Add/Remove"
5777
  msgstr ""
5778
 
5779
- #: languages/vue.php:453
5780
  msgid "Analytics"
5781
  msgstr ""
5782
 
5783
  #. Translators: Adds an arrow icon.
5784
- #: languages/vue.php:457
5785
  msgid "View All Reports %s"
5786
  msgstr ""
5787
 
5788
- #: languages/vue.php:460
5789
  msgid "You must connect with ExactMetrics before you can view reports."
5790
  msgstr ""
5791
 
5792
- #: languages/vue.php:463
5793
  msgid "ExactMetrics makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
5794
  msgstr ""
5795
 
5796
- #: languages/vue.php:466
5797
  msgid "Launch Setup Wizard"
5798
  msgstr ""
5799
 
5800
- #: languages/vue.php:469
5801
  msgid "Please ask your webmaster to connect ExactMetrics to Google Analytics."
5802
  msgstr ""
5803
 
5804
- #: languages/vue.php:482
5805
  msgid "See Quick Links"
5806
  msgstr ""
5807
 
5808
- #: languages/vue.php:485
5809
  msgid "Suggest a Feature"
5810
  msgstr ""
5811
 
5812
- #: languages/vue.php:488
5813
  msgid "Join Our Community"
5814
  msgstr ""
5815
 
5816
- #: languages/vue.php:491
5817
  msgid "Support & Docs"
5818
  msgstr ""
5819
 
5820
- #: languages/vue.php:494
5821
  msgid "Upgrade to Pro &#187;"
5822
  msgstr ""
5823
 
5824
- #: languages/vue.php:497
5825
  #: lite/includes/admin/reports/report-publisher.php:22
5826
  msgid "Publishers"
5827
  msgstr ""
5828
 
5829
- #: languages/vue.php:500
5830
  #: lite/includes/admin/reports/report-ecommerce.php:22
5831
  msgid "eCommerce"
5832
  msgstr ""
5833
 
5834
- #: languages/vue.php:503
5835
  msgid "Dimensions Report"
5836
  msgstr ""
5837
 
5838
- #: languages/vue.php:506
5839
  #: lite/includes/admin/reports/report-forms.php:22
5840
  msgid "Forms"
5841
  msgstr ""
5842
 
5843
- #: languages/vue.php:509
5844
  msgid "Real-Time"
5845
  msgstr ""
5846
 
5847
- #: languages/vue.php:512
5848
  msgid "Site Speed Report"
5849
  msgstr ""
5850
 
5851
- #: languages/vue.php:516
5852
  msgid "2020 Year in Review"
5853
  msgstr ""
5854
 
5855
- #: languages/vue.php:519
5856
  msgid "Import Export"
5857
  msgstr ""
5858
 
5859
- #: languages/vue.php:522
5860
  msgid "PrettyLinks Integration"
5861
  msgstr ""
5862
 
5863
- #: languages/vue.php:528
5864
  msgid "Popular Posts Widget"
5865
  msgstr ""
5866
 
5867
- #: languages/vue.php:531
5868
  msgid "Popular Products"
5869
  msgstr ""
5870
 
5871
- #: languages/vue.php:537
5872
  msgid "Sub menu item for WooCommerce Analytics"
5873
  msgstr ""
5874
 
5875
- #: languages/vue.php:543
5876
  msgid "Engagement"
5877
  msgstr ""
5878
 
5879
- #: languages/vue.php:546
5880
  msgid "Publisher"
5881
  msgstr ""
5882
 
5883
- #: languages/vue.php:549
5884
  msgid "Conversions"
5885
  msgstr ""
5886
 
5887
- #: languages/vue.php:552
5888
  msgid "Advanced"
5889
  msgstr ""
5890
 
5891
- #: languages/vue.php:555
5892
  msgid "URL Builder"
5893
  msgstr ""
5894
 
5895
  #. Translators: Adds a link to documentation.
5896
- #: languages/vue.php:559
5897
  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"
5898
  msgstr ""
5899
 
5900
  #. Translators: Adds link to activate/install plugin and documentation.
5901
- #: languages/vue.php:563
5902
  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"
5903
  msgstr ""
5904
 
5905
  #. Translators: Adds a link to documentation.
5906
- #: languages/vue.php:567
5907
  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"
5908
  msgstr ""
5909
 
5910
  #. Translators: Adds link to activate/install plugin and documentation.
5911
- #: languages/vue.php:571
5912
  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"
5913
  msgstr ""
5914
 
5915
- #: languages/vue.php:574
5916
  msgid "Installing Addon"
5917
  msgstr ""
5918
 
5919
- #: languages/vue.php:577
5920
  msgid "Activating Addon"
5921
  msgstr ""
5922
 
5923
- #: languages/vue.php:580
5924
  msgid "Addon Activated"
5925
  msgstr ""
5926
 
5927
- #: languages/vue.php:583
5928
  msgid "Loading report data"
5929
  msgstr ""
5930
 
5931
- #: languages/vue.php:586
5932
  msgid "Please activate manually"
5933
  msgstr ""
5934
 
5935
  #. Translators: Adds the error status and status text.
5936
- #: languages/vue.php:590
5937
  msgid "Error: %1$s, %2$s"
5938
  msgstr ""
5939
 
5940
- #: languages/vue.php:593
5941
  msgid "Error Activating Addon"
5942
  msgstr ""
5943
 
5944
- #: languages/vue.php:596
5945
  #: lite/includes/admin/wp-site-health.php:372
5946
  #: lite/includes/admin/wp-site-health.php:398
5947
  #: lite/includes/admin/wp-site-health.php:425
5948
  msgid "View Addons"
5949
  msgstr ""
5950
 
5951
- #: languages/vue.php:599
5952
  msgid "Dismiss"
5953
  msgstr ""
5954
 
5955
- #: languages/vue.php:602
5956
  msgid "Redirecting"
5957
  msgstr ""
5958
 
5959
- #: languages/vue.php:605
5960
  msgid "Please wait"
5961
  msgstr ""
5962
 
5963
- #: languages/vue.php:608
5964
  msgid "activate"
5965
  msgstr ""
5966
 
5967
- #: languages/vue.php:611
5968
  msgid "install"
5969
  msgstr ""
5970
 
5971
- #: languages/vue.php:614
5972
  msgid "Visit addons page"
5973
  msgstr ""
5974
 
5975
- #: languages/vue.php:617
5976
  msgid "Report Unavailable"
5977
  msgstr ""
5978
 
5979
  #. Translators: Install/Activate the addon.
5980
- #: languages/vue.php:621
5981
  msgid "%s Addon"
5982
  msgstr ""
5983
 
5984
- #: languages/vue.php:624
5985
  msgid "Go Back To Reports"
5986
  msgstr ""
5987
 
5988
- #: languages/vue.php:627
5989
  msgid "Enable Enhanced eCommerce"
5990
  msgstr ""
5991
 
5992
  #. Translators: Placeholders are replaced with the current step number out of the total number of steps.
5993
- #: languages/vue.php:631
5994
  msgid "Step %1$s of %2$s"
5995
  msgstr ""
5996
 
5997
- #: languages/vue.php:634
5998
  msgid "Go back"
5999
  msgstr ""
6000
 
6001
- #: languages/vue.php:637
6002
  msgid "Welcome to ExactMetrics!"
6003
  msgstr ""
6004
 
6005
- #: languages/vue.php:640
6006
  msgid "Let's get you set up."
6007
  msgstr ""
6008
 
6009
- #: languages/vue.php:643
6010
  msgid "Save and Continue"
6011
  msgstr ""
6012
 
6013
- #: languages/vue.php:646
6014
  msgid "Which category best describes your website?"
6015
  msgstr ""
6016
 
6017
- #: languages/vue.php:649
6018
  msgid "We will recommend the optimal settings for ExactMetrics based on your choice."
6019
  msgstr ""
6020
 
6021
- #: languages/vue.php:652
6022
  msgid "Business Website"
6023
  msgstr ""
6024
 
6025
  #. Translators: Make text bold.
6026
- #: languages/vue.php:656
6027
  msgid "Publisher %1$s(Blog)%2$s"
6028
  msgstr ""
6029
 
6030
- #: languages/vue.php:659
6031
  msgid "Ecommerce"
6032
  msgstr ""
6033
 
6034
- #: languages/vue.php:662
6035
  msgid "Connect ExactMetrics to Your Website"
6036
  msgstr ""
6037
 
6038
- #: languages/vue.php:665
6039
  msgid "ExactMetrics connects Google Analytics to WordPress and shows you stats that matter."
6040
  msgstr ""
6041
 
6042
- #: languages/vue.php:669
6043
  msgid "Connect Google Analytics + WordPress"
6044
  msgstr ""
6045
 
6046
- #: languages/vue.php:673
6047
  msgid "You will be taken to the ExactMetrics website where you'll need to connect your Analytics account."
6048
  msgstr ""
6049
 
6050
- #: languages/vue.php:676
6051
  msgid "Whoops, something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually."
6052
  msgstr ""
6053
 
6054
- #: languages/vue.php:679
6055
  msgid "Manually enter your UA code"
6056
  msgstr ""
6057
 
6058
- #: languages/vue.php:682
6059
  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."
6060
  msgstr ""
6061
 
6062
- #: languages/vue.php:685
6063
  msgid "UA code can't be empty"
6064
  msgstr ""
6065
 
6066
- #: languages/vue.php:688
6067
  msgid "Saving UA code..."
6068
  msgstr ""
6069
 
6070
- #: languages/vue.php:691
6071
  msgid "ExactMetrics Recommends WPForms"
6072
  msgstr ""
6073
 
6074
- #: languages/vue.php:694
6075
  msgid "Built by the folks behind ExactMetrics, WPForms is the most beginner friendly form plugin in the market."
6076
  msgstr ""
6077
 
6078
- #: languages/vue.php:697
6079
  msgid "Used on over 4,000,000 websites!"
6080
  msgstr ""
6081
 
6082
- #: languages/vue.php:700
6083
  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!"
6084
  msgstr ""
6085
 
6086
- #: languages/vue.php:703
6087
  msgid "Skip this Step"
6088
  msgstr ""
6089
 
6090
- #: languages/vue.php:706
6091
  msgid "Continue & Install WPForms"
6092
  msgstr ""
6093
 
6094
- #: languages/vue.php:709
6095
  msgid "Installing..."
6096
  msgstr ""
6097
 
6098
- #: languages/vue.php:712
6099
  msgid "Recommended Settings"
6100
  msgstr ""
6101
 
6102
- #: languages/vue.php:715
6103
  msgid "ExactMetrics recommends the following settings based on your configuration."
6104
  msgstr ""
6105
 
6106
- #: languages/vue.php:718
6107
  msgid "Events Tracking"
6108
  msgstr ""
6109
 
6110
- #: languages/vue.php:721
6111
  msgid "Must have for all click tracking on site."
6112
  msgstr ""
6113
 
6114
- #: languages/vue.php:724
6115
  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."
6116
  msgstr ""
6117
 
6118
- #: languages/vue.php:727
6119
  msgid "Enhanced Link Attribution"
6120
  msgstr ""
6121
 
6122
- #: languages/vue.php:730
6123
  msgid "Improves the accuracy of your In-Page Analytics."
6124
  msgstr ""
6125
 
6126
- #: languages/vue.php:733
6127
  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."
6128
  msgstr ""
6129
 
6130
- #: languages/vue.php:736
6131
  msgid "Install Updates Automatically"
6132
  msgstr ""
6133
 
6134
- #: languages/vue.php:739
6135
  msgid "Get the latest features, bug fixes, and security updates as they are released."
6136
  msgstr ""
6137
 
6138
- #: languages/vue.php:742
6139
  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."
6140
  msgstr ""
6141
 
6142
- #: languages/vue.php:745
6143
  msgid "File Download Tracking"
6144
  msgstr ""
6145
 
6146
- #: languages/vue.php:748
6147
  msgid "Helps you see file downloads data."
6148
  msgstr ""
6149
 
6150
- #: languages/vue.php:751
6151
  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."
6152
  msgstr ""
6153
 
6154
  #. Translators: Example path (/go/).
6155
- #: languages/vue.php:755
6156
  msgid "Path (example: %s)"
6157
  msgstr ""
6158
 
6159
- #: languages/vue.php:758
6160
  msgid "Path has to start with a / and have no spaces"
6161
  msgstr ""
6162
 
6163
  #. Translators: Example label (aff).
6164
- #: languages/vue.php:762
6165
  msgid "Label (example: %s)"
6166
  msgstr ""
6167
 
6168
- #: languages/vue.php:765
6169
  msgid "Label can't contain any spaces"
6170
  msgstr ""
6171
 
6172
- #: languages/vue.php:768
6173
  msgid "Helps you increase affiliate revenue."
6174
  msgstr ""
6175
 
6176
- #: languages/vue.php:771
6177
  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."
6178
  msgstr ""
6179
 
6180
- #: languages/vue.php:774
6181
  msgid "Affiliate Link Tracking"
6182
  msgstr ""
6183
 
6184
- #: languages/vue.php:777
6185
  msgid "Who Can See Reports"
6186
  msgstr ""
6187
 
6188
- #: languages/vue.php:780
6189
  msgid "These user roles will be able to access ExactMetrics' reports in the WordPress admin area."
6190
  msgstr ""
6191
 
6192
- #: languages/vue.php:783
6193
  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."
6194
  msgstr ""
6195
 
6196
- #: languages/vue.php:786
6197
  msgid "Save and continue"
6198
  msgstr ""
6199
 
6200
- #: languages/vue.php:789
6201
  msgid "Events Tracking is enabled the moment you set up ExactMetrics"
6202
  msgstr ""
6203
 
6204
- #: languages/vue.php:792
6205
  msgid "Enhanced Link Attribution is enabled the moment you set up ExactMetrics"
6206
  msgstr ""
6207
 
6208
- #: languages/vue.php:795
6209
  msgid "+ Add Role"
6210
  msgstr ""
6211
 
6212
  #. Translators: Placeholders are used for making text bold and adding a link.
6213
- #: languages/vue.php:799
6214
  msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
6215
  msgstr ""
6216
 
6217
- #: languages/vue.php:802
6218
  #: lite/includes/admin/reports/report-dimensions.php:22
6219
  msgid "Dimensions"
6220
  msgstr ""
6221
 
6222
- #: languages/vue.php:805
6223
  msgid "Site Speed"
6224
  msgstr ""
6225
 
6226
- #: languages/vue.php:808
6227
  msgid "License Key"
6228
  msgstr ""
6229
 
6230
  #. Translators: Add link to retrieve license key from account.
6231
- #: languages/vue.php:812
6232
  msgid "Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
6233
  msgstr ""
6234
 
6235
- #: languages/vue.php:815
6236
  msgid "Google Authentication"
6237
  msgstr ""
6238
 
6239
- #: languages/vue.php:818
6240
  msgid "Miscellaneous"
6241
  msgstr ""
6242
 
6243
- #: languages/vue.php:821
6244
  msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
6245
  msgstr ""
6246
 
6247
- #: languages/vue.php:824
6248
  msgid "Hide Announcements"
6249
  msgstr ""
6250
 
6251
- #: languages/vue.php:827
6252
  msgid "You're using ExactMetrics Lite – no license needed. Enjoy!"
6253
  msgstr ""
6254
 
6255
  #. Translators: Adds link to upgrade.
6256
- #: languages/vue.php:831
6257
  msgid "To unlock more features consider %1$supgrading to PRO%2$s."
6258
  msgstr ""
6259
 
6260
- #: languages/vue.php:834
6261
  msgid "Receive 50% off automatically applied at the checkout!"
6262
  msgstr ""
6263
 
6264
- #: languages/vue.php:837
6265
  msgid "See all features"
6266
  msgstr ""
6267
 
6268
- #: languages/vue.php:840
6269
  msgid "Setup Wizard"
6270
  msgstr ""
6271
 
6272
- #: languages/vue.php:843
6273
  msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
6274
  msgstr ""
6275
 
6276
- #: languages/vue.php:846
6277
  msgid "Relaunch Setup Wizard"
6278
  msgstr ""
6279
 
6280
- #: languages/vue.php:849
6281
  msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
6282
  msgstr ""
6283
 
6284
- #: languages/vue.php:852
6285
  msgid "No addons found."
6286
  msgstr ""
6287
 
6288
- #: languages/vue.php:855
6289
  msgid "Refresh Addons"
6290
  msgstr ""
6291
 
6292
  #. Translators: Adds a line break.
6293
- #: languages/vue.php:862
6294
  msgid "Upgrade to Pro to unlock addons and other great features."
6295
  msgstr ""
6296
 
6297
- #: languages/vue.php:865
6298
  msgid "As a valued ExactMetrics Lite user you receive 50% off, automaticaly applied at checkout!"
6299
  msgstr ""
6300
 
6301
- #: languages/vue.php:868
6302
  msgid "Refreshing Addons"
6303
  msgstr ""
6304
 
6305
- #: languages/vue.php:871
6306
  msgid "Get ExactMetrics Pro Today and Unlock all the Powerful Features"
6307
  msgstr ""
6308
 
6309
  #. Translators: Placeholders make the text green.
6310
- #: languages/vue.php:875
6311
  msgid "Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
6312
  msgstr ""
6313
 
6314
- #: languages/vue.php:878
6315
  msgid "How to Connect to Google Analytics"
6316
  msgstr ""
6317
 
6318
- #: languages/vue.php:881
6319
  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."
6320
  msgstr ""
6321
 
6322
- #: languages/vue.php:884
6323
  msgid "Guide and Checklist for Advanced Insights"
6324
  msgstr ""
6325
 
6326
- #: languages/vue.php:887
6327
  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."
6328
  msgstr ""
6329
 
6330
- #: languages/vue.php:890
6331
  msgid "GDPR Guide"
6332
  msgstr ""
6333
 
6334
- #: languages/vue.php:893
6335
  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. "
6336
  msgstr ""
6337
 
6338
- #: languages/vue.php:896
6339
  msgid "How to Install and Activate ExactMetrics Addons"
6340
  msgstr ""
6341
 
6342
- #: languages/vue.php:899
6343
  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."
6344
  msgstr ""
6345
 
6346
- #: languages/vue.php:902
6347
  msgid "Enabling eCommerce Tracking and Reports"
6348
  msgstr ""
6349
 
6350
- #: languages/vue.php:905
6351
  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."
6352
  msgstr ""
6353
 
6354
- #: languages/vue.php:908
6355
  msgid "Read Documentation"
6356
  msgstr ""
6357
 
6358
  #. Translators: Makes the text bold.
6359
- #: languages/vue.php:912
6360
  msgid "%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress."
6361
  msgstr ""
6362
 
6363
  #. Translators: Makes the text bold.
6364
- #: languages/vue.php:916
6365
  msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post type, users, and other events with 1-click."
6366
  msgstr ""
6367
 
6368
- #: languages/vue.php:925
6369
  msgid "One-click Complete eCommerce tracking"
6370
  msgstr ""
6371
 
6372
- #: languages/vue.php:928
6373
  msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
6374
  msgstr ""
6375
 
6376
- #: languages/vue.php:931
6377
  msgid "Forms Tracking"
6378
  msgstr ""
6379
 
6380
- #: languages/vue.php:934
6381
  msgid "One-click Form Events Tracking"
6382
  msgstr ""
6383
 
6384
- #: languages/vue.php:937
6385
  msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
6386
  msgstr ""
6387
 
6388
- #: languages/vue.php:940
6389
  msgid "WordPress Admin Area Reports"
6390
  msgstr ""
6391
 
6392
- #: languages/vue.php:943
6393
  msgid "Standard Reports"
6394
  msgstr ""
6395
 
6396
- #: languages/vue.php:946
6397
  msgid "Overview Reports for the last 30 days."
6398
  msgstr ""
6399
 
6400
- #: languages/vue.php:949
6401
  msgid "Advanced Reports"
6402
  msgstr ""
6403
 
6404
- #: languages/vue.php:952
6405
  msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
6406
  msgstr ""
6407
 
6408
- #: languages/vue.php:955
6409
  msgid "Dashboard Widget"
6410
  msgstr ""
6411
 
6412
- #: languages/vue.php:958
6413
  msgid "Basic Widget"
6414
  msgstr ""
6415
 
6416
- #: languages/vue.php:961
6417
  msgid "Overview Report Synopsis"
6418
  msgstr ""
6419
 
6420
- #: languages/vue.php:964
6421
  msgid "Advanced Dashboard Widget"
6422
  msgstr ""
6423
 
6424
- #: languages/vue.php:967
6425
  msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
6426
  msgstr ""
6427
 
6428
- #: languages/vue.php:970
6429
  msgid "Publisher Reports"
6430
  msgstr ""
6431
 
6432
- #: languages/vue.php:973
6433
  msgid "Advanced Publisher Reports & Tracking"
6434
  msgstr ""
6435
 
6436
- #: languages/vue.php:976
6437
  msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
6438
  msgstr ""
6439
 
6440
- #: languages/vue.php:983
6441
  msgid "Email Summaries"
6442
  msgstr ""
6443
 
6444
- #: languages/vue.php:986
6445
  msgid "Included"
6446
  msgstr ""
6447
 
6448
- #: languages/vue.php:989
6449
  msgid "Get weekly traffic reports directly in your inbox."
6450
  msgstr ""
6451
 
6452
- #: languages/vue.php:995
6453
  msgid "Basic Options"
6454
  msgstr ""
6455
 
6456
- #: languages/vue.php:998
6457
  msgid "Order Popular Posts by comments or shares with 3 simple theme choices."
6458
  msgstr ""
6459
 
6460
- #: languages/vue.php:1001
6461
  msgid "Dynamic Popular Posts & Popular Products"
6462
  msgstr ""
6463
 
6464
- #: languages/vue.php:1004
6465
  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."
6466
  msgstr ""
6467
 
6468
- #: languages/vue.php:1007
6469
  msgid "Not Available"
6470
  msgstr ""
6471
 
6472
- #: languages/vue.php:1010
6473
  msgid "Complete Custom Dimensions Tracking"
6474
  msgstr ""
6475
 
6476
- #: languages/vue.php:1013
6477
  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"
6478
  msgstr ""
6479
 
6480
- #: languages/vue.php:1019
6481
  msgid "Limited Support"
6482
  msgstr ""
6483
 
6484
- #: languages/vue.php:1022
6485
  msgid "Priority Support"
6486
  msgstr ""
6487
 
6488
- #: languages/vue.php:1025
6489
  msgid "Get the most out of ExactMetrics by upgrading to Pro and unlocking all of the powerful features."
6490
  msgstr ""
6491
 
6492
- #: languages/vue.php:1028
6493
  msgid "Feature"
6494
  msgstr ""
6495
 
6496
- #: languages/vue.php:1031
6497
  msgid "Lite"
6498
  msgstr ""
6499
 
6500
- #: languages/vue.php:1034
6501
  msgid "Pro"
6502
  msgstr ""
6503
 
6504
- #: languages/vue.php:1037
6505
  msgid "Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout."
6506
  msgstr ""
6507
 
6508
- #: languages/vue.php:1044
6509
  msgid "Universal Tracking"
6510
  msgstr ""
6511
 
6512
- #: languages/vue.php:1047
6513
  msgid "Custom Google Analytics Link Tracking"
6514
  msgstr ""
6515
 
6516
- #: languages/vue.php:1050
6517
  msgid "Standard Tracking"
6518
  msgstr ""
6519
 
6520
- #: languages/vue.php:1053
6521
  msgid "Advanced Tracking"
6522
  msgstr ""
6523
 
6524
- #: languages/vue.php:1056
6525
  msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
6526
  msgstr ""
6527
 
6528
- #: languages/vue.php:1059
6529
  msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
6530
  msgstr ""
6531
 
6532
- #: languages/vue.php:1062
6533
  msgid "No-Code-Needed Tracking Features"
6534
  msgstr ""
6535
 
6536
- #: languages/vue.php:1065
6537
  msgid "Basic Tracking Options"
6538
  msgstr ""
6539
 
6540
- #: languages/vue.php:1068
6541
  msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
6542
  msgstr ""
6543
 
6544
- #: languages/vue.php:1071
6545
  msgid "Advanced Tracking Options"
6546
  msgstr ""
6547
 
6548
- #: languages/vue.php:1074
6549
  msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
6550
  msgstr ""
6551
 
6552
- #: languages/vue.php:1077
6553
  msgid "Inbox"
6554
  msgstr ""
6555
 
6556
- #: languages/vue.php:1080
6557
  msgid "Back to Inbox"
6558
  msgstr ""
6559
 
6560
- #: languages/vue.php:1083
6561
  msgid "View Dismissed"
6562
  msgstr ""
6563
 
6564
- #: languages/vue.php:1086
6565
  msgid "Notifications"
6566
  msgstr ""
6567
 
6568
- #: languages/vue.php:1089
6569
  msgid "Dismiss All"
6570
  msgstr ""
6571
 
6572
- #: languages/vue.php:1092
6573
  msgid "Dismissed"
6574
  msgstr ""
6575
 
6576
- #: languages/vue.php:1095
6577
  msgid "No Notifications"
6578
  msgstr ""
6579
 
6580
  #. Translators: Error status and error text.
6581
- #: languages/vue.php:1099
6582
  msgid "Can't load settings. Error: %1$s, %2$s"
6583
  msgstr ""
6584
 
6585
- #: languages/vue.php:1102
6586
  msgid "You appear to be offline."
6587
  msgstr ""
6588
 
6589
  #. Translators: Error status and error text.
6590
- #: languages/vue.php:1106
6591
  msgid "Can't save settings. Error: %1$s, %2$s"
6592
  msgstr ""
6593
 
6594
- #: languages/vue.php:1109
6595
  msgid "Network error encountered. Settings not saved."
6596
  msgstr ""
6597
 
6598
- #: languages/vue.php:1112
6599
  msgid "Show in widget mode"
6600
  msgstr ""
6601
 
6602
- #: languages/vue.php:1115
6603
  msgid "Show in full-width mode"
6604
  msgstr ""
6605
 
6606
- #: languages/vue.php:1118
6607
  msgid "Show Overview Reports"
6608
  msgstr ""
6609
 
6610
- #: languages/vue.php:1121
6611
  msgid "Show Publishers Reports"
6612
  msgstr ""
6613
 
6614
- #: languages/vue.php:1124
6615
  msgid "Show eCommerce Reports"
6616
  msgstr ""
6617
 
6618
- #: languages/vue.php:1127
6619
  msgid "Settings Menu"
6620
  msgstr ""
6621
 
6622
- #: languages/vue.php:1130
6623
  msgid "Available in PRO version"
6624
  msgstr ""
6625
 
6626
- #: languages/vue.php:1133
6627
  msgid "See All Reports"
6628
  msgstr ""
6629
 
6630
- #: languages/vue.php:1136
6631
  msgid "Go to the Analytics Dashboard"
6632
  msgstr ""
6633
 
6634
- #: languages/vue.php:1151
6635
  msgid "Cart Funnel"
6636
  msgstr ""
6637
 
6638
- #: languages/vue.php:1154
6639
  msgid "Customer Insights"
6640
  msgstr ""
6641
 
6642
- #: languages/vue.php:1157
6643
  msgid "Campaign Measurement"
6644
  msgstr ""
6645
 
6646
- #: languages/vue.php:1160
6647
  msgid "Customer Profiles"
6648
  msgstr ""
6649
 
6650
- #: languages/vue.php:1163
6651
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, revenue, and average order value, and more."
6652
  msgstr ""
6653
 
6654
- #: languages/vue.php:1166
6655
  msgid "Truly Understand Your%1$s Customers With %2$sExactMetrics%3$s"
6656
  msgstr ""
6657
 
6658
- #: languages/vue.php:1169
6659
  msgid "You never truly understand your customers until you used Enhanced %1$s eCommerce from ExactMetrics!"
6660
  msgstr ""
6661
 
6662
- #: languages/vue.php:1172
6663
  msgid "Track all-new metrics!"
6664
  msgstr ""
6665
 
6666
- #: languages/vue.php:1175
6667
  msgid "Get stats WooCommerce doesn’t give you like: Conversion Sources, Avg. Order Value, Revenue per Source, Total Add to Carts & More!"
6668
  msgstr ""
6669
 
6670
- #: languages/vue.php:1178
6671
  msgid "FEATURES"
6672
  msgstr ""
6673
 
6674
- #: languages/vue.php:1181
6675
  msgid "Get The Unique Metrics Neccessary for Growth"
6676
  msgstr ""
6677
 
6678
- #: languages/vue.php:1184
6679
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, %1$srevenue, and average order value, and more."
6680
  msgstr ""
6681
 
6682
- #: languages/vue.php:1187
6683
  msgid "Get Answers to the important questions %1$syou should know."
6684
  msgstr ""
6685
 
6686
- #: languages/vue.php:1190
6687
  msgid "Did the login/registration step of the checkout put users off?"
6688
  msgstr ""
6689
 
6690
- #: languages/vue.php:1193
6691
  msgid "Which ad campaign is driving the most revenue?"
6692
  msgstr ""
6693
 
6694
- #: languages/vue.php:1196
6695
  msgid "Who is my typical customer?"
6696
  msgstr ""
6697
 
6698
- #: languages/vue.php:1199
6699
  msgid "Level-up Your eCommerce store with %1$sExactMetrics + WooCommerce!%1$s"
6700
  msgstr ""
6701
 
6702
  #. Translators: Error status and error text.
6703
- #: languages/vue.php:1203
6704
  msgid "Can't deactivate the license. Error: %1$s, %2$s"
6705
  msgstr ""
6706
 
6707
  #. Translators: Error status and error text.
6708
- #: languages/vue.php:1207
6709
  msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
6710
  msgstr ""
6711
 
6712
  #. Translators: Error status and error text.
6713
- #: languages/vue.php:1211
6714
  msgid "Can't load license details. Error: %1$s, %2$s"
6715
  msgstr ""
6716
 
6717
- #: languages/vue.php:1214
6718
  msgid "Error loading license details"
6719
  msgstr ""
6720
 
6721
  #. Translators: Error status and error text.
6722
- #: languages/vue.php:1218
6723
  msgid "Can't verify the license. Error: %1$s, %2$s"
6724
  msgstr ""
6725
 
6726
  #. Translators: Error status and error text.
6727
- #: languages/vue.php:1222
6728
  msgid "Can't validate the license. Error: %1$s, %2$s"
6729
  msgstr ""
6730
 
6731
- #: languages/vue.php:1225
6732
  msgid "Reset to default"
6733
  msgstr ""
6734
 
6735
- #: languages/vue.php:1228
6736
  msgid "The value entered does not match the required format"
6737
  msgstr ""
6738
 
6739
- #: languages/vue.php:1231
6740
  msgid "Check out the newly added classic mode"
6741
  msgstr ""
6742
 
6743
  #. Translators: Placeholder adds a line break.
6744
- #: languages/vue.php:1235
6745
  msgid "You can customize your %sdate range only in the PRO version."
6746
  msgstr ""
6747
 
6748
- #: languages/vue.php:1238
6749
  msgid "Help Us Improve"
6750
  msgstr ""
6751
 
6752
- #: languages/vue.php:1241
6753
  msgid "Help us better understand our users and their website needs."
6754
  msgstr ""
6755
 
6756
  #. Translators: Adds a link to the documentation.
6757
- #: languages/vue.php:1245
6758
  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"
6759
  msgstr ""
6760
 
6761
  #. Translators: The name of the field that is throwing a validation error.
6762
- #: languages/vue.php:1249
6763
  msgid "%s can't be empty."
6764
  msgstr ""
6765
 
6766
- #: languages/vue.php:1252
6767
  msgid "Duplicate values are not allowed."
6768
  msgstr ""
6769
 
6770
- #: languages/vue.php:1255
6771
  msgid "You can add maximum 5 items."
6772
  msgstr ""
6773
 
6774
- #: languages/vue.php:1258
6775
  msgid "At least 0 item required."
6776
  msgstr ""
6777
 
6778
- #: languages/vue.php:1261
6779
  msgid "Add Another Link Path"
6780
  msgstr ""
6781
 
6782
- #: languages/vue.php:1264
6783
  msgid "Remove row"
6784
  msgstr ""
6785
 
6786
- #: languages/vue.php:1267
6787
  msgid "Sessions"
6788
  msgstr ""
6789
 
6790
  #. Translators: Line break.
6791
- #: languages/vue.php:1271
6792
  msgid "Unique %s Sessions"
6793
  msgstr ""
6794
 
6795
- #: languages/vue.php:1274
6796
  msgid "Pageviews"
6797
  msgstr ""
6798
 
6799
  #. Translators: Line break.
6800
- #: languages/vue.php:1278
6801
  msgid "Unique %s Pageviews"
6802
  msgstr ""
6803
 
6804
- #: languages/vue.php:1281
6805
  msgid "A session is the browsing session of a single user to your site."
6806
  msgstr ""
6807
 
6808
- #: languages/vue.php:1284
6809
  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."
6810
  msgstr ""
6811
 
6812
- #: languages/vue.php:1287
6813
  msgid "Total duration of all sessions (in seconds) / number of sessions."
6814
  msgstr ""
6815
 
6816
- #: languages/vue.php:1290
6817
  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."
6818
  msgstr ""
6819
 
6820
- #: languages/vue.php:1293
6821
  msgid "The number of distinct tracked users"
6822
  msgstr ""
6823
 
6824
- #: languages/vue.php:1296
6825
  msgid "Avg. Session Duration"
6826
  msgstr ""
6827
 
6828
- #: languages/vue.php:1302
6829
  msgid "Total Users"
6830
  msgstr ""
6831
 
6832
- #: languages/vue.php:1305
6833
  msgid "No options available"
6834
  msgstr ""
6835
 
6836
  #. Translators: Placeholders make the text highlighted.
6837
- #: languages/vue.php:1309
6838
  msgid "%1$sNeed%2$s to Grow FASTER??"
6839
  msgstr ""
6840
 
6841
- #: languages/vue.php:1312
6842
  msgid "Get additional, actionable insights by going Pro."
6843
  msgstr ""
6844
 
6845
- #: languages/vue.php:1315
6846
  msgid "Skip"
6847
  msgstr ""
6848
 
6849
- #: languages/vue.php:1318
6850
  msgid "See All Features"
6851
  msgstr ""
6852
 
6853
- #: languages/vue.php:1321
6854
  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."
6855
  msgstr ""
6856
 
6857
- #: languages/vue.php:1324
6858
  msgid "Our Pro plan includes:"
6859
  msgstr ""
6860
 
6861
  #. Translators: Error status and error text.
6862
- #: languages/vue.php:1328
6863
  msgid "Can't load errors. Error: %1$s, %2$s"
6864
  msgstr ""
6865
 
6866
- #: languages/vue.php:1331
6867
  msgid "Real-Time Report"
6868
  msgstr ""
6869
 
6870
- #: languages/vue.php:1334
6871
  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."
6872
  msgstr ""
6873
 
6874
  #. Translators: add link to blog.
6875
- #: languages/vue.php:1338
6876
  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."
6877
  msgstr ""
6878
 
6879
- #: languages/vue.php:1342
6880
  msgid "Here's what you get:"
6881
  msgstr ""
6882
 
6883
- #: languages/vue.php:1345
6884
  msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
6885
  msgstr ""
6886
 
6887
- #: languages/vue.php:1348
6888
  msgid "See Your Top Pages Immediately After Making Changes"
6889
  msgstr ""
6890
 
6891
- #: languages/vue.php:1351
6892
  msgid "See Your Top Referral Sources and Adapt Faster"
6893
  msgstr ""
6894
 
6895
- #: languages/vue.php:1354
6896
  msgid "See Your Traffic Demographics"
6897
  msgstr ""
6898
 
6899
- #: languages/vue.php:1357
6900
  msgid "Get Fresh Report Data Every 60 Seconds"
6901
  msgstr ""
6902
 
6903
- #: languages/vue.php:1360
6904
  msgid "See Where Your Visitors are Connecting From (country & city)"
6905
  msgstr ""
6906
 
6907
- #: languages/vue.php:1363
6908
  msgid "Forms Report"
6909
  msgstr ""
6910
 
6911
- #: languages/vue.php:1366
6912
  msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
6913
  msgstr ""
6914
 
6915
- #: languages/vue.php:1369
6916
  msgid "See Your Top Converting Forms and Optimize"
6917
  msgstr ""
6918
 
6919
- #: languages/vue.php:1372
6920
  msgid "See Your Forms Impressions Count to Find the Best Placement"
6921
  msgstr ""
6922
 
6923
- #: languages/vue.php:1375
6924
  msgid "Awesome, You're All Set!"
6925
  msgstr ""
6926
 
6927
- #: languages/vue.php:1378
6928
  msgid "ExactMetrics is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
6929
  msgstr ""
6930
 
6931
  #. Translators: Make text bold.
6932
- #: languages/vue.php:1382
6933
  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."
6934
  msgstr ""
6935
 
6936
  #. Translators: Add link to blog.
6937
  #. Translators: Link to our blog.
6938
- #: languages/vue.php:1386
6939
- #: languages/vue.php:3591
6940
  msgid "%1$sSubscribe to the ExactMetrics blog%2$s for tips on how to get more traffic and grow your business."
6941
  msgstr ""
6942
 
6943
- #: languages/vue.php:1389
6944
  msgid "Finish Setup & Exit Wizard"
6945
  msgstr ""
6946
 
6947
- #: languages/vue.php:1392
6948
  msgid "Google Analytics"
6949
  msgstr ""
6950
 
6951
- #: languages/vue.php:1395
6952
  msgid "Subscribe"
6953
  msgstr ""
6954
 
6955
- #: languages/vue.php:1398
6956
  msgid "Checking your website..."
6957
  msgstr ""
6958
 
6959
- #: languages/vue.php:1401
6960
  msgid "Recommended Addons"
6961
  msgstr ""
6962
 
6963
  #. Translators: Add a link to upgrade and make the text green.
6964
- #: languages/vue.php:1405
6965
  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!"
6966
  msgstr ""
6967
 
6968
- #: languages/vue.php:1408
6969
  msgid "Upgrade to PRO Now"
6970
  msgstr ""
6971
 
6972
- #: languages/vue.php:1411
6973
  msgid "See who’s viewing and submitting your forms, so you can increase your conversion rate."
6974
  msgstr ""
6975
 
6976
- #: languages/vue.php:1414
6977
  msgid "See All Your Important Store Metrics in One Place."
6978
  msgstr ""
6979
 
6980
- #: languages/vue.php:1417
6981
  msgid "... and more:"
6982
  msgstr ""
6983
 
6984
- #: languages/vue.php:1420
6985
  msgid "Dimensions- Track authors, categories, trags, searches, users and more."
6986
  msgstr ""
6987
 
6988
- #: languages/vue.php:1423
6989
  msgid "EU Compliance- Improve compliance with GDPR and other privacy regulations."
6990
  msgstr ""
6991
 
6992
- #: languages/vue.php:1426
6993
  msgid "AMP- ExactMetrics Google AMP Addon enables accurate tracking of all mobile visitors to your AMP-enabled pages."
6994
  msgstr ""
6995
 
6996
- #: languages/vue.php:1429
6997
  msgid "Facebook Instant Articles- Integrate Google Analytics and Facebook Instant Articles with just one click."
6998
  msgstr ""
6999
 
7000
- #: languages/vue.php:1432
7001
  msgid "eCommerce- Sales tracking for your WooCommerce, Easy Digital Downloads, LifterLMS or MemberPress stores."
7002
  msgstr ""
7003
 
7004
- #: languages/vue.php:1435
7005
  msgid "Google Optimize- Easily enable Google Optimize on your WordPress site."
7006
  msgstr ""
7007
 
7008
- #: languages/vue.php:1438
7009
  msgid "Forms- Enable tracking of your form views, submissions and conversion rates."
7010
  msgstr ""
7011
 
7012
- #: languages/vue.php:1441
7013
  msgid "Ads- See who’s clicking on your Google Adsense banner ads."
7014
  msgstr ""
7015
 
7016
- #: languages/vue.php:1444
7017
  msgid "Hello and Welcome to ExactMetrics, the Best Google Analytics Plugin for WordPress."
7018
  msgstr ""
7019
 
7020
- #: languages/vue.php:1447
7021
  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."
7022
  msgstr ""
7023
 
7024
- #: languages/vue.php:1450
7025
  msgid "The ExactMetrics Team"
7026
  msgstr ""
7027
 
7028
- #: languages/vue.php:1453
7029
  msgid "Custom Dimensions Report"
7030
  msgstr ""
7031
 
7032
- #: languages/vue.php:1456
7033
  msgid "Unlock the Dimensions Report and decide what data is important using your own custom tracking parameters"
7034
  msgstr ""
7035
 
7036
- #: languages/vue.php:1459
7037
  msgid "The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
7038
  msgstr ""
7039
 
7040
- #: languages/vue.php:1462
7041
  msgid "Author tracking to see which author’s posts generate the most traffic"
7042
  msgstr ""
7043
 
7044
- #: languages/vue.php:1465
7045
  msgid "Post Type tracking to see which WordPress post types perform better"
7046
  msgstr ""
7047
 
7048
- #: languages/vue.php:1468
7049
  msgid "Category tracking to see which sections of your sites are the most popular"
7050
  msgstr ""
7051
 
7052
- #: languages/vue.php:1471
7053
  msgid "SEO score tracking to see which blog SEO scores are the most popular"
7054
  msgstr ""
7055
 
7056
- #: languages/vue.php:1474
7057
  msgid "Focus Keyword tracking to see which of your content is doing well in search engines."
7058
  msgstr ""
7059
 
7060
- #: languages/vue.php:1477
7061
  msgid "Tag tracking to determine which topics are the most engaging to for your website visitors."
7062
  msgstr ""
7063
 
7064
  #. Translators: add link to blog.
7065
- #: languages/vue.php:1481
7066
  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."
7067
  msgstr ""
7068
 
7069
- #: languages/vue.php:1484
7070
  msgid "See Your Homepage's Overall Performance Score"
7071
  msgstr ""
7072
 
7073
- #: languages/vue.php:1487
7074
  msgid "Run an Audit on Your Homepage and See Your Server Response Time"
7075
  msgstr ""
7076
 
7077
- #: languages/vue.php:1490
7078
  msgid "Learn How Long It Takes for Your Viewers to Interact With Your Site"
7079
  msgstr ""
7080
 
7081
- #: languages/vue.php:1493
7082
  msgid "Learn How to Improve the Core Metrics that Google Uses to Rank Your Site"
7083
  msgstr ""
7084
 
7085
- #: languages/vue.php:1496
7086
  msgid "Hide dashboard widget"
7087
  msgstr ""
7088
 
7089
- #: languages/vue.php:1499
7090
  msgid "Are you sure you want to hide the ExactMetrics Dashboard Widget? "
7091
  msgstr ""
7092
 
7093
- #: languages/vue.php:1502
7094
  msgid "Yes, hide it!"
7095
  msgstr ""
7096
 
7097
- #: languages/vue.php:1505
7098
  msgid "No, cancel!"
7099
  msgstr ""
7100
 
7101
- #: languages/vue.php:1508
7102
  msgid "ExactMetrics Widget Hidden"
7103
  msgstr ""
7104
 
7105
- #: languages/vue.php:1511
7106
  msgid "You can re-enable the ExactMetrics widget at any time using the \"Screen Options\" menu on the top right of this page"
7107
  msgstr ""
7108
 
7109
  #. Translators: Error status and error text.
7110
- #: languages/vue.php:1515
7111
  msgid "Can't deauthenticate. Error: %1$s, %2$s"
7112
  msgstr ""
7113
 
7114
  #. Translators: Error status and error text.
7115
- #: languages/vue.php:1519
7116
  msgid "Can't load authentication details. Error: %1$s, %2$s"
7117
  msgstr ""
7118
 
7119
- #: languages/vue.php:1522
7120
  msgid "You appear to be offline. Settings not saved."
7121
  msgstr ""
7122
 
7123
  #. Translators: Error status and error text.
7124
- #: languages/vue.php:1526
7125
  msgid "Can't authenticate. Error: %1$s, %2$s"
7126
  msgstr ""
7127
 
7128
  #. Translators: Error status and error text.
7129
- #: languages/vue.php:1530
7130
  msgid "Can't reauthenticate. Error: %1$s, %2$s"
7131
  msgstr ""
7132
 
7133
  #. Translators: Error status and error text.
7134
- #: languages/vue.php:1534
7135
  msgid "Can't verify credentials. Error: %1$s, %2$s"
7136
  msgstr ""
7137
 
7138
- #: languages/vue.php:1537
7139
  msgid "Still Calculating..."
7140
  msgstr ""
7141
 
7142
- #: languages/vue.php:1540
7143
  msgid "Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year."
7144
  msgstr ""
7145
 
7146
- #: languages/vue.php:1543
7147
  msgid "Back to Overview Report"
7148
  msgstr ""
7149
 
7150
- #: languages/vue.php:1546
7151
  msgid "Your 2020 Analytics Report"
7152
  msgstr ""
7153
 
7154
- #: languages/vue.php:1549
7155
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2021!"
7156
  msgstr ""
7157
 
7158
- #: languages/vue.php:1552
7159
  msgid "Audience"
7160
  msgstr ""
7161
 
7162
- #: languages/vue.php:1555
7163
  msgid "Congrats"
7164
  msgstr ""
7165
 
7166
- #: languages/vue.php:1558
7167
  msgid "Your website was quite popular this year! "
7168
  msgstr ""
7169
 
7170
- #: languages/vue.php:1561
7171
  msgid "You had "
7172
  msgstr ""
7173
 
7174
- #: languages/vue.php:1564
7175
  msgid " visitors!"
7176
  msgstr ""
7177
 
7178
- #: languages/vue.php:1567
7179
  msgid " visitors"
7180
  msgstr ""
7181
 
7182
- #: languages/vue.php:1570
7183
  msgid "Total Visitors"
7184
  msgstr ""
7185
 
7186
- #: languages/vue.php:1573
7187
  msgid "Total Sessions"
7188
  msgstr ""
7189
 
7190
- #: languages/vue.php:1576
7191
  msgid "Visitors by Month"
7192
  msgstr ""
7193
 
7194
- #: languages/vue.php:1579
7195
  msgid "January 1, 2020 - December 31, 2020"
7196
  msgstr ""
7197
 
7198
- #: languages/vue.php:1582
7199
  msgid "A Tip for 2021"
7200
  msgstr ""
7201
 
7202
- #: languages/vue.php:1585
7203
  msgid "Demographics"
7204
  msgstr ""
7205
 
7206
- #: languages/vue.php:1588
7207
  msgid "#1"
7208
  msgstr ""
7209
 
7210
- #: languages/vue.php:1591
7211
  msgid "You Top 5 Countries"
7212
  msgstr ""
7213
 
7214
- #: languages/vue.php:1594
7215
  msgid "Let’s get to know your visitors a little better, shall we?"
7216
  msgstr ""
7217
 
7218
- #: languages/vue.php:1597
7219
  msgid "Gender"
7220
  msgstr ""
7221
 
7222
- #: languages/vue.php:1600
7223
  msgid "Female"
7224
  msgstr ""
7225
 
7226
- #: languages/vue.php:1603
7227
  msgid "Women"
7228
  msgstr ""
7229
 
7230
- #: languages/vue.php:1606
7231
  msgid "Male"
7232
  msgstr ""
7233
 
7234
- #: languages/vue.php:1609
7235
  msgid "Average Age"
7236
  msgstr ""
7237
 
7238
- #: languages/vue.php:1612
7239
  msgid "Behavior"
7240
  msgstr ""
7241
 
7242
- #: languages/vue.php:1615
7243
  msgid "Your Top 5 Pages"
7244
  msgstr ""
7245
 
7246
- #: languages/vue.php:1618
7247
  msgid "Time Spent on Site"
7248
  msgstr ""
7249
 
7250
- #: languages/vue.php:1621
7251
  msgid "minutes"
7252
  msgstr ""
7253
 
7254
- #: languages/vue.php:1624
7255
  msgid "Device Type"
7256
  msgstr ""
7257
 
7258
- #: languages/vue.php:1627
7259
  msgid "A Tip For 2021"
7260
  msgstr ""
7261
 
7262
- #: languages/vue.php:1630
7263
  msgid "Are you looking for a way to track your landing pages and see which one gets the most conversions on your website?"
7264
  msgstr ""
7265
 
7266
- #: languages/vue.php:1633
7267
  msgid "Read - How to Track Google Analytics Landing Page Conversions"
7268
  msgstr ""
7269
 
7270
- #: languages/vue.php:1636
7271
  msgid "So, where did all of these visitors come from?"
7272
  msgstr ""
7273
 
7274
- #: languages/vue.php:1639
7275
  msgid "Clicks"
7276
  msgstr ""
7277
 
7278
- #: languages/vue.php:1642
7279
  msgid "Your Top 5 Keywords"
7280
  msgstr ""
7281
 
7282
- #: languages/vue.php:1645
7283
  msgid "What keywords visitors searched for to find your site"
7284
  msgstr ""
7285
 
7286
- #: languages/vue.php:1648
7287
  msgid "Your Top 5 Referrals"
7288
  msgstr ""
7289
 
7290
- #: languages/vue.php:1651
7291
  msgid "The websites that link back to your website"
7292
  msgstr ""
7293
 
7294
- #: languages/vue.php:1654
7295
  msgid "Opportunity"
7296
  msgstr ""
7297
 
7298
- #: languages/vue.php:1657
7299
  msgid "Learn how to boost your SEO rankings using ExactMetrics so more visitors reach your articles and increase engagement."
7300
  msgstr ""
7301
 
7302
- #: languages/vue.php:1660
7303
  msgid "Read - 5 Ways to Skyrocket Your SEO Rankings with Google Analytics"
7304
  msgstr ""
7305
 
7306
- #: languages/vue.php:1663
7307
  msgid "Thank you for using ExactMetrics!"
7308
  msgstr ""
7309
 
7310
- #: languages/vue.php:1666
7311
  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."
7312
  msgstr ""
7313
 
7314
- #: languages/vue.php:1669
7315
  msgid "Here's to an amazing 2021!"
7316
  msgstr ""
7317
 
7318
- #: languages/vue.php:1672
7319
  msgid "Enjoying ExactMetrics"
7320
  msgstr ""
7321
 
7322
- #: languages/vue.php:1675
7323
  msgid "Leave a five star review!"
7324
  msgstr ""
7325
 
7326
- #: languages/vue.php:1678
7327
  msgid "Syed Balkhi"
7328
  msgstr ""
7329
 
7330
- #: languages/vue.php:1681
7331
  msgid "Chris Christoff"
7332
  msgstr ""
7333
 
7334
- #: languages/vue.php:1684
7335
  msgid "Write Review"
7336
  msgstr ""
7337
 
7338
- #: languages/vue.php:1687
7339
  msgid "Did you know over 10 million websites use our plugins?"
7340
  msgstr ""
7341
 
7342
- #: languages/vue.php:1690
7343
  msgid "Try our other popular WordPress plugins to grow your website in 2021."
7344
  msgstr ""
7345
 
7346
- #: languages/vue.php:1693
7347
  msgid "Join our Communities!"
7348
  msgstr ""
7349
 
7350
- #: languages/vue.php:1696
7351
  msgid "Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level."
7352
  msgstr ""
7353
 
7354
- #: languages/vue.php:1699
7355
  msgid "Facebook Group"
7356
  msgstr ""
7357
 
7358
- #: languages/vue.php:1702
7359
  msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
7360
  msgstr ""
7361
 
7362
- #: languages/vue.php:1705
7363
  msgid "Join Now...It’s Free!"
7364
  msgstr ""
7365
 
7366
- #: languages/vue.php:1708
7367
  msgid "WordPress Tutorials by WPBeginner"
7368
  msgstr ""
7369
 
7370
- #: languages/vue.php:1711
7371
  msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
7372
  msgstr ""
7373
 
7374
- #: languages/vue.php:1714
7375
  msgid "Visit WPBeginner"
7376
  msgstr ""
7377
 
7378
- #: languages/vue.php:1717
7379
  msgid "Follow Us!"
7380
  msgstr ""
7381
 
7382
- #: languages/vue.php:1720
7383
  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."
7384
  msgstr ""
7385
 
7386
- #: languages/vue.php:1723
7387
  msgid "Copyright ExactMetrics, 2021"
7388
  msgstr ""
7389
 
7390
- #: languages/vue.php:1726
7391
  msgid "Upgrade to ExactMetrics Pro to Unlock Additional Actionable Insights"
7392
  msgstr ""
7393
 
7394
- #: languages/vue.php:1732
7395
  msgid "January"
7396
  msgstr ""
7397
 
7398
- #: languages/vue.php:1735
7399
  msgid "February"
7400
  msgstr ""
7401
 
7402
- #: languages/vue.php:1738
7403
  msgid "March"
7404
  msgstr ""
7405
 
7406
- #: languages/vue.php:1741
7407
  msgid "April"
7408
  msgstr ""
7409
 
7410
- #: languages/vue.php:1744
7411
  msgid "May"
7412
  msgstr ""
7413
 
7414
- #: languages/vue.php:1747
7415
  msgid "June"
7416
  msgstr ""
7417
 
7418
- #: languages/vue.php:1750
7419
  msgid "July"
7420
  msgstr ""
7421
 
7422
- #: languages/vue.php:1753
7423
  msgid "August"
7424
  msgstr ""
7425
 
7426
- #: languages/vue.php:1756
7427
  msgid "September"
7428
  msgstr ""
7429
 
7430
- #: languages/vue.php:1759
7431
  msgid "October"
7432
  msgstr ""
7433
 
7434
- #: languages/vue.php:1762
7435
  msgid "November"
7436
  msgstr ""
7437
 
7438
- #: languages/vue.php:1765
7439
  msgid "December"
7440
  msgstr ""
7441
 
7442
  #. Translators: Number of visitors.
7443
- #: languages/vue.php:1769
7444
  msgid "Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>"
7445
  msgstr ""
7446
 
7447
- #: languages/vue.php:1772
7448
  msgid "See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success."
7449
  msgstr ""
7450
 
7451
  #. Translators: Number of visitors.
7452
- #: languages/vue.php:1776
7453
  msgid "Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries."
7454
  msgstr ""
7455
 
7456
  #. Translators: Number of visitors.
7457
- #: languages/vue.php:1780
7458
  msgid "%s Visitors"
7459
  msgstr ""
7460
 
7461
  #. Translators: Percent and Number of visitors.
7462
- #: languages/vue.php:1784
7463
  msgid "%1$s&#37 of your visitors were %2$s"
7464
  msgstr ""
7465
 
7466
  #. Translators: Number of visitors and their age.
7467
- #: languages/vue.php:1788
7468
  msgid "%1$s&#37 of your visitors were between the ages of %2$s"
7469
  msgstr ""
7470
 
7471
- #: languages/vue.php:1791
7472
  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>"
7473
  msgstr ""
7474
 
7475
  #. Translators: Number of minutes spent on site.
7476
- #: languages/vue.php:1795
7477
  msgid "Each visitor spent an average of %s minutes on your website in 2020."
7478
  msgstr ""
7479
 
7480
  #. Translators: Name of device type.
7481
- #: languages/vue.php:1799
7482
  msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
7483
  msgstr ""
7484
 
7485
  #. Translators: Number of visitors and device percentage.
7486
- #: languages/vue.php:1803
7487
  msgid "%1$s&#37 of your visitors were on a %2$s device."
7488
  msgstr ""
7489
 
7490
- #: languages/vue.php:1806
7491
  msgid "Desktop"
7492
  msgstr ""
7493
 
7494
- #: languages/vue.php:1809
7495
  msgid "Tablet"
7496
  msgstr ""
7497
 
7498
- #: languages/vue.php:1812
7499
  msgid "Mobile"
7500
  msgstr ""
7501
 
7502
- #: languages/vue.php:1815
7503
  msgid "Force Deauthenticate"
7504
  msgstr ""
7505
 
7506
- #: languages/vue.php:1818
7507
  msgid "Disconnect ExactMetrics"
7508
  msgstr ""
7509
 
7510
- #: languages/vue.php:1821
7511
  msgid "Authenticating"
7512
  msgstr ""
7513
 
7514
- #: languages/vue.php:1824
7515
  msgid "Verifying Credentials"
7516
  msgstr ""
7517
 
7518
- #: languages/vue.php:1827
7519
  msgid "Your site is connected to ExactMetrics!"
7520
  msgstr ""
7521
 
7522
- #: languages/vue.php:1830
7523
  msgid "Deauthenticating"
7524
  msgstr ""
7525
 
7526
- #: languages/vue.php:1833
7527
  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."
7528
  msgstr ""
7529
 
7530
- #: languages/vue.php:1836
7531
- #: languages/vue.php:1914
7532
  msgid "Connect ExactMetrics"
7533
  msgstr ""
7534
 
7535
- #: languages/vue.php:1839
7536
  msgid "Verify Credentials"
7537
  msgstr ""
7538
 
7539
- #: languages/vue.php:1845
7540
  msgid "Website Profile"
7541
  msgstr ""
7542
 
7543
- #: languages/vue.php:1848
7544
  msgid "Active Profile"
7545
  msgstr ""
7546
 
7547
- #: languages/vue.php:1851
7548
  msgid "Your website profile has been set at the network level of your WordPress Multisite."
7549
  msgstr ""
7550
 
7551
- #: languages/vue.php:1854
7552
  msgid "If you would like to use a different profile for this subsite, you can authenticate below."
7553
  msgstr ""
7554
 
7555
- #: languages/vue.php:1858
7556
  msgid "Dual Tracking Profile"
7557
  msgstr ""
7558
 
7559
- #: languages/vue.php:1862
7560
  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."
7561
  msgstr ""
7562
 
7563
- #: languages/vue.php:1866
7564
  msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers."
7565
  msgstr ""
7566
 
7567
- #: languages/vue.php:1870
7568
  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."
7569
  msgstr ""
7570
 
7571
- #: languages/vue.php:1873
7572
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
7573
  msgstr ""
7574
 
7575
- #: languages/vue.php:1877
7576
  msgid "Measurement Protocol API Secret"
7577
  msgstr ""
7578
 
7579
- #: languages/vue.php:1881
7580
  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."
7581
  msgstr ""
7582
 
7583
- #: languages/vue.php:1884
7584
  msgid "Classic mode"
7585
  msgstr ""
7586
 
7587
- #: languages/vue.php:1887
7588
  msgid "Proceed"
7589
  msgstr ""
7590
 
7591
- #: languages/vue.php:1890
7592
  msgid "Connection Information"
7593
  msgstr ""
7594
 
7595
- #: languages/vue.php:1893
7596
  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."
7597
  msgstr ""
7598
 
7599
- #: languages/vue.php:1896
7600
  msgid "Hostname"
7601
  msgstr ""
7602
 
7603
- #: languages/vue.php:1899
7604
  msgid "FTP Username"
7605
  msgstr ""
7606
 
7607
- #: languages/vue.php:1902
7608
  msgid "FTP Password"
7609
  msgstr ""
7610
 
7611
- #: languages/vue.php:1905
7612
  msgid "This password will not be stored on the server."
7613
  msgstr ""
7614
 
7615
- #: languages/vue.php:1908
7616
  msgid "Connection Type"
7617
  msgstr ""
7618
 
7619
- #: languages/vue.php:1911
7620
  msgid "Cancel"
7621
  msgstr ""
7622
 
7623
- #: languages/vue.php:1917
7624
  msgid "Website profile"
7625
  msgstr ""
7626
 
7627
- #: languages/vue.php:1920
7628
  msgid "Active profile"
7629
  msgstr ""
7630
 
7631
- #: languages/vue.php:1923
7632
  msgid "Skip and Keep Connection"
7633
  msgstr ""
7634
 
7635
- #. Translators: Replaced with the number of days
7636
- #: languages/vue.php:1927
7637
  msgid "vs. Previous Day"
7638
  msgstr ""
7639
 
7640
- #: languages/vue.php:1930
7641
  msgid "No change"
7642
  msgstr ""
7643
 
7644
- #: languages/vue.php:1933
7645
  msgid "Choose Theme"
7646
  msgstr ""
7647
 
7648
- #: languages/vue.php:1936
7649
  msgid "Widget Styling"
7650
  msgstr ""
7651
 
7652
- #: languages/vue.php:1939
7653
  msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
7654
  msgstr ""
7655
 
7656
- #: languages/vue.php:1942
7657
  msgid "Sort By"
7658
  msgstr ""
7659
 
7660
- #: languages/vue.php:1945
7661
  msgid "Choose how you'd like the widget to determine your popular posts."
7662
  msgstr ""
7663
 
7664
- #: languages/vue.php:1948
7665
  msgid "Display Title"
7666
  msgstr ""
7667
 
7668
- #: languages/vue.php:1954
7669
  msgid "Title your widget and set its display preferences."
7670
  msgstr ""
7671
 
7672
- #: languages/vue.php:1957
7673
  msgid "Include in Post Types"
7674
  msgstr ""
7675
 
7676
- #: languages/vue.php:1960
7677
  msgid "Exclude from specific posts"
7678
  msgstr ""
7679
 
7680
  #. Translators: Placeholders make the text bold.
7681
- #: languages/vue.php:1964
7682
  msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
7683
  msgstr ""
7684
 
7685
  #. Translators: Placeholders make the text bold.
7686
- #: languages/vue.php:1968
7687
  msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
7688
  msgstr ""
7689
 
7690
- #: languages/vue.php:1971
7691
  msgid "Loading Themes"
7692
  msgstr ""
7693
 
7694
  #. Translators: placeholders make text small.
7695
- #: languages/vue.php:1975
7696
  msgid "Default Styles %1$s- As seen above.%2$s"
7697
  msgstr ""
7698
 
7699
  #. Translators: placeholders make text small.
7700
- #: languages/vue.php:1979
7701
  msgid "No Styles %1$s- Use your own CSS.%2$s"
7702
  msgstr ""
7703
 
7704
  #. Translators: placeholders make text small.
7705
- #: languages/vue.php:1983
7706
  msgid "Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s"
7707
  msgstr ""
7708
 
7709
  #. Translators: placeholders make text small.
7710
- #: languages/vue.php:1987
7711
  msgid "SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s"
7712
  msgstr ""
7713
 
7714
  #. Translators: placeholders make text small.
7715
- #: languages/vue.php:1991
7716
  msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
7717
  msgstr ""
7718
 
7719
- #: languages/vue.php:1994
7720
  msgid "Placement"
7721
  msgstr ""
7722
 
7723
- #: languages/vue.php:1997
7724
  msgid "Choose how you'd like to place the widget."
7725
  msgstr ""
7726
 
7727
- #: languages/vue.php:2000
7728
  msgid "Insert After"
7729
  msgstr ""
7730
 
7731
- #: languages/vue.php:2003
7732
  msgid "Choose where in the post body the widget will be placed."
7733
  msgstr ""
7734
 
7735
- #: languages/vue.php:2006
7736
  msgid "Customize Design"
7737
  msgstr ""
7738
 
7739
- #: languages/vue.php:2009
7740
  msgid "words"
7741
  msgstr ""
7742
 
7743
- #: languages/vue.php:2012
7744
  msgid "Please select at least one post to display."
7745
  msgstr ""
7746
 
7747
  #. Translators: placeholders make text small.
7748
- #: languages/vue.php:2016
7749
  msgid "Automatic %1$s- The widget is automatically placed inside the post body.%2$s"
7750
  msgstr ""
7751
 
7752
  #. Translators: placeholders make text small.
7753
- #: languages/vue.php:2020
7754
  msgid "Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s"
7755
  msgstr ""
7756
 
7757
- #: languages/vue.php:2023
7758
  msgid "Caching"
7759
  msgstr ""
7760
 
7761
- #: languages/vue.php:2026
7762
  msgid "Enable Data Caching"
7763
  msgstr ""
7764
 
7765
- #: languages/vue.php:2029
7766
  msgid "Refresh Cache Every"
7767
  msgstr ""
7768
 
7769
- #: languages/vue.php:2032
7770
  msgid "Choose how often to refresh the cache."
7771
  msgstr ""
7772
 
7773
- #: languages/vue.php:2035
7774
  msgid "Enable Ajaxify"
7775
  msgstr ""
7776
 
7777
- #: languages/vue.php:2038
7778
  msgid "Ajaxify Widget"
7779
  msgstr ""
7780
 
7781
- #: languages/vue.php:2041
7782
  msgid "Use to bypass page caching."
7783
  msgstr ""
7784
 
7785
- #: languages/vue.php:2044
7786
  msgid "Empty Cache"
7787
  msgstr ""
7788
 
7789
- #: languages/vue.php:2047
7790
  msgid "Click to manually wipe the cache right now."
7791
  msgstr ""
7792
 
7793
- #: languages/vue.php:2050
7794
  msgid "Popular posts cache emptied"
7795
  msgstr ""
7796
 
7797
- #: languages/vue.php:2053
7798
  msgid "Error emptying the popular posts cache. Please try again."
7799
  msgstr ""
7800
 
7801
- #: languages/vue.php:2056
7802
  msgid "Last 30 Days Analytics for "
7803
  msgstr ""
7804
 
7805
- #: languages/vue.php:2059
7806
  msgid "Your Website"
7807
  msgstr ""
7808
 
7809
- #: languages/vue.php:2062
7810
  msgid "Avg. Duration"
7811
  msgstr ""
7812
 
7813
- #: languages/vue.php:2065
7814
  msgid "More data is available"
7815
  msgstr ""
7816
 
7817
- #: languages/vue.php:2068
7818
  msgid "Want to see page-specific stats?"
7819
  msgstr ""
7820
 
7821
- #: languages/vue.php:2071
7822
  msgid "You appear to be offline. WPForms not installed."
7823
  msgstr ""
7824
 
7825
  #. Translators: Error status and error text.
7826
- #: languages/vue.php:2075
7827
  msgid "Can't activate addon. Error: %1$s, %2$s"
7828
  msgstr ""
7829
 
7830
- #: languages/vue.php:2078
7831
  msgid "You appear to be offline. Addon not activated."
7832
  msgstr ""
7833
 
7834
  #. Translators: Error status and error text.
7835
- #: languages/vue.php:2082
7836
  msgid "Can't deactivate addon. Error: %1$s, %2$s"
7837
  msgstr ""
7838
 
7839
- #: languages/vue.php:2085
7840
  msgid "You appear to be offline. Addon not deactivated."
7841
  msgstr ""
7842
 
7843
  #. Translators: Error status and error text.
7844
- #: languages/vue.php:2089
7845
  msgid "Can't install plugin. Error: %1$s, %2$s"
7846
  msgstr ""
7847
 
7848
- #: languages/vue.php:2092
7849
  msgid "You appear to be offline. Plugin not installed."
7850
  msgstr ""
7851
 
7852
  #. Translators: Error status and error text.
7853
- #: languages/vue.php:2096
7854
  msgid "Can't install addon. Error: %1$s, %2$s"
7855
  msgstr ""
7856
 
7857
- #: languages/vue.php:2099
7858
  msgid "You appear to be offline. Addon not installed."
7859
  msgstr ""
7860
 
7861
  #. Translators: Error status and error text.
7862
- #: languages/vue.php:2103
7863
  msgid "Can't install WPForms. Error: %1$s, %2$s"
7864
  msgstr ""
7865
 
7866
- #: languages/vue.php:2106
7867
  msgid "Network Active"
7868
  msgstr ""
7869
 
7870
- #: languages/vue.php:2109
7871
  msgid "Active"
7872
  msgstr ""
7873
 
7874
- #: languages/vue.php:2112
7875
  msgid "Inactive"
7876
  msgstr ""
7877
 
7878
  #. Translators: Placeholder for the addon status (installed, active, etc).
7879
- #: languages/vue.php:2116
7880
  msgid "Status: %s"
7881
  msgstr ""
7882
 
7883
- #: languages/vue.php:2119
7884
  msgid "Not Installed"
7885
  msgstr ""
7886
 
7887
  #. Translators: Makes text bold and adds smiley.
7888
- #: languages/vue.php:2123
7889
  msgid "You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
7890
  msgstr ""
7891
 
7892
  #. Translators: Makes text green.
7893
- #: languages/vue.php:2127
7894
  msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout."
7895
  msgstr ""
7896
 
7897
- #: languages/vue.php:2130
7898
  msgid "Unlock All Features and Upgrade to Pro"
7899
  msgstr ""
7900
 
7901
  #. Translators: Make text green and add smiley face.
7902
- #: languages/vue.php:2134
7903
  msgid "You're using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
7904
  msgstr ""
7905
 
7906
  #. Translators: Make text green.
7907
- #: languages/vue.php:2138
7908
  msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
7909
  msgstr ""
7910
 
7911
- #: languages/vue.php:2141
7912
  msgid "Unlock PRO Features Now"
7913
  msgstr ""
7914
 
7915
- #: languages/vue.php:2144
7916
  msgid "Paste your license key here"
7917
  msgstr ""
7918
 
7919
- #: languages/vue.php:2147
7920
  msgid "Verify"
7921
  msgstr ""
7922
 
7923
  #. Translators: Add link to retrieve license from account area.
7924
- #: languages/vue.php:2151
7925
  msgid "Already purchased? Simply enter your license key below to connect with ExactMetrics PRO! %1$sRetrieve your license key%2$s."
7926
  msgstr ""
7927
 
7928
- #: languages/vue.php:2154
7929
- #: languages/vue.php:3628
7930
  msgid "There was an error unlocking ExactMetrics PRO please try again or install manually."
7931
  msgstr ""
7932
 
7933
- #: languages/vue.php:2157
7934
  msgid "%1$sAll-in-One SEO%2$s Makes SEO Simple. Gain Valuable Organic Traffic."
7935
  msgstr ""
7936
 
7937
- #: languages/vue.php:2160
7938
  msgid "Automatically migrate all of your SEO settings with just 1 click!"
7939
  msgstr ""
7940
 
7941
- #: languages/vue.php:2163
7942
  msgid "1,938"
7943
  msgstr ""
7944
 
7945
- #: languages/vue.php:2166
7946
  msgid "2+ Million Active Installs"
7947
  msgstr ""
7948
 
7949
- #: languages/vue.php:2169
7950
  msgid "AIOSEO is the DIY Solution for Managing your SEO"
7951
  msgstr ""
7952
 
7953
- #: languages/vue.php:2172
7954
  msgid "Set up the proper SEO foundations in less than 10 minutes."
7955
  msgstr ""
7956
 
7957
- #: languages/vue.php:2175
7958
  msgid "SEO Audit Checklist"
7959
  msgstr ""
7960
 
7961
- #: languages/vue.php:2178
7962
  msgid "Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic."
7963
  msgstr ""
7964
 
7965
- #: languages/vue.php:2181
7966
  msgid "Optimize Your Pages For Higher Rankings With TruSEO Score."
7967
  msgstr ""
7968
 
7969
- #: languages/vue.php:2184
7970
  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."
7971
  msgstr ""
7972
 
7973
- #: languages/vue.php:2187
7974
  msgid "Get AIOSEO for WordPress"
7975
  msgstr ""
7976
 
7977
- #: languages/vue.php:2190
7978
  msgid "Get the #1 Most Powerful WordPress SEO Plugin Today"
7979
  msgstr ""
7980
 
7981
- #: languages/vue.php:2193
7982
  msgid "Try it out today, for free."
7983
  msgstr ""
7984
 
7985
- #: languages/vue.php:2196
7986
  msgid "Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings."
7987
  msgstr ""
7988
 
7989
- #: languages/vue.php:2199
7990
  msgid "Activate and Install the Plugin with just one click!"
7991
  msgstr ""
7992
 
7993
- #: languages/vue.php:2202
7994
  msgid "Installing AIOSEO..."
7995
  msgstr ""
7996
 
7997
- #: languages/vue.php:2205
7998
  msgid "Congrats! All-in-One SEO Installed."
7999
  msgstr ""
8000
 
8001
- #: languages/vue.php:2208
8002
  msgid "Switch to AIOSEO"
8003
  msgstr ""
8004
 
8005
- #: languages/vue.php:2211
8006
  msgid "Installation Failed. Please refresh and try again."
8007
  msgstr ""
8008
 
8009
- #: languages/vue.php:2214
8010
  msgid "Activating AIOSEO..."
8011
  msgstr ""
8012
 
8013
- #: languages/vue.php:2217
8014
  msgid "Activate AIOSEO"
8015
  msgstr ""
8016
 
8017
- #: languages/vue.php:2220
8018
  msgid "Activation Failed. Please refresh and try again."
8019
  msgstr ""
8020
 
8021
- #: languages/vue.php:2223
8022
  msgid "Unlock Form Tracking"
8023
  msgstr ""
8024
 
8025
- #: languages/vue.php:2226
8026
  msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
8027
  msgstr ""
8028
 
8029
- #: languages/vue.php:2229
8030
  msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
8031
  msgstr ""
8032
 
8033
- #: languages/vue.php:2232
8034
  msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
8035
  msgstr ""
8036
 
8037
- #: languages/vue.php:2235
8038
  msgid "Show"
8039
  msgstr ""
8040
 
8041
- #: languages/vue.php:2238
8042
  msgid "File imported"
8043
  msgstr ""
8044
 
8045
- #: languages/vue.php:2241
8046
  msgid "Settings successfully updated!"
8047
  msgstr ""
8048
 
8049
- #: languages/vue.php:2244
8050
  msgid "Error importing settings"
8051
  msgstr ""
8052
 
8053
- #: languages/vue.php:2247
8054
  msgid "Please choose a .json file generated by a ExactMetrics settings export."
8055
  msgstr ""
8056
 
8057
- #: languages/vue.php:2250
8058
  msgid "Import/Export"
8059
  msgstr ""
8060
 
8061
- #: languages/vue.php:2253
8062
  msgid "Import"
8063
  msgstr ""
8064
 
8065
- #: languages/vue.php:2256
8066
  msgid "Import settings from another ExactMetrics website."
8067
  msgstr ""
8068
 
8069
- #: languages/vue.php:2259
8070
  msgid "Export"
8071
  msgstr ""
8072
 
8073
- #: languages/vue.php:2262
8074
  msgid "Export settings to import into another ExactMetrics install."
8075
  msgstr ""
8076
 
8077
- #: languages/vue.php:2265
8078
  msgid "Import Settings"
8079
  msgstr ""
8080
 
8081
- #: languages/vue.php:2268
8082
  msgid "Export Settings"
8083
  msgstr ""
8084
 
8085
- #: languages/vue.php:2271
8086
  msgid "Please choose a file to import"
8087
  msgstr ""
8088
 
8089
- #: languages/vue.php:2274
8090
  msgid "Click Choose file below to select the settings export file from another site."
8091
  msgstr ""
8092
 
8093
- #: languages/vue.php:2277
8094
  msgid "Use the button below to export a file with your ExactMetrics settings."
8095
  msgstr ""
8096
 
8097
- #: languages/vue.php:2280
8098
  msgid "Choose file"
8099
  msgstr ""
8100
 
8101
- #: languages/vue.php:2283
8102
  msgid "No file chosen"
8103
  msgstr ""
8104
 
8105
- #: languages/vue.php:2286
8106
  msgid "Uploading file..."
8107
  msgstr ""
8108
 
8109
- #: languages/vue.php:2289
8110
  msgid "Custom code"
8111
  msgstr ""
8112
 
8113
  #. Translators: Adds a link to the Google reference.
8114
- #: languages/vue.php:2293
8115
  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."
8116
  msgstr ""
8117
 
8118
- #: languages/vue.php:2299
8119
  msgid "Automatic Updates"
8120
  msgstr ""
8121
 
8122
- #: languages/vue.php:2302
8123
  msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
8124
  msgstr ""
8125
 
8126
- #: languages/vue.php:2305
8127
  msgid "Hide Admin Bar Reports"
8128
  msgstr ""
8129
 
8130
  #. Translators: placeholders make text small.
8131
- #: languages/vue.php:2309
8132
  msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
8133
  msgstr ""
8134
 
8135
  #. Translators: placeholders make text small.
8136
- #: languages/vue.php:2313
8137
  msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
8138
  msgstr ""
8139
 
8140
  #. Translators: placeholders make text small.
8141
- #: languages/vue.php:2317
8142
  msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
8143
  msgstr ""
8144
 
8145
  #. Translators: placeholders make text small.
8146
- #: languages/vue.php:2321
8147
  msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
8148
  msgstr ""
8149
 
8150
  #. Translators: placeholders make text small.
8151
- #: languages/vue.php:2325
8152
  msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
8153
  msgstr ""
8154
 
8155
  #. Translators: placeholders make text small.
8156
- #: languages/vue.php:2329
8157
  msgid "None %1$s- Manually update everything.%2$s"
8158
  msgstr ""
8159
 
8160
  #. Translators: Adds a link to the general settings tab.
8161
- #: languages/vue.php:2333
8162
  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."
8163
  msgstr ""
8164
 
8165
- #: languages/vue.php:2336
8166
  msgid "Permissions"
8167
  msgstr ""
8168
 
8169
- #: languages/vue.php:2339
8170
  msgid "Export PDF Reports"
8171
  msgstr ""
8172
 
8173
- #: languages/vue.php:2342
8174
  msgid "Allow These User Roles to See Reports"
8175
  msgstr ""
8176
 
8177
- #: languages/vue.php:2345
8178
  msgid "Users that have at least one of these roles will be able to view the reports."
8179
  msgstr ""
8180
 
8181
- #: languages/vue.php:2348
8182
  msgid "Allow These User Roles to Save Settings"
8183
  msgstr ""
8184
 
8185
- #: languages/vue.php:2351
8186
  msgid "Users that have at least one of these roles will be able to view and save the settings panel."
8187
  msgstr ""
8188
 
8189
- #: languages/vue.php:2354
8190
  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."
8191
  msgstr ""
8192
 
8193
- #: languages/vue.php:2357
8194
  msgid "Exclude These User Roles From Tracking"
8195
  msgstr ""
8196
 
8197
- #: languages/vue.php:2360
8198
  msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
8199
  msgstr ""
8200
 
8201
- #: languages/vue.php:2363
8202
  msgid "Make your ExactMetrics campaign links prettier with Pretty Links!"
8203
  msgstr ""
8204
 
8205
- #: languages/vue.php:2366
8206
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links."
8207
  msgstr ""
8208
 
8209
- #: languages/vue.php:2369
8210
  msgid "Take your ExactMetrics campaign links from our URL Builder and shorten them with Pretty Links!"
8211
  msgstr ""
8212
 
8213
- #: languages/vue.php:2372
8214
  msgid "Over 200,000 websites use Pretty Links!"
8215
  msgstr ""
8216
 
8217
- #: languages/vue.php:2375
8218
  msgid "Install Pretty Links"
8219
  msgstr ""
8220
 
8221
- #: languages/vue.php:2378
8222
  msgid "Pretty Links Installed & Activated"
8223
  msgstr ""
8224
 
8225
- #: languages/vue.php:2381
8226
  msgid "Download Pretty Links"
8227
  msgstr ""
8228
 
8229
- #: languages/vue.php:2384
8230
  msgid "Install Pretty Links from the WordPress.org plugin repository."
8231
  msgstr ""
8232
 
8233
- #: languages/vue.php:2387
8234
  msgid "Activate Pretty Links"
8235
  msgstr ""
8236
 
8237
- #: languages/vue.php:2390
8238
  msgid "Activating Pretty Links..."
8239
  msgstr ""
8240
 
8241
- #: languages/vue.php:2393
8242
  msgid "Create New Pretty Link"
8243
  msgstr ""
8244
 
8245
- #: languages/vue.php:2396
8246
  msgid "Create a New Pretty Link"
8247
  msgstr ""
8248
 
8249
- #: languages/vue.php:2399
8250
  msgid "Grab your campaign link and paste it into the Target URL field."
8251
  msgstr ""
8252
 
8253
- #: languages/vue.php:2402
8254
  msgid "Custom Campaign Parameters"
8255
  msgstr ""
8256
 
8257
- #: languages/vue.php:2405
8258
  msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
8259
  msgstr ""
8260
 
8261
- #: languages/vue.php:2408
8262
  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."
8263
  msgstr ""
8264
 
8265
  #. Translators: Marks the field as required.
8266
- #: languages/vue.php:2412
8267
  msgid "Website URL %s"
8268
  msgstr ""
8269
 
8270
  #. Translators: Display the current website url in italic.
8271
- #: languages/vue.php:2416
8272
  msgid "The full website URL (e.g. %1$s %2$s%3$s)"
8273
  msgstr ""
8274
 
8275
  #. Translators: Marks the field as required.
8276
- #: languages/vue.php:2420
8277
  msgid "Campaign Source %s"
8278
  msgstr ""
8279
 
8280
  #. Translators: Make the text italic.
8281
- #: languages/vue.php:2424
8282
  msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
8283
  msgstr ""
8284
 
8285
  #. Translators: Make the text italic.
8286
- #: languages/vue.php:2428
8287
  msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
8288
  msgstr ""
8289
 
8290
  #. Translators: Make the text italic.
8291
- #: languages/vue.php:2432
8292
  msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
8293
  msgstr ""
8294
 
8295
- #: languages/vue.php:2435
8296
  msgid "Enter the paid keyword"
8297
  msgstr ""
8298
 
8299
- #: languages/vue.php:2438
8300
  msgid "Enter something to differentiate ads"
8301
  msgstr ""
8302
 
8303
- #: languages/vue.php:2441
8304
  msgid "Use Fragment"
8305
  msgstr ""
8306
 
8307
  #. Translators: Make the text bold.
8308
- #: languages/vue.php:2445
8309
  msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
8310
  msgstr ""
8311
 
8312
- #: languages/vue.php:2448
8313
  msgid "URL to use"
8314
  msgstr ""
8315
 
8316
- #: languages/vue.php:2451
8317
  msgid "(Updates automatically)"
8318
  msgstr ""
8319
 
8320
- #: languages/vue.php:2454
8321
  msgid "Copy to Clipboard"
8322
  msgstr ""
8323
 
8324
- #: languages/vue.php:2457
8325
  msgid "Copy to Pretty Links"
8326
  msgstr ""
8327
 
8328
- #: languages/vue.php:2460
8329
  msgid "Make your campaign links prettier!"
8330
  msgstr ""
8331
 
8332
- #: languages/vue.php:2463
8333
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links."
8334
  msgstr ""
8335
 
8336
- #: languages/vue.php:2466
8337
  msgid "More Information & Examples"
8338
  msgstr ""
8339
 
8340
- #: languages/vue.php:2469
8341
  msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
8342
  msgstr ""
8343
 
8344
- #: languages/vue.php:2472
8345
  msgid "Campaign Source"
8346
  msgstr ""
8347
 
8348
- #: languages/vue.php:2475
8349
  msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
8350
  msgstr ""
8351
 
8352
- #: languages/vue.php:2478
8353
  msgid "Campaign Medium"
8354
  msgstr ""
8355
 
8356
- #: languages/vue.php:2481
8357
  msgid "Use utm_medium to identify a medium such as email or cost-per-click."
8358
  msgstr ""
8359
 
8360
- #: languages/vue.php:2484
8361
  msgid "Campaign Name"
8362
  msgstr ""
8363
 
8364
- #: languages/vue.php:2487
8365
  msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
8366
  msgstr ""
8367
 
8368
- #: languages/vue.php:2490
8369
  msgid "Campaign Term"
8370
  msgstr ""
8371
 
8372
- #: languages/vue.php:2493
8373
  msgid "Used for paid search. Use utm_term to note the keywords for this ad."
8374
  msgstr ""
8375
 
8376
- #: languages/vue.php:2496
8377
  msgid "Campaign Content"
8378
  msgstr ""
8379
 
8380
- #: languages/vue.php:2499
8381
  msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
8382
  msgstr ""
8383
 
8384
  #. Translators: Example.
8385
- #: languages/vue.php:2503
8386
  msgid "Example: %s"
8387
  msgstr ""
8388
 
8389
  #. Translators: Examples.
8390
- #: languages/vue.php:2507
8391
  msgid "Examples: %s"
8392
  msgstr ""
8393
 
8394
- #: languages/vue.php:2510
8395
  msgid "About Campaigns"
8396
  msgstr ""
8397
 
8398
- #: languages/vue.php:2513
8399
  msgid "About Custom Campaigns"
8400
  msgstr ""
8401
 
8402
- #: languages/vue.php:2516
8403
  msgid "Best Practices for Creating Custom Campaigns"
8404
  msgstr ""
8405
 
8406
- #: languages/vue.php:2519
8407
  msgid "About the Referral Traffic Report"
8408
  msgstr ""
8409
 
8410
- #: languages/vue.php:2522
8411
  msgid "About Traffic Source Dimensions"
8412
  msgstr ""
8413
 
8414
- #: languages/vue.php:2525
8415
  msgid "AdWords Auto-Tagging"
8416
  msgstr ""
8417
 
8418
- #: languages/vue.php:2528
8419
  msgid "Additional Information"
8420
  msgstr ""
8421
 
8422
- #: languages/vue.php:2531
8423
  msgid "Affiliate Links"
8424
  msgstr ""
8425
 
8426
  #. Translators: Add links to documentation.
8427
- #: languages/vue.php:2535
8428
  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."
8429
  msgstr ""
8430
 
8431
- #: languages/vue.php:2538
8432
  msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
8433
  msgstr ""
8434
 
8435
- #: languages/vue.php:2541
8436
  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."
8437
  msgstr ""
8438
 
8439
- #: languages/vue.php:2544
8440
  msgid "Disable the Headline Analyzer"
8441
  msgstr ""
8442
 
8443
  #. Translators: Add line break.
8444
- #: languages/vue.php:2548
8445
  msgid "See All Your Important Store%s Metrics in One Place"
8446
  msgstr ""
8447
 
8448
- #: languages/vue.php:2551
8449
  msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
8450
  msgstr ""
8451
 
8452
- #: languages/vue.php:2554
8453
  msgid "See Your Conversion Rate to Improve Funnel"
8454
  msgstr ""
8455
 
8456
- #: languages/vue.php:2557
8457
  msgid "See The Number of Transactions and Make Data-Driven Decisions"
8458
  msgstr ""
8459
 
8460
- #: languages/vue.php:2560
8461
  msgid "See The Total Revenue to Track Growth"
8462
  msgstr ""
8463
 
8464
- #: languages/vue.php:2563
8465
  msgid "See Average Order Value to Find Offer Opportunities"
8466
  msgstr ""
8467
 
8468
- #: languages/vue.php:2566
8469
  msgid "See Your Top Products to See Individual Performance"
8470
  msgstr ""
8471
 
8472
- #: languages/vue.php:2569
8473
  msgid "See your Top Conversion Sources and Focus on what's Working"
8474
  msgstr ""
8475
 
8476
- #: languages/vue.php:2572
8477
  msgid "See The Time it Takes for Customers to Purchase"
8478
  msgstr ""
8479
 
8480
- #: languages/vue.php:2575
8481
  msgid "See How Many Sessions are Needed for a Purchase"
8482
  msgstr ""
8483
 
8484
- #: languages/vue.php:2578
8485
  msgid "Automatically Track Affiliate Sales"
8486
  msgstr ""
8487
 
8488
- #: languages/vue.php:2581
8489
  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."
8490
  msgstr ""
8491
 
8492
- #: languages/vue.php:2584
8493
  msgid "Works with WooCommerce, MemberPress, and EasyDigitalDownloads."
8494
  msgstr ""
8495
 
8496
- #: languages/vue.php:2587
8497
  msgid "Cross Domain Tracking"
8498
  msgstr ""
8499
 
8500
  #. Translators: Add links to documentation.
8501
- #: languages/vue.php:2591
8502
  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."
8503
  msgstr ""
8504
 
8505
- #: languages/vue.php:2594
8506
  msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
8507
  msgstr ""
8508
 
8509
- #: languages/vue.php:2597
8510
  msgid "Anonymize IP Addresses"
8511
  msgstr ""
8512
 
8513
- #: languages/vue.php:2600
8514
  msgid "Link Attribution"
8515
  msgstr ""
8516
 
8517
- #: languages/vue.php:2603
8518
  msgid "Enable Enhanced Link Attribution"
8519
  msgstr ""
8520
 
8521
- #: languages/vue.php:2606
8522
  msgid "Enable Anchor Tracking"
8523
  msgstr ""
8524
 
8525
- #: languages/vue.php:2609
8526
  msgid "Enable allowAnchor"
8527
  msgstr ""
8528
 
8529
- #: languages/vue.php:2612
8530
  msgid "Enable allowLinker"
8531
  msgstr ""
8532
 
8533
- #: languages/vue.php:2615
8534
  msgid "Enable Tag Links in RSS"
8535
  msgstr ""
8536
 
8537
- #: languages/vue.php:2618
8538
  msgid "File Downloads"
8539
  msgstr ""
8540
 
8541
- #: languages/vue.php:2621
8542
  msgid "Extensions of Files to Track as Downloads"
8543
  msgstr ""
8544
 
8545
- #: languages/vue.php:2624
8546
  msgid "ExactMetrics will send an event to Google Analytics if a link to a file has one of the above extensions."
8547
  msgstr ""
8548
 
8549
  #. Translators: Add links to documentation.
8550
- #: languages/vue.php:2628
8551
  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."
8552
  msgstr ""
8553
 
8554
  #. Translators: Add links to documentation.
8555
- #: languages/vue.php:2632
8556
  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."
8557
  msgstr ""
8558
 
8559
  #. Translators: Add links to documentation.
8560
- #: languages/vue.php:2636
8561
  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."
8562
  msgstr ""
8563
 
8564
- #: languages/vue.php:2639
8565
  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."
8566
  msgstr ""
8567
 
8568
  #. Translators: Add links to documentation.
8569
- #: languages/vue.php:2643
8570
  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."
8571
  msgstr ""
8572
 
8573
  #. Translators: Add links to documentation.
8574
- #: languages/vue.php:2647
8575
  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."
8576
  msgstr ""
8577
 
8578
  #. Translators: Add links to documentation.
8579
- #: languages/vue.php:2651
8580
  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."
8581
  msgstr ""
8582
 
8583
- #: languages/vue.php:2654
8584
  msgid "Add domain"
8585
  msgstr ""
8586
 
8587
  #. Translators: Domain name example.
8588
- #: languages/vue.php:2658
8589
  msgid "Domain (example: %s)"
8590
  msgstr ""
8591
 
8592
  #. Translators: Current domain name that should not be used.
8593
- #: languages/vue.php:2662
8594
  msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
8595
  msgstr ""
8596
 
8597
  #. Translators: Adds link to the account area to retreive license key.
8598
- #: languages/vue.php:2666
8599
  msgid "Already have a license key? Add it below to unlock ExactMetrics PRO. %1$sRetrieve your license key%2$s."
8600
  msgstr ""
8601
 
8602
- #: languages/vue.php:2669
8603
  msgid "Connect ExactMetrics to Start Tracking Your Data"
8604
  msgstr ""
8605
 
8606
- #: languages/vue.php:2672
8607
  msgid "Complete Upgrade"
8608
  msgstr ""
8609
 
8610
- #: languages/vue.php:2675
8611
  msgid "Upgrade to Pro Version!"
8612
  msgstr ""
8613
 
8614
  #. Translators: Make text bold.
8615
- #: languages/vue.php:2679
8616
  msgid "%1$sExactMetrics%2$s can automatically upgrade the installed version to the Pro and walk you through the process."
8617
  msgstr ""
8618
 
8619
- #: languages/vue.php:2682
8620
  msgid "Install All-in-One SEO"
8621
  msgstr ""
8622
 
8623
- #: languages/vue.php:2685
8624
  msgid "Improve Your Website Search Rankings With All-In-One SEO"
8625
  msgstr ""
8626
 
8627
- #: languages/vue.php:2688
8628
  msgid "If you’re not using a plugin to optimize your website’s SEO you’re missing out on valuable organic traffic!"
8629
  msgstr ""
8630
 
8631
- #: languages/vue.php:2691
8632
  msgid "Finally, a WordPress SEO Plugin that’s Easy and Powerful!"
8633
  msgstr ""
8634
 
8635
- #: languages/vue.php:2694
8636
  msgid "AIOSEO makes it easy to set up the proper SEO foundations in less than 10 minutes."
8637
  msgstr ""
8638
 
8639
- #: languages/vue.php:2697
8640
  msgid "Local SEO"
8641
  msgstr ""
8642
 
8643
- #: languages/vue.php:2700
8644
  msgid "All in One SEO gives you all the tools you need to improve your local SEO and rank higher on Google Maps."
8645
  msgstr ""
8646
 
8647
- #: languages/vue.php:2703
8648
  msgid "WooCommerce SEO"
8649
  msgstr ""
8650
 
8651
- #: languages/vue.php:2706
8652
  msgid "Advanced eCommerce SEO support for WooCommerce to optimize product pages, product categories, and more."
8653
  msgstr ""
8654
 
8655
- #: languages/vue.php:2709
8656
  msgid "SEO Custom User Roles"
8657
  msgstr ""
8658
 
8659
- #: languages/vue.php:2712
8660
  msgid "SEO user roles allow you to manage access to important SEO features without handing over control of your website."
8661
  msgstr ""
8662
 
8663
- #: languages/vue.php:2715
8664
  msgid "Google News Sitemap"
8665
  msgstr ""
8666
 
8667
- #: languages/vue.php:2718
8668
  msgid "Get higher rankings and unlock more traffic by submitting your latest news articles to Google News."
8669
  msgstr ""
8670
 
8671
- #: languages/vue.php:2721
8672
  msgid "Smart XML Sitemaps"
8673
  msgstr ""
8674
 
8675
- #: languages/vue.php:2724
8676
  msgid "Automatically generate a WordPress XML sitemap and notify all search engines of any updates."
8677
  msgstr ""
8678
 
8679
- #: languages/vue.php:2727
8680
  msgid "Social Media Integration"
8681
  msgstr ""
8682
 
8683
- #: languages/vue.php:2730
8684
  msgid "Easily control how your content and thumbnails look on Facebook, Twitter, and other social media networks."
8685
  msgstr ""
8686
 
8687
- #: languages/vue.php:2733
8688
  msgid "TruSEO On-Page Analysis"
8689
  msgstr ""
8690
 
8691
- #: languages/vue.php:2736
8692
  msgid "Easily add title tags, meta descriptions, keywords, and everything else you need for proper on-page SEO optimization."
8693
  msgstr ""
8694
 
8695
- #: languages/vue.php:2739
8696
  msgid "& Many More!"
8697
  msgstr ""
8698
 
8699
- #: languages/vue.php:2742
8700
  msgid "Installing. Please wait.."
8701
  msgstr ""
8702
 
8703
- #: languages/vue.php:2745
8704
  msgid "Install All-in-One-SEO"
8705
  msgstr ""
8706
 
8707
- #: languages/vue.php:2748
8708
  msgid "Unlock the Publisher Report and Focus on the Content That Matters"
8709
  msgstr ""
8710
 
8711
- #: languages/vue.php:2751
8712
  msgid "See Your Top Landing Pages to Improve Engagement"
8713
  msgstr ""
8714
 
8715
- #: languages/vue.php:2754
8716
  msgid "See Your Top Exit Pages to Reduce Abandonment"
8717
  msgstr ""
8718
 
8719
- #: languages/vue.php:2757
8720
  msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
8721
  msgstr ""
8722
 
8723
- #: languages/vue.php:2760
8724
  msgid "See Your Top Affiliate Links and Focus on What’s Working"
8725
  msgstr ""
8726
 
8727
- #: languages/vue.php:2763
8728
  msgid "See Your Top Downloads and Improve Conversions"
8729
  msgstr ""
8730
 
8731
- #: languages/vue.php:2766
8732
  msgid "See Audience Demographic Report (Age / Gender / Interests)"
8733
  msgstr ""
8734
 
8735
- #: languages/vue.php:2769
8736
  msgid "Welcome to the all-new ExactMetrics"
8737
  msgstr ""
8738
 
8739
- #: languages/vue.php:2772
8740
  msgid "Redesigned from the ground up, ExactMetrics is built to bring a world-class analytics and reporting experience to WordPress."
8741
  msgstr ""
8742
 
8743
- #: languages/vue.php:2775
8744
  msgid "The New & Improved ExactMetrics includes:"
8745
  msgstr ""
8746
 
8747
- #: languages/vue.php:2778
8748
  msgid "All-New Design"
8749
  msgstr ""
8750
 
8751
- #: languages/vue.php:2781
8752
  msgid "Better Reporting"
8753
  msgstr ""
8754
 
8755
- #: languages/vue.php:2784
8756
  msgid "Better Tracking"
8757
  msgstr ""
8758
 
8759
- #: languages/vue.php:2787
8760
  msgid "Better Support"
8761
  msgstr ""
8762
 
8763
- #: languages/vue.php:2790
8764
  msgid "Continue"
8765
  msgstr ""
8766
 
8767
- #: languages/vue.php:2793
8768
  msgid "Your settings have been automatically transferred."
8769
  msgstr ""
8770
 
8771
- #: languages/vue.php:2796
8772
  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."
8773
  msgstr ""
8774
 
8775
- #: languages/vue.php:2799
8776
  msgid "New"
8777
  msgstr ""
8778
 
8779
- #: languages/vue.php:2802
8780
  msgid "Returning"
8781
  msgstr ""
8782
 
8783
- #: languages/vue.php:2805
8784
  msgid "Top 10 Countries"
8785
  msgstr ""
8786
 
8787
- #: languages/vue.php:2808
8788
  msgid "View Countries Report"
8789
  msgstr ""
8790
 
8791
- #: languages/vue.php:2811
8792
  msgid "Top 10 Referrals"
8793
  msgstr ""
8794
 
8795
- #: languages/vue.php:2814
8796
  msgid "View All Referral Sources"
8797
  msgstr ""
8798
 
8799
- #: languages/vue.php:2817
8800
  msgid "View Full Posts/Pages Report"
8801
  msgstr ""
8802
 
8803
- #: languages/vue.php:2820
8804
  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."
8805
  msgstr ""
8806
 
8807
- #: languages/vue.php:2823
8808
  msgid "This list shows the top countries your website visitors are from."
8809
  msgstr ""
8810
 
8811
- #: languages/vue.php:2826
8812
  msgid "This list shows the top websites that send your website traffic, known as referral traffic."
8813
  msgstr ""
8814
 
8815
- #: languages/vue.php:2829
8816
  msgid "This feature requires ExactMetrics Pro"
8817
  msgstr ""
8818
 
8819
- #: languages/vue.php:2832
8820
  msgid "By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more."
8821
  msgstr ""
8822
 
8823
- #: languages/vue.php:2835
8824
  msgid "Upgrade to Pro and Unlock Popular Products"
8825
  msgstr ""
8826
 
8827
- #: languages/vue.php:2838
8828
  msgid "View all Pro features"
8829
  msgstr ""
8830
 
8831
- #: languages/vue.php:2841
8832
  msgid "View notifications"
8833
  msgstr ""
8834
 
8835
- #: languages/vue.php:2844
8836
  msgid "Days"
8837
  msgstr ""
8838
 
8839
  #. Translators: placeholders make text small.
8840
- #: languages/vue.php:2848
8841
  msgid "7 days"
8842
  msgstr ""
8843
 
8844
- #: languages/vue.php:2851
8845
  msgid "30 days"
8846
  msgstr ""
8847
 
8848
- #: languages/vue.php:2854
8849
  msgid "Custom"
8850
  msgstr ""
8851
 
8852
- #: languages/vue.php:2857
8853
  msgid "2,000,000+ use AIOSEO to Improve Their Website Search Rankings"
8854
  msgstr ""
8855
 
8856
- #: languages/vue.php:2860
8857
  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."
8858
  msgstr ""
8859
 
8860
- #: languages/vue.php:2863
8861
  msgid "Jack Brown"
8862
  msgstr ""
8863
 
8864
- #: languages/vue.php:2866
8865
  msgid "PJB Internet Marketing"
8866
  msgstr ""
8867
 
8868
- #: languages/vue.php:2869
8869
  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."
8870
  msgstr ""
8871
 
8872
- #: languages/vue.php:2872
8873
  msgid "Joel Steinmann"
8874
  msgstr ""
8875
 
8876
- #: languages/vue.php:2875
8877
  msgid "CEO, Solergo"
8878
  msgstr ""
8879
 
8880
- #: languages/vue.php:2878
8881
  msgid "Only Show Posts from These Categories"
8882
  msgstr ""
8883
 
8884
- #: languages/vue.php:2881
8885
  msgid "Choose from which categories posts will be displayed in the widget. All categories will be used if left empty."
8886
  msgstr ""
8887
 
8888
- #: languages/vue.php:2884
8889
  msgid "Activating..."
8890
  msgstr ""
8891
 
8892
- #: languages/vue.php:2887
8893
  msgid "Deactivating..."
8894
  msgstr ""
8895
 
8896
- #: languages/vue.php:2890
8897
  msgid "Deactivate"
8898
  msgstr ""
8899
 
8900
- #: languages/vue.php:2893
8901
  msgid "Search Console Report"
8902
  msgstr ""
8903
 
8904
- #: languages/vue.php:2896
8905
  msgid "See exactly how people find tour website, which keywords they searched for, how many times the results were viewed, and more."
8906
  msgstr ""
8907
 
8908
- #: languages/vue.php:2899
8909
  msgid "See Your Top Google Search Terms and Optimize Content"
8910
  msgstr ""
8911
 
8912
- #: languages/vue.php:2902
8913
  msgid "See The Number of Clicks and Track Interests"
8914
  msgstr ""
8915
 
8916
- #: languages/vue.php:2905
8917
  msgid "See The Click-Through-Ratio and Improve SEO"
8918
  msgstr ""
8919
 
8920
- #: languages/vue.php:2908
8921
  msgid "See The Average Results Position and Focus on what works."
8922
  msgstr ""
8923
 
8924
- #: languages/vue.php:2911
8925
  msgid "Ecommerce Report"
8926
  msgstr ""
8927
 
8928
- #: languages/vue.php:2914
8929
  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."
8930
  msgstr ""
8931
 
8932
- #: languages/vue.php:2917
8933
  msgid "See Your Conversion Rate to Improve Your Funnel"
8934
  msgstr ""
8935
 
8936
- #: languages/vue.php:2920
8937
  msgid "See Your Top Conversion Sources and Focus on What's Working"
8938
  msgstr ""
8939
 
8940
- #: languages/vue.php:2923
8941
  msgid "Popular Posts data can be fetched correctly"
8942
  msgstr ""
8943
 
8944
- #: languages/vue.php:2926
8945
  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."
8946
  msgstr ""
8947
 
8948
- #: languages/vue.php:2929
8949
  msgid "Close"
8950
  msgstr ""
8951
 
8952
- #: languages/vue.php:2933
8953
  msgid "Add Top 5 Posts from Google Analytics"
8954
  msgstr ""
8955
 
8956
- #: languages/vue.php:2936
8957
  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."
8958
  msgstr ""
8959
 
8960
- #: languages/vue.php:2939
8961
  msgid "Test Automated Posts"
8962
  msgstr ""
8963
 
8964
  #. Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc.
8965
- #: languages/vue.php:2943
8966
  msgid "Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics."
8967
  msgstr ""
8968
 
8969
- #: languages/vue.php:2947
8970
  msgid "Automated + Curated"
8971
  msgstr ""
8972
 
8973
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
8974
- #: languages/vue.php:2951
8975
  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."
8976
  msgstr ""
8977
 
8978
  #. Translators: Placeholder gets replaced with current license version.
8979
- #: languages/vue.php:2955
8980
  msgid "Pro version is required."
8981
  msgstr ""
8982
 
8983
- #: languages/vue.php:2958
8984
  msgid "Verifying Popular Posts data"
8985
  msgstr ""
8986
 
8987
- #: languages/vue.php:2961
8988
  msgid "Multiple Entries"
8989
  msgstr ""
8990
 
8991
- #: languages/vue.php:2964
8992
  msgid "Total Number of Widgets to Show"
8993
  msgstr ""
8994
 
8995
- #: languages/vue.php:2967
8996
  msgid "Choose how many widgets will be placed in a single Post."
8997
  msgstr ""
8998
 
8999
- #: languages/vue.php:2970
9000
  msgid "Minimum Distance Between Widgets"
9001
  msgstr ""
9002
 
9003
- #: languages/vue.php:2973
9004
  msgid "Choose the distance between widgets."
9005
  msgstr ""
9006
 
9007
- #: languages/vue.php:2976
9008
  msgid "Minimum Word Count to Display Multiple Widgets"
9009
  msgstr ""
9010
 
9011
- #: languages/vue.php:2979
9012
  msgid "Choose the minimum word count for a Post to have multiple entries."
9013
  msgstr ""
9014
 
9015
- #: languages/vue.php:2982
9016
  msgid "Pro version is required"
9017
  msgstr ""
9018
 
9019
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
9020
- #: languages/vue.php:2986
9021
  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)."
9022
  msgstr ""
9023
 
9024
- #: languages/vue.php:2989
9025
  msgid "Select posts/search"
9026
  msgstr ""
9027
 
9028
- #: languages/vue.php:2992
9029
  msgid "Oops! No posts found."
9030
  msgstr ""
9031
 
9032
- #: languages/vue.php:2995
9033
  msgid "Search by post title"
9034
  msgstr ""
9035
 
9036
- #: languages/vue.php:2998
9037
  msgid "Can't load posts."
9038
  msgstr ""
9039
 
9040
- #: languages/vue.php:3001
9041
  msgid "Sartorial taxidermy venmo you probably haven't heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu."
9042
  msgstr ""
9043
 
9044
- #: languages/vue.php:3004
9045
  msgid "Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan"
9046
  msgstr ""
9047
 
9048
- #: languages/vue.php:3007
9049
  msgid "Color"
9050
  msgstr ""
9051
 
9052
- #: languages/vue.php:3010
9053
  msgid "Size"
9054
  msgstr ""
9055
 
9056
- #: languages/vue.php:3013
9057
  msgid "Title"
9058
  msgstr ""
9059
 
9060
- #: languages/vue.php:3016
9061
  msgid "Label"
9062
  msgstr ""
9063
 
9064
- #: languages/vue.php:3019
9065
  msgid "Background"
9066
  msgstr ""
9067
 
9068
- #: languages/vue.php:3022
9069
  msgid "Border"
9070
  msgstr ""
9071
 
9072
- #: languages/vue.php:3025
9073
  msgid "Icon"
9074
  msgstr ""
9075
 
9076
- #: languages/vue.php:3028
9077
  #: lite/includes/popular-posts/class-popular-posts-widget-sidebar.php:257
9078
  msgid "Theme Preview"
9079
  msgstr ""
9080
 
9081
- #: languages/vue.php:3031
9082
  msgid "SharedCount API Key"
9083
  msgstr ""
9084
 
9085
- #: languages/vue.php:3034
9086
  msgid "Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing."
9087
  msgstr ""
9088
 
9089
- #: languages/vue.php:3037
9090
  msgid "Start Indexing"
9091
  msgstr ""
9092
 
9093
- #: languages/vue.php:3040
9094
  msgid "%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing."
9095
  msgstr ""
9096
 
9097
- #: languages/vue.php:3043
9098
  msgid "Indexing completed, counts will update automatically every day."
9099
  msgstr ""
9100
 
9101
  #. Translators: Minimum and maximum number that can be used.
9102
- #: languages/vue.php:3047
9103
  msgid "Please enter a value between %1$s and %2$s"
9104
  msgstr ""
9105
 
9106
  #. Translators: The minimum set value.
9107
- #: languages/vue.php:3051
9108
  msgid "Please enter a value higher than %s"
9109
  msgstr ""
9110
 
9111
  #. Translators: The maximum set value.
9112
- #: languages/vue.php:3055
9113
  msgid "Please enter a value lower than %s"
9114
  msgstr ""
9115
 
9116
- #: languages/vue.php:3058
9117
  msgid "Please enter a number"
9118
  msgstr ""
9119
 
9120
- #: languages/vue.php:3061
9121
  msgid "Value has to be a round number"
9122
  msgstr ""
9123
 
9124
- #: languages/vue.php:3064
9125
  msgid "Author/Date"
9126
  msgstr ""
9127
 
9128
- #: languages/vue.php:3076
9129
  msgid "Choose which content you would like displayed in the widget."
9130
  msgstr ""
9131
 
9132
- #: languages/vue.php:3088
9133
  msgid "Comments"
9134
  msgstr ""
9135
 
9136
- #: languages/vue.php:3094
9137
  msgid "Choose how many posts you’d like displayed in the widget."
9138
  msgstr ""
9139
 
9140
  #. Translators: Page number of total pages. 1 & 2 make the first part of the text bold.
9141
- #: languages/vue.php:3098
9142
  msgid "%1$sPage %3$s%2$s of %4$s"
9143
  msgstr ""
9144
 
9145
- #: languages/vue.php:3101
9146
  msgid "Wide"
9147
  msgstr ""
9148
 
9149
- #: languages/vue.php:3104
9150
  msgid "Narrow"
9151
  msgstr ""
9152
 
9153
  #. Translators: Make text green.
9154
- #: languages/vue.php:3108
9155
  msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
9156
  msgstr ""
9157
 
9158
- #: languages/vue.php:3114
9159
  msgid "Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone."
9160
  msgstr ""
9161
 
9162
- #: languages/vue.php:3117
9163
  msgid "Our email summaries feature sends a weekly summary of the most important site analytics information."
9164
  msgstr ""
9165
 
9166
- #: languages/vue.php:3120
9167
  msgid "Usage Tracking"
9168
  msgstr ""
9169
 
9170
- #: languages/vue.php:3123
9171
  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."
9172
  msgstr ""
9173
 
9174
- #: languages/vue.php:3126
9175
  msgid "Allow usage tracking"
9176
  msgstr ""
9177
 
9178
  #. Translators: Adds a link to the documentation.
9179
- #: languages/vue.php:3130
9180
  msgid "Complete documentation on usage tracking is available %1$shere%2$s."
9181
  msgstr ""
9182
 
9183
- #: languages/vue.php:3133
9184
  msgid "Facebook Instant Articles"
9185
  msgstr ""
9186
 
9187
- #: languages/vue.php:3136
9188
  msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to ExactMetrics Pro."
9189
  msgstr ""
9190
 
9191
- #: languages/vue.php:3139
9192
  msgid "Performance"
9193
  msgstr ""
9194
 
9195
- #: languages/vue.php:3142
9196
  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."
9197
  msgstr ""
9198
 
9199
- #: languages/vue.php:3145
9200
  msgid "Google AMP"
9201
  msgstr ""
9202
 
9203
- #: languages/vue.php:3148
9204
  msgid "Want to use track users visiting your AMP pages? By upgrading to ExactMetrics Pro, you can enable AMP page tracking."
9205
  msgstr ""
9206
 
9207
- #: languages/vue.php:3151
9208
  msgid "Ads Tracking"
9209
  msgstr ""
9210
 
9211
- #: languages/vue.php:3154
9212
  msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
9213
  msgstr ""
9214
 
9215
- #: languages/vue.php:3157
9216
  msgid "Unlock with %s"
9217
  msgstr ""
9218
 
9219
- #: languages/vue.php:3160
9220
  msgid "Scroll Tracking"
9221
  msgstr ""
9222
 
9223
- #: languages/vue.php:3163
9224
  msgid "Scroll depth tracking in web analytics is one of those things you simply must do, especially if you have a content-heavy site."
9225
  msgstr ""
9226
 
9227
- #: languages/vue.php:3166
9228
  msgid ""
9229
  "The EU Compliance addon allows you to improve compliance with GDPR\n"
9230
  " and other privacy regulations."
9231
  msgstr ""
9232
 
9233
- #: languages/vue.php:3170
9234
  msgid "EU Compliance"
9235
  msgstr ""
9236
 
9237
- #: languages/vue.php:3173
9238
  msgid "Compatibility mode"
9239
  msgstr ""
9240
 
9241
- #: languages/vue.php:3176
9242
  msgid "Enable _gtagTracker Compatibility"
9243
  msgstr ""
9244
 
9245
  #. Translators: Placeholder gets replaced with default GA js function.
9246
- #: languages/vue.php:3180
9247
  msgid "This enables ExactMetrics to work with plugins that use %1$s and don't support %2$s"
9248
  msgstr ""
9249
 
9250
- #: languages/vue.php:3183
9251
  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!"
9252
  msgstr ""
9253
 
9254
- #: languages/vue.php:3186
9255
  msgid "To unlock more features consider upgrading to PRO."
9256
  msgstr ""
9257
 
9258
- #: languages/vue.php:3189
9259
  msgid "Upgrade to"
9260
  msgstr ""
9261
 
9262
- #: languages/vue.php:3192
9263
  msgid "Export PDF Report"
9264
  msgstr ""
9265
 
9266
- #: languages/vue.php:3195
9267
  msgid "You can export PDF reports only in the PRO version."
9268
  msgstr ""
9269
 
9270
- #: languages/vue.php:3198
9271
  msgid "Display Method"
9272
  msgstr ""
9273
 
9274
- #: languages/vue.php:3201
9275
  msgid "There are two ways to manual include the widget in your posts."
9276
  msgstr ""
9277
 
9278
- #: languages/vue.php:3205
9279
  msgid "Using the Gutenberg Block"
9280
  msgstr ""
9281
 
9282
- #: languages/vue.php:3208
9283
  msgid "Using the Shortcode"
9284
  msgstr ""
9285
 
9286
- #: languages/vue.php:3211
9287
  msgid "Learn how to insert the widget using Gutenberg blocks."
9288
  msgstr ""
9289
 
9290
- #: languages/vue.php:3214
9291
  msgid "Learn how to insert the widget using out Shortcode."
9292
  msgstr ""
9293
 
9294
- #: languages/vue.php:3217
9295
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg"
9296
  msgstr ""
9297
 
9298
- #: languages/vue.php:3221
9299
  msgid "%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page."
9300
  msgstr ""
9301
 
9302
- #: languages/vue.php:3224
9303
  msgid "%1$sStep 2%2$s - Search for “Inline Popular Posts by ExactMetrics”."
9304
  msgstr ""
9305
 
9306
- #: languages/vue.php:3228
9307
  msgid "%1$sStep 3%2$s - Style the widget using the Block Settings sidebar."
9308
  msgstr ""
9309
 
9310
- #: languages/vue.php:3231
9311
  msgid "Shortcode"
9312
  msgstr ""
9313
 
9314
- #: languages/vue.php:3235
9315
  msgid "Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin."
9316
  msgstr ""
9317
 
9318
- #: languages/vue.php:3239
9319
  msgid "Copy Shortcode"
9320
  msgstr ""
9321
 
9322
- #: languages/vue.php:3242
9323
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode"
9324
  msgstr ""
9325
 
9326
- #: languages/vue.php:3245
9327
  msgid "Automatic Placement"
9328
  msgstr ""
9329
 
9330
- #: languages/vue.php:3248
9331
  msgid "Display using Gutenberg Blocks"
9332
  msgstr ""
9333
 
9334
- #: languages/vue.php:3251
9335
  msgid "Embed Options"
9336
  msgstr ""
9337
 
9338
- #: languages/vue.php:3254
9339
  msgid "All Embed Options can be used in conjunction with one another."
9340
  msgstr ""
9341
 
9342
- #: languages/vue.php:3257
9343
  msgid "Using Automatic Embed"
9344
  msgstr ""
9345
 
9346
- #: languages/vue.php:3260
9347
  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."
9348
  msgstr ""
9349
 
9350
- #: languages/vue.php:3263
9351
  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."
9352
  msgstr ""
9353
 
9354
- #: languages/vue.php:3266
9355
  msgid "Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above."
9356
  msgstr ""
9357
 
9358
- #: languages/vue.php:3269
9359
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg"
9360
  msgstr ""
9361
 
9362
- #: languages/vue.php:3272
9363
  msgid "%1$sStep 2%2$s - Search for “Popular Posts”."
9364
  msgstr ""
9365
 
9366
- #: languages/vue.php:3275
9367
  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."
9368
  msgstr ""
9369
 
9370
- #: languages/vue.php:3278
9371
  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."
9372
  msgstr ""
9373
 
9374
- #: languages/vue.php:3281
9375
  msgid "%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design."
9376
  msgstr ""
9377
 
9378
- #: languages/vue.php:3284
9379
  msgid "Display using a Shortcode"
9380
  msgstr ""
9381
 
9382
- #: languages/vue.php:3287
9383
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode"
9384
  msgstr ""
9385
 
9386
- #: languages/vue.php:3290
9387
  msgid "Enable Automatic Placement"
9388
  msgstr ""
9389
 
9390
- #: languages/vue.php:3293
9391
  msgid "Display in a Sidebar"
9392
  msgstr ""
9393
 
9394
- #: languages/vue.php:3296
9395
  msgid "Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above."
9396
  msgstr ""
9397
 
9398
- #: languages/vue.php:3299
9399
  msgid "Watch Video - How to Add the Popular Posts widget using Widgets"
9400
  msgstr ""
9401
 
9402
  #. Translators: The number of results.
9403
- #: languages/vue.php:3303
9404
  msgid "%s results"
9405
  msgstr ""
9406
 
9407
- #: languages/vue.php:3306
9408
  msgid "Media"
9409
  msgstr ""
9410
 
9411
- #: languages/vue.php:3309
9412
  msgid "Track how your users interact with videos on your website. Upgrade to ExactMetrics Pro."
9413
  msgstr ""
9414
 
9415
- #: languages/vue.php:3312
9416
  msgid "2021 Year in Review"
9417
  msgstr ""
9418
 
9419
- #: languages/vue.php:3315
9420
  msgid "Media- Track how your users interact with videos on your website."
9421
  msgstr ""
9422
 
9423
- #: languages/vue.php:3318
9424
  msgid "Your 2021 Year in Review is still calculating. Please check back later to see how your website performed last year."
9425
  msgstr ""
9426
 
9427
- #: languages/vue.php:3321
9428
  msgid "Your 2021 Analytics Report"
9429
  msgstr ""
9430
 
9431
- #: languages/vue.php:3327
9432
  msgid "January 1, 2021 - December 31, 2021"
9433
  msgstr ""
9434
 
9435
- #: languages/vue.php:3330
9436
  msgid "A Tip for 2022"
9437
  msgstr ""
9438
 
9439
- #: languages/vue.php:3333
9440
  msgid "A Tip For 2022"
9441
  msgstr ""
9442
 
9443
- #: languages/vue.php:3336
9444
  msgid "Here's to an amazing 2022!"
9445
  msgstr ""
9446
 
9447
- #: languages/vue.php:3339
9448
  msgid "Try our other popular WordPress plugins to grow your website in 2022."
9449
  msgstr ""
9450
 
9451
- #: languages/vue.php:3342
9452
  msgid "Become a WordPress expert in 2022. Join our amazing communities and take your website to the next level."
9453
  msgstr ""
9454
 
9455
- #: languages/vue.php:3345
9456
  msgid "Copyright ExactMetrics, 2022"
9457
  msgstr ""
9458
 
9459
  #. Translators: Number of minutes spent on site.
9460
- #: languages/vue.php:3349
9461
  msgid "Each visitor spent an average of %s minutes on your website in 2021."
9462
  msgstr ""
9463
 
9464
  #. Translators: Placeholders are used for making text bold and adding a link.
9465
- #: languages/vue.php:3353
9466
  msgid "%1$sYou're using %2$s Lite%3$s. To unlock all reports, consider %4$supgrading to Pro%5$s."
9467
  msgstr ""
9468
 
9469
- #: languages/vue.php:3356
9470
  msgid "With ExactMetrics Pro, you can easily measure individual affiliate performance inside Google Analytics, no coding needed. Track clicks, revenue, and more."
9471
  msgstr ""
9472
 
9473
- #: languages/vue.php:3359
9474
  msgid "RafflePress"
9475
  msgstr ""
9476
 
9477
- #: languages/vue.php:3362
9478
  msgid "Launch giveaways and raffle campaigns to grow your email lists, increase traffic, and get more social media followers."
9479
  msgstr ""
9480
 
9481
- #: languages/vue.php:3365
9482
  msgid "Constant Contact"
9483
  msgstr ""
9484
 
9485
- #: languages/vue.php:3368
9486
  msgid "Create amazing email marketing campaigns with drag and drop simplicity. Exclusive Offer: Save 20%."
9487
  msgstr ""
9488
 
9489
- #: languages/vue.php:3371
9490
  msgid "SEMRUSH"
9491
  msgstr ""
9492
 
9493
- #: languages/vue.php:3374
9494
  msgid "Perform SEO and content marketing research, track keywords, and much more. Special Offer: First 30 Days Free."
9495
  msgstr ""
9496
 
9497
- #: languages/vue.php:3377
9498
  msgid "Engagement Tools"
9499
  msgstr ""
9500
 
9501
- #: languages/vue.php:3380
9502
  msgid "WPForms"
9503
  msgstr ""
9504
 
9505
- #: languages/vue.php:3383
9506
  msgid "The world’s most popular WordPress form builder, trusted by over 5 million websites. Easily build contact forms, payment forms, and more."
9507
  msgstr ""
9508
 
9509
- #: languages/vue.php:3386
9510
  msgid "OptinMonster"
9511
  msgstr ""
9512
 
9513
- #: languages/vue.php:3389
9514
  msgid "Convert and monetize more of your website traffic with engaging pop-up and gamified tools. Great for all types of websites."
9515
  msgstr ""
9516
 
9517
- #: languages/vue.php:3392
9518
  msgid "Smash Balloon - Facebook"
9519
  msgstr ""
9520
 
9521
- #: languages/vue.php:3395
9522
  msgid "Smash Balloon - Instagram"
9523
  msgstr ""
9524
 
9525
- #: languages/vue.php:3398
9526
  msgid "Quickly add social media feeds from Facebook, Instagram, Twitter, and others to your website, with no coding needed."
9527
  msgstr ""
9528
 
9529
- #: languages/vue.php:3401
9530
  msgid "Popular Posts by ExactMetrics"
9531
  msgstr ""
9532
 
9533
- #: languages/vue.php:3404
9534
  msgid "Increase your visitor engagement by automatically embedding popular and related content from your website."
9535
  msgstr ""
9536
 
9537
- #: languages/vue.php:3407
9538
  msgid "Popular Products by ExactMetrics"
9539
  msgstr ""
9540
 
9541
- #: languages/vue.php:3410
9542
  msgid "Automatically show related products to increase conversion rates and increase cart sizes on your eCommerce website."
9543
  msgstr ""
9544
 
9545
- #: languages/vue.php:3413
9546
  msgid "Revenue Tools"
9547
  msgstr ""
9548
 
9549
- #: languages/vue.php:3416
9550
  msgid "SeedProd"
9551
  msgstr ""
9552
 
9553
- #: languages/vue.php:3419
9554
  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."
9555
  msgstr ""
9556
 
9557
- #: languages/vue.php:3422
9558
  msgid "Featured Tools"
9559
  msgstr ""
9560
 
9561
- #: languages/vue.php:3425
9562
  msgid "Easy Affiliate"
9563
  msgstr ""
9564
 
9565
- #: languages/vue.php:3428
9566
  msgid "Launch, grow, and manage an affiliate program, all right from your WordPress dashboard. Works automatically with ExactMetrics."
9567
  msgstr ""
9568
 
9569
- #: languages/vue.php:3431
9570
  msgid "SearchWP"
9571
  msgstr ""
9572
 
9573
- #: languages/vue.php:3434
9574
  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."
9575
  msgstr ""
9576
 
9577
- #: languages/vue.php:3437
9578
  msgid "Easy Digital Downloads"
9579
  msgstr ""
9580
 
9581
- #: languages/vue.php:3440
9582
  msgid "Easily sell digital products like ebooks, plugins, and courses with WordPress. Built-in payment processing, coupons, shopping cart, detailed reporting, and more."
9583
  msgstr ""
9584
 
9585
- #: languages/vue.php:3443
9586
  msgid "MemberPress"
9587
  msgstr ""
9588
 
9589
- #: languages/vue.php:3446
9590
  msgid "Create a membership website. Works automatically with ExactMetrics, no coding needed."
9591
  msgstr ""
9592
 
9593
- #: languages/vue.php:3449
9594
  msgid "Thirsty Affiliates"
9595
  msgstr ""
9596
 
9597
- #: languages/vue.php:3452
9598
  msgid "Manage all your affiliate links with features designed to help make bloggers more money."
9599
  msgstr ""
9600
 
9601
- #: languages/vue.php:3455
9602
  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."
9603
  msgstr ""
9604
 
9605
- #: languages/vue.php:3458
9606
  msgid "Advanced Coupons"
9607
  msgstr ""
9608
 
9609
- #: languages/vue.php:3461
9610
  msgid "Create coupons, reward loyal customers, and schedule promotions for your eCommerce store."
9611
  msgstr ""
9612
 
9613
- #: languages/vue.php:3464
9614
  msgid "PrettyLinks"
9615
  msgstr ""
9616
 
9617
- #: languages/vue.php:3467
9618
  msgid "Automatically monetize your website content with affiliate links added automatically to your content."
9619
  msgstr ""
9620
 
9621
- #: languages/vue.php:3470
9622
  msgid "Install Now"
9623
  msgstr ""
9624
 
9625
- #: languages/vue.php:3473
9626
  msgid "Online Marketing Guides & Resources"
9627
  msgstr ""
9628
 
9629
- #: languages/vue.php:3476
9630
  msgid "Read This Guide"
9631
  msgstr ""
9632
 
9633
- #: languages/vue.php:3482
9634
  msgid "Upgrade to unlock eCommerce tracking, Custom Dimensions, Form Tracking, and much more. Special Offer: Save 50% today."
9635
  msgstr ""
9636
 
9637
- #: languages/vue.php:3485
9638
  msgid "Traffic Tools"
9639
  msgstr ""
9640
 
9641
- #: languages/vue.php:3488
9642
  msgid "All in One SEO (AIOSEO)"
9643
  msgstr ""
9644
 
9645
- #: languages/vue.php:3491
9646
  msgid "The best WordPress SEO plugin that works automatically with ExactMetrics."
9647
  msgstr ""
9648
 
9649
- #: languages/vue.php:3494
9650
  msgid "PushEngage"
9651
  msgstr ""
9652
 
9653
- #: languages/vue.php:3497
9654
  msgid "Send push notifications to your visitors to drive more traffic and boost sales."
9655
  msgstr ""
9656
 
9657
- #: languages/vue.php:3500
9658
  msgid "Featured"
9659
  msgstr ""
9660
 
9661
- #: languages/vue.php:3503
9662
  msgid "Traffic"
9663
  msgstr ""
9664
 
9665
- #: languages/vue.php:3506
9666
  msgid "Revenue"
9667
  msgstr ""
9668
 
9669
- #: languages/vue.php:3509
9670
  msgid "Guides & Resources"
9671
  msgstr ""
9672
 
9673
- #: languages/vue.php:3512
9674
  msgid "Media Tracking"
9675
  msgstr ""
9676
 
9677
- #: languages/vue.php:3515
9678
  msgid "Get Started"
9679
  msgstr ""
9680
 
9681
- #: languages/vue.php:3518
9682
  msgid "Privacy Compliance Addon"
9683
  msgstr ""
9684
 
9685
- #: languages/vue.php:3521
9686
  msgid "Help Google Analytics become compliant with internet privacy laws like GDPR, PECR, and CCPA."
9687
  msgstr ""
9688
 
9689
- #: languages/vue.php:3524
9690
  msgid "Get access to advanced reports inside WordPress including search keywords report, real-time analytics dashboard, publishers / eCommerce report, custom dimensions, and more."
9691
  msgstr ""
9692
 
9693
- #: languages/vue.php:3527
9694
  msgid "Instantly enable enhanced eCommerce tracking, so you can measure conversions, sales, and revenue stats. Works with WooCommerce, Easy Digital Downloads, MemberPress, and more."
9695
  msgstr ""
9696
 
9697
- #: languages/vue.php:3530
9698
  msgid "20+ Advanced Tracking"
9699
  msgstr ""
9700
 
9701
- #: languages/vue.php:3533
9702
  msgid "Get access to advanced tracking features like form conversion tracking, author tracking, custom dimensions, scroll tracking, and more."
9703
  msgstr ""
9704
 
9705
- #: languages/vue.php:3536
9706
  msgid "Advanced Growth Tools"
9707
  msgstr ""
9708
 
9709
- #: languages/vue.php:3539
9710
  msgid "Get access to advanced growth tools such as popular posts addon, A/B testing tool, smart URL builder, and more."
9711
  msgstr ""
9712
 
9713
- #: languages/vue.php:3542
9714
  msgid "Track how your users interact with videos on your website."
9715
  msgstr ""
9716
 
9717
- #: languages/vue.php:3545
9718
  msgid "Error Processing"
9719
  msgstr ""
9720
 
9721
- #: languages/vue.php:3548
9722
  msgid "There was an error while processing some features. Please try again or you can skip this process for now"
9723
  msgstr ""
9724
 
9725
- #: languages/vue.php:3551
9726
  msgid "Which website features would you like to enable?"
9727
  msgstr ""
9728
 
9729
- #: languages/vue.php:3554
9730
  msgid "We’ve already selected our recommended features based on your site. "
9731
  msgstr ""
9732
 
9733
- #: languages/vue.php:3557
9734
  msgid "Other Addons"
9735
  msgstr ""
9736
 
9737
- #: languages/vue.php:3560
9738
  msgid "View all ExactMetrics addons"
9739
  msgstr ""
9740
 
9741
- #: languages/vue.php:3563
9742
  msgid "Standard Analytics & Reports"
9743
  msgstr ""
9744
 
9745
- #: languages/vue.php:3566
9746
  msgid "Get the reports and stats that matter right inside your WordPress Dashboard."
9747
  msgstr ""
9748
 
9749
- #: languages/vue.php:3569
9750
  msgid "Helps you see what links your users are clicking on your site."
9751
  msgstr ""
9752
 
9753
- #: languages/vue.php:3572
9754
  msgid "All In One SEO Toolkit"
9755
  msgstr ""
9756
 
9757
- #: languages/vue.php:3575
9758
  msgid "The best WordPress SEO plugin that works with ExactMetrics to boost your rankings."
9759
  msgstr ""
9760
 
9761
- #: languages/vue.php:3578
9762
  msgid "Smart Form Builder by WPForms"
9763
  msgstr ""
9764
 
9765
- #: languages/vue.php:3581
9766
  msgid "The most popular WordPress form plugin, trusted by over 5 million websites. Easily create contact forms, payment forms, surveys and more."
9767
  msgstr ""
9768
 
9769
- #: languages/vue.php:3584
9770
  msgid "Awesome! Tracking and Analytics are All Setup!"
9771
  msgstr ""
9772
 
9773
- #: languages/vue.php:3587
9774
  msgid "ExactMetrics is connected to Google Analytics and data is being collected."
9775
  msgstr ""
9776
 
9777
- #: languages/vue.php:3594
9778
  msgid "Complete Setup without Upgrading"
9779
  msgstr ""
9780
 
9781
- #: languages/vue.php:3597
9782
  msgid "Success"
9783
  msgstr ""
9784
 
9785
- #: languages/vue.php:3600
9786
  msgid "Connected to Google Analytics"
9787
  msgstr ""
9788
 
9789
- #: languages/vue.php:3603
9790
  msgid "Tracking Code Installed"
9791
  msgstr ""
9792
 
9793
- #: languages/vue.php:3606
9794
  msgid "Data Being Collected"
9795
  msgstr ""
9796
 
9797
  #. Translators: Add link to retrieve license from account area.
9798
- #: languages/vue.php:3610
9799
  msgid "Already purchased? Simply enter your license key below to connect with ExactMetrics PRO!"
9800
  msgstr ""
9801
 
9802
- #: languages/vue.php:3613
9803
  msgid "Verify License Key"
9804
  msgstr ""
9805
 
9806
- #: languages/vue.php:3616
9807
  msgid "Upgrade to Unlock These Features"
9808
  msgstr ""
9809
 
9810
- #: languages/vue.php:3619
9811
  msgid "To unlock the selected features, please upgrade to Pro and enter your license key below."
9812
  msgstr ""
9813
 
9814
- #: languages/vue.php:3622
9815
  msgid "%1$sBonus:%2$s Upgrade today and save %3$s50%% on a Pro License!%4$s (auto-applied at checkout)"
9816
  msgstr ""
9817
 
9818
- #: languages/vue.php:3625
9819
  msgid "Verifying License..."
9820
  msgstr ""
9821
 
9822
- #: languages/vue.php:3631
9823
  msgid "The following plugins will be installed: "
9824
  msgstr ""
9825
 
9826
- #: languages/vue.php:3635
9827
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
9828
  msgstr ""
9829
 
9830
- #: languages/vue.php:3639
9831
  msgid "Manually enter your GA4 Measurement ID"
9832
  msgstr ""
9833
 
9834
- #: languages/vue.php:3643
9835
  msgid "Warning: If you use a manual GA4 Measurement ID, you won't be able to use any of the reporting and some of the tracking features. Your UA code should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
9836
  msgstr ""
9837
 
9838
- #: languages/vue.php:3646
9839
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are a combination of numbers and letters."
9840
  msgstr ""
9841
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9842
  #: lite/includes/admin/connect.php:42
9843
  msgid "You are not allowed to install plugins."
9844
  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.7.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-07-11T12:14:18+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:3516
19
  msgid "ExactMetrics Pro"
20
  msgstr ""
21
 
113
  #: includes/admin/admin.php:34
114
  #: includes/admin/admin.php:42
115
  #: includes/admin/admin.php:222
116
+ #: languages/vue.php:550
117
  msgid "Settings"
118
  msgstr ""
119
 
129
 
130
  #: includes/admin/admin.php:39
131
  #: includes/admin/admin.php:130
132
+ #: languages/vue.php:2331
133
  msgid "Reports"
134
  msgstr ""
135
 
139
 
140
  #: includes/admin/admin.php:51
141
  #: languages/gutenberg.php:83
142
+ #: languages/vue.php:1011
143
  msgid "Popular Posts"
144
  msgstr ""
145
 
192
  #: includes/admin/admin.php:76
193
  #: includes/admin/notifications/notification-upgrade-to-pro-high-traffic.php:41
194
  #: includes/admin/notifications/notification-upgrade-to-pro.php:33
195
+ #: languages/vue.php:1059
196
  msgid "Upgrade to Pro"
197
  msgstr ""
198
 
220
 
221
  #: includes/admin/admin.php:212
222
  #: includes/admin/admin.php:215
223
+ #: languages/vue.php:1035
224
  msgid "Support"
225
  msgstr ""
226
 
232
  #: includes/admin/notifications/notification-upgrade-for-google-optimize.php:32
233
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:32
234
  #: includes/admin/reports/abstract-report.php:418
235
+ #: languages/vue.php:1169
236
  msgid "Get ExactMetrics Pro"
237
  msgstr ""
238
 
242
  msgstr ""
243
 
244
  #: includes/admin/admin.php:324
245
+ #: languages/vue.php:1160
246
  msgid "Please Setup Website Analytics to See Audience Insights"
247
  msgstr ""
248
 
249
  #: includes/admin/admin.php:325
250
+ #: languages/vue.php:1166
251
  msgid "Connect ExactMetrics and Setup Website Analytics"
252
  msgstr ""
253
 
254
  #: includes/admin/admin.php:327
255
+ #: includes/admin/common.php:896
256
+ #: includes/admin/common.php:923
257
+ #: includes/admin/common.php:956
258
  #: includes/admin/notifications/notification-audience.php:45
259
  #: includes/admin/notifications/notification-bounce-rate.php:47
260
  #: includes/admin/notifications/notification-headline-analyzer.php:39
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
+ #: includes/admin/routes.php:904
265
+ #: languages/vue.php:338
266
  msgid "Learn More"
267
  msgstr ""
268
 
269
  #: includes/admin/admin.php:329
270
+ #: languages/vue.php:1163
271
  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."
272
  msgstr ""
273
 
278
 
279
  #. Translators: Adds a link to the license renewal.
280
  #: includes/admin/admin.php:350
281
+ #: languages/vue.php:484
282
  msgid "Your license key for ExactMetrics has expired. %1$sPlease click here to renew your license key.%2$s"
283
  msgstr ""
284
 
285
  #: includes/admin/admin.php:352
286
+ #: languages/vue.php:487
287
  msgid "Your license key for ExactMetrics has been disabled. Please use a different key."
288
  msgstr ""
289
 
290
  #: includes/admin/admin.php:354
291
+ #: languages/vue.php:490
292
  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."
293
  msgstr ""
294
 
346
  msgstr ""
347
 
348
  #: includes/admin/ajax.php:55
349
+ #: includes/admin/routes.php:999
350
  #: lite/includes/admin/onboarding-wizard.php:247
351
  msgid "You are not allowed to install plugins"
352
  msgstr ""
442
  msgstr ""
443
 
444
  #. Translators: Placeholders are for links to fix the issue.
445
+ #: includes/admin/common.php:758
446
  msgid "ExactMetrics has detected that it's files are being blocked. This is usually caused by a adblock browser plugin (particularly uBlock Origin), or a conflicting WordPress theme or plugin. This issue only affects the admin side of ExactMetrics. To solve this, ensure ExactMetrics is whitelisted for your website URL in any adblock browser plugin you use. For step by step directions on how to do this, %1$sclick here%2$s. If this doesn't solve the issue (rare), send us a ticket %3$shere%2$s and we'll be happy to help diagnose the issue."
447
  msgstr ""
448
 
449
+ #: includes/admin/common.php:877
450
  msgid "ACTION REQUIRED: Your PHP version is putting your site at risk!"
451
  msgstr ""
452
 
453
+ #: includes/admin/common.php:879
454
  msgid "ACTION REQUIRED: Speed your website up 400% with a single email!"
455
  msgstr ""
456
 
457
  #. Translators: Placeholder is for the current PHP version.
458
+ #: includes/admin/common.php:886
459
  msgid "In the next major release of ExactMetrics we are planning to remove support for the version of PHP you are using (%s). This insecure version is no longer supported by WordPress itself, so you are already missing out on the latest features of WordPress along with critical updates for security and performance (modern PHP versions make websites much faster)."
460
  msgstr ""
461
 
462
  #. Translators: Placeholders add a link to an article.
463
+ #: includes/admin/common.php:889
464
  msgid "To ensure ExactMetrics and other plugins on your site continue to function properly, and avoid putting your site at risk, please take a few minutes to ask your website hosting provider to upgrade the version of PHP to a modern PHP version (7.2 or newer). We provide helpful templates for how to ask them %1$shere%2$s."
465
  msgstr ""
466
 
467
  #. Translators: Placeholders add a link to an article.
468
+ #: includes/admin/common.php:890
469
  msgid "Upgrading your PHP version will make sure you are able to continue using WordPress without issues in the future, keep your site secure, and will also make your website up to 400% faster!"
470
  msgstr ""
471
 
472
+ #: includes/admin/common.php:910
473
  msgid "ACTION REQUIRED: Your WordPress version is putting your site at risk!"
474
  msgstr ""
475
 
476
  #. Translators: Placeholder is for the current WordPress version.
477
+ #: includes/admin/common.php:913
478
  msgid "In the next major release of ExactMetrics we are planning to remove support for the version of WordPress you are using (version %s). This version is several years out of date, and most plugins do not support this version anymore, so you could be missing out on critical updates for performance and security already!"
479
  msgstr ""
480
 
481
+ #: includes/admin/common.php:915
482
  msgid "The good news: updating WordPress has never been easier and only takes a few moments."
483
  msgstr ""
484
 
485
  #. Translators: Placeholders add links to articles.
486
+ #: includes/admin/common.php:917
487
  msgid "To update, we recommend following this %1$sstep by step guide for updating WordPress%2$s from IsItWP and afterwards check out %3$sWhy You Should Always Use the Latest Version of WordPress%4$s on WPBeginner."
488
  msgstr ""
489
 
490
+ #: includes/admin/common.php:951
491
  msgid "View 2021 Year in Review report!"
492
  msgstr ""
493
 
494
+ #: includes/admin/common.php:952
495
+ #: languages/vue.php:3361
496
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2022!"
497
  msgstr ""
498
 
513
 
514
  #: includes/admin/exclude-page-metabox.php:147
515
  #: languages/gutenberg.php:354
516
+ #: languages/vue.php:3151
517
  msgid "Upgrade"
518
  msgstr ""
519
 
541
  msgstr ""
542
 
543
  #: includes/admin/notification-event.php:256
544
+ #: includes/admin/routes.php:875
545
+ #: includes/admin/routes.php:1239
546
  msgid "You don't have permission to view ExactMetrics reports."
547
  msgstr ""
548
 
711
  #: includes/admin/notifications/notification-upgrade-for-custom-dimensions.php:26
712
  #: includes/admin/notifications/notification-upgrade-for-events-reporting.php:26
713
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:26
714
+ #: languages/vue.php:1750
715
  #: lite/includes/admin/helpers.php:85
716
  msgid "Upgrade to ExactMetrics Pro"
717
  msgstr ""
747
  #: includes/admin/notifications/notification-upgrade-for-form-conversion.php:31
748
  #: includes/admin/notifications/notification-upgrade-for-search-console.php:32
749
  #: includes/admin/reports/abstract-report.php:415
750
+ #: languages/vue.php:225
751
  msgid "Upgrade Now"
752
  msgstr ""
753
 
924
  msgstr ""
925
 
926
  #: includes/admin/reports/overview.php:34
927
+ #: languages/vue.php:446
928
  msgid "Overview"
929
  msgstr ""
930
 
972
  msgid "I already did"
973
  msgstr ""
974
 
975
+ #: includes/admin/routes.php:335
976
  msgid "Easy digital downloads plugin."
977
  msgstr ""
978
 
979
+ #: includes/admin/routes.php:401
980
+ msgid "The best drag & drop WordPress form builder. Easily create beautiful contact forms, surveys, payment forms, and more with our 150+ form templates. Trusted by over 5 million websites as the best forms plugin. We also have 400+ form templates and over 100 million downloads for WPForms Lite."
981
  msgstr ""
982
 
983
+ #: includes/admin/routes.php:412
984
  msgid "The original WordPress SEO plugin and toolkit that improves your website’s search rankings. Comes with all the SEO features like Local SEO, WooCommerce SEO, sitemaps, SEO optimizer, schema, and more."
985
  msgstr ""
986
 
987
+ #: includes/admin/routes.php:423
988
  msgid "Instantly get more subscribers, leads, and sales with the #1 conversion optimization toolkit. Create high converting popups, announcement bars, spin a wheel, and more with smart targeting and personalization."
989
  msgstr ""
990
 
991
+ #: includes/admin/routes.php:434
992
  msgid "Improve your WordPress email deliverability and make sure that your website emails reach user’s inbox with the #1 SMTP plugin for WordPress. Over 2 million websites use it to fix WordPress email issues."
993
  msgstr ""
994
 
995
+ #: includes/admin/routes.php:444
996
  msgid "The fastest drag & drop landing page builder for WordPress. Create custom landing pages without writing code, connect them with your CRM, collect subscribers, and grow your audience. Trusted by 1 million sites."
997
  msgstr ""
998
 
999
+ #: includes/admin/routes.php:455
1000
  msgid "Turn your website visitors into brand ambassadors! Easily grow your email list, website traffic, and social media followers with the most powerful giveaways & contests plugin for WordPress."
1001
  msgstr ""
1002
 
1003
+ #: includes/admin/routes.php:466
1004
  msgid "Boost your sales and conversions by up to 15% with real-time social proof notifications. TrustPulse helps you show live user activity and purchases to help convince other users to purchase."
1005
  msgstr ""
1006
 
1007
+ #: includes/admin/routes.php:476
1008
  msgid "Easily display Instagram content on your WordPress site without writing any code. Comes with multiple templates, ability to show content from multiple accounts, hashtags, and more. Trusted by 1 million websites."
1009
  msgstr ""
1010
 
1011
+ #: includes/admin/routes.php:487
1012
  msgid "Easily display Facebook content on your WordPress site without writing any code. Comes with multiple templates, ability to show content from multiple accounts, hashtags, and more. Trusted by 1 million websites."
1013
  msgstr ""
1014
 
1015
+ #: includes/admin/routes.php:498
1016
  msgid "Connect with your visitors after they leave your website with the leading web push notification software. Over 10,000+ businesses worldwide use PushEngage to send 9 billion notifications each month."
1017
  msgstr ""
1018
 
1019
+ #: includes/admin/routes.php:508
1020
  msgid "Pretty Links helps you shrink, beautify, track, manage and share any URL on or off of your WordPress website. Create links that look how you want using your own domain name!"
1021
  msgstr ""
1022
 
1023
+ #: includes/admin/routes.php:519
1024
  msgid "ThirstyAffiliates is a revolution in affiliate link management. Collect, collate and store your affiliate links for use in your posts and pages."
1025
  msgstr ""
1026
 
1027
+ #: includes/admin/routes.php:531
1028
  msgid "Advanced Coupons for WooCommerce (Free Version) gives WooCommerce store owners extra coupon features so they can market their stores better."
1029
  msgstr ""
1030
 
1031
+ #: includes/admin/routes.php:660
1032
  msgid "Invalid UA code"
1033
  msgstr ""
1034
 
1035
+ #: includes/admin/routes.php:714
1036
  msgid "Invalid GAv4 code"
1037
  msgstr ""
1038
 
1039
+ #: includes/admin/routes.php:742
1040
  msgid "Invalid dual tracking code"
1041
  msgstr ""
1042
 
1043
+ #: includes/admin/routes.php:821
1044
  msgid "Please upload a valid .json file"
1045
  msgstr ""
1046
 
1047
+ #: includes/admin/routes.php:830
1048
  msgid "Please upload a file to import"
1049
  msgstr ""
1050
 
1051
+ #: includes/admin/routes.php:891
1052
+ #: languages/vue.php:3698
1053
+ msgid "License Expired"
1054
+ msgstr ""
1055
+
1056
+ #: includes/admin/routes.php:892
1057
+ msgid "Your license for ExactMetrics %1$s has expired."
1058
+ msgstr ""
1059
+
1060
+ #: includes/admin/routes.php:894
1061
+ msgid "Expired %1$s"
1062
+ msgstr ""
1063
+
1064
+ #: includes/admin/routes.php:896
1065
+ msgid "To ensure your site keeps tracking properly, and to view Reports you must have a valid ExactMetrics license."
1066
+ msgstr ""
1067
+
1068
+ #: includes/admin/routes.php:903
1069
+ #: languages/vue.php:3708
1070
+ msgid "Reactivate License"
1071
+ msgstr ""
1072
+
1073
+ #: includes/admin/routes.php:912
1074
+ #: includes/admin/routes.php:1251
1075
  msgid "You can't view ExactMetrics reports because you are not licensed."
1076
  msgstr ""
1077
 
1078
+ #: includes/admin/routes.php:913
1079
+ #: includes/admin/routes.php:1252
1080
  msgid "Add your license"
1081
  msgstr ""
1082
 
1083
+ #: includes/admin/routes.php:921
1084
+ #: includes/admin/routes.php:1259
1085
  msgid "You can't view ExactMetrics reports due to license key errors."
1086
  msgstr ""
1087
 
1088
+ #: includes/admin/routes.php:929
1089
+ #: includes/admin/routes.php:1267
1090
  msgid "You must authenticate with ExactMetrics before you can view reports."
1091
  msgstr ""
1092
 
1093
+ #: includes/admin/routes.php:935
1094
+ #: includes/admin/routes.php:1273
1095
  msgid "Unknown report. Try refreshing and retrying. Contact support if this issue persists."
1096
  msgstr ""
1097
 
1098
+ #: includes/admin/routes.php:987
1099
+ #: includes/admin/routes.php:1321
1100
  msgid "We encountered an error when fetching the report data."
1101
  msgstr ""
1102
 
1103
+ #: includes/admin/routes.php:1007
1104
  msgid "Missing plugin name."
1105
  msgstr ""
1106
 
1107
+ #: includes/admin/routes.php:1151
1108
  msgid "Homepage"
1109
  msgstr ""
1110
 
1458
  msgstr ""
1459
 
1460
  #: includes/gutenberg/headline-tool/headline-tool.php:290
1461
+ #: languages/vue.php:556
1462
  msgid "General"
1463
  msgstr ""
1464
 
4858
  msgstr ""
4859
 
4860
  #: languages/gutenberg.php:77
4861
+ #: languages/vue.php:541
4862
  msgid "Inline Popular Posts"
4863
  msgstr ""
4864
 
4895
  msgstr ""
4896
 
4897
  #: languages/gutenberg.php:107
4898
+ #: languages/vue.php:3106
4899
  msgid "Wide-Layout Options"
4900
  msgstr ""
4901
 
4904
  msgstr ""
4905
 
4906
  #: languages/gutenberg.php:113
4907
+ #: languages/vue.php:3109
4908
  msgid "Adjust the number of columns displayed when the widget is placed in a wide container."
4909
  msgstr ""
4910
 
4911
  #: languages/gutenberg.php:116
4912
+ #: languages/vue.php:3130
4913
  msgid "Post Count"
4914
  msgstr ""
4915
 
4918
  msgstr ""
4919
 
4920
  #: languages/gutenberg.php:122
4921
+ #: languages/vue.php:3112
4922
  msgid "Display Options"
4923
  msgstr ""
4924
 
4931
  msgstr ""
4932
 
4933
  #: languages/gutenberg.php:131
4934
+ #: languages/vue.php:1972
4935
  msgid "Widget Title"
4936
  msgstr ""
4937
 
4940
  msgstr ""
4941
 
4942
  #: languages/gutenberg.php:137
4943
+ #: languages/vue.php:3118
4944
  msgid "Display Author"
4945
  msgstr ""
4946
 
4947
  #: languages/gutenberg.php:140
4948
+ #: languages/vue.php:3121
4949
  msgid "Display Date"
4950
  msgstr ""
4951
 
4952
  #: languages/gutenberg.php:143
4953
+ #: languages/vue.php:3124
4954
  msgid "Display Comments"
4955
  msgstr ""
4956
 
5171
  msgstr ""
5172
 
5173
  #: languages/gutenberg.php:312
5174
+ #: languages/vue.php:999
5175
  msgid "Headline Analyzer"
5176
  msgstr ""
5177
 
5184
  msgstr ""
5185
 
5186
  #: languages/gutenberg.php:321
5187
+ #: languages/vue.php:109
5188
  #: lite/includes/admin/metaboxes.php:42
5189
  msgid "Last 30 days"
5190
  msgstr ""
5191
 
5192
  #: languages/gutenberg.php:324
5193
+ #: languages/vue.php:97
5194
  #: lite/includes/admin/metaboxes.php:45
5195
  msgid "Yesterday"
5196
  msgstr ""
5197
 
5198
  #: languages/gutenberg.php:327
5199
+ #: languages/vue.php:1321
5200
  #: lite/includes/admin/metaboxes.php:57
5201
  #: lite/includes/admin/metaboxes.php:111
5202
  msgid "Bounce Rate"
5252
  msgid "Loading Settings"
5253
  msgstr ""
5254
 
5255
+ #: languages/vue.php:15
5256
  msgid "Please wait..."
5257
  msgstr ""
5258
 
5259
+ #: languages/vue.php:18
5260
  msgid "Saving Changes..."
5261
  msgstr ""
5262
 
5263
+ #: languages/vue.php:21
5264
  msgid "Settings Updated"
5265
  msgstr ""
5266
 
5267
  #. Translators: Add a link to the onboarding wizard.
5268
+ #: languages/vue.php:25
5269
  msgid "You need to %1$sconnect ExactMetrics%2$s first"
5270
  msgstr ""
5271
 
5272
+ #: languages/vue.php:28
5273
  msgid "Could Not Save Changes"
5274
  msgstr ""
5275
 
5276
+ #: languages/vue.php:31
5277
  msgid "Loading new report data"
5278
  msgstr ""
5279
 
5280
+ #. Translators: Adds an arrow icon.
5281
+ #: languages/vue.php:35
5282
  msgid "Continue %s"
5283
  msgstr ""
5284
 
5302
  msgid "Unlock the Publishers Report and Focus on the Content That Matters"
5303
  msgstr ""
5304
 
5305
+ #: languages/vue.php:54
5306
  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."
5307
  msgstr ""
5308
 
5309
+ #: languages/vue.php:57
5310
  msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
5311
  msgstr ""
5312
 
5313
+ #: languages/vue.php:60
5314
  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."
5315
  msgstr ""
5316
 
5317
+ #: languages/vue.php:63
5318
  msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
5319
  msgstr ""
5320
 
5321
+ #: languages/vue.php:66
5322
  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."
5323
  msgstr ""
5324
 
5325
+ #: languages/vue.php:69
5326
  msgid "Unlock the Forms Report and Improve Conversions"
5327
  msgstr ""
5328
 
5329
+ #: languages/vue.php:72
5330
  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."
5331
  msgstr ""
5332
 
5333
+ #: languages/vue.php:75
5334
  msgid "Unlock the Search Console Report and See How People Find Your Website"
5335
  msgstr ""
5336
 
5337
+ #: languages/vue.php:78
5338
  msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
5339
  msgstr ""
5340
 
5341
+ #: languages/vue.php:82
5342
  msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
5343
  msgstr ""
5344
 
5345
+ #: languages/vue.php:85
5346
  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."
5347
  msgstr ""
5348
 
5349
+ #: languages/vue.php:88
5350
  msgid "Unlock the Site Speed Report and Improve the Performance of Your Site"
5351
  msgstr ""
5352
 
5353
+ #: languages/vue.php:91
5354
  msgid "See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking"
5355
  msgstr ""
5356
 
5357
+ #: languages/vue.php:94
5358
  msgid "Today"
5359
  msgstr ""
5360
 
5361
+ #: languages/vue.php:100
5362
  msgid "Last Week"
5363
  msgstr ""
5364
 
5365
+ #: languages/vue.php:103
5366
  msgid "Last Month"
5367
  msgstr ""
5368
 
5369
+ #: languages/vue.php:106
5370
  msgid "Last 7 days"
5371
  msgstr ""
5372
 
5373
+ #: languages/vue.php:112
5374
  msgid "Loading settings"
5375
  msgstr ""
5376
 
5377
  #. Translators: Number of visitors.
5378
+ #: languages/vue.php:116
5379
  msgid "See how %s visitors found your site!"
5380
  msgstr ""
5381
 
5382
  #. Translators: Number of visitors.
5383
+ #: languages/vue.php:120
5384
  msgid "Your website was visited by %s users in the last 30 days."
5385
  msgstr ""
5386
 
5387
+ #: languages/vue.php:123
5388
  msgid "See the full analytics report!"
5389
  msgstr ""
5390
 
5432
  msgid "Getting Started"
5433
  msgstr ""
5434
 
5435
+ #: languages/vue.php:163
5436
  msgid "Lite vs Pro"
5437
  msgstr ""
5438
 
5439
+ #: languages/vue.php:166
5440
  msgid "Success! "
5441
  msgstr ""
5442
 
5443
+ #: languages/vue.php:169
5444
  msgid "You're now using ExactMetrics Pro with all the features."
5445
  msgstr ""
5446
 
5447
  #. Translators: Placeholder gets replaced with an arrow icon.
5448
+ #: languages/vue.php:173
5449
  msgid "Get Started %s"
5450
  msgstr ""
5451
 
5452
  #. Translators: Error status and error text.
5453
+ #: languages/vue.php:177
5454
  msgid "Can't load report data. Error: %1$s, %2$s"
5455
  msgstr ""
5456
 
5457
+ #: languages/vue.php:180
5458
  msgid "Error loading report data"
5459
  msgstr ""
5460
 
5461
+ #. Translators: Makes text bold.
5462
+ #: languages/vue.php:184
5463
  msgid "%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
5464
  msgstr ""
5465
 
5466
+ #. Translators: Makes text bold.
5467
+ #: languages/vue.php:188
5468
  msgid "%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights."
5469
  msgstr ""
5470
 
5471
+ #. Translators: Makes text bold.
5472
+ #: languages/vue.php:192
5473
  msgid "%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more."
5474
  msgstr ""
5475
 
5476
  #. Translators: Makes text bold.
5477
+ #: languages/vue.php:196
5478
  msgid "%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress."
5479
  msgstr ""
5480
 
5481
+ #. Translators: Makes text bold.
5482
+ #: languages/vue.php:200
5483
  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."
5484
  msgstr ""
5485
 
5486
+ #. Translators: Makes text bold.
5487
+ #: languages/vue.php:204
5488
  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."
5489
  msgstr ""
5490
 
5491
+ #. Translators: Makes text bold.
5492
+ #: languages/vue.php:208
5493
  msgid "%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically."
5494
  msgstr ""
5495
 
5496
  #. Translators: Makes text bold.
5497
+ #: languages/vue.php:212
5498
  msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click."
5499
  msgstr ""
5500
 
5501
+ #. Translators: Adds link to the features page.
5502
+ #: languages/vue.php:216
5503
  msgid "%1$sSee All Features%2$s"
5504
  msgstr ""
5505
 
5506
+ #: languages/vue.php:219
5507
  msgid "Pro Plan"
5508
  msgstr ""
5509
 
5510
+ #: languages/vue.php:222
5511
  msgid "per year"
5512
  msgstr ""
5513
 
5514
+ #: languages/vue.php:228
5515
  msgid "Upgrade to ExactMetrics Pro Now"
5516
  msgstr ""
5517
 
5518
+ #: languages/vue.php:231
5519
  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!"
5520
  msgstr ""
5521
 
5522
+ #: languages/vue.php:234
5523
  msgid "Daniel Monaghan - Experienced"
5524
  msgstr ""
5525
 
5526
+ #: languages/vue.php:237
5527
  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."
5528
  msgstr ""
5529
 
5530
+ #: languages/vue.php:240
5531
  msgid "Naomi Spirit - From This Day"
5532
  msgstr ""
5533
 
5534
+ #: languages/vue.php:243
5535
  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!"
5536
  msgstr ""
5537
 
5538
+ #: languages/vue.php:246
5539
  msgid "Julie Dupuis - Faraway Land Travel"
5540
  msgstr ""
5541
 
5542
+ #: languages/vue.php:249
5543
  msgid "Guides and Documentation:"
5544
  msgstr ""
5545
 
5546
+ #: languages/vue.php:257
5547
  msgid "Upgrade to PRO"
5548
  msgstr ""
5549
 
5550
+ #: languages/vue.php:260
5551
  msgid "eCommerce Tracking"
5552
  msgstr ""
5553
 
5554
+ #: languages/vue.php:264
5555
  msgid "Custom Dimensions"
5556
  msgstr ""
5557
 
5558
+ #: languages/vue.php:267
5559
  msgid "Form Tracking"
5560
  msgstr ""
5561
 
5562
+ #: languages/vue.php:270
5563
  msgid "AMP Support"
5564
  msgstr ""
5565
 
5566
+ #: languages/vue.php:273
5567
  msgid "Author Tracking"
5568
  msgstr ""
5569
 
5570
+ #: languages/vue.php:276
5571
  msgid "EU Compliance Addon"
5572
  msgstr ""
5573
 
5574
+ #: languages/vue.php:279
5575
  msgid "Real Time Report"
5576
  msgstr ""
5577
 
5578
+ #: languages/vue.php:283
5579
  msgid "Google Optimize"
5580
  msgstr ""
5581
 
5582
+ #: languages/vue.php:288
5583
  #: lite/includes/admin/reports/report-queries.php:22
5584
  msgid "Search Console"
5585
  msgstr ""
5586
 
5587
+ #: languages/vue.php:291
5588
  msgid "Custom Date Ranges"
5589
  msgstr ""
5590
 
5591
+ #: languages/vue.php:294
5592
+ #: languages/vue.php:939
5593
  msgid "Getting Started with ExactMetrics"
5594
  msgstr ""
5595
 
5596
+ #: languages/vue.php:297
5597
+ #: languages/vue.php:942
5598
  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."
5599
  msgstr ""
5600
 
5601
+ #: languages/vue.php:300
5602
  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."
5603
  msgstr ""
5604
 
5605
+ #: languages/vue.php:303
5606
  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!."
5607
  msgstr ""
5608
 
5609
+ #: languages/vue.php:306
5610
  msgid "Launch the wizard!"
5611
  msgstr ""
5612
 
5613
+ #: languages/vue.php:310
5614
  msgid "Welcome to"
5615
  msgstr ""
5616
 
5617
  #. Translators: Adds a line break.
5618
+ #: languages/vue.php:314
5619
  msgid "Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin"
5620
  msgstr ""
5621
 
5622
+ #. Translators: Makes text bold.
5623
+ #: languages/vue.php:318
5624
  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."
5625
  msgstr ""
5626
 
5627
+ #: languages/vue.php:321
5628
  msgid "ExactMetrics Features & Addons"
5629
  msgstr ""
5630
 
5631
+ #: languages/vue.php:324
5632
  msgid "Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market."
5633
  msgstr ""
5634
 
5635
  #. Translators: Placeholder is replaced with WPForms.
5636
+ #: languages/vue.php:328
5637
  msgid "Recommended Plugin: %s"
5638
  msgstr ""
5639
 
5640
+ #: languages/vue.php:331
5641
  msgid "Install"
5642
  msgstr ""
5643
 
5644
+ #: languages/vue.php:334
5645
  msgid "Activate"
5646
  msgstr ""
5647
 
5648
+ #: languages/vue.php:341
5649
  msgid "ExactMetrics encountered an error loading your report data"
5650
  msgstr ""
5651
 
5652
+ #: languages/vue.php:344
5653
  msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
5654
  msgstr ""
5655
 
5656
+ #: languages/vue.php:348
5657
+ #: languages/vue.php:1863
5658
  msgid "Reconnect ExactMetrics"
5659
  msgstr ""
5660
 
5661
+ #: languages/vue.php:352
5662
  msgid "Re-Authenticating"
5663
  msgstr ""
5664
 
5665
+ #: languages/vue.php:358
5666
  msgid "Ok"
5667
  msgstr ""
5668
 
5669
+ #: languages/vue.php:361
5670
+ #: languages/vue.php:878
5671
  msgid "ExactMetrics Addons"
5672
  msgstr ""
5673
 
5674
+ #: languages/vue.php:364
5675
  msgid "Search Addons"
5676
  msgstr ""
5677
 
5678
+ #: languages/vue.php:367
5679
  msgid "Save Changes"
5680
  msgstr ""
5681
 
5682
+ #: languages/vue.php:370
5683
  msgid "Exit Setup"
5684
  msgstr ""
5685
 
5686
+ #: languages/vue.php:373
5687
  msgid "Time to Purchase"
5688
  msgstr ""
5689
 
5690
+ #: languages/vue.php:376
5691
  msgid "This list shows how many days from first visit it took users to purchase products from your site."
5692
  msgstr ""
5693
 
5694
+ #: languages/vue.php:379
5695
  msgid "Sessions to Purchase"
5696
  msgstr ""
5697
 
5698
+ #: languages/vue.php:382
5699
  msgid "This list shows the number of sessions it took users before they purchased a product from your website."
5700
  msgstr ""
5701
 
5702
+ #: languages/vue.php:385
5703
  msgid "New Customers"
5704
  msgstr ""
5705
 
5706
+ #: languages/vue.php:388
5707
  msgid "This list shows the percentage of new customers who purchased a product from your website."
5708
  msgstr ""
5709
 
5710
+ #: languages/vue.php:391
5711
  msgid "Abandoned Checkouts"
5712
  msgstr ""
5713
 
5714
+ #: languages/vue.php:394
5715
  msgid "This list shows the percentage of carts that never went through the checkout process."
5716
  msgstr ""
5717
 
5718
+ #: languages/vue.php:397
5719
  msgid "Top Posts/Pages"
5720
  msgstr ""
5721
 
5722
+ #: languages/vue.php:400
5723
  msgid "This list shows the most viewed posts and pages on your website."
5724
  msgstr ""
5725
 
5726
+ #: languages/vue.php:403
5727
  msgid "New vs. Returning Visitors"
5728
  msgstr ""
5729
 
5730
+ #: languages/vue.php:406
5731
  msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
5732
  msgstr ""
5733
 
5734
+ #: languages/vue.php:409
5735
  msgid "Device Breakdown"
5736
  msgstr ""
5737
 
5738
+ #: languages/vue.php:412
5739
  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."
5740
  msgstr ""
5741
 
5742
+ #: languages/vue.php:415
5743
  msgid "Top Landing Pages"
5744
  msgstr ""
5745
 
5746
+ #: languages/vue.php:418
5747
  msgid "This list shows the top pages users first land on when visiting your website."
5748
  msgstr ""
5749
 
5750
+ #: languages/vue.php:421
5751
  msgid "Top Exit Pages"
5752
  msgstr ""
5753
 
5754
+ #: languages/vue.php:424
5755
  msgid "This list shows the top pages users exit your website from."
5756
  msgstr ""
5757
 
5758
+ #: languages/vue.php:427
5759
  msgid "Top Outbound Links"
5760
  msgstr ""
5761
 
5762
+ #: languages/vue.php:430
5763
  msgid "This list shows the top links clicked on your website that go to another website."
5764
  msgstr ""
5765
 
5766
+ #: languages/vue.php:433
5767
  msgid "Top Affiliate Links"
5768
  msgstr ""
5769
 
5770
+ #: languages/vue.php:436
5771
  msgid "This list shows the top affiliate links your visitors clicked on."
5772
  msgstr ""
5773
 
5774
+ #: languages/vue.php:439
5775
  msgid "Top Download Links"
5776
  msgstr ""
5777
 
5778
+ #: languages/vue.php:442
5779
  msgid "This list shows the download links your visitors clicked the most."
5780
  msgstr ""
5781
 
5782
+ #: languages/vue.php:449
5783
  msgid "Top Products"
5784
  msgstr ""
5785
 
5786
+ #: languages/vue.php:452
5787
  msgid "This list shows the top selling products on your website."
5788
  msgstr ""
5789
 
5790
+ #: languages/vue.php:455
5791
  msgid "Top Conversion Sources"
5792
  msgstr ""
5793
 
5794
+ #: languages/vue.php:458
5795
  msgid "This list shows the top referral websites in terms of product revenue."
5796
  msgstr ""
5797
 
5798
+ #: languages/vue.php:461
5799
  msgid "Total Add/Remove"
5800
  msgstr ""
5801
 
5802
+ #: languages/vue.php:464
5803
  msgid "Analytics"
5804
  msgstr ""
5805
 
5806
  #. Translators: Adds an arrow icon.
5807
+ #: languages/vue.php:468
5808
  msgid "View All Reports %s"
5809
  msgstr ""
5810
 
5811
+ #: languages/vue.php:471
5812
  msgid "You must connect with ExactMetrics before you can view reports."
5813
  msgstr ""
5814
 
5815
+ #: languages/vue.php:474
5816
  msgid "ExactMetrics makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
5817
  msgstr ""
5818
 
5819
+ #: languages/vue.php:477
5820
  msgid "Launch Setup Wizard"
5821
  msgstr ""
5822
 
5823
+ #: languages/vue.php:480
5824
  msgid "Please ask your webmaster to connect ExactMetrics to Google Analytics."
5825
  msgstr ""
5826
 
5827
+ #: languages/vue.php:493
5828
  msgid "See Quick Links"
5829
  msgstr ""
5830
 
5831
+ #: languages/vue.php:496
5832
  msgid "Suggest a Feature"
5833
  msgstr ""
5834
 
5835
+ #: languages/vue.php:499
5836
  msgid "Join Our Community"
5837
  msgstr ""
5838
 
5839
+ #: languages/vue.php:502
5840
  msgid "Support & Docs"
5841
  msgstr ""
5842
 
5843
+ #: languages/vue.php:505
5844
  msgid "Upgrade to Pro &#187;"
5845
  msgstr ""
5846
 
5847
+ #: languages/vue.php:509
5848
  #: lite/includes/admin/reports/report-publisher.php:22
5849
  msgid "Publishers"
5850
  msgstr ""
5851
 
5852
+ #: languages/vue.php:514
5853
  #: lite/includes/admin/reports/report-ecommerce.php:22
5854
  msgid "eCommerce"
5855
  msgstr ""
5856
 
5857
+ #: languages/vue.php:517
5858
  msgid "Dimensions Report"
5859
  msgstr ""
5860
 
5861
+ #: languages/vue.php:521
5862
  #: lite/includes/admin/reports/report-forms.php:22
5863
  msgid "Forms"
5864
  msgstr ""
5865
 
5866
+ #: languages/vue.php:525
5867
  msgid "Real-Time"
5868
  msgstr ""
5869
 
5870
+ #: languages/vue.php:528
5871
  msgid "Site Speed Report"
5872
  msgstr ""
5873
 
5874
+ #: languages/vue.php:532
5875
  msgid "2020 Year in Review"
5876
  msgstr ""
5877
 
5878
+ #: languages/vue.php:535
5879
  msgid "Import Export"
5880
  msgstr ""
5881
 
5882
+ #: languages/vue.php:538
5883
  msgid "PrettyLinks Integration"
5884
  msgstr ""
5885
 
5886
+ #: languages/vue.php:544
5887
  msgid "Popular Posts Widget"
5888
  msgstr ""
5889
 
5890
+ #: languages/vue.php:547
5891
  msgid "Popular Products"
5892
  msgstr ""
5893
 
5894
+ #: languages/vue.php:553
5895
  msgid "Sub menu item for WooCommerce Analytics"
5896
  msgstr ""
5897
 
5898
+ #: languages/vue.php:559
5899
  msgid "Engagement"
5900
  msgstr ""
5901
 
5902
+ #: languages/vue.php:562
5903
  msgid "Publisher"
5904
  msgstr ""
5905
 
5906
+ #: languages/vue.php:566
5907
  msgid "Conversions"
5908
  msgstr ""
5909
 
5910
+ #: languages/vue.php:569
5911
  msgid "Advanced"
5912
  msgstr ""
5913
 
5914
+ #: languages/vue.php:572
5915
  msgid "URL Builder"
5916
  msgstr ""
5917
 
5918
  #. Translators: Adds a link to documentation.
5919
+ #: languages/vue.php:576
5920
  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"
5921
  msgstr ""
5922
 
5923
  #. Translators: Adds link to activate/install plugin and documentation.
5924
+ #: languages/vue.php:580
5925
  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"
5926
  msgstr ""
5927
 
5928
  #. Translators: Adds a link to documentation.
5929
+ #: languages/vue.php:584
5930
  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"
5931
  msgstr ""
5932
 
5933
  #. Translators: Adds link to activate/install plugin and documentation.
5934
+ #: languages/vue.php:588
5935
  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"
5936
  msgstr ""
5937
 
5938
+ #: languages/vue.php:591
5939
  msgid "Installing Addon"
5940
  msgstr ""
5941
 
5942
+ #: languages/vue.php:594
5943
  msgid "Activating Addon"
5944
  msgstr ""
5945
 
5946
+ #: languages/vue.php:597
5947
  msgid "Addon Activated"
5948
  msgstr ""
5949
 
5950
+ #: languages/vue.php:600
5951
  msgid "Loading report data"
5952
  msgstr ""
5953
 
5954
+ #: languages/vue.php:603
5955
  msgid "Please activate manually"
5956
  msgstr ""
5957
 
5958
  #. Translators: Adds the error status and status text.
5959
+ #: languages/vue.php:607
5960
  msgid "Error: %1$s, %2$s"
5961
  msgstr ""
5962
 
5963
+ #: languages/vue.php:610
5964
  msgid "Error Activating Addon"
5965
  msgstr ""
5966
 
5967
+ #: languages/vue.php:613
5968
  #: lite/includes/admin/wp-site-health.php:372
5969
  #: lite/includes/admin/wp-site-health.php:398
5970
  #: lite/includes/admin/wp-site-health.php:425
5971
  msgid "View Addons"
5972
  msgstr ""
5973
 
5974
+ #: languages/vue.php:618
5975
  msgid "Dismiss"
5976
  msgstr ""
5977
 
5978
+ #: languages/vue.php:621
5979
  msgid "Redirecting"
5980
  msgstr ""
5981
 
5982
+ #: languages/vue.php:624
5983
  msgid "Please wait"
5984
  msgstr ""
5985
 
5986
+ #: languages/vue.php:627
5987
  msgid "activate"
5988
  msgstr ""
5989
 
5990
+ #: languages/vue.php:630
5991
  msgid "install"
5992
  msgstr ""
5993
 
5994
+ #: languages/vue.php:633
5995
  msgid "Visit addons page"
5996
  msgstr ""
5997
 
5998
+ #: languages/vue.php:636
5999
  msgid "Report Unavailable"
6000
  msgstr ""
6001
 
6002
  #. Translators: Install/Activate the addon.
6003
+ #: languages/vue.php:640
6004
  msgid "%s Addon"
6005
  msgstr ""
6006
 
6007
+ #: languages/vue.php:643
6008
  msgid "Go Back To Reports"
6009
  msgstr ""
6010
 
6011
+ #: languages/vue.php:646
6012
  msgid "Enable Enhanced eCommerce"
6013
  msgstr ""
6014
 
6015
  #. Translators: Placeholders are replaced with the current step number out of the total number of steps.
6016
+ #: languages/vue.php:650
6017
  msgid "Step %1$s of %2$s"
6018
  msgstr ""
6019
 
6020
+ #: languages/vue.php:653
6021
  msgid "Go back"
6022
  msgstr ""
6023
 
6024
+ #: languages/vue.php:656
6025
  msgid "Welcome to ExactMetrics!"
6026
  msgstr ""
6027
 
6028
+ #: languages/vue.php:659
6029
  msgid "Let's get you set up."
6030
  msgstr ""
6031
 
6032
+ #: languages/vue.php:662
6033
  msgid "Save and Continue"
6034
  msgstr ""
6035
 
6036
+ #: languages/vue.php:665
6037
  msgid "Which category best describes your website?"
6038
  msgstr ""
6039
 
6040
+ #: languages/vue.php:668
6041
  msgid "We will recommend the optimal settings for ExactMetrics based on your choice."
6042
  msgstr ""
6043
 
6044
+ #: languages/vue.php:671
6045
  msgid "Business Website"
6046
  msgstr ""
6047
 
6048
  #. Translators: Make text bold.
6049
+ #: languages/vue.php:675
6050
  msgid "Publisher %1$s(Blog)%2$s"
6051
  msgstr ""
6052
 
6053
+ #: languages/vue.php:678
6054
  msgid "Ecommerce"
6055
  msgstr ""
6056
 
6057
+ #: languages/vue.php:681
6058
  msgid "Connect ExactMetrics to Your Website"
6059
  msgstr ""
6060
 
6061
+ #: languages/vue.php:684
6062
  msgid "ExactMetrics connects Google Analytics to WordPress and shows you stats that matter."
6063
  msgstr ""
6064
 
6065
+ #: languages/vue.php:687
6066
  msgid "Connect Google Analytics + WordPress"
6067
  msgstr ""
6068
 
6069
+ #: languages/vue.php:690
6070
  msgid "You will be taken to the ExactMetrics website where you'll need to connect your Analytics account."
6071
  msgstr ""
6072
 
6073
+ #: languages/vue.php:693
6074
  msgid "Whoops, something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually."
6075
  msgstr ""
6076
 
6077
+ #: languages/vue.php:696
6078
  msgid "Manually enter your UA code"
6079
  msgstr ""
6080
 
6081
+ #: languages/vue.php:699
6082
  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."
6083
  msgstr ""
6084
 
6085
+ #: languages/vue.php:702
6086
  msgid "UA code can't be empty"
6087
  msgstr ""
6088
 
6089
+ #: languages/vue.php:705
6090
  msgid "Saving UA code..."
6091
  msgstr ""
6092
 
6093
+ #: languages/vue.php:708
6094
  msgid "ExactMetrics Recommends WPForms"
6095
  msgstr ""
6096
 
6097
+ #: languages/vue.php:711
6098
  msgid "Built by the folks behind ExactMetrics, WPForms is the most beginner friendly form plugin in the market."
6099
  msgstr ""
6100
 
6101
+ #: languages/vue.php:714
6102
  msgid "Used on over 4,000,000 websites!"
6103
  msgstr ""
6104
 
6105
+ #: languages/vue.php:717
6106
  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!"
6107
  msgstr ""
6108
 
6109
+ #: languages/vue.php:720
6110
  msgid "Skip this Step"
6111
  msgstr ""
6112
 
6113
+ #: languages/vue.php:723
6114
  msgid "Continue & Install WPForms"
6115
  msgstr ""
6116
 
6117
+ #: languages/vue.php:726
6118
  msgid "Installing..."
6119
  msgstr ""
6120
 
6121
+ #: languages/vue.php:729
6122
  msgid "Recommended Settings"
6123
  msgstr ""
6124
 
6125
+ #: languages/vue.php:732
6126
  msgid "ExactMetrics recommends the following settings based on your configuration."
6127
  msgstr ""
6128
 
6129
+ #: languages/vue.php:735
6130
  msgid "Events Tracking"
6131
  msgstr ""
6132
 
6133
+ #: languages/vue.php:738
6134
  msgid "Must have for all click tracking on site."
6135
  msgstr ""
6136
 
6137
+ #: languages/vue.php:741
6138
  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."
6139
  msgstr ""
6140
 
6141
+ #: languages/vue.php:744
6142
  msgid "Enhanced Link Attribution"
6143
  msgstr ""
6144
 
6145
+ #: languages/vue.php:747
6146
  msgid "Improves the accuracy of your In-Page Analytics."
6147
  msgstr ""
6148
 
6149
+ #: languages/vue.php:750
6150
  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."
6151
  msgstr ""
6152
 
6153
+ #: languages/vue.php:753
6154
  msgid "Install Updates Automatically"
6155
  msgstr ""
6156
 
6157
+ #: languages/vue.php:756
6158
  msgid "Get the latest features, bug fixes, and security updates as they are released."
6159
  msgstr ""
6160
 
6161
+ #: languages/vue.php:759
6162
  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."
6163
  msgstr ""
6164
 
6165
+ #: languages/vue.php:762
6166
  msgid "File Download Tracking"
6167
  msgstr ""
6168
 
6169
+ #: languages/vue.php:765
6170
  msgid "Helps you see file downloads data."
6171
  msgstr ""
6172
 
6173
+ #: languages/vue.php:768
6174
  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."
6175
  msgstr ""
6176
 
6177
  #. Translators: Example path (/go/).
6178
+ #: languages/vue.php:772
6179
  msgid "Path (example: %s)"
6180
  msgstr ""
6181
 
6182
+ #: languages/vue.php:775
6183
  msgid "Path has to start with a / and have no spaces"
6184
  msgstr ""
6185
 
6186
  #. Translators: Example label (aff).
6187
+ #: languages/vue.php:779
6188
  msgid "Label (example: %s)"
6189
  msgstr ""
6190
 
6191
+ #: languages/vue.php:782
6192
  msgid "Label can't contain any spaces"
6193
  msgstr ""
6194
 
6195
+ #: languages/vue.php:785
6196
  msgid "Helps you increase affiliate revenue."
6197
  msgstr ""
6198
 
6199
+ #: languages/vue.php:788
6200
  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."
6201
  msgstr ""
6202
 
6203
+ #: languages/vue.php:791
6204
  msgid "Affiliate Link Tracking"
6205
  msgstr ""
6206
 
6207
+ #: languages/vue.php:794
6208
  msgid "Who Can See Reports"
6209
  msgstr ""
6210
 
6211
+ #: languages/vue.php:797
6212
  msgid "These user roles will be able to access ExactMetrics' reports in the WordPress admin area."
6213
  msgstr ""
6214
 
6215
+ #: languages/vue.php:800
6216
  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."
6217
  msgstr ""
6218
 
6219
+ #: languages/vue.php:803
6220
  msgid "Save and continue"
6221
  msgstr ""
6222
 
6223
+ #: languages/vue.php:806
6224
  msgid "Events Tracking is enabled the moment you set up ExactMetrics"
6225
  msgstr ""
6226
 
6227
+ #: languages/vue.php:809
6228
  msgid "Enhanced Link Attribution is enabled the moment you set up ExactMetrics"
6229
  msgstr ""
6230
 
6231
+ #: languages/vue.php:812
6232
  msgid "+ Add Role"
6233
  msgstr ""
6234
 
6235
  #. Translators: Placeholders are used for making text bold and adding a link.
6236
+ #: languages/vue.php:816
6237
  msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
6238
  msgstr ""
6239
 
6240
+ #: languages/vue.php:819
6241
  #: lite/includes/admin/reports/report-dimensions.php:22
6242
  msgid "Dimensions"
6243
  msgstr ""
6244
 
6245
+ #: languages/vue.php:822
6246
  msgid "Site Speed"
6247
  msgstr ""
6248
 
6249
+ #: languages/vue.php:826
6250
  msgid "License Key"
6251
  msgstr ""
6252
 
6253
  #. Translators: Add link to retrieve license key from account.
6254
+ #: languages/vue.php:830
6255
  msgid "Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
6256
  msgstr ""
6257
 
6258
+ #: languages/vue.php:833
6259
  msgid "Google Authentication"
6260
  msgstr ""
6261
 
6262
+ #: languages/vue.php:836
6263
  msgid "Miscellaneous"
6264
  msgstr ""
6265
 
6266
+ #: languages/vue.php:839
6267
  msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
6268
  msgstr ""
6269
 
6270
+ #: languages/vue.php:842
6271
  msgid "Hide Announcements"
6272
  msgstr ""
6273
 
6274
+ #: languages/vue.php:845
6275
  msgid "You're using ExactMetrics Lite – no license needed. Enjoy!"
6276
  msgstr ""
6277
 
6278
  #. Translators: Adds link to upgrade.
6279
+ #: languages/vue.php:849
6280
  msgid "To unlock more features consider %1$supgrading to PRO%2$s."
6281
  msgstr ""
6282
 
6283
+ #: languages/vue.php:853
6284
  msgid "Receive 50% off automatically applied at the checkout!"
6285
  msgstr ""
6286
 
6287
+ #: languages/vue.php:857
6288
  msgid "See all features"
6289
  msgstr ""
6290
 
6291
+ #: languages/vue.php:860
6292
  msgid "Setup Wizard"
6293
  msgstr ""
6294
 
6295
+ #: languages/vue.php:863
6296
  msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
6297
  msgstr ""
6298
 
6299
+ #: languages/vue.php:866
6300
  msgid "Relaunch Setup Wizard"
6301
  msgstr ""
6302
 
6303
+ #: languages/vue.php:869
6304
  msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
6305
  msgstr ""
6306
 
6307
+ #: languages/vue.php:872
6308
  msgid "No addons found."
6309
  msgstr ""
6310
 
6311
+ #: languages/vue.php:875
6312
  msgid "Refresh Addons"
6313
  msgstr ""
6314
 
6315
  #. Translators: Adds a line break.
6316
+ #: languages/vue.php:882
6317
  msgid "Upgrade to Pro to unlock addons and other great features."
6318
  msgstr ""
6319
 
6320
+ #: languages/vue.php:885
6321
  msgid "As a valued ExactMetrics Lite user you receive 50% off, automaticaly applied at checkout!"
6322
  msgstr ""
6323
 
6324
+ #: languages/vue.php:888
6325
  msgid "Refreshing Addons"
6326
  msgstr ""
6327
 
6328
+ #: languages/vue.php:891
6329
  msgid "Get ExactMetrics Pro Today and Unlock all the Powerful Features"
6330
  msgstr ""
6331
 
6332
  #. Translators: Placeholders make the text green.
6333
+ #: languages/vue.php:895
6334
  msgid "Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
6335
  msgstr ""
6336
 
6337
+ #: languages/vue.php:898
6338
  msgid "How to Connect to Google Analytics"
6339
  msgstr ""
6340
 
6341
+ #: languages/vue.php:901
6342
  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."
6343
  msgstr ""
6344
 
6345
+ #: languages/vue.php:904
6346
  msgid "Guide and Checklist for Advanced Insights"
6347
  msgstr ""
6348
 
6349
+ #: languages/vue.php:907
6350
  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."
6351
  msgstr ""
6352
 
6353
+ #: languages/vue.php:910
6354
  msgid "GDPR Guide"
6355
  msgstr ""
6356
 
6357
+ #: languages/vue.php:913
6358
  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. "
6359
  msgstr ""
6360
 
6361
+ #: languages/vue.php:916
6362
  msgid "How to Install and Activate ExactMetrics Addons"
6363
  msgstr ""
6364
 
6365
+ #: languages/vue.php:919
6366
  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."
6367
  msgstr ""
6368
 
6369
+ #: languages/vue.php:922
6370
  msgid "Enabling eCommerce Tracking and Reports"
6371
  msgstr ""
6372
 
6373
+ #: languages/vue.php:925
6374
  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."
6375
  msgstr ""
6376
 
6377
+ #: languages/vue.php:928
6378
  msgid "Read Documentation"
6379
  msgstr ""
6380
 
6381
  #. Translators: Makes the text bold.
6382
+ #: languages/vue.php:932
6383
  msgid "%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress."
6384
  msgstr ""
6385
 
6386
  #. Translators: Makes the text bold.
6387
+ #: languages/vue.php:936
6388
  msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post type, users, and other events with 1-click."
6389
  msgstr ""
6390
 
6391
+ #: languages/vue.php:945
6392
  msgid "One-click Complete eCommerce tracking"
6393
  msgstr ""
6394
 
6395
+ #: languages/vue.php:948
6396
  msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
6397
  msgstr ""
6398
 
6399
+ #: languages/vue.php:951
6400
  msgid "Forms Tracking"
6401
  msgstr ""
6402
 
6403
+ #: languages/vue.php:954
6404
  msgid "One-click Form Events Tracking"
6405
  msgstr ""
6406
 
6407
+ #: languages/vue.php:957
6408
  msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
6409
  msgstr ""
6410
 
6411
+ #: languages/vue.php:960
6412
  msgid "WordPress Admin Area Reports"
6413
  msgstr ""
6414
 
6415
+ #: languages/vue.php:963
6416
  msgid "Standard Reports"
6417
  msgstr ""
6418
 
6419
+ #: languages/vue.php:966
6420
  msgid "Overview Reports for the last 30 days."
6421
  msgstr ""
6422
 
6423
+ #: languages/vue.php:969
6424
  msgid "Advanced Reports"
6425
  msgstr ""
6426
 
6427
+ #: languages/vue.php:972
6428
  msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
6429
  msgstr ""
6430
 
6431
+ #: languages/vue.php:975
6432
  msgid "Dashboard Widget"
6433
  msgstr ""
6434
 
6435
+ #: languages/vue.php:978
6436
  msgid "Basic Widget"
6437
  msgstr ""
6438
 
6439
+ #: languages/vue.php:981
6440
  msgid "Overview Report Synopsis"
6441
  msgstr ""
6442
 
6443
+ #: languages/vue.php:984
6444
  msgid "Advanced Dashboard Widget"
6445
  msgstr ""
6446
 
6447
+ #: languages/vue.php:987
6448
  msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
6449
  msgstr ""
6450
 
6451
+ #: languages/vue.php:990
6452
  msgid "Publisher Reports"
6453
  msgstr ""
6454
 
6455
+ #: languages/vue.php:993
6456
  msgid "Advanced Publisher Reports & Tracking"
6457
  msgstr ""
6458
 
6459
+ #: languages/vue.php:996
6460
  msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
6461
  msgstr ""
6462
 
6463
+ #: languages/vue.php:1002
6464
  msgid "Email Summaries"
6465
  msgstr ""
6466
 
6467
+ #: languages/vue.php:1005
6468
  msgid "Included"
6469
  msgstr ""
6470
 
6471
+ #: languages/vue.php:1008
6472
  msgid "Get weekly traffic reports directly in your inbox."
6473
  msgstr ""
6474
 
6475
+ #: languages/vue.php:1014
6476
  msgid "Basic Options"
6477
  msgstr ""
6478
 
6479
+ #: languages/vue.php:1017
6480
  msgid "Order Popular Posts by comments or shares with 3 simple theme choices."
6481
  msgstr ""
6482
 
6483
+ #: languages/vue.php:1020
6484
  msgid "Dynamic Popular Posts & Popular Products"
6485
  msgstr ""
6486
 
6487
+ #: languages/vue.php:1023
6488
  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."
6489
  msgstr ""
6490
 
6491
+ #: languages/vue.php:1026
6492
  msgid "Not Available"
6493
  msgstr ""
6494
 
6495
+ #: languages/vue.php:1029
6496
  msgid "Complete Custom Dimensions Tracking"
6497
  msgstr ""
6498
 
6499
+ #: languages/vue.php:1032
6500
  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"
6501
  msgstr ""
6502
 
6503
+ #: languages/vue.php:1038
6504
  msgid "Limited Support"
6505
  msgstr ""
6506
 
6507
+ #: languages/vue.php:1041
6508
  msgid "Priority Support"
6509
  msgstr ""
6510
 
6511
+ #: languages/vue.php:1044
6512
  msgid "Get the most out of ExactMetrics by upgrading to Pro and unlocking all of the powerful features."
6513
  msgstr ""
6514
 
6515
+ #: languages/vue.php:1047
6516
  msgid "Feature"
6517
  msgstr ""
6518
 
6519
+ #: languages/vue.php:1050
6520
  msgid "Lite"
6521
  msgstr ""
6522
 
6523
+ #: languages/vue.php:1053
6524
  msgid "Pro"
6525
  msgstr ""
6526
 
6527
+ #: languages/vue.php:1056
6528
  msgid "Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout."
6529
  msgstr ""
6530
 
6531
+ #: languages/vue.php:1062
6532
  msgid "Universal Tracking"
6533
  msgstr ""
6534
 
6535
+ #: languages/vue.php:1065
6536
  msgid "Custom Google Analytics Link Tracking"
6537
  msgstr ""
6538
 
6539
+ #: languages/vue.php:1068
6540
  msgid "Standard Tracking"
6541
  msgstr ""
6542
 
6543
+ #: languages/vue.php:1071
6544
  msgid "Advanced Tracking"
6545
  msgstr ""
6546
 
6547
+ #: languages/vue.php:1074
6548
  msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
6549
  msgstr ""
6550
 
6551
+ #: languages/vue.php:1077
6552
  msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
6553
  msgstr ""
6554
 
6555
+ #: languages/vue.php:1080
6556
  msgid "No-Code-Needed Tracking Features"
6557
  msgstr ""
6558
 
6559
+ #: languages/vue.php:1083
6560
  msgid "Basic Tracking Options"
6561
  msgstr ""
6562
 
6563
+ #: languages/vue.php:1086
6564
  msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
6565
  msgstr ""
6566
 
6567
+ #: languages/vue.php:1089
6568
  msgid "Advanced Tracking Options"
6569
  msgstr ""
6570
 
6571
+ #: languages/vue.php:1092
6572
  msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
6573
  msgstr ""
6574
 
6575
+ #: languages/vue.php:1095
6576
  msgid "Inbox"
6577
  msgstr ""
6578
 
6579
+ #: languages/vue.php:1098
6580
  msgid "Back to Inbox"
6581
  msgstr ""
6582
 
6583
+ #: languages/vue.php:1101
6584
  msgid "View Dismissed"
6585
  msgstr ""
6586
 
6587
+ #: languages/vue.php:1104
6588
  msgid "Notifications"
6589
  msgstr ""
6590
 
6591
+ #: languages/vue.php:1107
6592
  msgid "Dismiss All"
6593
  msgstr ""
6594
 
6595
+ #: languages/vue.php:1110
6596
  msgid "Dismissed"
6597
  msgstr ""
6598
 
6599
+ #: languages/vue.php:1113
6600
  msgid "No Notifications"
6601
  msgstr ""
6602
 
6603
  #. Translators: Error status and error text.
6604
+ #: languages/vue.php:1117
6605
  msgid "Can't load settings. Error: %1$s, %2$s"
6606
  msgstr ""
6607
 
6608
+ #: languages/vue.php:1121
6609
  msgid "You appear to be offline."
6610
  msgstr ""
6611
 
6612
  #. Translators: Error status and error text.
6613
+ #: languages/vue.php:1126
6614
  msgid "Can't save settings. Error: %1$s, %2$s"
6615
  msgstr ""
6616
 
6617
+ #: languages/vue.php:1130
6618
  msgid "Network error encountered. Settings not saved."
6619
  msgstr ""
6620
 
6621
+ #: languages/vue.php:1133
6622
  msgid "Show in widget mode"
6623
  msgstr ""
6624
 
6625
+ #: languages/vue.php:1136
6626
  msgid "Show in full-width mode"
6627
  msgstr ""
6628
 
6629
+ #: languages/vue.php:1139
6630
  msgid "Show Overview Reports"
6631
  msgstr ""
6632
 
6633
+ #: languages/vue.php:1142
6634
  msgid "Show Publishers Reports"
6635
  msgstr ""
6636
 
6637
+ #: languages/vue.php:1145
6638
  msgid "Show eCommerce Reports"
6639
  msgstr ""
6640
 
6641
+ #: languages/vue.php:1148
6642
  msgid "Settings Menu"
6643
  msgstr ""
6644
 
6645
+ #: languages/vue.php:1151
6646
  msgid "Available in PRO version"
6647
  msgstr ""
6648
 
6649
+ #: languages/vue.php:1154
6650
  msgid "See All Reports"
6651
  msgstr ""
6652
 
6653
+ #: languages/vue.php:1157
6654
  msgid "Go to the Analytics Dashboard"
6655
  msgstr ""
6656
 
6657
+ #: languages/vue.php:1172
6658
  msgid "Cart Funnel"
6659
  msgstr ""
6660
 
6661
+ #: languages/vue.php:1175
6662
  msgid "Customer Insights"
6663
  msgstr ""
6664
 
6665
+ #: languages/vue.php:1178
6666
  msgid "Campaign Measurement"
6667
  msgstr ""
6668
 
6669
+ #: languages/vue.php:1181
6670
  msgid "Customer Profiles"
6671
  msgstr ""
6672
 
6673
+ #: languages/vue.php:1184
6674
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, revenue, and average order value, and more."
6675
  msgstr ""
6676
 
6677
+ #: languages/vue.php:1187
6678
  msgid "Truly Understand Your%1$s Customers With %2$sExactMetrics%3$s"
6679
  msgstr ""
6680
 
6681
+ #: languages/vue.php:1190
6682
  msgid "You never truly understand your customers until you used Enhanced %1$s eCommerce from ExactMetrics!"
6683
  msgstr ""
6684
 
6685
+ #: languages/vue.php:1193
6686
  msgid "Track all-new metrics!"
6687
  msgstr ""
6688
 
6689
+ #: languages/vue.php:1196
6690
  msgid "Get stats WooCommerce doesn’t give you like: Conversion Sources, Avg. Order Value, Revenue per Source, Total Add to Carts & More!"
6691
  msgstr ""
6692
 
6693
+ #: languages/vue.php:1199
6694
  msgid "FEATURES"
6695
  msgstr ""
6696
 
6697
+ #: languages/vue.php:1202
6698
  msgid "Get The Unique Metrics Neccessary for Growth"
6699
  msgstr ""
6700
 
6701
+ #: languages/vue.php:1205
6702
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, %1$srevenue, and average order value, and more."
6703
  msgstr ""
6704
 
6705
+ #: languages/vue.php:1208
6706
  msgid "Get Answers to the important questions %1$syou should know."
6707
  msgstr ""
6708
 
6709
+ #: languages/vue.php:1211
6710
  msgid "Did the login/registration step of the checkout put users off?"
6711
  msgstr ""
6712
 
6713
+ #: languages/vue.php:1214
6714
  msgid "Which ad campaign is driving the most revenue?"
6715
  msgstr ""
6716
 
6717
+ #: languages/vue.php:1217
6718
  msgid "Who is my typical customer?"
6719
  msgstr ""
6720
 
6721
+ #: languages/vue.php:1220
6722
  msgid "Level-up Your eCommerce store with %1$sExactMetrics + WooCommerce!%1$s"
6723
  msgstr ""
6724
 
6725
  #. Translators: Error status and error text.
6726
+ #: languages/vue.php:1224
6727
  msgid "Can't deactivate the license. Error: %1$s, %2$s"
6728
  msgstr ""
6729
 
6730
  #. Translators: Error status and error text.
6731
+ #: languages/vue.php:1228
6732
  msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
6733
  msgstr ""
6734
 
6735
  #. Translators: Error status and error text.
6736
+ #: languages/vue.php:1232
6737
  msgid "Can't load license details. Error: %1$s, %2$s"
6738
  msgstr ""
6739
 
6740
+ #: languages/vue.php:1235
6741
  msgid "Error loading license details"
6742
  msgstr ""
6743
 
6744
  #. Translators: Error status and error text.
6745
+ #: languages/vue.php:1239
6746
  msgid "Can't verify the license. Error: %1$s, %2$s"
6747
  msgstr ""
6748
 
6749
  #. Translators: Error status and error text.
6750
+ #: languages/vue.php:1243
6751
  msgid "Can't validate the license. Error: %1$s, %2$s"
6752
  msgstr ""
6753
 
6754
+ #: languages/vue.php:1246
6755
  msgid "Reset to default"
6756
  msgstr ""
6757
 
6758
+ #: languages/vue.php:1249
6759
  msgid "The value entered does not match the required format"
6760
  msgstr ""
6761
 
6762
+ #: languages/vue.php:1252
6763
  msgid "Check out the newly added classic mode"
6764
  msgstr ""
6765
 
6766
  #. Translators: Placeholder adds a line break.
6767
+ #: languages/vue.php:1256
6768
  msgid "You can customize your %sdate range only in the PRO version."
6769
  msgstr ""
6770
 
6771
+ #: languages/vue.php:1259
6772
  msgid "Help Us Improve"
6773
  msgstr ""
6774
 
6775
+ #: languages/vue.php:1262
6776
  msgid "Help us better understand our users and their website needs."
6777
  msgstr ""
6778
 
6779
  #. Translators: Adds a link to the documentation.
6780
+ #: languages/vue.php:1266
6781
  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"
6782
  msgstr ""
6783
 
6784
  #. Translators: The name of the field that is throwing a validation error.
6785
+ #: languages/vue.php:1270
6786
  msgid "%s can't be empty."
6787
  msgstr ""
6788
 
6789
+ #: languages/vue.php:1273
6790
  msgid "Duplicate values are not allowed."
6791
  msgstr ""
6792
 
6793
+ #: languages/vue.php:1276
6794
  msgid "You can add maximum 5 items."
6795
  msgstr ""
6796
 
6797
+ #: languages/vue.php:1279
6798
  msgid "At least 0 item required."
6799
  msgstr ""
6800
 
6801
+ #: languages/vue.php:1282
6802
  msgid "Add Another Link Path"
6803
  msgstr ""
6804
 
6805
+ #: languages/vue.php:1285
6806
  msgid "Remove row"
6807
  msgstr ""
6808
 
6809
+ #: languages/vue.php:1288
6810
  msgid "Sessions"
6811
  msgstr ""
6812
 
6813
  #. Translators: Line break.
6814
+ #: languages/vue.php:1292
6815
  msgid "Unique %s Sessions"
6816
  msgstr ""
6817
 
6818
+ #: languages/vue.php:1296
6819
  msgid "Pageviews"
6820
  msgstr ""
6821
 
6822
  #. Translators: Line break.
6823
+ #: languages/vue.php:1300
6824
  msgid "Unique %s Pageviews"
6825
  msgstr ""
6826
 
6827
+ #: languages/vue.php:1303
6828
  msgid "A session is the browsing session of a single user to your site."
6829
  msgstr ""
6830
 
6831
+ #: languages/vue.php:1306
6832
  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."
6833
  msgstr ""
6834
 
6835
+ #: languages/vue.php:1309
6836
  msgid "Total duration of all sessions (in seconds) / number of sessions."
6837
  msgstr ""
6838
 
6839
+ #: languages/vue.php:1312
6840
  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."
6841
  msgstr ""
6842
 
6843
+ #: languages/vue.php:1315
6844
  msgid "The number of distinct tracked users"
6845
  msgstr ""
6846
 
6847
+ #: languages/vue.php:1318
6848
  msgid "Avg. Session Duration"
6849
  msgstr ""
6850
 
6851
+ #: languages/vue.php:1324
6852
  msgid "Total Users"
6853
  msgstr ""
6854
 
6855
+ #: languages/vue.php:1327
6856
  msgid "No options available"
6857
  msgstr ""
6858
 
6859
  #. Translators: Placeholders make the text highlighted.
6860
+ #: languages/vue.php:1331
6861
  msgid "%1$sNeed%2$s to Grow FASTER??"
6862
  msgstr ""
6863
 
6864
+ #: languages/vue.php:1334
6865
  msgid "Get additional, actionable insights by going Pro."
6866
  msgstr ""
6867
 
6868
+ #: languages/vue.php:1337
6869
  msgid "Skip"
6870
  msgstr ""
6871
 
6872
+ #: languages/vue.php:1340
6873
  msgid "See All Features"
6874
  msgstr ""
6875
 
6876
+ #: languages/vue.php:1343
6877
  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."
6878
  msgstr ""
6879
 
6880
+ #: languages/vue.php:1346
6881
  msgid "Our Pro plan includes:"
6882
  msgstr ""
6883
 
6884
  #. Translators: Error status and error text.
6885
+ #: languages/vue.php:1350
6886
  msgid "Can't load errors. Error: %1$s, %2$s"
6887
  msgstr ""
6888
 
6889
+ #: languages/vue.php:1353
6890
  msgid "Real-Time Report"
6891
  msgstr ""
6892
 
6893
+ #: languages/vue.php:1356
6894
  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."
6895
  msgstr ""
6896
 
6897
  #. Translators: add link to blog.
6898
+ #: languages/vue.php:1360
6899
  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."
6900
  msgstr ""
6901
 
6902
+ #: languages/vue.php:1363
6903
  msgid "Here's what you get:"
6904
  msgstr ""
6905
 
6906
+ #: languages/vue.php:1366
6907
  msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
6908
  msgstr ""
6909
 
6910
+ #: languages/vue.php:1369
6911
  msgid "See Your Top Pages Immediately After Making Changes"
6912
  msgstr ""
6913
 
6914
+ #: languages/vue.php:1372
6915
  msgid "See Your Top Referral Sources and Adapt Faster"
6916
  msgstr ""
6917
 
6918
+ #: languages/vue.php:1375
6919
  msgid "See Your Traffic Demographics"
6920
  msgstr ""
6921
 
6922
+ #: languages/vue.php:1378
6923
  msgid "Get Fresh Report Data Every 60 Seconds"
6924
  msgstr ""
6925
 
6926
+ #: languages/vue.php:1381
6927
  msgid "See Where Your Visitors are Connecting From (country & city)"
6928
  msgstr ""
6929
 
6930
+ #: languages/vue.php:1384
6931
  msgid "Forms Report"
6932
  msgstr ""
6933
 
6934
+ #: languages/vue.php:1387
6935
  msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
6936
  msgstr ""
6937
 
6938
+ #: languages/vue.php:1390
6939
  msgid "See Your Top Converting Forms and Optimize"
6940
  msgstr ""
6941
 
6942
+ #: languages/vue.php:1393
6943
  msgid "See Your Forms Impressions Count to Find the Best Placement"
6944
  msgstr ""
6945
 
6946
+ #: languages/vue.php:1396
6947
  msgid "Awesome, You're All Set!"
6948
  msgstr ""
6949
 
6950
+ #: languages/vue.php:1399
6951
  msgid "ExactMetrics is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
6952
  msgstr ""
6953
 
6954
  #. Translators: Make text bold.
6955
+ #: languages/vue.php:1403
6956
  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."
6957
  msgstr ""
6958
 
6959
  #. Translators: Add link to blog.
6960
  #. Translators: Link to our blog.
6961
+ #: languages/vue.php:1407
6962
+ #: languages/vue.php:3628
6963
  msgid "%1$sSubscribe to the ExactMetrics blog%2$s for tips on how to get more traffic and grow your business."
6964
  msgstr ""
6965
 
6966
+ #: languages/vue.php:1410
6967
  msgid "Finish Setup & Exit Wizard"
6968
  msgstr ""
6969
 
6970
+ #: languages/vue.php:1413
6971
  msgid "Google Analytics"
6972
  msgstr ""
6973
 
6974
+ #: languages/vue.php:1416
6975
  msgid "Subscribe"
6976
  msgstr ""
6977
 
6978
+ #: languages/vue.php:1419
6979
  msgid "Checking your website..."
6980
  msgstr ""
6981
 
6982
+ #: languages/vue.php:1422
6983
  msgid "Recommended Addons"
6984
  msgstr ""
6985
 
6986
  #. Translators: Add a link to upgrade and make the text green.
6987
+ #: languages/vue.php:1426
6988
  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!"
6989
  msgstr ""
6990
 
6991
+ #: languages/vue.php:1429
6992
  msgid "Upgrade to PRO Now"
6993
  msgstr ""
6994
 
6995
+ #: languages/vue.php:1432
6996
  msgid "See who’s viewing and submitting your forms, so you can increase your conversion rate."
6997
  msgstr ""
6998
 
6999
+ #: languages/vue.php:1435
7000
  msgid "See All Your Important Store Metrics in One Place."
7001
  msgstr ""
7002
 
7003
+ #: languages/vue.php:1438
7004
  msgid "... and more:"
7005
  msgstr ""
7006
 
7007
+ #: languages/vue.php:1441
7008
  msgid "Dimensions- Track authors, categories, trags, searches, users and more."
7009
  msgstr ""
7010
 
7011
+ #: languages/vue.php:1444
7012
  msgid "EU Compliance- Improve compliance with GDPR and other privacy regulations."
7013
  msgstr ""
7014
 
7015
+ #: languages/vue.php:1447
7016
  msgid "AMP- ExactMetrics Google AMP Addon enables accurate tracking of all mobile visitors to your AMP-enabled pages."
7017
  msgstr ""
7018
 
7019
+ #: languages/vue.php:1450
7020
  msgid "Facebook Instant Articles- Integrate Google Analytics and Facebook Instant Articles with just one click."
7021
  msgstr ""
7022
 
7023
+ #: languages/vue.php:1453
7024
  msgid "eCommerce- Sales tracking for your WooCommerce, Easy Digital Downloads, LifterLMS or MemberPress stores."
7025
  msgstr ""
7026
 
7027
+ #: languages/vue.php:1456
7028
  msgid "Google Optimize- Easily enable Google Optimize on your WordPress site."
7029
  msgstr ""
7030
 
7031
+ #: languages/vue.php:1459
7032
  msgid "Forms- Enable tracking of your form views, submissions and conversion rates."
7033
  msgstr ""
7034
 
7035
+ #: languages/vue.php:1462
7036
  msgid "Ads- See who’s clicking on your Google Adsense banner ads."
7037
  msgstr ""
7038
 
7039
+ #: languages/vue.php:1465
7040
  msgid "Hello and Welcome to ExactMetrics, the Best Google Analytics Plugin for WordPress."
7041
  msgstr ""
7042
 
7043
+ #: languages/vue.php:1468
7044
  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."
7045
  msgstr ""
7046
 
7047
+ #: languages/vue.php:1471
7048
  msgid "The ExactMetrics Team"
7049
  msgstr ""
7050
 
7051
+ #: languages/vue.php:1474
7052
  msgid "Custom Dimensions Report"
7053
  msgstr ""
7054
 
7055
+ #: languages/vue.php:1477
7056
  msgid "Unlock the Dimensions Report and decide what data is important using your own custom tracking parameters"
7057
  msgstr ""
7058
 
7059
+ #: languages/vue.php:1480
7060
  msgid "The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
7061
  msgstr ""
7062
 
7063
+ #: languages/vue.php:1483
7064
  msgid "Author tracking to see which author’s posts generate the most traffic"
7065
  msgstr ""
7066
 
7067
+ #: languages/vue.php:1486
7068
  msgid "Post Type tracking to see which WordPress post types perform better"
7069
  msgstr ""
7070
 
7071
+ #: languages/vue.php:1489
7072
  msgid "Category tracking to see which sections of your sites are the most popular"
7073
  msgstr ""
7074
 
7075
+ #: languages/vue.php:1492
7076
  msgid "SEO score tracking to see which blog SEO scores are the most popular"
7077
  msgstr ""
7078
 
7079
+ #: languages/vue.php:1495
7080
  msgid "Focus Keyword tracking to see which of your content is doing well in search engines."
7081
  msgstr ""
7082
 
7083
+ #: languages/vue.php:1498
7084
  msgid "Tag tracking to determine which topics are the most engaging to for your website visitors."
7085
  msgstr ""
7086
 
7087
  #. Translators: add link to blog.
7088
+ #: languages/vue.php:1502
7089
  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."
7090
  msgstr ""
7091
 
7092
+ #: languages/vue.php:1505
7093
  msgid "See Your Homepage's Overall Performance Score"
7094
  msgstr ""
7095
 
7096
+ #: languages/vue.php:1508
7097
  msgid "Run an Audit on Your Homepage and See Your Server Response Time"
7098
  msgstr ""
7099
 
7100
+ #: languages/vue.php:1511
7101
  msgid "Learn How Long It Takes for Your Viewers to Interact With Your Site"
7102
  msgstr ""
7103
 
7104
+ #: languages/vue.php:1514
7105
  msgid "Learn How to Improve the Core Metrics that Google Uses to Rank Your Site"
7106
  msgstr ""
7107
 
7108
+ #: languages/vue.php:1517
7109
  msgid "Hide dashboard widget"
7110
  msgstr ""
7111
 
7112
+ #: languages/vue.php:1520
7113
  msgid "Are you sure you want to hide the ExactMetrics Dashboard Widget? "
7114
  msgstr ""
7115
 
7116
+ #: languages/vue.php:1523
7117
  msgid "Yes, hide it!"
7118
  msgstr ""
7119
 
7120
+ #: languages/vue.php:1526
7121
  msgid "No, cancel!"
7122
  msgstr ""
7123
 
7124
+ #: languages/vue.php:1529
7125
  msgid "ExactMetrics Widget Hidden"
7126
  msgstr ""
7127
 
7128
+ #: languages/vue.php:1532
7129
  msgid "You can re-enable the ExactMetrics widget at any time using the \"Screen Options\" menu on the top right of this page"
7130
  msgstr ""
7131
 
7132
  #. Translators: Error status and error text.
7133
+ #: languages/vue.php:1536
7134
  msgid "Can't deauthenticate. Error: %1$s, %2$s"
7135
  msgstr ""
7136
 
7137
  #. Translators: Error status and error text.
7138
+ #: languages/vue.php:1540
7139
  msgid "Can't load authentication details. Error: %1$s, %2$s"
7140
  msgstr ""
7141
 
7142
+ #: languages/vue.php:1543
7143
  msgid "You appear to be offline. Settings not saved."
7144
  msgstr ""
7145
 
7146
  #. Translators: Error status and error text.
7147
+ #: languages/vue.php:1547
7148
  msgid "Can't authenticate. Error: %1$s, %2$s"
7149
  msgstr ""
7150
 
7151
  #. Translators: Error status and error text.
7152
+ #: languages/vue.php:1551
7153
  msgid "Can't reauthenticate. Error: %1$s, %2$s"
7154
  msgstr ""
7155
 
7156
  #. Translators: Error status and error text.
7157
+ #: languages/vue.php:1555
7158
  msgid "Can't verify credentials. Error: %1$s, %2$s"
7159
  msgstr ""
7160
 
7161
+ #: languages/vue.php:1558
7162
  msgid "Still Calculating..."
7163
  msgstr ""
7164
 
7165
+ #: languages/vue.php:1561
7166
  msgid "Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year."
7167
  msgstr ""
7168
 
7169
+ #: languages/vue.php:1564
7170
  msgid "Back to Overview Report"
7171
  msgstr ""
7172
 
7173
+ #: languages/vue.php:1567
7174
  msgid "Your 2020 Analytics Report"
7175
  msgstr ""
7176
 
7177
+ #: languages/vue.php:1570
7178
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2021!"
7179
  msgstr ""
7180
 
7181
+ #: languages/vue.php:1573
7182
  msgid "Audience"
7183
  msgstr ""
7184
 
7185
+ #: languages/vue.php:1576
7186
  msgid "Congrats"
7187
  msgstr ""
7188
 
7189
+ #: languages/vue.php:1579
7190
  msgid "Your website was quite popular this year! "
7191
  msgstr ""
7192
 
7193
+ #: languages/vue.php:1582
7194
  msgid "You had "
7195
  msgstr ""
7196
 
7197
+ #: languages/vue.php:1585
7198
  msgid " visitors!"
7199
  msgstr ""
7200
 
7201
+ #: languages/vue.php:1588
7202
  msgid " visitors"
7203
  msgstr ""
7204
 
7205
+ #: languages/vue.php:1591
7206
  msgid "Total Visitors"
7207
  msgstr ""
7208
 
7209
+ #: languages/vue.php:1594
7210
  msgid "Total Sessions"
7211
  msgstr ""
7212
 
7213
+ #: languages/vue.php:1597
7214
  msgid "Visitors by Month"
7215
  msgstr ""
7216
 
7217
+ #: languages/vue.php:1600
7218
  msgid "January 1, 2020 - December 31, 2020"
7219
  msgstr ""
7220
 
7221
+ #: languages/vue.php:1603
7222
  msgid "A Tip for 2021"
7223
  msgstr ""
7224
 
7225
+ #: languages/vue.php:1606
7226
  msgid "Demographics"
7227
  msgstr ""
7228
 
7229
+ #: languages/vue.php:1609
7230
  msgid "#1"
7231
  msgstr ""
7232
 
7233
+ #: languages/vue.php:1612
7234
  msgid "You Top 5 Countries"
7235
  msgstr ""
7236
 
7237
+ #: languages/vue.php:1615
7238
  msgid "Let’s get to know your visitors a little better, shall we?"
7239
  msgstr ""
7240
 
7241
+ #: languages/vue.php:1618
7242
  msgid "Gender"
7243
  msgstr ""
7244
 
7245
+ #: languages/vue.php:1621
7246
  msgid "Female"
7247
  msgstr ""
7248
 
7249
+ #: languages/vue.php:1624
7250
  msgid "Women"
7251
  msgstr ""
7252
 
7253
+ #: languages/vue.php:1627
7254
  msgid "Male"
7255
  msgstr ""
7256
 
7257
+ #: languages/vue.php:1630
7258
  msgid "Average Age"
7259
  msgstr ""
7260
 
7261
+ #: languages/vue.php:1633
7262
  msgid "Behavior"
7263
  msgstr ""
7264
 
7265
+ #: languages/vue.php:1636
7266
  msgid "Your Top 5 Pages"
7267
  msgstr ""
7268
 
7269
+ #: languages/vue.php:1639
7270
  msgid "Time Spent on Site"
7271
  msgstr ""
7272
 
7273
+ #: languages/vue.php:1642
7274
  msgid "minutes"
7275
  msgstr ""
7276
 
7277
+ #: languages/vue.php:1645
7278
  msgid "Device Type"
7279
  msgstr ""
7280
 
7281
+ #: languages/vue.php:1648
7282
  msgid "A Tip For 2021"
7283
  msgstr ""
7284
 
7285
+ #: languages/vue.php:1651
7286
  msgid "Are you looking for a way to track your landing pages and see which one gets the most conversions on your website?"
7287
  msgstr ""
7288
 
7289
+ #: languages/vue.php:1654
7290
  msgid "Read - How to Track Google Analytics Landing Page Conversions"
7291
  msgstr ""
7292
 
7293
+ #: languages/vue.php:1657
7294
  msgid "So, where did all of these visitors come from?"
7295
  msgstr ""
7296
 
7297
+ #: languages/vue.php:1660
7298
  msgid "Clicks"
7299
  msgstr ""
7300
 
7301
+ #: languages/vue.php:1663
7302
  msgid "Your Top 5 Keywords"
7303
  msgstr ""
7304
 
7305
+ #: languages/vue.php:1666
7306
  msgid "What keywords visitors searched for to find your site"
7307
  msgstr ""
7308
 
7309
+ #: languages/vue.php:1669
7310
  msgid "Your Top 5 Referrals"
7311
  msgstr ""
7312
 
7313
+ #: languages/vue.php:1672
7314
  msgid "The websites that link back to your website"
7315
  msgstr ""
7316
 
7317
+ #: languages/vue.php:1675
7318
  msgid "Opportunity"
7319
  msgstr ""
7320
 
7321
+ #: languages/vue.php:1678
7322
  msgid "Learn how to boost your SEO rankings using ExactMetrics so more visitors reach your articles and increase engagement."
7323
  msgstr ""
7324
 
7325
+ #: languages/vue.php:1681
7326
  msgid "Read - 5 Ways to Skyrocket Your SEO Rankings with Google Analytics"
7327
  msgstr ""
7328
 
7329
+ #: languages/vue.php:1684
7330
  msgid "Thank you for using ExactMetrics!"
7331
  msgstr ""
7332
 
7333
+ #: languages/vue.php:1687
7334
  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."
7335
  msgstr ""
7336
 
7337
+ #: languages/vue.php:1690
7338
  msgid "Here's to an amazing 2021!"
7339
  msgstr ""
7340
 
7341
+ #: languages/vue.php:1693
7342
  msgid "Enjoying ExactMetrics"
7343
  msgstr ""
7344
 
7345
+ #: languages/vue.php:1696
7346
  msgid "Leave a five star review!"
7347
  msgstr ""
7348
 
7349
+ #: languages/vue.php:1699
7350
  msgid "Syed Balkhi"
7351
  msgstr ""
7352
 
7353
+ #: languages/vue.php:1702
7354
  msgid "Chris Christoff"
7355
  msgstr ""
7356
 
7357
+ #: languages/vue.php:1705
7358
  msgid "Write Review"
7359
  msgstr ""
7360
 
7361
+ #: languages/vue.php:1708
7362
  msgid "Did you know over 10 million websites use our plugins?"
7363
  msgstr ""
7364
 
7365
+ #: languages/vue.php:1711
7366
  msgid "Try our other popular WordPress plugins to grow your website in 2021."
7367
  msgstr ""
7368
 
7369
+ #: languages/vue.php:1714
7370
  msgid "Join our Communities!"
7371
  msgstr ""
7372
 
7373
+ #: languages/vue.php:1717
7374
  msgid "Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level."
7375
  msgstr ""
7376
 
7377
+ #: languages/vue.php:1720
7378
  msgid "Facebook Group"
7379
  msgstr ""
7380
 
7381
+ #: languages/vue.php:1723
7382
  msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
7383
  msgstr ""
7384
 
7385
+ #: languages/vue.php:1726
7386
  msgid "Join Now...It’s Free!"
7387
  msgstr ""
7388
 
7389
+ #: languages/vue.php:1729
7390
  msgid "WordPress Tutorials by WPBeginner"
7391
  msgstr ""
7392
 
7393
+ #: languages/vue.php:1732
7394
  msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
7395
  msgstr ""
7396
 
7397
+ #: languages/vue.php:1735
7398
  msgid "Visit WPBeginner"
7399
  msgstr ""
7400
 
7401
+ #: languages/vue.php:1738
7402
  msgid "Follow Us!"
7403
  msgstr ""
7404
 
7405
+ #: languages/vue.php:1741
7406
  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."
7407
  msgstr ""
7408
 
7409
+ #: languages/vue.php:1744
7410
  msgid "Copyright ExactMetrics, 2021"
7411
  msgstr ""
7412
 
7413
+ #: languages/vue.php:1747
7414
  msgid "Upgrade to ExactMetrics Pro to Unlock Additional Actionable Insights"
7415
  msgstr ""
7416
 
7417
+ #: languages/vue.php:1753
7418
  msgid "January"
7419
  msgstr ""
7420
 
7421
+ #: languages/vue.php:1756
7422
  msgid "February"
7423
  msgstr ""
7424
 
7425
+ #: languages/vue.php:1759
7426
  msgid "March"
7427
  msgstr ""
7428
 
7429
+ #: languages/vue.php:1762
7430
  msgid "April"
7431
  msgstr ""
7432
 
7433
+ #: languages/vue.php:1765
7434
  msgid "May"
7435
  msgstr ""
7436
 
7437
+ #: languages/vue.php:1768
7438
  msgid "June"
7439
  msgstr ""
7440
 
7441
+ #: languages/vue.php:1771
7442
  msgid "July"
7443
  msgstr ""
7444
 
7445
+ #: languages/vue.php:1774
7446
  msgid "August"
7447
  msgstr ""
7448
 
7449
+ #: languages/vue.php:1777
7450
  msgid "September"
7451
  msgstr ""
7452
 
7453
+ #: languages/vue.php:1780
7454
  msgid "October"
7455
  msgstr ""
7456
 
7457
+ #: languages/vue.php:1783
7458
  msgid "November"
7459
  msgstr ""
7460
 
7461
+ #: languages/vue.php:1786
7462
  msgid "December"
7463
  msgstr ""
7464
 
7465
  #. Translators: Number of visitors.
7466
+ #: languages/vue.php:1790
7467
  msgid "Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>"
7468
  msgstr ""
7469
 
7470
+ #: languages/vue.php:1793
7471
  msgid "See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success."
7472
  msgstr ""
7473
 
7474
  #. Translators: Number of visitors.
7475
+ #: languages/vue.php:1797
7476
  msgid "Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries."
7477
  msgstr ""
7478
 
7479
  #. Translators: Number of visitors.
7480
+ #: languages/vue.php:1801
7481
  msgid "%s Visitors"
7482
  msgstr ""
7483
 
7484
  #. Translators: Percent and Number of visitors.
7485
+ #: languages/vue.php:1805
7486
  msgid "%1$s&#37 of your visitors were %2$s"
7487
  msgstr ""
7488
 
7489
  #. Translators: Number of visitors and their age.
7490
+ #: languages/vue.php:1809
7491
  msgid "%1$s&#37 of your visitors were between the ages of %2$s"
7492
  msgstr ""
7493
 
7494
+ #: languages/vue.php:1812
7495
  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>"
7496
  msgstr ""
7497
 
7498
  #. Translators: Number of minutes spent on site.
7499
+ #: languages/vue.php:1816
7500
  msgid "Each visitor spent an average of %s minutes on your website in 2020."
7501
  msgstr ""
7502
 
7503
  #. Translators: Name of device type.
7504
+ #: languages/vue.php:1820
7505
  msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
7506
  msgstr ""
7507
 
7508
  #. Translators: Number of visitors and device percentage.
7509
+ #: languages/vue.php:1824
7510
  msgid "%1$s&#37 of your visitors were on a %2$s device."
7511
  msgstr ""
7512
 
7513
+ #: languages/vue.php:1827
7514
  msgid "Desktop"
7515
  msgstr ""
7516
 
7517
+ #: languages/vue.php:1830
7518
  msgid "Tablet"
7519
  msgstr ""
7520
 
7521
+ #: languages/vue.php:1833
7522
  msgid "Mobile"
7523
  msgstr ""
7524
 
7525
+ #: languages/vue.php:1836
7526
  msgid "Force Deauthenticate"
7527
  msgstr ""
7528
 
7529
+ #: languages/vue.php:1839
7530
  msgid "Disconnect ExactMetrics"
7531
  msgstr ""
7532
 
7533
+ #: languages/vue.php:1842
7534
  msgid "Authenticating"
7535
  msgstr ""
7536
 
7537
+ #: languages/vue.php:1845
7538
  msgid "Verifying Credentials"
7539
  msgstr ""
7540
 
7541
+ #: languages/vue.php:1848
7542
  msgid "Your site is connected to ExactMetrics!"
7543
  msgstr ""
7544
 
7545
+ #: languages/vue.php:1851
7546
  msgid "Deauthenticating"
7547
  msgstr ""
7548
 
7549
+ #: languages/vue.php:1854
7550
  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."
7551
  msgstr ""
7552
 
7553
+ #: languages/vue.php:1857
7554
+ #: languages/vue.php:1935
7555
  msgid "Connect ExactMetrics"
7556
  msgstr ""
7557
 
7558
+ #: languages/vue.php:1860
7559
  msgid "Verify Credentials"
7560
  msgstr ""
7561
 
7562
+ #: languages/vue.php:1866
7563
  msgid "Website Profile"
7564
  msgstr ""
7565
 
7566
+ #: languages/vue.php:1869
7567
  msgid "Active Profile"
7568
  msgstr ""
7569
 
7570
+ #: languages/vue.php:1872
7571
  msgid "Your website profile has been set at the network level of your WordPress Multisite."
7572
  msgstr ""
7573
 
7574
+ #: languages/vue.php:1875
7575
  msgid "If you would like to use a different profile for this subsite, you can authenticate below."
7576
  msgstr ""
7577
 
7578
+ #: languages/vue.php:1879
7579
  msgid "Dual Tracking Profile"
7580
  msgstr ""
7581
 
7582
+ #: languages/vue.php:1883
7583
  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."
7584
  msgstr ""
7585
 
7586
+ #: languages/vue.php:1887
7587
  msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers."
7588
  msgstr ""
7589
 
7590
+ #: languages/vue.php:1891
7591
  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."
7592
  msgstr ""
7593
 
7594
+ #: languages/vue.php:1894
7595
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
7596
  msgstr ""
7597
 
7598
+ #: languages/vue.php:1898
7599
  msgid "Measurement Protocol API Secret"
7600
  msgstr ""
7601
 
7602
+ #: languages/vue.php:1902
7603
  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."
7604
  msgstr ""
7605
 
7606
+ #: languages/vue.php:1905
7607
  msgid "Classic mode"
7608
  msgstr ""
7609
 
7610
+ #: languages/vue.php:1908
7611
  msgid "Proceed"
7612
  msgstr ""
7613
 
7614
+ #: languages/vue.php:1911
7615
  msgid "Connection Information"
7616
  msgstr ""
7617
 
7618
+ #: languages/vue.php:1914
7619
  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."
7620
  msgstr ""
7621
 
7622
+ #: languages/vue.php:1917
7623
  msgid "Hostname"
7624
  msgstr ""
7625
 
7626
+ #: languages/vue.php:1920
7627
  msgid "FTP Username"
7628
  msgstr ""
7629
 
7630
+ #: languages/vue.php:1923
7631
  msgid "FTP Password"
7632
  msgstr ""
7633
 
7634
+ #: languages/vue.php:1926
7635
  msgid "This password will not be stored on the server."
7636
  msgstr ""
7637
 
7638
+ #: languages/vue.php:1929
7639
  msgid "Connection Type"
7640
  msgstr ""
7641
 
7642
+ #: languages/vue.php:1932
7643
  msgid "Cancel"
7644
  msgstr ""
7645
 
7646
+ #: languages/vue.php:1938
7647
  msgid "Website profile"
7648
  msgstr ""
7649
 
7650
+ #: languages/vue.php:1941
7651
  msgid "Active profile"
7652
  msgstr ""
7653
 
7654
+ #: languages/vue.php:1944
7655
  msgid "Skip and Keep Connection"
7656
  msgstr ""
7657
 
7658
+ #. Translators: Number of days.
7659
+ #: languages/vue.php:1948
7660
  msgid "vs. Previous Day"
7661
  msgstr ""
7662
 
7663
+ #: languages/vue.php:1951
7664
  msgid "No change"
7665
  msgstr ""
7666
 
7667
+ #: languages/vue.php:1954
7668
  msgid "Choose Theme"
7669
  msgstr ""
7670
 
7671
+ #: languages/vue.php:1957
7672
  msgid "Widget Styling"
7673
  msgstr ""
7674
 
7675
+ #: languages/vue.php:1960
7676
  msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
7677
  msgstr ""
7678
 
7679
+ #: languages/vue.php:1963
7680
  msgid "Sort By"
7681
  msgstr ""
7682
 
7683
+ #: languages/vue.php:1966
7684
  msgid "Choose how you'd like the widget to determine your popular posts."
7685
  msgstr ""
7686
 
7687
+ #: languages/vue.php:1969
7688
  msgid "Display Title"
7689
  msgstr ""
7690
 
7691
+ #: languages/vue.php:1975
7692
  msgid "Title your widget and set its display preferences."
7693
  msgstr ""
7694
 
7695
+ #: languages/vue.php:1978
7696
  msgid "Include in Post Types"
7697
  msgstr ""
7698
 
7699
+ #: languages/vue.php:1981
7700
  msgid "Exclude from specific posts"
7701
  msgstr ""
7702
 
7703
  #. Translators: Placeholders make the text bold.
7704
+ #: languages/vue.php:1985
7705
  msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
7706
  msgstr ""
7707
 
7708
  #. Translators: Placeholders make the text bold.
7709
+ #: languages/vue.php:1989
7710
  msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
7711
  msgstr ""
7712
 
7713
+ #: languages/vue.php:1992
7714
  msgid "Loading Themes"
7715
  msgstr ""
7716
 
7717
  #. Translators: placeholders make text small.
7718
+ #: languages/vue.php:1996
7719
  msgid "Default Styles %1$s- As seen above.%2$s"
7720
  msgstr ""
7721
 
7722
  #. Translators: placeholders make text small.
7723
+ #: languages/vue.php:2000
7724
  msgid "No Styles %1$s- Use your own CSS.%2$s"
7725
  msgstr ""
7726
 
7727
  #. Translators: placeholders make text small.
7728
+ #: languages/vue.php:2004
7729
  msgid "Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s"
7730
  msgstr ""
7731
 
7732
  #. Translators: placeholders make text small.
7733
+ #: languages/vue.php:2008
7734
  msgid "SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s"
7735
  msgstr ""
7736
 
7737
  #. Translators: placeholders make text small.
7738
+ #: languages/vue.php:2012
7739
  msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
7740
  msgstr ""
7741
 
7742
+ #: languages/vue.php:2015
7743
  msgid "Placement"
7744
  msgstr ""
7745
 
7746
+ #: languages/vue.php:2018
7747
  msgid "Choose how you'd like to place the widget."
7748
  msgstr ""
7749
 
7750
+ #: languages/vue.php:2021
7751
  msgid "Insert After"
7752
  msgstr ""
7753
 
7754
+ #: languages/vue.php:2024
7755
  msgid "Choose where in the post body the widget will be placed."
7756
  msgstr ""
7757
 
7758
+ #: languages/vue.php:2027
7759
  msgid "Customize Design"
7760
  msgstr ""
7761
 
7762
+ #: languages/vue.php:2030
7763
  msgid "words"
7764
  msgstr ""
7765
 
7766
+ #: languages/vue.php:2033
7767
  msgid "Please select at least one post to display."
7768
  msgstr ""
7769
 
7770
  #. Translators: placeholders make text small.
7771
+ #: languages/vue.php:2037
7772
  msgid "Automatic %1$s- The widget is automatically placed inside the post body.%2$s"
7773
  msgstr ""
7774
 
7775
  #. Translators: placeholders make text small.
7776
+ #: languages/vue.php:2041
7777
  msgid "Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s"
7778
  msgstr ""
7779
 
7780
+ #: languages/vue.php:2044
7781
  msgid "Caching"
7782
  msgstr ""
7783
 
7784
+ #: languages/vue.php:2047
7785
  msgid "Enable Data Caching"
7786
  msgstr ""
7787
 
7788
+ #: languages/vue.php:2050
7789
  msgid "Refresh Cache Every"
7790
  msgstr ""
7791
 
7792
+ #: languages/vue.php:2053
7793
  msgid "Choose how often to refresh the cache."
7794
  msgstr ""
7795
 
7796
+ #: languages/vue.php:2056
7797
  msgid "Enable Ajaxify"
7798
  msgstr ""
7799
 
7800
+ #: languages/vue.php:2059
7801
  msgid "Ajaxify Widget"
7802
  msgstr ""
7803
 
7804
+ #: languages/vue.php:2062
7805
  msgid "Use to bypass page caching."
7806
  msgstr ""
7807
 
7808
+ #: languages/vue.php:2065
7809
  msgid "Empty Cache"
7810
  msgstr ""
7811
 
7812
+ #: languages/vue.php:2068
7813
  msgid "Click to manually wipe the cache right now."
7814
  msgstr ""
7815
 
7816
+ #: languages/vue.php:2071
7817
  msgid "Popular posts cache emptied"
7818
  msgstr ""
7819
 
7820
+ #: languages/vue.php:2074
7821
  msgid "Error emptying the popular posts cache. Please try again."
7822
  msgstr ""
7823
 
7824
+ #: languages/vue.php:2077
7825
  msgid "Last 30 Days Analytics for "
7826
  msgstr ""
7827
 
7828
+ #: languages/vue.php:2080
7829
  msgid "Your Website"
7830
  msgstr ""
7831
 
7832
+ #: languages/vue.php:2083
7833
  msgid "Avg. Duration"
7834
  msgstr ""
7835
 
7836
+ #: languages/vue.php:2086
7837
  msgid "More data is available"
7838
  msgstr ""
7839
 
7840
+ #: languages/vue.php:2089
7841
  msgid "Want to see page-specific stats?"
7842
  msgstr ""
7843
 
7844
+ #: languages/vue.php:2092
7845
  msgid "You appear to be offline. WPForms not installed."
7846
  msgstr ""
7847
 
7848
  #. Translators: Error status and error text.
7849
+ #: languages/vue.php:2096
7850
  msgid "Can't activate addon. Error: %1$s, %2$s"
7851
  msgstr ""
7852
 
7853
+ #: languages/vue.php:2099
7854
  msgid "You appear to be offline. Addon not activated."
7855
  msgstr ""
7856
 
7857
  #. Translators: Error status and error text.
7858
+ #: languages/vue.php:2103
7859
  msgid "Can't deactivate addon. Error: %1$s, %2$s"
7860
  msgstr ""
7861
 
7862
+ #: languages/vue.php:2106
7863
  msgid "You appear to be offline. Addon not deactivated."
7864
  msgstr ""
7865
 
7866
  #. Translators: Error status and error text.
7867
+ #: languages/vue.php:2110
7868
  msgid "Can't install plugin. Error: %1$s, %2$s"
7869
  msgstr ""
7870
 
7871
+ #: languages/vue.php:2113
7872
  msgid "You appear to be offline. Plugin not installed."
7873
  msgstr ""
7874
 
7875
  #. Translators: Error status and error text.
7876
+ #: languages/vue.php:2117
7877
  msgid "Can't install addon. Error: %1$s, %2$s"
7878
  msgstr ""
7879
 
7880
+ #: languages/vue.php:2120
7881
  msgid "You appear to be offline. Addon not installed."
7882
  msgstr ""
7883
 
7884
  #. Translators: Error status and error text.
7885
+ #: languages/vue.php:2124
7886
  msgid "Can't install WPForms. Error: %1$s, %2$s"
7887
  msgstr ""
7888
 
7889
+ #: languages/vue.php:2127
7890
  msgid "Network Active"
7891
  msgstr ""
7892
 
7893
+ #: languages/vue.php:2130
7894
  msgid "Active"
7895
  msgstr ""
7896
 
7897
+ #: languages/vue.php:2133
7898
  msgid "Inactive"
7899
  msgstr ""
7900
 
7901
  #. Translators: Placeholder for the addon status (installed, active, etc).
7902
+ #: languages/vue.php:2137
7903
  msgid "Status: %s"
7904
  msgstr ""
7905
 
7906
+ #: languages/vue.php:2140
7907
  msgid "Not Installed"
7908
  msgstr ""
7909
 
7910
  #. Translators: Makes text bold and adds smiley.
7911
+ #: languages/vue.php:2144
7912
  msgid "You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
7913
  msgstr ""
7914
 
7915
  #. Translators: Makes text green.
7916
+ #: languages/vue.php:2148
7917
  msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout."
7918
  msgstr ""
7919
 
7920
+ #: languages/vue.php:2151
7921
  msgid "Unlock All Features and Upgrade to Pro"
7922
  msgstr ""
7923
 
7924
  #. Translators: Make text green and add smiley face.
7925
+ #: languages/vue.php:2155
7926
  msgid "You're using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
7927
  msgstr ""
7928
 
7929
  #. Translators: Make text green.
7930
+ #: languages/vue.php:2159
7931
  msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
7932
  msgstr ""
7933
 
7934
+ #: languages/vue.php:2162
7935
  msgid "Unlock PRO Features Now"
7936
  msgstr ""
7937
 
7938
+ #: languages/vue.php:2165
7939
  msgid "Paste your license key here"
7940
  msgstr ""
7941
 
7942
+ #: languages/vue.php:2168
7943
  msgid "Verify"
7944
  msgstr ""
7945
 
7946
  #. Translators: Add link to retrieve license from account area.
7947
+ #: languages/vue.php:2172
7948
  msgid "Already purchased? Simply enter your license key below to connect with ExactMetrics PRO! %1$sRetrieve your license key%2$s."
7949
  msgstr ""
7950
 
7951
+ #: languages/vue.php:2175
7952
+ #: languages/vue.php:3665
7953
  msgid "There was an error unlocking ExactMetrics PRO please try again or install manually."
7954
  msgstr ""
7955
 
7956
+ #: languages/vue.php:2178
7957
  msgid "%1$sAll-in-One SEO%2$s Makes SEO Simple. Gain Valuable Organic Traffic."
7958
  msgstr ""
7959
 
7960
+ #: languages/vue.php:2181
7961
  msgid "Automatically migrate all of your SEO settings with just 1 click!"
7962
  msgstr ""
7963
 
7964
+ #: languages/vue.php:2185
7965
  msgid "1,938"
7966
  msgstr ""
7967
 
7968
+ #: languages/vue.php:2189
7969
  msgid "2+ Million Active Installs"
7970
  msgstr ""
7971
 
7972
+ #: languages/vue.php:2192
7973
  msgid "AIOSEO is the DIY Solution for Managing your SEO"
7974
  msgstr ""
7975
 
7976
+ #: languages/vue.php:2195
7977
  msgid "Set up the proper SEO foundations in less than 10 minutes."
7978
  msgstr ""
7979
 
7980
+ #: languages/vue.php:2199
7981
  msgid "SEO Audit Checklist"
7982
  msgstr ""
7983
 
7984
+ #: languages/vue.php:2203
7985
  msgid "Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic."
7986
  msgstr ""
7987
 
7988
+ #: languages/vue.php:2206
7989
  msgid "Optimize Your Pages For Higher Rankings With TruSEO Score."
7990
  msgstr ""
7991
 
7992
+ #: languages/vue.php:2209
7993
  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."
7994
  msgstr ""
7995
 
7996
+ #: languages/vue.php:2212
7997
  msgid "Get AIOSEO for WordPress"
7998
  msgstr ""
7999
 
8000
+ #: languages/vue.php:2216
8001
  msgid "Get the #1 Most Powerful WordPress SEO Plugin Today"
8002
  msgstr ""
8003
 
8004
+ #: languages/vue.php:2220
8005
  msgid "Try it out today, for free."
8006
  msgstr ""
8007
 
8008
+ #: languages/vue.php:2224
8009
  msgid "Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings."
8010
  msgstr ""
8011
 
8012
+ #: languages/vue.php:2228
8013
  msgid "Activate and Install the Plugin with just one click!"
8014
  msgstr ""
8015
 
8016
+ #: languages/vue.php:2231
8017
  msgid "Installing AIOSEO..."
8018
  msgstr ""
8019
 
8020
+ #: languages/vue.php:2235
8021
  msgid "Congrats! All-in-One SEO Installed."
8022
  msgstr ""
8023
 
8024
+ #: languages/vue.php:2238
8025
  msgid "Switch to AIOSEO"
8026
  msgstr ""
8027
 
8028
+ #: languages/vue.php:2242
8029
  msgid "Installation Failed. Please refresh and try again."
8030
  msgstr ""
8031
 
8032
+ #: languages/vue.php:2246
8033
  msgid "Activating AIOSEO..."
8034
  msgstr ""
8035
 
8036
+ #: languages/vue.php:2250
8037
  msgid "Activate AIOSEO"
8038
  msgstr ""
8039
 
8040
+ #: languages/vue.php:2254
8041
  msgid "Activation Failed. Please refresh and try again."
8042
  msgstr ""
8043
 
8044
+ #: languages/vue.php:2257
8045
  msgid "Unlock Form Tracking"
8046
  msgstr ""
8047
 
8048
+ #: languages/vue.php:2260
8049
  msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
8050
  msgstr ""
8051
 
8052
+ #: languages/vue.php:2263
8053
  msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
8054
  msgstr ""
8055
 
8056
+ #: languages/vue.php:2266
8057
  msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
8058
  msgstr ""
8059
 
8060
+ #: languages/vue.php:2270
8061
  msgid "Show"
8062
  msgstr ""
8063
 
8064
+ #: languages/vue.php:2273
8065
  msgid "File imported"
8066
  msgstr ""
8067
 
8068
+ #: languages/vue.php:2276
8069
  msgid "Settings successfully updated!"
8070
  msgstr ""
8071
 
8072
+ #: languages/vue.php:2279
8073
  msgid "Error importing settings"
8074
  msgstr ""
8075
 
8076
+ #: languages/vue.php:2282
8077
  msgid "Please choose a .json file generated by a ExactMetrics settings export."
8078
  msgstr ""
8079
 
8080
+ #: languages/vue.php:2285
8081
  msgid "Import/Export"
8082
  msgstr ""
8083
 
8084
+ #: languages/vue.php:2288
8085
  msgid "Import"
8086
  msgstr ""
8087
 
8088
+ #: languages/vue.php:2291
8089
  msgid "Import settings from another ExactMetrics website."
8090
  msgstr ""
8091
 
8092
+ #: languages/vue.php:2294
8093
  msgid "Export"
8094
  msgstr ""
8095
 
8096
+ #: languages/vue.php:2297
8097
  msgid "Export settings to import into another ExactMetrics install."
8098
  msgstr ""
8099
 
8100
+ #: languages/vue.php:2300
8101
  msgid "Import Settings"
8102
  msgstr ""
8103
 
8104
+ #: languages/vue.php:2303
8105
  msgid "Export Settings"
8106
  msgstr ""
8107
 
8108
+ #: languages/vue.php:2306
8109
  msgid "Please choose a file to import"
8110
  msgstr ""
8111
 
8112
+ #: languages/vue.php:2309
8113
  msgid "Click Choose file below to select the settings export file from another site."
8114
  msgstr ""
8115
 
8116
+ #: languages/vue.php:2312
8117
  msgid "Use the button below to export a file with your ExactMetrics settings."
8118
  msgstr ""
8119
 
8120
+ #: languages/vue.php:2315
8121
  msgid "Choose file"
8122
  msgstr ""
8123
 
8124
+ #: languages/vue.php:2318
8125
  msgid "No file chosen"
8126
  msgstr ""
8127
 
8128
+ #: languages/vue.php:2321
8129
  msgid "Uploading file..."
8130
  msgstr ""
8131
 
8132
+ #: languages/vue.php:2324
8133
  msgid "Custom code"
8134
  msgstr ""
8135
 
8136
  #. Translators: Adds a link to the Google reference.
8137
+ #: languages/vue.php:2328
8138
  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."
8139
  msgstr ""
8140
 
8141
+ #: languages/vue.php:2334
8142
  msgid "Automatic Updates"
8143
  msgstr ""
8144
 
8145
+ #: languages/vue.php:2337
8146
  msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
8147
  msgstr ""
8148
 
8149
+ #: languages/vue.php:2340
8150
  msgid "Hide Admin Bar Reports"
8151
  msgstr ""
8152
 
8153
  #. Translators: placeholders make text small.
8154
+ #: languages/vue.php:2344
8155
  msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
8156
  msgstr ""
8157
 
8158
  #. Translators: placeholders make text small.
8159
+ #: languages/vue.php:2348
8160
  msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
8161
  msgstr ""
8162
 
8163
  #. Translators: placeholders make text small.
8164
+ #: languages/vue.php:2352
8165
  msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
8166
  msgstr ""
8167
 
8168
  #. Translators: placeholders make text small.
8169
+ #: languages/vue.php:2356
8170
  msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
8171
  msgstr ""
8172
 
8173
  #. Translators: placeholders make text small.
8174
+ #: languages/vue.php:2360
8175
  msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
8176
  msgstr ""
8177
 
8178
  #. Translators: placeholders make text small.
8179
+ #: languages/vue.php:2364
8180
  msgid "None %1$s- Manually update everything.%2$s"
8181
  msgstr ""
8182
 
8183
  #. Translators: Adds a link to the general settings tab.
8184
+ #: languages/vue.php:2368
8185
  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."
8186
  msgstr ""
8187
 
8188
+ #: languages/vue.php:2371
8189
  msgid "Permissions"
8190
  msgstr ""
8191
 
8192
+ #: languages/vue.php:2374
8193
  msgid "Export PDF Reports"
8194
  msgstr ""
8195
 
8196
+ #: languages/vue.php:2377
8197
  msgid "Allow These User Roles to See Reports"
8198
  msgstr ""
8199
 
8200
+ #: languages/vue.php:2380
8201
  msgid "Users that have at least one of these roles will be able to view the reports."
8202
  msgstr ""
8203
 
8204
+ #: languages/vue.php:2383
8205
  msgid "Allow These User Roles to Save Settings"
8206
  msgstr ""
8207
 
8208
+ #: languages/vue.php:2386
8209
  msgid "Users that have at least one of these roles will be able to view and save the settings panel."
8210
  msgstr ""
8211
 
8212
+ #: languages/vue.php:2389
8213
  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."
8214
  msgstr ""
8215
 
8216
+ #: languages/vue.php:2392
8217
  msgid "Exclude These User Roles From Tracking"
8218
  msgstr ""
8219
 
8220
+ #: languages/vue.php:2395
8221
  msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
8222
  msgstr ""
8223
 
8224
+ #: languages/vue.php:2398
8225
  msgid "Make your ExactMetrics campaign links prettier with Pretty Links!"
8226
  msgstr ""
8227
 
8228
+ #: languages/vue.php:2401
8229
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links."
8230
  msgstr ""
8231
 
8232
+ #: languages/vue.php:2404
8233
  msgid "Take your ExactMetrics campaign links from our URL Builder and shorten them with Pretty Links!"
8234
  msgstr ""
8235
 
8236
+ #: languages/vue.php:2407
8237
  msgid "Over 200,000 websites use Pretty Links!"
8238
  msgstr ""
8239
 
8240
+ #: languages/vue.php:2410
8241
  msgid "Install Pretty Links"
8242
  msgstr ""
8243
 
8244
+ #: languages/vue.php:2413
8245
  msgid "Pretty Links Installed & Activated"
8246
  msgstr ""
8247
 
8248
+ #: languages/vue.php:2416
8249
  msgid "Download Pretty Links"
8250
  msgstr ""
8251
 
8252
+ #: languages/vue.php:2419
8253
  msgid "Install Pretty Links from the WordPress.org plugin repository."
8254
  msgstr ""
8255
 
8256
+ #: languages/vue.php:2422
8257
  msgid "Activate Pretty Links"
8258
  msgstr ""
8259
 
8260
+ #: languages/vue.php:2425
8261
  msgid "Activating Pretty Links..."
8262
  msgstr ""
8263
 
8264
+ #: languages/vue.php:2428
8265
  msgid "Create New Pretty Link"
8266
  msgstr ""
8267
 
8268
+ #: languages/vue.php:2431
8269
  msgid "Create a New Pretty Link"
8270
  msgstr ""
8271
 
8272
+ #: languages/vue.php:2434
8273
  msgid "Grab your campaign link and paste it into the Target URL field."
8274
  msgstr ""
8275
 
8276
+ #: languages/vue.php:2437
8277
  msgid "Custom Campaign Parameters"
8278
  msgstr ""
8279
 
8280
+ #: languages/vue.php:2440
8281
  msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
8282
  msgstr ""
8283
 
8284
+ #: languages/vue.php:2443
8285
  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."
8286
  msgstr ""
8287
 
8288
  #. Translators: Marks the field as required.
8289
+ #: languages/vue.php:2447
8290
  msgid "Website URL %s"
8291
  msgstr ""
8292
 
8293
  #. Translators: Display the current website url in italic.
8294
+ #: languages/vue.php:2451
8295
  msgid "The full website URL (e.g. %1$s %2$s%3$s)"
8296
  msgstr ""
8297
 
8298
  #. Translators: Marks the field as required.
8299
+ #: languages/vue.php:2455
8300
  msgid "Campaign Source %s"
8301
  msgstr ""
8302
 
8303
  #. Translators: Make the text italic.
8304
+ #: languages/vue.php:2459
8305
  msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
8306
  msgstr ""
8307
 
8308
  #. Translators: Make the text italic.
8309
+ #: languages/vue.php:2463
8310
  msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
8311
  msgstr ""
8312
 
8313
  #. Translators: Make the text italic.
8314
+ #: languages/vue.php:2467
8315
  msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
8316
  msgstr ""
8317
 
8318
+ #: languages/vue.php:2470
8319
  msgid "Enter the paid keyword"
8320
  msgstr ""
8321
 
8322
+ #: languages/vue.php:2473
8323
  msgid "Enter something to differentiate ads"
8324
  msgstr ""
8325
 
8326
+ #: languages/vue.php:2476
8327
  msgid "Use Fragment"
8328
  msgstr ""
8329
 
8330
  #. Translators: Make the text bold.
8331
+ #: languages/vue.php:2480
8332
  msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
8333
  msgstr ""
8334
 
8335
+ #: languages/vue.php:2483
8336
  msgid "URL to use"
8337
  msgstr ""
8338
 
8339
+ #: languages/vue.php:2486
8340
  msgid "(Updates automatically)"
8341
  msgstr ""
8342
 
8343
+ #: languages/vue.php:2489
8344
  msgid "Copy to Clipboard"
8345
  msgstr ""
8346
 
8347
+ #: languages/vue.php:2492
8348
  msgid "Copy to Pretty Links"
8349
  msgstr ""
8350
 
8351
+ #: languages/vue.php:2495
8352
  msgid "Make your campaign links prettier!"
8353
  msgstr ""
8354
 
8355
+ #: languages/vue.php:2498
8356
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links."
8357
  msgstr ""
8358
 
8359
+ #: languages/vue.php:2501
8360
  msgid "More Information & Examples"
8361
  msgstr ""
8362
 
8363
+ #: languages/vue.php:2504
8364
  msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
8365
  msgstr ""
8366
 
8367
+ #: languages/vue.php:2507
8368
  msgid "Campaign Source"
8369
  msgstr ""
8370
 
8371
+ #: languages/vue.php:2510
8372
  msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
8373
  msgstr ""
8374
 
8375
+ #: languages/vue.php:2513
8376
  msgid "Campaign Medium"
8377
  msgstr ""
8378
 
8379
+ #: languages/vue.php:2516
8380
  msgid "Use utm_medium to identify a medium such as email or cost-per-click."
8381
  msgstr ""
8382
 
8383
+ #: languages/vue.php:2519
8384
  msgid "Campaign Name"
8385
  msgstr ""
8386
 
8387
+ #: languages/vue.php:2522
8388
  msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
8389
  msgstr ""
8390
 
8391
+ #: languages/vue.php:2525
8392
  msgid "Campaign Term"
8393
  msgstr ""
8394
 
8395
+ #: languages/vue.php:2528
8396
  msgid "Used for paid search. Use utm_term to note the keywords for this ad."
8397
  msgstr ""
8398
 
8399
+ #: languages/vue.php:2531
8400
  msgid "Campaign Content"
8401
  msgstr ""
8402
 
8403
+ #: languages/vue.php:2534
8404
  msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
8405
  msgstr ""
8406
 
8407
  #. Translators: Example.
8408
+ #: languages/vue.php:2538
8409
  msgid "Example: %s"
8410
  msgstr ""
8411
 
8412
  #. Translators: Examples.
8413
+ #: languages/vue.php:2542
8414
  msgid "Examples: %s"
8415
  msgstr ""
8416
 
8417
+ #: languages/vue.php:2545
8418
  msgid "About Campaigns"
8419
  msgstr ""
8420
 
8421
+ #: languages/vue.php:2548
8422
  msgid "About Custom Campaigns"
8423
  msgstr ""
8424
 
8425
+ #: languages/vue.php:2551
8426
  msgid "Best Practices for Creating Custom Campaigns"
8427
  msgstr ""
8428
 
8429
+ #: languages/vue.php:2554
8430
  msgid "About the Referral Traffic Report"
8431
  msgstr ""
8432
 
8433
+ #: languages/vue.php:2557
8434
  msgid "About Traffic Source Dimensions"
8435
  msgstr ""
8436
 
8437
+ #: languages/vue.php:2560
8438
  msgid "AdWords Auto-Tagging"
8439
  msgstr ""
8440
 
8441
+ #: languages/vue.php:2563
8442
  msgid "Additional Information"
8443
  msgstr ""
8444
 
8445
+ #: languages/vue.php:2566
8446
  msgid "Affiliate Links"
8447
  msgstr ""
8448
 
8449
  #. Translators: Add links to documentation.
8450
+ #: languages/vue.php:2570
8451
  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."
8452
  msgstr ""
8453
 
8454
+ #: languages/vue.php:2573
8455
  msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
8456
  msgstr ""
8457
 
8458
+ #: languages/vue.php:2576
8459
  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."
8460
  msgstr ""
8461
 
8462
+ #: languages/vue.php:2579
8463
  msgid "Disable the Headline Analyzer"
8464
  msgstr ""
8465
 
8466
  #. Translators: Add line break.
8467
+ #: languages/vue.php:2583
8468
  msgid "See All Your Important Store%s Metrics in One Place"
8469
  msgstr ""
8470
 
8471
+ #: languages/vue.php:2586
8472
  msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
8473
  msgstr ""
8474
 
8475
+ #: languages/vue.php:2589
8476
  msgid "See Your Conversion Rate to Improve Funnel"
8477
  msgstr ""
8478
 
8479
+ #: languages/vue.php:2592
8480
  msgid "See The Number of Transactions and Make Data-Driven Decisions"
8481
  msgstr ""
8482
 
8483
+ #: languages/vue.php:2595
8484
  msgid "See The Total Revenue to Track Growth"
8485
  msgstr ""
8486
 
8487
+ #: languages/vue.php:2598
8488
  msgid "See Average Order Value to Find Offer Opportunities"
8489
  msgstr ""
8490
 
8491
+ #: languages/vue.php:2601
8492
  msgid "See Your Top Products to See Individual Performance"
8493
  msgstr ""
8494
 
8495
+ #: languages/vue.php:2604
8496
  msgid "See your Top Conversion Sources and Focus on what's Working"
8497
  msgstr ""
8498
 
8499
+ #: languages/vue.php:2607
8500
  msgid "See The Time it Takes for Customers to Purchase"
8501
  msgstr ""
8502
 
8503
+ #: languages/vue.php:2610
8504
  msgid "See How Many Sessions are Needed for a Purchase"
8505
  msgstr ""
8506
 
8507
+ #: languages/vue.php:2613
8508
  msgid "Automatically Track Affiliate Sales"
8509
  msgstr ""
8510
 
8511
+ #: languages/vue.php:2616
8512
  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."
8513
  msgstr ""
8514
 
8515
+ #: languages/vue.php:2619
8516
  msgid "Works with WooCommerce, MemberPress, and EasyDigitalDownloads."
8517
  msgstr ""
8518
 
8519
+ #: languages/vue.php:2622
8520
  msgid "Cross Domain Tracking"
8521
  msgstr ""
8522
 
8523
  #. Translators: Add links to documentation.
8524
+ #: languages/vue.php:2626
8525
  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."
8526
  msgstr ""
8527
 
8528
+ #: languages/vue.php:2629
8529
  msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
8530
  msgstr ""
8531
 
8532
+ #: languages/vue.php:2632
8533
  msgid "Anonymize IP Addresses"
8534
  msgstr ""
8535
 
8536
+ #: languages/vue.php:2635
8537
  msgid "Link Attribution"
8538
  msgstr ""
8539
 
8540
+ #: languages/vue.php:2638
8541
  msgid "Enable Enhanced Link Attribution"
8542
  msgstr ""
8543
 
8544
+ #: languages/vue.php:2641
8545
  msgid "Enable Anchor Tracking"
8546
  msgstr ""
8547
 
8548
+ #: languages/vue.php:2644
8549
  msgid "Enable allowAnchor"
8550
  msgstr ""
8551
 
8552
+ #: languages/vue.php:2647
8553
  msgid "Enable allowLinker"
8554
  msgstr ""
8555
 
8556
+ #: languages/vue.php:2650
8557
  msgid "Enable Tag Links in RSS"
8558
  msgstr ""
8559
 
8560
+ #: languages/vue.php:2653
8561
  msgid "File Downloads"
8562
  msgstr ""
8563
 
8564
+ #: languages/vue.php:2656
8565
  msgid "Extensions of Files to Track as Downloads"
8566
  msgstr ""
8567
 
8568
+ #: languages/vue.php:2659
8569
  msgid "ExactMetrics will send an event to Google Analytics if a link to a file has one of the above extensions."
8570
  msgstr ""
8571
 
8572
  #. Translators: Add links to documentation.
8573
+ #: languages/vue.php:2663
8574
  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."
8575
  msgstr ""
8576
 
8577
  #. Translators: Add links to documentation.
8578
+ #: languages/vue.php:2667
8579
  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."
8580
  msgstr ""
8581
 
8582
  #. Translators: Add links to documentation.
8583
+ #: languages/vue.php:2671
8584
  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."
8585
  msgstr ""
8586
 
8587
+ #: languages/vue.php:2674
8588
  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."
8589
  msgstr ""
8590
 
8591
  #. Translators: Add links to documentation.
8592
+ #: languages/vue.php:2678
8593
  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."
8594
  msgstr ""
8595
 
8596
  #. Translators: Add links to documentation.
8597
+ #: languages/vue.php:2682
8598
  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."
8599
  msgstr ""
8600
 
8601
  #. Translators: Add links to documentation.
8602
+ #: languages/vue.php:2686
8603
  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."
8604
  msgstr ""
8605
 
8606
+ #: languages/vue.php:2689
8607
  msgid "Add domain"
8608
  msgstr ""
8609
 
8610
  #. Translators: Domain name example.
8611
+ #: languages/vue.php:2693
8612
  msgid "Domain (example: %s)"
8613
  msgstr ""
8614
 
8615
  #. Translators: Current domain name that should not be used.
8616
+ #: languages/vue.php:2697
8617
  msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
8618
  msgstr ""
8619
 
8620
  #. Translators: Adds link to the account area to retreive license key.
8621
+ #: languages/vue.php:2701
8622
  msgid "Already have a license key? Add it below to unlock ExactMetrics PRO. %1$sRetrieve your license key%2$s."
8623
  msgstr ""
8624
 
8625
+ #: languages/vue.php:2704
8626
  msgid "Connect ExactMetrics to Start Tracking Your Data"
8627
  msgstr ""
8628
 
8629
+ #: languages/vue.php:2707
8630
  msgid "Complete Upgrade"
8631
  msgstr ""
8632
 
8633
+ #: languages/vue.php:2710
8634
  msgid "Upgrade to Pro Version!"
8635
  msgstr ""
8636
 
8637
  #. Translators: Make text bold.
8638
+ #: languages/vue.php:2714
8639
  msgid "%1$sExactMetrics%2$s can automatically upgrade the installed version to the Pro and walk you through the process."
8640
  msgstr ""
8641
 
8642
+ #: languages/vue.php:2717
8643
  msgid "Install All-in-One SEO"
8644
  msgstr ""
8645
 
8646
+ #: languages/vue.php:2720
8647
  msgid "Improve Your Website Search Rankings With All-In-One SEO"
8648
  msgstr ""
8649
 
8650
+ #: languages/vue.php:2723
8651
  msgid "If you’re not using a plugin to optimize your website’s SEO you’re missing out on valuable organic traffic!"
8652
  msgstr ""
8653
 
8654
+ #: languages/vue.php:2726
8655
  msgid "Finally, a WordPress SEO Plugin that’s Easy and Powerful!"
8656
  msgstr ""
8657
 
8658
+ #: languages/vue.php:2729
8659
  msgid "AIOSEO makes it easy to set up the proper SEO foundations in less than 10 minutes."
8660
  msgstr ""
8661
 
8662
+ #: languages/vue.php:2732
8663
  msgid "Local SEO"
8664
  msgstr ""
8665
 
8666
+ #: languages/vue.php:2735
8667
  msgid "All in One SEO gives you all the tools you need to improve your local SEO and rank higher on Google Maps."
8668
  msgstr ""
8669
 
8670
+ #: languages/vue.php:2738
8671
  msgid "WooCommerce SEO"
8672
  msgstr ""
8673
 
8674
+ #: languages/vue.php:2741
8675
  msgid "Advanced eCommerce SEO support for WooCommerce to optimize product pages, product categories, and more."
8676
  msgstr ""
8677
 
8678
+ #: languages/vue.php:2744
8679
  msgid "SEO Custom User Roles"
8680
  msgstr ""
8681
 
8682
+ #: languages/vue.php:2747
8683
  msgid "SEO user roles allow you to manage access to important SEO features without handing over control of your website."
8684
  msgstr ""
8685
 
8686
+ #: languages/vue.php:2750
8687
  msgid "Google News Sitemap"
8688
  msgstr ""
8689
 
8690
+ #: languages/vue.php:2753
8691
  msgid "Get higher rankings and unlock more traffic by submitting your latest news articles to Google News."
8692
  msgstr ""
8693
 
8694
+ #: languages/vue.php:2756
8695
  msgid "Smart XML Sitemaps"
8696
  msgstr ""
8697
 
8698
+ #: languages/vue.php:2759
8699
  msgid "Automatically generate a WordPress XML sitemap and notify all search engines of any updates."
8700
  msgstr ""
8701
 
8702
+ #: languages/vue.php:2762
8703
  msgid "Social Media Integration"
8704
  msgstr ""
8705
 
8706
+ #: languages/vue.php:2765
8707
  msgid "Easily control how your content and thumbnails look on Facebook, Twitter, and other social media networks."
8708
  msgstr ""
8709
 
8710
+ #: languages/vue.php:2768
8711
  msgid "TruSEO On-Page Analysis"
8712
  msgstr ""
8713
 
8714
+ #: languages/vue.php:2771
8715
  msgid "Easily add title tags, meta descriptions, keywords, and everything else you need for proper on-page SEO optimization."
8716
  msgstr ""
8717
 
8718
+ #: languages/vue.php:2774
8719
  msgid "& Many More!"
8720
  msgstr ""
8721
 
8722
+ #: languages/vue.php:2777
8723
  msgid "Installing. Please wait.."
8724
  msgstr ""
8725
 
8726
+ #: languages/vue.php:2780
8727
  msgid "Install All-in-One-SEO"
8728
  msgstr ""
8729
 
8730
+ #: languages/vue.php:2783
8731
  msgid "Unlock the Publisher Report and Focus on the Content That Matters"
8732
  msgstr ""
8733
 
8734
+ #: languages/vue.php:2786
8735
  msgid "See Your Top Landing Pages to Improve Engagement"
8736
  msgstr ""
8737
 
8738
+ #: languages/vue.php:2789
8739
  msgid "See Your Top Exit Pages to Reduce Abandonment"
8740
  msgstr ""
8741
 
8742
+ #: languages/vue.php:2792
8743
  msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
8744
  msgstr ""
8745
 
8746
+ #: languages/vue.php:2795
8747
  msgid "See Your Top Affiliate Links and Focus on What’s Working"
8748
  msgstr ""
8749
 
8750
+ #: languages/vue.php:2798
8751
  msgid "See Your Top Downloads and Improve Conversions"
8752
  msgstr ""
8753
 
8754
+ #: languages/vue.php:2801
8755
  msgid "See Audience Demographic Report (Age / Gender / Interests)"
8756
  msgstr ""
8757
 
8758
+ #: languages/vue.php:2804
8759
  msgid "Welcome to the all-new ExactMetrics"
8760
  msgstr ""
8761
 
8762
+ #: languages/vue.php:2807
8763
  msgid "Redesigned from the ground up, ExactMetrics is built to bring a world-class analytics and reporting experience to WordPress."
8764
  msgstr ""
8765
 
8766
+ #: languages/vue.php:2810
8767
  msgid "The New & Improved ExactMetrics includes:"
8768
  msgstr ""
8769
 
8770
+ #: languages/vue.php:2813
8771
  msgid "All-New Design"
8772
  msgstr ""
8773
 
8774
+ #: languages/vue.php:2816
8775
  msgid "Better Reporting"
8776
  msgstr ""
8777
 
8778
+ #: languages/vue.php:2819
8779
  msgid "Better Tracking"
8780
  msgstr ""
8781
 
8782
+ #: languages/vue.php:2822
8783
  msgid "Better Support"
8784
  msgstr ""
8785
 
8786
+ #: languages/vue.php:2825
8787
  msgid "Continue"
8788
  msgstr ""
8789
 
8790
+ #: languages/vue.php:2828
8791
  msgid "Your settings have been automatically transferred."
8792
  msgstr ""
8793
 
8794
+ #: languages/vue.php:2831
8795
  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."
8796
  msgstr ""
8797
 
8798
+ #: languages/vue.php:2834
8799
  msgid "New"
8800
  msgstr ""
8801
 
8802
+ #: languages/vue.php:2837
8803
  msgid "Returning"
8804
  msgstr ""
8805
 
8806
+ #: languages/vue.php:2840
8807
  msgid "Top 10 Countries"
8808
  msgstr ""
8809
 
8810
+ #: languages/vue.php:2843
8811
  msgid "View Countries Report"
8812
  msgstr ""
8813
 
8814
+ #: languages/vue.php:2846
8815
  msgid "Top 10 Referrals"
8816
  msgstr ""
8817
 
8818
+ #: languages/vue.php:2849
8819
  msgid "View All Referral Sources"
8820
  msgstr ""
8821
 
8822
+ #: languages/vue.php:2852
8823
  msgid "View Full Posts/Pages Report"
8824
  msgstr ""
8825
 
8826
+ #: languages/vue.php:2855
8827
  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."
8828
  msgstr ""
8829
 
8830
+ #: languages/vue.php:2858
8831
  msgid "This list shows the top countries your website visitors are from."
8832
  msgstr ""
8833
 
8834
+ #: languages/vue.php:2861
8835
  msgid "This list shows the top websites that send your website traffic, known as referral traffic."
8836
  msgstr ""
8837
 
8838
+ #: languages/vue.php:2864
8839
  msgid "This feature requires ExactMetrics Pro"
8840
  msgstr ""
8841
 
8842
+ #: languages/vue.php:2867
8843
  msgid "By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more."
8844
  msgstr ""
8845
 
8846
+ #: languages/vue.php:2870
8847
  msgid "Upgrade to Pro and Unlock Popular Products"
8848
  msgstr ""
8849
 
8850
+ #: languages/vue.php:2873
8851
  msgid "View all Pro features"
8852
  msgstr ""
8853
 
8854
+ #: languages/vue.php:2876
8855
  msgid "View notifications"
8856
  msgstr ""
8857
 
8858
+ #: languages/vue.php:2879
8859
  msgid "Days"
8860
  msgstr ""
8861
 
8862
  #. Translators: placeholders make text small.
8863
+ #: languages/vue.php:2883
8864
  msgid "7 days"
8865
  msgstr ""
8866
 
8867
+ #: languages/vue.php:2886
8868
  msgid "30 days"
8869
  msgstr ""
8870
 
8871
+ #: languages/vue.php:2889
8872
  msgid "Custom"
8873
  msgstr ""
8874
 
8875
+ #: languages/vue.php:2892
8876
  msgid "2,000,000+ use AIOSEO to Improve Their Website Search Rankings"
8877
  msgstr ""
8878
 
8879
+ #: languages/vue.php:2895
8880
  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."
8881
  msgstr ""
8882
 
8883
+ #: languages/vue.php:2898
8884
  msgid "Jack Brown"
8885
  msgstr ""
8886
 
8887
+ #: languages/vue.php:2901
8888
  msgid "PJB Internet Marketing"
8889
  msgstr ""
8890
 
8891
+ #: languages/vue.php:2904
8892
  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."
8893
  msgstr ""
8894
 
8895
+ #: languages/vue.php:2907
8896
  msgid "Joel Steinmann"
8897
  msgstr ""
8898
 
8899
+ #: languages/vue.php:2910
8900
  msgid "CEO, Solergo"
8901
  msgstr ""
8902
 
8903
+ #: languages/vue.php:2913
8904
  msgid "Only Show Posts from These Categories"
8905
  msgstr ""
8906
 
8907
+ #: languages/vue.php:2916
8908
  msgid "Choose from which categories posts will be displayed in the widget. All categories will be used if left empty."
8909
  msgstr ""
8910
 
8911
+ #: languages/vue.php:2919
8912
  msgid "Activating..."
8913
  msgstr ""
8914
 
8915
+ #: languages/vue.php:2922
8916
  msgid "Deactivating..."
8917
  msgstr ""
8918
 
8919
+ #: languages/vue.php:2925
8920
  msgid "Deactivate"
8921
  msgstr ""
8922
 
8923
+ #: languages/vue.php:2928
8924
  msgid "Search Console Report"
8925
  msgstr ""
8926
 
8927
+ #: languages/vue.php:2931
8928
  msgid "See exactly how people find tour website, which keywords they searched for, how many times the results were viewed, and more."
8929
  msgstr ""
8930
 
8931
+ #: languages/vue.php:2934
8932
  msgid "See Your Top Google Search Terms and Optimize Content"
8933
  msgstr ""
8934
 
8935
+ #: languages/vue.php:2937
8936
  msgid "See The Number of Clicks and Track Interests"
8937
  msgstr ""
8938
 
8939
+ #: languages/vue.php:2940
8940
  msgid "See The Click-Through-Ratio and Improve SEO"
8941
  msgstr ""
8942
 
8943
+ #: languages/vue.php:2943
8944
  msgid "See The Average Results Position and Focus on what works."
8945
  msgstr ""
8946
 
8947
+ #: languages/vue.php:2946
8948
  msgid "Ecommerce Report"
8949
  msgstr ""
8950
 
8951
+ #: languages/vue.php:2949
8952
  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."
8953
  msgstr ""
8954
 
8955
+ #: languages/vue.php:2952
8956
  msgid "See Your Conversion Rate to Improve Your Funnel"
8957
  msgstr ""
8958
 
8959
+ #: languages/vue.php:2955
8960
  msgid "See Your Top Conversion Sources and Focus on What's Working"
8961
  msgstr ""
8962
 
8963
+ #: languages/vue.php:2958
8964
  msgid "Popular Posts data can be fetched correctly"
8965
  msgstr ""
8966
 
8967
+ #: languages/vue.php:2961
8968
  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."
8969
  msgstr ""
8970
 
8971
+ #: languages/vue.php:2964
8972
  msgid "Close"
8973
  msgstr ""
8974
 
8975
+ #: languages/vue.php:2967
8976
  msgid "Add Top 5 Posts from Google Analytics"
8977
  msgstr ""
8978
 
8979
+ #: languages/vue.php:2970
8980
  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."
8981
  msgstr ""
8982
 
8983
+ #: languages/vue.php:2973
8984
  msgid "Test Automated Posts"
8985
  msgstr ""
8986
 
8987
  #. Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc.
8988
+ #: languages/vue.php:2977
8989
  msgid "Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics."
8990
  msgstr ""
8991
 
8992
+ #: languages/vue.php:2980
8993
  msgid "Automated + Curated"
8994
  msgstr ""
8995
 
8996
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
8997
+ #: languages/vue.php:2984
8998
  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."
8999
  msgstr ""
9000
 
9001
  #. Translators: Placeholder gets replaced with current license version.
9002
+ #: languages/vue.php:2988
9003
  msgid "Pro version is required."
9004
  msgstr ""
9005
 
9006
+ #: languages/vue.php:2991
9007
  msgid "Verifying Popular Posts data"
9008
  msgstr ""
9009
 
9010
+ #: languages/vue.php:2994
9011
  msgid "Multiple Entries"
9012
  msgstr ""
9013
 
9014
+ #: languages/vue.php:2997
9015
  msgid "Total Number of Widgets to Show"
9016
  msgstr ""
9017
 
9018
+ #: languages/vue.php:3000
9019
  msgid "Choose how many widgets will be placed in a single Post."
9020
  msgstr ""
9021
 
9022
+ #: languages/vue.php:3003
9023
  msgid "Minimum Distance Between Widgets"
9024
  msgstr ""
9025
 
9026
+ #: languages/vue.php:3006
9027
  msgid "Choose the distance between widgets."
9028
  msgstr ""
9029
 
9030
+ #: languages/vue.php:3009
9031
  msgid "Minimum Word Count to Display Multiple Widgets"
9032
  msgstr ""
9033
 
9034
+ #: languages/vue.php:3012
9035
  msgid "Choose the minimum word count for a Post to have multiple entries."
9036
  msgstr ""
9037
 
9038
+ #: languages/vue.php:3015
9039
  msgid "Pro version is required"
9040
  msgstr ""
9041
 
9042
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
9043
+ #: languages/vue.php:3019
9044
  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)."
9045
  msgstr ""
9046
 
9047
+ #: languages/vue.php:3022
9048
  msgid "Select posts/search"
9049
  msgstr ""
9050
 
9051
+ #: languages/vue.php:3025
9052
  msgid "Oops! No posts found."
9053
  msgstr ""
9054
 
9055
+ #: languages/vue.php:3028
9056
  msgid "Search by post title"
9057
  msgstr ""
9058
 
9059
+ #: languages/vue.php:3031
9060
  msgid "Can't load posts."
9061
  msgstr ""
9062
 
9063
+ #: languages/vue.php:3034
9064
  msgid "Sartorial taxidermy venmo you probably haven't heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu."
9065
  msgstr ""
9066
 
9067
+ #: languages/vue.php:3037
9068
  msgid "Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan"
9069
  msgstr ""
9070
 
9071
+ #: languages/vue.php:3041
9072
  msgid "Color"
9073
  msgstr ""
9074
 
9075
+ #: languages/vue.php:3045
9076
  msgid "Size"
9077
  msgstr ""
9078
 
9079
+ #: languages/vue.php:3049
9080
  msgid "Title"
9081
  msgstr ""
9082
 
9083
+ #: languages/vue.php:3053
9084
  msgid "Label"
9085
  msgstr ""
9086
 
9087
+ #: languages/vue.php:3057
9088
  msgid "Background"
9089
  msgstr ""
9090
 
9091
+ #: languages/vue.php:3061
9092
  msgid "Border"
9093
  msgstr ""
9094
 
9095
+ #: languages/vue.php:3064
9096
  msgid "Icon"
9097
  msgstr ""
9098
 
9099
+ #: languages/vue.php:3067
9100
  #: lite/includes/popular-posts/class-popular-posts-widget-sidebar.php:257
9101
  msgid "Theme Preview"
9102
  msgstr ""
9103
 
9104
+ #: languages/vue.php:3070
9105
  msgid "SharedCount API Key"
9106
  msgstr ""
9107
 
9108
+ #: languages/vue.php:3073
9109
  msgid "Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing."
9110
  msgstr ""
9111
 
9112
+ #: languages/vue.php:3076
9113
  msgid "Start Indexing"
9114
  msgstr ""
9115
 
9116
+ #: languages/vue.php:3079
9117
  msgid "%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing."
9118
  msgstr ""
9119
 
9120
+ #: languages/vue.php:3082
9121
  msgid "Indexing completed, counts will update automatically every day."
9122
  msgstr ""
9123
 
9124
  #. Translators: Minimum and maximum number that can be used.
9125
+ #: languages/vue.php:3086
9126
  msgid "Please enter a value between %1$s and %2$s"
9127
  msgstr ""
9128
 
9129
  #. Translators: The minimum set value.
9130
+ #: languages/vue.php:3090
9131
  msgid "Please enter a value higher than %s"
9132
  msgstr ""
9133
 
9134
  #. Translators: The maximum set value.
9135
+ #: languages/vue.php:3094
9136
  msgid "Please enter a value lower than %s"
9137
  msgstr ""
9138
 
9139
+ #: languages/vue.php:3097
9140
  msgid "Please enter a number"
9141
  msgstr ""
9142
 
9143
+ #: languages/vue.php:3100
9144
  msgid "Value has to be a round number"
9145
  msgstr ""
9146
 
9147
+ #: languages/vue.php:3103
9148
  msgid "Author/Date"
9149
  msgstr ""
9150
 
9151
+ #: languages/vue.php:3115
9152
  msgid "Choose which content you would like displayed in the widget."
9153
  msgstr ""
9154
 
9155
+ #: languages/vue.php:3127
9156
  msgid "Comments"
9157
  msgstr ""
9158
 
9159
+ #: languages/vue.php:3133
9160
  msgid "Choose how many posts you’d like displayed in the widget."
9161
  msgstr ""
9162
 
9163
  #. Translators: Page number of total pages. 1 & 2 make the first part of the text bold.
9164
+ #: languages/vue.php:3137
9165
  msgid "%1$sPage %3$s%2$s of %4$s"
9166
  msgstr ""
9167
 
9168
+ #: languages/vue.php:3140
9169
  msgid "Wide"
9170
  msgstr ""
9171
 
9172
+ #: languages/vue.php:3143
9173
  msgid "Narrow"
9174
  msgstr ""
9175
 
9176
  #. Translators: Make text green.
9177
+ #: languages/vue.php:3147
9178
  msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
9179
  msgstr ""
9180
 
9181
+ #: languages/vue.php:3154
9182
  msgid "Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone."
9183
  msgstr ""
9184
 
9185
+ #: languages/vue.php:3157
9186
  msgid "Our email summaries feature sends a weekly summary of the most important site analytics information."
9187
  msgstr ""
9188
 
9189
+ #: languages/vue.php:3160
9190
  msgid "Usage Tracking"
9191
  msgstr ""
9192
 
9193
+ #: languages/vue.php:3163
9194
  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."
9195
  msgstr ""
9196
 
9197
+ #: languages/vue.php:3166
9198
  msgid "Allow usage tracking"
9199
  msgstr ""
9200
 
9201
  #. Translators: Adds a link to the documentation.
9202
+ #: languages/vue.php:3170
9203
  msgid "Complete documentation on usage tracking is available %1$shere%2$s."
9204
  msgstr ""
9205
 
9206
+ #: languages/vue.php:3173
9207
  msgid "Facebook Instant Articles"
9208
  msgstr ""
9209
 
9210
+ #: languages/vue.php:3176
9211
  msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to ExactMetrics Pro."
9212
  msgstr ""
9213
 
9214
+ #: languages/vue.php:3179
9215
  msgid "Performance"
9216
  msgstr ""
9217
 
9218
+ #: languages/vue.php:3182
9219
  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."
9220
  msgstr ""
9221
 
9222
+ #: languages/vue.php:3185
9223
  msgid "Google AMP"
9224
  msgstr ""
9225
 
9226
+ #: languages/vue.php:3188
9227
  msgid "Want to use track users visiting your AMP pages? By upgrading to ExactMetrics Pro, you can enable AMP page tracking."
9228
  msgstr ""
9229
 
9230
+ #: languages/vue.php:3191
9231
  msgid "Ads Tracking"
9232
  msgstr ""
9233
 
9234
+ #: languages/vue.php:3194
9235
  msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
9236
  msgstr ""
9237
 
9238
+ #: languages/vue.php:3197
9239
  msgid "Unlock with %s"
9240
  msgstr ""
9241
 
9242
+ #: languages/vue.php:3200
9243
  msgid "Scroll Tracking"
9244
  msgstr ""
9245
 
9246
+ #: languages/vue.php:3203
9247
  msgid "Scroll depth tracking in web analytics is one of those things you simply must do, especially if you have a content-heavy site."
9248
  msgstr ""
9249
 
9250
+ #: languages/vue.php:3206
9251
  msgid ""
9252
  "The EU Compliance addon allows you to improve compliance with GDPR\n"
9253
  " and other privacy regulations."
9254
  msgstr ""
9255
 
9256
+ #: languages/vue.php:3210
9257
  msgid "EU Compliance"
9258
  msgstr ""
9259
 
9260
+ #: languages/vue.php:3213
9261
  msgid "Compatibility mode"
9262
  msgstr ""
9263
 
9264
+ #: languages/vue.php:3216
9265
  msgid "Enable _gtagTracker Compatibility"
9266
  msgstr ""
9267
 
9268
  #. Translators: Placeholder gets replaced with default GA js function.
9269
+ #: languages/vue.php:3220
9270
  msgid "This enables ExactMetrics to work with plugins that use %1$s and don't support %2$s"
9271
  msgstr ""
9272
 
9273
+ #: languages/vue.php:3223
9274
  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!"
9275
  msgstr ""
9276
 
9277
+ #: languages/vue.php:3226
9278
  msgid "To unlock more features consider upgrading to PRO."
9279
  msgstr ""
9280
 
9281
+ #: languages/vue.php:3229
9282
  msgid "Upgrade to"
9283
  msgstr ""
9284
 
9285
+ #: languages/vue.php:3232
9286
  msgid "Export PDF Report"
9287
  msgstr ""
9288
 
9289
+ #: languages/vue.php:3235
9290
  msgid "You can export PDF reports only in the PRO version."
9291
  msgstr ""
9292
 
9293
+ #: languages/vue.php:3238
9294
  msgid "Display Method"
9295
  msgstr ""
9296
 
9297
+ #: languages/vue.php:3241
9298
  msgid "There are two ways to manual include the widget in your posts."
9299
  msgstr ""
9300
 
9301
+ #: languages/vue.php:3244
9302
  msgid "Using the Gutenberg Block"
9303
  msgstr ""
9304
 
9305
+ #: languages/vue.php:3247
9306
  msgid "Using the Shortcode"
9307
  msgstr ""
9308
 
9309
+ #: languages/vue.php:3250
9310
  msgid "Learn how to insert the widget using Gutenberg blocks."
9311
  msgstr ""
9312
 
9313
+ #: languages/vue.php:3253
9314
  msgid "Learn how to insert the widget using out Shortcode."
9315
  msgstr ""
9316
 
9317
+ #: languages/vue.php:3256
9318
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg"
9319
  msgstr ""
9320
 
9321
+ #: languages/vue.php:3259
9322
  msgid "%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page."
9323
  msgstr ""
9324
 
9325
+ #: languages/vue.php:3262
9326
  msgid "%1$sStep 2%2$s - Search for “Inline Popular Posts by ExactMetrics”."
9327
  msgstr ""
9328
 
9329
+ #: languages/vue.php:3265
9330
  msgid "%1$sStep 3%2$s - Style the widget using the Block Settings sidebar."
9331
  msgstr ""
9332
 
9333
+ #: languages/vue.php:3268
9334
  msgid "Shortcode"
9335
  msgstr ""
9336
 
9337
+ #: languages/vue.php:3271
9338
  msgid "Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin."
9339
  msgstr ""
9340
 
9341
+ #: languages/vue.php:3274
9342
  msgid "Copy Shortcode"
9343
  msgstr ""
9344
 
9345
+ #: languages/vue.php:3277
9346
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode"
9347
  msgstr ""
9348
 
9349
+ #: languages/vue.php:3280
9350
  msgid "Automatic Placement"
9351
  msgstr ""
9352
 
9353
+ #: languages/vue.php:3283
9354
  msgid "Display using Gutenberg Blocks"
9355
  msgstr ""
9356
 
9357
+ #: languages/vue.php:3286
9358
  msgid "Embed Options"
9359
  msgstr ""
9360
 
9361
+ #: languages/vue.php:3289
9362
  msgid "All Embed Options can be used in conjunction with one another."
9363
  msgstr ""
9364
 
9365
+ #: languages/vue.php:3292
9366
  msgid "Using Automatic Embed"
9367
  msgstr ""
9368
 
9369
+ #: languages/vue.php:3295
9370
  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."
9371
  msgstr ""
9372
 
9373
+ #: languages/vue.php:3298
9374
  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."
9375
  msgstr ""
9376
 
9377
+ #: languages/vue.php:3301
9378
  msgid "Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above."
9379
  msgstr ""
9380
 
9381
+ #: languages/vue.php:3304
9382
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg"
9383
  msgstr ""
9384
 
9385
+ #: languages/vue.php:3307
9386
  msgid "%1$sStep 2%2$s - Search for “Popular Posts”."
9387
  msgstr ""
9388
 
9389
+ #: languages/vue.php:3310
9390
  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."
9391
  msgstr ""
9392
 
9393
+ #: languages/vue.php:3313
9394
  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."
9395
  msgstr ""
9396
 
9397
+ #: languages/vue.php:3316
9398
  msgid "%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design."
9399
  msgstr ""
9400
 
9401
+ #: languages/vue.php:3319
9402
  msgid "Display using a Shortcode"
9403
  msgstr ""
9404
 
9405
+ #: languages/vue.php:3322
9406
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode"
9407
  msgstr ""
9408
 
9409
+ #: languages/vue.php:3325
9410
  msgid "Enable Automatic Placement"
9411
  msgstr ""
9412
 
9413
+ #: languages/vue.php:3328
9414
  msgid "Display in a Sidebar"
9415
  msgstr ""
9416
 
9417
+ #: languages/vue.php:3331
9418
  msgid "Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above."
9419
  msgstr ""
9420
 
9421
+ #: languages/vue.php:3334
9422
  msgid "Watch Video - How to Add the Popular Posts widget using Widgets"
9423
  msgstr ""
9424
 
9425
  #. Translators: The number of results.
9426
+ #: languages/vue.php:3338
9427
  msgid "%s results"
9428
  msgstr ""
9429
 
9430
+ #: languages/vue.php:3341
9431
  msgid "Media"
9432
  msgstr ""
9433
 
9434
+ #: languages/vue.php:3344
9435
  msgid "Track how your users interact with videos on your website. Upgrade to ExactMetrics Pro."
9436
  msgstr ""
9437
 
9438
+ #: languages/vue.php:3349
9439
  msgid "2021 Year in Review"
9440
  msgstr ""
9441
 
9442
+ #: languages/vue.php:3352
9443
  msgid "Media- Track how your users interact with videos on your website."
9444
  msgstr ""
9445
 
9446
+ #: languages/vue.php:3355
9447
  msgid "Your 2021 Year in Review is still calculating. Please check back later to see how your website performed last year."
9448
  msgstr ""
9449
 
9450
+ #: languages/vue.php:3358
9451
  msgid "Your 2021 Analytics Report"
9452
  msgstr ""
9453
 
9454
+ #: languages/vue.php:3364
9455
  msgid "January 1, 2021 - December 31, 2021"
9456
  msgstr ""
9457
 
9458
+ #: languages/vue.php:3367
9459
  msgid "A Tip for 2022"
9460
  msgstr ""
9461
 
9462
+ #: languages/vue.php:3370
9463
  msgid "A Tip For 2022"
9464
  msgstr ""
9465
 
9466
+ #: languages/vue.php:3373
9467
  msgid "Here's to an amazing 2022!"
9468
  msgstr ""
9469
 
9470
+ #: languages/vue.php:3376
9471
  msgid "Try our other popular WordPress plugins to grow your website in 2022."
9472
  msgstr ""
9473
 
9474
+ #: languages/vue.php:3379
9475
  msgid "Become a WordPress expert in 2022. Join our amazing communities and take your website to the next level."
9476
  msgstr ""
9477
 
9478
+ #: languages/vue.php:3382
9479
  msgid "Copyright ExactMetrics, 2022"
9480
  msgstr ""
9481
 
9482
  #. Translators: Number of minutes spent on site.
9483
+ #: languages/vue.php:3386
9484
  msgid "Each visitor spent an average of %s minutes on your website in 2021."
9485
  msgstr ""
9486
 
9487
  #. Translators: Placeholders are used for making text bold and adding a link.
9488
+ #: languages/vue.php:3390
9489
  msgid "%1$sYou're using %2$s Lite%3$s. To unlock all reports, consider %4$supgrading to Pro%5$s."
9490
  msgstr ""
9491
 
9492
+ #: languages/vue.php:3393
9493
  msgid "With ExactMetrics Pro, you can easily measure individual affiliate performance inside Google Analytics, no coding needed. Track clicks, revenue, and more."
9494
  msgstr ""
9495
 
9496
+ #: languages/vue.php:3396
9497
  msgid "RafflePress"
9498
  msgstr ""
9499
 
9500
+ #: languages/vue.php:3399
9501
  msgid "Launch giveaways and raffle campaigns to grow your email lists, increase traffic, and get more social media followers."
9502
  msgstr ""
9503
 
9504
+ #: languages/vue.php:3402
9505
  msgid "Constant Contact"
9506
  msgstr ""
9507
 
9508
+ #: languages/vue.php:3405
9509
  msgid "Create amazing email marketing campaigns with drag and drop simplicity. Exclusive Offer: Save 20%."
9510
  msgstr ""
9511
 
9512
+ #: languages/vue.php:3408
9513
  msgid "SEMRUSH"
9514
  msgstr ""
9515
 
9516
+ #: languages/vue.php:3411
9517
  msgid "Perform SEO and content marketing research, track keywords, and much more. Special Offer: First 30 Days Free."
9518
  msgstr ""
9519
 
9520
+ #: languages/vue.php:3414
9521
  msgid "Engagement Tools"
9522
  msgstr ""
9523
 
9524
+ #: languages/vue.php:3417
9525
  msgid "WPForms"
9526
  msgstr ""
9527
 
9528
+ #: languages/vue.php:3420
9529
  msgid "The world’s most popular WordPress form builder, trusted by over 5 million websites. Easily build contact forms, payment forms, and more."
9530
  msgstr ""
9531
 
9532
+ #: languages/vue.php:3423
9533
  msgid "OptinMonster"
9534
  msgstr ""
9535
 
9536
+ #: languages/vue.php:3426
9537
  msgid "Convert and monetize more of your website traffic with engaging pop-up and gamified tools. Great for all types of websites."
9538
  msgstr ""
9539
 
9540
+ #: languages/vue.php:3429
9541
  msgid "Smash Balloon - Facebook"
9542
  msgstr ""
9543
 
9544
+ #: languages/vue.php:3432
9545
  msgid "Smash Balloon - Instagram"
9546
  msgstr ""
9547
 
9548
+ #: languages/vue.php:3435
9549
  msgid "Quickly add social media feeds from Facebook, Instagram, Twitter, and others to your website, with no coding needed."
9550
  msgstr ""
9551
 
9552
+ #: languages/vue.php:3438
9553
  msgid "Popular Posts by ExactMetrics"
9554
  msgstr ""
9555
 
9556
+ #: languages/vue.php:3441
9557
  msgid "Increase your visitor engagement by automatically embedding popular and related content from your website."
9558
  msgstr ""
9559
 
9560
+ #: languages/vue.php:3444
9561
  msgid "Popular Products by ExactMetrics"
9562
  msgstr ""
9563
 
9564
+ #: languages/vue.php:3447
9565
  msgid "Automatically show related products to increase conversion rates and increase cart sizes on your eCommerce website."
9566
  msgstr ""
9567
 
9568
+ #: languages/vue.php:3450
9569
  msgid "Revenue Tools"
9570
  msgstr ""
9571
 
9572
+ #: languages/vue.php:3453
9573
  msgid "SeedProd"
9574
  msgstr ""
9575
 
9576
+ #: languages/vue.php:3456
9577
  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."
9578
  msgstr ""
9579
 
9580
+ #: languages/vue.php:3459
9581
  msgid "Featured Tools"
9582
  msgstr ""
9583
 
9584
+ #: languages/vue.php:3462
9585
  msgid "Easy Affiliate"
9586
  msgstr ""
9587
 
9588
+ #: languages/vue.php:3465
9589
  msgid "Launch, grow, and manage an affiliate program, all right from your WordPress dashboard. Works automatically with ExactMetrics."
9590
  msgstr ""
9591
 
9592
+ #: languages/vue.php:3468
9593
  msgid "SearchWP"
9594
  msgstr ""
9595
 
9596
+ #: languages/vue.php:3471
9597
  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."
9598
  msgstr ""
9599
 
9600
+ #: languages/vue.php:3474
9601
  msgid "Easy Digital Downloads"
9602
  msgstr ""
9603
 
9604
+ #: languages/vue.php:3477
9605
  msgid "Easily sell digital products like ebooks, plugins, and courses with WordPress. Built-in payment processing, coupons, shopping cart, detailed reporting, and more."
9606
  msgstr ""
9607
 
9608
+ #: languages/vue.php:3480
9609
  msgid "MemberPress"
9610
  msgstr ""
9611
 
9612
+ #: languages/vue.php:3483
9613
  msgid "Create a membership website. Works automatically with ExactMetrics, no coding needed."
9614
  msgstr ""
9615
 
9616
+ #: languages/vue.php:3486
9617
  msgid "Thirsty Affiliates"
9618
  msgstr ""
9619
 
9620
+ #: languages/vue.php:3489
9621
  msgid "Manage all your affiliate links with features designed to help make bloggers more money."
9622
  msgstr ""
9623
 
9624
+ #: languages/vue.php:3492
9625
  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."
9626
  msgstr ""
9627
 
9628
+ #: languages/vue.php:3495
9629
  msgid "Advanced Coupons"
9630
  msgstr ""
9631
 
9632
+ #: languages/vue.php:3498
9633
  msgid "Create coupons, reward loyal customers, and schedule promotions for your eCommerce store."
9634
  msgstr ""
9635
 
9636
+ #: languages/vue.php:3501
9637
  msgid "PrettyLinks"
9638
  msgstr ""
9639
 
9640
+ #: languages/vue.php:3504
9641
  msgid "Automatically monetize your website content with affiliate links added automatically to your content."
9642
  msgstr ""
9643
 
9644
+ #: languages/vue.php:3507
9645
  msgid "Install Now"
9646
  msgstr ""
9647
 
9648
+ #: languages/vue.php:3510
9649
  msgid "Online Marketing Guides & Resources"
9650
  msgstr ""
9651
 
9652
+ #: languages/vue.php:3513
9653
  msgid "Read This Guide"
9654
  msgstr ""
9655
 
9656
+ #: languages/vue.php:3519
9657
  msgid "Upgrade to unlock eCommerce tracking, Custom Dimensions, Form Tracking, and much more. Special Offer: Save 50% today."
9658
  msgstr ""
9659
 
9660
+ #: languages/vue.php:3522
9661
  msgid "Traffic Tools"
9662
  msgstr ""
9663
 
9664
+ #: languages/vue.php:3525
9665
  msgid "All in One SEO (AIOSEO)"
9666
  msgstr ""
9667
 
9668
+ #: languages/vue.php:3528
9669
  msgid "The best WordPress SEO plugin that works automatically with ExactMetrics."
9670
  msgstr ""
9671
 
9672
+ #: languages/vue.php:3531
9673
  msgid "PushEngage"
9674
  msgstr ""
9675
 
9676
+ #: languages/vue.php:3534
9677
  msgid "Send push notifications to your visitors to drive more traffic and boost sales."
9678
  msgstr ""
9679
 
9680
+ #: languages/vue.php:3537
9681
  msgid "Featured"
9682
  msgstr ""
9683
 
9684
+ #: languages/vue.php:3540
9685
  msgid "Traffic"
9686
  msgstr ""
9687
 
9688
+ #: languages/vue.php:3543
9689
  msgid "Revenue"
9690
  msgstr ""
9691
 
9692
+ #: languages/vue.php:3546
9693
  msgid "Guides & Resources"
9694
  msgstr ""
9695
 
9696
+ #: languages/vue.php:3549
9697
  msgid "Media Tracking"
9698
  msgstr ""
9699
 
9700
+ #: languages/vue.php:3552
9701
  msgid "Get Started"
9702
  msgstr ""
9703
 
9704
+ #: languages/vue.php:3555
9705
  msgid "Privacy Compliance Addon"
9706
  msgstr ""
9707
 
9708
+ #: languages/vue.php:3558
9709
  msgid "Help Google Analytics become compliant with internet privacy laws like GDPR, PECR, and CCPA."
9710
  msgstr ""
9711
 
9712
+ #: languages/vue.php:3561
9713
  msgid "Get access to advanced reports inside WordPress including search keywords report, real-time analytics dashboard, publishers / eCommerce report, custom dimensions, and more."
9714
  msgstr ""
9715
 
9716
+ #: languages/vue.php:3564
9717
  msgid "Instantly enable enhanced eCommerce tracking, so you can measure conversions, sales, and revenue stats. Works with WooCommerce, Easy Digital Downloads, MemberPress, and more."
9718
  msgstr ""
9719
 
9720
+ #: languages/vue.php:3567
9721
  msgid "20+ Advanced Tracking"
9722
  msgstr ""
9723
 
9724
+ #: languages/vue.php:3570
9725
  msgid "Get access to advanced tracking features like form conversion tracking, author tracking, custom dimensions, scroll tracking, and more."
9726
  msgstr ""
9727
 
9728
+ #: languages/vue.php:3573
9729
  msgid "Advanced Growth Tools"
9730
  msgstr ""
9731
 
9732
+ #: languages/vue.php:3576
9733
  msgid "Get access to advanced growth tools such as popular posts addon, A/B testing tool, smart URL builder, and more."
9734
  msgstr ""
9735
 
9736
+ #: languages/vue.php:3579
9737
  msgid "Track how your users interact with videos on your website."
9738
  msgstr ""
9739
 
9740
+ #: languages/vue.php:3582
9741
  msgid "Error Processing"
9742
  msgstr ""
9743
 
9744
+ #: languages/vue.php:3585
9745
  msgid "There was an error while processing some features. Please try again or you can skip this process for now"
9746
  msgstr ""
9747
 
9748
+ #: languages/vue.php:3588
9749
  msgid "Which website features would you like to enable?"
9750
  msgstr ""
9751
 
9752
+ #: languages/vue.php:3591
9753
  msgid "We’ve already selected our recommended features based on your site. "
9754
  msgstr ""
9755
 
9756
+ #: languages/vue.php:3594
9757
  msgid "Other Addons"
9758
  msgstr ""
9759
 
9760
+ #: languages/vue.php:3597
9761
  msgid "View all ExactMetrics addons"
9762
  msgstr ""
9763
 
9764
+ #: languages/vue.php:3600
9765
  msgid "Standard Analytics & Reports"
9766
  msgstr ""
9767
 
9768
+ #: languages/vue.php:3603
9769
  msgid "Get the reports and stats that matter right inside your WordPress Dashboard."
9770
  msgstr ""
9771
 
9772
+ #: languages/vue.php:3606
9773
  msgid "Helps you see what links your users are clicking on your site."
9774
  msgstr ""
9775
 
9776
+ #: languages/vue.php:3609
9777
  msgid "All In One SEO Toolkit"
9778
  msgstr ""
9779
 
9780
+ #: languages/vue.php:3612
9781
  msgid "The best WordPress SEO plugin that works with ExactMetrics to boost your rankings."
9782
  msgstr ""
9783
 
9784
+ #: languages/vue.php:3615
9785
  msgid "Smart Form Builder by WPForms"
9786
  msgstr ""
9787
 
9788
+ #: languages/vue.php:3618
9789
  msgid "The most popular WordPress form plugin, trusted by over 5 million websites. Easily create contact forms, payment forms, surveys and more."
9790
  msgstr ""
9791
 
9792
+ #: languages/vue.php:3621
9793
  msgid "Awesome! Tracking and Analytics are All Setup!"
9794
  msgstr ""
9795
 
9796
+ #: languages/vue.php:3624
9797
  msgid "ExactMetrics is connected to Google Analytics and data is being collected."
9798
  msgstr ""
9799
 
9800
+ #: languages/vue.php:3631
9801
  msgid "Complete Setup without Upgrading"
9802
  msgstr ""
9803
 
9804
+ #: languages/vue.php:3634
9805
  msgid "Success"
9806
  msgstr ""
9807
 
9808
+ #: languages/vue.php:3637
9809
  msgid "Connected to Google Analytics"
9810
  msgstr ""
9811
 
9812
+ #: languages/vue.php:3640
9813
  msgid "Tracking Code Installed"
9814
  msgstr ""
9815
 
9816
+ #: languages/vue.php:3643
9817
  msgid "Data Being Collected"
9818
  msgstr ""
9819
 
9820
  #. Translators: Add link to retrieve license from account area.
9821
+ #: languages/vue.php:3647
9822
  msgid "Already purchased? Simply enter your license key below to connect with ExactMetrics PRO!"
9823
  msgstr ""
9824
 
9825
+ #: languages/vue.php:3650
9826
  msgid "Verify License Key"
9827
  msgstr ""
9828
 
9829
+ #: languages/vue.php:3653
9830
  msgid "Upgrade to Unlock These Features"
9831
  msgstr ""
9832
 
9833
+ #: languages/vue.php:3656
9834
  msgid "To unlock the selected features, please upgrade to Pro and enter your license key below."
9835
  msgstr ""
9836
 
9837
+ #: languages/vue.php:3659
9838
  msgid "%1$sBonus:%2$s Upgrade today and save %3$s50%% on a Pro License!%4$s (auto-applied at checkout)"
9839
  msgstr ""
9840
 
9841
+ #: languages/vue.php:3662
9842
  msgid "Verifying License..."
9843
  msgstr ""
9844
 
9845
+ #: languages/vue.php:3668
9846
  msgid "The following plugins will be installed: "
9847
  msgstr ""
9848
 
9849
+ #: languages/vue.php:3672
9850
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
9851
  msgstr ""
9852
 
9853
+ #: languages/vue.php:3676
9854
  msgid "Manually enter your GA4 Measurement ID"
9855
  msgstr ""
9856
 
9857
+ #: languages/vue.php:3680
9858
  msgid "Warning: If you use a manual GA4 Measurement ID, you won't be able to use any of the reporting and some of the tracking features. Your UA code should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
9859
  msgstr ""
9860
 
9861
+ #: languages/vue.php:3683
9862
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are a combination of numbers and letters."
9863
  msgstr ""
9864
 
9865
+ #: languages/vue.php:3686
9866
+ msgid "Your ExactMetrics license key has expired."
9867
+ msgstr ""
9868
+
9869
+ #: languages/vue.php:3689
9870
+ msgid "Renew today to ensure Google Analytics continues to track properly."
9871
+ msgstr ""
9872
+
9873
+ #: languages/vue.php:3692
9874
+ msgid "Click here."
9875
+ msgstr ""
9876
+
9877
+ #: languages/vue.php:3695
9878
+ msgid "ExactMetrics makes it effortless for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
9879
+ msgstr ""
9880
+
9881
+ #: languages/vue.php:3701
9882
+ msgid "Expired"
9883
+ msgstr ""
9884
+
9885
+ #. Translators: Adds a link to the license renewal.
9886
+ #: languages/vue.php:3705
9887
+ msgid "To ensure tracking works properly, reactivate your license"
9888
+ msgstr ""
9889
+
9890
  #: lite/includes/admin/connect.php:42
9891
  msgid "You are not allowed to install plugins."
9892
  msgstr ""
languages/vue.php CHANGED
@@ -10,7 +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/plugins/exactmetrics-settings-helper-plugin.js:117
 
14
  __( 'Please wait...', 'google-analytics-dashboard-for-wp' ),
15
 
16
  // Reference: src/plugins/exactmetrics-settings-helper-plugin.js:20
@@ -29,12 +30,11 @@ $generated_i18n_strings = array(
29
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:129
30
  __( 'Loading new report data', 'google-analytics-dashboard-for-wp' ),
31
 
32
- // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:285
33
- /* Translators: Placeholder gets replaced with an arrow icon. */
34
  __( 'Continue %s', 'google-analytics-dashboard-for-wp' ),
35
 
36
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:154
37
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:229
38
  __( 'Error', 'google-analytics-dashboard-for-wp' ),
39
 
40
  // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:16
@@ -50,6 +50,7 @@ $generated_i18n_strings = array(
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/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:31
@@ -64,34 +65,34 @@ $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
  __( 'Unlock the Forms Report and Improve Conversions', 'google-analytics-dashboard-for-wp' ),
69
 
70
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:32
71
  __( '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' ),
72
 
73
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:31
74
  __( 'Unlock the Search Console Report and See How People Find Your Website', 'google-analytics-dashboard-for-wp' ),
75
 
76
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:202
77
  __( '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' ),
78
 
79
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:31
 
80
  __( 'Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time', 'google-analytics-dashboard-for-wp' ),
81
 
82
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:206
83
  __( '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' ),
84
 
85
- // Reference: src/modules/reports/components/reports/exactmetrics-SiteSpeed-Lite.vue:31
86
  __( 'Unlock the Site Speed Report and Improve the Performance of Your Site', 'google-analytics-dashboard-for-wp' ),
87
 
88
- // Reference: src/modules/reports/components/reports/exactmetrics-SiteSpeed-Lite.vue:32
89
  __( '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' ),
90
 
91
  // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:42
92
  __( 'Today', 'google-analytics-dashboard-for-wp' ),
93
 
94
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:67
95
  // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:48
96
  __( 'Yesterday', 'google-analytics-dashboard-for-wp' ),
97
 
@@ -121,7 +122,6 @@ $generated_i18n_strings = array(
121
  // Reference: src/modules/widget/components/WidgetReminder.vue:36
122
  __( 'See the full analytics report!', 'google-analytics-dashboard-for-wp' ),
123
 
124
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:270
125
  // Reference: src/modules/widget/widget.vue:25
126
  __( 'Overview Report', 'google-analytics-dashboard-for-wp' ),
127
 
@@ -153,14 +153,13 @@ $generated_i18n_strings = array(
153
  // Reference: src/plugins/exactmetrics-compatibility-plugin.js:59
154
  __( 'Learn more about updating WordPress', 'google-analytics-dashboard-for-wp' ),
155
 
156
- // Reference: src/modules/settings/routes/network.js:35
157
  __( 'About Us', 'google-analytics-dashboard-for-wp' ),
158
 
159
- // Reference: src/modules/settings/routes/network.js:43
160
  __( 'Getting Started', 'google-analytics-dashboard-for-wp' ),
161
 
162
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:60
163
- // Reference: src/modules/settings/routes/network.js:52
164
  __( 'Lite vs Pro', 'google-analytics-dashboard-for-wp' ),
165
 
166
  // Reference: src/modules/settings/exactmetrics-site.vue:77
@@ -180,109 +179,115 @@ $generated_i18n_strings = array(
180
  // Reference: src/modules/reports/api/index.js:28
181
  __( 'Error loading report data', 'google-analytics-dashboard-for-wp' ),
182
 
183
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:154
184
- /* Translators: Makes the text bold. */
185
  __( '%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' ),
186
 
187
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:159
188
- /* Translators: Makes the text bold. */
189
  __( '%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights.', 'google-analytics-dashboard-for-wp' ),
190
 
191
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:164
192
- /* Translators: Makes the text bold. */
193
  __( '%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' ),
194
 
195
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:117
196
  /* Translators: Makes text bold. */
197
  __( '%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress.', 'google-analytics-dashboard-for-wp' ),
198
 
199
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:174
200
- /* Translators: Makes the text bold. */
201
  __( '%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' ),
202
 
203
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:179
204
- /* Translators: Makes the text bold. */
205
  __( '%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' ),
206
 
207
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:184
208
- /* Translators: Makes the text bold. */
209
  __( '%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically.', 'google-analytics-dashboard-for-wp' ),
210
 
211
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:137
212
  /* Translators: Makes text bold. */
213
  __( '%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' ),
214
 
215
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:194
216
- /* Translators: Adds a link and an arrow icon. */
217
  __( '%1$sSee All Features%2$s', 'google-analytics-dashboard-for-wp' ),
218
 
219
- // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:11
220
  __( 'Pro Plan', 'google-analytics-dashboard-for-wp' ),
221
 
222
- // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:12
223
  __( 'per year', 'google-analytics-dashboard-for-wp' ),
224
 
225
- // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:46
226
- // Reference: src/modules/reports/components/reports-overview/ReportOverviewUpsellMobile-Lite.vue:22
227
  __( 'Upgrade Now', 'google-analytics-dashboard-for-wp' ),
228
 
229
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:148
230
  __( 'Upgrade to ExactMetrics Pro Now', 'google-analytics-dashboard-for-wp' ),
231
 
232
- // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:33
233
  __( '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' ),
234
 
235
- // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:34
236
  __( 'Daniel Monaghan - Experienced', 'google-analytics-dashboard-for-wp' ),
237
 
238
- // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:38
239
  __( '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' ),
240
 
241
- // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:39
242
  __( 'Naomi Spirit - From This Day', 'google-analytics-dashboard-for-wp' ),
243
 
244
- // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:43
245
  __( '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' ),
246
 
247
- // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:44
248
  __( 'Julie Dupuis - Faraway Land Travel', 'google-analytics-dashboard-for-wp' ),
249
 
250
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:218
251
  __( 'Guides and Documentation:', 'google-analytics-dashboard-for-wp' ),
252
 
253
- // Reference: src/modules/addons/exactmetrics-addons-Lite.vue:66
 
 
 
254
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:54
 
255
  __( 'Upgrade to PRO', 'google-analytics-dashboard-for-wp' ),
256
 
257
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:98
258
  __( 'eCommerce Tracking', 'google-analytics-dashboard-for-wp' ),
259
 
260
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:172
261
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:49
 
262
  __( 'Custom Dimensions', 'google-analytics-dashboard-for-wp' ),
263
 
264
- // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:46
265
  __( 'Form Tracking', 'google-analytics-dashboard-for-wp' ),
266
 
267
- // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:48
268
  __( 'AMP Support', 'google-analytics-dashboard-for-wp' ),
269
 
270
- // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:50
271
  __( 'Author Tracking', 'google-analytics-dashboard-for-wp' ),
272
 
273
- // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:43
274
  __( 'EU Compliance Addon', 'google-analytics-dashboard-for-wp' ),
275
 
276
- // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:45
277
  __( 'Real Time Report', 'google-analytics-dashboard-for-wp' ),
278
 
279
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:47
 
280
  __( 'Google Optimize', 'google-analytics-dashboard-for-wp' ),
281
 
 
282
  // Reference: src/modules/reports/routes/exactmetrics-routes.js:49
 
283
  __( 'Search Console', 'google-analytics-dashboard-for-wp' ),
284
 
285
- // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:51
286
  __( 'Custom Date Ranges', 'google-analytics-dashboard-for-wp' ),
287
 
288
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:84
@@ -291,30 +296,31 @@ $generated_i18n_strings = array(
291
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:85
292
  __( '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' ),
293
 
294
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:87
295
  __( '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' ),
296
 
297
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:88
298
  __( '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' ),
299
 
300
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:89
301
  __( 'Launch the wizard!', 'google-analytics-dashboard-for-wp' ),
302
 
303
  // Reference: src/components/ContentIntroFullWidth.vue:46
 
304
  __( 'Welcome to', 'google-analytics-dashboard-for-wp' ),
305
 
306
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:144
307
  /* Translators: Adds a line break. */
308
  __( 'Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin', 'google-analytics-dashboard-for-wp' ),
309
 
310
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:146
311
- /* Translators: Makes the product name bold. */
312
  __( '%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' ),
313
 
314
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:148
315
  __( 'ExactMetrics Features & Addons', 'google-analytics-dashboard-for-wp' ),
316
 
317
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:149
318
  __( 'Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market.', 'google-analytics-dashboard-for-wp' ),
319
 
320
  // Reference: src/modules/widget/components/WidgetFooter.vue:19
@@ -328,7 +334,6 @@ $generated_i18n_strings = array(
328
  __( 'Activate', 'google-analytics-dashboard-for-wp' ),
329
 
330
  // Reference: src/modules/frontend/components/FrontendNoAuth.vue:27
331
- // Reference: src/modules/growth-tools/exactmetrics-growth-tools.vue:246
332
  // Reference: src/modules/widget/components/WidgetFooter.vue:22
333
  __( 'Learn More', 'google-analytics-dashboard-for-wp' ),
334
 
@@ -338,13 +343,18 @@ $generated_i18n_strings = array(
338
  // Reference: src/modules/reports/components/ReportReAuth.vue:20
339
  __( 'There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating.', 'google-analytics-dashboard-for-wp' ),
340
 
 
341
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:64
342
  __( 'Reconnect ExactMetrics', 'google-analytics-dashboard-for-wp' ),
343
 
 
344
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:162
345
  __( 'Re-Authenticating', 'google-analytics-dashboard-for-wp' ),
346
 
347
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:236
 
 
 
348
  __( 'Ok', 'google-analytics-dashboard-for-wp' ),
349
 
350
  // Reference: src/modules/addons/components/AddonsNavigation.vue:18
@@ -359,13 +369,13 @@ $generated_i18n_strings = array(
359
  // Reference: src/modules/wizard-onboarding/components/TheWizardHeader.vue:24
360
  __( 'Exit Setup', 'google-analytics-dashboard-for-wp' ),
361
 
362
- // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:132
363
  __( 'Time to Purchase', 'google-analytics-dashboard-for-wp' ),
364
 
365
  // Reference: src/modules/widget/store/index.js:104
366
  __( 'This list shows how many days from first visit it took users to purchase products from your site.', 'google-analytics-dashboard-for-wp' ),
367
 
368
- // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:127
369
  __( 'Sessions to Purchase', 'google-analytics-dashboard-for-wp' ),
370
 
371
  // Reference: src/modules/widget/store/index.js:112
@@ -431,6 +441,7 @@ $generated_i18n_strings = array(
431
  // Reference: src/modules/widget/store/index.js:71
432
  __( 'This list shows the download links your visitors clicked the most.', 'google-analytics-dashboard-for-wp' ),
433
 
 
434
  // Reference: src/modules/reports/routes/exactmetrics-routes.js:25
435
  __( 'Overview', 'google-analytics-dashboard-for-wp' ),
436
 
@@ -462,7 +473,7 @@ $generated_i18n_strings = array(
462
  // Reference: src/modules/reports/components/ReportNoAuth.vue:26
463
  __( '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' ),
464
 
465
- // Reference: src/modules/reports/components/ReportNoAuth.vue:27
466
  __( 'Launch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
467
 
468
  // Reference: src/modules/reports/components/ReportNoAuth.vue:28
@@ -472,10 +483,10 @@ $generated_i18n_strings = array(
472
  /* Translators: Adds a link to the license renewal. */
473
  __( 'Your license key for ExactMetrics has expired. %1$sPlease click here to renew your license key.%2$s', 'google-analytics-dashboard-for-wp' ),
474
 
475
- // Reference: src/modules/license/store/actions.js:71
476
  __( 'Your license key for ExactMetrics has been disabled. Please use a different key.', 'google-analytics-dashboard-for-wp' ),
477
 
478
- // Reference: src/modules/license/store/actions.js:81
479
  __( '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.', 'google-analytics-dashboard-for-wp' ),
480
 
481
  // Reference: src/components/TheQuickLinks.vue:31
@@ -493,18 +504,23 @@ $generated_i18n_strings = array(
493
  // Reference: src/components/TheQuickLinks.vue:78
494
  __( 'Upgrade to Pro &#187;', 'google-analytics-dashboard-for-wp' ),
495
 
 
496
  // Reference: src/modules/reports/routes/exactmetrics-routes.js:33
497
  __( 'Publishers', 'google-analytics-dashboard-for-wp' ),
498
 
 
499
  // Reference: src/modules/reports/routes/exactmetrics-routes.js:41
 
500
  __( 'eCommerce', 'google-analytics-dashboard-for-wp' ),
501
 
502
  // Reference: src/modules/reports/routes/exactmetrics-routes.js:57
503
  __( 'Dimensions Report', 'google-analytics-dashboard-for-wp' ),
504
 
 
505
  // Reference: src/modules/reports/routes/exactmetrics-routes.js:65
506
  __( 'Forms', 'google-analytics-dashboard-for-wp' ),
507
 
 
508
  // Reference: src/modules/reports/routes/exactmetrics-routes.js:73
509
  __( 'Real-Time', 'google-analytics-dashboard-for-wp' ),
510
 
@@ -521,13 +537,13 @@ $generated_i18n_strings = array(
521
  // Reference: src/modules/settings/routes/site.js:111
522
  __( 'PrettyLinks Integration', 'google-analytics-dashboard-for-wp' ),
523
 
524
- // Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:22
525
  __( 'Inline Popular Posts', 'google-analytics-dashboard-for-wp' ),
526
 
527
- // Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:23
528
  __( 'Popular Posts Widget', 'google-analytics-dashboard-for-wp' ),
529
 
530
- // Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:24
531
  __( 'Popular Products', 'google-analytics-dashboard-for-wp' ),
532
 
533
  // Reference: src/modules/settings/routes/site.js:189
@@ -539,13 +555,14 @@ $generated_i18n_strings = array(
539
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:67
540
  __( 'General', 'google-analytics-dashboard-for-wp' ),
541
 
542
- // Reference: src/modules/growth-tools/components/GrowthNavigation.vue:19
543
  __( 'Engagement', 'google-analytics-dashboard-for-wp' ),
544
 
545
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:70
546
  __( 'Publisher', 'google-analytics-dashboard-for-wp' ),
547
 
548
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:44
 
549
  __( 'Conversions', 'google-analytics-dashboard-for-wp' ),
550
 
551
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:72
@@ -570,47 +587,49 @@ $generated_i18n_strings = array(
570
  /* Translators: Adds link to activate/install plugin and documentation. */
571
  __( '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', 'google-analytics-dashboard-for-wp' ),
572
 
573
- // Reference: src/modules/reports/store/actions.js:138
574
  __( 'Installing Addon', 'google-analytics-dashboard-for-wp' ),
575
 
576
- // Reference: src/modules/reports/store/actions.js:161
577
  __( 'Activating Addon', 'google-analytics-dashboard-for-wp' ),
578
 
579
- // Reference: src/modules/reports/store/actions.js:176
580
  __( 'Addon Activated', 'google-analytics-dashboard-for-wp' ),
581
 
582
- // Reference: src/modules/reports/store/actions.js:177
583
  __( 'Loading report data', 'google-analytics-dashboard-for-wp' ),
584
 
585
- // Reference: src/modules/reports/store/actions.js:194
586
  __( 'Please activate manually', 'google-analytics-dashboard-for-wp' ),
587
 
588
- // Reference: src/modules/reports/store/actions.js:197
589
  /* Translators: Adds the error status and status text. */
590
  __( 'Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
591
 
592
- // Reference: src/modules/reports/store/actions.js:203
593
  __( 'Error Activating Addon', 'google-analytics-dashboard-for-wp' ),
594
 
595
- // Reference: src/modules/reports/store/actions.js:209
596
  __( 'View Addons', 'google-analytics-dashboard-for-wp' ),
597
 
 
598
  // Reference: src/modules/seo/components/aioseo.vue:246
 
599
  __( 'Dismiss', 'google-analytics-dashboard-for-wp' ),
600
 
601
- // Reference: src/modules/reports/store/actions.js:217
602
  __( 'Redirecting', 'google-analytics-dashboard-for-wp' ),
603
 
604
- // Reference: src/modules/reports/store/actions.js:218
605
  __( 'Please wait', 'google-analytics-dashboard-for-wp' ),
606
 
607
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:119
608
  __( 'activate', 'google-analytics-dashboard-for-wp' ),
609
 
610
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:119
611
  __( 'install', 'google-analytics-dashboard-for-wp' ),
612
 
613
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:127
614
  __( 'Visit addons page', 'google-analytics-dashboard-for-wp' ),
615
 
616
  // Reference: src/modules/reports/store/actions.js:68
@@ -639,7 +658,7 @@ $generated_i18n_strings = array(
639
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:33
640
  __( 'Let\'s get you set up.', 'google-analytics-dashboard-for-wp' ),
641
 
642
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:68
643
  __( 'Save and Continue', 'google-analytics-dashboard-for-wp' ),
644
 
645
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:35
@@ -655,7 +674,7 @@ $generated_i18n_strings = array(
655
  /* Translators: Make text bold. */
656
  __( 'Publisher %1$s(Blog)%2$s', 'google-analytics-dashboard-for-wp' ),
657
 
658
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:46
659
  __( 'Ecommerce', 'google-analytics-dashboard-for-wp' ),
660
 
661
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:61
@@ -664,12 +683,10 @@ $generated_i18n_strings = array(
664
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:62
665
  __( 'ExactMetrics connects Google Analytics to WordPress and shows you stats that matter.', 'google-analytics-dashboard-for-wp' ),
666
 
667
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:118
668
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:63
669
  __( 'Connect Google Analytics + WordPress', 'google-analytics-dashboard-for-wp' ),
670
 
671
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:119
672
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:64
673
  __( 'You will be taken to the ExactMetrics website where you\'ll need to connect your Analytics account.', 'google-analytics-dashboard-for-wp' ),
674
 
675
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:65
@@ -723,7 +740,7 @@ $generated_i18n_strings = array(
723
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:57
724
  __( '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' ),
725
 
726
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:58
727
  __( 'Enhanced Link Attribution', 'google-analytics-dashboard-for-wp' ),
728
 
729
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:59
@@ -750,18 +767,18 @@ $generated_i18n_strings = array(
750
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:66
751
  __( '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' ),
752
 
753
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:56
754
  /* Translators: Example path (/go/). */
755
  __( 'Path (example: %s)', 'google-analytics-dashboard-for-wp' ),
756
 
757
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:58
758
  __( 'Path has to start with a / and have no spaces', 'google-analytics-dashboard-for-wp' ),
759
 
760
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:63
761
  /* Translators: Example label (aff). */
762
  __( 'Label (example: %s)', 'google-analytics-dashboard-for-wp' ),
763
 
764
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:65
765
  __( 'Label can\'t contain any spaces', 'google-analytics-dashboard-for-wp' ),
766
 
767
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:83
@@ -804,45 +821,48 @@ $generated_i18n_strings = array(
804
  // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:50
805
  __( 'Site Speed', 'google-analytics-dashboard-for-wp' ),
806
 
 
807
  // Reference: src/modules/wizard-onboarding/components/inputs/exactmetrics-OnboardingLicense-Lite.vue:27
808
  __( 'License Key', 'google-analytics-dashboard-for-wp' ),
809
 
810
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:62
811
  /* Translators: Add link to retrieve license key from account. */
812
  __( 'Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s.', 'google-analytics-dashboard-for-wp' ),
813
 
814
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:114
815
  __( 'Google Authentication', 'google-analytics-dashboard-for-wp' ),
816
 
817
- // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:32
818
  __( 'Miscellaneous', 'google-analytics-dashboard-for-wp' ),
819
 
820
- // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:34
821
  __( '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' ),
822
 
823
- // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:35
824
  __( 'Hide Announcements', 'google-analytics-dashboard-for-wp' ),
825
 
826
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:129
827
  __( 'You\'re using ExactMetrics Lite – no license needed. Enjoy!', 'google-analytics-dashboard-for-wp' ),
828
 
829
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:131
830
  /* Translators: Adds link to upgrade. */
831
  __( 'To unlock more features consider %1$supgrading to PRO%2$s.', 'google-analytics-dashboard-for-wp' ),
832
 
833
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:132
 
834
  __( 'Receive 50% off automatically applied at the checkout!', 'google-analytics-dashboard-for-wp' ),
835
 
836
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:134
 
837
  __( 'See all features', 'google-analytics-dashboard-for-wp' ),
838
 
839
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:121
840
  __( 'Setup Wizard', 'google-analytics-dashboard-for-wp' ),
841
 
842
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:122
843
  __( 'Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks).', 'google-analytics-dashboard-for-wp' ),
844
 
845
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:123
846
  __( 'Relaunch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
847
 
848
  // Reference: src/modules/addons/exactmetrics-addons-Lite.vue:59
@@ -945,7 +965,7 @@ $generated_i18n_strings = array(
945
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:120
946
  __( 'Overview Reports for the last 30 days.', 'google-analytics-dashboard-for-wp' ),
947
 
948
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:121
949
  __( 'Advanced Reports', 'google-analytics-dashboard-for-wp' ),
950
 
951
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:122
@@ -976,10 +996,9 @@ $generated_i18n_strings = array(
976
  __( 'View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more', 'google-analytics-dashboard-for-wp' ),
977
 
978
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:145
979
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:73
980
  __( 'Headline Analyzer', 'google-analytics-dashboard-for-wp' ),
981
 
982
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:153
983
  __( 'Email Summaries', 'google-analytics-dashboard-for-wp' ),
984
 
985
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:155
@@ -1037,7 +1056,6 @@ $generated_i18n_strings = array(
1037
  __( 'Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout.', 'google-analytics-dashboard-for-wp' ),
1038
 
1039
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:67
1040
- // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:101
1041
  __( 'Upgrade to Pro', 'google-analytics-dashboard-for-wp' ),
1042
 
1043
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:70
@@ -1098,13 +1116,16 @@ $generated_i18n_strings = array(
1098
  /* Translators: Error status and error text. */
1099
  __( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1100
 
1101
- // Reference: src/modules/auth/api/index.js:123
 
1102
  __( 'You appear to be offline.', 'google-analytics-dashboard-for-wp' ),
1103
 
1104
- // Reference: src/modules/auth/api/index.js:232
 
1105
  /* Translators: Error status and error text. */
1106
  __( 'Can\'t save settings. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1107
 
 
1108
  // Reference: src/modules/settings/api/index.js:81
1109
  __( 'Network error encountered. Settings not saved.', 'google-analytics-dashboard-for-wp' ),
1110
 
@@ -1198,11 +1219,11 @@ $generated_i18n_strings = array(
1198
  // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:99
1199
  __( 'Level-up Your eCommerce store with %1$sExactMetrics + WooCommerce!%1$s', 'google-analytics-dashboard-for-wp' ),
1200
 
1201
- // Reference: src/modules/license/api/index.js:118
1202
  /* Translators: Error status and error text. */
1203
  __( 'Can\'t deactivate the license. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1204
 
1205
- // Reference: src/modules/license/api/index.js:145
1206
  /* Translators: Error status and error text. */
1207
  __( 'Can\'t upgrade to PRO please try again. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1208
 
@@ -1263,42 +1284,43 @@ $generated_i18n_strings = array(
1263
  // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:64
1264
  __( 'Remove row', 'google-analytics-dashboard-for-wp' ),
1265
 
1266
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:271
1267
  __( 'Sessions', 'google-analytics-dashboard-for-wp' ),
1268
 
1269
  // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:83
1270
  /* Translators: Line break. */
1271
  __( 'Unique %s Sessions', 'google-analytics-dashboard-for-wp' ),
1272
 
1273
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:272
 
1274
  __( 'Pageviews', 'google-analytics-dashboard-for-wp' ),
1275
 
1276
  // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:86
1277
  /* Translators: Line break. */
1278
  __( 'Unique %s Pageviews', 'google-analytics-dashboard-for-wp' ),
1279
 
1280
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:285
1281
  __( 'A session is the browsing session of a single user to your site.', 'google-analytics-dashboard-for-wp' ),
1282
 
1283
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:286
1284
  __( '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' ),
1285
 
1286
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:287
1287
  __( 'Total duration of all sessions (in seconds) / number of sessions.', 'google-analytics-dashboard-for-wp' ),
1288
 
1289
  // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:90
1290
  __( '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' ),
1291
 
1292
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:289
1293
  __( 'The number of distinct tracked users', 'google-analytics-dashboard-for-wp' ),
1294
 
1295
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:273
1296
  __( 'Avg. Session Duration', 'google-analytics-dashboard-for-wp' ),
1297
 
1298
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:274
1299
  __( 'Bounce Rate', 'google-analytics-dashboard-for-wp' ),
1300
 
1301
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:275
1302
  __( 'Total Users', 'google-analytics-dashboard-for-wp' ),
1303
 
1304
  // Reference: src/modules/settings/components/input/SettingsInputSelect.vue:62
@@ -1337,8 +1359,7 @@ $generated_i18n_strings = array(
1337
  /* Translators: add link to blog. */
1338
  __( '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' ),
1339
 
1340
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:35
1341
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:52
1342
  __( 'Here\'s what you get:', 'google-analytics-dashboard-for-wp' ),
1343
 
1344
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:41
@@ -1581,7 +1602,7 @@ $generated_i18n_strings = array(
1581
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:272
1582
  __( 'A Tip for 2021', 'google-analytics-dashboard-for-wp' ),
1583
 
1584
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:65
1585
  __( 'Demographics', 'google-analytics-dashboard-for-wp' ),
1586
 
1587
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:274
@@ -1608,7 +1629,7 @@ $generated_i18n_strings = array(
1608
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:281
1609
  __( 'Average Age', 'google-analytics-dashboard-for-wp' ),
1610
 
1611
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:101
1612
  __( 'Behavior', 'google-analytics-dashboard-for-wp' ),
1613
 
1614
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:283
@@ -1725,7 +1746,7 @@ $generated_i18n_strings = array(
1725
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:324
1726
  __( 'Upgrade to ExactMetrics Pro to Unlock Additional Actionable Insights', 'google-analytics-dashboard-for-wp' ),
1727
 
1728
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:148
1729
  __( 'Upgrade to ExactMetrics Pro', 'google-analytics-dashboard-for-wp' ),
1730
 
1731
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:328
@@ -1802,13 +1823,13 @@ $generated_i18n_strings = array(
1802
  /* Translators: Number of visitors and device percentage. */
1803
  __( '%1$s&#37 of your visitors were on a %2$s device.', 'google-analytics-dashboard-for-wp' ),
1804
 
1805
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:211
1806
  __( 'Desktop', 'google-analytics-dashboard-for-wp' ),
1807
 
1808
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:212
1809
  __( 'Tablet', 'google-analytics-dashboard-for-wp' ),
1810
 
1811
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:213
1812
  __( 'Mobile', 'google-analytics-dashboard-for-wp' ),
1813
 
1814
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:111
@@ -1922,11 +1943,11 @@ $generated_i18n_strings = array(
1922
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:69
1923
  __( 'Skip and Keep Connection', 'google-analytics-dashboard-for-wp' ),
1924
 
1925
- // Reference: src/modules/frontend/components/FrontendInfoboxChange.vue:29
1926
- /* Translators: Replaced with the number of days */
1927
  __( 'vs. Previous Day', 'google-analytics-dashboard-for-wp' ),
1928
 
1929
- // Reference: src/modules/frontend/components/FrontendInfoboxChange.vue:46
1930
  __( 'No change', 'google-analytics-dashboard-for-wp' ),
1931
 
1932
  // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:100
@@ -2002,7 +2023,7 @@ $generated_i18n_strings = array(
2002
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:114
2003
  __( 'Choose where in the post body the widget will be placed.', 'google-analytics-dashboard-for-wp' ),
2004
 
2005
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:109
2006
  __( 'Customize Design', 'google-analytics-dashboard-for-wp' ),
2007
 
2008
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:123
@@ -2102,20 +2123,20 @@ $generated_i18n_strings = array(
2102
  /* Translators: Error status and error text. */
2103
  __( 'Can\'t install WPForms. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
2104
 
2105
- // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:107
2106
  __( 'Network Active', 'google-analytics-dashboard-for-wp' ),
2107
 
2108
- // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:107
2109
  __( 'Active', 'google-analytics-dashboard-for-wp' ),
2110
 
2111
- // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:109
2112
  __( 'Inactive', 'google-analytics-dashboard-for-wp' ),
2113
 
2114
- // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:45
2115
  /* Translators: Placeholder for the addon status (installed, active, etc). */
2116
  __( 'Status: %s', 'google-analytics-dashboard-for-wp' ),
2117
 
2118
- // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:101
2119
  __( 'Not Installed', 'google-analytics-dashboard-for-wp' ),
2120
 
2121
  // Reference: src/modules/wizard-onboarding/components/inputs/exactmetrics-OnboardingLicense-Lite.vue:29
@@ -2140,17 +2161,17 @@ $generated_i18n_strings = array(
2140
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:35
2141
  __( 'Unlock PRO Features Now', 'google-analytics-dashboard-for-wp' ),
2142
 
2143
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:156
2144
  __( 'Paste your license key here', 'google-analytics-dashboard-for-wp' ),
2145
 
2146
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:157
2147
  __( 'Verify', 'google-analytics-dashboard-for-wp' ),
2148
 
2149
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:39
2150
  /* Translators: Add link to retrieve license from account area. */
2151
  __( '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' ),
2152
 
2153
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:172
2154
  __( 'There was an error unlocking ExactMetrics PRO please try again or install manually.', 'google-analytics-dashboard-for-wp' ),
2155
 
2156
  // Reference: src/modules/seo/components/yoast.vue:137
@@ -2160,9 +2181,11 @@ $generated_i18n_strings = array(
2160
  __( 'Automatically migrate all of your SEO settings with just 1 click!', 'google-analytics-dashboard-for-wp' ),
2161
 
2162
  // Reference: src/modules/seo/components/aioseo.vue:155
 
2163
  __( '1,938', 'google-analytics-dashboard-for-wp' ),
2164
 
2165
  // Reference: src/modules/seo/components/aioseo.vue:156
 
2166
  __( '2+ Million Active Installs', 'google-analytics-dashboard-for-wp' ),
2167
 
2168
  // Reference: src/modules/seo/components/yoast.vue:143
@@ -2172,9 +2195,11 @@ $generated_i18n_strings = array(
2172
  __( 'Set up the proper SEO foundations in less than 10 minutes.', 'google-analytics-dashboard-for-wp' ),
2173
 
2174
  // Reference: src/modules/seo/components/aioseo.vue:165
 
2175
  __( 'SEO Audit Checklist', 'google-analytics-dashboard-for-wp' ),
2176
 
2177
  // Reference: src/modules/seo/components/aioseo.vue:166
 
2178
  __( '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' ),
2179
 
2180
  // Reference: src/modules/seo/components/yoast.vue:147
@@ -2187,36 +2212,45 @@ $generated_i18n_strings = array(
2187
  __( 'Get AIOSEO for WordPress', 'google-analytics-dashboard-for-wp' ),
2188
 
2189
  // Reference: src/modules/seo/components/aioseo.vue:180
 
2190
  __( 'Get the #1 Most Powerful WordPress SEO Plugin Today', 'google-analytics-dashboard-for-wp' ),
2191
 
2192
  // Reference: src/modules/seo/components/aioseo.vue:181
 
2193
  __( 'Try it out today, for free.', 'google-analytics-dashboard-for-wp' ),
2194
 
2195
  // Reference: src/modules/seo/components/aioseo.vue:184
 
2196
  __( 'Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings.', 'google-analytics-dashboard-for-wp' ),
2197
 
2198
  // Reference: src/modules/seo/components/aioseo.vue:185
 
2199
  __( 'Activate and Install the Plugin with just one click!', 'google-analytics-dashboard-for-wp' ),
2200
 
2201
  // Reference: src/modules/seo/components/yoast.vue:222
2202
  __( 'Installing AIOSEO...', 'google-analytics-dashboard-for-wp' ),
2203
 
2204
  // Reference: src/modules/seo/components/aioseo.vue:240
 
2205
  __( 'Congrats! All-in-One SEO Installed.', 'google-analytics-dashboard-for-wp' ),
2206
 
2207
  // Reference: src/modules/seo/components/yoast.vue:248
2208
  __( 'Switch to AIOSEO', 'google-analytics-dashboard-for-wp' ),
2209
 
2210
  // Reference: src/modules/seo/components/aioseo.vue:261
 
2211
  __( 'Installation Failed. Please refresh and try again.', 'google-analytics-dashboard-for-wp' ),
2212
 
2213
  // Reference: src/modules/seo/components/aioseo.vue:268
 
2214
  __( 'Activating AIOSEO...', 'google-analytics-dashboard-for-wp' ),
2215
 
2216
  // Reference: src/modules/seo/components/aioseo.vue:275
 
2217
  __( 'Activate AIOSEO', 'google-analytics-dashboard-for-wp' ),
2218
 
2219
  // Reference: src/modules/seo/components/aioseo.vue:279
 
2220
  __( 'Activation Failed. Please refresh and try again.', 'google-analytics-dashboard-for-wp' ),
2221
 
2222
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:45
@@ -2232,6 +2266,7 @@ $generated_i18n_strings = array(
2232
  __( 'Add Custom Dimensions and track who\'s the most popular author on your site, which post types get the most traffic, and more', 'google-analytics-dashboard-for-wp' ),
2233
 
2234
  // Reference: src/modules/reports/components/exactmetrics-ReportsPagination.vue:25
 
2235
  __( 'Show', 'google-analytics-dashboard-for-wp' ),
2236
 
2237
  // Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:101
@@ -2295,7 +2330,7 @@ $generated_i18n_strings = array(
2295
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:90
2296
  __( 'Reports', 'google-analytics-dashboard-for-wp' ),
2297
 
2298
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:120
2299
  __( 'Automatic Updates', 'google-analytics-dashboard-for-wp' ),
2300
 
2301
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:105
@@ -2553,25 +2588,25 @@ $generated_i18n_strings = array(
2553
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:56
2554
  __( 'See Your Conversion Rate to Improve Funnel', 'google-analytics-dashboard-for-wp' ),
2555
 
2556
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:60
2557
  __( 'See The Number of Transactions and Make Data-Driven Decisions', 'google-analytics-dashboard-for-wp' ),
2558
 
2559
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:64
2560
  __( 'See The Total Revenue to Track Growth', 'google-analytics-dashboard-for-wp' ),
2561
 
2562
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:68
2563
  __( 'See Average Order Value to Find Offer Opportunities', 'google-analytics-dashboard-for-wp' ),
2564
 
2565
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:72
2566
  __( 'See Your Top Products to See Individual Performance', 'google-analytics-dashboard-for-wp' ),
2567
 
2568
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:76
2569
  __( 'See your Top Conversion Sources and Focus on what\'s Working', 'google-analytics-dashboard-for-wp' ),
2570
 
2571
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:80
2572
  __( 'See The Time it Takes for Customers to Purchase', 'google-analytics-dashboard-for-wp' ),
2573
 
2574
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:84
2575
  __( 'See How Many Sessions are Needed for a Purchase', 'google-analytics-dashboard-for-wp' ),
2576
 
2577
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:88
@@ -2786,7 +2821,7 @@ $generated_i18n_strings = array(
2786
  // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:45
2787
  __( 'Better Support', 'google-analytics-dashboard-for-wp' ),
2788
 
2789
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:41
2790
  __( 'Continue', 'google-analytics-dashboard-for-wp' ),
2791
 
2792
  // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:48
@@ -2929,7 +2964,6 @@ $generated_i18n_strings = array(
2929
  __( 'Close', 'google-analytics-dashboard-for-wp' ),
2930
 
2931
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:28
2932
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:48
2933
  __( 'Add Top 5 Posts from Google Analytics', 'google-analytics-dashboard-for-wp' ),
2934
 
2935
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:49
@@ -2943,7 +2977,6 @@ $generated_i18n_strings = array(
2943
  __( 'Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics.', 'google-analytics-dashboard-for-wp' ),
2944
 
2945
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:30
2946
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:53
2947
  __( 'Automated + Curated', 'google-analytics-dashboard-for-wp' ),
2948
 
2949
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:55
@@ -2997,34 +3030,40 @@ $generated_i18n_strings = array(
2997
  // Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:92
2998
  __( 'Can\'t load posts.', 'google-analytics-dashboard-for-wp' ),
2999
 
3000
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:100
3001
  __( 'Sartorial taxidermy venmo you probably haven\'t heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu.', 'google-analytics-dashboard-for-wp' ),
3002
 
3003
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:101
3004
  __( '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' ),
3005
 
3006
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:102
 
3007
  __( 'Color', 'google-analytics-dashboard-for-wp' ),
3008
 
3009
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:103
 
3010
  __( 'Size', 'google-analytics-dashboard-for-wp' ),
3011
 
3012
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:104
 
3013
  __( 'Title', 'google-analytics-dashboard-for-wp' ),
3014
 
3015
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:105
 
3016
  __( 'Label', 'google-analytics-dashboard-for-wp' ),
3017
 
3018
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:106
 
3019
  __( 'Background', 'google-analytics-dashboard-for-wp' ),
3020
 
3021
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:107
 
3022
  __( 'Border', 'google-analytics-dashboard-for-wp' ),
3023
 
3024
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:108
3025
  __( 'Icon', 'google-analytics-dashboard-for-wp' ),
3026
 
3027
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:60
3028
  __( 'Theme Preview', 'google-analytics-dashboard-for-wp' ),
3029
 
3030
  // Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:31
@@ -3107,7 +3146,8 @@ $generated_i18n_strings = array(
3107
  /* Translators: Make text green. */
3108
  __( 'Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s', 'google-analytics-dashboard-for-wp' ),
3109
 
3110
- // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputPdfReports-Lite.vue:16
 
3111
  __( 'Upgrade', 'google-analytics-dashboard-for-wp' ),
3112
 
3113
  // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputPdfReports-Lite.vue:17
@@ -3201,7 +3241,6 @@ $generated_i18n_strings = array(
3201
  __( 'There are two ways to manual include the widget in your posts.', 'google-analytics-dashboard-for-wp' ),
3202
 
3203
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:79
3204
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:105
3205
  __( 'Using the Gutenberg Block', 'google-analytics-dashboard-for-wp' ),
3206
 
3207
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:80
@@ -3217,25 +3256,21 @@ $generated_i18n_strings = array(
3217
  __( '%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg', 'google-analytics-dashboard-for-wp' ),
3218
 
3219
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:85
3220
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:113
3221
  __( '%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page.', 'google-analytics-dashboard-for-wp' ),
3222
 
3223
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:86
3224
  __( '%1$sStep 2%2$s - Search for “Inline Popular Posts by ExactMetrics”.', 'google-analytics-dashboard-for-wp' ),
3225
 
3226
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:87
3227
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:115
3228
  __( '%1$sStep 3%2$s - Style the widget using the Block Settings sidebar.', 'google-analytics-dashboard-for-wp' ),
3229
 
3230
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:89
3231
  __( 'Shortcode', 'google-analytics-dashboard-for-wp' ),
3232
 
3233
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:90
3234
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:123
3235
  __( 'Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin.', 'google-analytics-dashboard-for-wp' ),
3236
 
3237
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:91
3238
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:124
3239
  __( 'Copy Shortcode', 'google-analytics-dashboard-for-wp' ),
3240
 
3241
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:92
@@ -3308,6 +3343,8 @@ $generated_i18n_strings = array(
3308
  // Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputMedia-Lite.vue:26
3309
  __( 'Track how your users interact with videos on your website. Upgrade to ExactMetrics Pro.', 'google-analytics-dashboard-for-wp' ),
3310
 
 
 
3311
  // Reference: src/modules/reports/routes/exactmetrics-routes.js:95
3312
  __( '2021 Year in Review', 'google-analytics-dashboard-for-wp' ),
3313
 
@@ -3508,7 +3545,7 @@ $generated_i18n_strings = array(
3508
  // Reference: src/modules/growth-tools/components/GrowthNavigation.vue:21
3509
  __( 'Guides & Resources', 'google-analytics-dashboard-for-wp' ),
3510
 
3511
- // Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputMedia-Lite.vue:25
3512
  __( 'Media Tracking', 'google-analytics-dashboard-for-wp' ),
3513
 
3514
  // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:34
@@ -3643,6 +3680,31 @@ $generated_i18n_strings = array(
3643
  __( 'Warning: If you use a manual GA4 Measurement ID, you won\'t be able to use any of the reporting and some of the tracking features. Your UA code should look like G-XXXXXXXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-dashboard-for-wp' ),
3644
 
3645
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:96
3646
- __( 'Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are a combination of numbers and letters.', 'google-analytics-dashboard-for-wp' )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3647
  );
3648
  /* 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/plugins/exactmetrics-widget-helper-plugin.js:15
 
38
  __( 'Error', 'google-analytics-dashboard-for-wp' ),
39
 
40
  // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:16
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
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:186
54
  __( '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' ),
55
 
56
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:31
65
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:194
66
  __( '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' ),
67
 
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/plugins/exactmetrics-reports-helper-plugin.js:198
72
  __( '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' ),
73
 
74
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:201
75
  __( 'Unlock the Search Console Report and See How People Find Your Website', 'google-analytics-dashboard-for-wp' ),
76
 
77
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:202
78
  __( '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' ),
79
 
80
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:31
81
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:205
82
  __( 'Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time', 'google-analytics-dashboard-for-wp' ),
83
 
84
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:206
85
  __( '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' ),
86
 
87
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:209
88
  __( 'Unlock the Site Speed Report and Improve the Performance of Your Site', 'google-analytics-dashboard-for-wp' ),
89
 
90
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:210
91
  __( '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' ),
92
 
93
  // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:42
94
  __( 'Today', 'google-analytics-dashboard-for-wp' ),
95
 
 
96
  // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:48
97
  __( 'Yesterday', 'google-analytics-dashboard-for-wp' ),
98
 
122
  // Reference: src/modules/widget/components/WidgetReminder.vue:36
123
  __( 'See the full analytics report!', 'google-analytics-dashboard-for-wp' ),
124
 
 
125
  // Reference: src/modules/widget/widget.vue:25
126
  __( 'Overview Report', 'google-analytics-dashboard-for-wp' ),
127
 
153
  // Reference: src/plugins/exactmetrics-compatibility-plugin.js:59
154
  __( 'Learn more about updating WordPress', 'google-analytics-dashboard-for-wp' ),
155
 
156
+ // Reference: src/modules/settings/routes/site.js:125
157
  __( 'About Us', 'google-analytics-dashboard-for-wp' ),
158
 
159
+ // Reference: src/modules/settings/routes/site.js:133
160
  __( 'Getting Started', 'google-analytics-dashboard-for-wp' ),
161
 
162
+ // Reference: src/modules/settings/routes/site.js:142
 
163
  __( 'Lite vs Pro', 'google-analytics-dashboard-for-wp' ),
164
 
165
  // Reference: src/modules/settings/exactmetrics-site.vue:77
179
  // Reference: src/modules/reports/api/index.js:28
180
  __( 'Error loading report data', 'google-analytics-dashboard-for-wp' ),
181
 
182
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:102
183
+ /* Translators: Makes text bold. */
184
  __( '%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' ),
185
 
186
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:107
187
+ /* Translators: Makes text bold. */
188
  __( '%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights.', 'google-analytics-dashboard-for-wp' ),
189
 
190
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:112
191
+ /* Translators: Makes text bold. */
192
  __( '%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' ),
193
 
194
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:117
195
  /* Translators: Makes text bold. */
196
  __( '%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress.', 'google-analytics-dashboard-for-wp' ),
197
 
198
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:122
199
+ /* Translators: Makes text bold. */
200
  __( '%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' ),
201
 
202
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:127
203
+ /* Translators: Makes text bold. */
204
  __( '%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' ),
205
 
206
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:132
207
+ /* Translators: Makes text bold. */
208
  __( '%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically.', 'google-analytics-dashboard-for-wp' ),
209
 
210
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:137
211
  /* Translators: Makes text bold. */
212
  __( '%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' ),
213
 
214
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:142
215
+ /* Translators: Adds link to the features page. */
216
  __( '%1$sSee All Features%2$s', 'google-analytics-dashboard-for-wp' ),
217
 
218
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:145
219
  __( 'Pro Plan', 'google-analytics-dashboard-for-wp' ),
220
 
221
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:146
222
  __( 'per year', 'google-analytics-dashboard-for-wp' ),
223
 
224
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:147
 
225
  __( 'Upgrade Now', 'google-analytics-dashboard-for-wp' ),
226
 
227
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:148
228
  __( 'Upgrade to ExactMetrics Pro Now', 'google-analytics-dashboard-for-wp' ),
229
 
230
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:153
231
  __( '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' ),
232
 
233
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:154
234
  __( 'Daniel Monaghan - Experienced', 'google-analytics-dashboard-for-wp' ),
235
 
236
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:158
237
  __( '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' ),
238
 
239
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:159
240
  __( 'Naomi Spirit - From This Day', 'google-analytics-dashboard-for-wp' ),
241
 
242
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:163
243
  __( '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' ),
244
 
245
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:164
246
  __( 'Julie Dupuis - Faraway Land Travel', 'google-analytics-dashboard-for-wp' ),
247
 
248
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:167
249
  __( 'Guides and Documentation:', 'google-analytics-dashboard-for-wp' ),
250
 
251
+ // Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewUpsell-Lite.vue:35
252
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:33
253
+ // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:83
254
+ // Reference: src/modules/settings/components/input/tab-engagement/exactmetrics-SettingsInputEUCompliance-Lite.vue:24
255
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:54
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/exactmetrics-welcome-Lite.vue:170
260
  __( 'eCommerce Tracking', 'google-analytics-dashboard-for-wp' ),
261
 
 
262
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:49
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/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:47
282
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:179
283
  __( 'Google Optimize', 'google-analytics-dashboard-for-wp' ),
284
 
285
+ // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:45
286
  // Reference: src/modules/reports/routes/exactmetrics-routes.js:49
287
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:180
288
  __( 'Search Console', 'google-analytics-dashboard-for-wp' ),
289
 
290
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:181
291
  __( 'Custom Date Ranges', 'google-analytics-dashboard-for-wp' ),
292
 
293
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:84
296
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:85
297
  __( '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' ),
298
 
299
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:86
300
  __( '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' ),
301
 
302
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:87
303
  __( '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' ),
304
 
305
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:88
306
  __( 'Launch the wizard!', 'google-analytics-dashboard-for-wp' ),
307
 
308
  // Reference: src/components/ContentIntroFullWidth.vue:46
309
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:90
310
  __( 'Welcome to', 'google-analytics-dashboard-for-wp' ),
311
 
312
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:92
313
  /* Translators: Adds a line break. */
314
  __( 'Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin', 'google-analytics-dashboard-for-wp' ),
315
 
316
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:94
317
+ /* Translators: Makes text bold. */
318
  __( '%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' ),
319
 
320
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:96
321
  __( 'ExactMetrics Features & Addons', 'google-analytics-dashboard-for-wp' ),
322
 
323
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:97
324
  __( 'Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market.', 'google-analytics-dashboard-for-wp' ),
325
 
326
  // Reference: src/modules/widget/components/WidgetFooter.vue:19
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
 
343
  // Reference: src/modules/reports/components/ReportReAuth.vue:20
344
  __( 'There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating.', 'google-analytics-dashboard-for-wp' ),
345
 
346
+ // Reference: src/modules/reports/components/ReportReAuth.vue:21
347
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:64
348
  __( 'Reconnect ExactMetrics', 'google-analytics-dashboard-for-wp' ),
349
 
350
+ // Reference: src/modules/reports/components/ReportReAuth.vue:30
351
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:162
352
  __( 'Re-Authenticating', 'google-analytics-dashboard-for-wp' ),
353
 
354
+ // Reference: src/modules/reports/components/ReportReAuth.vue:47
355
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:78
356
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:180
357
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:319
358
  __( 'Ok', 'google-analytics-dashboard-for-wp' ),
359
 
360
  // Reference: src/modules/addons/components/AddonsNavigation.vue:18
369
  // Reference: src/modules/wizard-onboarding/components/TheWizardHeader.vue:24
370
  __( 'Exit Setup', 'google-analytics-dashboard-for-wp' ),
371
 
372
+ // Reference: src/modules/widget/store/index.js:103
373
  __( 'Time to Purchase', 'google-analytics-dashboard-for-wp' ),
374
 
375
  // Reference: src/modules/widget/store/index.js:104
376
  __( 'This list shows how many days from first visit it took users to purchase products from your site.', 'google-analytics-dashboard-for-wp' ),
377
 
378
+ // Reference: src/modules/widget/store/index.js:111
379
  __( 'Sessions to Purchase', 'google-analytics-dashboard-for-wp' ),
380
 
381
  // Reference: src/modules/widget/store/index.js:112
441
  // Reference: src/modules/widget/store/index.js:71
442
  __( 'This list shows the download links your visitors clicked the most.', 'google-analytics-dashboard-for-wp' ),
443
 
444
+ // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:42
445
  // Reference: src/modules/reports/routes/exactmetrics-routes.js:25
446
  __( 'Overview', 'google-analytics-dashboard-for-wp' ),
447
 
473
  // Reference: src/modules/reports/components/ReportNoAuth.vue:26
474
  __( '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' ),
475
 
476
+ // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:88
477
  __( 'Launch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
478
 
479
  // Reference: src/modules/reports/components/ReportNoAuth.vue:28
483
  /* Translators: Adds a link to the license renewal. */
484
  __( 'Your license key for ExactMetrics has expired. %1$sPlease click here to renew your license key.%2$s', 'google-analytics-dashboard-for-wp' ),
485
 
486
+ // Reference: src/modules/license/store/actions.js:81
487
  __( 'Your license key for ExactMetrics has been disabled. Please use a different key.', 'google-analytics-dashboard-for-wp' ),
488
 
489
+ // Reference: src/modules/license/store/actions.js:91
490
  __( '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.', 'google-analytics-dashboard-for-wp' ),
491
 
492
  // Reference: src/components/TheQuickLinks.vue:31
504
  // Reference: src/components/TheQuickLinks.vue:78
505
  __( 'Upgrade to Pro &#187;', 'google-analytics-dashboard-for-wp' ),
506
 
507
+ // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:43
508
  // Reference: src/modules/reports/routes/exactmetrics-routes.js:33
509
  __( 'Publishers', 'google-analytics-dashboard-for-wp' ),
510
 
511
+ // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:44
512
  // Reference: src/modules/reports/routes/exactmetrics-routes.js:41
513
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:69
514
  __( 'eCommerce', 'google-analytics-dashboard-for-wp' ),
515
 
516
  // Reference: src/modules/reports/routes/exactmetrics-routes.js:57
517
  __( 'Dimensions Report', 'google-analytics-dashboard-for-wp' ),
518
 
519
+ // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:47
520
  // Reference: src/modules/reports/routes/exactmetrics-routes.js:65
521
  __( 'Forms', 'google-analytics-dashboard-for-wp' ),
522
 
523
+ // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:48
524
  // Reference: src/modules/reports/routes/exactmetrics-routes.js:73
525
  __( 'Real-Time', 'google-analytics-dashboard-for-wp' ),
526
 
537
  // Reference: src/modules/settings/routes/site.js:111
538
  __( 'PrettyLinks Integration', 'google-analytics-dashboard-for-wp' ),
539
 
540
+ // Reference: src/modules/settings/routes/site.js:163
541
  __( 'Inline Popular Posts', 'google-analytics-dashboard-for-wp' ),
542
 
543
+ // Reference: src/modules/settings/routes/site.js:171
544
  __( 'Popular Posts Widget', 'google-analytics-dashboard-for-wp' ),
545
 
546
+ // Reference: src/modules/settings/routes/site.js:180
547
  __( 'Popular Products', 'google-analytics-dashboard-for-wp' ),
548
 
549
  // Reference: src/modules/settings/routes/site.js:189
555
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:67
556
  __( 'General', 'google-analytics-dashboard-for-wp' ),
557
 
558
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:68
559
  __( 'Engagement', 'google-analytics-dashboard-for-wp' ),
560
 
561
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:70
562
  __( 'Publisher', 'google-analytics-dashboard-for-wp' ),
563
 
564
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:44
565
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:71
566
  __( 'Conversions', 'google-analytics-dashboard-for-wp' ),
567
 
568
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:72
587
  /* Translators: Adds link to activate/install plugin and documentation. */
588
  __( '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', 'google-analytics-dashboard-for-wp' ),
589
 
590
+ // Reference: src/modules/reports/store/actions.js:149
591
  __( 'Installing Addon', 'google-analytics-dashboard-for-wp' ),
592
 
593
+ // Reference: src/modules/reports/store/actions.js:172
594
  __( 'Activating Addon', 'google-analytics-dashboard-for-wp' ),
595
 
596
+ // Reference: src/modules/reports/store/actions.js:187
597
  __( 'Addon Activated', 'google-analytics-dashboard-for-wp' ),
598
 
599
+ // Reference: src/modules/reports/store/actions.js:188
600
  __( 'Loading report data', 'google-analytics-dashboard-for-wp' ),
601
 
602
+ // Reference: src/modules/reports/store/actions.js:205
603
  __( 'Please activate manually', 'google-analytics-dashboard-for-wp' ),
604
 
605
+ // Reference: src/modules/reports/store/actions.js:208
606
  /* Translators: Adds the error status and status text. */
607
  __( 'Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
608
 
609
+ // Reference: src/modules/reports/store/actions.js:214
610
  __( 'Error Activating Addon', 'google-analytics-dashboard-for-wp' ),
611
 
612
+ // Reference: src/modules/reports/store/actions.js:220
613
  __( 'View Addons', 'google-analytics-dashboard-for-wp' ),
614
 
615
+ // Reference: src/modules/reports/store/actions.js:221
616
  // Reference: src/modules/seo/components/aioseo.vue:246
617
+ // Reference: src/modules/seo/components/yoast.vue:237
618
  __( 'Dismiss', 'google-analytics-dashboard-for-wp' ),
619
 
620
+ // Reference: src/modules/reports/store/actions.js:228
621
  __( 'Redirecting', 'google-analytics-dashboard-for-wp' ),
622
 
623
+ // Reference: src/modules/reports/store/actions.js:229
624
  __( 'Please wait', 'google-analytics-dashboard-for-wp' ),
625
 
626
+ // Reference: src/modules/reports/store/actions.js:56
627
  __( 'activate', 'google-analytics-dashboard-for-wp' ),
628
 
629
+ // Reference: src/modules/reports/store/actions.js:56
630
  __( 'install', 'google-analytics-dashboard-for-wp' ),
631
 
632
+ // Reference: src/modules/reports/store/actions.js:60
633
  __( 'Visit addons page', 'google-analytics-dashboard-for-wp' ),
634
 
635
  // Reference: src/modules/reports/store/actions.js:68
658
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:33
659
  __( 'Let\'s get you set up.', 'google-analytics-dashboard-for-wp' ),
660
 
661
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:34
662
  __( 'Save and Continue', 'google-analytics-dashboard-for-wp' ),
663
 
664
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:35
674
  /* Translators: Make text bold. */
675
  __( 'Publisher %1$s(Blog)%2$s', 'google-analytics-dashboard-for-wp' ),
676
 
677
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:49
678
  __( 'Ecommerce', 'google-analytics-dashboard-for-wp' ),
679
 
680
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:61
683
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:62
684
  __( 'ExactMetrics connects Google Analytics to WordPress and shows you stats that matter.', 'google-analytics-dashboard-for-wp' ),
685
 
686
+ // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:73
 
687
  __( 'Connect Google Analytics + WordPress', 'google-analytics-dashboard-for-wp' ),
688
 
689
+ // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:74
 
690
  __( 'You will be taken to the ExactMetrics website where you\'ll need to connect your Analytics account.', 'google-analytics-dashboard-for-wp' ),
691
 
692
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:65
740
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:57
741
  __( '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' ),
742
 
743
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:84
744
  __( 'Enhanced Link Attribution', 'google-analytics-dashboard-for-wp' ),
745
 
746
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:59
767
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:66
768
  __( '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' ),
769
 
770
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:71
771
  /* Translators: Example path (/go/). */
772
  __( 'Path (example: %s)', 'google-analytics-dashboard-for-wp' ),
773
 
774
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:73
775
  __( 'Path has to start with a / and have no spaces', 'google-analytics-dashboard-for-wp' ),
776
 
777
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:78
778
  /* Translators: Example label (aff). */
779
  __( 'Label (example: %s)', 'google-analytics-dashboard-for-wp' ),
780
 
781
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:80
782
  __( 'Label can\'t contain any spaces', 'google-analytics-dashboard-for-wp' ),
783
 
784
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:83
821
  // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:50
822
  __( 'Site Speed', 'google-analytics-dashboard-for-wp' ),
823
 
824
+ // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:69
825
  // Reference: src/modules/wizard-onboarding/components/inputs/exactmetrics-OnboardingLicense-Lite.vue:27
826
  __( 'License Key', 'google-analytics-dashboard-for-wp' ),
827
 
828
+ // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:71
829
  /* Translators: Add link to retrieve license key from account. */
830
  __( 'Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s.', 'google-analytics-dashboard-for-wp' ),
831
 
832
+ // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:72
833
  __( 'Google Authentication', 'google-analytics-dashboard-for-wp' ),
834
 
835
+ // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:75
836
  __( 'Miscellaneous', 'google-analytics-dashboard-for-wp' ),
837
 
838
+ // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:77
839
  __( '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' ),
840
 
841
+ // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:78
842
  __( 'Hide Announcements', 'google-analytics-dashboard-for-wp' ),
843
 
844
+ // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:79
845
  __( 'You\'re using ExactMetrics Lite – no license needed. Enjoy!', 'google-analytics-dashboard-for-wp' ),
846
 
847
+ // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:81
848
  /* Translators: Adds link to upgrade. */
849
  __( 'To unlock more features consider %1$supgrading to PRO%2$s.', 'google-analytics-dashboard-for-wp' ),
850
 
851
+ // Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewUpsell-Lite.vue:34
852
+ // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:82
853
  __( 'Receive 50% off automatically applied at the checkout!', 'google-analytics-dashboard-for-wp' ),
854
 
855
+ // Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewUpsell-Lite.vue:37
856
+ // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:84
857
  __( 'See all features', 'google-analytics-dashboard-for-wp' ),
858
 
859
+ // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:85
860
  __( 'Setup Wizard', 'google-analytics-dashboard-for-wp' ),
861
 
862
+ // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:86
863
  __( 'Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks).', 'google-analytics-dashboard-for-wp' ),
864
 
865
+ // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:87
866
  __( 'Relaunch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
867
 
868
  // Reference: src/modules/addons/exactmetrics-addons-Lite.vue:59
965
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:120
966
  __( 'Overview Reports for the last 30 days.', 'google-analytics-dashboard-for-wp' ),
967
 
968
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:131
969
  __( 'Advanced Reports', 'google-analytics-dashboard-for-wp' ),
970
 
971
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:122
996
  __( 'View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more', 'google-analytics-dashboard-for-wp' ),
997
 
998
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:145
 
999
  __( 'Headline Analyzer', 'google-analytics-dashboard-for-wp' ),
1000
 
1001
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:79
1002
  __( 'Email Summaries', 'google-analytics-dashboard-for-wp' ),
1003
 
1004
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:155
1056
  __( 'Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout.', 'google-analytics-dashboard-for-wp' ),
1057
 
1058
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:67
 
1059
  __( 'Upgrade to Pro', 'google-analytics-dashboard-for-wp' ),
1060
 
1061
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:70
1116
  /* Translators: Error status and error text. */
1117
  __( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1118
 
1119
+ // Reference: src/modules/license/api/index.js:176
1120
+ // Reference: src/modules/settings/api/index.js:27
1121
  __( 'You appear to be offline.', 'google-analytics-dashboard-for-wp' ),
1122
 
1123
+ // Reference: src/modules/popular-posts/api/index.js:43
1124
+ // Reference: src/modules/settings/api/index.js:77
1125
  /* Translators: Error status and error text. */
1126
  __( 'Can\'t save settings. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1127
 
1128
+ // Reference: src/modules/popular-posts/api/index.js:47
1129
  // Reference: src/modules/settings/api/index.js:81
1130
  __( 'Network error encountered. Settings not saved.', 'google-analytics-dashboard-for-wp' ),
1131
 
1219
  // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:99
1220
  __( 'Level-up Your eCommerce store with %1$sExactMetrics + WooCommerce!%1$s', 'google-analytics-dashboard-for-wp' ),
1221
 
1222
+ // Reference: src/modules/license/api/index.js:145
1223
  /* Translators: Error status and error text. */
1224
  __( 'Can\'t deactivate the license. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1225
 
1226
+ // Reference: src/modules/license/api/index.js:172
1227
  /* Translators: Error status and error text. */
1228
  __( 'Can\'t upgrade to PRO please try again. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1229
 
1284
  // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:64
1285
  __( 'Remove row', 'google-analytics-dashboard-for-wp' ),
1286
 
1287
+ // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:81
1288
  __( 'Sessions', 'google-analytics-dashboard-for-wp' ),
1289
 
1290
  // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:83
1291
  /* Translators: Line break. */
1292
  __( 'Unique %s Sessions', 'google-analytics-dashboard-for-wp' ),
1293
 
1294
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:297
1295
+ // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:84
1296
  __( 'Pageviews', 'google-analytics-dashboard-for-wp' ),
1297
 
1298
  // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:86
1299
  /* Translators: Line break. */
1300
  __( 'Unique %s Pageviews', 'google-analytics-dashboard-for-wp' ),
1301
 
1302
+ // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:87
1303
  __( 'A session is the browsing session of a single user to your site.', 'google-analytics-dashboard-for-wp' ),
1304
 
1305
+ // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:88
1306
  __( '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' ),
1307
 
1308
+ // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:89
1309
  __( 'Total duration of all sessions (in seconds) / number of sessions.', 'google-analytics-dashboard-for-wp' ),
1310
 
1311
  // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:90
1312
  __( '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' ),
1313
 
1314
+ // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:91
1315
  __( 'The number of distinct tracked users', 'google-analytics-dashboard-for-wp' ),
1316
 
1317
+ // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:92
1318
  __( 'Avg. Session Duration', 'google-analytics-dashboard-for-wp' ),
1319
 
1320
+ // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:93
1321
  __( 'Bounce Rate', 'google-analytics-dashboard-for-wp' ),
1322
 
1323
+ // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:94
1324
  __( 'Total Users', 'google-analytics-dashboard-for-wp' ),
1325
 
1326
  // Reference: src/modules/settings/components/input/SettingsInputSelect.vue:62
1359
  /* Translators: add link to blog. */
1360
  __( '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' ),
1361
 
1362
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:35
 
1363
  __( 'Here\'s what you get:', 'google-analytics-dashboard-for-wp' ),
1364
 
1365
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:41
1602
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:272
1603
  __( 'A Tip for 2021', 'google-analytics-dashboard-for-wp' ),
1604
 
1605
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:273
1606
  __( 'Demographics', 'google-analytics-dashboard-for-wp' ),
1607
 
1608
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:274
1629
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:281
1630
  __( 'Average Age', 'google-analytics-dashboard-for-wp' ),
1631
 
1632
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:282
1633
  __( 'Behavior', 'google-analytics-dashboard-for-wp' ),
1634
 
1635
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:283
1746
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:324
1747
  __( 'Upgrade to ExactMetrics Pro to Unlock Additional Actionable Insights', 'google-analytics-dashboard-for-wp' ),
1748
 
1749
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:325
1750
  __( 'Upgrade to ExactMetrics Pro', 'google-analytics-dashboard-for-wp' ),
1751
 
1752
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:328
1823
  /* Translators: Number of visitors and device percentage. */
1824
  __( '%1$s&#37 of your visitors were on a %2$s device.', 'google-analytics-dashboard-for-wp' ),
1825
 
1826
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:502
1827
  __( 'Desktop', 'google-analytics-dashboard-for-wp' ),
1828
 
1829
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:503
1830
  __( 'Tablet', 'google-analytics-dashboard-for-wp' ),
1831
 
1832
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:504
1833
  __( 'Mobile', 'google-analytics-dashboard-for-wp' ),
1834
 
1835
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:111
1943
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:69
1944
  __( 'Skip and Keep Connection', 'google-analytics-dashboard-for-wp' ),
1945
 
1946
+ // Reference: src/modules/reports/components/ReportInfobox.vue:41
1947
+ /* Translators: Number of days. */
1948
  __( 'vs. Previous Day', 'google-analytics-dashboard-for-wp' ),
1949
 
1950
+ // Reference: src/modules/reports/components/ReportInfobox.vue:58
1951
  __( 'No change', 'google-analytics-dashboard-for-wp' ),
1952
 
1953
  // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:100
2023
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:114
2024
  __( 'Choose where in the post body the widget will be placed.', 'google-analytics-dashboard-for-wp' ),
2025
 
2026
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:136
2027
  __( 'Customize Design', 'google-analytics-dashboard-for-wp' ),
2028
 
2029
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:123
2123
  /* Translators: Error status and error text. */
2124
  __( 'Can\'t install WPForms. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
2125
 
2126
+ // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:129
2127
  __( 'Network Active', 'google-analytics-dashboard-for-wp' ),
2128
 
2129
+ // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:129
2130
  __( 'Active', 'google-analytics-dashboard-for-wp' ),
2131
 
2132
+ // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:131
2133
  __( 'Inactive', 'google-analytics-dashboard-for-wp' ),
2134
 
2135
+ // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:59
2136
  /* Translators: Placeholder for the addon status (installed, active, etc). */
2137
  __( 'Status: %s', 'google-analytics-dashboard-for-wp' ),
2138
 
2139
+ // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:123
2140
  __( 'Not Installed', 'google-analytics-dashboard-for-wp' ),
2141
 
2142
  // Reference: src/modules/wizard-onboarding/components/inputs/exactmetrics-OnboardingLicense-Lite.vue:29
2161
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:35
2162
  __( 'Unlock PRO Features Now', 'google-analytics-dashboard-for-wp' ),
2163
 
2164
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:36
2165
  __( 'Paste your license key here', 'google-analytics-dashboard-for-wp' ),
2166
 
2167
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:37
2168
  __( 'Verify', 'google-analytics-dashboard-for-wp' ),
2169
 
2170
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:39
2171
  /* Translators: Add link to retrieve license from account area. */
2172
  __( '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' ),
2173
 
2174
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:69
2175
  __( 'There was an error unlocking ExactMetrics PRO please try again or install manually.', 'google-analytics-dashboard-for-wp' ),
2176
 
2177
  // Reference: src/modules/seo/components/yoast.vue:137
2181
  __( 'Automatically migrate all of your SEO settings with just 1 click!', 'google-analytics-dashboard-for-wp' ),
2182
 
2183
  // Reference: src/modules/seo/components/aioseo.vue:155
2184
+ // Reference: src/modules/seo/components/yoast.vue:139
2185
  __( '1,938', 'google-analytics-dashboard-for-wp' ),
2186
 
2187
  // Reference: src/modules/seo/components/aioseo.vue:156
2188
+ // Reference: src/modules/seo/components/yoast.vue:140
2189
  __( '2+ Million Active Installs', 'google-analytics-dashboard-for-wp' ),
2190
 
2191
  // Reference: src/modules/seo/components/yoast.vue:143
2195
  __( 'Set up the proper SEO foundations in less than 10 minutes.', 'google-analytics-dashboard-for-wp' ),
2196
 
2197
  // Reference: src/modules/seo/components/aioseo.vue:165
2198
+ // Reference: src/modules/seo/components/yoast.vue:145
2199
  __( 'SEO Audit Checklist', 'google-analytics-dashboard-for-wp' ),
2200
 
2201
  // Reference: src/modules/seo/components/aioseo.vue:166
2202
+ // Reference: src/modules/seo/components/yoast.vue:146
2203
  __( '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' ),
2204
 
2205
  // Reference: src/modules/seo/components/yoast.vue:147
2212
  __( 'Get AIOSEO for WordPress', 'google-analytics-dashboard-for-wp' ),
2213
 
2214
  // Reference: src/modules/seo/components/aioseo.vue:180
2215
+ // Reference: src/modules/seo/components/yoast.vue:152
2216
  __( 'Get the #1 Most Powerful WordPress SEO Plugin Today', 'google-analytics-dashboard-for-wp' ),
2217
 
2218
  // Reference: src/modules/seo/components/aioseo.vue:181
2219
+ // Reference: src/modules/seo/components/yoast.vue:153
2220
  __( 'Try it out today, for free.', 'google-analytics-dashboard-for-wp' ),
2221
 
2222
  // Reference: src/modules/seo/components/aioseo.vue:184
2223
+ // Reference: src/modules/seo/components/yoast.vue:156
2224
  __( 'Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings.', 'google-analytics-dashboard-for-wp' ),
2225
 
2226
  // Reference: src/modules/seo/components/aioseo.vue:185
2227
+ // Reference: src/modules/seo/components/yoast.vue:157
2228
  __( 'Activate and Install the Plugin with just one click!', 'google-analytics-dashboard-for-wp' ),
2229
 
2230
  // Reference: src/modules/seo/components/yoast.vue:222
2231
  __( 'Installing AIOSEO...', 'google-analytics-dashboard-for-wp' ),
2232
 
2233
  // Reference: src/modules/seo/components/aioseo.vue:240
2234
+ // Reference: src/modules/seo/components/yoast.vue:231
2235
  __( 'Congrats! All-in-One SEO Installed.', 'google-analytics-dashboard-for-wp' ),
2236
 
2237
  // Reference: src/modules/seo/components/yoast.vue:248
2238
  __( 'Switch to AIOSEO', 'google-analytics-dashboard-for-wp' ),
2239
 
2240
  // Reference: src/modules/seo/components/aioseo.vue:261
2241
+ // Reference: src/modules/seo/components/yoast.vue:252
2242
  __( 'Installation Failed. Please refresh and try again.', 'google-analytics-dashboard-for-wp' ),
2243
 
2244
  // Reference: src/modules/seo/components/aioseo.vue:268
2245
+ // Reference: src/modules/seo/components/yoast.vue:259
2246
  __( 'Activating AIOSEO...', 'google-analytics-dashboard-for-wp' ),
2247
 
2248
  // Reference: src/modules/seo/components/aioseo.vue:275
2249
+ // Reference: src/modules/seo/components/yoast.vue:266
2250
  __( 'Activate AIOSEO', 'google-analytics-dashboard-for-wp' ),
2251
 
2252
  // Reference: src/modules/seo/components/aioseo.vue:279
2253
+ // Reference: src/modules/seo/components/yoast.vue:270
2254
  __( 'Activation Failed. Please refresh and try again.', 'google-analytics-dashboard-for-wp' ),
2255
 
2256
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:45
2266
  __( 'Add Custom Dimensions and track who\'s the most popular author on your site, which post types get the most traffic, and more', 'google-analytics-dashboard-for-wp' ),
2267
 
2268
  // Reference: src/modules/reports/components/exactmetrics-ReportsPagination.vue:25
2269
+ // Reference: src/modules/reports/components/reports-year-in-review/ReportYearInReviewListBox.vue:38
2270
  __( 'Show', 'google-analytics-dashboard-for-wp' ),
2271
 
2272
  // Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:101
2330
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:90
2331
  __( 'Reports', 'google-analytics-dashboard-for-wp' ),
2332
 
2333
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:91
2334
  __( 'Automatic Updates', 'google-analytics-dashboard-for-wp' ),
2335
 
2336
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:105
2588
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:56
2589
  __( 'See Your Conversion Rate to Improve Funnel', 'google-analytics-dashboard-for-wp' ),
2590
 
2591
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:43
2592
  __( 'See The Number of Transactions and Make Data-Driven Decisions', 'google-analytics-dashboard-for-wp' ),
2593
 
2594
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:47
2595
  __( 'See The Total Revenue to Track Growth', 'google-analytics-dashboard-for-wp' ),
2596
 
2597
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:51
2598
  __( 'See Average Order Value to Find Offer Opportunities', 'google-analytics-dashboard-for-wp' ),
2599
 
2600
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:55
2601
  __( 'See Your Top Products to See Individual Performance', 'google-analytics-dashboard-for-wp' ),
2602
 
2603
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:76
2604
  __( 'See your Top Conversion Sources and Focus on what\'s Working', 'google-analytics-dashboard-for-wp' ),
2605
 
2606
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:63
2607
  __( 'See The Time it Takes for Customers to Purchase', 'google-analytics-dashboard-for-wp' ),
2608
 
2609
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:67
2610
  __( 'See How Many Sessions are Needed for a Purchase', 'google-analytics-dashboard-for-wp' ),
2611
 
2612
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:88
2821
  // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:45
2822
  __( 'Better Support', 'google-analytics-dashboard-for-wp' ),
2823
 
2824
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:47
2825
  __( 'Continue', 'google-analytics-dashboard-for-wp' ),
2826
 
2827
  // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:48
2964
  __( 'Close', 'google-analytics-dashboard-for-wp' ),
2965
 
2966
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:28
 
2967
  __( 'Add Top 5 Posts from Google Analytics', 'google-analytics-dashboard-for-wp' ),
2968
 
2969
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:49
2977
  __( 'Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics.', 'google-analytics-dashboard-for-wp' ),
2978
 
2979
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:30
 
2980
  __( 'Automated + Curated', 'google-analytics-dashboard-for-wp' ),
2981
 
2982
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:55
3030
  // Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:92
3031
  __( 'Can\'t load posts.', 'google-analytics-dashboard-for-wp' ),
3032
 
3033
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:47
3034
  __( 'Sartorial taxidermy venmo you probably haven\'t heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu.', 'google-analytics-dashboard-for-wp' ),
3035
 
3036
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:48
3037
  __( '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' ),
3038
 
3039
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:49
3040
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:138
3041
  __( 'Color', 'google-analytics-dashboard-for-wp' ),
3042
 
3043
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:50
3044
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:139
3045
  __( 'Size', 'google-analytics-dashboard-for-wp' ),
3046
 
3047
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:51
3048
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:137
3049
  __( 'Title', 'google-analytics-dashboard-for-wp' ),
3050
 
3051
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:52
3052
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:142
3053
  __( 'Label', 'google-analytics-dashboard-for-wp' ),
3054
 
3055
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:53
3056
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:143
3057
  __( 'Background', 'google-analytics-dashboard-for-wp' ),
3058
 
3059
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:54
3060
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:140
3061
  __( 'Border', 'google-analytics-dashboard-for-wp' ),
3062
 
3063
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:55
3064
  __( 'Icon', 'google-analytics-dashboard-for-wp' ),
3065
 
3066
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:46
3067
  __( 'Theme Preview', 'google-analytics-dashboard-for-wp' ),
3068
 
3069
  // Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:31
3146
  /* Translators: Make text green. */
3147
  __( 'Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s', 'google-analytics-dashboard-for-wp' ),
3148
 
3149
+ // Reference: src/modules/popular-posts/components/PopularPostsUpgradeOverlay.vue:24
3150
+ // Reference: src/modules/settings/components/SettingsAddonUpgrade.vue:37
3151
  __( 'Upgrade', 'google-analytics-dashboard-for-wp' ),
3152
 
3153
  // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputPdfReports-Lite.vue:17
3241
  __( 'There are two ways to manual include the widget in your posts.', 'google-analytics-dashboard-for-wp' ),
3242
 
3243
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:79
 
3244
  __( 'Using the Gutenberg Block', 'google-analytics-dashboard-for-wp' ),
3245
 
3246
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:80
3256
  __( '%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg', 'google-analytics-dashboard-for-wp' ),
3257
 
3258
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:85
 
3259
  __( '%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page.', 'google-analytics-dashboard-for-wp' ),
3260
 
3261
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:86
3262
  __( '%1$sStep 2%2$s - Search for “Inline Popular Posts by ExactMetrics”.', 'google-analytics-dashboard-for-wp' ),
3263
 
3264
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:87
 
3265
  __( '%1$sStep 3%2$s - Style the widget using the Block Settings sidebar.', 'google-analytics-dashboard-for-wp' ),
3266
 
3267
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:89
3268
  __( 'Shortcode', 'google-analytics-dashboard-for-wp' ),
3269
 
3270
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:90
 
3271
  __( 'Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin.', 'google-analytics-dashboard-for-wp' ),
3272
 
3273
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:91
 
3274
  __( 'Copy Shortcode', 'google-analytics-dashboard-for-wp' ),
3275
 
3276
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:92
3343
  // Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputMedia-Lite.vue:26
3344
  __( 'Track how your users interact with videos on your website. Upgrade to ExactMetrics Pro.', 'google-analytics-dashboard-for-wp' ),
3345
 
3346
+ // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:49
3347
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:260
3348
  // Reference: src/modules/reports/routes/exactmetrics-routes.js:95
3349
  __( '2021 Year in Review', 'google-analytics-dashboard-for-wp' ),
3350
 
3545
  // Reference: src/modules/growth-tools/components/GrowthNavigation.vue:21
3546
  __( 'Guides & Resources', 'google-analytics-dashboard-for-wp' ),
3547
 
3548
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:175
3549
  __( 'Media Tracking', 'google-analytics-dashboard-for-wp' ),
3550
 
3551
  // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:34
3680
  __( 'Warning: If you use a manual GA4 Measurement ID, you won\'t be able to use any of the reporting and some of the tracking features. Your UA code should look like G-XXXXXXXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-dashboard-for-wp' ),
3681
 
3682
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:96
3683
+ __( 'Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are a combination of numbers and letters.', 'google-analytics-dashboard-for-wp' ),
3684
+
3685
+ // Reference: src/modules/widget/components/WidgetReminder.vue:75
3686
+ __( 'Your ExactMetrics license key has expired.', 'google-analytics-dashboard-for-wp' ),
3687
+
3688
+ // Reference: src/modules/widget/components/WidgetReminder.vue:76
3689
+ __( 'Renew today to ensure Google Analytics continues to track properly.', 'google-analytics-dashboard-for-wp' ),
3690
+
3691
+ // Reference: src/modules/widget/components/WidgetReminder.vue:78
3692
+ __( 'Click here.', 'google-analytics-dashboard-for-wp' ),
3693
+
3694
+ // Reference: src/modules/reports/components/ReportNoAuth.vue:26
3695
+ __( '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' ),
3696
+
3697
+ // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:77
3698
+ __( 'License Expired', 'google-analytics-dashboard-for-wp' ),
3699
+
3700
+ // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:89
3701
+ __( 'Expired', 'google-analytics-dashboard-for-wp' ),
3702
+
3703
+ // Reference: src/modules/license/store/actions.js:65
3704
+ /* Translators: Adds a link to the license renewal. */
3705
+ __( 'To ensure tracking works properly, reactivate your license', 'google-analytics-dashboard-for-wp' ),
3706
+
3707
+ // Reference: src/modules/license/store/actions.js:68
3708
+ __( 'Reactivate License', 'google-analytics-dashboard-for-wp' )
3709
  );
3710
  /* THIS IS THE END OF THE GENERATED FILE */
lite/assets/vue/css/chunk-common.css CHANGED
@@ -1 +1 @@
1
- @import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap);strong[data-v-a9c27d52]{display:block}[data-v-6038a3d0]{will-change:height;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.expand-enter-active,.expand-leave-active{-webkit-transition:height .5s ease-in-out;transition:height .5s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.exactmetrics-dark[data-v-54110c18]{display:block}.exactmetrics-reset-default[data-v-54110c18]{margin-left:5px}.exactmetrics-dark[data-v-7262cc05]{display:block}.exactmetrics-admin-page .exactmetrics-floating-bar{background:#6528f5;color:#fff;font-size:16px;line-height:140%;padding:16px 32px 16px 58px;text-align:left;position:relative;margin:-20px -20px 20px}.exactmetrics-admin-page .exactmetrics-floating-bar:before{content:"";width:16px;height:16px;background:url(../img/icon-info.svg) no-repeat 50%;position:absolute;left:32px;top:20px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-floating-bar{margin-top:-10px;padding-right:20px;padding-left:20px}}.exactmetrics-admin-page .exactmetrics-floating-bar>span>span{font-weight:700}.exactmetrics-admin-page .exactmetrics-floating-bar a{text-decoration:underline;color:#fff;font-weight:700}.exactmetrics-admin-page .exactmetrics-floating-bar a:focus,.exactmetrics-admin-page .exactmetrics-floating-bar a:hover{color:#fff;text-decoration:none}.exactmetrics-admin-page .exactmetrics-floating-bar .exactmetrics-floating-bar-close{padding:0;border:0;background:rgba(0,0,0,0);color:#fff;font-size:16px;position:absolute;right:15px;top:calc(50% - 5px);margin-top:-10px;opacity:.5;cursor:pointer}.exactmetrics-admin-page .exactmetrics-slide-enter-active,.exactmetrics-admin-page .exactmetrics-slide-leave-active{-webkit-transition-duration:.5s;transition-duration:.5s}.exactmetrics-admin-page .exactmetrics-slide-enter-to,.exactmetrics-admin-page .exactmetrics-slide-leave{max-height:100px;overflow:hidden}.exactmetrics-admin-page .exactmetrics-slide-enter,.exactmetrics-admin-page .exactmetrics-slide-leave-to{overflow:hidden;max-height:0}.exactmetrics-container[data-v-53c28ec2]:after{display:table;clear:both;content:""}.exactmetrics-quick-links{position:fixed;bottom:25px;right:25px;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;width:60px;height:60px;border-radius:50%;background:#6528f5;z-index:1000;padding:5px 10px}.exactmetrics-quick-links.exactmetrics-quick-links-open,.exactmetrics-quick-links:focus,.exactmetrics-quick-links:hover{-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.exactmetrics-quick-links-label{border-radius:50%;background:rgba(0,0,0,0);position:absolute;left:6px;right:2px;top:6px;bottom:2px;padding:6px 6px 6px 8px;display:block;width:44px;outline:none;cursor:pointer;border:none}.exactmetrics-quick-links-open .exactmetrics-quick-links-label .exactmetrics-quick-link-title{opacity:0;pointer-events:none}.exactmetrics-bg-img.exactmetrics-quick-links-mascot{padding-top:100%;-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease;display:block}.exactmetrics-bg-img.exactmetrics-quick-links-mascot:after{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==);background-size:auto 85%;background-position:0 0}.exactmetrics-quick-links-menu{position:absolute;bottom:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;right:6px;margin-bottom:10px}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item{display:block;width:48px;height:48px;background:#6528f5;border-radius:50%;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transition:-webkit-transform .2s;transition:-webkit-transform .2s;transition:transform .2s;transition:transform .2s,-webkit-transform .2s;position:relative;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;margin-bottom:6px;color:#fff;text-decoration:none;text-align:center;font-size:18px;line-height:48px}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item:hover{color:#fff;background:#37276a;-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item.exactmetrics-show{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item.exactmetrics-quick-links-item-upgrade{background-color:#32a27a}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item.exactmetrics-quick-links-item-upgrade:hover{background-color:#19865f}.exactmetrics-quick-link-title{position:absolute;right:100%;margin-right:12px;font-size:13px;color:#fff;background:#595959;border-radius:5px;white-space:nowrap;padding:6px 8px;display:block;top:50%;margin-top:-14px;line-height:1;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;outline:none}@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}}
1
+ @import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap);strong[data-v-a9c27d52]{display:block}[data-v-6038a3d0]{will-change:height;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.expand-enter-active,.expand-leave-active{-webkit-transition:height .5s ease-in-out;transition:height .5s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.exactmetrics-dark[data-v-54110c18]{display:block}.exactmetrics-reset-default[data-v-54110c18]{margin-left:5px}.exactmetrics-dark[data-v-7262cc05]{display:block}.exactmetrics-admin-page .exactmetrics-floating-bar{background:#6528f5;color:#fff;font-size:16px;line-height:140%;padding:16px 32px 16px 58px;text-align:left;position:relative;margin:-20px -20px 20px}.exactmetrics-admin-page .exactmetrics-floating-bar:before{content:"";width:16px;height:16px;background:url(../img/icon-info.svg) no-repeat 50%;position:absolute;left:32px;top:20px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-floating-bar{margin-top:-10px;padding-right:20px;padding-left:20px}}.exactmetrics-admin-page .exactmetrics-floating-bar>span>span{font-weight:700}.exactmetrics-admin-page .exactmetrics-floating-bar a{text-decoration:underline;color:#fff;font-weight:700}.exactmetrics-admin-page .exactmetrics-floating-bar a:focus,.exactmetrics-admin-page .exactmetrics-floating-bar a:hover{color:#fff;text-decoration:none}.exactmetrics-admin-page .exactmetrics-floating-bar .exactmetrics-floating-bar-close{padding:0;border:0;background:rgba(0,0,0,0);color:#fff;font-size:16px;position:absolute;right:15px;top:calc(50% - 5px);margin-top:-10px;opacity:.5;cursor:pointer}.exactmetrics-admin-page .exactmetrics-slide-enter-active,.exactmetrics-admin-page .exactmetrics-slide-leave-active{-webkit-transition-duration:.5s;transition-duration:.5s}.exactmetrics-admin-page .exactmetrics-slide-enter-to,.exactmetrics-admin-page .exactmetrics-slide-leave{max-height:100px;overflow:hidden}.exactmetrics-admin-page .exactmetrics-slide-enter,.exactmetrics-admin-page .exactmetrics-slide-leave-to{overflow:hidden;max-height:0}.exactmetrics-container[data-v-53c28ec2]:after{display:table;clear:both;content:""}.exactmetrics-quick-links{position:fixed;bottom:25px;right:25px;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;width:60px;height:60px;border-radius:50%;background:#6528f5;z-index:1000;padding:5px 10px}.exactmetrics-quick-links.exactmetrics-quick-links-open,.exactmetrics-quick-links:focus,.exactmetrics-quick-links:hover{-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.exactmetrics-quick-links-label{border-radius:50%;background:rgba(0,0,0,0);position:absolute;left:6px;right:2px;top:6px;bottom:2px;padding:6px 6px 6px 8px;display:block;width:44px;outline:none;cursor:pointer;border:none}.exactmetrics-quick-links-open .exactmetrics-quick-links-label .exactmetrics-quick-link-title{opacity:0;pointer-events:none}.exactmetrics-bg-img.exactmetrics-quick-links-mascot{padding-top:100%;-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease;display:block}.exactmetrics-bg-img.exactmetrics-quick-links-mascot:after{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==);background-size:auto 85%;background-position:0 0}.exactmetrics-quick-links-menu{position:absolute;bottom:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;right:6px;margin-bottom:10px}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item{display:block;width:48px;height:48px;background:#6528f5;border-radius:50%;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transition:-webkit-transform .2s;transition:-webkit-transform .2s;transition:transform .2s;transition:transform .2s,-webkit-transform .2s;position:relative;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;margin-bottom:6px;color:#fff;text-decoration:none;text-align:center;font-size:18px;line-height:48px}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item:hover{color:#fff;background:#37276a;-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item.exactmetrics-show{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item.exactmetrics-quick-links-item-upgrade{background-color:#32a27a}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item.exactmetrics-quick-links-item-upgrade:hover{background-color:#19865f}.exactmetrics-quick-link-title{position:absolute;right:100%;margin-right:12px;font-size:13px;color:#fff;background:#595959;border-radius:5px;white-space:nowrap;padding:6px 8px;display:block;top:50%;margin-top:-14px;line-height:1;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;outline:none}@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}.exactmetrics-notice.exactmetrics-license_expired .notice-content{padding-left:0;background:none;line-height:1.75;font-size:15px}.exactmetrics-notice.exactmetrics-license_expired .notice-content:before{display:none;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:0;left:0;position:absolute;top:0;line-height:1}.exactmetrics-notice.exactmetrics-license_expired .exactmetrics-notice-icon{margin-right:15px;margin-top:4px}.exactmetrics-notice.exactmetrics-license_expired .exactmetrics-notice-icon svg{width:36px;height:32px}.exactmetrics-notice.exactmetrics-license_expired .exactmetrics-notice-inner{background-color:#fff!important}.exactmetrics-notice.exactmetrics-license_expired .exactmetrics-notice-inner h2{font-size:14px;color:#e64949;margin:0;padding:0}.exactmetrics-notice.exactmetrics-license_expired .exactmetrics-notice-inner .exactmetrics-notice-content{color:#e64949}.exactmetrics-notice.exactmetrics-license_expired .exactmetrics-notice-inner a.exactmetrics-button-error{margin-top:17px}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}}
lite/assets/vue/css/chunk-common.rtl.css CHANGED
@@ -1 +1 @@
1
- @import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap);strong[data-v-a9c27d52]{display:block}[data-v-6038a3d0]{will-change:height;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.expand-enter-active,.expand-leave-active{-webkit-transition:height .5s ease-in-out;transition:height .5s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.exactmetrics-dark[data-v-54110c18]{display:block}.exactmetrics-reset-default[data-v-54110c18]{margin-right:5px}.exactmetrics-dark[data-v-7262cc05]{display:block}.exactmetrics-admin-page .exactmetrics-floating-bar{background:#6528f5;color:#fff;font-size:16px;line-height:140%;padding:16px 58px 16px 32px;text-align:right;position:relative;margin:-20px -20px 20px}.exactmetrics-admin-page .exactmetrics-floating-bar:before{content:"";width:16px;height:16px;background:url(../img/icon-info.svg) no-repeat 50%;position:absolute;right:32px;top:20px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-floating-bar{margin-top:-10px;padding-left:20px;padding-right:20px}}.exactmetrics-admin-page .exactmetrics-floating-bar>span>span{font-weight:700}.exactmetrics-admin-page .exactmetrics-floating-bar a{text-decoration:underline;color:#fff;font-weight:700}.exactmetrics-admin-page .exactmetrics-floating-bar a:focus,.exactmetrics-admin-page .exactmetrics-floating-bar a:hover{color:#fff;text-decoration:none}.exactmetrics-admin-page .exactmetrics-floating-bar .exactmetrics-floating-bar-close{padding:0;border:0;background:rgba(0,0,0,0);color:#fff;font-size:16px;position:absolute;left:15px;top:calc(50% - 5px);margin-top:-10px;opacity:.5;cursor:pointer}.exactmetrics-admin-page .exactmetrics-slide-enter-active,.exactmetrics-admin-page .exactmetrics-slide-leave-active{-webkit-transition-duration:.5s;transition-duration:.5s}.exactmetrics-admin-page .exactmetrics-slide-enter-to,.exactmetrics-admin-page .exactmetrics-slide-leave{max-height:100px;overflow:hidden}.exactmetrics-admin-page .exactmetrics-slide-enter,.exactmetrics-admin-page .exactmetrics-slide-leave-to{overflow:hidden;max-height:0}.exactmetrics-container[data-v-53c28ec2]:after{display:table;clear:both;content:""}.exactmetrics-quick-links{position:fixed;bottom:25px;left:25px;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;width:60px;height:60px;border-radius:50%;background:#6528f5;z-index:1000;padding:5px 10px}.exactmetrics-quick-links.exactmetrics-quick-links-open,.exactmetrics-quick-links:focus,.exactmetrics-quick-links:hover{-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.exactmetrics-quick-links-label{border-radius:50%;background:rgba(0,0,0,0);position:absolute;right:6px;left:2px;top:6px;bottom:2px;padding:6px 8px 6px 6px;display:block;width:44px;outline:none;cursor:pointer;border:none}.exactmetrics-quick-links-open .exactmetrics-quick-links-label .exactmetrics-quick-link-title{opacity:0;pointer-events:none}.exactmetrics-bg-img.exactmetrics-quick-links-mascot{padding-top:100%;-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease;display:block}.exactmetrics-bg-img.exactmetrics-quick-links-mascot:after{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==);background-size:auto 85%;background-position:100% 0}.exactmetrics-quick-links-menu{position:absolute;bottom:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;left:6px;margin-bottom:10px}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item{display:block;width:48px;height:48px;background:#6528f5;border-radius:50%;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transition:-webkit-transform .2s;transition:-webkit-transform .2s;transition:transform .2s;transition:transform .2s,-webkit-transform .2s;position:relative;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;margin-bottom:6px;color:#fff;text-decoration:none;text-align:center;font-size:18px;line-height:48px}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item:hover{color:#fff;background:#37276a;-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item.exactmetrics-show{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item.exactmetrics-quick-links-item-upgrade{background-color:#32a27a}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item.exactmetrics-quick-links-item-upgrade:hover{background-color:#19865f}.exactmetrics-quick-link-title{position:absolute;left:100%;margin-left:12px;font-size:13px;color:#fff;background:#595959;border-radius:5px;white-space:nowrap;padding:6px 8px;display:block;top:50%;margin-top:-14px;line-height:1;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;outline:none}@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}}
1
+ @import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap);strong[data-v-a9c27d52]{display:block}[data-v-6038a3d0]{will-change:height;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.expand-enter-active,.expand-leave-active{-webkit-transition:height .5s ease-in-out;transition:height .5s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.exactmetrics-dark[data-v-54110c18]{display:block}.exactmetrics-reset-default[data-v-54110c18]{margin-right:5px}.exactmetrics-dark[data-v-7262cc05]{display:block}.exactmetrics-admin-page .exactmetrics-floating-bar{background:#6528f5;color:#fff;font-size:16px;line-height:140%;padding:16px 58px 16px 32px;text-align:right;position:relative;margin:-20px -20px 20px}.exactmetrics-admin-page .exactmetrics-floating-bar:before{content:"";width:16px;height:16px;background:url(../img/icon-info.svg) no-repeat 50%;position:absolute;right:32px;top:20px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-floating-bar{margin-top:-10px;padding-left:20px;padding-right:20px}}.exactmetrics-admin-page .exactmetrics-floating-bar>span>span{font-weight:700}.exactmetrics-admin-page .exactmetrics-floating-bar a{text-decoration:underline;color:#fff;font-weight:700}.exactmetrics-admin-page .exactmetrics-floating-bar a:focus,.exactmetrics-admin-page .exactmetrics-floating-bar a:hover{color:#fff;text-decoration:none}.exactmetrics-admin-page .exactmetrics-floating-bar .exactmetrics-floating-bar-close{padding:0;border:0;background:rgba(0,0,0,0);color:#fff;font-size:16px;position:absolute;left:15px;top:calc(50% - 5px);margin-top:-10px;opacity:.5;cursor:pointer}.exactmetrics-admin-page .exactmetrics-slide-enter-active,.exactmetrics-admin-page .exactmetrics-slide-leave-active{-webkit-transition-duration:.5s;transition-duration:.5s}.exactmetrics-admin-page .exactmetrics-slide-enter-to,.exactmetrics-admin-page .exactmetrics-slide-leave{max-height:100px;overflow:hidden}.exactmetrics-admin-page .exactmetrics-slide-enter,.exactmetrics-admin-page .exactmetrics-slide-leave-to{overflow:hidden;max-height:0}.exactmetrics-container[data-v-53c28ec2]:after{display:table;clear:both;content:""}.exactmetrics-quick-links{position:fixed;bottom:25px;left:25px;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;width:60px;height:60px;border-radius:50%;background:#6528f5;z-index:1000;padding:5px 10px}.exactmetrics-quick-links.exactmetrics-quick-links-open,.exactmetrics-quick-links:focus,.exactmetrics-quick-links:hover{-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.exactmetrics-quick-links-label{border-radius:50%;background:rgba(0,0,0,0);position:absolute;right:6px;left:2px;top:6px;bottom:2px;padding:6px 8px 6px 6px;display:block;width:44px;outline:none;cursor:pointer;border:none}.exactmetrics-quick-links-open .exactmetrics-quick-links-label .exactmetrics-quick-link-title{opacity:0;pointer-events:none}.exactmetrics-bg-img.exactmetrics-quick-links-mascot{padding-top:100%;-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease;display:block}.exactmetrics-bg-img.exactmetrics-quick-links-mascot:after{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==);background-size:auto 85%;background-position:100% 0}.exactmetrics-quick-links-menu{position:absolute;bottom:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;left:6px;margin-bottom:10px}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item{display:block;width:48px;height:48px;background:#6528f5;border-radius:50%;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transition:-webkit-transform .2s;transition:-webkit-transform .2s;transition:transform .2s;transition:transform .2s,-webkit-transform .2s;position:relative;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;margin-bottom:6px;color:#fff;text-decoration:none;text-align:center;font-size:18px;line-height:48px}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item:hover{color:#fff;background:#37276a;-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item.exactmetrics-show{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item.exactmetrics-quick-links-item-upgrade{background-color:#32a27a}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item.exactmetrics-quick-links-item-upgrade:hover{background-color:#19865f}.exactmetrics-quick-link-title{position:absolute;left:100%;margin-left:12px;font-size:13px;color:#fff;background:#595959;border-radius:5px;white-space:nowrap;padding:6px 8px;display:block;top:50%;margin-top:-14px;line-height:1;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;outline:none}@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}.exactmetrics-notice.exactmetrics-license_expired .notice-content{padding-right:0;background:none;line-height:1.75;font-size:15px}.exactmetrics-notice.exactmetrics-license_expired .notice-content:before{display:none;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:0;right:0;position:absolute;top:0;line-height:1}.exactmetrics-notice.exactmetrics-license_expired .exactmetrics-notice-icon{margin-left:15px;margin-top:4px}.exactmetrics-notice.exactmetrics-license_expired .exactmetrics-notice-icon svg{width:36px;height:32px}.exactmetrics-notice.exactmetrics-license_expired .exactmetrics-notice-inner{background-color:#fff!important}.exactmetrics-notice.exactmetrics-license_expired .exactmetrics-notice-inner h2{font-size:14px;color:#e64949;margin:0;padding:0}.exactmetrics-notice.exactmetrics-license_expired .exactmetrics-notice-inner .exactmetrics-notice-content{color:#e64949}.exactmetrics-notice.exactmetrics-license_expired .exactmetrics-notice-inner a.exactmetrics-button-error{margin-top:17px}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}}
lite/assets/vue/css/frontend.css CHANGED
@@ -1 +1 @@
1
- .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)}}#wpadminbar .exactmetrics-frontend-stats{position:absolute;top:32px;background:#fff;width:100vw;left:0;color:#000;padding:0 20px 20px;-webkit-box-shadow:0 5px 25px -10px rgba(0,0,0,.15);box-shadow:0 5px 25px -10px rgba(0,0,0,.15);-webkit-box-sizing:border-box;box-sizing:border-box;min-height:104px}@media (max-width:1023px){#wpadminbar .exactmetrics-frontend-stats{padding:0 20px 20px}}@media (max-width:782px){#wpadminbar .exactmetrics-frontend-stats{top:46px}}#wpadminbar .exactmetrics-adminbar-menu-item{position:static}@media (max-width:782px){#wpadminbar .exactmetrics-adminbar-menu-item{display:block}#wpadminbar .exactmetrics-adminbar-menu-item .exactmetrics-admin-bar-handle-text{display:none}#wpadminbar .exactmetrics-adminbar-menu-item .dashicons-chart-bar:before{font-size:28px;margin-top:10px;width:28px;height:28px}}#wpadminbar .exactmetrics-toggle{cursor:pointer}#wpadminbar .exactmetrics-toggle-active{background:#fff;color:#393f4c}#wpadminbar .exactmetrics-toggle-active:focus,#wpadminbar .exactmetrics-toggle-active:hover{color:#6528f5}#wpadminbar .ab-item.exactmetrics-toggle-active .ab-icon:before{color:#393f4c}#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active{background:#fff;color:#393f4c}#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active .ab-icon,#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active .ab-icon:before{color:#393f4c}#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active:focus,#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active:focus .ab-icon:before,#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active:hover,#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active:hover .ab-icon:before{color:#6528f5}#wpadminbar .exactmetrics-frontend-stats-inner h3{font-size:13px;line-height:1;color:#4d3f7a;margin:13px 0;font-weight:500}#wpadminbar .exactmetrics-frontend-stats-inner h3 span{line-height:1;font-weight:700}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;background-color:#f4f3f7;border-radius:10px;padding-top:24px;padding-bottom:24px}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area .exactmetrics-stats-column{margin-right:20px;padding-left:60px;border-left:1px solid #d6e2ed}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area .exactmetrics-stats-column:first-child{border:none}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area:not(.exactmetrics-pageinsights-data) .exactmetrics-frontend-column-button,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area:not(.exactmetrics-pageinsights-data) .exactmetrics-stats-column:last-child{border:none;padding-left:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:881px){#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area{-ms-flex-wrap:wrap;flex-wrap:wrap;padding:20px 20px 0}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area .exactmetrics-stats-column{width:calc(50% - 20px);padding:0;margin:0 0 20px;border:none}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area .exactmetrics-stats-column:last-child{width:100%;text-align:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-infobox-change,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-infobox-change div,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-infobox-change span{line-height:1}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-compare,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-prev{display:inline-block}@media (max-width:1280px){#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-compare,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-prev{float:none;clear:both}}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-compare{color:#9087ac;font-size:12px}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-prev{font-size:14px;margin-right:6px}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-prev .exactmetrics-arrow{vertical-align:middle}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow{width:10px;height:11px;display:inline-block;background-size:contain;background-repeat:no-repeat}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow.exactmetrics-down{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAXVBMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjip09rAAAAHnRSTlMA8IciAeKVlnAwD/bp1ci5on1URtyyl2dhPzccFQOiNcZVAAAAg0lEQVQoz9XNWQ6DMAxFUUNCmwBl7Dx4/8tsjCAvQd4A98OWdT5MaOr74UtaLTOPqhRByuNL7fxefs9ZoOPmlYsdmB3RLdzFOxV759BMHQv5REqWJjKV7NZEGRc4WVqpMqu4CBtdP4s8IoAujQwACAFAAI3OABAgJ4BGgJzkuVrt0+sPB0gVjZ7FTpgAAAAASUVORK5CYII=)}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow.exactmetrics-down.exactmetrics-green{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMADloG+qFg0bOrm1RNGJCAd3FoRe/Zyci8kjIuLCxb7jsAAACJSURBVCjP3cpbFsIgDEXRC8G29mVrfWvmP00DcREtHYHnI0A2sB7T5LEVnZh52RLHkv8DeblCnhTnnc/DSlquZXWQd+1+ZIwrwoWlqzORv7EBS4jnjbLMCUYAfaKGPlIlaIFMO5UuKGidUhp6BYwsAULOhxVYldFewagAowxFxwiNQkkKZf38DW9jKhaFyDomEwAAAABJRU5ErkJggg==)}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow.exactmetrics-up{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMA8Icj45jrlzD20bqkfXJkV0sUD9zWxbaLcT43HO3asg8AAACASURBVCjP3clJFsIgEADRisRA5slZuf81ReQ1UZILpBa1+SyaDeup3OotsPa4AUIJCCUQKYVIERKKcC7dKqEIp1fmfugDRcgVXui+JFAogtB60nDxYBDh5mng6p49WQj6IyNTZcsHP0JjbQfMd8Of0I9IIqEdSOGkXZWhrpsJ6Q1+nBSNjDcDLgAAAABJRU5ErkJggg==)}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow.exactmetrics-up.exactmetrics-red{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAZCAMAAAAc9R5vAAAAV1BMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjhHHlCMAAAAHHRSTlMALTzj+N0V79kkHNVD0U5IIBnqy8K3VTcSB704vhc5cQAAAJRJREFUKM/VjUkSwyAMBIeACRhsvC+J/v/ORErZcOADmYOm1F0lIccH51HJoIl0xbQNfaOHKhdT4ZKmLfnoiGrGOirixpsH3p8ySmM7+Zp4bvIrWOaH8MkrrofXlzlmOaHwE1ATd2fx4jZvXAK7/FmgmUdkgWj4hFSPUqA3ZBIQ1w2FELMm5GTB+XOxV8S5EM3nvX4AV4MVrf6KAvgAAAAASUVORK5CYII=)}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-red{color:#d73638}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-green{color:#5cc0a5}#wpadminbar .exactmetrics-stats-label{font-weight:700;color:#4d3f7a;font-size:13px;line-height:1}#wpadminbar .exactmetrics-stats-value{font-size:32px;color:#210f59;margin:6px 0 5px;line-height:1}#wpadminbar .exactmetrics-stats-column-title{width:30%;-ms-flex-negative:0;flex-shrink:0}#wpadminbar .exactmetrics-stats-column-title .exactmetrics-stats-value{white-space:pre;text-overflow:ellipsis;overflow:hidden}#wpadminbar .exactmetrics-frontend-stats-loading{text-align:center;position:absolute;z-index:90;left:0;right:0;bottom:0;top:0;background:#fff;padding-top:25px;padding-bottom:25px;min-height:100px}#wpadminbar .exactmetrics-frontend-spinner{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;display:inline-block;height:2.5em;margin:10px auto;padding:0;width:2.5em;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#wpadminbar a.exactmetrics-button,#wpadminbar button.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;line-height:1;height:auto}#wpadminbar a.exactmetrics-button:focus,#wpadminbar a.exactmetrics-button:hover,#wpadminbar button.exactmetrics-button:focus,#wpadminbar button.exactmetrics-button:hover{background-color:#37276a;border-color:#37276a;color:#fff;border-width:1px 1px 2px}#wpadminbar .exactmetrics-widget-error{padding:0;text-align:center}#wpadminbar .exactmetrics-widget-error h2{font-size:18px;font-weight:700}#wpadminbar .exactmetrics-widget-error h2:before{display:none}#wpadminbar .exactmetrics-widget-error .exactmetrics-error-title{font-weight:700;font-size:24px}#wpadminbar .exactmetrics-widget-error .exactmetrics-error-content{font-size:16px}#wpadminbar .exactmetrics-widget-error .exactmetrics-error-footer{margin:35px 0 0;padding:15px 0 0;border-top:1px solid #ccc}#wpadminbar .exactmetrics-widget-error .swal2-icon,#wpadminbar .exactmetrics-widget-error .swal2-icon *,#wpadminbar .swal2-icon{-webkit-box-sizing:content-box;box-sizing:content-box}#wpadminbar .swal2-icon{border:.25em solid rgba(0,0,0,0);border-radius:50%;cursor:default;height:5em;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;line-height:5em;margin:1.25em auto 1.875em;position:relative;width:5em;zoom:normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#wpadminbar .swal2-animate-error-icon .swal2-x-mark{animation:swal2-animate-error-x-mark .5s;-webkit-animation:swal2-animate-error-x-mark .5s;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;position:relative}#wpadminbar .swal2-animate-error-icon{animation:swal2-animate-error-icon .5s;-webkit-animation:swal2-animate-error-icon .5s}#wpadminbar .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:1.0625em;-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform:rotate(45deg)}#wpadminbar .swal2-icon.swal2-error [class^=swal2-x-mark-line]{background-color:#f27474;border-radius:.125em;display:block;height:.3125em;position:absolute;top:2.3125em;width:2.9375em}#wpadminbar .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:1em;-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform:rotate(-45deg)}#wpadminbar .swal2-icon.swal2-error{border-color:#f27474}#wpadminbar .quicklinks .exactmetrics-powered-by{display:none}@-webkit-keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0deg);transform:rotateX(0deg);opacity:1}}@keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0deg);transform:rotateX(0deg);opacity:1}}@-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}}#wpadminbar .exactmetrics-not-authenticated-notice{text-align:center;font-family:Arial,Helvetica,Trebuchet MS,sans-serif;margin-bottom:17px;border:none}#wpadminbar .exactmetrics-not-authenticated-notice h3{color:#222;font-size:18px;font-weight:700;margin-top:17px}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate{max-width:975px;margin-left:auto;margin-right:auto}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate p{font-size:15px;line-height:1.4;color:#222;margin:5px 0 30px}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate .exactmetrics-wp-button{color:#555;background:#f7f7f7;-webkit-box-shadow:0 1px 0 #ccc;box-shadow:0 1px 0 #ccc;vertical-align:top;display:inline-block;text-decoration:none;font-size:13px;line-height:26px;height:28px;margin:0 6px;padding:0 10px 1px;cursor:pointer;border:1px solid #ccc;-webkit-appearance:none;border-radius:3px;white-space:nowrap;-webkit-box-sizing:border-box;box-sizing:border-box}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate .exactmetrics-wp-button:hover{background:#fafafa;border-color:#999;color:#23282d}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate .exactmetrics-wp-button.exactmetrics-wp-button-primary{background:#0085ba;border-color:#0073aa #006799 #006799;-webkit-box-shadow:0 1px 0 #006799;box-shadow:0 1px 0 #006799;color:#fff;text-decoration:none;text-shadow:0 -1px 1px #006799,1px 0 1px #006799,0 1px 1px #006799,-1px 0 1px #006799}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate .exactmetrics-wp-button.exactmetrics-wp-button-primary:hover{background:#008ec2;border-color:#006799;color:#fff}#wpadminbar .exactmetrics-notifications-indicator{padding-top:10px}#wpadminbar .exactmetrics-notifications-indicator a{margin-left:0;position:relative;height:auto;max-width:35px;padding:0}#wpadminbar .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}#wpadminbar .exactmetrics-menu-notification-indicator{min-width:8px;height:18px;border-radius:9px;background:#ca4a1f;display:inline-block;margin-left:8px;font-size:11px;font-weight:400;color:#fff;text-align:center;line-height:1.6;padding:0 5px}@media (max-width:782px){#wpadminbar .exactmetrics-menu-notification-indicator{margin:0 0 10px -13px;z-index:10;position:relative}}#wpadminbar .exactmetrics-roller{display:inline-block;position:relative;width:58px;height:58px}@-webkit-keyframes exactmetrics-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes exactmetrics-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}
1
+ .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)}}#wpadminbar .exactmetrics-frontend-stats{position:absolute;top:32px;background:#fff;width:100vw;left:0;color:#000;padding:0 20px 20px;-webkit-box-shadow:0 5px 25px -10px rgba(0,0,0,.15);box-shadow:0 5px 25px -10px rgba(0,0,0,.15);-webkit-box-sizing:border-box;box-sizing:border-box;min-height:104px}@media (max-width:1023px){#wpadminbar .exactmetrics-frontend-stats{padding:0 20px 20px}}@media (max-width:782px){#wpadminbar .exactmetrics-frontend-stats{top:46px}}#wpadminbar .exactmetrics-adminbar-menu-item{position:static}@media (max-width:782px){#wpadminbar .exactmetrics-adminbar-menu-item{display:block}#wpadminbar .exactmetrics-adminbar-menu-item .exactmetrics-admin-bar-handle-text{display:none}#wpadminbar .exactmetrics-adminbar-menu-item .dashicons-chart-bar:before{font-size:28px;margin-top:10px;width:28px;height:28px}}#wpadminbar .exactmetrics-toggle{cursor:pointer}#wpadminbar .exactmetrics-toggle-active{background:#fff;color:#393f4c}#wpadminbar .exactmetrics-toggle-active:focus,#wpadminbar .exactmetrics-toggle-active:hover{color:#6528f5}#wpadminbar .ab-item.exactmetrics-toggle-active .ab-icon:before{color:#393f4c}#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active{background:#fff;color:#393f4c}#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active .ab-icon,#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active .ab-icon:before{color:#393f4c}#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active:focus,#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active:focus .ab-icon:before,#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active:hover,#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active:hover .ab-icon:before{color:#6528f5}#wpadminbar .exactmetrics-frontend-stats-inner h3{font-size:13px;line-height:1;color:#4d3f7a;margin:13px 0;font-weight:500}#wpadminbar .exactmetrics-frontend-stats-inner h3 span{line-height:1;font-weight:700}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;background-color:#f4f3f7;border-radius:10px;padding-top:24px;padding-bottom:24px}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area .exactmetrics-stats-column{margin-right:20px;padding-left:60px;border-left:1px solid #d6e2ed}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area .exactmetrics-stats-column:first-child{border:none}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area:not(.exactmetrics-pageinsights-data) .exactmetrics-frontend-column-button,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area:not(.exactmetrics-pageinsights-data) .exactmetrics-stats-column:last-child{border:none;padding-left:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:881px){#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area{-ms-flex-wrap:wrap;flex-wrap:wrap;padding:20px 20px 0}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area .exactmetrics-stats-column{width:calc(50% - 20px);padding:0;margin:0 0 20px;border:none}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area .exactmetrics-stats-column:last-child{width:100%;text-align:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-infobox-change,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-infobox-change div,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-infobox-change span{line-height:1}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-compare,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-prev{display:inline-block}@media (max-width:1280px){#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-compare,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-prev{float:none;clear:both}}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-compare{color:#9087ac;font-size:12px}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-prev{font-size:14px;margin-right:6px}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-prev .exactmetrics-arrow{vertical-align:middle}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow{width:10px;height:11px;display:inline-block;background-size:contain;background-repeat:no-repeat}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow.exactmetrics-down{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAXVBMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjip09rAAAAHnRSTlMA8IciAeKVlnAwD/bp1ci5on1URtyyl2dhPzccFQOiNcZVAAAAg0lEQVQoz9XNWQ6DMAxFUUNCmwBl7Dx4/8tsjCAvQd4A98OWdT5MaOr74UtaLTOPqhRByuNL7fxefs9ZoOPmlYsdmB3RLdzFOxV759BMHQv5REqWJjKV7NZEGRc4WVqpMqu4CBtdP4s8IoAujQwACAFAAI3OABAgJ4BGgJzkuVrt0+sPB0gVjZ7FTpgAAAAASUVORK5CYII=)}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow.exactmetrics-down.exactmetrics-green{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMADloG+qFg0bOrm1RNGJCAd3FoRe/Zyci8kjIuLCxb7jsAAACJSURBVCjP3cpbFsIgDEXRC8G29mVrfWvmP00DcREtHYHnI0A2sB7T5LEVnZh52RLHkv8DeblCnhTnnc/DSlquZXWQd+1+ZIwrwoWlqzORv7EBS4jnjbLMCUYAfaKGPlIlaIFMO5UuKGidUhp6BYwsAULOhxVYldFewagAowxFxwiNQkkKZf38DW9jKhaFyDomEwAAAABJRU5ErkJggg==)}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow.exactmetrics-up{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMA8Icj45jrlzD20bqkfXJkV0sUD9zWxbaLcT43HO3asg8AAACASURBVCjP3clJFsIgEADRisRA5slZuf81ReQ1UZILpBa1+SyaDeup3OotsPa4AUIJCCUQKYVIERKKcC7dKqEIp1fmfugDRcgVXui+JFAogtB60nDxYBDh5mng6p49WQj6IyNTZcsHP0JjbQfMd8Of0I9IIqEdSOGkXZWhrpsJ6Q1+nBSNjDcDLgAAAABJRU5ErkJggg==)}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow.exactmetrics-up.exactmetrics-red{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAZCAMAAAAc9R5vAAAAV1BMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjhHHlCMAAAAHHRSTlMALTzj+N0V79kkHNVD0U5IIBnqy8K3VTcSB704vhc5cQAAAJRJREFUKM/VjUkSwyAMBIeACRhsvC+J/v/ORErZcOADmYOm1F0lIccH51HJoIl0xbQNfaOHKhdT4ZKmLfnoiGrGOirixpsH3p8ySmM7+Zp4bvIrWOaH8MkrrofXlzlmOaHwE1ATd2fx4jZvXAK7/FmgmUdkgWj4hFSPUqA3ZBIQ1w2FELMm5GTB+XOxV8S5EM3nvX4AV4MVrf6KAvgAAAAASUVORK5CYII=)}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-red{color:#d73638}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-green{color:#5cc0a5}#wpadminbar .exactmetrics-stats-label{font-weight:700;color:#4d3f7a;font-size:13px;line-height:1}#wpadminbar .exactmetrics-stats-value{font-size:32px;color:#210f59;margin:6px 0 5px;line-height:1}#wpadminbar .exactmetrics-stats-column-title{width:30%;-ms-flex-negative:0;flex-shrink:0}#wpadminbar .exactmetrics-stats-column-title .exactmetrics-stats-value{white-space:pre;text-overflow:ellipsis;overflow:hidden}#wpadminbar .exactmetrics-frontend-stats-loading{text-align:center;position:absolute;z-index:90;left:0;right:0;bottom:0;top:0;background:#fff;padding-top:25px;padding-bottom:25px;min-height:100px}#wpadminbar .exactmetrics-frontend-spinner{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;display:inline-block;height:2.5em;margin:10px auto;padding:0;width:2.5em;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#wpadminbar a.exactmetrics-button,#wpadminbar button.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;line-height:1;height:auto}#wpadminbar a.exactmetrics-button:focus,#wpadminbar a.exactmetrics-button:hover,#wpadminbar button.exactmetrics-button:focus,#wpadminbar button.exactmetrics-button:hover{background-color:#37276a;border-color:#37276a;color:#fff;border-width:1px 1px 2px}#wpadminbar .exactmetrics-widget-error{padding:0;text-align:center}#wpadminbar .exactmetrics-widget-error h2{font-size:18px;font-weight:700}#wpadminbar .exactmetrics-widget-error h2:before{display:none}#wpadminbar .exactmetrics-widget-error .exactmetrics-error-title{font-weight:700;font-size:24px}#wpadminbar .exactmetrics-widget-error .exactmetrics-error-content{font-size:16px}#wpadminbar .exactmetrics-widget-error .exactmetrics-error-footer{margin:35px 0 0;padding:15px 0 0;border-top:1px solid #ccc}#wpadminbar .exactmetrics-widget-error .swal2-icon,#wpadminbar .exactmetrics-widget-error .swal2-icon *{-webkit-box-sizing:content-box;box-sizing:content-box}#wpadminbar .exactmetrics-widget-error.exactmetrics-license-expired-notice .swal2-header{display:none}#wpadminbar .exactmetrics-widget-error.exactmetrics-license-expired-notice .swal2-actions{display:none!important}#wpadminbar .exactmetrics-widget-error.exactmetrics-license-expired-notice .exactmetrics-expired-license-alert-icon{display:none}#wpadminbar .exactmetrics-widget-error.exactmetrics-license-expired-notice .exactmetrics-expired-license-alert{margin:0 auto}#wpadminbar .exactmetrics-widget-error.exactmetrics-license-expired-notice .exactmetrics-expired-license-alert h3{font-size:40px;margin:0;padding:0}#wpadminbar .exactmetrics-widget-error.exactmetrics-license-expired-notice .exactmetrics-expired-license-alert h4{font-size:20px;margin:0;padding:0}#wpadminbar .exactmetrics-widget-error.exactmetrics-license-expired-notice .exactmetrics-expired-license-alert p{font-size:16px;margin:0;padding:0}#wpadminbar .exactmetrics-widget-error.exactmetrics-license-expired-notice .exactmetrics-error-footer{display:block!important;text-align:center;padding-top:20px}#wpadminbar .exactmetrics-widget-error.exactmetrics-license-expired-notice .exactmetrics-error-footer a{display:inline-block}#wpadminbar .exactmetrics-widget-error.exactmetrics-license-expired-notice .exactmetrics-error-footer a.swal2-styled{background-color:#6528f5;border-radius:5px;color:#fff;display:inline-block;font-size:14px;margin-bottom:10px;padding:12px 28px;text-decoration:none}#wpadminbar .exactmetrics-widget-error.exactmetrics-license-expired-notice .exactmetrics-error-footer a:nth-child(3){color:#393f4c!important}#wpadminbar .swal2-icon{border:.25em solid rgba(0,0,0,0);border-radius:50%;-webkit-box-sizing:content-box;box-sizing:content-box;cursor:default;height:5em;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;line-height:5em;margin:1.25em auto 1.875em;position:relative;width:5em;zoom:normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#wpadminbar .swal2-animate-error-icon .swal2-x-mark{animation:swal2-animate-error-x-mark .5s;-webkit-animation:swal2-animate-error-x-mark .5s;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;position:relative}#wpadminbar .swal2-animate-error-icon{animation:swal2-animate-error-icon .5s;-webkit-animation:swal2-animate-error-icon .5s}#wpadminbar .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:1.0625em;-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform:rotate(45deg)}#wpadminbar .swal2-icon.swal2-error [class^=swal2-x-mark-line]{background-color:#f27474;border-radius:.125em;display:block;height:.3125em;position:absolute;top:2.3125em;width:2.9375em}#wpadminbar .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:1em;-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform:rotate(-45deg)}#wpadminbar .swal2-icon.swal2-error{border-color:#f27474}#wpadminbar .quicklinks .exactmetrics-powered-by{display:none}@-webkit-keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0deg);transform:rotateX(0deg);opacity:1}}@keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0deg);transform:rotateX(0deg);opacity:1}}@-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}}#wpadminbar .exactmetrics-not-authenticated-notice{text-align:center;font-family:Arial,Helvetica,Trebuchet MS,sans-serif;margin-bottom:17px;border:none}#wpadminbar .exactmetrics-not-authenticated-notice h3{color:#222;font-size:18px;font-weight:700;margin-top:17px}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate{max-width:975px;margin-left:auto;margin-right:auto}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate p{font-size:15px;line-height:1.4;color:#222;margin:5px 0 30px}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate .exactmetrics-wp-button{color:#555;background:#f7f7f7;-webkit-box-shadow:0 1px 0 #ccc;box-shadow:0 1px 0 #ccc;vertical-align:top;display:inline-block;text-decoration:none;font-size:13px;line-height:26px;height:28px;margin:0 6px;padding:0 10px 1px;cursor:pointer;border:1px solid #ccc;-webkit-appearance:none;border-radius:3px;white-space:nowrap;-webkit-box-sizing:border-box;box-sizing:border-box}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate .exactmetrics-wp-button:hover{background:#fafafa;border-color:#999;color:#23282d}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate .exactmetrics-wp-button.exactmetrics-wp-button-primary{background:#0085ba;border-color:#0073aa #006799 #006799;-webkit-box-shadow:0 1px 0 #006799;box-shadow:0 1px 0 #006799;color:#fff;text-decoration:none;text-shadow:0 -1px 1px #006799,1px 0 1px #006799,0 1px 1px #006799,-1px 0 1px #006799}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate .exactmetrics-wp-button.exactmetrics-wp-button-primary:hover{background:#008ec2;border-color:#006799;color:#fff}#wpadminbar .exactmetrics-notifications-indicator{padding-top:10px}#wpadminbar .exactmetrics-notifications-indicator a{margin-left:0;position:relative;height:auto;max-width:35px;padding:0}#wpadminbar .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}#wpadminbar .exactmetrics-menu-notification-indicator{min-width:8px;height:18px;border-radius:9px;background:#ca4a1f;display:inline-block;margin-left:8px;font-size:11px;font-weight:400;color:#fff;text-align:center;line-height:1.6;padding:0 5px}@media (max-width:782px){#wpadminbar .exactmetrics-menu-notification-indicator{margin:0 0 10px -13px;z-index:10;position:relative}}#wpadminbar .exactmetrics-roller{display:inline-block;position:relative;width:58px;height:58px}@-webkit-keyframes exactmetrics-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes exactmetrics-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}
lite/assets/vue/css/frontend.rtl.css CHANGED
@@ -1 +1 @@
1
- .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)}}#wpadminbar .exactmetrics-frontend-stats{position:absolute;top:32px;background:#fff;width:100vw;right:0;color:#000;padding:0 20px 20px;-webkit-box-shadow:0 5px 25px -10px rgba(0,0,0,.15);box-shadow:0 5px 25px -10px rgba(0,0,0,.15);-webkit-box-sizing:border-box;box-sizing:border-box;min-height:104px}@media (max-width:1023px){#wpadminbar .exactmetrics-frontend-stats{padding:0 20px 20px}}@media (max-width:782px){#wpadminbar .exactmetrics-frontend-stats{top:46px}}#wpadminbar .exactmetrics-adminbar-menu-item{position:static}@media (max-width:782px){#wpadminbar .exactmetrics-adminbar-menu-item{display:block}#wpadminbar .exactmetrics-adminbar-menu-item .exactmetrics-admin-bar-handle-text{display:none}#wpadminbar .exactmetrics-adminbar-menu-item .dashicons-chart-bar:before{font-size:28px;margin-top:10px;width:28px;height:28px}}#wpadminbar .exactmetrics-toggle{cursor:pointer}#wpadminbar .exactmetrics-toggle-active{background:#fff;color:#393f4c}#wpadminbar .exactmetrics-toggle-active:focus,#wpadminbar .exactmetrics-toggle-active:hover{color:#6528f5}#wpadminbar .ab-item.exactmetrics-toggle-active .ab-icon:before{color:#393f4c}#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active{background:#fff;color:#393f4c}#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active .ab-icon,#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active .ab-icon:before{color:#393f4c}#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active:focus,#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active:focus .ab-icon:before,#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active:hover,#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active:hover .ab-icon:before{color:#6528f5}#wpadminbar .exactmetrics-frontend-stats-inner h3{font-size:13px;line-height:1;color:#4d3f7a;margin:13px 0;font-weight:500}#wpadminbar .exactmetrics-frontend-stats-inner h3 span{line-height:1;font-weight:700}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;background-color:#f4f3f7;border-radius:10px;padding-top:24px;padding-bottom:24px}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area .exactmetrics-stats-column{margin-left:20px;padding-right:60px;border-right:1px solid #d6e2ed}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area .exactmetrics-stats-column:first-child{border:none}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area:not(.exactmetrics-pageinsights-data) .exactmetrics-frontend-column-button,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area:not(.exactmetrics-pageinsights-data) .exactmetrics-stats-column:last-child{border:none;padding-right:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:881px){#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area{-ms-flex-wrap:wrap;flex-wrap:wrap;padding:20px 20px 0}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area .exactmetrics-stats-column{width:calc(50% - 20px);padding:0;margin:0 0 20px;border:none}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area .exactmetrics-stats-column:last-child{width:100%;text-align:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-infobox-change,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-infobox-change div,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-infobox-change span{line-height:1}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-compare,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-prev{display:inline-block}@media (max-width:1280px){#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-compare,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-prev{float:none;clear:both}}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-compare{color:#9087ac;font-size:12px}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-prev{font-size:14px;margin-left:6px}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-prev .exactmetrics-arrow{vertical-align:middle}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow{width:10px;height:11px;display:inline-block;background-size:contain;background-repeat:no-repeat}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow.exactmetrics-down{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAXVBMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjip09rAAAAHnRSTlMA8IciAeKVlnAwD/bp1ci5on1URtyyl2dhPzccFQOiNcZVAAAAg0lEQVQoz9XNWQ6DMAxFUUNCmwBl7Dx4/8tsjCAvQd4A98OWdT5MaOr74UtaLTOPqhRByuNL7fxefs9ZoOPmlYsdmB3RLdzFOxV759BMHQv5REqWJjKV7NZEGRc4WVqpMqu4CBtdP4s8IoAujQwACAFAAI3OABAgJ4BGgJzkuVrt0+sPB0gVjZ7FTpgAAAAASUVORK5CYII=)}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow.exactmetrics-down.exactmetrics-green{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMADloG+qFg0bOrm1RNGJCAd3FoRe/Zyci8kjIuLCxb7jsAAACJSURBVCjP3cpbFsIgDEXRC8G29mVrfWvmP00DcREtHYHnI0A2sB7T5LEVnZh52RLHkv8DeblCnhTnnc/DSlquZXWQd+1+ZIwrwoWlqzORv7EBS4jnjbLMCUYAfaKGPlIlaIFMO5UuKGidUhp6BYwsAULOhxVYldFewagAowxFxwiNQkkKZf38DW9jKhaFyDomEwAAAABJRU5ErkJggg==)}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow.exactmetrics-up{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMA8Icj45jrlzD20bqkfXJkV0sUD9zWxbaLcT43HO3asg8AAACASURBVCjP3clJFsIgEADRisRA5slZuf81ReQ1UZILpBa1+SyaDeup3OotsPa4AUIJCCUQKYVIERKKcC7dKqEIp1fmfugDRcgVXui+JFAogtB60nDxYBDh5mng6p49WQj6IyNTZcsHP0JjbQfMd8Of0I9IIqEdSOGkXZWhrpsJ6Q1+nBSNjDcDLgAAAABJRU5ErkJggg==)}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow.exactmetrics-up.exactmetrics-red{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAZCAMAAAAc9R5vAAAAV1BMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjhHHlCMAAAAHHRSTlMALTzj+N0V79kkHNVD0U5IIBnqy8K3VTcSB704vhc5cQAAAJRJREFUKM/VjUkSwyAMBIeACRhsvC+J/v/ORErZcOADmYOm1F0lIccH51HJoIl0xbQNfaOHKhdT4ZKmLfnoiGrGOirixpsH3p8ySmM7+Zp4bvIrWOaH8MkrrofXlzlmOaHwE1ATd2fx4jZvXAK7/FmgmUdkgWj4hFSPUqA3ZBIQ1w2FELMm5GTB+XOxV8S5EM3nvX4AV4MVrf6KAvgAAAAASUVORK5CYII=)}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-red{color:#d73638}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-green{color:#5cc0a5}#wpadminbar .exactmetrics-stats-label{font-weight:700;color:#4d3f7a;font-size:13px;line-height:1}#wpadminbar .exactmetrics-stats-value{font-size:32px;color:#210f59;margin:6px 0 5px;line-height:1}#wpadminbar .exactmetrics-stats-column-title{width:30%;-ms-flex-negative:0;flex-shrink:0}#wpadminbar .exactmetrics-stats-column-title .exactmetrics-stats-value{white-space:pre;text-overflow:ellipsis;overflow:hidden}#wpadminbar .exactmetrics-frontend-stats-loading{text-align:center;position:absolute;z-index:90;right:0;left:0;bottom:0;top:0;background:#fff;padding-top:25px;padding-bottom:25px;min-height:100px}#wpadminbar .exactmetrics-frontend-spinner{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;display:inline-block;height:2.5em;margin:10px auto;padding:0;width:2.5em;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#wpadminbar a.exactmetrics-button,#wpadminbar button.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;line-height:1;height:auto}#wpadminbar a.exactmetrics-button:focus,#wpadminbar a.exactmetrics-button:hover,#wpadminbar button.exactmetrics-button:focus,#wpadminbar button.exactmetrics-button:hover{background-color:#37276a;border-color:#37276a;color:#fff;border-width:1px 1px 2px}#wpadminbar .exactmetrics-widget-error{padding:0;text-align:center}#wpadminbar .exactmetrics-widget-error h2{font-size:18px;font-weight:700}#wpadminbar .exactmetrics-widget-error h2:before{display:none}#wpadminbar .exactmetrics-widget-error .exactmetrics-error-title{font-weight:700;font-size:24px}#wpadminbar .exactmetrics-widget-error .exactmetrics-error-content{font-size:16px}#wpadminbar .exactmetrics-widget-error .exactmetrics-error-footer{margin:35px 0 0;padding:15px 0 0;border-top:1px solid #ccc}#wpadminbar .exactmetrics-widget-error .swal2-icon,#wpadminbar .exactmetrics-widget-error .swal2-icon *,#wpadminbar .swal2-icon{-webkit-box-sizing:content-box;box-sizing:content-box}#wpadminbar .swal2-icon{border:.25em solid rgba(0,0,0,0);border-radius:50%;cursor:default;height:5em;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;line-height:5em;margin:1.25em auto 1.875em;position:relative;width:5em;zoom:normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#wpadminbar .swal2-animate-error-icon .swal2-x-mark{animation:swal2-animate-error-x-mark .5s;-webkit-animation:swal2-animate-error-x-mark .5s;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;position:relative}#wpadminbar .swal2-animate-error-icon{animation:swal2-animate-error-icon .5s;-webkit-animation:swal2-animate-error-icon .5s}#wpadminbar .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{right:1.0625em;-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform:rotate(-45deg)}#wpadminbar .swal2-icon.swal2-error [class^=swal2-x-mark-line]{background-color:#f27474;border-radius:.125em;display:block;height:.3125em;position:absolute;top:2.3125em;width:2.9375em}#wpadminbar .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{left:1em;-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform:rotate(45deg)}#wpadminbar .swal2-icon.swal2-error{border-color:#f27474}#wpadminbar .quicklinks .exactmetrics-powered-by{display:none}@-webkit-keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0deg);transform:rotateX(0deg);opacity:1}}@keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0deg);transform:rotateX(0deg);opacity:1}}@-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}}#wpadminbar .exactmetrics-not-authenticated-notice{text-align:center;font-family:Arial,Helvetica,Trebuchet MS,sans-serif;margin-bottom:17px;border:none}#wpadminbar .exactmetrics-not-authenticated-notice h3{color:#222;font-size:18px;font-weight:700;margin-top:17px}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate{max-width:975px;margin-right:auto;margin-left:auto}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate p{font-size:15px;line-height:1.4;color:#222;margin:5px 0 30px}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate .exactmetrics-wp-button{color:#555;background:#f7f7f7;-webkit-box-shadow:0 1px 0 #ccc;box-shadow:0 1px 0 #ccc;vertical-align:top;display:inline-block;text-decoration:none;font-size:13px;line-height:26px;height:28px;margin:0 6px;padding:0 10px 1px;cursor:pointer;border:1px solid #ccc;-webkit-appearance:none;border-radius:3px;white-space:nowrap;-webkit-box-sizing:border-box;box-sizing:border-box}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate .exactmetrics-wp-button:hover{background:#fafafa;border-color:#999;color:#23282d}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate .exactmetrics-wp-button.exactmetrics-wp-button-primary{background:#0085ba;border-color:#0073aa #006799 #006799;-webkit-box-shadow:0 1px 0 #006799;box-shadow:0 1px 0 #006799;color:#fff;text-decoration:none;text-shadow:0 -1px 1px #006799,-1px 0 1px #006799,0 1px 1px #006799,1px 0 1px #006799}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate .exactmetrics-wp-button.exactmetrics-wp-button-primary:hover{background:#008ec2;border-color:#006799;color:#fff}#wpadminbar .exactmetrics-notifications-indicator{padding-top:10px}#wpadminbar .exactmetrics-notifications-indicator a{margin-right:0;position:relative;height:auto;max-width:35px;padding:0}#wpadminbar .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}#wpadminbar .exactmetrics-menu-notification-indicator{min-width:8px;height:18px;border-radius:9px;background:#ca4a1f;display:inline-block;margin-right:8px;font-size:11px;font-weight:400;color:#fff;text-align:center;line-height:1.6;padding:0 5px}@media (max-width:782px){#wpadminbar .exactmetrics-menu-notification-indicator{margin:0 -13px 10px 0;z-index:10;position:relative}}#wpadminbar .exactmetrics-roller{display:inline-block;position:relative;width:58px;height:58px}@-webkit-keyframes exactmetrics-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@keyframes exactmetrics-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}
1
+ .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)}}#wpadminbar .exactmetrics-frontend-stats{position:absolute;top:32px;background:#fff;width:100vw;right:0;color:#000;padding:0 20px 20px;-webkit-box-shadow:0 5px 25px -10px rgba(0,0,0,.15);box-shadow:0 5px 25px -10px rgba(0,0,0,.15);-webkit-box-sizing:border-box;box-sizing:border-box;min-height:104px}@media (max-width:1023px){#wpadminbar .exactmetrics-frontend-stats{padding:0 20px 20px}}@media (max-width:782px){#wpadminbar .exactmetrics-frontend-stats{top:46px}}#wpadminbar .exactmetrics-adminbar-menu-item{position:static}@media (max-width:782px){#wpadminbar .exactmetrics-adminbar-menu-item{display:block}#wpadminbar .exactmetrics-adminbar-menu-item .exactmetrics-admin-bar-handle-text{display:none}#wpadminbar .exactmetrics-adminbar-menu-item .dashicons-chart-bar:before{font-size:28px;margin-top:10px;width:28px;height:28px}}#wpadminbar .exactmetrics-toggle{cursor:pointer}#wpadminbar .exactmetrics-toggle-active{background:#fff;color:#393f4c}#wpadminbar .exactmetrics-toggle-active:focus,#wpadminbar .exactmetrics-toggle-active:hover{color:#6528f5}#wpadminbar .ab-item.exactmetrics-toggle-active .ab-icon:before{color:#393f4c}#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active{background:#fff;color:#393f4c}#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active .ab-icon,#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active .ab-icon:before{color:#393f4c}#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active:focus,#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active:focus .ab-icon:before,#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active:hover,#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active:hover .ab-icon:before{color:#6528f5}#wpadminbar .exactmetrics-frontend-stats-inner h3{font-size:13px;line-height:1;color:#4d3f7a;margin:13px 0;font-weight:500}#wpadminbar .exactmetrics-frontend-stats-inner h3 span{line-height:1;font-weight:700}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;background-color:#f4f3f7;border-radius:10px;padding-top:24px;padding-bottom:24px}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area .exactmetrics-stats-column{margin-left:20px;padding-right:60px;border-right:1px solid #d6e2ed}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area .exactmetrics-stats-column:first-child{border:none}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area:not(.exactmetrics-pageinsights-data) .exactmetrics-frontend-column-button,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area:not(.exactmetrics-pageinsights-data) .exactmetrics-stats-column:last-child{border:none;padding-right:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:881px){#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area{-ms-flex-wrap:wrap;flex-wrap:wrap;padding:20px 20px 0}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area .exactmetrics-stats-column{width:calc(50% - 20px);padding:0;margin:0 0 20px;border:none}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area .exactmetrics-stats-column:last-child{width:100%;text-align:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-infobox-change,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-infobox-change div,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-infobox-change span{line-height:1}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-compare,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-prev{display:inline-block}@media (max-width:1280px){#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-compare,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-prev{float:none;clear:both}}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-compare{color:#9087ac;font-size:12px}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-prev{font-size:14px;margin-left:6px}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-prev .exactmetrics-arrow{vertical-align:middle}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow{width:10px;height:11px;display:inline-block;background-size:contain;background-repeat:no-repeat}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow.exactmetrics-down{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAXVBMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjip09rAAAAHnRSTlMA8IciAeKVlnAwD/bp1ci5on1URtyyl2dhPzccFQOiNcZVAAAAg0lEQVQoz9XNWQ6DMAxFUUNCmwBl7Dx4/8tsjCAvQd4A98OWdT5MaOr74UtaLTOPqhRByuNL7fxefs9ZoOPmlYsdmB3RLdzFOxV759BMHQv5REqWJjKV7NZEGRc4WVqpMqu4CBtdP4s8IoAujQwACAFAAI3OABAgJ4BGgJzkuVrt0+sPB0gVjZ7FTpgAAAAASUVORK5CYII=)}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow.exactmetrics-down.exactmetrics-green{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMADloG+qFg0bOrm1RNGJCAd3FoRe/Zyci8kjIuLCxb7jsAAACJSURBVCjP3cpbFsIgDEXRC8G29mVrfWvmP00DcREtHYHnI0A2sB7T5LEVnZh52RLHkv8DeblCnhTnnc/DSlquZXWQd+1+ZIwrwoWlqzORv7EBS4jnjbLMCUYAfaKGPlIlaIFMO5UuKGidUhp6BYwsAULOhxVYldFewagAowxFxwiNQkkKZf38DW9jKhaFyDomEwAAAABJRU5ErkJggg==)}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow.exactmetrics-up{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMA8Icj45jrlzD20bqkfXJkV0sUD9zWxbaLcT43HO3asg8AAACASURBVCjP3clJFsIgEADRisRA5slZuf81ReQ1UZILpBa1+SyaDeup3OotsPa4AUIJCCUQKYVIERKKcC7dKqEIp1fmfugDRcgVXui+JFAogtB60nDxYBDh5mng6p49WQj6IyNTZcsHP0JjbQfMd8Of0I9IIqEdSOGkXZWhrpsJ6Q1+nBSNjDcDLgAAAABJRU5ErkJggg==)}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow.exactmetrics-up.exactmetrics-red{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAZCAMAAAAc9R5vAAAAV1BMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjhHHlCMAAAAHHRSTlMALTzj+N0V79kkHNVD0U5IIBnqy8K3VTcSB704vhc5cQAAAJRJREFUKM/VjUkSwyAMBIeACRhsvC+J/v/ORErZcOADmYOm1F0lIccH51HJoIl0xbQNfaOHKhdT4ZKmLfnoiGrGOirixpsH3p8ySmM7+Zp4bvIrWOaH8MkrrofXlzlmOaHwE1ATd2fx4jZvXAK7/FmgmUdkgWj4hFSPUqA3ZBIQ1w2FELMm5GTB+XOxV8S5EM3nvX4AV4MVrf6KAvgAAAAASUVORK5CYII=)}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-red{color:#d73638}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-green{color:#5cc0a5}#wpadminbar .exactmetrics-stats-label{font-weight:700;color:#4d3f7a;font-size:13px;line-height:1}#wpadminbar .exactmetrics-stats-value{font-size:32px;color:#210f59;margin:6px 0 5px;line-height:1}#wpadminbar .exactmetrics-stats-column-title{width:30%;-ms-flex-negative:0;flex-shrink:0}#wpadminbar .exactmetrics-stats-column-title .exactmetrics-stats-value{white-space:pre;text-overflow:ellipsis;overflow:hidden}#wpadminbar .exactmetrics-frontend-stats-loading{text-align:center;position:absolute;z-index:90;right:0;left:0;bottom:0;top:0;background:#fff;padding-top:25px;padding-bottom:25px;min-height:100px}#wpadminbar .exactmetrics-frontend-spinner{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;display:inline-block;height:2.5em;margin:10px auto;padding:0;width:2.5em;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#wpadminbar a.exactmetrics-button,#wpadminbar button.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;line-height:1;height:auto}#wpadminbar a.exactmetrics-button:focus,#wpadminbar a.exactmetrics-button:hover,#wpadminbar button.exactmetrics-button:focus,#wpadminbar button.exactmetrics-button:hover{background-color:#37276a;border-color:#37276a;color:#fff;border-width:1px 1px 2px}#wpadminbar .exactmetrics-widget-error{padding:0;text-align:center}#wpadminbar .exactmetrics-widget-error h2{font-size:18px;font-weight:700}#wpadminbar .exactmetrics-widget-error h2:before{display:none}#wpadminbar .exactmetrics-widget-error .exactmetrics-error-title{font-weight:700;font-size:24px}#wpadminbar .exactmetrics-widget-error .exactmetrics-error-content{font-size:16px}#wpadminbar .exactmetrics-widget-error .exactmetrics-error-footer{margin:35px 0 0;padding:15px 0 0;border-top:1px solid #ccc}#wpadminbar .exactmetrics-widget-error .swal2-icon,#wpadminbar .exactmetrics-widget-error .swal2-icon *{-webkit-box-sizing:content-box;box-sizing:content-box}#wpadminbar .exactmetrics-widget-error.exactmetrics-license-expired-notice .swal2-header{display:none}#wpadminbar .exactmetrics-widget-error.exactmetrics-license-expired-notice .swal2-actions{display:none!important}#wpadminbar .exactmetrics-widget-error.exactmetrics-license-expired-notice .exactmetrics-expired-license-alert-icon{display:none}#wpadminbar .exactmetrics-widget-error.exactmetrics-license-expired-notice .exactmetrics-expired-license-alert{margin:0 auto}#wpadminbar .exactmetrics-widget-error.exactmetrics-license-expired-notice .exactmetrics-expired-license-alert h3{font-size:40px;margin:0;padding:0}#wpadminbar .exactmetrics-widget-error.exactmetrics-license-expired-notice .exactmetrics-expired-license-alert h4{font-size:20px;margin:0;padding:0}#wpadminbar .exactmetrics-widget-error.exactmetrics-license-expired-notice .exactmetrics-expired-license-alert p{font-size:16px;margin:0;padding:0}#wpadminbar .exactmetrics-widget-error.exactmetrics-license-expired-notice .exactmetrics-error-footer{display:block!important;text-align:center;padding-top:20px}#wpadminbar .exactmetrics-widget-error.exactmetrics-license-expired-notice .exactmetrics-error-footer a{display:inline-block}#wpadminbar .exactmetrics-widget-error.exactmetrics-license-expired-notice .exactmetrics-error-footer a.swal2-styled{background-color:#6528f5;border-radius:5px;color:#fff;display:inline-block;font-size:14px;margin-bottom:10px;padding:12px 28px;text-decoration:none}#wpadminbar .exactmetrics-widget-error.exactmetrics-license-expired-notice .exactmetrics-error-footer a:nth-child(3){color:#393f4c!important}#wpadminbar .swal2-icon{border:.25em solid rgba(0,0,0,0);border-radius:50%;-webkit-box-sizing:content-box;box-sizing:content-box;cursor:default;height:5em;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;line-height:5em;margin:1.25em auto 1.875em;position:relative;width:5em;zoom:normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#wpadminbar .swal2-animate-error-icon .swal2-x-mark{animation:swal2-animate-error-x-mark .5s;-webkit-animation:swal2-animate-error-x-mark .5s;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;position:relative}#wpadminbar .swal2-animate-error-icon{animation:swal2-animate-error-icon .5s;-webkit-animation:swal2-animate-error-icon .5s}#wpadminbar .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{right:1.0625em;-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform:rotate(-45deg)}#wpadminbar .swal2-icon.swal2-error [class^=swal2-x-mark-line]{background-color:#f27474;border-radius:.125em;display:block;height:.3125em;position:absolute;top:2.3125em;width:2.9375em}#wpadminbar .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{left:1em;-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform:rotate(45deg)}#wpadminbar .swal2-icon.swal2-error{border-color:#f27474}#wpadminbar .quicklinks .exactmetrics-powered-by{display:none}@-webkit-keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0deg);transform:rotateX(0deg);opacity:1}}@keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0deg);transform:rotateX(0deg);opacity:1}}@-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}}#wpadminbar .exactmetrics-not-authenticated-notice{text-align:center;font-family:Arial,Helvetica,Trebuchet MS,sans-serif;margin-bottom:17px;border:none}#wpadminbar .exactmetrics-not-authenticated-notice h3{color:#222;font-size:18px;font-weight:700;margin-top:17px}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate{max-width:975px;margin-right:auto;margin-left:auto}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate p{font-size:15px;line-height:1.4;color:#222;margin:5px 0 30px}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate .exactmetrics-wp-button{color:#555;background:#f7f7f7;-webkit-box-shadow:0 1px 0 #ccc;box-shadow:0 1px 0 #ccc;vertical-align:top;display:inline-block;text-decoration:none;font-size:13px;line-height:26px;height:28px;margin:0 6px;padding:0 10px 1px;cursor:pointer;border:1px solid #ccc;-webkit-appearance:none;border-radius:3px;white-space:nowrap;-webkit-box-sizing:border-box;box-sizing:border-box}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate .exactmetrics-wp-button:hover{background:#fafafa;border-color:#999;color:#23282d}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate .exactmetrics-wp-button.exactmetrics-wp-button-primary{background:#0085ba;border-color:#0073aa #006799 #006799;-webkit-box-shadow:0 1px 0 #006799;box-shadow:0 1px 0 #006799;color:#fff;text-decoration:none;text-shadow:0 -1px 1px #006799,-1px 0 1px #006799,0 1px 1px #006799,1px 0 1px #006799}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate .exactmetrics-wp-button.exactmetrics-wp-button-primary:hover{background:#008ec2;border-color:#006799;color:#fff}#wpadminbar .exactmetrics-notifications-indicator{padding-top:10px}#wpadminbar .exactmetrics-notifications-indicator a{margin-right:0;position:relative;height:auto;max-width:35px;padding:0}#wpadminbar .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}#wpadminbar .exactmetrics-menu-notification-indicator{min-width:8px;height:18px;border-radius:9px;background:#ca4a1f;display:inline-block;margin-right:8px;font-size:11px;font-weight:400;color:#fff;text-align:center;line-height:1.6;padding:0 5px}@media (max-width:782px){#wpadminbar .exactmetrics-menu-notification-indicator{margin:0 -13px 10px 0;z-index:10;position:relative}}#wpadminbar .exactmetrics-roller{display:inline-block;position:relative;width:58px;height:58px}@-webkit-keyframes exactmetrics-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@keyframes exactmetrics-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}
lite/assets/vue/css/reports.css CHANGED
@@ -1,3 +1,3 @@
1
  /*!
2
  * Generated with CSS Flag Sprite generator (https://www.flag-sprites.com/)
3
- */.exactmetrics-flag{display:inline-block;width:32px;height:32px;background:url(../img/flags.png) no-repeat}.exactmetrics-flag.exactmetrics-flag-ad{background-position:-32px 0}.exactmetrics-flag.exactmetrics-flag-ae{background-position:-64px 0}.exactmetrics-flag.exactmetrics-flag-af{background-position:-96px 0}.exactmetrics-flag.exactmetrics-flag-ag{background-position:-128px 0}.exactmetrics-flag.exactmetrics-flag-ai{background-position:-160px 0}.exactmetrics-flag.exactmetrics-flag-al{background-position:-192px 0}.exactmetrics-flag.exactmetrics-flag-am{background-position:-224px 0}.exactmetrics-flag.exactmetrics-flag-an{background-position:-256px 0}.exactmetrics-flag.exactmetrics-flag-ao{background-position:-288px 0}.exactmetrics-flag.exactmetrics-flag-ar{background-position:-320px 0}.exactmetrics-flag.exactmetrics-flag-as{background-position:-352px 0}.exactmetrics-flag.exactmetrics-flag-at{background-position:-384px 0}.exactmetrics-flag.exactmetrics-flag-au{background-position:-416px 0}.exactmetrics-flag.exactmetrics-flag-aw{background-position:-448px 0}.exactmetrics-flag.exactmetrics-flag-ax{background-position:-480px 0}.exactmetrics-flag.exactmetrics-flag-az{background-position:0 -32px}.exactmetrics-flag.exactmetrics-flag-ba{background-position:-32px -32px}.exactmetrics-flag.exactmetrics-flag-bb{background-position:-64px -32px}.exactmetrics-flag.exactmetrics-flag-bd{background-position:-96px -32px}.exactmetrics-flag.exactmetrics-flag-be{background-position:-128px -32px}.exactmetrics-flag.exactmetrics-flag-bf{background-position:-160px -32px}.exactmetrics-flag.exactmetrics-flag-bg{background-position:-192px -32px}.exactmetrics-flag.exactmetrics-flag-bh{background-position:-224px -32px}.exactmetrics-flag.exactmetrics-flag-bi{background-position:-256px -32px}.exactmetrics-flag.exactmetrics-flag-bj{background-position:-288px -32px}.exactmetrics-flag.exactmetrics-flag-bl{background-position:-320px -32px}.exactmetrics-flag.exactmetrics-flag-bm{background-position:-352px -32px}.exactmetrics-flag.exactmetrics-flag-bn{background-position:-384px -32px}.exactmetrics-flag.exactmetrics-flag-bo{background-position:-416px -32px}.exactmetrics-flag.exactmetrics-flag-br{background-position:-448px -32px}.exactmetrics-flag.exactmetrics-flag-bs{background-position:-480px -32px}.exactmetrics-flag.exactmetrics-flag-bt{background-position:0 -64px}.exactmetrics-flag.exactmetrics-flag-bw{background-position:-32px -64px}.exactmetrics-flag.exactmetrics-flag-by{background-position:-64px -64px}.exactmetrics-flag.exactmetrics-flag-bz{background-position:-96px -64px}.exactmetrics-flag.exactmetrics-flag-ca{background-position:-128px -64px}.exactmetrics-flag.exactmetrics-flag-cd{background-position:-160px -64px}.exactmetrics-flag.exactmetrics-flag-cf{background-position:-192px -64px}.exactmetrics-flag.exactmetrics-flag-cg{background-position:-224px -64px}.exactmetrics-flag.exactmetrics-flag-ch{background-position:-256px -64px}.exactmetrics-flag.exactmetrics-flag-ci{background-position:-288px -64px}.exactmetrics-flag.exactmetrics-flag-ck{background-position:-320px -64px}.exactmetrics-flag.exactmetrics-flag-cl{background-position:-352px -64px}.exactmetrics-flag.exactmetrics-flag-cm{background-position:-384px -64px}.exactmetrics-flag.exactmetrics-flag-cn{background-position:-416px -64px}.exactmetrics-flag.exactmetrics-flag-co{background-position:-448px -64px}.exactmetrics-flag.exactmetrics-flag-cr{background-position:-480px -64px}.exactmetrics-flag.exactmetrics-flag-cu{background-position:0 -96px}.exactmetrics-flag.exactmetrics-flag-cv{background-position:-32px -96px}.exactmetrics-flag.exactmetrics-flag-cw{background-position:-64px -96px}.exactmetrics-flag.exactmetrics-flag-cy{background-position:-96px -96px}.exactmetrics-flag.exactmetrics-flag-cz{background-position:-128px -96px}.exactmetrics-flag.exactmetrics-flag-de{background-position:-160px -96px}.exactmetrics-flag.exactmetrics-flag-dj{background-position:-192px -96px}.exactmetrics-flag.exactmetrics-flag-dk{background-position:-224px -96px}.exactmetrics-flag.exactmetrics-flag-dm{background-position:-256px -96px}.exactmetrics-flag.exactmetrics-flag-do{background-position:-288px -96px}.exactmetrics-flag.exactmetrics-flag-dz{background-position:-320px -96px}.exactmetrics-flag.exactmetrics-flag-ec{background-position:-352px -96px}.exactmetrics-flag.exactmetrics-flag-ee{background-position:-384px -96px}.exactmetrics-flag.exactmetrics-flag-eg{background-position:-416px -96px}.exactmetrics-flag.exactmetrics-flag-eh{background-position:-448px -96px}.exactmetrics-flag.exactmetrics-flag-er{background-position:-480px -96px}.exactmetrics-flag.exactmetrics-flag-es{background-position:0 -128px}.exactmetrics-flag.exactmetrics-flag-et{background-position:-32px -128px}.exactmetrics-flag.exactmetrics-flag-eu{background-position:-64px -128px}.exactmetrics-flag.exactmetrics-flag-fi{background-position:-96px -128px}.exactmetrics-flag.exactmetrics-flag-fj{background-position:-128px -128px}.exactmetrics-flag.exactmetrics-flag-fk{background-position:-160px -128px}.exactmetrics-flag.exactmetrics-flag-fm{background-position:-192px -128px}.exactmetrics-flag.exactmetrics-flag-fo{background-position:-224px -128px}.exactmetrics-flag.exactmetrics-flag-fr{background-position:-256px -128px}.exactmetrics-flag.exactmetrics-flag-ga{background-position:-288px -128px}.exactmetrics-flag.exactmetrics-flag-gb{background-position:-320px -128px}.exactmetrics-flag.exactmetrics-flag-gd{background-position:-352px -128px}.exactmetrics-flag.exactmetrics-flag-ge{background-position:-384px -128px}.exactmetrics-flag.exactmetrics-flag-gg{background-position:-416px -128px}.exactmetrics-flag.exactmetrics-flag-gh{background-position:-448px -128px}.exactmetrics-flag.exactmetrics-flag-gi{background-position:-480px -128px}.exactmetrics-flag.exactmetrics-flag-gl{background-position:0 -160px}.exactmetrics-flag.exactmetrics-flag-gm{background-position:-32px -160px}.exactmetrics-flag.exactmetrics-flag-gn{background-position:-64px -160px}.exactmetrics-flag.exactmetrics-flag-gp{background-position:-96px -160px}.exactmetrics-flag.exactmetrics-flag-gq{background-position:-128px -160px}.exactmetrics-flag.exactmetrics-flag-gr{background-position:-160px -160px}.exactmetrics-flag.exactmetrics-flag-gs{background-position:-192px -160px}.exactmetrics-flag.exactmetrics-flag-gt{background-position:-224px -160px}.exactmetrics-flag.exactmetrics-flag-gu{background-position:-256px -160px}.exactmetrics-flag.exactmetrics-flag-gw{background-position:-288px -160px}.exactmetrics-flag.exactmetrics-flag-gy{background-position:-320px -160px}.exactmetrics-flag.exactmetrics-flag-hk{background-position:-352px -160px}.exactmetrics-flag.exactmetrics-flag-hn{background-position:-384px -160px}.exactmetrics-flag.exactmetrics-flag-hr{background-position:-416px -160px}.exactmetrics-flag.exactmetrics-flag-ht{background-position:-448px -160px}.exactmetrics-flag.exactmetrics-flag-hu{background-position:-480px -160px}.exactmetrics-flag.exactmetrics-flag-ic{background-position:0 -192px}.exactmetrics-flag.exactmetrics-flag-id{background-position:-32px -192px}.exactmetrics-flag.exactmetrics-flag-ie{background-position:-64px -192px}.exactmetrics-flag.exactmetrics-flag-il{background-position:-96px -192px}.exactmetrics-flag.exactmetrics-flag-im{background-position:-128px -192px}.exactmetrics-flag.exactmetrics-flag-in{background-position:-160px -192px}.exactmetrics-flag.exactmetrics-flag-iq{background-position:-192px -192px}.exactmetrics-flag.exactmetrics-flag-ir{background-position:-224px -192px}.exactmetrics-flag.exactmetrics-flag-is{background-position:-256px -192px}.exactmetrics-flag.exactmetrics-flag-it{background-position:-288px -192px}.exactmetrics-flag.exactmetrics-flag-je{background-position:-320px -192px}.exactmetrics-flag.exactmetrics-flag-jm{background-position:-352px -192px}.exactmetrics-flag.exactmetrics-flag-jo{background-position:-384px -192px}.exactmetrics-flag.exactmetrics-flag-jp{background-position:-416px -192px}.exactmetrics-flag.exactmetrics-flag-ke{background-position:-448px -192px}.exactmetrics-flag.exactmetrics-flag-kg{background-position:-480px -192px}.exactmetrics-flag.exactmetrics-flag-kh{background-position:0 -224px}.exactmetrics-flag.exactmetrics-flag-ki{background-position:-32px -224px}.exactmetrics-flag.exactmetrics-flag-km{background-position:-64px -224px}.exactmetrics-flag.exactmetrics-flag-kn{background-position:-96px -224px}.exactmetrics-flag.exactmetrics-flag-kp{background-position:-128px -224px}.exactmetrics-flag.exactmetrics-flag-kr{background-position:-160px -224px}.exactmetrics-flag.exactmetrics-flag-kw{background-position:-192px -224px}.exactmetrics-flag.exactmetrics-flag-ky{background-position:-224px -224px}.exactmetrics-flag.exactmetrics-flag-kz{background-position:-256px -224px}.exactmetrics-flag.exactmetrics-flag-la{background-position:-288px -224px}.exactmetrics-flag.exactmetrics-flag-lb{background-position:-320px -224px}.exactmetrics-flag.exactmetrics-flag-lc{background-position:-352px -224px}.exactmetrics-flag.exactmetrics-flag-li{background-position:-384px -224px}.exactmetrics-flag.exactmetrics-flag-lk{background-position:-416px -224px}.exactmetrics-flag.exactmetrics-flag-lr{background-position:-448px -224px}.exactmetrics-flag.exactmetrics-flag-ls{background-position:-480px -224px}.exactmetrics-flag.exactmetrics-flag-lt{background-position:0 -256px}.exactmetrics-flag.exactmetrics-flag-lu{background-position:-32px -256px}.exactmetrics-flag.exactmetrics-flag-lv{background-position:-64px -256px}.exactmetrics-flag.exactmetrics-flag-ly{background-position:-96px -256px}.exactmetrics-flag.exactmetrics-flag-ma{background-position:-128px -256px}.exactmetrics-flag.exactmetrics-flag-mc{background-position:-160px -256px}.exactmetrics-flag.exactmetrics-flag-md{background-position:-192px -256px}.exactmetrics-flag.exactmetrics-flag-me{background-position:-224px -256px}.exactmetrics-flag.exactmetrics-flag-mf{background-position:-256px -256px}.exactmetrics-flag.exactmetrics-flag-mg{background-position:-288px -256px}.exactmetrics-flag.exactmetrics-flag-mh{background-position:-320px -256px}.exactmetrics-flag.exactmetrics-flag-mk{background-position:-352px -256px}.exactmetrics-flag.exactmetrics-flag-ml{background-position:-384px -256px}.exactmetrics-flag.exactmetrics-flag-mm{background-position:-416px -256px}.exactmetrics-flag.exactmetrics-flag-mn{background-position:-448px -256px}.exactmetrics-flag.exactmetrics-flag-mo{background-position:-480px -256px}.exactmetrics-flag.exactmetrics-flag-mp{background-position:0 -288px}.exactmetrics-flag.exactmetrics-flag-mq{background-position:-32px -288px}.exactmetrics-flag.exactmetrics-flag-mr{background-position:-64px -288px}.exactmetrics-flag.exactmetrics-flag-ms{background-position:-96px -288px}.exactmetrics-flag.exactmetrics-flag-mt{background-position:-128px -288px}.exactmetrics-flag.exactmetrics-flag-mu{background-position:-160px -288px}.exactmetrics-flag.exactmetrics-flag-mv{background-position:-192px -288px}.exactmetrics-flag.exactmetrics-flag-mw{background-position:-224px -288px}.exactmetrics-flag.exactmetrics-flag-mx{background-position:-256px -288px}.exactmetrics-flag.exactmetrics-flag-my{background-position:-288px -288px}.exactmetrics-flag.exactmetrics-flag-mz{background-position:-320px -288px}.exactmetrics-flag.exactmetrics-flag-na{background-position:-352px -288px}.exactmetrics-flag.exactmetrics-flag-nc{background-position:-384px -288px}.exactmetrics-flag.exactmetrics-flag-ne{background-position:-416px -288px}.exactmetrics-flag.exactmetrics-flag-nf{background-position:-448px -288px}.exactmetrics-flag.exactmetrics-flag-ng{background-position:-480px -288px}.exactmetrics-flag.exactmetrics-flag-ni{background-position:0 -320px}.exactmetrics-flag.exactmetrics-flag-nl{background-position:-32px -320px}.exactmetrics-flag.exactmetrics-flag-no{background-position:-64px -320px}.exactmetrics-flag.exactmetrics-flag-np{background-position:-96px -320px}.exactmetrics-flag.exactmetrics-flag-nr{background-position:-128px -320px}.exactmetrics-flag.exactmetrics-flag-nu{background-position:-160px -320px}.exactmetrics-flag.exactmetrics-flag-nz{background-position:-192px -320px}.exactmetrics-flag.exactmetrics-flag-om{background-position:-224px -320px}.exactmetrics-flag.exactmetrics-flag-pa{background-position:-256px -320px}.exactmetrics-flag.exactmetrics-flag-pe{background-position:-288px -320px}.exactmetrics-flag.exactmetrics-flag-pf{background-position:-320px -320px}.exactmetrics-flag.exactmetrics-flag-pg{background-position:-352px -320px}.exactmetrics-flag.exactmetrics-flag-ph{background-position:-384px -320px}.exactmetrics-flag.exactmetrics-flag-pk{background-position:-416px -320px}.exactmetrics-flag.exactmetrics-flag-pl{background-position:-448px -320px}.exactmetrics-flag.exactmetrics-flag-pn{background-position:-480px -320px}.exactmetrics-flag.exactmetrics-flag-pr{background-position:0 -352px}.exactmetrics-flag.exactmetrics-flag-ps{background-position:-32px -352px}.exactmetrics-flag.exactmetrics-flag-pt{background-position:-64px -352px}.exactmetrics-flag.exactmetrics-flag-pw{background-position:-96px -352px}.exactmetrics-flag.exactmetrics-flag-py{background-position:-128px -352px}.exactmetrics-flag.exactmetrics-flag-qa{background-position:-160px -352px}.exactmetrics-flag.exactmetrics-flag-re{background-position:-192px -352px}.exactmetrics-flag.exactmetrics-flag-ro{background-position:-224px -352px}.exactmetrics-flag.exactmetrics-flag-rs{background-position:-256px -352px}.exactmetrics-flag.exactmetrics-flag-ru{background-position:-288px -352px}.exactmetrics-flag.exactmetrics-flag-rw{background-position:-320px -352px}.exactmetrics-flag.exactmetrics-flag-sa{background-position:-352px -352px}.exactmetrics-flag.exactmetrics-flag-sb{background-position:-384px -352px}.exactmetrics-flag.exactmetrics-flag-sc{background-position:-416px -352px}.exactmetrics-flag.exactmetrics-flag-sd{background-position:-448px -352px}.exactmetrics-flag.exactmetrics-flag-se{background-position:-480px -352px}.exactmetrics-flag.exactmetrics-flag-sg{background-position:0 -384px}.exactmetrics-flag.exactmetrics-flag-sh{background-position:-32px -384px}.exactmetrics-flag.exactmetrics-flag-si{background-position:-64px -384px}.exactmetrics-flag.exactmetrics-flag-sk{background-position:-96px -384px}.exactmetrics-flag.exactmetrics-flag-sl{background-position:-128px -384px}.exactmetrics-flag.exactmetrics-flag-sm{background-position:-160px -384px}.exactmetrics-flag.exactmetrics-flag-sn{background-position:-192px -384px}.exactmetrics-flag.exactmetrics-flag-so{background-position:-224px -384px}.exactmetrics-flag.exactmetrics-flag-sr{background-position:-256px -384px}.exactmetrics-flag.exactmetrics-flag-ss{background-position:-288px -384px}.exactmetrics-flag.exactmetrics-flag-st{background-position:-320px -384px}.exactmetrics-flag.exactmetrics-flag-sv{background-position:-352px -384px}.exactmetrics-flag.exactmetrics-flag-sy{background-position:-384px -384px}.exactmetrics-flag.exactmetrics-flag-sz{background-position:-416px -384px}.exactmetrics-flag.exactmetrics-flag-tc{background-position:-448px -384px}.exactmetrics-flag.exactmetrics-flag-td{background-position:-480px -384px}.exactmetrics-flag.exactmetrics-flag-tf{background-position:0 -416px}.exactmetrics-flag.exactmetrics-flag-tg{background-position:-32px -416px}.exactmetrics-flag.exactmetrics-flag-th{background-position:-64px -416px}.exactmetrics-flag.exactmetrics-flag-tj{background-position:-96px -416px}.exactmetrics-flag.exactmetrics-flag-tk{background-position:-128px -416px}.exactmetrics-flag.exactmetrics-flag-tl{background-position:-160px -416px}.exactmetrics-flag.exactmetrics-flag-tm{background-position:-192px -416px}.exactmetrics-flag.exactmetrics-flag-tn{background-position:-224px -416px}.exactmetrics-flag.exactmetrics-flag-to{background-position:-256px -416px}.exactmetrics-flag.exactmetrics-flag-tr{background-position:-288px -416px}.exactmetrics-flag.exactmetrics-flag-tt{background-position:-320px -416px}.exactmetrics-flag.exactmetrics-flag-tv{background-position:-352px -416px}.exactmetrics-flag.exactmetrics-flag-tw{background-position:-384px -416px}.exactmetrics-flag.exactmetrics-flag-tz{background-position:-416px -416px}.exactmetrics-flag.exactmetrics-flag-ua{background-position:-448px -416px}.exactmetrics-flag.exactmetrics-flag-ug{background-position:-480px -416px}.exactmetrics-flag.exactmetrics-flag-us{background-position:0 -448px}.exactmetrics-flag.exactmetrics-flag-uy{background-position:-32px -448px}.exactmetrics-flag.exactmetrics-flag-uz{background-position:-64px -448px}.exactmetrics-flag.exactmetrics-flag-va{background-position:-96px -448px}.exactmetrics-flag.exactmetrics-flag-vc{background-position:-128px -448px}.exactmetrics-flag.exactmetrics-flag-ve{background-position:-160px -448px}.exactmetrics-flag.exactmetrics-flag-vg{background-position:-192px -448px}.exactmetrics-flag.exactmetrics-flag-vi{background-position:-224px -448px}.exactmetrics-flag.exactmetrics-flag-vn{background-position:-256px -448px}.exactmetrics-flag.exactmetrics-flag-vu{background-position:-288px -448px}.exactmetrics-flag.exactmetrics-flag-wf{background-position:-320px -448px}.exactmetrics-flag.exactmetrics-flag-ws{background-position:-352px -448px}.exactmetrics-flag.exactmetrics-flag-ye{background-position:-384px -448px}.exactmetrics-flag.exactmetrics-flag-yt{background-position:-416px -448px}.exactmetrics-flag.exactmetrics-flag-za{background-position:-448px -448px}.exactmetrics-flag.exactmetrics-flag-zm{background-position:-480px -448px}.exactmetrics-flag.exactmetrics-flag-zw{background-position:0 -480px}.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-report-year-in-review{margin-left:auto;margin-right:auto;max-width:960px;background-color:#fff;background-image:url(../img/confetti-background.png);background-repeat:no-repeat;background-position:0 0;margin-bottom:90px}.exactmetrics-report-year-in-review .exactmetrics-pie-chart-tooltip{left:22px;top:23px}.exactmetrics-report-year-in-review .exactmetrics-reports-doughnut-tooltip{width:120px;height:120px}.exactmetrics-report-year-in-review.exactmetrics-yir-report-calculating-row{width:610px;margin-top:50px}@media (max-width:767px){.exactmetrics-report-year-in-review.exactmetrics-yir-report-calculating-row{width:100%;margin-top:20px}}.exactmetrics-report-year-in-review a,.exactmetrics-report-year-in-review h1,.exactmetrics-report-year-in-review h2,.exactmetrics-report-year-in-review h3,.exactmetrics-report-year-in-review h4,.exactmetrics-report-year-in-review h5,.exactmetrics-report-year-in-review p,.exactmetrics-report-year-in-review span{font-family:Lato,sans-serif;margin:0}.exactmetrics-report-year-in-review h1,.exactmetrics-report-year-in-review h2,.exactmetrics-report-year-in-review h3,.exactmetrics-report-year-in-review h4,.exactmetrics-report-year-in-review h5{font-weight:900}.exactmetrics-report-year-in-review p{font-style:normal;font-weight:400;font-size:14px;line-height:24px}.exactmetrics-report-year-in-review a{text-decoration:none;padding:8px 30px;border-radius:5px;color:#fff;font-weight:700;font-size:14px;line-height:24px;text-align:center}.exactmetrics-report-year-in-review .exactmetrics-yir-separator{border-left-color:#e0e0e0;border-right-color:#e0e0e0;border-top:1px solid #e0e0e0;border-bottom:1px solid #e0e0e0}.exactmetrics-report-year-in-review .exactmetrics-yir-footer,.exactmetrics-report-year-in-review .exactmetrics-yir-header,.exactmetrics-report-year-in-review section{padding:0 90px;clear:both;overflow:hidden}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-footer,.exactmetrics-report-year-in-review .exactmetrics-yir-header,.exactmetrics-report-year-in-review section{padding:0 15px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-footer,.exactmetrics-report-year-in-review .exactmetrics-yir-header,.exactmetrics-report-year-in-review section{padding:0 30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-text-right{text-align:right}.exactmetrics-report-year-in-review .exactmetrics-yir-text-right h2{color:#fff}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header{padding:90px 0 90px 90px;background-image:url(../img/em-logo-lg.png);background-repeat:no-repeat;background-position:center right 26px;background-size:230px 200px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header{padding:50px 15px 40px;background-image:none}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header{padding-left:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating{padding:90px 0 100px 60px;background-image:url(../img/em-logo-lg.png);background-position:right top 83px;background-size:160px 150px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating{padding-left:15px;padding-right:15px;padding-top:50px;background-size:140px 180px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-title{font-size:32px;line-height:37px;color:#393f4c;margin-top:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-title{font-size:26px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-summary{font-weight:400;font-size:14px;line-height:20px;color:#393f4c;max-width:385px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-summary{font-size:12px;max-width:230px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link{background:#4e9ee7;border-radius:5px;font-weight:700;font-size:14px;line-height:16px;text-align:center;color:#fff;border:0;margin-right:0;padding:12px 20px;margin-top:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link{width:inherit}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link{width:inherit}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link:active,.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-subtitle{font-size:20px;font-weight:900;background:#338eef;border-radius:30px;color:#fff;padding:14px 25px 14px 90px;position:relative;display:inline-block}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-subtitle{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-subtitle svg{position:absolute;left:5px;bottom:-5px}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-title{font-style:normal;font-weight:900;font-size:48px;line-height:58px;color:#393f4c;margin-bottom:15px;margin-top:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-title{font-size:20px;line-height:20px;margin-bottom:10px;margin-top:30px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-title{font-size:32px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-summary{font-weight:500;font-size:24px;line-height:32px;color:#828282;max-width:480px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-summary{font-size:16px;line-height:18px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-summary{font-size:16px;line-height:20px;max-width:400px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart{background:#fff;-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);border-radius:4.85258px}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-header{display:-webkit-box;display:-ms-flexbox;display:flex;padding:20px 30px;border-bottom:2px solid #f2f2f2;margin-bottom:55px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-header{margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-header div{width:100%}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-title{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:right;color:#393f4c;margin:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-subtitle{font-size:10px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content{padding:0 50px 15px 30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content{padding:0 15px 15px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content .exactmetrics-reports-bar-chart-holder{position:relative}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content .exactmetrics-reports-bar-chart-holder .exactmetrics-chart-tooltip{position:absolute;pointer-events:none}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box{padding-top:0;position:relative;border:0;-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);background:hsla(0,0%,100%,.38)}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box.exactmetrics-year-in-review-table-box-blur-report .exactmetrics-year-in-review-table-box-list{-webkit-filter:blur(5px);filter:blur(5px)}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header{padding:20px 30px;border-bottom:2px solid #f2f2f2;margin-bottom:30px}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-title{display:inline-block}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-title .exactmetrics-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-title .exactmetrics-report-title{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-subtitle{display:inline-block;float:right}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-subtitle .exactmetrics-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:right;color:#393f4c;margin:0;text-transform:capitalize}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list{padding-bottom:30px}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item{padding:9px 30px}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a{padding:0;border-radius:0;line-height:37px;line-height:inherit}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a:active,.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a:focus,.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a:hover{-webkit-box-shadow:none;box-shadow:none;background:none}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer{position:absolute;bottom:-34px;width:100%;left:0;text-align:center}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer{bottom:-40px}}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer .exactmetrics-yir-tooltip{font-weight:400;font-size:12px;color:#828282}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer .exactmetrics-yir-tooltip span{font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer .exactmetrics-yir-tooltip .exactmetrics-yir-icon{background:#dadada;border-radius:50%;padding:0;margin-right:10px;color:#fff;width:15px;height:15px;display:inline-block;line-height:16px}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart{border:0;margin:0;padding:0;width:100%}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-reports-pie-chart-holder{display:inline-block;float:left}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-reports-pie-chart-holder{display:block;float:none}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-reports-pie-chart-holder .exactmetrics-pie-chart{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAFxSURBVHgB7dlPTsJAFAbwb6BxQVzgTThCXaCC3kEPoFBP0PYGVQ9gvUNFY2PSI3AUFhISgx1njAsjIfa1jA+S90u6aDOTzpf5s5gHCF4KNVyePPntthea7j1Ad9FcUWr9cDc5SkFEDjAavoZKlREc0BrR7aQfU/qQAgTDlwut1D0cUmp5mGSDomr7FgjM4M/hmNZ2aVZHCmD4cK9HaUwN8B9Ih4KHBm4e+7VOsd/Gp7lGTds4AyQSgJsE4CYBuEkAbhKAmwTgJgG4SQBuEoCbBOAmAbhJAG4SgFuju9Emd5qbIktoHaUQq/nbwdcDXMORRktoHTvgJOsnPz4lo2HeNaFI1Zcq3MzA3EtXfrTnJXCAGmCGLUMNMK3SqOy8Byvflh9VC4QFCEh7wG5MU8v1/27XCq8Gz7P2YpHa97KzP1ZaR6jAFrxBQK5xBWd5ZEJsfDNapoAeJ9lxROqDGr4L3nZJ+GjO7qupnV1zchUQO+YTOT9YisPBuEEAAAAASUVORK5CYII=);background-color:#fff;background-repeat:no-repeat;background-position:50%}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content{padding-left:50px;padding-top:35px;float:left}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content{padding-left:0;padding-top:20px;float:none}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin-bottom:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-title{font-size:16px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:18px;line-height:24px;color:#393f4c;margin-top:10px;margin-bottom:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-subtitle{font-size:14px;line-height:14px}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend{position:relative;left:inherit;top:inherit;-webkit-transform:inherit;-ms-transform:inherit;transform:inherit;margin:24px 0 0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend{margin:10px 0 0}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li{display:inline-block;margin-right:30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li{margin-right:10px}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-color{border-radius:0;width:16px;height:16px;margin-bottom:-3px;margin-right:5px}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-text,.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-value{font-family:Lato;font-style:normal;font-weight:700;font-size:14px;line-height:24px;color:#393f4c;min-width:inherit;margin-right:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-text,.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-value{font-size:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip{border:2px solid #e3f1ff;border-radius:5px;padding-top:45px;padding-bottom:45px;overflow:hidden;background:#f3f9ff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip{padding-top:15px;padding-bottom:15px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip a,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip h3,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip p{font-family:Lato,sans-serif;margin:0}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-icon{float:left;width:144px;text-align:center}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-icon{width:90px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-icon img{background:#338eef;padding:12px;border-radius:50%;margin-top:12px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content{float:left;width:calc(100% - 144px);padding-right:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content{padding-right:0;width:calc(100% - 90px)}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-title{font-weight:900;font-size:18px;line-height:27px;color:#333;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-title{font-size:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-summary{font-weight:400;font-size:18px;line-height:27px;color:#393f4c;margin-bottom:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-summary{font-size:12px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper{margin-top:15px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link{font-weight:900;font-size:18px;line-height:27px;-webkit-text-decoration-line:underline;text-decoration-line:underline;color:#338eef;margin-top:15px;padding:0;border-radius:0;text-align:left}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link:hover{color:#2469b2;-webkit-box-shadow:none;box-shadow:none}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay{position:absolute;top:0;left:0;width:calc(100% - 25px);height:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content{margin-top:66px;text-align:center;height:calc(100% - 66px);padding-top:80px;padding-right:25px;padding-left:25px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-details{font-size:14px;line-height:20px;font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay{display:inline-block;border-radius:5px;font-size:14px;line-height:20px;color:#fff;padding:10px 30px;text-decoration:none;font-family:Lato;background:#338eef;margin-top:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success{background:#1ec185}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success:hover{opacity:.8;background:#10ad73}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay:hover{border:0;background:#2469b2;outline:none}.exactmetrics-report-year-in-review .exactmetrics-yir-audience{padding-bottom:85px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience{padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:685px;margin-bottom:80px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-summary{font-size:18px;line-height:20px;margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors{width:100%;margin-bottom:70px;padding-left:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors{margin-bottom:20px;padding-left:0;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions img,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors img{margin-bottom:15px;max-height:28px}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions h4,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors h4{font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions h4,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors h4{font-size:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions .exactmetrics-yir-number,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors .exactmetrics-yir-number{font-weight:900;font-size:60px;line-height:72px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions .exactmetrics-yir-number,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors .exactmetrics-yir-number{font-size:40px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-visitor-by-chart{margin-bottom:60px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-visitor-by-chart{margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics{padding-top:85px;padding-bottom:85px;background-image:url(../img/map-background.png);background-repeat:no-repeat;background-position:top}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics{padding-top:30px;padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:656px;margin-bottom:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-summary{font-size:18px;line-height:20px;margin-bottom:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries{display:block}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country{width:50%;margin-top:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-number-one{font-size:24px;line-height:29px;color:#fff;background:#338eef;width:50px;height:50px;border-radius:50%;display:inline-block;text-align:center;line-height:50px;margin-bottom:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-flag{display:block}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-flag{margin:0 auto}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-flag.exactmetrics-flag-zz{display:none}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-name{font-size:32px;line-height:38px;color:#393f4c;margin-top:0;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-name{font-size:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-visitors{font-weight:400;font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-visitors{font-size:16px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-countries-graph{width:50%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-countries-graph{width:100%}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-know-visitors{font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-know-visitors{font-size:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info{margin-top:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info{width:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info span,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info span,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info span{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info h2,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info h2,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info h2{font-size:30px;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info p,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info p,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info p{font-size:10px;line-height:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior{padding-top:85px;padding-bottom:85px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior{padding-top:30px;padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:585px;margin-bottom:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data{display:block;margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary{width:50%;margin-top:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary img{width:32px;height:32px;margin-left:-3px;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary img{margin-left:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-time-spent{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent{font-size:32px;line-height:38px;color:#393f4c;margin-top:15px;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent{margin-top:5px;margin-bottom:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent .exactmetrics-yir-number{font-weight:900;font-size:48px;line-height:58px;color:#338eef;margin-right:10px;overflow-wrap:break-word}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent .exactmetrics-yir-number{font-size:30px;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent .exactmetrics-yir-type{font-weight:900;font-size:16px;line-height:103.8%;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-each-visitor-spent{font-weight:400;font-size:18px;line-height:24px;color:#393f4c;max-width:330px;margin-top:15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-each-visitor-spent{font-size:14px;max-width:100%;margin-top:5px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-top-pages-graph{width:50%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-top-pages-graph{width:100%}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-most-visitors-device{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-most-visitors-device{font-size:20px;line-height:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info{margin-top:20px;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info{width:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info span,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info h2,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info p,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-grow-traffic-tip{margin-top:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-grow-traffic-tip{margin-top:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from{margin-top:55px;margin-bottom:100px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from{margin-top:20px;margin-bottom:60px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-title{font-size:32px;line-height:44px;color:#393f4c;margin-bottom:30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-title{font-size:20px;line-height:20px;margin-bottom:15px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals{display:block}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-keywords,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-referrals{width:50%;position:relative}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-keywords,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-referrals{width:100%}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-keywords{padding-right:25px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-keywords{padding-right:0;margin-bottom:60px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-referrals{padding-left:25px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-referrals{padding-left:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce{padding-top:85px;padding-bottom:30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce{padding-top:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number{width:55%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number{width:30%}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-products-sold,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-revenue{padding:75px 0}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-title{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-title{font-size:14px;line-height:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-amount{font-size:54px;line-height:65px;color:#338eef;overflow-wrap:break-word}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-amount{font-size:24px;line-height:40px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products{width:45%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products{width:70%}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular{-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);border-radius:3.59813px;padding:30px;margin-bottom:30px}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning img,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular img{margin-bottom:5px}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning span,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning span,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular span{font-size:14px;line-height:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning .exactmetrics-yir-product-title,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular .exactmetrics-yir-product-title{font-weight:700;font-size:28px;line-height:32px;color:#338eef;margin-top:10px;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning .exactmetrics-yir-product-title,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular .exactmetrics-yir-product-title{font-size:16px;line-height:16px;margin-bottom:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning .exactmetrics-yir-count,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular .exactmetrics-yir-count{font-weight:400;font-size:16px;line-height:19px;color:#828282}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning .exactmetrics-yir-count,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular .exactmetrics-yir-count{font-size:12px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-revenue-by-month{margin-bottom:50px}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you{padding-top:90px;background-color:#fff;background-image:url(../img/confetti-background.png);background-position:0 0;padding-bottom:85px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you{padding-top:0;padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-title{font-size:54px;line-height:65px;text-align:center;color:#393f4c;max-width:588px;margin:0 auto 10px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-title{font-size:30px;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-summary{font-weight:500;font-size:20px;line-height:28px;text-align:center;color:#393f4c;max-width:585px;margin:0 auto 15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-summary{font-size:14px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-amazing-year{font-weight:700;font-size:32px;line-height:37px;text-align:center;color:#393f4c;font-style:italic;margin-bottom:35px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-amazing-year{font-size:24px;line-height:24px;margin-bottom:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors{text-align:center;margin-bottom:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors{margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author{display:inline-block;padding:0 45px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author{padding:0 10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-thumbnail{width:96px;height:96px;background-repeat:no-repeat;margin:0 auto 10px}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-thumbnail.chris{background-image:url(../img/chris.png)}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-thumbnail.syed{background-image:url(../img/syed.png)}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-name{font-weight:900;font-size:18px;line-height:22px;text-align:center;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-name{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review{background:#338eef;-webkit-box-shadow:0 8px 8px rgba(30,88,150,.2);box-shadow:0 8px 8px rgba(30,88,150,.2);border-radius:5px;padding:24px;display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review{display:block}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content,.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-rating,.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button{width:100%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content{text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content span{font-weight:900;font-size:14px;color:#fff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content span{font-size:12px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content h3{font-weight:900;font-size:20px;line-height:31px;color:#fff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content h3{font-size:18px;line-height:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-rating .exactmetrics-yir-five-star{margin:0;padding:12px 0 0;text-align:center}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-rating .exactmetrics-yir-five-star li{list-style:none;display:inline-block;margin-right:7px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-rating .exactmetrics-yir-five-star li{margin-right:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button{text-align:center;padding-top:5px}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button a{background:#2469b3;border-radius:5px;text-align:center;height:38px;display:inline-block}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button a:active,.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button a:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button a:hover{background:#123c68}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-title{font-size:36px;line-height:44px;color:#393f4c;margin-bottom:20px;max-width:638px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-title{font-size:20px;line-height:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-summary{font-weight:500;font-size:20px;line-height:24px;color:#393f4c;max-width:450px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-summary{font-size:14px;line-height:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins{margin-top:20px;margin-left:-30px;margin-right:-30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins{margin-left:0;margin-right:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon{width:calc(50% - 60px);float:left;background:#f3f9ff;border:2px solid #e3f1ff;border-radius:5px;position:relative;min-height:260px;margin:30px 30px 0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon{width:100%;margin:30px 0;min-height:300px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top{padding-top:30px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-image{width:104px;float:left;padding-left:25px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-image .exactmetrics-addon-thumb{width:32px;height:32px;border:2px solid #e3f1ff;border-radius:5px;padding:10px;-webkit-box-sizing:content-box;box-sizing:content-box}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-text{width:calc(100% - 104px);float:left;padding-right:25px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-text .exactmetrics-addon-title{font-size:18px;line-height:24px;margin-top:0;font-family:Lato;margin-bottom:5px;color:#393f4c;font-weight:900}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-text .exactmetrics-addon-excerpt{font-weight:400;font-size:14px;line-height:18px;color:#393f4c;font-family:Lato;margin:0}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message{border-top:2px solid #e3f1ff;clear:both;padding:13px 25px;position:absolute;bottom:0;left:0;width:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-addon-status{float:right;line-height:32px;font-weight:900;font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-addon-status span{color:#d4393d}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-button{line-height:32px;background:#338eef;border-radius:3px;display:inline-block;padding:0 30px;border:0;font-weight:700;font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-button:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-button:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-button:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-addon-status span{color:#64bfa5}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-button,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-button:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-button:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-button:hover{background:rgba(51,142,239,.5)}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities{background-color:#338eef;padding-top:160px;margin-top:-90px;color:#fff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities{padding-top:100px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities h2{font-size:36px;line-height:43px;color:#fff;margin-bottom:15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities h2{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities h3{font-weight:500;font-size:20px;line-height:24px;color:#fff;max-width:575px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities h3{font-size:18px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-30px;padding-top:60px;padding-bottom:90px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities{display:block;margin-left:0;padding-bottom:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community{width:100%;background-color:#2469b2;border-radius:5px;margin-left:30px;padding:24px;position:relative;min-height:340px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community{margin-left:0;margin-bottom:30px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community{min-height:350px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-title{font-weight:900;font-size:20px;line-height:24px;margin-bottom:10px;margin-top:5px}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link,.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links{position:absolute;bottom:15px;left:24px;width:80%;width:calc(100% - 48px)}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link{background-color:#123c68;display:block}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link{padding:8px 10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links{margin:0}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links li{float:left;margin-right:8px;margin-bottom:0}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links li a{background-color:#123c68;display:block;margin:0;width:40px;height:40px;padding:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links li a:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links li a:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-footer{height:84px;background:#2368b1;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-footer{display:block;text-align:center;padding:15px 0;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-footer div{width:100%;font-weight:500;font-size:16px;color:#fff;text-align:center}.exactmetrics-report-site-speed .exactmetrics-site-speed-blur{width:100%;padding-top:70%;background-image:url(../img/site-speed-blur.png);background-repeat:no-repeat;background-size:contain;background-position:50%}.exactmetrics-report-site-speed .exactmetrics-upsell-top{max-width:80%;margin:0 auto}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-report-top{display:-webkit-box;display:-ms-flexbox;display:flex}}.exactmetrics-report-site-speed .exactmetrics-report-top h2.exactmetrics-report-top-title{margin-top:10px}.exactmetrics-report-site-speed .exactmetrics-report-top .exactmetrics-export-pdf-report{margin-right:16px}.exactmetrics-report-site-speed .exactmetrics-report-top .exactmetrics-export-pdf-report button{background-color:#f5f5f5;color:#4c6577;border-color:#dcdcdc}.exactmetrics-report-site-speed .exactmetrics-report-top .exactmetrics-run-audit-btn .exactmetrics-run-audit{background-color:#3990ec;height:39px}.exactmetrics-report-site-speed .exactmetrics-report-top .exactmetrics-run-audit-btn .exactmetrics-run-audit:hover{background-color:rgba(57,144,236,.8)}.exactmetrics-report-site-speed .exactmetrics-choose-device-button{margin-left:15px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button{display:inline-block;text-align:center;background-color:#f5f5f5;color:#444;border-color:#dcdcdc;border-radius:5px;outline:none}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button:hover{background-color:#3990ec;border-color:#1c77db;outline:none}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button:hover .svg-icons{fill:#fff}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.active{background-color:#3990ec;border-color:#1c77db;color:#fff;outline:none}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.active .svg-icons{fill:#fff}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.mobile{border-top-right-radius:0;border-bottom-right-radius:0;border-right:0;width:45px;height:40px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.mobile svg{margin-left:-6px;margin-top:-1px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.desktop{border-top-left-radius:0;border-bottom-left-radius:0;border-left:0;width:54px;height:40px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.desktop svg{margin-left:-6px;margin-top:-1px}.exactmetrics-report-site-speed .exactmetrics-site-speed-container{max-width:1010px}.exactmetrics-report-site-speed .exactmetrics-site-speed-device,.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator{width:338px;margin-right:10px;max-height:304px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator{width:100%;margin-bottom:25px}}@media screen and (min-width:768px) and (max-width:1024px){.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator{width:100%;margin-bottom:25px}}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-indicator-device-icon{margin-bottom:40px;text-align:center}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-indicator-device-icon .desktop{width:80px}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-indicator-percent-text{font-size:5em;color:#f2994a;text-align:center;font-weight:700}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-indicator-overall-text{display:inline-block;padding-top:2rem;font-weight:600;font-size:16px;text-align:center}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-progress-circle{max-width:300px;max-height:255px;width:100%;-webkit-transform:scaleX(-1) rotate(-55deg);-ms-transform:scaleX(-1) rotate(-55deg);transform:scaleX(-1) rotate(-55deg);overflow:visible}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-progress-circle__percent{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-progress-circle__container{display:inline-block;position:relative}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-progress-circle__path{-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out;overflow:visible}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats{width:662px}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-site-speed-stats{width:100%}}@media screen and (min-width:768px) and (max-width:1024px){.exactmetrics-report-site-speed .exactmetrics-site-speed-stats{width:100%}}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-report-flex{text-align:center}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-report-flex.exactmetrics-report-2-columns{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-site-speed-stat{width:49%;background-color:#fff;border:1px solid #e0e0e0;min-height:135px;margin-bottom:15px;padding-top:1.2rem}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-site-speed-stat{width:100%;margin-top:15px;margin-right:0}}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-site-speed-stat h2{font-size:40px;margin:0;padding:20px 0 10px}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-site-speed-stat p{color:#828282}.exactmetrics-report-site-speed .exactmetrics-how-to-improve h2.title{font-size:22px;color:#393f4c}div.exactmetrics-pdf-score{position:relative;margin:80px;left:-1px;top:1px}.exactmetrics-admin-page{overflow:hidden}.exactmetrics-report{padding:30px 32px;position:relative}@media (max-width:991px){.exactmetrics-report{padding-left:24px;padding-right:24px}}.exactmetrics-reports-page{margin-bottom:100px}.exactmetrics-reports-page .exactmetrics-header{padding-top:21px;padding-bottom:21px}@media (max-width:782px){.exactmetrics-reports-page .exactmetrics-report-top{margin-bottom:25px}}.exactmetrics_page.exactmetrics-downloading-pdf-report #wpbody{-webkit-filter:blur(15px);filter:blur(15px)}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion-item-details,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-pdf-score{display:block!important}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion-item-title,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion .exactmetrics-accordion div:not(:last-child){border:none!important}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion-item-trigger-icon,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-notificationsv3-container,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-progress-circle{display:none}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-header{min-height:85px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report{width:1120px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation{border-bottom:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button.exactmetrics-active-tab-button{border:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button:first-child{border-right:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-row.exactmetrics-report-row-border-top{border-top:0;margin-bottom:25px}@media (max-width:782px){.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-title{padding-left:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-title.exactmetrics-has-pagination{margin-bottom:25px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-title:before{position:inherit;left:inherit}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button{font-size:18px;padding:23px 20px 25px;text-align:left}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-infobox-row{padding:24px 60px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:25%;border-left:1px solid #bcb7cd;border-top:0;padding:0 10px 0 80px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child{border-left:none;padding-left:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-reports-ecommerce-pie-chart{width:40%;padding-top:130px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart .exactmetrics-pie-chart{margin:inherit}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart .exactmetrics-reports-pie-chart-holder{-webkit-box-pack:inherit;-ms-flex-pack:inherit;justify-content:inherit;-webkit-box-align:inherit;-ms-flex-align:inherit;align-items:inherit;margin-left:20px;-webkit-box-orient:inherit;-webkit-box-direction:inherit;-ms-flex-flow:wrap;flex-flow:wrap}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-report-box{width:calc(50% - 12.5px);margin-top:0}}@media (max-width:991px){.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-row.exactmetrics-report-row-border-top{margin-left:-32px;margin-right:-32px;padding-left:32px;padding-right:32px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex{-ms-flex-flow:inherit;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:inherit}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart{width:50%;border:none;padding-left:32px;padding-right:20px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart:first-child{border-right:1px solid #e9e7ee}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-table-box{margin-left:20px;margin-top:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-table-box:first-child{margin-left:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-report-2-columns .exactmetrics-table-box{width:calc(50% - 12.5px)}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex.exactmetrics-interests-scroll-report .exactmetrics-table-box{width:100%}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-reports-pie-chart{width:calc(50% - 12.5px)}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-reports-pie-chart:first-child{margin:0 25px 0 0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-left:25px;margin-top:0}}body.exactmetrics-reporting-page #wpbody-content{padding-bottom:0}body.exactmetrics-reporting-page .exactmetrics-red{color:#d73638}body.exactmetrics-reporting-page .exactmetrics-green{color:#5cc0a5}body.exactmetrics-reporting-page .exactmetrics-report-top{margin-top:14px;margin-bottom:24px}@media (min-width:783px) and (max-width:1130px){body.exactmetrics-reporting-page .exactmetrics-report-top{margin-bottom:25px}}body.exactmetrics-reporting-page .exactmetrics-report-top h2{margin:12px 0;display:inline-block;color:#210f59;font-size:32px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-report-top h2{display:none}}@media (min-width:783px) and (max-width:1130px){body.exactmetrics-reporting-page .exactmetrics-report-top h2{display:block;margin:0 0 25px}}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report{float:right;margin-right:25px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-export-pdf-report{float:none;margin-right:0;margin-bottom:0;text-align:center;padding-top:20px}}@media (min-width:783px) and (max-width:1130px){body.exactmetrics-reporting-page .exactmetrics-export-pdf-report{float:none;margin-bottom:0}}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button{background:#e9e7ee;color:#210f59}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button:focus,body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button:hover{background:#bcb7cd}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button[disabled=disabled]{cursor:not-allowed}body.exactmetrics-reporting-page .exactmetrics-report-realtime .exactmetrics-export-pdf-report{margin-right:0}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{display:-webkit-box;display:-ms-flexbox;display:flex;float:right}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{float:none;width:100%;-ms-flex-flow:wrap;flex-flow:wrap}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker .exactmetrics-buttons-toggle{width:100%;margin-right:0}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker .exactmetrics-buttons-toggle .exactmetrics-button{width:50%}}@media (min-width:783px) and (max-width:1130px){body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{float:right}}body.exactmetrics-reporting-page .exactmetrics-datepicker,body.exactmetrics-reporting-page .exactmetrics-hide{display:none}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container{position:relative}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container{max-width:100%}}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container.exactmetrics-hide,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .exactmetrics-hide{display:none}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-wrapper{display:block}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-wrapper .flatpickr-calendar{width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-calendar.static.open{position:relative;-webkit-box-shadow:none;box-shadow:none;border:none;width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:after,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:before{display:none}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-rContainer{width:100%;display:block}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .dayContainer,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-days{width:100%;max-width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day{max-width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange.inRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange.nextMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange.prevMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange:focus,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange:hover,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected.inRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected.nextMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected.prevMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected:focus,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected:hover,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange.inRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange.nextMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange.prevMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange:focus,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange:hover{background-color:#6528f5;border-color:#6528f5}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-months{padding-bottom:10px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .dayContainer{padding:0 28px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-weekdays{height:40px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-weekdaycontainer{background:#f4f3f7;padding:14px 28px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-current-month{font-size:15px;color:#210f59}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper{width:55px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper input.cur-year{padding:0 10px 0 5px;min-height:25px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info{background:#e9e7ee;border-radius:3px;font-size:15px;color:#210f59;line-height:1.75;padding:8px 28px 8px 20px;border:none;position:relative;text-align:left}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info{max-width:100%;line-height:1.4}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info>span{overflow:hidden;white-space:pre;text-overflow:ellipsis;max-width:calc(100% - 40px);display:inline-block}}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info i{margin-left:38px;margin-right:12px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info i{margin-left:10px;margin-right:10px;vertical-align:super}}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info:after{width:0;height:0;border-color:#9087ac rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:5px 3.5px 0;content:"";position:absolute;top:50%;margin-top:-2px;right:20px}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown{position:absolute;z-index:100;background:#fff;border:1px solid #f4f3f7;border-radius:3px;margin-top:6px;-webkit-box-shadow:0 10px 20px rgba(48,44,62,.05);box-shadow:0 10px 20px rgba(48,44,62,.05);padding:7px 8px;width:100%;left:0;top:100%}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button{display:block;border:none;padding:8px 12px;font-size:15px;line-height:1.75;color:#210f59;width:100%;text-align:left;border-radius:2px;background:#fff}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button.exactmetrics-interval-active,body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button:focus,body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button:hover{background:#e9e7ee}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button i{margin-right:10px}body.exactmetrics-reporting-page .exactmetrics-mobile-details-toggle{width:100%;margin-bottom:0;margin-top:10px;margin-left:0;font-weight:700}@media (min-width:783px){body.exactmetrics-reporting-page .exactmetrics-mobile-details-toggle{display:none}}body.exactmetrics-reporting-page .exactmetrics-info{color:#9087ac;cursor:help;font-size:15px;position:relative;display:inline-block;vertical-align:top;margin-left:10px}body.exactmetrics-reporting-page .exactmetrics-report-row{margin-bottom:25px}body.exactmetrics-reporting-page .exactmetrics-report-row.exactmetrics-report-row-border-top{margin-bottom:0;margin-left:-32px;margin-right:-32px;padding:0 32px;border-top:1px solid #e9e7ee}@media (max-width:991px){body.exactmetrics-reporting-page .exactmetrics-report-row.exactmetrics-report-row-border-top{margin-left:-24px;margin-right:-24px;padding-left:24px;padding-right:24px}}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button{background:#eceff5;color:#464c57;border-bottom-width:1px;border-color:#d6e2ed;border-radius:0;line-height:18px;border-right:0;margin:0}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:hover{background:#fff}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:focus{z-index:10;position:relative}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;border-right:1px solid #d6e2ed}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button.exactmetrics-selected-interval{background:#fff;color:#6528f5;font-weight:700}.exactmetrics-reports-overview-datagraph-tooltip-container{padding:15px;background-color:#fff;border:1px solid #bcb7cd;-webkit-box-shadow:0 10px 20px rgba(57,15,157,.15);box-shadow:0 10px 20px rgba(57,15,157,.15);border-radius:5px;display:block}.exactmetrics-pie-chart-tooltip{left:20px;top:20px;padding:0}@media (max-width:782px){.exactmetrics-pie-chart-tooltip{left:50%;margin-left:-97px}}.exactmetrics-reports-doughnut-tooltip{-webkit-box-shadow:none;box-shadow:none;border:none;width:172px;border-radius:50%;height:172px;text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.exactmetrics-reports-doughnut-tooltip .exactmetrics-reports-overview-datagraph-tooltip-title{font-size:30px;color:#6528f5;margin-bottom:18px;font-weight:700}.exactmetrics-reports-doughnut-tooltip .exactmetrics-reports-overview-datagraph-tooltip-number{color:#6528f5;font-size:15px;font-weight:500}#exactmetrics-chartjs-line-overview-tooltip{min-width:100px}.exactmetrics-reports-overview-datagraph-tooltip-number{color:#210f59;font-size:24px;font-weight:400;margin-bottom:5px;display:inline-block;margin-right:5px}.exactmetrics-reports-overview-datagraph-tooltip-trend{color:#23282d;font-size:14px;font-weight:400;display:inline-block}.exactmetrics-reports-overview-datagraph-tooltip-descriptor{color:#9087ac;font-size:12px;font-weight:400;width:100%;clear:both}.exactmetrics-reports-overview-datagraph-tooltip-title{color:#210f59;font-size:12px;font-weight:400;width:100%}#exactmetrics-chartjs-bar-tooltip,.exactmetrics-line-chart-tooltip{opacity:1;position:absolute;-webkit-transform:translate(-50%,-100%);-ms-transform:translate(-50%,-100%);transform:translate(-50%,-100%);margin-top:-20px}#exactmetrics-chartjs-bar-tooltip:after,.exactmetrics-line-chart-tooltip:after{position:absolute;top:100%;width:0;height:0;border-color:#fff rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:10px 9.5px 0;content:"";left:50%;margin-left:-9px;margin-top:-7px}#exactmetrics-chartjs-bar-tooltip:before,.exactmetrics-line-chart-tooltip:before{position:absolute;top:100%;width:0;height:0;border-color:#bcb7cd rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:10px 10.5px 0;content:"";left:50%;margin-left:-10px;margin-top:-6px}#exactmetrics-chartjs-line-age-tooltip .exactmetrics-reports-overview-datagraph-tooltip-number:after{content:"%"}.exactmetrics-report-tabs-navigation{border-bottom:1px solid #e9e7ee}.exactmetrics-report-tabs-navigation button{color:#4d3f7a;font-weight:700;text-align:left;font-size:15px;padding:15px 24px 17px;cursor:pointer;margin:0 0 -1px;position:relative;line-height:1;border-radius:5px 5px 0 0;background:#fff;border:1px solid;border-color:#fff #fff #e9e7ee}@media (max-width:782px){.exactmetrics-report-tabs-navigation button{font-size:14px;padding:13px 20px 15px;text-align:center}}.exactmetrics-report-tabs-navigation button:focus{z-index:10}.exactmetrics-report-tabs-navigation button.exactmetrics-active-tab-button{background:#fff;color:#6528f5;border-color:#e9e7ee #e9e7ee #fff}.exactmetrics-report-tabs{background:#fff}.exactmetrics-report-tabs .exactmetrics-report-tabs-content{padding-top:20px}#mi-custom-line{max-height:330px}.exactmetrics-report-infobox-row{display:-webkit-box;display:-ms-flexbox;display:flex;background:#f4f3f7;border-radius:10px;padding:24px 60px}@media (max-width:782px){.exactmetrics-report-infobox-row{-ms-flex-flow:wrap;flex-flow:wrap;padding:20px}}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:25%;border-left:1px solid #bcb7cd;padding:0 10px 0 60px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-info{display:inline-block;font-size:12px;margin-left:6px;vertical-align:middle}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child{border-left:none;padding-left:0}@media (max-width:782px){.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:100%;border-left:none;border-top:1px solid #bcb7cd;padding:24px 0}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child{border-top:0;padding-top:0}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:last-child{padding-bottom:0}}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-report-title{text-overflow:ellipsis;overflow:hidden;white-space:pre;line-height:1.2;color:#4d3f7a;font-size:13px;display:inline-block;vertical-align:middle;padding-left:0}@media (max-width:991px){.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-report-title{padding-left:0}}.exactmetrics-report-title{font-size:24px;color:#210f59;font-weight:700;margin-top:0;line-height:1.4;display:inline-block}@media (max-width:762px){.exactmetrics-report-title{padding-left:60px}.exactmetrics-report-title.exactmetrics-has-pagination{margin-bottom:80px}}.exactmetrics-report-title:before{width:40px;height:40px;border-radius:50%;background:rgba(33,15,89,.1);right:100%;margin-right:30px;color:#210f59;text-align:center;line-height:40px;font-size:15px;-webkit-transition:background .2s ease 0ms,color .2s ease 0ms;transition:background .2s ease 0ms,color .2s ease 0ms;vertical-align:middle;margin-top:-2px}@media (max-width:762px){.exactmetrics-report-title:before{position:absolute;left:0}}.exactmetrics-reports-infobox-number{font-size:32px;font-weight:500;line-height:1;margin-top:4px;color:#210f59;width:100%;display:block}@media (max-width:782px){.exactmetrics-reports-infobox-number{font-size:36px;float:none}}.exactmetrics-reports-infobox-compare,.exactmetrics-reports-infobox-prev{display:inline-block}@media (max-width:1280px){.exactmetrics-reports-infobox-compare,.exactmetrics-reports-infobox-prev{float:none;clear:both}}.exactmetrics-reports-infobox-prev{font-size:14px;margin-top:4px;margin-right:5px}.exactmetrics-reports-infobox-prev .exactmetrics-arrow{vertical-align:middle}.exactmetrics-reports-infobox-compare{font-size:12px;color:#9087ac;display:inline-block}.exactmetrics-buttons-toggle{margin-right:25px}.exactmetrics-report-flex{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:991px){.exactmetrics-report-flex{-ms-flex-flow:wrap;flex-flow:wrap}}.exactmetrics-reports-pie-chart{width:50%;padding:32px 20px 32px 32px;background:#fff;position:relative}.exactmetrics-reports-pie-chart:first-child{border-right:1px solid #e9e7ee;padding-left:0}@media (max-width:991px){.exactmetrics-reports-pie-chart:first-child{border-right:0}}@media (max-width:991px){.exactmetrics-reports-pie-chart{width:100%;border:none;padding-left:0;padding-right:0}}.exactmetrics-reports-pie-chart .exactmetrics-reports-pie-chart-holder{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;margin-left:20px}@media (max-width:781px){.exactmetrics-reports-pie-chart .exactmetrics-reports-pie-chart-holder{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-left:0;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart{margin:0 12px 0 0}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart-legend{margin:24px 12px;-ms-flex-negative:0;flex-shrink:0;-ms-flex-item-align:center;align-self:center}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart-legend li{background:#f4f3f7;border-radius:10px;padding:10px 20px}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart-tooltip{position:absolute;pointer-events:none}.exactmetrics-pie-chart-legend-color{width:25px;height:25px;display:inline-block;border-radius:50%;margin:7px 17px 7px 0;float:left}.exactmetrics-pie-chart-legend-text{display:inline-block;font-size:15px;color:#9087ac;width:calc(100% - 50px)}.exactmetrics-pie-chart-legend-value{color:#210f59;font-size:18px;font-weight:500;display:inline-block;width:calc(100% - 50px)}.exactmetrics-table-box{background:#fff;width:100%;padding-top:32px;position:relative}.exactmetrics-table-box:first-child{margin-left:0;margin-top:0}@media (max-width:991px){.exactmetrics-table-box{margin-left:0;margin-top:20px}}.exactmetrics-table-box-footer{background:#fff;padding:20px 0 21px;text-align:right}.exactmetrics-report-row-border-top .exactmetrics-table-box-footer{padding-bottom:46px}.exactmetrics-table-box-footer:after{display:table;clear:both;content:""}.exactmetrics-table-box-footer .exactmetrics-button [class*=monstericon-]{margin-left:18px}@media (max-width:782px){.exactmetrics-table-box-footer>.exactmetrics-button{width:100%;text-align:center}}.exactmetrics-table-list-item{padding:12px 20px;min-height:42px;font-size:15px;display:-webkit-box;display:-ms-flexbox;display:flex;border-radius:3px}table .exactmetrics-table-list-item{display:table-row}.exactmetrics-table-list-item:nth-child(odd){background-color:#f4f3f7}.exactmetrics-table-list-item .exactmetrics-reports-list-text{color:#210f59;white-space:pre;text-overflow:ellipsis;overflow:hidden;vertical-align:middle;display:inline-block;width:100%;padding:1px;margin:-1px;font-weight:500}.exactmetrics-table-list-item .exactmetrics-reports-list-text a{display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis;color:#210f59}.exactmetrics-table-list-item .exactmetrics-reports-list-text img{display:inline-block;margin-right:10px;vertical-align:middle}.exactmetrics-table-list-item .exactmetrics-flag{-webkit-transform:scale(.5);-ms-transform:scale(.5);transform:scale(.5);display:inline-block;margin:-6px 0 -10px -8px}.exactmetrics-table-list-item a{text-decoration:none;color:#393f4c}.exactmetrics-table-list-item a:focus,.exactmetrics-table-list-item a:hover{color:#777}.exactmetrics-table-list-item .exactmetrics-reports-list-count{display:inline-block;min-width:30px;color:#657086;font-weight:400}.exactmetrics-table-list-item .exactmetrics-reports-list-number{color:#393f4c;font-size:15px;text-align:right;display:block;padding-left:5px}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:absolute;top:32px;right:0}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-table-box-pagination{float:none;width:100%;margin-top:20px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;top:65px}}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination span{color:#9087ac}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle{position:absolute;top:100%;background:#fff;border:1px solid #f4f3f7;border-radius:3px;margin-top:6px;-webkit-box-shadow:0 10px 20px rgba(48,44,62,.05);box-shadow:0 10px 20px rgba(48,44,62,.05);padding:7px 8px;width:100%;left:0}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle .exactmetrics-button{width:100%;border-radius:3px;border:none;background:#fff}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle .exactmetrics-button.exactmetrics-selected-interval,body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle .exactmetrics-button:focus,body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle .exactmetrics-button:hover{background:#f4f3f7}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-pagination-selector span{color:#37276a}.exactmetrics-pagination-selector{background:#f4f3f7;padding:8px 35px 8px 20px;border:none;border-radius:3px;font-size:15px;line-height:1.7;cursor:pointer}.exactmetrics-pagination-selector:after{width:0;height:0;border-color:#9087ac rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:5px 3.5px 0;content:"";position:absolute;top:50%;margin-top:-1px;right:20px}@media (max-width:792px){.exactmetrics-pagination-selector{width:100%;text-align:left;top:65px}}.exactmetrics-table-box-list{min-height:calc(100% - 147px);position:relative}.exactmetrics-table-box-list .exactmetrics-table-no-data{top:0;bottom:0;left:0;right:0}.exactmetrics-table-box-table .exactmetrics-table-item-content{display:-webkit-box;display:-ms-flexbox;display:flex;word-break:break-all}@media (max-width:782px){.exactmetrics-table-box-table .exactmetrics-table-item-content{-ms-flex-flow:wrap;flex-flow:wrap}}.exactmetrics-table-box-mobile .exactmetrics-table-box-table{overflow:auto}.exactmetrics-table-box-mobile .exactmetrics-table-box-table tr{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly;padding:0}.exactmetrics-table-box-mobile .exactmetrics-table-box-table tr.exactmetrics-table-list-item-active td{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;padding-left:0;margin-left:50px;border-top:1px solid #d6e2ed;font-size:13px;color:#657086;padding-top:8px;padding-bottom:8px}.exactmetrics-table-box-mobile .exactmetrics-table-box-table tr.exactmetrics-table-list-item-active td.exactmetrics-table-cell-1{margin-left:0;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;width:100%;padding-left:20px;font-size:15px;color:#210f59;padding-top:12px;padding-bottom:12px;border-top:none}.exactmetrics-table-box-mobile .exactmetrics-table-box-table tr.exactmetrics-table-list-item-active td.exactmetrics-table-cell-1 .exactmetrics-table-item-content:after{-webkit-transform:translateY(-50%) rotate(0);-ms-transform:translateY(-50%) rotate(0);transform:translateY(-50%) rotate(0)}.exactmetrics-table-box-mobile .exactmetrics-table-box-table td,.exactmetrics-table-box-mobile .exactmetrics-table-box-table th{display:none;width:100%}.exactmetrics-table-box-mobile .exactmetrics-table-box-table td.exactmetrics-table-cell-1,.exactmetrics-table-box-mobile .exactmetrics-table-box-table th.exactmetrics-table-cell-1{display:block;width:100%}.exactmetrics-table-box-mobile .exactmetrics-table-box-table td.exactmetrics-table-cell-1 .exactmetrics-table-item-content,.exactmetrics-table-box-mobile .exactmetrics-table-box-table th.exactmetrics-table-cell-1 .exactmetrics-table-item-content{padding-right:30px;position:relative;white-space:pre;text-overflow:ellipsis;overflow:hidden;width:100%}.exactmetrics-table-box-mobile .exactmetrics-table-box-table td.exactmetrics-table-cell-1 .exactmetrics-table-item-content:after,.exactmetrics-table-box-mobile .exactmetrics-table-box-table th.exactmetrics-table-cell-1 .exactmetrics-table-item-content:after{content:"\F01F";display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;position:absolute;right:10px;top:50%;-webkit-transform:translateY(-50%) rotate(180deg);-ms-transform:translateY(-50%) rotate(180deg);transform:translateY(-50%) rotate(180deg);color:#9087ac;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}.exactmetrics-table-box-mobile .exactmetrics-table-box-table .exactmetrics-table-mobile-heading{min-width:125px}.exactmetrics-table-box-mobile .exactmetrics-table-box-table .exactmetrics-table-list-item-empty td:first-child .exactmetrics-table-item-content:after{display:none}.exactmetrics-table-box-table table{width:100%;border-collapse:collapse}.exactmetrics-table-box-mobile .exactmetrics-table-box-table table{table-layout:fixed}.exactmetrics-table-box-table th{text-align:left;font-size:12px;color:#9087ac;text-transform:uppercase;letter-spacing:.08em}.exactmetrics-table-box-table td,.exactmetrics-table-box-table th{border:none;padding:12px 10px;line-height:19px}.exactmetrics-table-box-table td:first-child,.exactmetrics-table-box-table th:first-child{padding-left:20px}.exactmetrics-table-box-table td:last-child,.exactmetrics-table-box-table th:last-child{padding-right:20px}.exactmetrics-report-2-columns{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.exactmetrics-report-2-columns .exactmetrics-table-box{width:50%}@media (max-width:991px){.exactmetrics-report-2-columns .exactmetrics-table-box{width:100%}}.exactmetrics-report-2-columns.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:50%}@media (max-width:782px){.exactmetrics-report-2-columns.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:100%}}.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(odd){padding-right:32px;border-right:1px solid #e9e7ee}@media (max-width:991px){.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(odd){padding-right:0;border-right:none}}.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(2n){padding-left:32px}@media (max-width:991px){.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(2n){padding-left:0}}.exactmetrics-report-dimensions .exactmetrics-table-box{border-top:1px solid #e9e7ee;padding-left:32px;padding-right:32px}.exactmetrics-report-dimensions .exactmetrics-report-2-columns{margin-left:-32px;margin-right:-32px}.exactmetrics-report-flex .exactmetrics-report-box{width:50%}@media (max-width:782px){.exactmetrics-report-flex .exactmetrics-report-box{width:100%;margin-top:20px}.exactmetrics-report-flex .exactmetrics-report-box:first-child{margin-top:0}}.exactmetrics-reports-tooltip{font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.exactmetrics-arrow{width:10px;height:11px;display:inline-block;background-size:contain;background-repeat:no-repeat}.exactmetrics-arrow.exactmetrics-down{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAXVBMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjip09rAAAAHnRSTlMA8IciAeKVlnAwD/bp1ci5on1URtyyl2dhPzccFQOiNcZVAAAAg0lEQVQoz9XNWQ6DMAxFUUNCmwBl7Dx4/8tsjCAvQd4A98OWdT5MaOr74UtaLTOPqhRByuNL7fxefs9ZoOPmlYsdmB3RLdzFOxV759BMHQv5REqWJjKV7NZEGRc4WVqpMqu4CBtdP4s8IoAujQwACAFAAI3OABAgJ4BGgJzkuVrt0+sPB0gVjZ7FTpgAAAAASUVORK5CYII=)}.exactmetrics-arrow.exactmetrics-down.exactmetrics-green{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMADloG+qFg0bOrm1RNGJCAd3FoRe/Zyci8kjIuLCxb7jsAAACJSURBVCjP3cpbFsIgDEXRC8G29mVrfWvmP00DcREtHYHnI0A2sB7T5LEVnZh52RLHkv8DeblCnhTnnc/DSlquZXWQd+1+ZIwrwoWlqzORv7EBS4jnjbLMCUYAfaKGPlIlaIFMO5UuKGidUhp6BYwsAULOhxVYldFewagAowxFxwiNQkkKZf38DW9jKhaFyDomEwAAAABJRU5ErkJggg==)}.exactmetrics-arrow.exactmetrics-up{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMA8Icj45jrlzD20bqkfXJkV0sUD9zWxbaLcT43HO3asg8AAACASURBVCjP3clJFsIgEADRisRA5slZuf81ReQ1UZILpBa1+SyaDeup3OotsPa4AUIJCCUQKYVIERKKcC7dKqEIp1fmfugDRcgVXui+JFAogtB60nDxYBDh5mng6p49WQj6IyNTZcsHP0JjbQfMd8Of0I9IIqEdSOGkXZWhrpsJ6Q1+nBSNjDcDLgAAAABJRU5ErkJggg==)}.exactmetrics-arrow.exactmetrics-up.exactmetrics-red{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAZCAMAAAAc9R5vAAAAV1BMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjhHHlCMAAAAHHRSTlMALTzj+N0V79kkHNVD0U5IIBnqy8K3VTcSB704vhc5cQAAAJRJREFUKM/VjUkSwyAMBIeACRhsvC+J/v/ORErZcOADmYOm1F0lIccH51HJoIl0xbQNfaOHKhdT4ZKmLfnoiGrGOirixpsH3p8ySmM7+Zp4bvIrWOaH8MkrrofXlzlmOaHwE1ATd2fx4jZvXAK7/FmgmUdkgWj4hFSPUqA3ZBIQ1w2FELMm5GTB+XOxV8S5EM3nvX4AV4MVrf6KAvgAAAAASUVORK5CYII=)}.exactmetrics-reports-overview-datagraph-tooltip-trend{font-weight:700}.exactmetrics-report-box{background:#fff;padding:32px 0;position:relative}.exactmetrics-realtime-large{font-size:120px;text-align:center;line-height:1.4;color:#32a27a}.exactmetrics-realtime-active{text-align:center;width:100%;font-size:17px;line-height:1;margin-top:-2px;color:#210f59;font-weight:500}.exactmetrics-realtime-box-content .exactmetrics-line-chart-tooltip{max-width:115px}.exactmetrics-realtime-count-box{width:357px;height:357px;margin:50px auto;border-radius:50%;border:15px solid #e9e7ee;text-align:center;padding-top:52px}@media (max-width:782px){.exactmetrics-realtime-count-box{width:300px;height:300px;padding-top:40px}}.exactmetrics-realtime-count-box h3{display:inline-block;font-size:24px;color:#210f59;line-height:1.4;margin:0}#exactmetrics-chartjs-pie-age-tooltip{margin-left:23px;min-width:95px}.exactmetrics-blur .exactmetrics-report-top{pointer-events:none}.exactmetrics-blur .exactmetrics-report-row{-webkit-filter:blur(5px);filter:blur(5px)}.exactmetrics-blur .exactmetrics-report{min-height:850px}.exactmetrics-reports-referral-icon{vertical-align:middle;margin-right:10px;margin-left:2px}.exactmetrics-upsell-inline{background-image:url(../img/reports-upsell-bg.png);background-repeat:no-repeat;background-position:100% 0;background-color:#fff;background-size:452px}@media (max-width:991px){.exactmetrics-upsell-inline .exactmetrics-upsell-inline-content{margin:-20px;padding:20px;background:hsla(0,0%,100%,.3)}}.exactmetrics-upsell-content{max-width:750px}.exactmetrics-upsell-content p{font-size:16px;color:#393f4c;line-height:1.8}.exactmetrics-upsell-content .exactmetrics-light{color:#657086}.exactmetrics-upsell-content .exactmetrics-button{font-size:17px;font-weight:700;padding:15px 25px;line-height:1}@media (max-width:782px){.exactmetrics-upsell-content .exactmetrics-button{font-size:15px}}.exactmetrics-upsell-overlay{position:absolute;top:125px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:750px;max-width:100%;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);background-color:#fff;border:1px solid #d6e2ed}.exactmetrics-upsell-overlay .exactmetrics-upsell-top{padding:0 40px}@media (max-width:782px){.exactmetrics-upsell-overlay .exactmetrics-upsell-top{padding:0 20px}}@media (max-width:782px){.exactmetrics-upsell-overlay{top:70px;width:calc(100% - 40px)}}.exactmetrics-upsell-overlay h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.exactmetrics-upsell-overlay .exactmetrics-upsell-subtitle{color:#4c6577;font-size:16px;text-align:center}.exactmetrics-upsell-overlay p{margin:20px 0}.exactmetrics-upsell-overlay .exactmetrics-upsell-content{border-top:1px solid #d6e2ed;background:#f9fbff;padding:40px}@media (max-width:782px){.exactmetrics-upsell-overlay .exactmetrics-upsell-content{padding-left:20px;padding-right:20px}}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul{margin:0 auto;max-width:520px}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul li{color:#4c6577;font-size:16px;margin:0 0 30px;padding-left:40px;position:relative;line-height:1.2}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul li:before{position:absolute;content:"\f015";width:20px;height:20px;background:#5cc0a5;left:0;border-radius:50%;display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#210f59;font-size:14px;text-align:center;line-height:20px;top:-1px}.exactmetrics-upsell-overlay .exactmetrics-upsell-content .exactmetrics-button{font-weight:400;font-size:16px;margin-top:10px}.exactmetrics-upsell-overlay a{color:#393f4c}.exactmetrics-upsell-overlay a:hover{text-decoration:none}.exactmetrics-center,.exactmetrics-mobile-upsell{text-align:center}.exactmetrics-mobile-upsell .exactmetrics-notice{border-top:1px solid #d6e2ed;border-right:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.exactmetrics-mobile-upsell .exactmetrics-notice-inner{margin-top:0}@media (min-width:783px){.exactmetrics-mobile-upsell{display:none}}.exactmetrics-mobile-upsell .exactmetrics-notice-success .exactmetrics-notice-button{margin-right:0}.exactmetrics-overview-upsell-desktop{margin:0 -32px}@media (max-width:782px){.exactmetrics-overview-upsell-desktop{display:none}}.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-left{width:55%}@media (max-width:969px){.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-left{width:100%}}.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-right{width:45%}.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-right .exactmetrics-em-upsell-screen{bottom:auto;height:490px;width:779px;left:0}.exactmetrics-overview-upsell-desktop .exactmetrics-em-logo-text{width:376px;margin-right:142px}.exactmetrics-overview-upsell-desktop .exactmetrics-em-logo-text:before{content:"";height:48px;width:127px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAP4AAABgCAMAAAAKJD9QAAAAV1BMVEUAAAAgD1ghD1kgC1ghD1khD1ogD1ggEFEgDlkgDlggDlghDlkgDlkiDlkgEFghD1kgDlggEF0gDlggD1ogD1chD1kgD1kgDVgiDlkgD1ggEFogEFUhD1k1ONBfAAAAHHRSTlMAv98g/u9AEHCAYI+vnyHPUBGggDDuvkF/vjExfxARwwAABb9JREFUeNrlnO3O2yAMhfkIhAJp0y7tuo37v85p0qRqC+XENm+Wbed3hXhiY4NNUf+ElpgmbUz5IXPRU5it2ia9VVMKfsugSW9Tnk6zl5OPPmlX1nI5LAqrkGRytOh7Fop08iL27FqzTQvEJ0tHgE+UmSwP3ieHB48jGR+PCfCp4nwAr3t83cKSmQE+/QOw4bGSBfh0pRHg8z0Ky956DV64MrYrfhmem+mD6zbbwpZbAD5Vj3ET/Fl3/LqlN78ubF228M+OO7rF+HJ+XQT8mP5U2DILxJevKF0ESgD+OhWBhoDw5ebSsgm26S8FiBoAikyf+uKXu20FPUDP4C9C2b745dGwvSlFzt8XX3fGHzzw/L78RSrfF7+Yd/hT6aIhAnyzFsH8esOADpifl/GM0VobB8PL0sQ39ZN1MO/MD/FtrT6Taat/bmegFO34mmo2W9M1wftifdCE8UnnlmGpBf0GkD6td4v+5kB4JeMrW13Xjoj/kjUwmeKIov2bwaPBuwuMj2fhMT7gh3up8NbrPWeDfLc8/NEA78f4mH8YN7v+iXk4fPDwlQexn4ivfCM1vXQDZxiyAwyRgA/o3EjCx2TpdyOCEyzjfHwfefixrLUI8O2Gxa8b1QGor3X+Tzz8sTJaJOFjtrv6RZ8BPYv/PjbwadM9SfBjLfZh4xtE/1Ksm5+Hn8pKkwT/XMG3qx+AQgsj/t15+KEzvnJg239DyQFL14aYWfgRZD4y/qWNf3UFfHCsc22MBwvf98bXbfzIc328axzGvwFfV8MWVaY2Sifnzx+If61XRLBw8nxw8E+9Q59p4s/A+ALzDyMDP3fO+9d24ruBvChIfkOs4pM/Y0D4RLccVnmBGfZBApno+As48GN8fOa5tH1jVhzpKinGxye0EeOTTvy57RsjACVsrqn4FgRiMv6z3ek6kRoh1BjjMT42fhbgW1DqBoEWCGWYQMR/lopi52KXQZuChmiWSxgfVxytpNQJNvROsPTx5DMFf0ygzUPF9wa2eUAtBAg1Si7b8e3TlaoiE99r3OQ716bM1Leykqngu9NaaTKgJUnCH5eY3JYW5Fka+Ntj3VWR6tNHdng/A3xp5hPjG9sXf4gAf1JcfQR+VH3xv6i/Cd90v9uDwlU+EL6zAJ/j+n9P6AuqL/4nPGXTN/ExhTvx8vHk2x6YRbrfwdRy+j02vXL8pBC+/EbnZY8jj9xWcnyzoDnje6/Udkpg4xuveuK7yvWk/csd8v+yKN31rzxztTXN0QyKXQTpxvrTQsvj/q/vtfSNYuC7ySvVDd8kT62rp16F7kzGdzkC39Mk+BEarZP3R9DmgOAmp7iw6unR/1AAyQ5Nu3+Ty4I6P0W43JHRDdaXdmlxXtSu+KPjuL8GPsM3ftgXX82cfy+Fwlr9eAkNdj/8hvt7GLLFwf9sRJdb5PgC90+Flfvx7agd8Vvu/wBRS3yxLVRHUDviN90/wBFFO/+vsmuNcnywku+Wbv4yiRZ+MXZP/Lb7X8CQgB/R142/J37b/UtimL9M4xbPN63d9v74V0eP5LkUZvwLrllR3h9fzfSzz9nxXrwYE2hP7IUvdP/AevIkvm2j2p3xsfvPYFTyB/AalCl3xMfuf7fY/evKc8Xtnwb0EXfDH1Zgmb6RmdtFmOBfwcPOSYOm9O742JZDkD3aYbSepklfHOonLOoP46uA5oXPLYJuyh/HB39PAs8XCPuSB8A/O3r2u5ou9EfAf+P+Hm3f5fTHwAfuD/yfT38U/Lr7Z1D5ysKodxh8FcAM+z9a5dWB8JUGmz/whAZVX6w6FH7d/R+9H6x73YM/Fv6bc1z6iOcKL4s6HL7SIPv1eqzyHpQ6IP7ZgewnXAGv+wOHxG+4P5TXBPiD4r9x/3nje604CegwKnVc/LNrZD+s2H6k+uTpT5TfZPhpNeCXlgGCrulEeapav6mAWPWfaJlP+ecD9c6YfNv8QP13jdUZgGL72MYAAAAASUVORK5CYII=);background-size:contain;position:absolute;left:100%;top:0;margin-left:15px}.exactmetrics-report-realtime .exactmetrics-table-box th:first-child{width:auto}.exactmetrics-reports-list-title{display:inline-block;word-break:break-all}@media (max-width:782px){.exactmetrics-reports-list-title{width:calc(100% - 30px);text-overflow:ellipsis;overflow:hidden}}.exactmetrics-report-scroll{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;padding-top:32px}.exactmetrics-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-left:25px}@media (max-width:991px){.exactmetrics-report-scroll:nth-child(2){width:100%;margin-left:0;margin-top:25px}}@media (max-width:782px){.exactmetrics-report-scroll{width:100%;margin-left:0}}.exactmetrics-report-scroll>h3{position:absolute;top:0}.exactmetrics-report-scroll .exactmetrics-realtime-active{margin:0 0 50px}.exactmetrics-report-scroll .exactmetrics-realtime-box-content{margin:25px 0}.exactmetrics-report-scroll .exactmetrics-realtime-large{line-height:1;margin:50px 0 0;font-size:80px}@media (max-width:782px){.exactmetrics-report-scroll .exactmetrics-realtime-large{margin-top:25px}}.exactmetrics-not-authenticated-notice{position:fixed;top:40%;left:50%;width:750px;max-width:100%;margin-left:-295px;background:#fff;padding:0 20px 20px;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);border:1px solid #d6e2ed;text-align:center}@media (min-width:783px){.folded .exactmetrics-not-authenticated-notice{margin-left:-357px}}@media (max-width:960px){.exactmetrics-not-authenticated-notice{margin-left:-357px}}@media (max-width:750px){.exactmetrics-not-authenticated-notice{left:0;margin-left:0}}@media (min-width:750px) and (max-width:782px){.exactmetrics-not-authenticated-notice{margin-left:-375px}}.exactmetrics-not-authenticated-notice .exactmetrics-auth-manual-connect-paragraph{display:none}.exactmetrics-not-authenticated-notice h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate{text-align:center}.exactmetrics-not-authenticated-notice .exactmetrics-license-button{line-height:1;margin-top:20px}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button{font-size:16px;padding:20px 40px;margin:20px 20px 10px;background:#e9e7ee;border-color:#e9e7ee;color:#37276a}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button:focus,.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button:hover{background-color:#f4f3f7;border-color:#f4f3f7;color:#37276a}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-alt{background:#6528f5;border-color:#6528f5;color:#fff}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-alt:focus,.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-alt:hover{background-color:#37276a;border-color:#37276a;color:#fff}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-disabled{background:#e9e7ee;border-color:#e9e7ee;color:#9087ac}.exactmetrics-reports-list-has-overflow{cursor:pointer}.exactmetrics-reports-ecommerce-pie-chart{padding:130px 0 0;width:40%;max-width:100%}@media (max-width:792px){.exactmetrics-reports-ecommerce-pie-chart{width:100%;padding-top:32px}}.exactmetrics-reports-ecommerce-pie-chart .exactmetrics-reports-pie-chart{position:relative;width:225px;text-align:center;padding:0;margin:0 auto;border:none}.exactmetrics-table-no-data{background:url(../img/loading-background.jpg) no-repeat bottom #f4f3f7;height:100%;min-height:300px;text-align:center;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;background-size:cover;border-radius:10px;padding:20px}.exactmetrics-table-no-data h3{font-size:17px;line-height:1.5;color:#210f59}.exactmetrics-product-color{display:inline-block;width:14px;height:14px;margin-right:11px;vertical-align:middle;border-radius:50%}.exactmetrics-report-row-icon-left{position:relative;padding-left:170px}.exactmetrics-report-row-icon-left:before{font-size:50px;position:absolute;left:50px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);color:#9087ac}@media (max-width:782px){.exactmetrics-report-row-icon-left{padding-left:20px}.exactmetrics-report-row-icon-left:before{display:none}}.exactmetrics-admin-page .exactmetrics-lite-datepicker{text-align:center;padding:12px 12px 27px}.exactmetrics-admin-page .exactmetrics-lite-datepicker p{color:#210f59;font-size:15px;line-height:1.5;font-weight:700}.exactmetrics-admin-page .exactmetrics-lite-datepicker .exactmetrics-button-text{color:#32a27a;display:inline-block;width:auto}.exactmetrics-admin-page .exactmetrics-lite-datepicker .exactmetrics-button-text:focus,.exactmetrics-admin-page .exactmetrics-lite-datepicker .exactmetrics-button-text:hover{color:#19865f}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-button{background:#e9e7ee;color:#210f59}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-button:focus,body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-button:hover{background:#bcb7cd}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-accordion-item-details,body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-pdf-score{display:block!important}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-progress-circle{display:none}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-reports-intervals-dropdown{min-width:250px}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-reports-intervals-dropdown .exactmetrics-button{background:rgba(0,0,0,0);color:#32a27a}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-reports-intervals-dropdown .exactmetrics-button:focus,body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-reports-intervals-dropdown .exactmetrics-button:hover{color:#19865f}
1
  /*!
2
  * Generated with CSS Flag Sprite generator (https://www.flag-sprites.com/)
3
+ */.exactmetrics-flag{display:inline-block;width:32px;height:32px;background:url(../img/flags.png) no-repeat}.exactmetrics-flag.exactmetrics-flag-ad{background-position:-32px 0}.exactmetrics-flag.exactmetrics-flag-ae{background-position:-64px 0}.exactmetrics-flag.exactmetrics-flag-af{background-position:-96px 0}.exactmetrics-flag.exactmetrics-flag-ag{background-position:-128px 0}.exactmetrics-flag.exactmetrics-flag-ai{background-position:-160px 0}.exactmetrics-flag.exactmetrics-flag-al{background-position:-192px 0}.exactmetrics-flag.exactmetrics-flag-am{background-position:-224px 0}.exactmetrics-flag.exactmetrics-flag-an{background-position:-256px 0}.exactmetrics-flag.exactmetrics-flag-ao{background-position:-288px 0}.exactmetrics-flag.exactmetrics-flag-ar{background-position:-320px 0}.exactmetrics-flag.exactmetrics-flag-as{background-position:-352px 0}.exactmetrics-flag.exactmetrics-flag-at{background-position:-384px 0}.exactmetrics-flag.exactmetrics-flag-au{background-position:-416px 0}.exactmetrics-flag.exactmetrics-flag-aw{background-position:-448px 0}.exactmetrics-flag.exactmetrics-flag-ax{background-position:-480px 0}.exactmetrics-flag.exactmetrics-flag-az{background-position:0 -32px}.exactmetrics-flag.exactmetrics-flag-ba{background-position:-32px -32px}.exactmetrics-flag.exactmetrics-flag-bb{background-position:-64px -32px}.exactmetrics-flag.exactmetrics-flag-bd{background-position:-96px -32px}.exactmetrics-flag.exactmetrics-flag-be{background-position:-128px -32px}.exactmetrics-flag.exactmetrics-flag-bf{background-position:-160px -32px}.exactmetrics-flag.exactmetrics-flag-bg{background-position:-192px -32px}.exactmetrics-flag.exactmetrics-flag-bh{background-position:-224px -32px}.exactmetrics-flag.exactmetrics-flag-bi{background-position:-256px -32px}.exactmetrics-flag.exactmetrics-flag-bj{background-position:-288px -32px}.exactmetrics-flag.exactmetrics-flag-bl{background-position:-320px -32px}.exactmetrics-flag.exactmetrics-flag-bm{background-position:-352px -32px}.exactmetrics-flag.exactmetrics-flag-bn{background-position:-384px -32px}.exactmetrics-flag.exactmetrics-flag-bo{background-position:-416px -32px}.exactmetrics-flag.exactmetrics-flag-br{background-position:-448px -32px}.exactmetrics-flag.exactmetrics-flag-bs{background-position:-480px -32px}.exactmetrics-flag.exactmetrics-flag-bt{background-position:0 -64px}.exactmetrics-flag.exactmetrics-flag-bw{background-position:-32px -64px}.exactmetrics-flag.exactmetrics-flag-by{background-position:-64px -64px}.exactmetrics-flag.exactmetrics-flag-bz{background-position:-96px -64px}.exactmetrics-flag.exactmetrics-flag-ca{background-position:-128px -64px}.exactmetrics-flag.exactmetrics-flag-cd{background-position:-160px -64px}.exactmetrics-flag.exactmetrics-flag-cf{background-position:-192px -64px}.exactmetrics-flag.exactmetrics-flag-cg{background-position:-224px -64px}.exactmetrics-flag.exactmetrics-flag-ch{background-position:-256px -64px}.exactmetrics-flag.exactmetrics-flag-ci{background-position:-288px -64px}.exactmetrics-flag.exactmetrics-flag-ck{background-position:-320px -64px}.exactmetrics-flag.exactmetrics-flag-cl{background-position:-352px -64px}.exactmetrics-flag.exactmetrics-flag-cm{background-position:-384px -64px}.exactmetrics-flag.exactmetrics-flag-cn{background-position:-416px -64px}.exactmetrics-flag.exactmetrics-flag-co{background-position:-448px -64px}.exactmetrics-flag.exactmetrics-flag-cr{background-position:-480px -64px}.exactmetrics-flag.exactmetrics-flag-cu{background-position:0 -96px}.exactmetrics-flag.exactmetrics-flag-cv{background-position:-32px -96px}.exactmetrics-flag.exactmetrics-flag-cw{background-position:-64px -96px}.exactmetrics-flag.exactmetrics-flag-cy{background-position:-96px -96px}.exactmetrics-flag.exactmetrics-flag-cz{background-position:-128px -96px}.exactmetrics-flag.exactmetrics-flag-de{background-position:-160px -96px}.exactmetrics-flag.exactmetrics-flag-dj{background-position:-192px -96px}.exactmetrics-flag.exactmetrics-flag-dk{background-position:-224px -96px}.exactmetrics-flag.exactmetrics-flag-dm{background-position:-256px -96px}.exactmetrics-flag.exactmetrics-flag-do{background-position:-288px -96px}.exactmetrics-flag.exactmetrics-flag-dz{background-position:-320px -96px}.exactmetrics-flag.exactmetrics-flag-ec{background-position:-352px -96px}.exactmetrics-flag.exactmetrics-flag-ee{background-position:-384px -96px}.exactmetrics-flag.exactmetrics-flag-eg{background-position:-416px -96px}.exactmetrics-flag.exactmetrics-flag-eh{background-position:-448px -96px}.exactmetrics-flag.exactmetrics-flag-er{background-position:-480px -96px}.exactmetrics-flag.exactmetrics-flag-es{background-position:0 -128px}.exactmetrics-flag.exactmetrics-flag-et{background-position:-32px -128px}.exactmetrics-flag.exactmetrics-flag-eu{background-position:-64px -128px}.exactmetrics-flag.exactmetrics-flag-fi{background-position:-96px -128px}.exactmetrics-flag.exactmetrics-flag-fj{background-position:-128px -128px}.exactmetrics-flag.exactmetrics-flag-fk{background-position:-160px -128px}.exactmetrics-flag.exactmetrics-flag-fm{background-position:-192px -128px}.exactmetrics-flag.exactmetrics-flag-fo{background-position:-224px -128px}.exactmetrics-flag.exactmetrics-flag-fr{background-position:-256px -128px}.exactmetrics-flag.exactmetrics-flag-ga{background-position:-288px -128px}.exactmetrics-flag.exactmetrics-flag-gb{background-position:-320px -128px}.exactmetrics-flag.exactmetrics-flag-gd{background-position:-352px -128px}.exactmetrics-flag.exactmetrics-flag-ge{background-position:-384px -128px}.exactmetrics-flag.exactmetrics-flag-gg{background-position:-416px -128px}.exactmetrics-flag.exactmetrics-flag-gh{background-position:-448px -128px}.exactmetrics-flag.exactmetrics-flag-gi{background-position:-480px -128px}.exactmetrics-flag.exactmetrics-flag-gl{background-position:0 -160px}.exactmetrics-flag.exactmetrics-flag-gm{background-position:-32px -160px}.exactmetrics-flag.exactmetrics-flag-gn{background-position:-64px -160px}.exactmetrics-flag.exactmetrics-flag-gp{background-position:-96px -160px}.exactmetrics-flag.exactmetrics-flag-gq{background-position:-128px -160px}.exactmetrics-flag.exactmetrics-flag-gr{background-position:-160px -160px}.exactmetrics-flag.exactmetrics-flag-gs{background-position:-192px -160px}.exactmetrics-flag.exactmetrics-flag-gt{background-position:-224px -160px}.exactmetrics-flag.exactmetrics-flag-gu{background-position:-256px -160px}.exactmetrics-flag.exactmetrics-flag-gw{background-position:-288px -160px}.exactmetrics-flag.exactmetrics-flag-gy{background-position:-320px -160px}.exactmetrics-flag.exactmetrics-flag-hk{background-position:-352px -160px}.exactmetrics-flag.exactmetrics-flag-hn{background-position:-384px -160px}.exactmetrics-flag.exactmetrics-flag-hr{background-position:-416px -160px}.exactmetrics-flag.exactmetrics-flag-ht{background-position:-448px -160px}.exactmetrics-flag.exactmetrics-flag-hu{background-position:-480px -160px}.exactmetrics-flag.exactmetrics-flag-ic{background-position:0 -192px}.exactmetrics-flag.exactmetrics-flag-id{background-position:-32px -192px}.exactmetrics-flag.exactmetrics-flag-ie{background-position:-64px -192px}.exactmetrics-flag.exactmetrics-flag-il{background-position:-96px -192px}.exactmetrics-flag.exactmetrics-flag-im{background-position:-128px -192px}.exactmetrics-flag.exactmetrics-flag-in{background-position:-160px -192px}.exactmetrics-flag.exactmetrics-flag-iq{background-position:-192px -192px}.exactmetrics-flag.exactmetrics-flag-ir{background-position:-224px -192px}.exactmetrics-flag.exactmetrics-flag-is{background-position:-256px -192px}.exactmetrics-flag.exactmetrics-flag-it{background-position:-288px -192px}.exactmetrics-flag.exactmetrics-flag-je{background-position:-320px -192px}.exactmetrics-flag.exactmetrics-flag-jm{background-position:-352px -192px}.exactmetrics-flag.exactmetrics-flag-jo{background-position:-384px -192px}.exactmetrics-flag.exactmetrics-flag-jp{background-position:-416px -192px}.exactmetrics-flag.exactmetrics-flag-ke{background-position:-448px -192px}.exactmetrics-flag.exactmetrics-flag-kg{background-position:-480px -192px}.exactmetrics-flag.exactmetrics-flag-kh{background-position:0 -224px}.exactmetrics-flag.exactmetrics-flag-ki{background-position:-32px -224px}.exactmetrics-flag.exactmetrics-flag-km{background-position:-64px -224px}.exactmetrics-flag.exactmetrics-flag-kn{background-position:-96px -224px}.exactmetrics-flag.exactmetrics-flag-kp{background-position:-128px -224px}.exactmetrics-flag.exactmetrics-flag-kr{background-position:-160px -224px}.exactmetrics-flag.exactmetrics-flag-kw{background-position:-192px -224px}.exactmetrics-flag.exactmetrics-flag-ky{background-position:-224px -224px}.exactmetrics-flag.exactmetrics-flag-kz{background-position:-256px -224px}.exactmetrics-flag.exactmetrics-flag-la{background-position:-288px -224px}.exactmetrics-flag.exactmetrics-flag-lb{background-position:-320px -224px}.exactmetrics-flag.exactmetrics-flag-lc{background-position:-352px -224px}.exactmetrics-flag.exactmetrics-flag-li{background-position:-384px -224px}.exactmetrics-flag.exactmetrics-flag-lk{background-position:-416px -224px}.exactmetrics-flag.exactmetrics-flag-lr{background-position:-448px -224px}.exactmetrics-flag.exactmetrics-flag-ls{background-position:-480px -224px}.exactmetrics-flag.exactmetrics-flag-lt{background-position:0 -256px}.exactmetrics-flag.exactmetrics-flag-lu{background-position:-32px -256px}.exactmetrics-flag.exactmetrics-flag-lv{background-position:-64px -256px}.exactmetrics-flag.exactmetrics-flag-ly{background-position:-96px -256px}.exactmetrics-flag.exactmetrics-flag-ma{background-position:-128px -256px}.exactmetrics-flag.exactmetrics-flag-mc{background-position:-160px -256px}.exactmetrics-flag.exactmetrics-flag-md{background-position:-192px -256px}.exactmetrics-flag.exactmetrics-flag-me{background-position:-224px -256px}.exactmetrics-flag.exactmetrics-flag-mf{background-position:-256px -256px}.exactmetrics-flag.exactmetrics-flag-mg{background-position:-288px -256px}.exactmetrics-flag.exactmetrics-flag-mh{background-position:-320px -256px}.exactmetrics-flag.exactmetrics-flag-mk{background-position:-352px -256px}.exactmetrics-flag.exactmetrics-flag-ml{background-position:-384px -256px}.exactmetrics-flag.exactmetrics-flag-mm{background-position:-416px -256px}.exactmetrics-flag.exactmetrics-flag-mn{background-position:-448px -256px}.exactmetrics-flag.exactmetrics-flag-mo{background-position:-480px -256px}.exactmetrics-flag.exactmetrics-flag-mp{background-position:0 -288px}.exactmetrics-flag.exactmetrics-flag-mq{background-position:-32px -288px}.exactmetrics-flag.exactmetrics-flag-mr{background-position:-64px -288px}.exactmetrics-flag.exactmetrics-flag-ms{background-position:-96px -288px}.exactmetrics-flag.exactmetrics-flag-mt{background-position:-128px -288px}.exactmetrics-flag.exactmetrics-flag-mu{background-position:-160px -288px}.exactmetrics-flag.exactmetrics-flag-mv{background-position:-192px -288px}.exactmetrics-flag.exactmetrics-flag-mw{background-position:-224px -288px}.exactmetrics-flag.exactmetrics-flag-mx{background-position:-256px -288px}.exactmetrics-flag.exactmetrics-flag-my{background-position:-288px -288px}.exactmetrics-flag.exactmetrics-flag-mz{background-position:-320px -288px}.exactmetrics-flag.exactmetrics-flag-na{background-position:-352px -288px}.exactmetrics-flag.exactmetrics-flag-nc{background-position:-384px -288px}.exactmetrics-flag.exactmetrics-flag-ne{background-position:-416px -288px}.exactmetrics-flag.exactmetrics-flag-nf{background-position:-448px -288px}.exactmetrics-flag.exactmetrics-flag-ng{background-position:-480px -288px}.exactmetrics-flag.exactmetrics-flag-ni{background-position:0 -320px}.exactmetrics-flag.exactmetrics-flag-nl{background-position:-32px -320px}.exactmetrics-flag.exactmetrics-flag-no{background-position:-64px -320px}.exactmetrics-flag.exactmetrics-flag-np{background-position:-96px -320px}.exactmetrics-flag.exactmetrics-flag-nr{background-position:-128px -320px}.exactmetrics-flag.exactmetrics-flag-nu{background-position:-160px -320px}.exactmetrics-flag.exactmetrics-flag-nz{background-position:-192px -320px}.exactmetrics-flag.exactmetrics-flag-om{background-position:-224px -320px}.exactmetrics-flag.exactmetrics-flag-pa{background-position:-256px -320px}.exactmetrics-flag.exactmetrics-flag-pe{background-position:-288px -320px}.exactmetrics-flag.exactmetrics-flag-pf{background-position:-320px -320px}.exactmetrics-flag.exactmetrics-flag-pg{background-position:-352px -320px}.exactmetrics-flag.exactmetrics-flag-ph{background-position:-384px -320px}.exactmetrics-flag.exactmetrics-flag-pk{background-position:-416px -320px}.exactmetrics-flag.exactmetrics-flag-pl{background-position:-448px -320px}.exactmetrics-flag.exactmetrics-flag-pn{background-position:-480px -320px}.exactmetrics-flag.exactmetrics-flag-pr{background-position:0 -352px}.exactmetrics-flag.exactmetrics-flag-ps{background-position:-32px -352px}.exactmetrics-flag.exactmetrics-flag-pt{background-position:-64px -352px}.exactmetrics-flag.exactmetrics-flag-pw{background-position:-96px -352px}.exactmetrics-flag.exactmetrics-flag-py{background-position:-128px -352px}.exactmetrics-flag.exactmetrics-flag-qa{background-position:-160px -352px}.exactmetrics-flag.exactmetrics-flag-re{background-position:-192px -352px}.exactmetrics-flag.exactmetrics-flag-ro{background-position:-224px -352px}.exactmetrics-flag.exactmetrics-flag-rs{background-position:-256px -352px}.exactmetrics-flag.exactmetrics-flag-ru{background-position:-288px -352px}.exactmetrics-flag.exactmetrics-flag-rw{background-position:-320px -352px}.exactmetrics-flag.exactmetrics-flag-sa{background-position:-352px -352px}.exactmetrics-flag.exactmetrics-flag-sb{background-position:-384px -352px}.exactmetrics-flag.exactmetrics-flag-sc{background-position:-416px -352px}.exactmetrics-flag.exactmetrics-flag-sd{background-position:-448px -352px}.exactmetrics-flag.exactmetrics-flag-se{background-position:-480px -352px}.exactmetrics-flag.exactmetrics-flag-sg{background-position:0 -384px}.exactmetrics-flag.exactmetrics-flag-sh{background-position:-32px -384px}.exactmetrics-flag.exactmetrics-flag-si{background-position:-64px -384px}.exactmetrics-flag.exactmetrics-flag-sk{background-position:-96px -384px}.exactmetrics-flag.exactmetrics-flag-sl{background-position:-128px -384px}.exactmetrics-flag.exactmetrics-flag-sm{background-position:-160px -384px}.exactmetrics-flag.exactmetrics-flag-sn{background-position:-192px -384px}.exactmetrics-flag.exactmetrics-flag-so{background-position:-224px -384px}.exactmetrics-flag.exactmetrics-flag-sr{background-position:-256px -384px}.exactmetrics-flag.exactmetrics-flag-ss{background-position:-288px -384px}.exactmetrics-flag.exactmetrics-flag-st{background-position:-320px -384px}.exactmetrics-flag.exactmetrics-flag-sv{background-position:-352px -384px}.exactmetrics-flag.exactmetrics-flag-sy{background-position:-384px -384px}.exactmetrics-flag.exactmetrics-flag-sz{background-position:-416px -384px}.exactmetrics-flag.exactmetrics-flag-tc{background-position:-448px -384px}.exactmetrics-flag.exactmetrics-flag-td{background-position:-480px -384px}.exactmetrics-flag.exactmetrics-flag-tf{background-position:0 -416px}.exactmetrics-flag.exactmetrics-flag-tg{background-position:-32px -416px}.exactmetrics-flag.exactmetrics-flag-th{background-position:-64px -416px}.exactmetrics-flag.exactmetrics-flag-tj{background-position:-96px -416px}.exactmetrics-flag.exactmetrics-flag-tk{background-position:-128px -416px}.exactmetrics-flag.exactmetrics-flag-tl{background-position:-160px -416px}.exactmetrics-flag.exactmetrics-flag-tm{background-position:-192px -416px}.exactmetrics-flag.exactmetrics-flag-tn{background-position:-224px -416px}.exactmetrics-flag.exactmetrics-flag-to{background-position:-256px -416px}.exactmetrics-flag.exactmetrics-flag-tr{background-position:-288px -416px}.exactmetrics-flag.exactmetrics-flag-tt{background-position:-320px -416px}.exactmetrics-flag.exactmetrics-flag-tv{background-position:-352px -416px}.exactmetrics-flag.exactmetrics-flag-tw{background-position:-384px -416px}.exactmetrics-flag.exactmetrics-flag-tz{background-position:-416px -416px}.exactmetrics-flag.exactmetrics-flag-ua{background-position:-448px -416px}.exactmetrics-flag.exactmetrics-flag-ug{background-position:-480px -416px}.exactmetrics-flag.exactmetrics-flag-us{background-position:0 -448px}.exactmetrics-flag.exactmetrics-flag-uy{background-position:-32px -448px}.exactmetrics-flag.exactmetrics-flag-uz{background-position:-64px -448px}.exactmetrics-flag.exactmetrics-flag-va{background-position:-96px -448px}.exactmetrics-flag.exactmetrics-flag-vc{background-position:-128px -448px}.exactmetrics-flag.exactmetrics-flag-ve{background-position:-160px -448px}.exactmetrics-flag.exactmetrics-flag-vg{background-position:-192px -448px}.exactmetrics-flag.exactmetrics-flag-vi{background-position:-224px -448px}.exactmetrics-flag.exactmetrics-flag-vn{background-position:-256px -448px}.exactmetrics-flag.exactmetrics-flag-vu{background-position:-288px -448px}.exactmetrics-flag.exactmetrics-flag-wf{background-position:-320px -448px}.exactmetrics-flag.exactmetrics-flag-ws{background-position:-352px -448px}.exactmetrics-flag.exactmetrics-flag-ye{background-position:-384px -448px}.exactmetrics-flag.exactmetrics-flag-yt{background-position:-416px -448px}.exactmetrics-flag.exactmetrics-flag-za{background-position:-448px -448px}.exactmetrics-flag.exactmetrics-flag-zm{background-position:-480px -448px}.exactmetrics-flag.exactmetrics-flag-zw{background-position:0 -480px}.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-report-year-in-review{margin-left:auto;margin-right:auto;max-width:960px;background-color:#fff;background-image:url(../img/confetti-background.png);background-repeat:no-repeat;background-position:0 0;margin-bottom:90px}.exactmetrics-report-year-in-review .exactmetrics-pie-chart-tooltip{left:22px;top:23px}.exactmetrics-report-year-in-review .exactmetrics-reports-doughnut-tooltip{width:120px;height:120px}.exactmetrics-report-year-in-review.exactmetrics-yir-report-calculating-row{width:610px;margin-top:50px}@media (max-width:767px){.exactmetrics-report-year-in-review.exactmetrics-yir-report-calculating-row{width:100%;margin-top:20px}}.exactmetrics-report-year-in-review a,.exactmetrics-report-year-in-review h1,.exactmetrics-report-year-in-review h2,.exactmetrics-report-year-in-review h3,.exactmetrics-report-year-in-review h4,.exactmetrics-report-year-in-review h5,.exactmetrics-report-year-in-review p,.exactmetrics-report-year-in-review span{font-family:Lato,sans-serif;margin:0}.exactmetrics-report-year-in-review h1,.exactmetrics-report-year-in-review h2,.exactmetrics-report-year-in-review h3,.exactmetrics-report-year-in-review h4,.exactmetrics-report-year-in-review h5{font-weight:900}.exactmetrics-report-year-in-review p{font-style:normal;font-weight:400;font-size:14px;line-height:24px}.exactmetrics-report-year-in-review a{text-decoration:none;padding:8px 30px;border-radius:5px;color:#fff;font-weight:700;font-size:14px;line-height:24px;text-align:center}.exactmetrics-report-year-in-review .exactmetrics-yir-separator{border-left-color:#e0e0e0;border-right-color:#e0e0e0;border-top:1px solid #e0e0e0;border-bottom:1px solid #e0e0e0}.exactmetrics-report-year-in-review .exactmetrics-yir-footer,.exactmetrics-report-year-in-review .exactmetrics-yir-header,.exactmetrics-report-year-in-review section{padding:0 90px;clear:both;overflow:hidden}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-footer,.exactmetrics-report-year-in-review .exactmetrics-yir-header,.exactmetrics-report-year-in-review section{padding:0 15px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-footer,.exactmetrics-report-year-in-review .exactmetrics-yir-header,.exactmetrics-report-year-in-review section{padding:0 30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-text-right{text-align:right}.exactmetrics-report-year-in-review .exactmetrics-yir-text-right h2{color:#fff}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header{padding:90px 0 90px 90px;background-image:url(../img/em-logo-lg.png);background-repeat:no-repeat;background-position:center right 26px;background-size:230px 200px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header{padding:50px 15px 40px;background-image:none}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header{padding-left:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating{padding:90px 0 100px 60px;background-image:url(../img/em-logo-lg.png);background-position:right top 83px;background-size:160px 150px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating{padding-left:15px;padding-right:15px;padding-top:50px;background-size:140px 180px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-title{font-size:32px;line-height:37px;color:#393f4c;margin-top:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-title{font-size:26px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-summary{font-weight:400;font-size:14px;line-height:20px;color:#393f4c;max-width:385px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-summary{font-size:12px;max-width:230px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link{background:#4e9ee7;border-radius:5px;font-weight:700;font-size:14px;line-height:16px;text-align:center;color:#fff;border:0;margin-right:0;padding:12px 20px;margin-top:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link{width:inherit}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link{width:inherit}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link:active,.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-subtitle{font-size:20px;font-weight:900;background:#338eef;border-radius:30px;color:#fff;padding:14px 25px 14px 90px;position:relative;display:inline-block}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-subtitle{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-subtitle svg{position:absolute;left:5px;bottom:-5px}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-title{font-style:normal;font-weight:900;font-size:48px;line-height:58px;color:#393f4c;margin-bottom:15px;margin-top:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-title{font-size:20px;line-height:20px;margin-bottom:10px;margin-top:30px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-title{font-size:32px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-summary{font-weight:500;font-size:24px;line-height:32px;color:#828282;max-width:480px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-summary{font-size:16px;line-height:18px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-summary{font-size:16px;line-height:20px;max-width:400px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart{background:#fff;-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);border-radius:4.85258px}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-header{display:-webkit-box;display:-ms-flexbox;display:flex;padding:20px 30px;border-bottom:2px solid #f2f2f2;margin-bottom:55px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-header{margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-header div{width:100%}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-title{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:right;color:#393f4c;margin:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-subtitle{font-size:10px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content{padding:0 50px 15px 30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content{padding:0 15px 15px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content .exactmetrics-reports-bar-chart-holder{position:relative}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content .exactmetrics-reports-bar-chart-holder .exactmetrics-chart-tooltip{position:absolute;pointer-events:none}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box{padding-top:0;position:relative;border:0;-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);background:hsla(0,0%,100%,.38)}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box.exactmetrics-year-in-review-table-box-blur-report .exactmetrics-year-in-review-table-box-list{-webkit-filter:blur(5px);filter:blur(5px)}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header{padding:20px 30px;border-bottom:2px solid #f2f2f2;margin-bottom:30px}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-title{display:inline-block}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-title .exactmetrics-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-title .exactmetrics-report-title{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-subtitle{display:inline-block;float:right}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-subtitle .exactmetrics-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:right;color:#393f4c;margin:0;text-transform:capitalize}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list{padding-bottom:30px}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item{padding:9px 30px}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a{padding:0;border-radius:0;line-height:37px;line-height:inherit}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a:active,.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a:focus,.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a:hover{-webkit-box-shadow:none;box-shadow:none;background:none}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer{position:absolute;bottom:-34px;width:100%;left:0;text-align:center}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer{bottom:-40px}}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer .exactmetrics-yir-tooltip{font-weight:400;font-size:12px;color:#828282}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer .exactmetrics-yir-tooltip span{font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer .exactmetrics-yir-tooltip .exactmetrics-yir-icon{background:#dadada;border-radius:50%;padding:0;margin-right:10px;color:#fff;width:15px;height:15px;display:inline-block;line-height:16px}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart{border:0;margin:0;padding:0;width:100%}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-reports-pie-chart-holder{display:inline-block;float:left}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-reports-pie-chart-holder{display:block;float:none}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-reports-pie-chart-holder .exactmetrics-pie-chart{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAFxSURBVHgB7dlPTsJAFAbwb6BxQVzgTThCXaCC3kEPoFBP0PYGVQ9gvUNFY2PSI3AUFhISgx1njAsjIfa1jA+S90u6aDOTzpf5s5gHCF4KNVyePPntthea7j1Ad9FcUWr9cDc5SkFEDjAavoZKlREc0BrR7aQfU/qQAgTDlwut1D0cUmp5mGSDomr7FgjM4M/hmNZ2aVZHCmD4cK9HaUwN8B9Ih4KHBm4e+7VOsd/Gp7lGTds4AyQSgJsE4CYBuEkAbhKAmwTgJgG4SQBuEoCbBOAmAbhJAG4SgFuju9Emd5qbIktoHaUQq/nbwdcDXMORRktoHTvgJOsnPz4lo2HeNaFI1Zcq3MzA3EtXfrTnJXCAGmCGLUMNMK3SqOy8Byvflh9VC4QFCEh7wG5MU8v1/27XCq8Gz7P2YpHa97KzP1ZaR6jAFrxBQK5xBWd5ZEJsfDNapoAeJ9lxROqDGr4L3nZJ+GjO7qupnV1zchUQO+YTOT9YisPBuEEAAAAASUVORK5CYII=);background-color:#fff;background-repeat:no-repeat;background-position:50%}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content{padding-left:50px;padding-top:35px;float:left}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content{padding-left:0;padding-top:20px;float:none}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin-bottom:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-title{font-size:16px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:18px;line-height:24px;color:#393f4c;margin-top:10px;margin-bottom:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-subtitle{font-size:14px;line-height:14px}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend{position:relative;left:inherit;top:inherit;-webkit-transform:inherit;-ms-transform:inherit;transform:inherit;margin:24px 0 0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend{margin:10px 0 0}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li{display:inline-block;margin-right:30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li{margin-right:10px}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-color{border-radius:0;width:16px;height:16px;margin-bottom:-3px;margin-right:5px}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-text,.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-value{font-family:Lato;font-style:normal;font-weight:700;font-size:14px;line-height:24px;color:#393f4c;min-width:inherit;margin-right:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-text,.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-value{font-size:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip{border:2px solid #e3f1ff;border-radius:5px;padding-top:45px;padding-bottom:45px;overflow:hidden;background:#f3f9ff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip{padding-top:15px;padding-bottom:15px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip a,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip h3,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip p{font-family:Lato,sans-serif;margin:0}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-icon{float:left;width:144px;text-align:center}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-icon{width:90px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-icon img{background:#338eef;padding:12px;border-radius:50%;margin-top:12px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content{float:left;width:calc(100% - 144px);padding-right:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content{padding-right:0;width:calc(100% - 90px)}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-title{font-weight:900;font-size:18px;line-height:27px;color:#333;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-title{font-size:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-summary{font-weight:400;font-size:18px;line-height:27px;color:#393f4c;margin-bottom:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-summary{font-size:12px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper{margin-top:15px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link{font-weight:900;font-size:18px;line-height:27px;-webkit-text-decoration-line:underline;text-decoration-line:underline;color:#338eef;margin-top:15px;padding:0;border-radius:0;text-align:left}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link:hover{color:#2469b2;-webkit-box-shadow:none;box-shadow:none}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay{position:absolute;top:0;left:0;width:calc(100% - 25px);height:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content{margin-top:66px;text-align:center;height:calc(100% - 66px);padding-top:80px;padding-right:25px;padding-left:25px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-details{font-size:14px;line-height:20px;font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay{display:inline-block;border-radius:5px;font-size:14px;line-height:20px;color:#fff;padding:10px 30px;text-decoration:none;font-family:Lato;background:#338eef;margin-top:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success{background:#1ec185}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success:hover{opacity:.8;background:#10ad73}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay:hover{border:0;background:#2469b2;outline:none}.exactmetrics-report-year-in-review .exactmetrics-yir-audience{padding-bottom:85px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience{padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:685px;margin-bottom:80px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-summary{font-size:18px;line-height:20px;margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors{width:100%;margin-bottom:70px;padding-left:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors{margin-bottom:20px;padding-left:0;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions img,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors img{margin-bottom:15px;max-height:28px}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions h4,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors h4{font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions h4,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors h4{font-size:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions .exactmetrics-yir-number,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors .exactmetrics-yir-number{font-weight:900;font-size:60px;line-height:72px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions .exactmetrics-yir-number,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors .exactmetrics-yir-number{font-size:40px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-visitor-by-chart{margin-bottom:60px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-visitor-by-chart{margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics{padding-top:85px;padding-bottom:85px;background-image:url(../img/map-background.png);background-repeat:no-repeat;background-position:top}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics{padding-top:30px;padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:656px;margin-bottom:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-summary{font-size:18px;line-height:20px;margin-bottom:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries{display:block}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country{width:50%;margin-top:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-number-one{font-size:24px;line-height:29px;color:#fff;background:#338eef;width:50px;height:50px;border-radius:50%;display:inline-block;text-align:center;line-height:50px;margin-bottom:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-flag{display:block}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-flag{margin:0 auto}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-flag.exactmetrics-flag-zz{display:none}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-name{font-size:32px;line-height:38px;color:#393f4c;margin-top:0;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-name{font-size:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-visitors{font-weight:400;font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-visitors{font-size:16px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-countries-graph{width:50%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-countries-graph{width:100%}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-know-visitors{font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-know-visitors{font-size:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info{margin-top:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info{width:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info span,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info span,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info span{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info h2,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info h2,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info h2{font-size:30px;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info p,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info p,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info p{font-size:10px;line-height:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior{padding-top:85px;padding-bottom:85px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior{padding-top:30px;padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:585px;margin-bottom:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data{display:block;margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary{width:50%;margin-top:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary img{width:32px;height:32px;margin-left:-3px;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary img{margin-left:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-time-spent{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent{font-size:32px;line-height:38px;color:#393f4c;margin-top:15px;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent{margin-top:5px;margin-bottom:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent .exactmetrics-yir-number{font-weight:900;font-size:48px;line-height:58px;color:#338eef;margin-right:10px;overflow-wrap:break-word}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent .exactmetrics-yir-number{font-size:30px;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent .exactmetrics-yir-type{font-weight:900;font-size:16px;line-height:103.8%;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-each-visitor-spent{font-weight:400;font-size:18px;line-height:24px;color:#393f4c;max-width:330px;margin-top:15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-each-visitor-spent{font-size:14px;max-width:100%;margin-top:5px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-top-pages-graph{width:50%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-top-pages-graph{width:100%}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-most-visitors-device{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-most-visitors-device{font-size:20px;line-height:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info{margin-top:20px;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info{width:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info span,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info h2,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info p,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-grow-traffic-tip{margin-top:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-grow-traffic-tip{margin-top:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from{margin-top:55px;margin-bottom:100px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from{margin-top:20px;margin-bottom:60px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-title{font-size:32px;line-height:44px;color:#393f4c;margin-bottom:30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-title{font-size:20px;line-height:20px;margin-bottom:15px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals{display:block}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-keywords,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-referrals{width:50%;position:relative}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-keywords,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-referrals{width:100%}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-keywords{padding-right:25px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-keywords{padding-right:0;margin-bottom:60px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-referrals{padding-left:25px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-referrals{padding-left:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce{padding-top:85px;padding-bottom:30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce{padding-top:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number{width:55%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number{width:30%}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-products-sold,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-revenue{padding:75px 0}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-title{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-title{font-size:14px;line-height:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-amount{font-size:54px;line-height:65px;color:#338eef;overflow-wrap:break-word}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-amount{font-size:24px;line-height:40px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products{width:45%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products{width:70%}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular{-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);border-radius:3.59813px;padding:30px;margin-bottom:30px}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning img,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular img{margin-bottom:5px}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning span,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning span,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular span{font-size:14px;line-height:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning .exactmetrics-yir-product-title,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular .exactmetrics-yir-product-title{font-weight:700;font-size:28px;line-height:32px;color:#338eef;margin-top:10px;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning .exactmetrics-yir-product-title,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular .exactmetrics-yir-product-title{font-size:16px;line-height:16px;margin-bottom:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning .exactmetrics-yir-count,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular .exactmetrics-yir-count{font-weight:400;font-size:16px;line-height:19px;color:#828282}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning .exactmetrics-yir-count,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular .exactmetrics-yir-count{font-size:12px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-revenue-by-month{margin-bottom:50px}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you{padding-top:90px;background-color:#fff;background-image:url(../img/confetti-background.png);background-position:0 0;padding-bottom:85px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you{padding-top:0;padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-title{font-size:54px;line-height:65px;text-align:center;color:#393f4c;max-width:588px;margin:0 auto 10px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-title{font-size:30px;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-summary{font-weight:500;font-size:20px;line-height:28px;text-align:center;color:#393f4c;max-width:585px;margin:0 auto 15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-summary{font-size:14px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-amazing-year{font-weight:700;font-size:32px;line-height:37px;text-align:center;color:#393f4c;font-style:italic;margin-bottom:35px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-amazing-year{font-size:24px;line-height:24px;margin-bottom:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors{text-align:center;margin-bottom:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors{margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author{display:inline-block;padding:0 45px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author{padding:0 10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-thumbnail{width:96px;height:96px;background-repeat:no-repeat;margin:0 auto 10px}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-thumbnail.chris{background-image:url(../img/chris.png)}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-thumbnail.syed{background-image:url(../img/syed.png)}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-name{font-weight:900;font-size:18px;line-height:22px;text-align:center;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-name{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review{background:#338eef;-webkit-box-shadow:0 8px 8px rgba(30,88,150,.2);box-shadow:0 8px 8px rgba(30,88,150,.2);border-radius:5px;padding:24px;display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review{display:block}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content,.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-rating,.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button{width:100%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content{text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content span{font-weight:900;font-size:14px;color:#fff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content span{font-size:12px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content h3{font-weight:900;font-size:20px;line-height:31px;color:#fff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content h3{font-size:18px;line-height:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-rating .exactmetrics-yir-five-star{margin:0;padding:12px 0 0;text-align:center}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-rating .exactmetrics-yir-five-star li{list-style:none;display:inline-block;margin-right:7px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-rating .exactmetrics-yir-five-star li{margin-right:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button{text-align:center;padding-top:5px}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button a{background:#2469b3;border-radius:5px;text-align:center;height:38px;display:inline-block}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button a:active,.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button a:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button a:hover{background:#123c68}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-title{font-size:36px;line-height:44px;color:#393f4c;margin-bottom:20px;max-width:638px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-title{font-size:20px;line-height:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-summary{font-weight:500;font-size:20px;line-height:24px;color:#393f4c;max-width:450px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-summary{font-size:14px;line-height:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins{margin-top:20px;margin-left:-30px;margin-right:-30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins{margin-left:0;margin-right:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon{width:calc(50% - 60px);float:left;background:#f3f9ff;border:2px solid #e3f1ff;border-radius:5px;position:relative;min-height:260px;margin:30px 30px 0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon{width:100%;margin:30px 0;min-height:300px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top{padding-top:30px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-image{width:104px;float:left;padding-left:25px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-image .exactmetrics-addon-thumb{width:32px;height:32px;border:2px solid #e3f1ff;border-radius:5px;padding:10px;-webkit-box-sizing:content-box;box-sizing:content-box}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-text{width:calc(100% - 104px);float:left;padding-right:25px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-text .exactmetrics-addon-title{font-size:18px;line-height:24px;margin-top:0;font-family:Lato;margin-bottom:5px;color:#393f4c;font-weight:900}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-text .exactmetrics-addon-excerpt{font-weight:400;font-size:14px;line-height:18px;color:#393f4c;font-family:Lato;margin:0}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message{border-top:2px solid #e3f1ff;clear:both;padding:13px 25px;position:absolute;bottom:0;left:0;width:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-addon-status{float:right;line-height:32px;font-weight:900;font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-addon-status span{color:#d4393d}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-button{line-height:32px;background:#338eef;border-radius:3px;display:inline-block;padding:0 30px;border:0;font-weight:700;font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-button:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-button:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-button:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-addon-status span{color:#64bfa5}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-button,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-button:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-button:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-button:hover{background:rgba(51,142,239,.5)}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities{background-color:#338eef;padding-top:160px;margin-top:-90px;color:#fff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities{padding-top:100px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities h2{font-size:36px;line-height:43px;color:#fff;margin-bottom:15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities h2{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities h3{font-weight:500;font-size:20px;line-height:24px;color:#fff;max-width:575px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities h3{font-size:18px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-30px;padding-top:60px;padding-bottom:90px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities{display:block;margin-left:0;padding-bottom:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community{width:100%;background-color:#2469b2;border-radius:5px;margin-left:30px;padding:24px;position:relative;min-height:340px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community{margin-left:0;margin-bottom:30px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community{min-height:350px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-title{font-weight:900;font-size:20px;line-height:24px;margin-bottom:10px;margin-top:5px}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link,.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links{position:absolute;bottom:15px;left:24px;width:80%;width:calc(100% - 48px)}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link{background-color:#123c68;display:block}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link{padding:8px 10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links{margin:0}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links li{float:left;margin-right:8px;margin-bottom:0}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links li a{background-color:#123c68;display:block;margin:0;width:40px;height:40px;padding:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links li a:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links li a:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-footer{height:84px;background:#2368b1;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-footer{display:block;text-align:center;padding:15px 0;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-footer div{width:100%;font-weight:500;font-size:16px;color:#fff;text-align:center}.exactmetrics-report-site-speed .exactmetrics-site-speed-blur{width:100%;padding-top:70%;background-image:url(../img/site-speed-blur.png);background-repeat:no-repeat;background-size:contain;background-position:50%}.exactmetrics-report-site-speed .exactmetrics-upsell-top{max-width:80%;margin:0 auto}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-report-top{display:-webkit-box;display:-ms-flexbox;display:flex}}.exactmetrics-report-site-speed .exactmetrics-report-top h2.exactmetrics-report-top-title{margin-top:10px}.exactmetrics-report-site-speed .exactmetrics-report-top .exactmetrics-export-pdf-report{margin-right:16px}.exactmetrics-report-site-speed .exactmetrics-report-top .exactmetrics-export-pdf-report button{background-color:#f5f5f5;color:#4c6577;border-color:#dcdcdc}.exactmetrics-report-site-speed .exactmetrics-report-top .exactmetrics-run-audit-btn .exactmetrics-run-audit{background-color:#3990ec;height:39px}.exactmetrics-report-site-speed .exactmetrics-report-top .exactmetrics-run-audit-btn .exactmetrics-run-audit:hover{background-color:rgba(57,144,236,.8)}.exactmetrics-report-site-speed .exactmetrics-choose-device-button{margin-left:15px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button{display:inline-block;text-align:center;background-color:#f5f5f5;color:#444;border-color:#dcdcdc;border-radius:5px;outline:none}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button:hover{background-color:#3990ec;border-color:#1c77db;outline:none}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button:hover .svg-icons{fill:#fff}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.active{background-color:#3990ec;border-color:#1c77db;color:#fff;outline:none}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.active .svg-icons{fill:#fff}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.mobile{border-top-right-radius:0;border-bottom-right-radius:0;border-right:0;width:45px;height:40px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.mobile svg{margin-left:-6px;margin-top:-1px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.desktop{border-top-left-radius:0;border-bottom-left-radius:0;border-left:0;width:54px;height:40px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.desktop svg{margin-left:-6px;margin-top:-1px}.exactmetrics-report-site-speed .exactmetrics-site-speed-container{max-width:1010px}.exactmetrics-report-site-speed .exactmetrics-site-speed-device,.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator{width:338px;margin-right:10px;max-height:304px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator{width:100%;margin-bottom:25px}}@media screen and (min-width:768px) and (max-width:1024px){.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator{width:100%;margin-bottom:25px}}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-indicator-device-icon{margin-bottom:40px;text-align:center}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-indicator-device-icon .desktop{width:80px}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-indicator-percent-text{font-size:5em;color:#f2994a;text-align:center;font-weight:700}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-indicator-overall-text{display:inline-block;padding-top:2rem;font-weight:600;font-size:16px;text-align:center}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-progress-circle{max-width:300px;max-height:255px;width:100%;-webkit-transform:scaleX(-1) rotate(-55deg);-ms-transform:scaleX(-1) rotate(-55deg);transform:scaleX(-1) rotate(-55deg);overflow:visible}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-progress-circle__percent{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-progress-circle__container{display:inline-block;position:relative}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-progress-circle__path{-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out;overflow:visible}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats{width:662px}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-site-speed-stats{width:100%}}@media screen and (min-width:768px) and (max-width:1024px){.exactmetrics-report-site-speed .exactmetrics-site-speed-stats{width:100%}}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-report-flex{text-align:center}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-report-flex.exactmetrics-report-2-columns{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-site-speed-stat{width:49%;background-color:#fff;border:1px solid #e0e0e0;min-height:135px;margin-bottom:15px;padding-top:1.2rem}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-site-speed-stat{width:100%;margin-top:15px;margin-right:0}}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-site-speed-stat h2{font-size:40px;margin:0;padding:20px 0 10px}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-site-speed-stat p{color:#828282}.exactmetrics-report-site-speed .exactmetrics-how-to-improve h2.title{font-size:22px;color:#393f4c}div.exactmetrics-pdf-score{position:relative;margin:80px;left:-1px;top:1px}.exactmetrics-admin-page{overflow:hidden}.exactmetrics-report{padding:30px 32px;position:relative}@media (max-width:991px){.exactmetrics-report{padding-left:24px;padding-right:24px}}.exactmetrics-reports-page{margin-bottom:100px}.exactmetrics-reports-page .exactmetrics-header{padding-top:21px;padding-bottom:21px}@media (max-width:782px){.exactmetrics-reports-page .exactmetrics-report-top{margin-bottom:25px}}.exactmetrics_page.exactmetrics-downloading-pdf-report #wpbody{-webkit-filter:blur(15px);filter:blur(15px)}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion-item-details,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-pdf-score{display:block!important}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion-item-title,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion .exactmetrics-accordion div:not(:last-child){border:none!important}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion-item-trigger-icon,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-notificationsv3-container,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-progress-circle{display:none}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-header{min-height:85px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report{width:1120px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation{border-bottom:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button.exactmetrics-active-tab-button{border:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button:first-child{border-right:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-row.exactmetrics-report-row-border-top{border-top:0;margin-bottom:25px}@media (max-width:782px){.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-title{padding-left:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-title.exactmetrics-has-pagination{margin-bottom:25px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-title:before{position:inherit;left:inherit}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button{font-size:18px;padding:23px 20px 25px;text-align:left}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-infobox-row{padding:24px 60px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:25%;border-left:1px solid #bcb7cd;border-top:0;padding:0 10px 0 80px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child{border-left:none;padding-left:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-reports-ecommerce-pie-chart{width:40%;padding-top:130px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart .exactmetrics-pie-chart{margin:inherit}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart .exactmetrics-reports-pie-chart-holder{-webkit-box-pack:inherit;-ms-flex-pack:inherit;justify-content:inherit;-webkit-box-align:inherit;-ms-flex-align:inherit;align-items:inherit;margin-left:20px;-webkit-box-orient:inherit;-webkit-box-direction:inherit;-ms-flex-flow:wrap;flex-flow:wrap}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-report-box{width:calc(50% - 12.5px);margin-top:0}}@media (max-width:991px){.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-row.exactmetrics-report-row-border-top{margin-left:-32px;margin-right:-32px;padding-left:32px;padding-right:32px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex{-ms-flex-flow:inherit;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:inherit}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart{width:50%;border:none;padding-left:32px;padding-right:20px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart:first-child{border-right:1px solid #e9e7ee}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-table-box{margin-left:20px;margin-top:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-table-box:first-child{margin-left:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-report-2-columns .exactmetrics-table-box{width:calc(50% - 12.5px)}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex.exactmetrics-interests-scroll-report .exactmetrics-table-box{width:100%}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-reports-pie-chart{width:calc(50% - 12.5px)}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-reports-pie-chart:first-child{margin:0 25px 0 0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-left:25px;margin-top:0}}body.exactmetrics-reporting-page #wpbody-content{padding-bottom:0}body.exactmetrics-reporting-page .exactmetrics-red{color:#d73638}body.exactmetrics-reporting-page .exactmetrics-green{color:#5cc0a5}body.exactmetrics-reporting-page .exactmetrics-report-top{margin-top:14px;margin-bottom:24px}@media (min-width:783px) and (max-width:1130px){body.exactmetrics-reporting-page .exactmetrics-report-top{margin-bottom:25px}}body.exactmetrics-reporting-page .exactmetrics-report-top h2{margin:12px 0;display:inline-block;color:#210f59;font-size:32px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-report-top h2{display:none}}@media (min-width:783px) and (max-width:1130px){body.exactmetrics-reporting-page .exactmetrics-report-top h2{display:block;margin:0 0 25px}}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report{float:right;margin-right:25px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-export-pdf-report{float:none;margin-right:0;margin-bottom:0;text-align:center;padding-top:20px}}@media (min-width:783px) and (max-width:1130px){body.exactmetrics-reporting-page .exactmetrics-export-pdf-report{float:none;margin-bottom:0}}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button{background:#e9e7ee;color:#210f59}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button:focus,body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button:hover{background:#bcb7cd}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button[disabled=disabled]{cursor:not-allowed}body.exactmetrics-reporting-page .exactmetrics-report-realtime .exactmetrics-export-pdf-report{margin-right:0}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{display:-webkit-box;display:-ms-flexbox;display:flex;float:right}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{float:none;width:100%;-ms-flex-flow:wrap;flex-flow:wrap}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker .exactmetrics-buttons-toggle{width:100%;margin-right:0}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker .exactmetrics-buttons-toggle .exactmetrics-button{width:50%}}@media (min-width:783px) and (max-width:1130px){body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{float:right}}body.exactmetrics-reporting-page .exactmet