Google Analytics Dashboard for WP (GADWP) - Version 6.0.1

Version Description

Download this release

Release Info

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

Code changes from version 6.0.0 to 6.0.1

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: 6.0.0
8
  * Author URI: https://exactmetrics.com
9
  * Text Domain: google-analytics-dashboard-for-wp
10
  * Domain Path: /languages
@@ -42,7 +42,7 @@ final class ExactMetrics_Lite {
42
  * @access public
43
  * @var string $version Plugin version.
44
  */
45
- public $version = '6.0.0';
46
 
47
  /**
48
  * Plugin file.
@@ -179,8 +179,8 @@ final class ExactMetrics_Lite {
179
  self::$instance->require_files();
180
 
181
  // This does the version to version background upgrade routines and initial install
182
- $mi_version = get_option( 'exactmetrics_current_version', '5.5.3' );
183
- if ( version_compare( $mi_version, '6.0.0', '<' ) ) {
184
  exactmetrics_lite_call_install_and_upgrade();
185
  }
186
 
@@ -656,7 +656,7 @@ function exactmetrics_lite_install_and_upgrade() {
656
  }
657
  }
658
 
659
- // Don't run if MI Pro is installed
660
  if ( class_exists( 'ExactMetrics' ) ) {
661
  if ( is_plugin_active( plugin_basename( __FILE__ ) ) ) {
662
  return;
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: 6.0.1
8
  * Author URI: https://exactmetrics.com
9
  * Text Domain: google-analytics-dashboard-for-wp
10
  * Domain Path: /languages
42
  * @access public
43
  * @var string $version Plugin version.
44
  */
45
+ public $version = '6.0.1';
46
 
47
  /**
48
  * Plugin file.
179
  self::$instance->require_files();
180
 
181
  // This does the version to version background upgrade routines and initial install
182
+ $em_version = get_option( 'exactmetrics_current_version', '5.5.3' );
183
+ if ( version_compare( $em_version, '6.0.0', '<' ) ) {
184
  exactmetrics_lite_call_install_and_upgrade();
185
  }
186
 
656
  }
657
  }
658
 
659
+ // Don't run if ExactMetrics Pro is installed
660
  if ( class_exists( 'ExactMetrics' ) ) {
661
  if ( is_plugin_active( plugin_basename( __FILE__ ) ) ) {
662
  return;
includes/admin/admin.php CHANGED
@@ -279,7 +279,7 @@ function exactmetrics_admin_setup_notices() {
279
  $urlone = is_network_admin() ? network_admin_url( 'admin.php?page=exactmetrics-onboarding' ) : admin_url( 'admin.php?page=exactmetrics-onboarding' );
280
  $secondary = esc_html__( 'Learn More', 'google-analytics-dashboard-for-wp' );
281
  $urltwo = $submenu_base . '#/about/getting-started';
282
- $message = esc_html__( 'ExactMetrics, WordPress analytics plugin, helps you connect your website with Google Analytics, so you can see how people find and use your website. Over 2 million website owners use ExactMetrics to see the stats that matter and grow their business.', 'google-analytics-dashboard-for-wp' );
283
  echo '<div class="notice notice-info"><p style="font-weight:700">'. $title .'</p><p>'. $message.'</p><p><a href="'. $urlone .'" class="button-primary">'. $primary .'</a>&nbsp;&nbsp;&nbsp;<a href="'. $urltwo .'" class="button-secondary">'. $secondary .'</a></p></div>';
284
  return;
285
  }
279
  $urlone = is_network_admin() ? network_admin_url( 'admin.php?page=exactmetrics-onboarding' ) : admin_url( 'admin.php?page=exactmetrics-onboarding' );
280
  $secondary = esc_html__( 'Learn More', 'google-analytics-dashboard-for-wp' );
281
  $urltwo = $submenu_base . '#/about/getting-started';
282
+ $message = esc_html__( 'ExactMetrics, WordPress analytics plugin, helps you connect your website with Google Analytics, so you can see how people find and use your website. Over 1 million website owners use ExactMetrics to see the stats that matter and grow their business.', 'google-analytics-dashboard-for-wp' );
283
  echo '<div class="notice notice-info"><p style="font-weight:700">'. $title .'</p><p>'. $message.'</p><p><a href="'. $urlone .'" class="button-primary">'. $primary .'</a>&nbsp;&nbsp;&nbsp;<a href="'. $urltwo .'" class="button-secondary">'. $secondary .'</a></p></div>';
284
  return;
285
  }
includes/admin/tracking.php CHANGED
@@ -73,7 +73,7 @@ class ExactMetrics_Tracking {
73
  }
74
 
75
  $data['php_version'] = phpversion();
76
- $data['mi_version'] = EXACTMETRICS_VERSION;
77
  $data['wp_version'] = get_bloginfo( 'version' );
78
  $data['server'] = isset( $_SERVER['SERVER_SOFTWARE'] ) ? $_SERVER['SERVER_SOFTWARE'] : '';
79
  $data['over_time'] = get_option( 'exactmetrics_over_time', array() );
73
  }
74
 
75
  $data['php_version'] = phpversion();
76
+ $data['em_version'] = EXACTMETRICS_VERSION;
77
  $data['wp_version'] = get_bloginfo( 'version' );
78
  $data['server'] = isset( $_SERVER['SERVER_SOFTWARE'] ) ? $_SERVER['SERVER_SOFTWARE'] : '';
79
  $data['over_time'] = get_option( 'exactmetrics_over_time', array() );
includes/em-install.php CHANGED
@@ -363,8 +363,13 @@ class ExactMetrics_Install {
363
  }
364
 
365
  // Transfer enhanced eCommerce
366
- if ( ! empty( $em_legacy_options['ecommerce_mode'] ) && 'enhanced' === $em_legacy_options['ecommerce_mode'] ) {
367
- $settings['enhanced_ecommerce'] = true;
 
 
 
 
 
368
  }
369
 
370
  // Transfer Demographics
@@ -376,6 +381,20 @@ class ExactMetrics_Install {
376
 
377
  $settings['gadwp_migrated'] = time();
378
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
379
  // Add transient to trigger redirect.
380
  set_transient( '_exactmetrics_activation_redirect', 1, 60 );
381
 
363
  }
364
 
365
  // Transfer enhanced eCommerce
366
+ if ( ! empty( $em_legacy_options['ecommerce_mode'] ) ) {
367
+ if ( 'disabled' !== $em_legacy_options['ecommerce_mode'] ) {
368
+ $settings['gadwp_ecommerce'] = true;
369
+ }
370
+ if ( 'enhanced' === $em_legacy_options['ecommerce_mode'] ) {
371
+ $settings['enhanced_ecommerce'] = true;
372
+ }
373
  }
374
 
375
  // Transfer Demographics
381
 
382
  $settings['gadwp_migrated'] = time();
383
 
384
+ // Hide the dashboard widget reports for migrating users.
385
+ if ( ! exactmetrics_is_pro_version() ) {
386
+ $dashboard_settings = array(
387
+ 'reports' => array(
388
+ 'overview' => array(
389
+ 'toppages' => false,
390
+ 'newvsreturn' => false,
391
+ 'devices' => false,
392
+ ),
393
+ ),
394
+ );
395
+ update_user_meta( get_current_user_id(), 'exactmetrics_user_preferences', $dashboard_settings );
396
+ }
397
+
398
  // Add transient to trigger redirect.
399
  set_transient( '_exactmetrics_activation_redirect', 1, 60 );
400
 
includes/frontend/tracking/class-tracking-analytics.php CHANGED
@@ -228,10 +228,10 @@ class ExactMetrics_Tracking_Analytics extends ExactMetrics_Tracking_Abstract {
228
  } ?>
229
  <?php if ( $ua ) { ?>
230
  <script<?php echo $attr_string;?>>
231
- var mi_version = '<?php echo EXACTMETRICS_VERSION; ?>';
232
- var mi_track_user = <?php echo ( $track_user ? 'true' : 'false' ); ?>;
233
- var mi_no_track_reason = <?php echo ( $reason ? "'" . esc_js( $reason) . "'": "''" ); ?>;
234
- <?php do_action( 'exactmetrics_tracking_analytics_frontend_output_after_mi_track_user' ); ?>
235
 
236
  <?php if ( $this->should_do_optout() ) { ?>
237
  var disableStr = 'ga-disable-<?php echo exactmetrics_get_ua(); ?>';
@@ -259,7 +259,7 @@ class ExactMetrics_Tracking_Analytics extends ExactMetrics_Tracking_Abstract {
259
  }
260
  <?php } ?>
261
 
262
- if ( mi_track_user ) {
263
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
264
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
265
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
@@ -307,7 +307,7 @@ class ExactMetrics_Tracking_Analytics extends ExactMetrics_Tracking_Abstract {
307
  }
308
  var f = arguments[len-1];
309
  if ( typeof f !== 'object' || f === null || typeof f.hitCallback !== 'function' ) {
310
- console.log( '<?php echo esc_js( __("Not running function", "google-analytics-dashboard-for-wp" ) );?> __gaTracker(' + arguments[0] + " ....) <?php echo esc_js( __( "because you are not being tracked.", 'google-analytics-dashboard-for-wp' ) );?> " + mi_no_track_reason );
311
  return;
312
  }
313
  try {
@@ -341,6 +341,6 @@ class ExactMetrics_Tracking_Analytics extends ExactMetrics_Tracking_Abstract {
341
  }
342
 
343
  public function should_do_optout() {
344
- return ! ( defined( 'MI_NO_TRACKING_OPTOUT' ) && MI_NO_TRACKING_OPTOUT );
345
  }
346
  }
228
  } ?>
229
  <?php if ( $ua ) { ?>
230
  <script<?php echo $attr_string;?>>
231
+ var em_version = '<?php echo EXACTMETRICS_VERSION; ?>';
232
+ var em_track_user = <?php echo ( $track_user ? 'true' : 'false' ); ?>;
233
+ var em_no_track_reason = <?php echo ( $reason ? "'" . esc_js( $reason) . "'": "''" ); ?>;
234
+ <?php do_action( 'exactmetrics_tracking_analytics_frontend_output_after_em_track_user' ); ?>
235
 
236
  <?php if ( $this->should_do_optout() ) { ?>
237
  var disableStr = 'ga-disable-<?php echo exactmetrics_get_ua(); ?>';
259
  }
260
  <?php } ?>
261
 
262
+ if ( em_track_user ) {
263
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
264
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
265
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
307
  }
308
  var f = arguments[len-1];
309
  if ( typeof f !== 'object' || f === null || typeof f.hitCallback !== 'function' ) {
310
+ console.log( '<?php echo esc_js( __("Not running function", "google-analytics-dashboard-for-wp" ) );?> __gaTracker(' + arguments[0] + " ....) <?php echo esc_js( __( "because you are not being tracked.", 'google-analytics-dashboard-for-wp' ) );?> " + em_no_track_reason );
311
  return;
312
  }
313
  try {
341
  }
342
 
343
  public function should_do_optout() {
344
+ return ! ( defined( 'EM_NO_TRACKING_OPTOUT' ) && EM_NO_TRACKING_OPTOUT );
345
  }
346
  }
includes/helpers.php CHANGED
@@ -1115,7 +1115,7 @@ function exactmetrics_get_shareasale_url( $shareasale_id, $shareasale_redirect )
1115
 
1116
  // Whether we have an ID or not, filter the ID.
1117
  $shareasale_redirect = apply_filters( 'exactmetrics_shareasale_redirect_url', $shareasale_redirect, $custom );
1118
- $shareasale_url = sprintf( 'https://www.shareasale.com/r.cfm?B=971799&U=%s&M=69975&urllink=%s', $shareasale_id, $shareasale_redirect );
1119
  $shareasale_url = apply_filters( 'exactmetrics_shareasale_redirect_entire_url', $shareasale_url, $shareasale_id, $shareasale_redirect );
1120
  return $shareasale_url;
1121
  }
1115
 
1116
  // Whether we have an ID or not, filter the ID.
1117
  $shareasale_redirect = apply_filters( 'exactmetrics_shareasale_redirect_url', $shareasale_redirect, $custom );
1118
+ $shareasale_url = sprintf( 'https://www.shareasale.com/r.cfm?B=1494714&U=%s&M=94980&urllink=%s', $shareasale_id, $shareasale_redirect );
1119
  $shareasale_url = apply_filters( 'exactmetrics_shareasale_redirect_entire_url', $shareasale_url, $shareasale_id, $shareasale_redirect );
1120
  return $shareasale_url;
1121
  }
languages/google-analytics-dashboard-for-wp.pot CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the ExactMetrics Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: ExactMetrics Pro 6.0.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: 2020-02-12T15:03:44+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.2.0\n"
15
  "X-Domain: google-analytics-dashboard-for-wp\n"
@@ -152,7 +152,7 @@ msgstr ""
152
  #: lite/includes/admin/wp-site-health.php:298
153
  #: lite/includes/admin/wp-site-health.php:324
154
  #: lite/includes/admin/wp-site-health.php:351
155
- #: languages/vue.php:1261
156
  msgid "View Addons"
157
  msgstr ""
158
 
@@ -288,25 +288,25 @@ msgstr ""
288
  msgid "Upgrade to ExactMetrics Pro"
289
  msgstr ""
290
 
291
- #: lite/includes/admin/onboarding-wizard.php:168
292
  msgid "ExactMetrics &rsaquo; Onboarding Wizard"
293
  msgstr ""
294
 
295
- #: lite/includes/admin/onboarding-wizard.php:181
296
  msgid "Return to Dashboard"
297
  msgstr ""
298
 
299
- #: lite/includes/admin/onboarding-wizard.php:247
300
  msgid "You are not allowed to install plugins"
301
  msgstr ""
302
 
303
  #: lite/includes/admin/reports/report-queries.php:22
304
- #: languages/vue.php:145
305
  msgid "Search Console"
306
  msgstr ""
307
 
308
  #: lite/includes/admin/reports/report-ecommerce.php:22
309
- #: languages/vue.php:141
310
  msgid "eCommerce"
311
  msgstr ""
312
 
@@ -319,17 +319,17 @@ msgid "Real Time"
319
  msgstr ""
320
 
321
  #: lite/includes/admin/reports/report-publisher.php:22
322
- #: languages/vue.php:137
323
  msgid "Publishers"
324
  msgstr ""
325
 
326
  #: lite/includes/admin/reports/report-dimensions.php:22
327
- #: languages/vue.php:236
328
  msgid "Dimensions"
329
  msgstr ""
330
 
331
  #: lite/includes/admin/reports/report-forms.php:22
332
- #: languages/vue.php:151
333
  msgid "Forms"
334
  msgstr ""
335
 
@@ -600,7 +600,7 @@ msgstr ""
600
 
601
  #: includes/admin/admin.php:39
602
  #: includes/admin/admin.php:95
603
- #: languages/vue.php:1728
604
  msgid "Reports"
605
  msgstr ""
606
 
@@ -629,7 +629,7 @@ msgstr ""
629
 
630
  #: includes/admin/admin.php:60
631
  #: includes/admin/admin.php:103
632
- #: languages/vue.php:159
633
  msgid "About Us"
634
  msgstr ""
635
 
@@ -657,7 +657,7 @@ msgstr ""
657
 
658
  #: includes/admin/admin.php:175
659
  #: includes/admin/admin.php:178
660
- #: languages/vue.php:1027
661
  msgid "Support"
662
  msgstr ""
663
 
@@ -667,23 +667,23 @@ msgid "Please rate %1$sExactMetrics%2$s on %3$s %4$sWordPress.org%5$s to help us
667
  msgstr ""
668
 
669
  #: includes/admin/admin.php:277
670
- #: languages/vue.php:397
671
  msgid "Please Setup Website Analytics to See Audience Insights"
672
  msgstr ""
673
 
674
  #: includes/admin/admin.php:278
675
- #: languages/vue.php:403
676
  msgid "Connect ExactMetrics and Setup Website Analytics"
677
  msgstr ""
678
 
679
  #: includes/admin/admin.php:280
680
- #: languages/vue.php:280
681
  msgid "Learn More"
682
  msgstr ""
683
 
684
  #: includes/admin/admin.php:282
685
- #: languages/vue.php:400
686
- 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 2 million website owners use ExactMetrics to see the stats that matter and grow their business."
687
  msgstr ""
688
 
689
  #. Translators: Adds a link to retrieve the license.
@@ -693,17 +693,17 @@ msgstr ""
693
 
694
  #. Translators: Adds a link to the license renewal.
695
  #: includes/admin/admin.php:303
696
- #: languages/vue.php:306
697
  msgid "Your license key for ExactMetrics has expired. %1$sPlease click here to renew your license key.%2$s"
698
  msgstr ""
699
 
700
  #: includes/admin/admin.php:305
701
- #: languages/vue.php:309
702
  msgid "Your license key for ExactMetrics has been disabled. Please use a different key."
703
  msgstr ""
704
 
705
  #: includes/admin/admin.php:307
706
- #: languages/vue.php:312
707
  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."
708
  msgstr ""
709
 
@@ -784,7 +784,7 @@ msgid "View supported browsers"
784
  msgstr ""
785
 
786
  #: includes/admin/reports/overview.php:34
787
- #: languages/vue.php:133
788
  msgid "Overview"
789
  msgstr ""
790
 
@@ -876,7 +876,7 @@ msgid "Upgrading is easy! To upgrade, navigate to %1$ssour pricing page%2$s, pur
876
  msgstr ""
877
 
878
  #: includes/admin/reports/abstract-report.php:375
879
- #: languages/vue.php:325
880
  msgid "Upgrade Now"
881
  msgstr ""
882
 
@@ -1957,2702 +1957,2734 @@ msgstr ""
1957
  msgid "%1$s is %3$sdeprecated%4$s since ExactMetrics version %2$s."
1958
  msgstr ""
1959
 
1960
- #: languages/vue.php:5
1961
  msgid "Error"
1962
  msgstr ""
1963
 
1964
- #: languages/vue.php:8
1965
  msgid "Please try again."
1966
  msgstr ""
1967
 
1968
- #: languages/vue.php:11
1969
- msgid "Loading settings"
1970
- msgstr ""
1971
-
1972
- #: languages/vue.php:14
1973
  msgid "Loading Settings"
1974
  msgstr ""
1975
 
1976
- #: languages/vue.php:17
1977
  msgid "Please wait..."
1978
  msgstr ""
1979
 
1980
- #: languages/vue.php:20
1981
  msgid "Saving Changes..."
1982
  msgstr ""
1983
 
1984
- #: languages/vue.php:23
1985
  msgid "Settings Updated"
1986
  msgstr ""
1987
 
1988
  #. Translators: Add a link to the onboarding wizard.
1989
- #: languages/vue.php:27
1990
  msgid "You need to %1$sconnect ExactMetrics%2$s first"
1991
  msgstr ""
1992
 
1993
- #: languages/vue.php:30
1994
  msgid "Could Not Save Changes"
1995
  msgstr ""
1996
 
1997
- #: languages/vue.php:33
1998
  msgid "Loading new report data"
1999
  msgstr ""
2000
 
2001
- #. Translators: Placeholder gets replaced with an arrow icon.
2002
- #: languages/vue.php:37
2003
  msgid "Continue %s"
2004
  msgstr ""
2005
 
2006
- #: languages/vue.php:40
2007
  msgid "Unlock the Publishers Report and Focus on the Content that Matters"
2008
  msgstr ""
2009
 
2010
- #: languages/vue.php:43
2011
  msgid "Stop guessing about what content your visitors are interested in. ExactMetrics Publisher Report shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions."
2012
  msgstr ""
2013
 
2014
- #: languages/vue.php:46
2015
  msgid "Unlock the Publishers Report and Focus on the Content That Matters"
2016
  msgstr ""
2017
 
2018
- #: languages/vue.php:49
2019
  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."
2020
  msgstr ""
2021
 
2022
- #: languages/vue.php:52
2023
  msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
2024
  msgstr ""
2025
 
2026
- #: languages/vue.php:55
2027
  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."
2028
  msgstr ""
2029
 
2030
- #: languages/vue.php:58
2031
  msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
2032
  msgstr ""
2033
 
2034
- #: languages/vue.php:61
2035
  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."
2036
  msgstr ""
2037
 
2038
- #: languages/vue.php:64
2039
  msgid "Unlock the Forms Report and Improve Conversions"
2040
  msgstr ""
2041
 
2042
- #: languages/vue.php:67
2043
  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."
2044
  msgstr ""
2045
 
2046
- #: languages/vue.php:70
2047
  msgid "Unlock the Search Console Report and See How People Find Your Website"
2048
  msgstr ""
2049
 
2050
- #: languages/vue.php:73
2051
  msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
2052
  msgstr ""
2053
 
2054
- #: languages/vue.php:76
2055
  msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
2056
  msgstr ""
2057
 
2058
- #: languages/vue.php:79
2059
  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."
2060
  msgstr ""
2061
 
 
 
 
 
2062
  #: languages/vue.php:84
2063
- msgid "Overview Report"
2064
  msgstr ""
2065
 
2066
- #. Translators: Number of visitors.
2067
  #: languages/vue.php:88
2068
- msgid "See how %s visitors found your site!"
2069
  msgstr ""
2070
 
2071
- #. Translators: Number of visitors.
2072
- #: languages/vue.php:92
2073
- msgid "Your website was visited by %s users in the last 30 days."
2074
  msgstr ""
2075
 
 
2076
  #: languages/vue.php:95
2077
- msgid "See the full analytics report!"
2078
  msgstr ""
2079
 
2080
  #: languages/vue.php:98
2081
- msgid "Success! "
2082
  msgstr ""
2083
 
2084
- #: languages/vue.php:101
2085
- msgid "You're now using ExactMetrics Pro with all the features."
 
2086
  msgstr ""
2087
 
2088
- #. Translators: Placeholder gets replaced with an arrow icon.
2089
  #: languages/vue.php:105
2090
- msgid "Get Started %s"
2091
  msgstr ""
2092
 
2093
- #. Translators: Current WordPress version.
2094
- #: languages/vue.php:109
2095
- msgid "ExactMetrics has detected that your site is running an outdated version of WordPress (%s). ExactMetrics will stop supporting WordPress versions lower than 4.6 in April, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
2096
  msgstr ""
2097
 
 
2098
  #: languages/vue.php:112
2099
- msgid "Yikes! PHP Update Required"
2100
  msgstr ""
2101
 
2102
- #. Translators: Current PHP version and recommended PHP version.
2103
- #: languages/vue.php:116
2104
- msgid "ExactMetrics has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. WordPress stopped supporting your PHP version in April, 2019. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure."
2105
  msgstr ""
2106
 
 
2107
  #: languages/vue.php:119
2108
- msgid "Learn more about updating PHP"
2109
  msgstr ""
2110
 
2111
- #: languages/vue.php:122
2112
- msgid "Yikes! WordPress Update Required"
 
2113
  msgstr ""
2114
 
2115
- #. Translators: Current WordPress version.
2116
- #: languages/vue.php:126
2117
- msgid "ExactMetrics has detected that your site is running an outdated version of WordPress (%s). ExactMetrics will stop supporting WordPress versions lower than 4.9 in October, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
2118
  msgstr ""
2119
 
2120
- #: languages/vue.php:129
2121
- msgid "Learn more about updating WordPress"
 
2122
  msgstr ""
2123
 
2124
- #: languages/vue.php:148
2125
- msgid "Dimensions Report"
 
2126
  msgstr ""
2127
 
2128
- #: languages/vue.php:154
2129
- msgid "Real-Time"
 
2130
  msgstr ""
2131
 
2132
- #: languages/vue.php:163
2133
- msgid "Getting Started"
 
2134
  msgstr ""
2135
 
2136
- #: languages/vue.php:167
2137
- msgid "Lite vs Pro"
 
2138
  msgstr ""
2139
 
2140
- #: languages/vue.php:170
2141
- msgid "General"
 
2142
  msgstr ""
2143
 
2144
- #: languages/vue.php:173
2145
- msgid "Engagement"
2146
  msgstr ""
2147
 
2148
- #: languages/vue.php:176
2149
- msgid "Publisher"
2150
  msgstr ""
2151
 
2152
- #: languages/vue.php:179
2153
- msgid "Conversions"
2154
  msgstr ""
2155
 
2156
- #: languages/vue.php:182
2157
- msgid "Advanced"
2158
  msgstr ""
2159
 
2160
- #: languages/vue.php:185
2161
- msgid "URL Builder"
2162
  msgstr ""
2163
 
2164
- #: languages/vue.php:188
2165
- msgid "Import Export"
2166
  msgstr ""
2167
 
2168
- #: languages/vue.php:191
2169
- msgid "Go back"
2170
  msgstr ""
2171
 
2172
- #. Translators: Placeholders are replaced with the current step number out of the total number of steps.
2173
- #: languages/vue.php:195
2174
- msgid "Step %1$s of %2$s"
 
 
 
 
 
 
 
2175
  msgstr ""
2176
 
2177
  #: languages/vue.php:198
2178
- msgid "Exit Setup"
2179
  msgstr ""
2180
 
2181
- #. Translators: Error status and error text.
2182
  #: languages/vue.php:202
2183
- msgid "Can't load report data. Error: %1$s, %2$s"
2184
  msgstr ""
2185
 
2186
- #: languages/vue.php:205
2187
- msgid "Error loading report data"
2188
  msgstr ""
2189
 
2190
- #: languages/vue.php:208
2191
- msgid "ExactMetrics encountered an error loading your report data"
2192
  msgstr ""
2193
 
2194
- #: languages/vue.php:211
2195
- msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
2196
  msgstr ""
2197
 
2198
- #: languages/vue.php:214
2199
- #: languages/vue.php:2176
2200
- msgid "Reconnect ExactMetrics"
2201
  msgstr ""
2202
 
2203
  #: languages/vue.php:218
2204
- msgid "Re-Authenticating"
2205
  msgstr ""
2206
 
2207
  #: languages/vue.php:221
2208
- msgid "Ok"
2209
  msgstr ""
2210
 
2211
  #: languages/vue.php:224
2212
- msgid "You must connect with ExactMetrics before you can view reports."
2213
- msgstr ""
2214
-
2215
- #: languages/vue.php:227
2216
- msgid "ExactMetrics makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
2217
  msgstr ""
2218
 
2219
  #: languages/vue.php:230
2220
- msgid "Launch Setup Wizard"
2221
  msgstr ""
2222
 
2223
  #: languages/vue.php:233
2224
- msgid "Please ask your webmaster to connect ExactMetrics to Google Analytics."
 
 
 
 
2225
  msgstr ""
2226
 
2227
  #: languages/vue.php:239
2228
- msgid "Save Changes"
2229
  msgstr ""
2230
 
2231
- #. Translators: Adds a link to documentation.
2232
- #: languages/vue.php:243
2233
- 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"
2234
  msgstr ""
2235
 
2236
- #. Translators: Adds link to activate/install plugin and documentation.
2237
- #: languages/vue.php:247
2238
- 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"
2239
  msgstr ""
2240
 
2241
- #: languages/vue.php:251
2242
- msgid "Activate"
2243
  msgstr ""
2244
 
2245
- #: languages/vue.php:255
2246
- msgid "Install"
 
2247
  msgstr ""
2248
 
2249
- #. Translators: Adds a link to documentation.
2250
- #: languages/vue.php:259
2251
- 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"
 
 
 
 
2252
  msgstr ""
2253
 
2254
- #. Translators: Adds link to activate/install plugin and documentation.
2255
  #: languages/vue.php:263
2256
- 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"
2257
  msgstr ""
2258
 
2259
- #: languages/vue.php:266
2260
- #: languages/vue.php:951
2261
- msgid "ExactMetrics Addons"
2262
  msgstr ""
2263
 
2264
- #: languages/vue.php:269
2265
- msgid "Search Addons"
 
2266
  msgstr ""
2267
 
2268
- #. Translators: Number of days.
2269
- #: languages/vue.php:273
2270
- msgid "Last %s days"
 
 
 
 
 
 
 
 
2271
  msgstr ""
2272
 
2273
  #. Translators: Placeholder is replaced with WPForms.
2274
- #: languages/vue.php:277
2275
  msgid "Recommended Plugin: %s"
2276
  msgstr ""
2277
 
2278
- #: languages/vue.php:283
2279
- msgid "See Quick Links"
2280
  msgstr ""
2281
 
2282
- #: languages/vue.php:286
2283
- msgid "Suggest a Feature"
2284
  msgstr ""
2285
 
2286
- #: languages/vue.php:289
2287
- msgid "Join Our Community"
 
2288
  msgstr ""
2289
 
2290
- #: languages/vue.php:292
2291
- msgid "Support & Docs"
2292
  msgstr ""
2293
 
2294
- #: languages/vue.php:295
2295
- msgid "Upgrade to Pro &#187;"
2296
  msgstr ""
2297
 
2298
- #: languages/vue.php:298
2299
- msgid "Analytics"
 
2300
  msgstr ""
2301
 
2302
- #. Translators: Adds an arrow icon.
2303
- #: languages/vue.php:302
2304
- msgid "View All Reports %s"
 
 
 
2305
  msgstr ""
2306
 
2307
  #: languages/vue.php:316
2308
- msgid "Pro Plan"
2309
  msgstr ""
2310
 
 
2311
  #: languages/vue.php:320
2312
- msgid "per year"
2313
  msgstr ""
2314
 
2315
- #: languages/vue.php:332
2316
- msgid "Upgrade to PRO"
2317
  msgstr ""
2318
 
2319
- #: languages/vue.php:336
2320
- msgid "eCommerce Tracking"
2321
  msgstr ""
2322
 
2323
- #: languages/vue.php:341
2324
- msgid "Custom Dimensions"
2325
  msgstr ""
2326
 
2327
- #: languages/vue.php:345
2328
- msgid "Form Tracking"
2329
  msgstr ""
2330
 
2331
- #: languages/vue.php:349
2332
- msgid "AMP Support"
2333
  msgstr ""
2334
 
2335
- #: languages/vue.php:353
2336
- msgid "Author Tracking"
2337
  msgstr ""
2338
 
2339
- #: languages/vue.php:357
2340
- msgid "EU Compliance Addon"
2341
  msgstr ""
2342
 
2343
- #: languages/vue.php:361
2344
- msgid "Real Time Report"
2345
  msgstr ""
2346
 
2347
- #: languages/vue.php:366
2348
- msgid "Google Optimize"
2349
  msgstr ""
2350
 
2351
- #: languages/vue.php:370
2352
- msgid "Custom Date Ranges"
2353
  msgstr ""
2354
 
2355
- #: languages/vue.php:374
2356
- 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!"
 
2357
  msgstr ""
2358
 
2359
- #: languages/vue.php:378
2360
- msgid "Daniel Monaghan - Experienced"
2361
  msgstr ""
2362
 
2363
- #: languages/vue.php:382
2364
- 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."
2365
  msgstr ""
2366
 
2367
- #: languages/vue.php:386
2368
- msgid "Naomi Spirit - From This Day"
2369
  msgstr ""
2370
 
2371
  #: languages/vue.php:390
2372
- 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!"
2373
  msgstr ""
2374
 
2375
- #: languages/vue.php:394
2376
- msgid "Julie Dupuis - Faraway Land Travel"
2377
  msgstr ""
2378
 
2379
- #: languages/vue.php:406
2380
- msgid "Welcome to the all-new ExactMetrics"
2381
  msgstr ""
2382
 
2383
- #: languages/vue.php:409
2384
- msgid "Redesigned from the ground up, ExactMetrics is built to bring a world-class analytics and reporting experience to WordPress."
2385
  msgstr ""
2386
 
2387
- #: languages/vue.php:412
2388
- msgid "The New & Improved ExactMetrics includes:"
2389
  msgstr ""
2390
 
2391
- #: languages/vue.php:415
2392
- msgid "All-New Design"
2393
  msgstr ""
2394
 
2395
- #: languages/vue.php:418
2396
- msgid "Better Reporting"
2397
  msgstr ""
2398
 
2399
- #: languages/vue.php:421
2400
- msgid "Better Tracking"
2401
  msgstr ""
2402
 
2403
- #: languages/vue.php:424
2404
- msgid "Better Support"
2405
  msgstr ""
2406
 
2407
- #: languages/vue.php:427
2408
- msgid "Continue"
2409
  msgstr ""
2410
 
2411
- #: languages/vue.php:430
2412
- msgid "Your settings have been automatically transferred."
2413
  msgstr ""
2414
 
2415
- #: languages/vue.php:434
2416
- msgid "Ecommerce"
2417
  msgstr ""
2418
 
2419
- #. Translators: Add line break.
2420
- #: languages/vue.php:438
2421
- msgid "See All Your Important Store%s Metrics in One Place"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2422
  msgstr ""
2423
 
2424
  #: languages/vue.php:441
2425
- msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
2426
  msgstr ""
2427
 
2428
  #: languages/vue.php:444
2429
- msgid "Here's what you get:"
2430
  msgstr ""
2431
 
2432
  #: languages/vue.php:447
2433
- msgid "See Your Conversion Rate to Improve Funnel"
2434
  msgstr ""
2435
 
2436
  #: languages/vue.php:450
2437
- msgid "See The Number of Transactions and Make Data-Driven Decisions"
2438
  msgstr ""
2439
 
2440
  #: languages/vue.php:453
2441
- msgid "See The Total Revenue to Track Growth"
2442
  msgstr ""
2443
 
2444
  #: languages/vue.php:456
2445
- msgid "See Average Order Value to Find Offer Opportunities"
2446
  msgstr ""
2447
 
2448
  #: languages/vue.php:459
2449
- msgid "See Your Top Products to See Individual Performance"
2450
  msgstr ""
2451
 
2452
  #: languages/vue.php:462
2453
- msgid "See your Top Conversion Sources and Focus on what's Working"
2454
  msgstr ""
2455
 
2456
  #: languages/vue.php:465
2457
- msgid "See The Time it Takes for Customers to Purchase"
2458
  msgstr ""
2459
 
2460
  #: languages/vue.php:468
2461
- msgid "See How Many Sessions are Needed for a Purchase"
2462
- msgstr ""
2463
-
2464
- #. Translators: Example path (/go/).
2465
- #: languages/vue.php:473
2466
- msgid "Path (example: %s)"
2467
  msgstr ""
2468
 
2469
- #: languages/vue.php:477
2470
- msgid "Path has to start with a / and have no spaces"
2471
  msgstr ""
2472
 
2473
- #. Translators: Example label (aff).
2474
- #: languages/vue.php:482
2475
- msgid "Label (example: %s)"
2476
  msgstr ""
2477
 
2478
- #: languages/vue.php:486
2479
- msgid "Label can't contain any spaces"
2480
  msgstr ""
2481
 
2482
- #: languages/vue.php:489
2483
- msgid "Affiliate Links"
2484
  msgstr ""
2485
 
2486
- #. Translators: Add links to documentation.
2487
  #: languages/vue.php:493
2488
- 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."
2489
  msgstr ""
2490
 
2491
  #: languages/vue.php:496
2492
- msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
2493
  msgstr ""
2494
 
2495
  #: languages/vue.php:499
2496
- msgid "Connect ExactMetrics to Your Website"
2497
  msgstr ""
2498
 
2499
  #: languages/vue.php:502
2500
- msgid "ExactMetrics connects Google Analytics to WordPress and shows you stats that matter."
2501
- msgstr ""
2502
-
2503
- #: languages/vue.php:506
2504
- msgid "Connect Google Analytics + WordPress"
2505
  msgstr ""
2506
 
2507
- #: languages/vue.php:510
2508
- msgid "You will be taken to the ExactMetrics website where you'll need to connect your Analytics account."
 
2509
  msgstr ""
2510
 
 
2511
  #: languages/vue.php:513
2512
- msgid "Whoops, something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually."
2513
- msgstr ""
2514
-
2515
- #: languages/vue.php:516
2516
- msgid "Manually enter your UA code"
2517
  msgstr ""
2518
 
2519
- #: languages/vue.php:519
2520
- 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."
 
2521
  msgstr ""
2522
 
2523
- #: languages/vue.php:523
2524
- msgid "Save and Continue"
 
2525
  msgstr ""
2526
 
2527
- #: languages/vue.php:526
2528
- msgid "UA code can't be empty"
 
2529
  msgstr ""
2530
 
2531
- #: languages/vue.php:529
2532
- msgid "Saving UA code..."
2533
  msgstr ""
2534
 
2535
- #: languages/vue.php:532
2536
- msgid "Cross Domain Tracking"
2537
  msgstr ""
2538
 
2539
- #. Translators: Add links to documentation.
2540
- #: languages/vue.php:536
2541
- 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."
2542
  msgstr ""
2543
 
2544
- #: languages/vue.php:539
2545
- msgid "Demographics"
2546
  msgstr ""
2547
 
2548
- #: languages/vue.php:542
2549
- msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
2550
  msgstr ""
2551
 
2552
- #: languages/vue.php:545
2553
- msgid "Anonymize IP Addresses"
2554
  msgstr ""
2555
 
2556
- #: languages/vue.php:548
2557
- msgid "Link Attribution"
2558
  msgstr ""
2559
 
2560
- #: languages/vue.php:551
2561
- msgid "Enable Enhanced Link Attribution"
2562
  msgstr ""
2563
 
2564
- #: languages/vue.php:554
2565
- msgid "Enable Anchor Tracking"
2566
  msgstr ""
2567
 
2568
- #: languages/vue.php:557
2569
- msgid "Enable allowAnchor"
2570
  msgstr ""
2571
 
2572
- #: languages/vue.php:560
2573
- msgid "Enable allowLinker"
2574
  msgstr ""
2575
 
2576
- #: languages/vue.php:563
2577
- msgid "Enable Tag Links in RSS"
2578
  msgstr ""
2579
 
2580
- #: languages/vue.php:566
2581
- msgid "File Downloads"
2582
  msgstr ""
2583
 
2584
- #: languages/vue.php:569
2585
- msgid "Extensions of Files to Track as Downloads"
2586
  msgstr ""
2587
 
2588
- #: languages/vue.php:572
2589
- msgid "ExactMetrics will send an event to Google Analytics if a link to a file has one of the above extensions."
2590
  msgstr ""
2591
 
2592
- #. Translators: Add links to documentation.
2593
- #: languages/vue.php:576
2594
- 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."
2595
  msgstr ""
2596
 
2597
- #. Translators: Add links to documentation.
2598
- #: languages/vue.php:580
2599
- 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."
2600
  msgstr ""
2601
 
2602
- #. Translators: Add links to documentation.
2603
- #: languages/vue.php:584
2604
- msgid "Add %1$sEnhanced Link Attribution%2$s to your tracking code."
2605
  msgstr ""
2606
 
2607
- #: languages/vue.php:587
2608
- 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."
2609
  msgstr ""
2610
 
2611
- #. Translators: Add links to documentation.
2612
- #: languages/vue.php:591
2613
- 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."
2614
  msgstr ""
2615
 
2616
- #. Translators: Add links to documentation.
2617
- #: languages/vue.php:595
2618
- 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."
2619
  msgstr ""
2620
 
2621
- #. Translators: Add links to documentation.
2622
- #: languages/vue.php:599
2623
- 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."
2624
  msgstr ""
2625
 
2626
- #: languages/vue.php:602
2627
- msgid "Add domain"
2628
  msgstr ""
2629
 
2630
- #. Translators: Domain name example.
2631
  #: languages/vue.php:606
2632
- msgid "Domain (example: %s)"
2633
  msgstr ""
2634
 
2635
- #. Translators: Current domain name that should not be used.
2636
- #: languages/vue.php:610
2637
- msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
2638
  msgstr ""
2639
 
2640
- #: languages/vue.php:613
2641
- msgid "Time to Purchase"
2642
  msgstr ""
2643
 
2644
- #: languages/vue.php:616
2645
- msgid "This list shows how many days from first visit it took users to purchase products from your site."
2646
  msgstr ""
2647
 
2648
- #: languages/vue.php:619
2649
- msgid "Sessions to Purchase"
2650
  msgstr ""
2651
 
2652
- #: languages/vue.php:622
2653
- msgid "This list shows the number of sessions it took users before they purchased a product from your website."
2654
  msgstr ""
2655
 
2656
- #: languages/vue.php:626
2657
- msgid "Top Posts/Pages"
2658
  msgstr ""
2659
 
2660
- #: languages/vue.php:630
2661
- msgid "This list shows the most viewed posts and pages on your website."
2662
  msgstr ""
2663
 
2664
- #: languages/vue.php:634
2665
- msgid "New vs. Returning Visitors"
2666
  msgstr ""
2667
 
2668
- #: languages/vue.php:638
2669
- msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
2670
  msgstr ""
2671
 
2672
- #: languages/vue.php:642
2673
- msgid "Device Breakdown"
2674
  msgstr ""
2675
 
2676
- #: languages/vue.php:646
2677
- 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."
2678
  msgstr ""
2679
 
2680
- #: languages/vue.php:649
2681
- msgid "Top Landing Pages"
2682
  msgstr ""
2683
 
2684
- #: languages/vue.php:652
2685
- msgid "This list shows the top pages users first land on when visiting your website."
2686
  msgstr ""
2687
 
2688
- #: languages/vue.php:655
2689
- msgid "Top Exit Pages"
2690
  msgstr ""
2691
 
2692
- #: languages/vue.php:658
2693
- msgid "This list shows the top pages users exit your website from."
 
2694
  msgstr ""
2695
 
2696
- #: languages/vue.php:661
2697
- msgid "Top Outbound Links"
2698
  msgstr ""
2699
 
2700
- #: languages/vue.php:664
2701
- msgid "This list shows the top links clicked on your website that go to another website."
 
2702
  msgstr ""
2703
 
2704
- #: languages/vue.php:667
2705
- msgid "Top Affiliate Links"
2706
  msgstr ""
2707
 
2708
- #: languages/vue.php:670
2709
- msgid "This list shows the top affiliate links your visitors clicked on."
2710
  msgstr ""
2711
 
2712
- #: languages/vue.php:673
2713
- msgid "Top Download Links"
2714
  msgstr ""
2715
 
2716
- #: languages/vue.php:676
2717
- msgid "This list shows the download links your visitors clicked the most."
2718
  msgstr ""
2719
 
2720
- #: languages/vue.php:679
2721
- msgid "Top Products"
2722
  msgstr ""
2723
 
2724
- #: languages/vue.php:682
2725
- msgid "This list shows the top selling products on your website."
2726
  msgstr ""
2727
 
2728
- #: languages/vue.php:685
2729
- msgid "Top Conversion Sources"
2730
  msgstr ""
2731
 
2732
- #: languages/vue.php:688
2733
- msgid "This list shows the top referral websites in terms of product revenue."
2734
  msgstr ""
2735
 
2736
- #: languages/vue.php:691
2737
- msgid "Total Add/Remove"
2738
  msgstr ""
2739
 
2740
- #: languages/vue.php:694
2741
- msgid "Forms Report"
2742
  msgstr ""
2743
 
2744
- #: languages/vue.php:697
2745
- msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
2746
  msgstr ""
2747
 
2748
- #: languages/vue.php:700
2749
- msgid "See Your Top Converting Forms and Optimize"
2750
  msgstr ""
2751
 
2752
- #: languages/vue.php:703
2753
- msgid "See Your Forms Impressions Count to Find the Best Placement"
2754
  msgstr ""
2755
 
 
2756
  #: languages/vue.php:706
2757
- msgid "Real-Time Report"
2758
- msgstr ""
2759
-
2760
- #: languages/vue.php:709
2761
- 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."
2762
  msgstr ""
2763
 
2764
- #: languages/vue.php:712
2765
- msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
 
2766
  msgstr ""
2767
 
2768
- #: languages/vue.php:715
2769
- msgid "See Your Top Pages Immediately After Making Changes"
2770
  msgstr ""
2771
 
2772
- #: languages/vue.php:718
2773
- msgid "See Your Top Referral Sources and Adapt Faster"
2774
  msgstr ""
2775
 
2776
- #: languages/vue.php:721
2777
- msgid "See Your Traffic Demographics"
2778
  msgstr ""
2779
 
2780
- #: languages/vue.php:724
2781
- msgid "Get Fresh Reports Data Every 60 Seconds"
2782
  msgstr ""
2783
 
2784
- #: languages/vue.php:727
2785
- msgid "See Where Your Visitors are Connecting From (country & city)"
2786
  msgstr ""
2787
 
2788
- #: languages/vue.php:730
2789
- msgid "Search Console Report"
2790
  msgstr ""
2791
 
2792
- #: languages/vue.php:733
2793
- msgid "See exactly how people find tour website, which keywords they searched for, how many times the results were viewed, and more."
2794
  msgstr ""
2795
 
2796
- #: languages/vue.php:736
2797
- msgid "See Your Top Google Search Terms and Optimize Content"
2798
  msgstr ""
2799
 
2800
- #: languages/vue.php:739
2801
- msgid "See The Number of Clicks and Track Interests"
2802
  msgstr ""
2803
 
2804
- #: languages/vue.php:742
2805
- msgid "See The Click-Through-Ratio and Improve SEO"
2806
  msgstr ""
2807
 
2808
- #: languages/vue.php:745
2809
- msgid "See The Average Results Position and Focus on what works."
 
2810
  msgstr ""
2811
 
2812
- #: languages/vue.php:748
2813
- msgid "Recommended Settings"
2814
  msgstr ""
2815
 
2816
- #: languages/vue.php:751
2817
- msgid "ExactMetrics recommends the following settings based on your configuration."
2818
  msgstr ""
2819
 
2820
- #: languages/vue.php:754
2821
- msgid "Events Tracking"
2822
  msgstr ""
2823
 
 
2824
  #: languages/vue.php:757
2825
- msgid "Must have for all click tracking on site."
2826
  msgstr ""
2827
 
2828
  #: languages/vue.php:760
2829
- 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."
2830
  msgstr ""
2831
 
2832
  #: languages/vue.php:763
2833
- msgid "Enhanced Link Attribution"
2834
  msgstr ""
2835
 
2836
  #: languages/vue.php:766
2837
- msgid "Improves the accuracy of your In-Page Analytics."
2838
  msgstr ""
2839
 
2840
  #: languages/vue.php:769
2841
- 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."
2842
  msgstr ""
2843
 
2844
  #: languages/vue.php:772
2845
- msgid "Install Updates Automatically"
2846
  msgstr ""
2847
 
2848
  #: languages/vue.php:775
2849
- msgid "Get the latest features, bug fixes, and security updates as they are released."
2850
  msgstr ""
2851
 
2852
  #: languages/vue.php:778
2853
- msgid "To ensure you get the latest bugfixes 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."
2854
  msgstr ""
2855
 
2856
  #: languages/vue.php:781
2857
- msgid "File Download Tracking"
2858
  msgstr ""
2859
 
2860
  #: languages/vue.php:784
2861
- msgid "Helps you see file downloads data."
2862
  msgstr ""
2863
 
2864
  #: languages/vue.php:787
2865
- 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."
2866
  msgstr ""
2867
 
2868
  #: languages/vue.php:790
2869
- msgid "Helps you increase affiliate revenue."
2870
  msgstr ""
2871
 
2872
- #: languages/vue.php:793
2873
- 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."
 
2874
  msgstr ""
2875
 
2876
- #: languages/vue.php:796
2877
- msgid "Affiliate Link Tracking"
2878
  msgstr ""
2879
 
2880
- #: languages/vue.php:799
2881
- msgid "Who Can See Reports"
2882
  msgstr ""
2883
 
2884
- #: languages/vue.php:802
2885
- msgid "These user roles will be able to access ExactMetrics's reports in the WordPress admin area."
 
2886
  msgstr ""
2887
 
2888
- #: languages/vue.php:806
2889
- 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."
2890
  msgstr ""
2891
 
2892
- #: languages/vue.php:809
2893
- msgid "Save and continue"
2894
  msgstr ""
2895
 
2896
- #: languages/vue.php:812
2897
- msgid "Events Tracking is enabled the moment you set up ExactMetrics"
2898
  msgstr ""
2899
 
2900
- #: languages/vue.php:815
2901
- msgid "Enhanced Link Attribution is enabled the moment you set up ExactMetrics"
2902
  msgstr ""
2903
 
2904
  #: languages/vue.php:819
2905
- msgid "+ Add Role"
2906
  msgstr ""
2907
 
2908
  #: languages/vue.php:822
2909
- msgid "Unlock the Publisher Report and Focus on the Content That Matters"
2910
  msgstr ""
2911
 
2912
  #: languages/vue.php:825
2913
- msgid "See Your Top Landing Pages to Improve Engagement"
2914
  msgstr ""
2915
 
2916
  #: languages/vue.php:828
2917
- msgid "See Your Top Exit Pages to Reduce Abandonment"
2918
  msgstr ""
2919
 
2920
  #: languages/vue.php:831
2921
- msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
2922
  msgstr ""
2923
 
2924
  #: languages/vue.php:834
2925
- msgid "See Your Top Affiliate Links and Focus on what’s working"
2926
  msgstr ""
2927
 
2928
  #: languages/vue.php:837
2929
- msgid "See Your Top Downloads and Improve Conversions"
2930
  msgstr ""
2931
 
2932
  #: languages/vue.php:840
2933
- msgid "See Audience Demographic Report (Age / Gender / Interests)"
2934
- msgstr ""
2935
-
2936
- #: languages/vue.php:843
2937
- msgid "Ecommerce Report"
2938
  msgstr ""
2939
 
2940
- #: languages/vue.php:846
2941
- 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."
 
2942
  msgstr ""
2943
 
2944
- #: languages/vue.php:849
2945
- msgid "See Your Top Conversion Sources and Focus on what's Working"
 
2946
  msgstr ""
2947
 
 
2948
  #: languages/vue.php:852
2949
- msgid "New"
2950
  msgstr ""
2951
 
2952
  #: languages/vue.php:855
2953
- msgid "Returning"
2954
- msgstr ""
2955
-
2956
- #: languages/vue.php:858
2957
- msgid "Desktop"
2958
  msgstr ""
2959
 
2960
- #: languages/vue.php:861
2961
- msgid "Tablet"
 
2962
  msgstr ""
2963
 
2964
- #: languages/vue.php:864
2965
- msgid "Mobile"
 
2966
  msgstr ""
2967
 
2968
- #: languages/vue.php:868
2969
- msgid "Sessions"
 
2970
  msgstr ""
2971
 
2972
- #: languages/vue.php:872
2973
- msgid "Pageviews"
2974
  msgstr ""
2975
 
2976
- #: languages/vue.php:875
2977
- msgid "Avg. Session Duration"
 
2978
  msgstr ""
2979
 
2980
- #: languages/vue.php:879
2981
- msgid "Bounce Rate"
 
2982
  msgstr ""
2983
 
2984
- #: languages/vue.php:882
2985
- msgid "Top 10 Countries"
2986
  msgstr ""
2987
 
2988
- #: languages/vue.php:885
2989
- msgid "View Countries Report"
2990
  msgstr ""
2991
 
2992
- #: languages/vue.php:888
2993
- msgid "Top 10 Referrals"
2994
  msgstr ""
2995
 
2996
- #: languages/vue.php:891
2997
- msgid "View All Referral Sources"
 
2998
  msgstr ""
2999
 
 
3000
  #: languages/vue.php:894
3001
- msgid "View Full Posts/Pages Report"
3002
  msgstr ""
3003
 
3004
  #: languages/vue.php:897
3005
- msgid "A session is the browsing session of a single user to your site."
3006
  msgstr ""
3007
 
3008
  #: languages/vue.php:900
3009
- 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."
3010
- msgstr ""
3011
-
3012
- #: languages/vue.php:903
3013
- msgid "Total duration of all sessions (in seconds) / number of sessions."
3014
  msgstr ""
3015
 
3016
- #: languages/vue.php:906
3017
- 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."
 
3018
  msgstr ""
3019
 
3020
- #: languages/vue.php:909
3021
- msgid "This list shows the top countries your website visitors are from."
 
3022
  msgstr ""
3023
 
 
3024
  #: languages/vue.php:912
3025
- msgid "This list shows the top websites that send your website traffic, known as referral traffic."
3026
- msgstr ""
3027
-
3028
- #: languages/vue.php:915
3029
- msgid "Custom Dimensions Report"
3030
  msgstr ""
3031
 
3032
- #: languages/vue.php:918
3033
- msgid "Unlock the Dimensions Report and decide what data is important using your own custom tracking parameters"
 
3034
  msgstr ""
3035
 
3036
- #: languages/vue.php:921
3037
- msgid "The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
 
3038
  msgstr ""
3039
 
 
3040
  #: languages/vue.php:924
3041
- msgid "Author tracking to see which author’s posts generate the most traffic"
3042
  msgstr ""
3043
 
3044
  #: languages/vue.php:927
3045
- msgid "Post Type tracking to see which WordPress post types perform better"
3046
  msgstr ""
3047
 
3048
  #: languages/vue.php:930
3049
- msgid "Category tracking to see which sections of your sites are the most popular"
3050
  msgstr ""
3051
 
3052
  #: languages/vue.php:933
3053
- msgid "SEO score tracking to see which blog SEO scores are the most popular"
3054
  msgstr ""
3055
 
3056
  #: languages/vue.php:936
3057
- msgid "Focus Keyword tracking to see which of your content is doing well in search engines."
3058
  msgstr ""
3059
 
3060
  #: languages/vue.php:939
3061
- msgid "Tag tracking to determine which topics are the most engaging to for your website visitors."
3062
  msgstr ""
3063
 
3064
  #: languages/vue.php:942
3065
- msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
3066
  msgstr ""
3067
 
3068
  #: languages/vue.php:945
3069
- msgid "No addons found."
3070
  msgstr ""
3071
 
3072
  #: languages/vue.php:948
3073
- msgid "Refresh Addons"
3074
  msgstr ""
3075
 
3076
- #. Translators: Adds a line break.
3077
- #: languages/vue.php:955
3078
- msgid "Upgrade to Pro to unlock addons and other great features."
3079
  msgstr ""
3080
 
3081
- #: languages/vue.php:958
3082
- msgid "As a valued ExactMetrics Lite user you receive 50% off, automaticaly applied at checkout!"
 
3083
  msgstr ""
3084
 
3085
  #: languages/vue.php:961
3086
- msgid "Refreshing Addons"
3087
  msgstr ""
3088
 
3089
  #: languages/vue.php:964
3090
- msgid "One-click Complete eCommerce tracking"
3091
  msgstr ""
3092
 
3093
  #: languages/vue.php:967
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3094
  msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
3095
  msgstr ""
3096
 
3097
- #: languages/vue.php:970
3098
  msgid "Forms Tracking"
3099
  msgstr ""
3100
 
3101
- #: languages/vue.php:973
3102
  msgid "One-click Form Events Tracking"
3103
  msgstr ""
3104
 
3105
- #: languages/vue.php:976
3106
  msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
3107
  msgstr ""
3108
 
3109
- #: languages/vue.php:979
3110
  msgid "WordPress Admin Area Reports"
3111
  msgstr ""
3112
 
3113
- #: languages/vue.php:982
3114
  msgid "Standard Reports"
3115
  msgstr ""
3116
 
3117
- #: languages/vue.php:985
3118
  msgid "Overview Reports for the last 30 days."
3119
  msgstr ""
3120
 
3121
- #: languages/vue.php:988
3122
  msgid "Advanced Reports"
3123
  msgstr ""
3124
 
3125
- #: languages/vue.php:991
3126
  msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
3127
  msgstr ""
3128
 
3129
- #: languages/vue.php:994
3130
  msgid "Dashboard Widget"
3131
  msgstr ""
3132
 
3133
- #: languages/vue.php:997
3134
  msgid "Basic Widget"
3135
  msgstr ""
3136
 
3137
- #: languages/vue.php:1000
3138
  msgid "Overview Report Synopsis"
3139
  msgstr ""
3140
 
3141
- #: languages/vue.php:1003
3142
  msgid "Advanced Dashboard Widget"
3143
  msgstr ""
3144
 
3145
- #: languages/vue.php:1006
3146
  msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
3147
  msgstr ""
3148
 
3149
- #: languages/vue.php:1009
3150
  msgid "Publisher Reports"
3151
  msgstr ""
3152
 
3153
- #: languages/vue.php:1012
3154
  msgid "Advanced Publisher Reports & Tracking"
3155
  msgstr ""
3156
 
3157
- #: languages/vue.php:1015
3158
  msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
3159
  msgstr ""
3160
 
3161
- #: languages/vue.php:1018
3162
  msgid "Not Available"
3163
  msgstr ""
3164
 
3165
- #: languages/vue.php:1021
3166
  msgid "Complete Custom Dimensions Tracking"
3167
  msgstr ""
3168
 
3169
- #: languages/vue.php:1024
3170
  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"
3171
  msgstr ""
3172
 
3173
- #: languages/vue.php:1030
3174
  msgid "Limited Support"
3175
  msgstr ""
3176
 
3177
- #: languages/vue.php:1033
3178
  msgid "Priority Support"
3179
  msgstr ""
3180
 
3181
- #: languages/vue.php:1036
3182
  msgid "Get the most out of ExactMetrics by upgrading to Pro and unlocking all of the powerful features."
3183
  msgstr ""
3184
 
3185
- #: languages/vue.php:1039
3186
  msgid "Feature"
3187
  msgstr ""
3188
 
3189
- #: languages/vue.php:1042
3190
  msgid "Lite"
3191
  msgstr ""
3192
 
3193
- #: languages/vue.php:1045
3194
  msgid "Pro"
3195
  msgstr ""
3196
 
3197
- #: languages/vue.php:1048
3198
  msgid "Get ExactMetrics Pro Today and Unlock all the Powerful Features"
3199
  msgstr ""
3200
 
3201
- #: languages/vue.php:1051
3202
  msgid "Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout."
3203
  msgstr ""
3204
 
3205
- #: languages/vue.php:1054
3206
  msgid "Upgrade to Pro"
3207
  msgstr ""
3208
 
3209
- #: languages/vue.php:1057
3210
  msgid "Universal Tracking"
3211
  msgstr ""
3212
 
3213
- #: languages/vue.php:1060
3214
  msgid "Included"
3215
  msgstr ""
3216
 
3217
- #: languages/vue.php:1063
3218
  msgid "Custom Google Analytics Link Tracking"
3219
  msgstr ""
3220
 
3221
- #: languages/vue.php:1066
3222
  msgid "Standard Tracking"
3223
  msgstr ""
3224
 
3225
- #: languages/vue.php:1069
3226
  msgid "Advanced Tracking"
3227
  msgstr ""
3228
 
3229
- #: languages/vue.php:1072
3230
  msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
3231
  msgstr ""
3232
 
3233
- #: languages/vue.php:1075
3234
  msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
3235
  msgstr ""
3236
 
3237
- #: languages/vue.php:1078
3238
  msgid "No-Code-Needed Tracking Features"
3239
  msgstr ""
3240
 
3241
- #: languages/vue.php:1081
3242
  msgid "Basic Tracking Options"
3243
  msgstr ""
3244
 
3245
- #: languages/vue.php:1084
3246
  msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
3247
  msgstr ""
3248
 
3249
- #: languages/vue.php:1087
3250
  msgid "Advanced Tracking Options"
3251
  msgstr ""
3252
 
3253
- #: languages/vue.php:1090
3254
  msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
3255
  msgstr ""
3256
 
3257
- #. Translators: Placeholders make the text green.
3258
- #: languages/vue.php:1094
3259
- msgid "Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
3260
- msgstr ""
3261
-
3262
- #: languages/vue.php:1097
3263
- msgid "How to Connect to Google Analytics"
3264
  msgstr ""
3265
 
3266
- #: languages/vue.php:1100
3267
- 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."
 
3268
  msgstr ""
3269
 
3270
- #: languages/vue.php:1103
3271
- msgid "Guide and Checklist for Advanced Insights"
3272
  msgstr ""
3273
 
3274
- #: languages/vue.php:1106
3275
- 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."
 
3276
  msgstr ""
3277
 
3278
- #: languages/vue.php:1109
3279
- msgid "GDPR Guide"
3280
  msgstr ""
3281
 
3282
- #: languages/vue.php:1112
3283
- 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. "
3284
  msgstr ""
3285
 
3286
- #: languages/vue.php:1115
3287
- msgid "How to Install and Activate ExactMetrics Addons"
3288
  msgstr ""
3289
 
3290
- #: languages/vue.php:1118
3291
- 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."
3292
  msgstr ""
3293
 
3294
- #: languages/vue.php:1121
3295
- msgid "Enabling eCommerce Tracking and Reports"
3296
  msgstr ""
3297
 
3298
- #: languages/vue.php:1124
3299
- 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."
3300
  msgstr ""
3301
 
3302
- #: languages/vue.php:1127
3303
- msgid "Read Documentation"
3304
  msgstr ""
3305
 
3306
- #: languages/vue.php:1131
3307
- msgid "Welcome to"
3308
  msgstr ""
3309
 
3310
- #. Translators: Adds a line break.
3311
- #: languages/vue.php:1136
3312
- msgid "Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin"
3313
  msgstr ""
3314
 
3315
- #. Translators: Makes text bold.
3316
- #: languages/vue.php:1141
3317
- 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."
3318
  msgstr ""
3319
 
3320
- #: languages/vue.php:1145
3321
- msgid "ExactMetrics Features & Addons"
3322
  msgstr ""
3323
 
3324
- #: languages/vue.php:1149
3325
- msgid "Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market."
3326
  msgstr ""
3327
 
3328
- #. Translators: Makes text bold.
3329
- #: languages/vue.php:1154
3330
- msgid "%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
3331
  msgstr ""
3332
 
3333
- #. Translators: Makes text bold.
3334
- #: languages/vue.php:1159
3335
- msgid "%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights."
3336
  msgstr ""
3337
 
3338
- #. Translators: Makes text bold.
3339
- #: languages/vue.php:1164
3340
- msgid "%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more."
3341
  msgstr ""
3342
 
3343
- #. Translators: Makes the text bold.
3344
- #: languages/vue.php:1168
3345
- msgid "%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress."
3346
  msgstr ""
3347
 
3348
- #. Translators: Makes text bold.
3349
- #: languages/vue.php:1173
3350
- 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."
3351
  msgstr ""
3352
 
3353
- #. Translators: Makes text bold.
3354
- #: languages/vue.php:1178
3355
- 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."
3356
  msgstr ""
3357
 
3358
- #. Translators: Makes text bold.
3359
  #: languages/vue.php:1183
3360
- msgid "%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically."
3361
  msgstr ""
3362
 
3363
- #. Translators: Makes the text bold.
3364
- #: languages/vue.php:1187
3365
- msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post type, users, and other events with 1-click."
3366
  msgstr ""
3367
 
3368
- #. Translators: Adds link to the features page.
3369
- #: languages/vue.php:1192
3370
- msgid "%1$sSee All Features%2$s"
3371
  msgstr ""
3372
 
3373
- #: languages/vue.php:1196
3374
- msgid "Guides and Documentation:"
 
 
 
 
 
 
3375
  msgstr ""
3376
 
3377
  #: languages/vue.php:1200
3378
- msgid "Getting Started with ExactMetrics"
3379
  msgstr ""
3380
 
3381
- #: languages/vue.php:1204
3382
- 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."
3383
  msgstr ""
3384
 
3385
- #: languages/vue.php:1208
3386
- 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."
 
 
 
 
3387
  msgstr ""
3388
 
3389
  #: languages/vue.php:1212
3390
- 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!."
3391
  msgstr ""
3392
 
3393
- #: languages/vue.php:1216
3394
- msgid "Launch the wizard!"
3395
  msgstr ""
3396
 
3397
- #: languages/vue.php:1219
3398
- msgid "License Key"
3399
  msgstr ""
3400
 
3401
- #. Translators: Add link to retrieve license key from account.
3402
- #: languages/vue.php:1223
3403
- msgid "Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
 
 
 
3404
  msgstr ""
3405
 
3406
  #: languages/vue.php:1227
3407
- msgid "Google Authentication"
3408
  msgstr ""
3409
 
3410
  #: languages/vue.php:1230
3411
- msgid "Miscellaneous"
3412
  msgstr ""
3413
 
3414
- #: languages/vue.php:1233
3415
- msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
 
3416
  msgstr ""
3417
 
3418
- #: languages/vue.php:1236
3419
- msgid "Hide Announcements"
 
3420
  msgstr ""
3421
 
3422
- #: languages/vue.php:1239
3423
- msgid "Installing Addon"
3424
  msgstr ""
3425
 
3426
- #: languages/vue.php:1242
3427
- msgid "Activating Addon"
3428
  msgstr ""
3429
 
3430
- #: languages/vue.php:1245
3431
- msgid "Addon Activated"
3432
  msgstr ""
3433
 
3434
- #: languages/vue.php:1248
3435
- msgid "Loading report data"
3436
  msgstr ""
3437
 
3438
- #: languages/vue.php:1251
3439
- msgid "Please activate manually"
3440
  msgstr ""
3441
 
3442
- #. Translators: Adds the error status and status text.
3443
- #: languages/vue.php:1255
3444
- msgid "Error: %1$s, %2$s"
3445
  msgstr ""
3446
 
3447
- #: languages/vue.php:1258
3448
- msgid "Error Activating Addon"
3449
  msgstr ""
3450
 
3451
- #: languages/vue.php:1264
3452
- msgid "Dismiss"
3453
  msgstr ""
3454
 
3455
- #: languages/vue.php:1267
3456
- msgid "Redirecting"
3457
  msgstr ""
3458
 
3459
- #: languages/vue.php:1270
3460
- msgid "Please wait"
3461
  msgstr ""
3462
 
3463
- #: languages/vue.php:1273
3464
- msgid "activate"
3465
  msgstr ""
3466
 
3467
- #: languages/vue.php:1276
3468
- msgid "install"
3469
  msgstr ""
3470
 
3471
- #: languages/vue.php:1279
3472
- msgid "Visit addons page"
3473
  msgstr ""
3474
 
3475
- #: languages/vue.php:1282
3476
- msgid "Report Unavailable"
 
 
 
 
3477
  msgstr ""
3478
 
3479
- #. Translators: Install/Activate the addon.
3480
  #: languages/vue.php:1286
3481
- msgid "%s Addon"
3482
  msgstr ""
3483
 
3484
  #: languages/vue.php:1289
3485
- msgid "Go Back To Reports"
3486
  msgstr ""
3487
 
3488
  #: languages/vue.php:1292
3489
- msgid "Enable Enhanced eCommerce"
3490
  msgstr ""
3491
 
3492
  #: languages/vue.php:1295
3493
- msgid "Hello and Welcome to ExactMetrics, the Best Google Analytics Plugin for WordPress."
3494
  msgstr ""
3495
 
3496
  #: languages/vue.php:1298
3497
- 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."
3498
  msgstr ""
3499
 
3500
  #: languages/vue.php:1301
3501
- msgid "The ExactMetrics Team"
3502
  msgstr ""
3503
 
3504
- #. Translators: Placeholders make the text highlighted.
3505
- #: languages/vue.php:1305
3506
- msgid "%1$sNeed%2$s to Grow FASTER??"
3507
  msgstr ""
3508
 
3509
- #: languages/vue.php:1308
3510
- msgid "Get additional, actionable insights by going Pro."
3511
  msgstr ""
3512
 
3513
- #: languages/vue.php:1311
3514
- msgid "Skip"
3515
  msgstr ""
3516
 
3517
- #: languages/vue.php:1314
3518
- msgid "See All Features"
3519
  msgstr ""
3520
 
3521
- #: languages/vue.php:1317
3522
- 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."
3523
  msgstr ""
3524
 
3525
- #: languages/vue.php:1320
3526
- msgid "Our Pro plan includes:"
3527
  msgstr ""
3528
 
3529
- #: languages/vue.php:1323
3530
- msgid "Awesome, You're All Set!"
3531
  msgstr ""
3532
 
3533
- #: languages/vue.php:1326
3534
- msgid "ExactMetrics is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
3535
  msgstr ""
3536
 
3537
- #. Translators: Make the text bold.
3538
- #: languages/vue.php:1330
3539
- 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."
 
 
 
3540
  msgstr ""
3541
 
3542
- #. Translators: Add link to blog.
3543
  #: languages/vue.php:1334
3544
- msgid "%1$sSubscribe to the ExactMetrics blog%2$s for tips on how to get more traffic and grow your business."
3545
  msgstr ""
3546
 
3547
  #: languages/vue.php:1337
3548
- msgid "Finish Setup & Exit Wizard"
3549
  msgstr ""
3550
 
3551
  #: languages/vue.php:1340
3552
- msgid "Google Analytics"
3553
  msgstr ""
3554
 
3555
  #: languages/vue.php:1343
3556
- msgid "Subscribe"
3557
  msgstr ""
3558
 
3559
  #: languages/vue.php:1346
3560
- msgid "Checking your website..."
3561
  msgstr ""
3562
 
3563
  #: languages/vue.php:1349
3564
- msgid "Recommended Addons"
3565
  msgstr ""
3566
 
3567
- #. Translators: Add a link to upgrade and make the text green.
3568
- #: languages/vue.php:1353
3569
- 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!"
3570
  msgstr ""
3571
 
3572
- #: languages/vue.php:1356
3573
- msgid "Upgrade to PRO Now"
3574
  msgstr ""
3575
 
3576
- #: languages/vue.php:1359
3577
- msgid "See who’s viewing and submitting your forms, so you can increase your converion rate. Lorem ipsum dolor sit amet, consectetur adipiscing elit."
3578
  msgstr ""
3579
 
3580
- #: languages/vue.php:1362
3581
- msgid "See All Your Important Store Metrics in One Place. Lorem ipsum dolor sit amet, consectetur adipiscing elit."
3582
  msgstr ""
3583
 
3584
- #: languages/vue.php:1365
3585
- msgid "... and more:"
3586
  msgstr ""
3587
 
3588
- #: languages/vue.php:1368
3589
- msgid "Dimensions- Track authors, categories, trags, searches, users and more."
3590
  msgstr ""
3591
 
3592
- #: languages/vue.php:1371
3593
- msgid "EU Compliance- Improve compliance with GDPR and other privacy regulations."
3594
  msgstr ""
3595
 
3596
- #: languages/vue.php:1374
3597
- msgid "AMP- ExactMetrics Google AMP Addon enables accurate tracking of all mobile visitors to your AMP-enabled pages."
3598
  msgstr ""
3599
 
3600
- #: languages/vue.php:1377
3601
- msgid "Facebook Instant Articles- Integrate Google Analytics and Facebook Instant Articles with just one click."
3602
  msgstr ""
3603
 
3604
- #: languages/vue.php:1380
3605
- msgid "eCommerce- Sales tracking for your WooCommerce, Easy Digital Downloads, LifterLMS or MemberPress stores."
3606
  msgstr ""
3607
 
3608
- #: languages/vue.php:1383
3609
- msgid "Google Optimize- Easily enable Google Optimize on your WordPress site."
3610
  msgstr ""
3611
 
3612
- #: languages/vue.php:1386
3613
- msgid "Forms- Enable tracking of your form views, submissions and conversion rates."
3614
  msgstr ""
3615
 
3616
- #: languages/vue.php:1389
3617
- msgid "Ads- See who’s clicking on your Google Adsense banner ads."
3618
  msgstr ""
3619
 
3620
- #: languages/vue.php:1392
3621
- msgid "Show Overview Reports"
3622
  msgstr ""
3623
 
 
3624
  #: languages/vue.php:1395
3625
- msgid "Show Publishers Reports"
3626
- msgstr ""
3627
-
3628
- #: languages/vue.php:1398
3629
- msgid "Show eCommerce Reports"
3630
  msgstr ""
3631
 
3632
- #: languages/vue.php:1401
3633
- msgid "Available in PRO version"
 
3634
  msgstr ""
3635
 
3636
- #: languages/vue.php:1404
3637
- msgid "Show in widget mode"
 
3638
  msgstr ""
3639
 
 
3640
  #: languages/vue.php:1407
3641
- msgid "Show in full-width mode"
3642
- msgstr ""
3643
-
3644
- #: languages/vue.php:1410
3645
- msgid "File imported"
3646
  msgstr ""
3647
 
3648
- #: languages/vue.php:1413
3649
- msgid "Settings successfully updated!"
 
3650
  msgstr ""
3651
 
3652
- #: languages/vue.php:1416
3653
- msgid "Error importing settings"
 
3654
  msgstr ""
3655
 
3656
- #: languages/vue.php:1419
3657
- msgid "Please choose a .json file generated by a ExactMetrics settings export."
3658
  msgstr ""
3659
 
3660
- #: languages/vue.php:1422
3661
- msgid "Import/Export"
3662
  msgstr ""
3663
 
3664
- #: languages/vue.php:1425
3665
- msgid "Import"
3666
  msgstr ""
3667
 
 
3668
  #: languages/vue.php:1428
3669
- msgid "Import settings from another ExactMetrics website."
3670
  msgstr ""
3671
 
3672
  #: languages/vue.php:1431
3673
- msgid "Export"
3674
  msgstr ""
3675
 
3676
  #: languages/vue.php:1434
3677
- msgid "Export settings to import into another ExactMetrics install."
3678
  msgstr ""
3679
 
3680
  #: languages/vue.php:1437
3681
- msgid "Import Settings"
3682
  msgstr ""
3683
 
3684
  #: languages/vue.php:1440
3685
- msgid "Export Settings"
3686
  msgstr ""
3687
 
3688
  #: languages/vue.php:1443
3689
- msgid "Please choose a file to import"
3690
  msgstr ""
3691
 
3692
  #: languages/vue.php:1446
3693
- msgid "Use the filepicker below to select the settings export file from another site."
3694
  msgstr ""
3695
 
3696
  #: languages/vue.php:1449
3697
- msgid "Use the button below to export a file with your ExactMetrics settings."
3698
  msgstr ""
3699
 
3700
  #: languages/vue.php:1452
3701
- msgid "Choose file"
3702
  msgstr ""
3703
 
3704
  #: languages/vue.php:1455
3705
- msgid "No file chosen"
3706
  msgstr ""
3707
 
3708
  #: languages/vue.php:1458
3709
- msgid "Uploading file..."
3710
  msgstr ""
3711
 
3712
  #: languages/vue.php:1461
3713
- msgid "Custom Campaign Parameters"
3714
  msgstr ""
3715
 
3716
  #: languages/vue.php:1464
3717
- msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
3718
  msgstr ""
3719
 
3720
  #: languages/vue.php:1467
3721
- 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."
3722
  msgstr ""
3723
 
3724
- #. Translators: Marks the field as required.
3725
- #: languages/vue.php:1471
3726
- msgid "Website URL %s"
3727
  msgstr ""
3728
 
3729
- #. Translators: Display the current website url in italic.
3730
- #: languages/vue.php:1475
3731
- msgid "The full website URL (e.g. %1$s %2$s%3$s)"
3732
  msgstr ""
3733
 
3734
- #. Translators: Marks the field as required.
3735
- #: languages/vue.php:1479
3736
- msgid "Campaign Source %s"
3737
  msgstr ""
3738
 
3739
- #. Translators: Make the text italic.
3740
- #: languages/vue.php:1483
3741
- msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
 
 
 
 
3742
  msgstr ""
3743
 
3744
- #. Translators: Make the text italic.
3745
  #: languages/vue.php:1487
3746
- msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
3747
  msgstr ""
3748
 
3749
- #. Translators: Make the text italic.
3750
- #: languages/vue.php:1491
3751
- msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
3752
  msgstr ""
3753
 
3754
- #: languages/vue.php:1494
3755
- msgid "Enter the paid keyword"
3756
  msgstr ""
3757
 
3758
- #: languages/vue.php:1497
3759
- msgid "Enter something to differentiate ads"
3760
  msgstr ""
3761
 
3762
- #: languages/vue.php:1500
3763
- msgid "Use Fragment"
3764
  msgstr ""
3765
 
3766
- #. Translators: Make the text bold.
3767
- #: languages/vue.php:1504
3768
- msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
3769
  msgstr ""
3770
 
3771
- #: languages/vue.php:1507
3772
- msgid "URL to use"
3773
  msgstr ""
3774
 
3775
- #: languages/vue.php:1510
3776
- msgid "(Updates automatically)"
3777
  msgstr ""
3778
 
3779
- #: languages/vue.php:1513
3780
- msgid "Copy to Clipboard"
3781
  msgstr ""
3782
 
3783
- #: languages/vue.php:1516
3784
- msgid "More Information & Examples"
3785
  msgstr ""
3786
 
3787
- #: languages/vue.php:1519
3788
- msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
3789
  msgstr ""
3790
 
3791
- #: languages/vue.php:1522
3792
- msgid "Campaign Source"
3793
  msgstr ""
3794
 
3795
- #: languages/vue.php:1525
3796
- msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
3797
  msgstr ""
3798
 
3799
- #: languages/vue.php:1528
3800
- msgid "Campaign Medium"
 
3801
  msgstr ""
3802
 
3803
- #: languages/vue.php:1531
3804
- msgid "Use utm_medium to identify a medium such as email or cost-per-click."
3805
  msgstr ""
3806
 
 
3807
  #: languages/vue.php:1534
3808
- msgid "Campaign Name"
3809
  msgstr ""
3810
 
3811
  #: languages/vue.php:1537
3812
- msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
3813
  msgstr ""
3814
 
3815
  #: languages/vue.php:1540
3816
- msgid "Campaign Term"
3817
  msgstr ""
3818
 
3819
  #: languages/vue.php:1543
3820
- msgid "Used for paid search. Use utm_term to note the keywords for this ad."
3821
  msgstr ""
3822
 
3823
  #: languages/vue.php:1546
3824
- msgid "Campaign Content"
3825
  msgstr ""
3826
 
3827
  #: languages/vue.php:1549
3828
- msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
3829
- msgstr ""
3830
-
3831
- #. Translators: Example.
3832
- #: languages/vue.php:1553
3833
- msgid "Example: %s"
3834
  msgstr ""
3835
 
3836
- #. Translators: Examples.
3837
- #: languages/vue.php:1557
3838
- msgid "Examples: %s"
3839
  msgstr ""
3840
 
3841
- #: languages/vue.php:1560
3842
- msgid "About Campaigns"
3843
  msgstr ""
3844
 
3845
- #: languages/vue.php:1563
3846
- msgid "About Custom Campaigns"
3847
  msgstr ""
3848
 
3849
- #: languages/vue.php:1566
3850
- msgid "Best Practices for Creating Custom Campaigns"
3851
  msgstr ""
3852
 
3853
- #: languages/vue.php:1569
3854
- msgid "About the Referral Traffic Report"
3855
  msgstr ""
3856
 
3857
- #: languages/vue.php:1572
3858
- msgid "About Traffic Source Dimensions"
3859
  msgstr ""
3860
 
3861
- #: languages/vue.php:1575
3862
- msgid "AdWords Auto-Tagging"
3863
  msgstr ""
3864
 
3865
- #: languages/vue.php:1578
3866
- msgid "Additional Information"
3867
  msgstr ""
3868
 
3869
- #: languages/vue.php:1581
3870
- msgid "You appear to be offline. WPForms not installed."
 
3871
  msgstr ""
3872
 
3873
  #. Translators: Error status and error text.
3874
- #: languages/vue.php:1585
3875
- msgid "Can't activate addon. Error: %1$s, %2$s"
3876
  msgstr ""
3877
 
3878
- #: languages/vue.php:1588
3879
- msgid "You appear to be offline. Addon not activated."
3880
  msgstr ""
3881
 
3882
  #. Translators: Error status and error text.
3883
- #: languages/vue.php:1592
3884
- msgid "Can't deactivate addon. Error: %1$s, %2$s"
3885
  msgstr ""
3886
 
3887
- #: languages/vue.php:1595
3888
- msgid "You appear to be offline. Addon not deactivated."
3889
  msgstr ""
3890
 
3891
  #. Translators: Error status and error text.
3892
- #: languages/vue.php:1599
3893
- msgid "Can't install plugin. Error: %1$s, %2$s"
3894
  msgstr ""
3895
 
 
3896
  #: languages/vue.php:1602
3897
- msgid "You appear to be offline. Plugin not installed."
3898
  msgstr ""
3899
 
3900
- #. Translators: Error status and error text.
3901
- #: languages/vue.php:1606
3902
- msgid "Can't install addon. Error: %1$s, %2$s"
3903
  msgstr ""
3904
 
3905
- #: languages/vue.php:1609
3906
- msgid "You appear to be offline. Addon not installed."
3907
  msgstr ""
3908
 
3909
- #. Translators: Error status and error text.
3910
- #: languages/vue.php:1613
3911
- msgid "Can't install WPForms. Error: %1$s, %2$s"
3912
  msgstr ""
3913
 
3914
- #: languages/vue.php:1616
3915
- msgid "See All Reports"
3916
  msgstr ""
3917
 
3918
- #: languages/vue.php:1619
3919
- msgid "Go to the Analytics Dashboard"
3920
  msgstr ""
3921
 
3922
- #. Translators: Placeholder adds a line break.
3923
- #: languages/vue.php:1623
3924
- msgid "You can customize your %sdate range only in the PRO version."
3925
  msgstr ""
3926
 
3927
- #: languages/vue.php:1626
3928
- msgid "ExactMetrics Recommends WPForms"
 
3929
  msgstr ""
3930
 
3931
- #: languages/vue.php:1629
3932
- msgid "Built by the folks behind ExactMetrics, WPForms is the most beginner friendly form plugin in the market."
3933
  msgstr ""
3934
 
3935
- #: languages/vue.php:1632
3936
- msgid "Used on over 3,000,000 websites!"
 
3937
  msgstr ""
3938
 
3939
- #: languages/vue.php:1635
3940
- 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!"
3941
  msgstr ""
3942
 
 
3943
  #: languages/vue.php:1638
3944
- msgid "Skip this Step"
3945
  msgstr ""
3946
 
3947
  #: languages/vue.php:1641
3948
- msgid "Continue & Install WPForms"
3949
  msgstr ""
3950
 
3951
- #: languages/vue.php:1644
3952
- msgid "Installing..."
 
3953
  msgstr ""
3954
 
3955
- #. Translators: Line break.
3956
  #: languages/vue.php:1648
3957
- msgid "Unique %s Sessions"
3958
  msgstr ""
3959
 
3960
- #. Translators: Line break.
3961
  #: languages/vue.php:1652
3962
- msgid "Unique %s Pageviews"
3963
  msgstr ""
3964
 
3965
  #: languages/vue.php:1655
3966
- 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."
3967
  msgstr ""
3968
 
3969
  #: languages/vue.php:1658
3970
- msgid "Last 30 Days Analytics for "
3971
  msgstr ""
3972
 
3973
  #: languages/vue.php:1661
3974
- msgid "Your Website"
3975
  msgstr ""
3976
 
3977
  #: languages/vue.php:1664
3978
- msgid "Avg. Duration"
3979
  msgstr ""
3980
 
3981
  #: languages/vue.php:1667
3982
- msgid "More data is available"
3983
  msgstr ""
3984
 
3985
- #: languages/vue.php:1670
3986
- msgid "Want to see page-specific stats?"
 
3987
  msgstr ""
3988
 
3989
- #. Translators: placeholders make text small.
3990
  #: languages/vue.php:1674
3991
- msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
3992
  msgstr ""
3993
 
3994
- #. Translators: placeholders make text small.
3995
- #: languages/vue.php:1678
3996
- msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
3997
  msgstr ""
3998
 
3999
- #. Translators: placeholders make text small.
4000
- #: languages/vue.php:1682
4001
- msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
4002
  msgstr ""
4003
 
4004
- #. Translators: placeholders make text small.
4005
  #: languages/vue.php:1686
4006
- msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
4007
  msgstr ""
4008
 
4009
- #. Translators: placeholders make text small.
4010
- #: languages/vue.php:1690
4011
- msgid "None %1$s- Manually update everything.%2$s"
4012
  msgstr ""
4013
 
4014
- #. Translators: Adds a link to the general settings tab.
4015
- #: languages/vue.php:1694
4016
- 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."
4017
  msgstr ""
4018
 
4019
- #: languages/vue.php:1697
4020
- msgid "Permissions"
4021
  msgstr ""
4022
 
4023
- #: languages/vue.php:1700
4024
- msgid "Allow These User Roles to See Reports"
4025
  msgstr ""
4026
 
4027
- #: languages/vue.php:1703
4028
- msgid "Users that have at least one of these roles will be able to view the reports."
 
4029
  msgstr ""
4030
 
4031
- #: languages/vue.php:1706
4032
- msgid "Allow These User Roles to Save Settings"
4033
  msgstr ""
4034
 
4035
- #: languages/vue.php:1709
4036
- msgid "Users that have at least one of these roles will be able to view and save the settings panel."
4037
  msgstr ""
4038
 
4039
- #: languages/vue.php:1712
4040
- 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."
4041
  msgstr ""
4042
 
4043
- #: languages/vue.php:1715
4044
- msgid "Exclude These User Roles From Tracking"
4045
  msgstr ""
4046
 
 
4047
  #: languages/vue.php:1718
4048
- msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
4049
  msgstr ""
4050
 
4051
  #: languages/vue.php:1721
4052
- msgid "Custom code"
4053
  msgstr ""
4054
 
4055
- #. Translators: Adds a link to the Google reference.
4056
  #: languages/vue.php:1725
4057
- 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."
4058
  msgstr ""
4059
 
4060
- #: languages/vue.php:1731
4061
- msgid "Automatic Updates"
 
4062
  msgstr ""
4063
 
4064
- #: languages/vue.php:1734
4065
- msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
4066
  msgstr ""
4067
 
4068
- #: languages/vue.php:1737
4069
- msgid "Hide Admin Bar Reports"
 
 
 
 
 
4070
  msgstr ""
4071
 
4072
- #. Translators: placeholders make text small.
4073
  #: languages/vue.php:1741
4074
- msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
4075
  msgstr ""
4076
 
4077
  #: languages/vue.php:1744
4078
- msgid "Unlock Form Tracking"
4079
  msgstr ""
4080
 
4081
  #: languages/vue.php:1747
4082
- msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
4083
  msgstr ""
4084
 
4085
  #: languages/vue.php:1750
4086
- msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
4087
  msgstr ""
4088
 
4089
  #: languages/vue.php:1753
4090
- msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
4091
  msgstr ""
4092
 
4093
  #: languages/vue.php:1756
4094
- msgid "Welcome to ExactMetrics!"
4095
  msgstr ""
4096
 
4097
  #: languages/vue.php:1759
4098
- msgid "Let's get you set up."
4099
  msgstr ""
4100
 
4101
  #: languages/vue.php:1762
4102
- msgid "Which category best describes your website?"
4103
  msgstr ""
4104
 
4105
  #: languages/vue.php:1765
4106
- msgid "We will recommend the optimal settings for ExactMetrics based on your choice."
4107
  msgstr ""
4108
 
4109
  #: languages/vue.php:1768
4110
- msgid "Business Website"
4111
  msgstr ""
4112
 
4113
- #. Translators: Make text bold.
4114
- #: languages/vue.php:1772
4115
- msgid "Publisher %1$s(Blog)%2$s"
4116
  msgstr ""
4117
 
4118
- #. Translators: Error status and error text.
4119
- #: languages/vue.php:1776
4120
- msgid "Can't deauthenticate. Error: %1$s, %2$s"
4121
  msgstr ""
4122
 
4123
- #: languages/vue.php:1779
4124
- msgid "You appear to be offline."
 
 
 
 
4125
  msgstr ""
4126
 
4127
- #. Translators: Error status and error text.
4128
  #: languages/vue.php:1783
4129
- msgid "Can't save settings. Error: %1$s, %2$s"
4130
  msgstr ""
4131
 
4132
  #: languages/vue.php:1786
4133
- msgid "You appear to be offline. Settings not saved."
4134
  msgstr ""
4135
 
4136
- #. Translators: Error status and error text.
4137
- #: languages/vue.php:1790
4138
- msgid "Can't load authentication details. Error: %1$s, %2$s"
4139
  msgstr ""
4140
 
4141
- #. Translators: Error status and error text.
4142
- #: languages/vue.php:1794
4143
- msgid "Can't authenticate. Error: %1$s, %2$s"
 
 
 
4144
  msgstr ""
4145
 
4146
- #. Translators: Error status and error text.
4147
  #: languages/vue.php:1798
4148
- msgid "Can't reauthenticate. Error: %1$s, %2$s"
4149
  msgstr ""
4150
 
4151
- #. Translators: Error status and error text.
4152
- #: languages/vue.php:1802
4153
- msgid "Can't verify credentials. Error: %1$s, %2$s"
4154
  msgstr ""
4155
 
4156
- #. Translators: Makes text bold.
4157
- #: languages/vue.php:1806
4158
- msgid "%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress."
4159
  msgstr ""
4160
 
4161
- #. Translators: Makes text bold.
4162
- #: languages/vue.php:1810
4163
- msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click."
4164
  msgstr ""
4165
 
4166
- #: languages/vue.php:1813
4167
- msgid "Upgrade to ExactMetrics Pro Now"
4168
  msgstr ""
4169
 
4170
- #. Translators: Placeholders are used for making text bold and adding a link.
4171
- #: languages/vue.php:1817
4172
- msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
4173
  msgstr ""
4174
 
4175
- #: languages/vue.php:1820
4176
- msgid "Ads Tracking"
4177
  msgstr ""
4178
 
4179
- #: languages/vue.php:1823
4180
- msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
4181
  msgstr ""
4182
 
4183
- #: languages/vue.php:1826
4184
- msgid "Google AMP"
4185
  msgstr ""
4186
 
4187
- #: languages/vue.php:1829
4188
- msgid "Want to use track users visiting your AMP pages? By upgrading to ExactMetrics Pro, you can enable AMP page tracking."
4189
  msgstr ""
4190
 
4191
- #: languages/vue.php:1832
4192
- msgid "Facebook Instant Articles"
4193
  msgstr ""
4194
 
4195
- #: languages/vue.php:1835
4196
- msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to ExactMetrics Pro."
4197
  msgstr ""
4198
 
4199
- #: languages/vue.php:1838
4200
- msgid "Help Us Improve"
4201
  msgstr ""
4202
 
4203
- #: languages/vue.php:1841
4204
- msgid "Help us better understand our users and their website needs."
 
 
 
 
4205
  msgstr ""
4206
 
4207
- #. Translators: Adds a link to the documentation.
4208
  #: languages/vue.php:1845
4209
- 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"
 
 
 
 
4210
  msgstr ""
4211
 
4212
- #. Translators: Error status and error text.
4213
- #: languages/vue.php:1849
4214
- msgid "Can't deactivate the license. Error: %1$s, %2$s"
4215
  msgstr ""
4216
 
4217
- #. Translators: Error status and error text.
4218
- #: languages/vue.php:1853
4219
- msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
4220
  msgstr ""
4221
 
4222
- #. Translators: Error status and error text.
4223
  #: languages/vue.php:1857
4224
- msgid "Can't load license details. Error: %1$s, %2$s"
4225
  msgstr ""
4226
 
4227
  #: languages/vue.php:1860
4228
- msgid "Error loading license details"
4229
  msgstr ""
4230
 
4231
- #. Translators: Error status and error text.
4232
- #: languages/vue.php:1864
4233
- msgid "Can't verify the license. Error: %1$s, %2$s"
4234
  msgstr ""
4235
 
4236
- #. Translators: Error status and error text.
4237
- #: languages/vue.php:1868
4238
- msgid "Can't validate the license. Error: %1$s, %2$s"
 
 
 
4239
  msgstr ""
4240
 
4241
- #. Translators: The name of the field that is throwing a validation error.
4242
  #: languages/vue.php:1872
4243
- msgid "%s can't be empty."
4244
  msgstr ""
4245
 
4246
  #: languages/vue.php:1875
4247
- msgid "Duplicate values are not allowed."
4248
  msgstr ""
4249
 
4250
  #: languages/vue.php:1878
4251
- msgid "Add Another Link Path"
4252
  msgstr ""
4253
 
4254
  #: languages/vue.php:1881
4255
- msgid "Remove row"
4256
  msgstr ""
4257
 
4258
  #: languages/vue.php:1884
4259
- msgid "Scroll Tracking"
4260
  msgstr ""
4261
 
4262
  #: languages/vue.php:1887
4263
- msgid "Scroll depth tracking in web analytics is one of those things you simply must do, especially if you have a content-heavy site."
4264
  msgstr ""
4265
 
4266
- #. Translators: Makes text bold and adds smiley.
4267
- #: languages/vue.php:1891
4268
- msgid "You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
4269
  msgstr ""
4270
 
4271
- #. Translators: Makes text green.
4272
- #: languages/vue.php:1895
4273
- msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout."
4274
  msgstr ""
4275
 
4276
- #: languages/vue.php:1898
4277
- msgid "Unlock All Features and Upgrade to Pro"
4278
  msgstr ""
4279
 
4280
- #: languages/vue.php:1901
4281
- #: languages/vue.php:2170
4282
- msgid "Connect ExactMetrics"
4283
  msgstr ""
4284
 
4285
- #: languages/vue.php:1904
4286
- msgid "Website profile"
4287
  msgstr ""
4288
 
4289
- #: languages/vue.php:1907
4290
- msgid "Active profile"
4291
  msgstr ""
4292
 
4293
- #: languages/vue.php:1911
4294
- msgid "Your website profile has been set at the network level of your WordPress Multisite."
 
4295
  msgstr ""
4296
 
4297
- #: languages/vue.php:1915
4298
- msgid "If you would like to use a different profile for this subsite, you can authenticate below."
4299
  msgstr ""
4300
 
4301
- #: languages/vue.php:1918
4302
- msgid "Skip and Keep Connection"
4303
  msgstr ""
4304
 
4305
- #: languages/vue.php:1922
4306
- msgid "Authenticating"
4307
  msgstr ""
4308
 
4309
- #. Translators: Make text green.
4310
- #: languages/vue.php:1926
4311
- msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
 
4312
  msgstr ""
4313
 
4314
- #: languages/vue.php:1929
4315
- msgid "Network Active"
4316
  msgstr ""
4317
 
4318
- #: languages/vue.php:1932
4319
- msgid "Active"
 
4320
  msgstr ""
4321
 
 
4322
  #: languages/vue.php:1935
4323
- msgid "Inactive"
4324
  msgstr ""
4325
 
4326
- #. Translators: Placeholder for the addon status (installed, active, etc).
4327
  #: languages/vue.php:1939
4328
- msgid "Status: %s"
4329
  msgstr ""
4330
 
4331
  #: languages/vue.php:1942
4332
- msgid "Not Installed"
4333
  msgstr ""
4334
 
4335
  #: languages/vue.php:1945
4336
- msgid "Proceed"
4337
  msgstr ""
4338
 
4339
  #: languages/vue.php:1948
4340
- msgid "Connection Information"
4341
  msgstr ""
4342
 
4343
  #: languages/vue.php:1951
4344
- 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."
4345
  msgstr ""
4346
 
4347
  #: languages/vue.php:1954
4348
- msgid "Hostname"
4349
- msgstr ""
4350
-
4351
- #: languages/vue.php:1957
4352
- msgid "FTP Username"
4353
  msgstr ""
4354
 
4355
- #: languages/vue.php:1960
4356
- msgid "FTP Password"
4357
  msgstr ""
4358
 
4359
- #: languages/vue.php:1963
4360
- msgid "This password will not be stored on the server."
4361
  msgstr ""
4362
 
4363
  #: languages/vue.php:1966
4364
- msgid "Connection Type"
4365
  msgstr ""
4366
 
4367
  #: languages/vue.php:1969
4368
- msgid "Cancel"
4369
  msgstr ""
4370
 
4371
- #. Translators: Error status and error text.
4372
- #: languages/vue.php:1973
4373
- msgid "Can't load errors. Error: %1$s, %2$s"
4374
  msgstr ""
4375
 
4376
- #: languages/vue.php:1976
4377
- 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!"
4378
  msgstr ""
4379
 
 
4380
  #: languages/vue.php:1979
4381
- msgid "To unlock more features consider upgrading to PRO."
4382
  msgstr ""
4383
 
4384
  #: languages/vue.php:1982
4385
- msgid "Receive 50% off automatically applied at the checkout!"
4386
  msgstr ""
4387
 
4388
  #: languages/vue.php:1985
4389
- msgid "See all features"
4390
  msgstr ""
4391
 
4392
  #: languages/vue.php:1988
4393
- msgid "Upgrade to"
4394
  msgstr ""
4395
 
4396
- #. Translators: Replaced with the number of days
4397
- #: languages/vue.php:1992
4398
- msgid "vs. Previous Day"
4399
  msgstr ""
4400
 
4401
- #: languages/vue.php:1995
4402
- msgid "No change"
4403
  msgstr ""
4404
 
4405
- #: languages/vue.php:1998
4406
- msgid "Last 30 days"
4407
  msgstr ""
4408
 
 
4409
  #: languages/vue.php:2001
4410
- msgid "Reset to default"
4411
  msgstr ""
4412
 
4413
  #: languages/vue.php:2004
4414
- msgid "The value entered does not match the required format"
4415
  msgstr ""
4416
 
4417
  #: languages/vue.php:2007
4418
- msgid "No options available"
4419
  msgstr ""
4420
 
4421
  #: languages/vue.php:2010
4422
- msgid ""
4423
- "The EU Compliance addon allows you to improve compliance with GDPR\n"
4424
- " and other privacy regulations."
4425
- msgstr ""
4426
-
4427
- #: languages/vue.php:2014
4428
- msgid "EU Compliance"
4429
  msgstr ""
4430
 
4431
- #: languages/vue.php:2017
4432
- msgid "Hide dashboard widget"
4433
  msgstr ""
4434
 
4435
- #: languages/vue.php:2020
4436
- msgid "Are you sure you want to hide the ExactMetrics Dashboard Widget? "
4437
  msgstr ""
4438
 
4439
- #: languages/vue.php:2023
4440
- msgid "Yes, hide it!"
4441
  msgstr ""
4442
 
4443
- #: languages/vue.php:2026
4444
- msgid "No, cancel!"
4445
  msgstr ""
4446
 
4447
- #: languages/vue.php:2029
4448
- msgid "ExactMetrics Widget Hidden"
4449
  msgstr ""
4450
 
4451
- #: languages/vue.php:2032
4452
- msgid "You can re-enable the ExactMetrics widget at any time using the \"Screen Options\" menu on the top right of this page"
 
4453
  msgstr ""
4454
 
4455
- #: languages/vue.php:2035
4456
- msgid "Forms Tracking help you see who’s viewing your forms, so you can increase conversions."
4457
  msgstr ""
4458
 
4459
- #: languages/vue.php:2038
4460
- msgid "Custom Dimensions show you popular categories, best time to publish, focus keywords, etc."
4461
  msgstr ""
4462
 
4463
- #: languages/vue.php:2041
4464
- msgid "Make Google Analytics GDPR compliant with our EU Compliance addon."
4465
  msgstr ""
4466
 
4467
- #: languages/vue.php:2044
4468
- msgid "Get real-time Google Analytics report right inside your WordPress dashboard."
4469
  msgstr ""
4470
 
 
4471
  #: languages/vue.php:2047
4472
- msgid "Use Google Optimize to easily perform A/B split tests on your site."
4473
  msgstr ""
4474
 
4475
  #: languages/vue.php:2050
4476
- msgid "See all your important store metrics in one place with Enhanced Ecommerce Tracking."
4477
  msgstr ""
4478
 
4479
  #: languages/vue.php:2053
4480
- msgid "Unlock search console report to see your top performing keywords in Google."
4481
  msgstr ""
4482
 
4483
  #: languages/vue.php:2056
4484
- msgid "Get Page Insights to see important metrics for individual posts / pages in WordPress."
4485
  msgstr ""
4486
 
4487
  #: languages/vue.php:2059
4488
- msgid "Publishers Report shows your top performing pages, audience demographics, and more."
4489
  msgstr ""
4490
 
4491
  #: languages/vue.php:2062
4492
- msgid "Get Scroll-Depth tracking to see how far users scroll on your pages before leaving."
4493
- msgstr ""
4494
-
4495
- #: languages/vue.php:2065
4496
- msgid "Upgrade to Pro »"
4497
  msgstr ""
4498
 
4499
- #: languages/vue.php:2068
4500
- msgid "Pro Tip:"
 
4501
  msgstr ""
4502
 
4503
- #: languages/vue.php:2071
4504
- msgid "Performance"
4505
  msgstr ""
4506
 
4507
- #: languages/vue.php:2074
4508
- 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."
4509
  msgstr ""
4510
 
4511
- #: languages/vue.php:2077
4512
- msgid "Upgrade"
4513
  msgstr ""
4514
 
4515
- #: languages/vue.php:2080
4516
- msgid "Usage Tracking"
4517
  msgstr ""
4518
 
4519
- #: languages/vue.php:2083
4520
- 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."
 
4521
  msgstr ""
4522
 
 
4523
  #: languages/vue.php:2086
4524
- msgid "Allow usage tracking"
4525
  msgstr ""
4526
 
4527
- #. Translators: Adds a link to the documentation.
4528
- #: languages/vue.php:2090
4529
- msgid "Complete documentation on usage tracking is available %1$shere%2$s."
4530
  msgstr ""
4531
 
 
4532
  #: languages/vue.php:2093
4533
- msgid "Activating..."
4534
- msgstr ""
4535
-
4536
- #: languages/vue.php:2096
4537
- msgid "Deactivating..."
4538
- msgstr ""
4539
-
4540
- #: languages/vue.php:2099
4541
- msgid "Deactivate"
4542
  msgstr ""
4543
 
4544
- #: languages/vue.php:2102
4545
- msgid "Show"
 
4546
  msgstr ""
4547
 
4548
- #. Translators: The number of results.
4549
- #: languages/vue.php:2106
4550
- msgid "%s results"
4551
  msgstr ""
4552
 
4553
  #. Translators: Error status and error text.
4554
- #: languages/vue.php:2110
4555
- msgid "Can't load settings. Error: %1$s, %2$s"
4556
  msgstr ""
4557
 
4558
- #: languages/vue.php:2113
4559
- msgid "Network error encountered. Settings not saved."
4560
  msgstr ""
4561
 
4562
- #. Translators: Adds link to the account area to retreive license key.
4563
- #: languages/vue.php:2117
4564
- msgid "Already have a license key? Add it below to unlock ExactMetrics PRO. %1$sRetrieve your license key%2$s."
4565
  msgstr ""
4566
 
4567
- #: languages/vue.php:2120
4568
- msgid "Paste your license key here"
4569
  msgstr ""
4570
 
4571
- #: languages/vue.php:2123
4572
- msgid "Verify"
4573
  msgstr ""
4574
 
4575
- #: languages/vue.php:2126
4576
- msgid "Setup Wizard"
4577
  msgstr ""
4578
 
4579
- #: languages/vue.php:2129
4580
- msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
4581
  msgstr ""
4582
 
4583
- #: languages/vue.php:2132
4584
- msgid "Relaunch Setup Wizard"
4585
  msgstr ""
4586
 
4587
- #: languages/vue.php:2135
4588
- msgid "Connect ExactMetrics to Start Tracking Your Data"
4589
  msgstr ""
4590
 
4591
- #: languages/vue.php:2138
4592
- msgid "You're using ExactMetrics Lite – no license needed. Enjoy!"
4593
  msgstr ""
4594
 
4595
- #. Translators: Make text bold.
4596
  #: languages/vue.php:2142
4597
- msgid "To unlock more features consider %1$supgrading to PRO%2$s."
4598
  msgstr ""
4599
 
4600
  #: languages/vue.php:2145
4601
- msgid "Complete Upgrade"
4602
  msgstr ""
4603
 
4604
- #: languages/vue.php:2148
4605
- msgid "Upgrade to Pro Version!"
 
4606
  msgstr ""
4607
 
4608
- #. Translators: Make text bold.
4609
  #: languages/vue.php:2152
4610
- msgid "%1$sExactMetrics%2$s can automatically upgrade the installed version to the Pro and walk you through the process."
4611
  msgstr ""
4612
 
4613
  #: languages/vue.php:2155
4614
- msgid "There was an error unlocking ExactMetrics PRO please try again or install manually."
4615
  msgstr ""
4616
 
4617
  #: languages/vue.php:2158
4618
- msgid "Verifying Credentials"
4619
  msgstr ""
4620
 
4621
  #: languages/vue.php:2161
4622
- msgid "Your site is connected to ExactMetrics!"
4623
  msgstr ""
4624
 
4625
  #: languages/vue.php:2164
4626
- msgid "Deauthenticating"
4627
  msgstr ""
4628
 
4629
  #: languages/vue.php:2167
4630
- 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."
4631
- msgstr ""
4632
-
4633
- #: languages/vue.php:2173
4634
- msgid "Verify Credentials"
4635
- msgstr ""
4636
-
4637
- #: languages/vue.php:2179
4638
- msgid "Website Profile"
4639
- msgstr ""
4640
-
4641
- #: languages/vue.php:2182
4642
- msgid "Active Profile"
4643
  msgstr ""
4644
 
4645
- #: languages/vue.php:2185
4646
- msgid "Force Deauthenticate"
4647
- msgstr ""
4648
-
4649
- #: languages/vue.php:2188
4650
- msgid "Disconnect ExactMetrics"
4651
  msgstr ""
4652
 
4653
- #. Translators: Make text bold.
4654
- #: languages/vue.php:2192
4655
- msgid "You're using %1$sExactMetrics Lite%2$s - no license needed. Enjoy!"
4656
  msgstr ""
4657
 
4658
  #: exactmetrics.php:228
2
  # This file is distributed under the same license as the ExactMetrics Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: ExactMetrics Pro 6.0.1\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: 2020-02-14T13:58:14+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.2.0\n"
15
  "X-Domain: google-analytics-dashboard-for-wp\n"
152
  #: lite/includes/admin/wp-site-health.php:298
153
  #: lite/includes/admin/wp-site-health.php:324
154
  #: lite/includes/admin/wp-site-health.php:351
155
+ #: languages/vue.php:1677
156
  msgid "View Addons"
157
  msgstr ""
158
 
288
  msgid "Upgrade to ExactMetrics Pro"
289
  msgstr ""
290
 
291
+ #: lite/includes/admin/onboarding-wizard.php:169
292
  msgid "ExactMetrics &rsaquo; Onboarding Wizard"
293
  msgstr ""
294
 
295
+ #: lite/includes/admin/onboarding-wizard.php:182
296
  msgid "Return to Dashboard"
297
  msgstr ""
298
 
299
+ #: lite/includes/admin/onboarding-wizard.php:248
300
  msgid "You are not allowed to install plugins"
301
  msgstr ""
302
 
303
  #: lite/includes/admin/reports/report-queries.php:22
304
+ #: languages/vue.php:227
305
  msgid "Search Console"
306
  msgstr ""
307
 
308
  #: lite/includes/admin/reports/report-ecommerce.php:22
309
+ #: languages/vue.php:343
310
  msgid "eCommerce"
311
  msgstr ""
312
 
319
  msgstr ""
320
 
321
  #: lite/includes/admin/reports/report-publisher.php:22
322
+ #: languages/vue.php:378
323
  msgid "Publishers"
324
  msgstr ""
325
 
326
  #: lite/includes/admin/reports/report-dimensions.php:22
327
+ #: languages/vue.php:505
328
  msgid "Dimensions"
329
  msgstr ""
330
 
331
  #: lite/includes/admin/reports/report-forms.php:22
332
+ #: languages/vue.php:384
333
  msgid "Forms"
334
  msgstr ""
335
 
600
 
601
  #: includes/admin/admin.php:39
602
  #: includes/admin/admin.php:95
603
+ #: languages/vue.php:958
604
  msgid "Reports"
605
  msgstr ""
606
 
629
 
630
  #: includes/admin/admin.php:60
631
  #: includes/admin/admin.php:103
632
+ #: languages/vue.php:323
633
  msgid "About Us"
634
  msgstr ""
635
 
657
 
658
  #: includes/admin/admin.php:175
659
  #: includes/admin/admin.php:178
660
+ #: languages/vue.php:1049
661
  msgid "Support"
662
  msgstr ""
663
 
667
  msgstr ""
668
 
669
  #: includes/admin/admin.php:277
670
+ #: languages/vue.php:524
671
  msgid "Please Setup Website Analytics to See Audience Insights"
672
  msgstr ""
673
 
674
  #: includes/admin/admin.php:278
675
+ #: languages/vue.php:530
676
  msgid "Connect ExactMetrics and Setup Website Analytics"
677
  msgstr ""
678
 
679
  #: includes/admin/admin.php:280
680
+ #: languages/vue.php:294
681
  msgid "Learn More"
682
  msgstr ""
683
 
684
  #: includes/admin/admin.php:282
685
+ #: languages/vue.php:527
686
+ 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 1 million website owners use ExactMetrics to see the stats that matter and grow their business."
687
  msgstr ""
688
 
689
  #. Translators: Adds a link to retrieve the license.
693
 
694
  #. Translators: Adds a link to the license renewal.
695
  #: includes/admin/admin.php:303
696
+ #: languages/vue.php:484
697
  msgid "Your license key for ExactMetrics has expired. %1$sPlease click here to renew your license key.%2$s"
698
  msgstr ""
699
 
700
  #: includes/admin/admin.php:305
701
+ #: languages/vue.php:487
702
  msgid "Your license key for ExactMetrics has been disabled. Please use a different key."
703
  msgstr ""
704
 
705
  #: includes/admin/admin.php:307
706
+ #: languages/vue.php:490
707
  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."
708
  msgstr ""
709
 
784
  msgstr ""
785
 
786
  #: includes/admin/reports/overview.php:34
787
+ #: languages/vue.php:374
788
  msgid "Overview"
789
  msgstr ""
790
 
876
  msgstr ""
877
 
878
  #: includes/admin/reports/abstract-report.php:375
879
+ #: languages/vue.php:162
880
  msgid "Upgrade Now"
881
  msgstr ""
882
 
1957
  msgid "%1$s is %3$sdeprecated%4$s since ExactMetrics version %2$s."
1958
  msgstr ""
1959
 
1960
+ #: languages/vue.php:6
1961
  msgid "Error"
1962
  msgstr ""
1963
 
1964
+ #: languages/vue.php:9
1965
  msgid "Please try again."
1966
  msgstr ""
1967
 
1968
+ #: languages/vue.php:12
 
 
 
 
1969
  msgid "Loading Settings"
1970
  msgstr ""
1971
 
1972
+ #: languages/vue.php:15
1973
  msgid "Please wait..."
1974
  msgstr ""
1975
 
1976
+ #: languages/vue.php:18
1977
  msgid "Saving Changes..."
1978
  msgstr ""
1979
 
1980
+ #: languages/vue.php:21
1981
  msgid "Settings Updated"
1982
  msgstr ""
1983
 
1984
  #. Translators: Add a link to the onboarding wizard.
1985
+ #: languages/vue.php:25
1986
  msgid "You need to %1$sconnect ExactMetrics%2$s first"
1987
  msgstr ""
1988
 
1989
+ #: languages/vue.php:28
1990
  msgid "Could Not Save Changes"
1991
  msgstr ""
1992
 
1993
+ #: languages/vue.php:31
1994
  msgid "Loading new report data"
1995
  msgstr ""
1996
 
1997
+ #. Translators: Adds an arrow icon.
1998
+ #: languages/vue.php:36
1999
  msgid "Continue %s"
2000
  msgstr ""
2001
 
2002
+ #: languages/vue.php:39
2003
  msgid "Unlock the Publishers Report and Focus on the Content that Matters"
2004
  msgstr ""
2005
 
2006
+ #: languages/vue.php:42
2007
  msgid "Stop guessing about what content your visitors are interested in. ExactMetrics Publisher Report shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions."
2008
  msgstr ""
2009
 
2010
+ #: languages/vue.php:45
2011
  msgid "Unlock the Publishers Report and Focus on the Content That Matters"
2012
  msgstr ""
2013
 
2014
+ #: languages/vue.php:48
2015
  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."
2016
  msgstr ""
2017
 
2018
+ #: languages/vue.php:51
2019
  msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
2020
  msgstr ""
2021
 
2022
+ #: languages/vue.php:54
2023
  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."
2024
  msgstr ""
2025
 
2026
+ #: languages/vue.php:57
2027
  msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
2028
  msgstr ""
2029
 
2030
+ #: languages/vue.php:60
2031
  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."
2032
  msgstr ""
2033
 
2034
+ #: languages/vue.php:63
2035
  msgid "Unlock the Forms Report and Improve Conversions"
2036
  msgstr ""
2037
 
2038
+ #: languages/vue.php:66
2039
  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."
2040
  msgstr ""
2041
 
2042
+ #: languages/vue.php:69
2043
  msgid "Unlock the Search Console Report and See How People Find Your Website"
2044
  msgstr ""
2045
 
2046
+ #: languages/vue.php:72
2047
  msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
2048
  msgstr ""
2049
 
2050
+ #: languages/vue.php:75
2051
  msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
2052
  msgstr ""
2053
 
2054
+ #: languages/vue.php:78
2055
  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."
2056
  msgstr ""
2057
 
2058
+ #: languages/vue.php:81
2059
+ msgid "Success! "
2060
+ msgstr ""
2061
+
2062
  #: languages/vue.php:84
2063
+ msgid "You're now using ExactMetrics Pro with all the features."
2064
  msgstr ""
2065
 
2066
+ #. Translators: Placeholder gets replaced with an arrow icon.
2067
  #: languages/vue.php:88
2068
+ msgid "Get Started %s"
2069
  msgstr ""
2070
 
2071
+ #: languages/vue.php:91
2072
+ msgid "Overview Report"
 
2073
  msgstr ""
2074
 
2075
+ #. Translators: Current WordPress version.
2076
  #: languages/vue.php:95
2077
+ msgid "ExactMetrics has detected that your site is running an outdated version of WordPress (%s). ExactMetrics will stop supporting WordPress versions lower than 4.6 in April, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
2078
  msgstr ""
2079
 
2080
  #: languages/vue.php:98
2081
+ msgid "Yikes! PHP Update Required"
2082
  msgstr ""
2083
 
2084
+ #. Translators: Current PHP version and recommended PHP version.
2085
+ #: languages/vue.php:102
2086
+ msgid "ExactMetrics has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. WordPress stopped supporting your PHP version in April, 2019. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure."
2087
  msgstr ""
2088
 
 
2089
  #: languages/vue.php:105
2090
+ msgid "Learn more about updating PHP"
2091
  msgstr ""
2092
 
2093
+ #: languages/vue.php:108
2094
+ msgid "Yikes! WordPress Update Required"
 
2095
  msgstr ""
2096
 
2097
+ #. Translators: Current WordPress version.
2098
  #: languages/vue.php:112
2099
+ msgid "ExactMetrics has detected that your site is running an outdated version of WordPress (%s). ExactMetrics will stop supporting WordPress versions lower than 4.9 in October, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
2100
  msgstr ""
2101
 
2102
+ #: languages/vue.php:115
2103
+ msgid "Learn more about updating WordPress"
 
2104
  msgstr ""
2105
 
2106
+ #. Translators: Makes text bold.
2107
  #: languages/vue.php:119
2108
+ msgid "%1$sUniversal Tracking%2$s Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
2109
  msgstr ""
2110
 
2111
+ #. Translators: Makes text bold.
2112
+ #: languages/vue.php:123
2113
+ msgid "%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights."
2114
  msgstr ""
2115
 
2116
+ #. Translators: Makes text bold.
2117
+ #: languages/vue.php:127
2118
+ msgid "%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more."
2119
  msgstr ""
2120
 
2121
+ #. Translators: Makes text bold.
2122
+ #: languages/vue.php:131
2123
+ msgid "%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress."
2124
  msgstr ""
2125
 
2126
+ #. Translators: Makes text bold.
2127
+ #: languages/vue.php:135
2128
+ 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."
2129
  msgstr ""
2130
 
2131
+ #. Translators: Makes text bold.
2132
+ #: languages/vue.php:139
2133
+ 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."
2134
  msgstr ""
2135
 
2136
+ #. Translators: Makes text bold.
2137
+ #: languages/vue.php:143
2138
+ msgid "%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically."
2139
  msgstr ""
2140
 
2141
+ #. Translators: Makes text bold.
2142
+ #: languages/vue.php:147
2143
+ msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click."
2144
  msgstr ""
2145
 
2146
+ #. Translators: Adds link to the features page.
2147
+ #: languages/vue.php:151
2148
+ msgid "%1$sSee All Features%2$s"
2149
  msgstr ""
2150
 
2151
+ #: languages/vue.php:155
2152
+ msgid "Pro Plan"
2153
  msgstr ""
2154
 
2155
+ #: languages/vue.php:159
2156
+ msgid "per year"
2157
  msgstr ""
2158
 
2159
+ #: languages/vue.php:165
2160
+ msgid "Upgrade to ExactMetrics Pro Now"
2161
  msgstr ""
2162
 
2163
+ #: languages/vue.php:169
2164
+ 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!"
2165
  msgstr ""
2166
 
2167
+ #: languages/vue.php:173
2168
+ msgid "Daniel Monaghan - Experienced"
2169
  msgstr ""
2170
 
2171
+ #: languages/vue.php:177
2172
+ 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."
2173
  msgstr ""
2174
 
2175
+ #: languages/vue.php:181
2176
+ msgid "Naomi Spirit - From This Day"
2177
  msgstr ""
2178
 
2179
+ #: languages/vue.php:185
2180
+ 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!"
2181
+ msgstr ""
2182
+
2183
+ #: languages/vue.php:189
2184
+ msgid "Julie Dupuis - Faraway Land Travel"
2185
+ msgstr ""
2186
+
2187
+ #: languages/vue.php:192
2188
+ msgid "Guides and Documentation:"
2189
  msgstr ""
2190
 
2191
  #: languages/vue.php:198
2192
+ msgid "Upgrade to PRO"
2193
  msgstr ""
2194
 
 
2195
  #: languages/vue.php:202
2196
+ msgid "eCommerce Tracking"
2197
  msgstr ""
2198
 
2199
+ #: languages/vue.php:206
2200
+ msgid "Custom Dimensions"
2201
  msgstr ""
2202
 
2203
+ #: languages/vue.php:209
2204
+ msgid "Form Tracking"
2205
  msgstr ""
2206
 
2207
+ #: languages/vue.php:212
2208
+ msgid "AMP Support"
2209
  msgstr ""
2210
 
2211
+ #: languages/vue.php:215
2212
+ msgid "Author Tracking"
 
2213
  msgstr ""
2214
 
2215
  #: languages/vue.php:218
2216
+ msgid "EU Compliance Addon"
2217
  msgstr ""
2218
 
2219
  #: languages/vue.php:221
2220
+ msgid "Real Time Report"
2221
  msgstr ""
2222
 
2223
  #: languages/vue.php:224
2224
+ msgid "Google Optimize"
 
 
 
 
2225
  msgstr ""
2226
 
2227
  #: languages/vue.php:230
2228
+ msgid "Custom Date Ranges"
2229
  msgstr ""
2230
 
2231
  #: languages/vue.php:233
2232
+ msgid "Getting Started with ExactMetrics"
2233
+ msgstr ""
2234
+
2235
+ #: languages/vue.php:236
2236
+ 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."
2237
  msgstr ""
2238
 
2239
  #: languages/vue.php:239
2240
+ 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."
2241
  msgstr ""
2242
 
2243
+ #: languages/vue.php:242
2244
+ 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!."
 
2245
  msgstr ""
2246
 
2247
+ #: languages/vue.php:245
2248
+ msgid "Launch the wizard!"
 
2249
  msgstr ""
2250
 
2251
+ #: languages/vue.php:249
2252
+ msgid "Welcome to"
2253
  msgstr ""
2254
 
2255
+ #. Translators: Adds a line break.
2256
+ #: languages/vue.php:253
2257
+ msgid "Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin"
2258
  msgstr ""
2259
 
2260
+ #. Translators: Makes text bold.
2261
+ #: languages/vue.php:257
2262
+ 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."
2263
+ msgstr ""
2264
+
2265
+ #: languages/vue.php:260
2266
+ msgid "ExactMetrics Features & Addons"
2267
  msgstr ""
2268
 
 
2269
  #: languages/vue.php:263
2270
+ msgid "Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market."
2271
  msgstr ""
2272
 
2273
+ #. Translators: Number of visitors.
2274
+ #: languages/vue.php:267
2275
+ msgid "See how %s visitors found your site!"
2276
  msgstr ""
2277
 
2278
+ #. Translators: Number of visitors.
2279
+ #: languages/vue.php:271
2280
+ msgid "Your website was visited by %s users in the last 30 days."
2281
  msgstr ""
2282
 
2283
+ #: languages/vue.php:274
2284
+ msgid "See the full analytics report!"
2285
+ msgstr ""
2286
+
2287
+ #. Translators: Error status and error text.
2288
+ #: languages/vue.php:278
2289
+ msgid "Can't load report data. Error: %1$s, %2$s"
2290
+ msgstr ""
2291
+
2292
+ #: languages/vue.php:281
2293
+ msgid "Error loading report data"
2294
  msgstr ""
2295
 
2296
  #. Translators: Placeholder is replaced with WPForms.
2297
+ #: languages/vue.php:285
2298
  msgid "Recommended Plugin: %s"
2299
  msgstr ""
2300
 
2301
+ #: languages/vue.php:288
2302
+ msgid "Install"
2303
  msgstr ""
2304
 
2305
+ #: languages/vue.php:291
2306
+ msgid "Activate"
2307
  msgstr ""
2308
 
2309
+ #. Translators: Gets replaced with the number of days.
2310
+ #: languages/vue.php:298
2311
+ msgid "Last %s days"
2312
  msgstr ""
2313
 
2314
+ #: languages/vue.php:301
2315
+ msgid "ExactMetrics encountered an error loading your report data"
2316
  msgstr ""
2317
 
2318
+ #: languages/vue.php:304
2319
+ msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
2320
  msgstr ""
2321
 
2322
+ #: languages/vue.php:307
2323
+ #: languages/vue.php:2133
2324
+ msgid "Reconnect ExactMetrics"
2325
  msgstr ""
2326
 
2327
+ #: languages/vue.php:310
2328
+ msgid "Re-Authenticating"
2329
+ msgstr ""
2330
+
2331
+ #: languages/vue.php:313
2332
+ msgid "Ok"
2333
  msgstr ""
2334
 
2335
  #: languages/vue.php:316
2336
+ msgid "Analytics"
2337
  msgstr ""
2338
 
2339
+ #. Translators: Adds an arrow icon.
2340
  #: languages/vue.php:320
2341
+ msgid "View All Reports %s"
2342
  msgstr ""
2343
 
2344
+ #: languages/vue.php:326
2345
+ msgid "Getting Started"
2346
  msgstr ""
2347
 
2348
+ #: languages/vue.php:330
2349
+ msgid "Lite vs Pro"
2350
  msgstr ""
2351
 
2352
+ #: languages/vue.php:334
2353
+ msgid "General"
2354
  msgstr ""
2355
 
2356
+ #: languages/vue.php:338
2357
+ msgid "Engagement"
2358
  msgstr ""
2359
 
2360
+ #: languages/vue.php:347
2361
+ msgid "Publisher"
2362
  msgstr ""
2363
 
2364
+ #: languages/vue.php:351
2365
+ msgid "Conversions"
2366
  msgstr ""
2367
 
2368
+ #: languages/vue.php:355
2369
+ msgid "Advanced"
2370
  msgstr ""
2371
 
2372
+ #: languages/vue.php:358
2373
+ msgid "URL Builder"
2374
  msgstr ""
2375
 
2376
+ #: languages/vue.php:361
2377
+ msgid "Import Export"
2378
  msgstr ""
2379
 
2380
+ #: languages/vue.php:364
2381
+ msgid "Go back"
2382
  msgstr ""
2383
 
2384
+ #. Translators: Placeholders are replaced with the current step number out of the total number of steps.
2385
+ #: languages/vue.php:368
2386
+ msgid "Step %1$s of %2$s"
2387
  msgstr ""
2388
 
2389
+ #: languages/vue.php:371
2390
+ msgid "Exit Setup"
2391
  msgstr ""
2392
 
2393
+ #: languages/vue.php:381
2394
+ msgid "Dimensions Report"
2395
  msgstr ""
2396
 
2397
+ #: languages/vue.php:387
2398
+ msgid "Real-Time"
2399
  msgstr ""
2400
 
2401
  #: languages/vue.php:390
2402
+ msgid "See Quick Links"
2403
  msgstr ""
2404
 
2405
+ #: languages/vue.php:393
2406
+ msgid "Suggest a Feature"
2407
  msgstr ""
2408
 
2409
+ #: languages/vue.php:396
2410
+ msgid "Join Our Community"
2411
  msgstr ""
2412
 
2413
+ #: languages/vue.php:399
2414
+ msgid "Support & Docs"
2415
  msgstr ""
2416
 
2417
+ #: languages/vue.php:402
2418
+ msgid "Upgrade to Pro &#187;"
2419
  msgstr ""
2420
 
2421
+ #: languages/vue.php:405
2422
+ msgid "Time to Purchase"
2423
  msgstr ""
2424
 
2425
+ #: languages/vue.php:408
2426
+ msgid "This list shows how many days from first visit it took users to purchase products from your site."
2427
  msgstr ""
2428
 
2429
+ #: languages/vue.php:411
2430
+ msgid "Sessions to Purchase"
2431
  msgstr ""
2432
 
2433
+ #: languages/vue.php:414
2434
+ msgid "This list shows the number of sessions it took users before they purchased a product from your website."
2435
  msgstr ""
2436
 
2437
+ #: languages/vue.php:417
2438
+ msgid "Top Posts/Pages"
2439
  msgstr ""
2440
 
2441
+ #: languages/vue.php:420
2442
+ msgid "This list shows the most viewed posts and pages on your website."
2443
  msgstr ""
2444
 
2445
+ #: languages/vue.php:423
2446
+ msgid "New vs. Returning Visitors"
2447
  msgstr ""
2448
 
2449
+ #: languages/vue.php:426
2450
+ msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
2451
+ msgstr ""
2452
+
2453
+ #: languages/vue.php:429
2454
+ msgid "Device Breakdown"
2455
+ msgstr ""
2456
+
2457
+ #: languages/vue.php:432
2458
+ 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."
2459
+ msgstr ""
2460
+
2461
+ #: languages/vue.php:435
2462
+ msgid "Top Landing Pages"
2463
+ msgstr ""
2464
+
2465
+ #: languages/vue.php:438
2466
+ msgid "This list shows the top pages users first land on when visiting your website."
2467
  msgstr ""
2468
 
2469
  #: languages/vue.php:441
2470
+ msgid "Top Exit Pages"
2471
  msgstr ""
2472
 
2473
  #: languages/vue.php:444
2474
+ msgid "This list shows the top pages users exit your website from."
2475
  msgstr ""
2476
 
2477
  #: languages/vue.php:447
2478
+ msgid "Top Outbound Links"
2479
  msgstr ""
2480
 
2481
  #: languages/vue.php:450
2482
+ msgid "This list shows the top links clicked on your website that go to another website."
2483
  msgstr ""
2484
 
2485
  #: languages/vue.php:453
2486
+ msgid "Top Affiliate Links"
2487
  msgstr ""
2488
 
2489
  #: languages/vue.php:456
2490
+ msgid "This list shows the top affiliate links your visitors clicked on."
2491
  msgstr ""
2492
 
2493
  #: languages/vue.php:459
2494
+ msgid "Top Download Links"
2495
  msgstr ""
2496
 
2497
  #: languages/vue.php:462
2498
+ msgid "This list shows the download links your visitors clicked the most."
2499
  msgstr ""
2500
 
2501
  #: languages/vue.php:465
2502
+ msgid "Top Products"
2503
  msgstr ""
2504
 
2505
  #: languages/vue.php:468
2506
+ msgid "This list shows the top selling products on your website."
 
 
 
 
 
2507
  msgstr ""
2508
 
2509
+ #: languages/vue.php:471
2510
+ msgid "Top Conversion Sources"
2511
  msgstr ""
2512
 
2513
+ #: languages/vue.php:474
2514
+ msgid "This list shows the top referral websites in terms of product revenue."
 
2515
  msgstr ""
2516
 
2517
+ #: languages/vue.php:477
2518
+ msgid "Total Add/Remove"
2519
  msgstr ""
2520
 
2521
+ #: languages/vue.php:480
2522
+ msgid "Save Changes"
2523
  msgstr ""
2524
 
 
2525
  #: languages/vue.php:493
2526
+ msgid "You must connect with ExactMetrics before you can view reports."
2527
  msgstr ""
2528
 
2529
  #: languages/vue.php:496
2530
+ msgid "ExactMetrics makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
2531
  msgstr ""
2532
 
2533
  #: languages/vue.php:499
2534
+ msgid "Launch Setup Wizard"
2535
  msgstr ""
2536
 
2537
  #: languages/vue.php:502
2538
+ msgid "Please ask your webmaster to connect ExactMetrics to Google Analytics."
 
 
 
 
2539
  msgstr ""
2540
 
2541
+ #. Translators: Adds a link to documentation.
2542
+ #: languages/vue.php:509
2543
+ 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"
2544
  msgstr ""
2545
 
2546
+ #. Translators: Adds link to activate/install plugin and documentation.
2547
  #: languages/vue.php:513
2548
+ 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"
 
 
 
 
2549
  msgstr ""
2550
 
2551
+ #. Translators: Adds a link to documentation.
2552
+ #: languages/vue.php:517
2553
+ 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"
2554
  msgstr ""
2555
 
2556
+ #. Translators: Adds link to activate/install plugin and documentation.
2557
+ #: languages/vue.php:521
2558
+ 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"
2559
  msgstr ""
2560
 
2561
+ #. Translators: Placeholders make the text highlighted.
2562
+ #: languages/vue.php:534
2563
+ msgid "%1$sNeed%2$s to Grow FASTER??"
2564
  msgstr ""
2565
 
2566
+ #: languages/vue.php:537
2567
+ msgid "Get additional, actionable insights by going Pro."
2568
  msgstr ""
2569
 
2570
+ #: languages/vue.php:540
2571
+ msgid "Skip"
2572
  msgstr ""
2573
 
2574
+ #: languages/vue.php:543
2575
+ msgid "See All Features"
 
2576
  msgstr ""
2577
 
2578
+ #: languages/vue.php:546
2579
+ 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."
2580
  msgstr ""
2581
 
2582
+ #: languages/vue.php:549
2583
+ msgid "Our Pro plan includes:"
2584
  msgstr ""
2585
 
2586
+ #: languages/vue.php:552
2587
+ msgid "Connect ExactMetrics to Your Website"
2588
  msgstr ""
2589
 
2590
+ #: languages/vue.php:555
2591
+ msgid "ExactMetrics connects Google Analytics to WordPress and shows you stats that matter."
2592
  msgstr ""
2593
 
2594
+ #: languages/vue.php:558
2595
+ msgid "Connect Google Analytics + WordPress"
2596
  msgstr ""
2597
 
2598
+ #: languages/vue.php:561
2599
+ msgid "You will be taken to the ExactMetrics website where you'll need to connect your Analytics account."
2600
  msgstr ""
2601
 
2602
+ #: languages/vue.php:564
2603
+ msgid "Whoops, something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually."
2604
  msgstr ""
2605
 
2606
+ #: languages/vue.php:567
2607
+ msgid "Manually enter your UA code"
2608
  msgstr ""
2609
 
2610
+ #: languages/vue.php:570
2611
+ 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."
2612
  msgstr ""
2613
 
2614
+ #: languages/vue.php:573
2615
+ msgid "Save and Continue"
2616
  msgstr ""
2617
 
2618
+ #: languages/vue.php:576
2619
+ msgid "UA code can't be empty"
2620
  msgstr ""
2621
 
2622
+ #: languages/vue.php:579
2623
+ msgid "Saving UA code..."
2624
  msgstr ""
2625
 
2626
+ #: languages/vue.php:582
2627
+ msgid "Welcome to the all-new ExactMetrics"
 
2628
  msgstr ""
2629
 
2630
+ #: languages/vue.php:585
2631
+ msgid "Redesigned from the ground up, ExactMetrics is built to bring a world-class analytics and reporting experience to WordPress."
 
2632
  msgstr ""
2633
 
2634
+ #: languages/vue.php:588
2635
+ msgid "The New & Improved ExactMetrics includes:"
 
2636
  msgstr ""
2637
 
2638
+ #: languages/vue.php:591
2639
+ msgid "All-New Design"
2640
  msgstr ""
2641
 
2642
+ #: languages/vue.php:594
2643
+ msgid "Better Reporting"
 
2644
  msgstr ""
2645
 
2646
+ #: languages/vue.php:597
2647
+ msgid "Better Tracking"
 
2648
  msgstr ""
2649
 
2650
+ #: languages/vue.php:600
2651
+ msgid "Better Support"
 
2652
  msgstr ""
2653
 
2654
+ #: languages/vue.php:603
2655
+ msgid "Continue"
2656
  msgstr ""
2657
 
 
2658
  #: languages/vue.php:606
2659
+ msgid "Your settings have been automatically transferred."
2660
  msgstr ""
2661
 
2662
+ #: languages/vue.php:609
2663
+ msgid "Recommended Settings"
 
2664
  msgstr ""
2665
 
2666
+ #: languages/vue.php:612
2667
+ msgid "ExactMetrics recommends the following settings based on your configuration."
2668
  msgstr ""
2669
 
2670
+ #: languages/vue.php:615
2671
+ msgid "Events Tracking"
2672
  msgstr ""
2673
 
2674
+ #: languages/vue.php:618
2675
+ msgid "Must have for all click tracking on site."
2676
  msgstr ""
2677
 
2678
+ #: languages/vue.php:621
2679
+ 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."
2680
  msgstr ""
2681
 
2682
+ #: languages/vue.php:624
2683
+ msgid "Enhanced Link Attribution"
2684
  msgstr ""
2685
 
2686
+ #: languages/vue.php:627
2687
+ msgid "Improves the accuracy of your In-Page Analytics."
2688
  msgstr ""
2689
 
2690
+ #: languages/vue.php:630
2691
+ 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."
2692
  msgstr ""
2693
 
2694
+ #: languages/vue.php:633
2695
+ msgid "Install Updates Automatically"
2696
  msgstr ""
2697
 
2698
+ #: languages/vue.php:636
2699
+ msgid "Get the latest features, bug fixes, and security updates as they are released."
2700
  msgstr ""
2701
 
2702
+ #: languages/vue.php:639
2703
+ msgid "To ensure you get the latest bugfixes 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."
2704
  msgstr ""
2705
 
2706
+ #: languages/vue.php:642
2707
+ msgid "File Download Tracking"
2708
  msgstr ""
2709
 
2710
+ #: languages/vue.php:645
2711
+ msgid "Helps you see file downloads data."
2712
  msgstr ""
2713
 
2714
+ #: languages/vue.php:648
2715
+ 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."
2716
  msgstr ""
2717
 
2718
+ #. Translators: Example path (/go/).
2719
+ #: languages/vue.php:653
2720
+ msgid "Path (example: %s)"
2721
  msgstr ""
2722
 
2723
+ #: languages/vue.php:657
2724
+ msgid "Path has to start with a / and have no spaces"
2725
  msgstr ""
2726
 
2727
+ #. Translators: Example label (aff).
2728
+ #: languages/vue.php:662
2729
+ msgid "Label (example: %s)"
2730
  msgstr ""
2731
 
2732
+ #: languages/vue.php:666
2733
+ msgid "Label can't contain any spaces"
2734
  msgstr ""
2735
 
2736
+ #: languages/vue.php:669
2737
+ msgid "Helps you increase affiliate revenue."
2738
  msgstr ""
2739
 
2740
+ #: languages/vue.php:672
2741
+ 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."
2742
  msgstr ""
2743
 
2744
+ #: languages/vue.php:675
2745
+ msgid "Affiliate Link Tracking"
2746
  msgstr ""
2747
 
2748
+ #: languages/vue.php:678
2749
+ msgid "Who Can See Reports"
2750
  msgstr ""
2751
 
2752
+ #: languages/vue.php:681
2753
+ msgid "These user roles will be able to access ExactMetrics's reports in the WordPress admin area."
2754
  msgstr ""
2755
 
2756
+ #: languages/vue.php:684
2757
+ 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."
2758
  msgstr ""
2759
 
2760
+ #: languages/vue.php:687
2761
+ msgid "Save and continue"
2762
  msgstr ""
2763
 
2764
+ #: languages/vue.php:690
2765
+ msgid "Events Tracking is enabled the moment you set up ExactMetrics"
2766
  msgstr ""
2767
 
2768
+ #: languages/vue.php:693
2769
+ msgid "Enhanced Link Attribution is enabled the moment you set up ExactMetrics"
2770
  msgstr ""
2771
 
2772
+ #: languages/vue.php:696
2773
+ msgid "+ Add Role"
2774
  msgstr ""
2775
 
2776
+ #: languages/vue.php:699
2777
+ msgid "Awesome, You're All Set!"
2778
  msgstr ""
2779
 
2780
+ #: languages/vue.php:702
2781
+ msgid "ExactMetrics is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
2782
  msgstr ""
2783
 
2784
+ #. Translators: Make the text bold.
2785
  #: languages/vue.php:706
2786
+ 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."
 
 
 
 
2787
  msgstr ""
2788
 
2789
+ #. Translators: Add link to blog.
2790
+ #: languages/vue.php:710
2791
+ msgid "%1$sSubscribe to the ExactMetrics blog%2$s for tips on how to get more traffic and grow your business."
2792
  msgstr ""
2793
 
2794
+ #: languages/vue.php:713
2795
+ msgid "Finish Setup & Exit Wizard"
2796
  msgstr ""
2797
 
2798
+ #: languages/vue.php:716
2799
+ msgid "Google Analytics"
2800
  msgstr ""
2801
 
2802
+ #: languages/vue.php:719
2803
+ msgid "Subscribe"
2804
  msgstr ""
2805
 
2806
+ #: languages/vue.php:722
2807
+ msgid "Checking your website..."
2808
  msgstr ""
2809
 
2810
+ #: languages/vue.php:725
2811
+ msgid "Show Overview Reports"
2812
  msgstr ""
2813
 
2814
+ #: languages/vue.php:728
2815
+ msgid "Show Publishers Reports"
2816
  msgstr ""
2817
 
2818
+ #: languages/vue.php:731
2819
+ msgid "Show eCommerce Reports"
2820
  msgstr ""
2821
 
2822
+ #: languages/vue.php:734
2823
+ msgid "Available in PRO version"
2824
  msgstr ""
2825
 
2826
+ #: languages/vue.php:737
2827
+ msgid "Show in widget mode"
2828
  msgstr ""
2829
 
2830
+ #: languages/vue.php:740
2831
+ msgid "Show in full-width mode"
2832
  msgstr ""
2833
 
2834
+ #. Translators: Placeholder adds a line break.
2835
+ #: languages/vue.php:744
2836
+ msgid "You can customize your %sdate range only in the PRO version."
2837
  msgstr ""
2838
 
2839
+ #: languages/vue.php:747
2840
+ msgid "See All Reports"
2841
  msgstr ""
2842
 
2843
+ #: languages/vue.php:750
2844
+ msgid "Go to the Analytics Dashboard"
2845
  msgstr ""
2846
 
2847
+ #: languages/vue.php:753
2848
+ msgid "Ecommerce"
2849
  msgstr ""
2850
 
2851
+ #. Translators: Add line break.
2852
  #: languages/vue.php:757
2853
+ msgid "See All Your Important Store%s Metrics in One Place"
2854
  msgstr ""
2855
 
2856
  #: languages/vue.php:760
2857
+ msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
2858
  msgstr ""
2859
 
2860
  #: languages/vue.php:763
2861
+ msgid "Here's what you get:"
2862
  msgstr ""
2863
 
2864
  #: languages/vue.php:766
2865
+ msgid "See Your Conversion Rate to Improve Funnel"
2866
  msgstr ""
2867
 
2868
  #: languages/vue.php:769
2869
+ msgid "See The Number of Transactions and Make Data-Driven Decisions"
2870
  msgstr ""
2871
 
2872
  #: languages/vue.php:772
2873
+ msgid "See The Total Revenue to Track Growth"
2874
  msgstr ""
2875
 
2876
  #: languages/vue.php:775
2877
+ msgid "See Average Order Value to Find Offer Opportunities"
2878
  msgstr ""
2879
 
2880
  #: languages/vue.php:778
2881
+ msgid "See Your Top Products to See Individual Performance"
2882
  msgstr ""
2883
 
2884
  #: languages/vue.php:781
2885
+ msgid "See your Top Conversion Sources and Focus on what's Working"
2886
  msgstr ""
2887
 
2888
  #: languages/vue.php:784
2889
+ msgid "See The Time it Takes for Customers to Purchase"
2890
  msgstr ""
2891
 
2892
  #: languages/vue.php:787
2893
+ msgid "See How Many Sessions are Needed for a Purchase"
2894
  msgstr ""
2895
 
2896
  #: languages/vue.php:790
2897
+ msgid "Affiliate Links"
2898
  msgstr ""
2899
 
2900
+ #. Translators: Add links to documentation.
2901
+ #: languages/vue.php:794
2902
+ 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."
2903
  msgstr ""
2904
 
2905
+ #: languages/vue.php:797
2906
+ msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
2907
  msgstr ""
2908
 
2909
+ #: languages/vue.php:800
2910
+ msgid "Cross Domain Tracking"
2911
  msgstr ""
2912
 
2913
+ #. Translators: Add links to documentation.
2914
+ #: languages/vue.php:804
2915
+ 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."
2916
  msgstr ""
2917
 
2918
+ #: languages/vue.php:807
2919
+ msgid "Demographics"
2920
  msgstr ""
2921
 
2922
+ #: languages/vue.php:810
2923
+ msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
2924
  msgstr ""
2925
 
2926
+ #: languages/vue.php:813
2927
+ msgid "Anonymize IP Addresses"
2928
  msgstr ""
2929
 
2930
+ #: languages/vue.php:816
2931
+ msgid "Link Attribution"
2932
  msgstr ""
2933
 
2934
  #: languages/vue.php:819
2935
+ msgid "Enable Enhanced Link Attribution"
2936
  msgstr ""
2937
 
2938
  #: languages/vue.php:822
2939
+ msgid "Enable Anchor Tracking"
2940
  msgstr ""
2941
 
2942
  #: languages/vue.php:825
2943
+ msgid "Enable allowAnchor"
2944
  msgstr ""
2945
 
2946
  #: languages/vue.php:828
2947
+ msgid "Enable allowLinker"
2948
  msgstr ""
2949
 
2950
  #: languages/vue.php:831
2951
+ msgid "Enable Tag Links in RSS"
2952
  msgstr ""
2953
 
2954
  #: languages/vue.php:834
2955
+ msgid "File Downloads"
2956
  msgstr ""
2957
 
2958
  #: languages/vue.php:837
2959
+ msgid "Extensions of Files to Track as Downloads"
2960
  msgstr ""
2961
 
2962
  #: languages/vue.php:840
2963
+ msgid "ExactMetrics will send an event to Google Analytics if a link to a file has one of the above extensions."
 
 
 
 
2964
  msgstr ""
2965
 
2966
+ #. Translators: Add links to documentation.
2967
+ #: languages/vue.php:844
2968
+ 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."
2969
  msgstr ""
2970
 
2971
+ #. Translators: Add links to documentation.
2972
+ #: languages/vue.php:848
2973
+ 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."
2974
  msgstr ""
2975
 
2976
+ #. Translators: Add links to documentation.
2977
  #: languages/vue.php:852
2978
+ msgid "Add %1$sEnhanced Link Attribution%2$s to your tracking code."
2979
  msgstr ""
2980
 
2981
  #: languages/vue.php:855
2982
+ 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."
 
 
 
 
2983
  msgstr ""
2984
 
2985
+ #. Translators: Add links to documentation.
2986
+ #: languages/vue.php:859
2987
+ 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."
2988
  msgstr ""
2989
 
2990
+ #. Translators: Add links to documentation.
2991
+ #: languages/vue.php:863
2992
+ 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."
2993
  msgstr ""
2994
 
2995
+ #. Translators: Add links to documentation.
2996
+ #: languages/vue.php:867
2997
+ 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."
2998
  msgstr ""
2999
 
3000
+ #: languages/vue.php:870
3001
+ msgid "Add domain"
3002
  msgstr ""
3003
 
3004
+ #. Translators: Domain name example.
3005
+ #: languages/vue.php:874
3006
+ msgid "Domain (example: %s)"
3007
  msgstr ""
3008
 
3009
+ #. Translators: Current domain name that should not be used.
3010
+ #: languages/vue.php:878
3011
+ msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
3012
  msgstr ""
3013
 
3014
+ #: languages/vue.php:881
3015
+ msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
3016
  msgstr ""
3017
 
3018
+ #: languages/vue.php:884
3019
+ msgid "No addons found."
3020
  msgstr ""
3021
 
3022
+ #: languages/vue.php:887
3023
+ msgid "Refresh Addons"
3024
  msgstr ""
3025
 
3026
+ #: languages/vue.php:890
3027
+ #: languages/vue.php:1573
3028
+ msgid "ExactMetrics Addons"
3029
  msgstr ""
3030
 
3031
+ #. Translators: Adds a line break.
3032
  #: languages/vue.php:894
3033
+ msgid "Upgrade to Pro to unlock addons and other great features."
3034
  msgstr ""
3035
 
3036
  #: languages/vue.php:897
3037
+ msgid "As a valued ExactMetrics Lite user you receive 50% off, automaticaly applied at checkout!"
3038
  msgstr ""
3039
 
3040
  #: languages/vue.php:900
3041
+ msgid "Refreshing Addons"
 
 
 
 
3042
  msgstr ""
3043
 
3044
+ #. Translators: placeholders make text small.
3045
+ #: languages/vue.php:904
3046
+ msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
3047
  msgstr ""
3048
 
3049
+ #. Translators: placeholders make text small.
3050
+ #: languages/vue.php:908
3051
+ msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
3052
  msgstr ""
3053
 
3054
+ #. Translators: placeholders make text small.
3055
  #: languages/vue.php:912
3056
+ msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
 
 
 
 
3057
  msgstr ""
3058
 
3059
+ #. Translators: placeholders make text small.
3060
+ #: languages/vue.php:916
3061
+ msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
3062
  msgstr ""
3063
 
3064
+ #. Translators: placeholders make text small.
3065
+ #: languages/vue.php:920
3066
+ msgid "None %1$s- Manually update everything.%2$s"
3067
  msgstr ""
3068
 
3069
+ #. Translators: Adds a link to the general settings tab.
3070
  #: languages/vue.php:924
3071
+ 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."
3072
  msgstr ""
3073
 
3074
  #: languages/vue.php:927
3075
+ msgid "Permissions"
3076
  msgstr ""
3077
 
3078
  #: languages/vue.php:930
3079
+ msgid "Allow These User Roles to See Reports"
3080
  msgstr ""
3081
 
3082
  #: languages/vue.php:933
3083
+ msgid "Users that have at least one of these roles will be able to view the reports."
3084
  msgstr ""
3085
 
3086
  #: languages/vue.php:936
3087
+ msgid "Allow These User Roles to Save Settings"
3088
  msgstr ""
3089
 
3090
  #: languages/vue.php:939
3091
+ msgid "Users that have at least one of these roles will be able to view and save the settings panel."
3092
  msgstr ""
3093
 
3094
  #: languages/vue.php:942
3095
+ 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."
3096
  msgstr ""
3097
 
3098
  #: languages/vue.php:945
3099
+ msgid "Exclude These User Roles From Tracking"
3100
  msgstr ""
3101
 
3102
  #: languages/vue.php:948
3103
+ msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
3104
  msgstr ""
3105
 
3106
+ #: languages/vue.php:951
3107
+ msgid "Custom code"
 
3108
  msgstr ""
3109
 
3110
+ #. Translators: Adds a link to the Google reference.
3111
+ #: languages/vue.php:955
3112
+ 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."
3113
  msgstr ""
3114
 
3115
  #: languages/vue.php:961
3116
+ msgid "Automatic Updates"
3117
  msgstr ""
3118
 
3119
  #: languages/vue.php:964
3120
+ msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
3121
  msgstr ""
3122
 
3123
  #: languages/vue.php:967
3124
+ msgid "Hide Admin Bar Reports"
3125
+ msgstr ""
3126
+
3127
+ #. Translators: placeholders make text small.
3128
+ #: languages/vue.php:971
3129
+ msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
3130
+ msgstr ""
3131
+
3132
+ #: languages/vue.php:974
3133
+ msgid "Unlock Form Tracking"
3134
+ msgstr ""
3135
+
3136
+ #: languages/vue.php:977
3137
+ msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
3138
+ msgstr ""
3139
+
3140
+ #: languages/vue.php:980
3141
+ msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
3142
+ msgstr ""
3143
+
3144
+ #: languages/vue.php:983
3145
+ msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
3146
+ msgstr ""
3147
+
3148
+ #: languages/vue.php:986
3149
+ msgid "One-click Complete eCommerce tracking"
3150
+ msgstr ""
3151
+
3152
+ #: languages/vue.php:989
3153
  msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
3154
  msgstr ""
3155
 
3156
+ #: languages/vue.php:992
3157
  msgid "Forms Tracking"
3158
  msgstr ""
3159
 
3160
+ #: languages/vue.php:995
3161
  msgid "One-click Form Events Tracking"
3162
  msgstr ""
3163
 
3164
+ #: languages/vue.php:998
3165
  msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
3166
  msgstr ""
3167
 
3168
+ #: languages/vue.php:1001
3169
  msgid "WordPress Admin Area Reports"
3170
  msgstr ""
3171
 
3172
+ #: languages/vue.php:1004
3173
  msgid "Standard Reports"
3174
  msgstr ""
3175
 
3176
+ #: languages/vue.php:1007
3177
  msgid "Overview Reports for the last 30 days."
3178
  msgstr ""
3179
 
3180
+ #: languages/vue.php:1010
3181
  msgid "Advanced Reports"
3182
  msgstr ""
3183
 
3184
+ #: languages/vue.php:1013
3185
  msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
3186
  msgstr ""
3187
 
3188
+ #: languages/vue.php:1016
3189
  msgid "Dashboard Widget"
3190
  msgstr ""
3191
 
3192
+ #: languages/vue.php:1019
3193
  msgid "Basic Widget"
3194
  msgstr ""
3195
 
3196
+ #: languages/vue.php:1022
3197
  msgid "Overview Report Synopsis"
3198
  msgstr ""
3199
 
3200
+ #: languages/vue.php:1025
3201
  msgid "Advanced Dashboard Widget"
3202
  msgstr ""
3203
 
3204
+ #: languages/vue.php:1028
3205
  msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
3206
  msgstr ""
3207
 
3208
+ #: languages/vue.php:1031
3209
  msgid "Publisher Reports"
3210
  msgstr ""
3211
 
3212
+ #: languages/vue.php:1034
3213
  msgid "Advanced Publisher Reports & Tracking"
3214
  msgstr ""
3215
 
3216
+ #: languages/vue.php:1037
3217
  msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
3218
  msgstr ""
3219
 
3220
+ #: languages/vue.php:1040
3221
  msgid "Not Available"
3222
  msgstr ""
3223
 
3224
+ #: languages/vue.php:1043
3225
  msgid "Complete Custom Dimensions Tracking"
3226
  msgstr ""
3227
 
3228
+ #: languages/vue.php:1046
3229
  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"
3230
  msgstr ""
3231
 
3232
+ #: languages/vue.php:1052
3233
  msgid "Limited Support"
3234
  msgstr ""
3235
 
3236
+ #: languages/vue.php:1055
3237
  msgid "Priority Support"
3238
  msgstr ""
3239
 
3240
+ #: languages/vue.php:1058
3241
  msgid "Get the most out of ExactMetrics by upgrading to Pro and unlocking all of the powerful features."
3242
  msgstr ""
3243
 
3244
+ #: languages/vue.php:1061
3245
  msgid "Feature"
3246
  msgstr ""
3247
 
3248
+ #: languages/vue.php:1064
3249
  msgid "Lite"
3250
  msgstr ""
3251
 
3252
+ #: languages/vue.php:1067
3253
  msgid "Pro"
3254
  msgstr ""
3255
 
3256
+ #: languages/vue.php:1070
3257
  msgid "Get ExactMetrics Pro Today and Unlock all the Powerful Features"
3258
  msgstr ""
3259
 
3260
+ #: languages/vue.php:1073
3261
  msgid "Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout."
3262
  msgstr ""
3263
 
3264
+ #: languages/vue.php:1076
3265
  msgid "Upgrade to Pro"
3266
  msgstr ""
3267
 
3268
+ #: languages/vue.php:1079
3269
  msgid "Universal Tracking"
3270
  msgstr ""
3271
 
3272
+ #: languages/vue.php:1082
3273
  msgid "Included"
3274
  msgstr ""
3275
 
3276
+ #: languages/vue.php:1085
3277
  msgid "Custom Google Analytics Link Tracking"
3278
  msgstr ""
3279
 
3280
+ #: languages/vue.php:1088
3281
  msgid "Standard Tracking"
3282
  msgstr ""
3283
 
3284
+ #: languages/vue.php:1091
3285
  msgid "Advanced Tracking"
3286
  msgstr ""
3287
 
3288
+ #: languages/vue.php:1094
3289
  msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
3290
  msgstr ""
3291
 
3292
+ #: languages/vue.php:1097
3293
  msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
3294
  msgstr ""
3295
 
3296
+ #: languages/vue.php:1100
3297
  msgid "No-Code-Needed Tracking Features"
3298
  msgstr ""
3299
 
3300
+ #: languages/vue.php:1103
3301
  msgid "Basic Tracking Options"
3302
  msgstr ""
3303
 
3304
+ #: languages/vue.php:1106
3305
  msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
3306
  msgstr ""
3307
 
3308
+ #: languages/vue.php:1109
3309
  msgid "Advanced Tracking Options"
3310
  msgstr ""
3311
 
3312
+ #: languages/vue.php:1112
3313
  msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
3314
  msgstr ""
3315
 
3316
+ #: languages/vue.php:1115
3317
+ msgid "Sessions"
 
 
 
 
 
3318
  msgstr ""
3319
 
3320
+ #. Translators: Line break.
3321
+ #: languages/vue.php:1119
3322
+ msgid "Unique %s Sessions"
3323
  msgstr ""
3324
 
3325
+ #: languages/vue.php:1122
3326
+ msgid "Pageviews"
3327
  msgstr ""
3328
 
3329
+ #. Translators: Line break.
3330
+ #: languages/vue.php:1126
3331
+ msgid "Unique %s Pageviews"
3332
  msgstr ""
3333
 
3334
+ #: languages/vue.php:1129
3335
+ msgid "A session is the browsing session of a single user to your site."
3336
  msgstr ""
3337
 
3338
+ #: languages/vue.php:1132
3339
+ 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."
3340
  msgstr ""
3341
 
3342
+ #: languages/vue.php:1135
3343
+ msgid "Total duration of all sessions (in seconds) / number of sessions."
3344
  msgstr ""
3345
 
3346
+ #: languages/vue.php:1138
3347
+ 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."
3348
  msgstr ""
3349
 
3350
+ #: languages/vue.php:1141
3351
+ msgid "Avg. Session Duration"
3352
  msgstr ""
3353
 
3354
+ #: languages/vue.php:1144
3355
+ msgid "Bounce Rate"
3356
  msgstr ""
3357
 
3358
+ #: languages/vue.php:1147
3359
+ msgid "ExactMetrics Recommends WPForms"
3360
  msgstr ""
3361
 
3362
+ #: languages/vue.php:1150
3363
+ msgid "Built by the folks behind ExactMetrics, WPForms is the most beginner friendly form plugin in the market."
3364
  msgstr ""
3365
 
3366
+ #: languages/vue.php:1153
3367
+ msgid "Used on over 3,000,000 websites!"
 
3368
  msgstr ""
3369
 
3370
+ #: languages/vue.php:1156
3371
+ 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!"
 
3372
  msgstr ""
3373
 
3374
+ #: languages/vue.php:1159
3375
+ msgid "Skip this Step"
3376
  msgstr ""
3377
 
3378
+ #: languages/vue.php:1162
3379
+ msgid "Continue & Install WPForms"
3380
  msgstr ""
3381
 
3382
+ #: languages/vue.php:1165
3383
+ msgid "Installing..."
 
3384
  msgstr ""
3385
 
3386
+ #: languages/vue.php:1168
3387
+ msgid "Hello and Welcome to ExactMetrics, the Best Google Analytics Plugin for WordPress."
 
3388
  msgstr ""
3389
 
3390
+ #: languages/vue.php:1171
3391
+ 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."
 
3392
  msgstr ""
3393
 
3394
+ #: languages/vue.php:1174
3395
+ msgid "The ExactMetrics Team"
 
3396
  msgstr ""
3397
 
3398
+ #: languages/vue.php:1177
3399
+ msgid "Welcome to ExactMetrics!"
 
3400
  msgstr ""
3401
 
3402
+ #: languages/vue.php:1180
3403
+ msgid "Let's get you set up."
 
3404
  msgstr ""
3405
 
 
3406
  #: languages/vue.php:1183
3407
+ msgid "Which category best describes your website?"
3408
  msgstr ""
3409
 
3410
+ #: languages/vue.php:1186
3411
+ msgid "We will recommend the optimal settings for ExactMetrics based on your choice."
 
3412
  msgstr ""
3413
 
3414
+ #: languages/vue.php:1189
3415
+ msgid "Business Website"
 
3416
  msgstr ""
3417
 
3418
+ #. Translators: Make text bold.
3419
+ #: languages/vue.php:1193
3420
+ msgid "Publisher %1$s(Blog)%2$s"
3421
+ msgstr ""
3422
+
3423
+ #. Translators: Placeholders make the text green.
3424
+ #: languages/vue.php:1197
3425
+ msgid "Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
3426
  msgstr ""
3427
 
3428
  #: languages/vue.php:1200
3429
+ msgid "How to Connect to Google Analytics"
3430
  msgstr ""
3431
 
3432
+ #: languages/vue.php:1203
3433
+ 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."
3434
  msgstr ""
3435
 
3436
+ #: languages/vue.php:1206
3437
+ msgid "Guide and Checklist for Advanced Insights"
3438
+ msgstr ""
3439
+
3440
+ #: languages/vue.php:1209
3441
+ 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."
3442
  msgstr ""
3443
 
3444
  #: languages/vue.php:1212
3445
+ msgid "GDPR Guide"
3446
  msgstr ""
3447
 
3448
+ #: languages/vue.php:1215
3449
+ 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. "
3450
  msgstr ""
3451
 
3452
+ #: languages/vue.php:1218
3453
+ msgid "How to Install and Activate ExactMetrics Addons"
3454
  msgstr ""
3455
 
3456
+ #: languages/vue.php:1221
3457
+ 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."
3458
+ msgstr ""
3459
+
3460
+ #: languages/vue.php:1224
3461
+ msgid "Enabling eCommerce Tracking and Reports"
3462
  msgstr ""
3463
 
3464
  #: languages/vue.php:1227
3465
+ 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."
3466
  msgstr ""
3467
 
3468
  #: languages/vue.php:1230
3469
+ msgid "Read Documentation"
3470
  msgstr ""
3471
 
3472
+ #. Translators: Makes the text bold.
3473
+ #: languages/vue.php:1234
3474
+ msgid "%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress."
3475
  msgstr ""
3476
 
3477
+ #. Translators: Makes the text bold.
3478
+ #: languages/vue.php:1238
3479
+ msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post type, users, and other events with 1-click."
3480
  msgstr ""
3481
 
3482
+ #: languages/vue.php:1241
3483
+ msgid "Loading settings"
3484
  msgstr ""
3485
 
3486
+ #: languages/vue.php:1244
3487
+ msgid "Forms Report"
3488
  msgstr ""
3489
 
3490
+ #: languages/vue.php:1247
3491
+ msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
3492
  msgstr ""
3493
 
3494
+ #: languages/vue.php:1250
3495
+ msgid "See Your Top Converting Forms and Optimize"
3496
  msgstr ""
3497
 
3498
+ #: languages/vue.php:1253
3499
+ msgid "See Your Forms Impressions Count to Find the Best Placement"
3500
  msgstr ""
3501
 
3502
+ #: languages/vue.php:1256
3503
+ msgid "Real-Time Report"
 
3504
  msgstr ""
3505
 
3506
+ #: languages/vue.php:1259
3507
+ 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."
3508
  msgstr ""
3509
 
3510
+ #: languages/vue.php:1262
3511
+ msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
3512
  msgstr ""
3513
 
3514
+ #: languages/vue.php:1265
3515
+ msgid "See Your Top Pages Immediately After Making Changes"
3516
  msgstr ""
3517
 
3518
+ #: languages/vue.php:1268
3519
+ msgid "See Your Top Referral Sources and Adapt Faster"
3520
  msgstr ""
3521
 
3522
+ #: languages/vue.php:1271
3523
+ msgid "See Your Traffic Demographics"
3524
  msgstr ""
3525
 
3526
+ #: languages/vue.php:1274
3527
+ msgid "Get Fresh Reports Data Every 60 Seconds"
3528
  msgstr ""
3529
 
3530
+ #: languages/vue.php:1277
3531
+ msgid "See Where Your Visitors are Connecting From (country & city)"
3532
  msgstr ""
3533
 
3534
+ #: languages/vue.php:1280
3535
+ msgid "Custom Dimensions Report"
3536
+ msgstr ""
3537
+
3538
+ #: languages/vue.php:1283
3539
+ msgid "Unlock the Dimensions Report and decide what data is important using your own custom tracking parameters"
3540
  msgstr ""
3541
 
 
3542
  #: languages/vue.php:1286
3543
+ msgid "The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
3544
  msgstr ""
3545
 
3546
  #: languages/vue.php:1289
3547
+ msgid "Author tracking to see which author’s posts generate the most traffic"
3548
  msgstr ""
3549
 
3550
  #: languages/vue.php:1292
3551
+ msgid "Post Type tracking to see which WordPress post types perform better"
3552
  msgstr ""
3553
 
3554
  #: languages/vue.php:1295
3555
+ msgid "Category tracking to see which sections of your sites are the most popular"
3556
  msgstr ""
3557
 
3558
  #: languages/vue.php:1298
3559
+ msgid "SEO score tracking to see which blog SEO scores are the most popular"
3560
  msgstr ""
3561
 
3562
  #: languages/vue.php:1301
3563
+ msgid "Focus Keyword tracking to see which of your content is doing well in search engines."
3564
  msgstr ""
3565
 
3566
+ #: languages/vue.php:1304
3567
+ msgid "Tag tracking to determine which topics are the most engaging to for your website visitors."
 
3568
  msgstr ""
3569
 
3570
+ #: languages/vue.php:1307
3571
+ msgid "Search Console Report"
3572
  msgstr ""
3573
 
3574
+ #: languages/vue.php:1310
3575
+ msgid "See exactly how people find tour website, which keywords they searched for, how many times the results were viewed, and more."
3576
  msgstr ""
3577
 
3578
+ #: languages/vue.php:1313
3579
+ msgid "See Your Top Google Search Terms and Optimize Content"
3580
  msgstr ""
3581
 
3582
+ #: languages/vue.php:1316
3583
+ msgid "See The Number of Clicks and Track Interests"
3584
  msgstr ""
3585
 
3586
+ #: languages/vue.php:1319
3587
+ msgid "See The Click-Through-Ratio and Improve SEO"
3588
  msgstr ""
3589
 
3590
+ #: languages/vue.php:1322
3591
+ msgid "See The Average Results Position and Focus on what works."
3592
  msgstr ""
3593
 
3594
+ #: languages/vue.php:1325
3595
+ msgid "Ecommerce Report"
3596
  msgstr ""
3597
 
3598
+ #: languages/vue.php:1328
3599
+ 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."
3600
+ msgstr ""
3601
+
3602
+ #: languages/vue.php:1331
3603
+ msgid "See Your Top Conversion Sources and Focus on what's Working"
3604
  msgstr ""
3605
 
 
3606
  #: languages/vue.php:1334
3607
+ msgid "File imported"
3608
  msgstr ""
3609
 
3610
  #: languages/vue.php:1337
3611
+ msgid "Settings successfully updated!"
3612
  msgstr ""
3613
 
3614
  #: languages/vue.php:1340
3615
+ msgid "Error importing settings"
3616
  msgstr ""
3617
 
3618
  #: languages/vue.php:1343
3619
+ msgid "Please choose a .json file generated by a ExactMetrics settings export."
3620
  msgstr ""
3621
 
3622
  #: languages/vue.php:1346
3623
+ msgid "Import/Export"
3624
  msgstr ""
3625
 
3626
  #: languages/vue.php:1349
3627
+ msgid "Import"
3628
  msgstr ""
3629
 
3630
+ #: languages/vue.php:1352
3631
+ msgid "Import settings from another ExactMetrics website."
 
3632
  msgstr ""
3633
 
3634
+ #: languages/vue.php:1355
3635
+ msgid "Export"
3636
  msgstr ""
3637
 
3638
+ #: languages/vue.php:1358
3639
+ msgid "Export settings to import into another ExactMetrics install."
3640
  msgstr ""
3641
 
3642
+ #: languages/vue.php:1361
3643
+ msgid "Import Settings"
3644
  msgstr ""
3645
 
3646
+ #: languages/vue.php:1364
3647
+ msgid "Export Settings"
3648
  msgstr ""
3649
 
3650
+ #: languages/vue.php:1367
3651
+ msgid "Please choose a file to import"
3652
  msgstr ""
3653
 
3654
+ #: languages/vue.php:1370
3655
+ msgid "Use the filepicker below to select the settings export file from another site."
3656
  msgstr ""
3657
 
3658
+ #: languages/vue.php:1373
3659
+ msgid "Use the button below to export a file with your ExactMetrics settings."
3660
  msgstr ""
3661
 
3662
+ #: languages/vue.php:1376
3663
+ msgid "Choose file"
3664
  msgstr ""
3665
 
3666
+ #: languages/vue.php:1379
3667
+ msgid "No file chosen"
3668
  msgstr ""
3669
 
3670
+ #: languages/vue.php:1382
3671
+ msgid "Uploading file..."
3672
  msgstr ""
3673
 
3674
+ #: languages/vue.php:1385
3675
+ msgid "Custom Campaign Parameters"
3676
  msgstr ""
3677
 
3678
+ #: languages/vue.php:1388
3679
+ msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
3680
  msgstr ""
3681
 
3682
+ #: languages/vue.php:1391
3683
+ 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."
3684
  msgstr ""
3685
 
3686
+ #. Translators: Marks the field as required.
3687
  #: languages/vue.php:1395
3688
+ msgid "Website URL %s"
 
 
 
 
3689
  msgstr ""
3690
 
3691
+ #. Translators: Display the current website url in italic.
3692
+ #: languages/vue.php:1399
3693
+ msgid "The full website URL (e.g. %1$s %2$s%3$s)"
3694
  msgstr ""
3695
 
3696
+ #. Translators: Marks the field as required.
3697
+ #: languages/vue.php:1403
3698
+ msgid "Campaign Source %s"
3699
  msgstr ""
3700
 
3701
+ #. Translators: Make the text italic.
3702
  #: languages/vue.php:1407
3703
+ msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
 
 
 
 
3704
  msgstr ""
3705
 
3706
+ #. Translators: Make the text italic.
3707
+ #: languages/vue.php:1411
3708
+ msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
3709
  msgstr ""
3710
 
3711
+ #. Translators: Make the text italic.
3712
+ #: languages/vue.php:1415
3713
+ msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
3714
  msgstr ""
3715
 
3716
+ #: languages/vue.php:1418
3717
+ msgid "Enter the paid keyword"
3718
  msgstr ""
3719
 
3720
+ #: languages/vue.php:1421
3721
+ msgid "Enter something to differentiate ads"
3722
  msgstr ""
3723
 
3724
+ #: languages/vue.php:1424
3725
+ msgid "Use Fragment"
3726
  msgstr ""
3727
 
3728
+ #. Translators: Make the text bold.
3729
  #: languages/vue.php:1428
3730
+ msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
3731
  msgstr ""
3732
 
3733
  #: languages/vue.php:1431
3734
+ msgid "URL to use"
3735
  msgstr ""
3736
 
3737
  #: languages/vue.php:1434
3738
+ msgid "(Updates automatically)"
3739
  msgstr ""
3740
 
3741
  #: languages/vue.php:1437
3742
+ msgid "Copy to Clipboard"
3743
  msgstr ""
3744
 
3745
  #: languages/vue.php:1440
3746
+ msgid "More Information & Examples"
3747
  msgstr ""
3748
 
3749
  #: languages/vue.php:1443
3750
+ msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
3751
  msgstr ""
3752
 
3753
  #: languages/vue.php:1446
3754
+ msgid "Campaign Source"
3755
  msgstr ""
3756
 
3757
  #: languages/vue.php:1449
3758
+ msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
3759
  msgstr ""
3760
 
3761
  #: languages/vue.php:1452
3762
+ msgid "Campaign Medium"
3763
  msgstr ""
3764
 
3765
  #: languages/vue.php:1455
3766
+ msgid "Use utm_medium to identify a medium such as email or cost-per-click."
3767
  msgstr ""
3768
 
3769
  #: languages/vue.php:1458
3770
+ msgid "Campaign Name"
3771
  msgstr ""
3772
 
3773
  #: languages/vue.php:1461
3774
+ msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
3775
  msgstr ""
3776
 
3777
  #: languages/vue.php:1464
3778
+ msgid "Campaign Term"
3779
  msgstr ""
3780
 
3781
  #: languages/vue.php:1467
3782
+ msgid "Used for paid search. Use utm_term to note the keywords for this ad."
3783
  msgstr ""
3784
 
3785
+ #: languages/vue.php:1470
3786
+ msgid "Campaign Content"
 
3787
  msgstr ""
3788
 
3789
+ #: languages/vue.php:1473
3790
+ msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
 
3791
  msgstr ""
3792
 
3793
+ #. Translators: Example.
3794
+ #: languages/vue.php:1477
3795
+ msgid "Example: %s"
3796
  msgstr ""
3797
 
3798
+ #. Translators: Examples.
3799
+ #: languages/vue.php:1481
3800
+ msgid "Examples: %s"
3801
+ msgstr ""
3802
+
3803
+ #: languages/vue.php:1484
3804
+ msgid "About Campaigns"
3805
  msgstr ""
3806
 
 
3807
  #: languages/vue.php:1487
3808
+ msgid "About Custom Campaigns"
3809
  msgstr ""
3810
 
3811
+ #: languages/vue.php:1490
3812
+ msgid "Best Practices for Creating Custom Campaigns"
 
3813
  msgstr ""
3814
 
3815
+ #: languages/vue.php:1493
3816
+ msgid "About the Referral Traffic Report"
3817
  msgstr ""
3818
 
3819
+ #: languages/vue.php:1496
3820
+ msgid "About Traffic Source Dimensions"
3821
  msgstr ""
3822
 
3823
+ #: languages/vue.php:1499
3824
+ msgid "AdWords Auto-Tagging"
3825
  msgstr ""
3826
 
3827
+ #: languages/vue.php:1502
3828
+ msgid "Additional Information"
 
3829
  msgstr ""
3830
 
3831
+ #: languages/vue.php:1505
3832
+ msgid "Unlock the Publisher Report and Focus on the Content That Matters"
3833
  msgstr ""
3834
 
3835
+ #: languages/vue.php:1508
3836
+ msgid "See Your Top Landing Pages to Improve Engagement"
3837
  msgstr ""
3838
 
3839
+ #: languages/vue.php:1511
3840
+ msgid "See Your Top Exit Pages to Reduce Abandonment"
3841
  msgstr ""
3842
 
3843
+ #: languages/vue.php:1514
3844
+ msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
3845
  msgstr ""
3846
 
3847
+ #: languages/vue.php:1517
3848
+ msgid "See Your Top Affiliate Links and Focus on what’s working"
3849
  msgstr ""
3850
 
3851
+ #: languages/vue.php:1520
3852
+ msgid "See Your Top Downloads and Improve Conversions"
3853
  msgstr ""
3854
 
3855
+ #: languages/vue.php:1523
3856
+ msgid "See Audience Demographic Report (Age / Gender / Interests)"
3857
  msgstr ""
3858
 
3859
+ #. Translators: Placeholders are used for making text bold and adding a link.
3860
+ #: languages/vue.php:1527
3861
+ msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
3862
  msgstr ""
3863
 
3864
+ #: languages/vue.php:1530
3865
+ msgid "Recommended Addons"
3866
  msgstr ""
3867
 
3868
+ #. Translators: Add a link to upgrade and make the text green.
3869
  #: languages/vue.php:1534
3870
+ 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!"
3871
  msgstr ""
3872
 
3873
  #: languages/vue.php:1537
3874
+ msgid "Upgrade to PRO Now"
3875
  msgstr ""
3876
 
3877
  #: languages/vue.php:1540
3878
+ msgid "See who’s viewing and submitting your forms, so you can increase your converion rate. Lorem ipsum dolor sit amet, consectetur adipiscing elit."
3879
  msgstr ""
3880
 
3881
  #: languages/vue.php:1543
3882
+ msgid "See All Your Important Store Metrics in One Place. Lorem ipsum dolor sit amet, consectetur adipiscing elit."
3883
  msgstr ""
3884
 
3885
  #: languages/vue.php:1546
3886
+ msgid "... and more:"
3887
  msgstr ""
3888
 
3889
  #: languages/vue.php:1549
3890
+ msgid "Dimensions- Track authors, categories, trags, searches, users and more."
 
 
 
 
 
3891
  msgstr ""
3892
 
3893
+ #: languages/vue.php:1552
3894
+ msgid "EU Compliance- Improve compliance with GDPR and other privacy regulations."
 
3895
  msgstr ""
3896
 
3897
+ #: languages/vue.php:1555
3898
+ msgid "AMP- ExactMetrics Google AMP Addon enables accurate tracking of all mobile visitors to your AMP-enabled pages."
3899
  msgstr ""
3900
 
3901
+ #: languages/vue.php:1558
3902
+ msgid "Facebook Instant Articles- Integrate Google Analytics and Facebook Instant Articles with just one click."
3903
  msgstr ""
3904
 
3905
+ #: languages/vue.php:1561
3906
+ msgid "eCommerce- Sales tracking for your WooCommerce, Easy Digital Downloads, LifterLMS or MemberPress stores."
3907
  msgstr ""
3908
 
3909
+ #: languages/vue.php:1564
3910
+ msgid "Google Optimize- Easily enable Google Optimize on your WordPress site."
3911
  msgstr ""
3912
 
3913
+ #: languages/vue.php:1567
3914
+ msgid "Forms- Enable tracking of your form views, submissions and conversion rates."
3915
  msgstr ""
3916
 
3917
+ #: languages/vue.php:1570
3918
+ msgid "Ads- See who’s clicking on your Google Adsense banner ads."
3919
  msgstr ""
3920
 
3921
+ #: languages/vue.php:1576
3922
+ msgid "Search Addons"
3923
  msgstr ""
3924
 
3925
+ #. Translators: Error status and error text.
3926
+ #: languages/vue.php:1580
3927
+ msgid "Can't deactivate the license. Error: %1$s, %2$s"
3928
  msgstr ""
3929
 
3930
  #. Translators: Error status and error text.
3931
+ #: languages/vue.php:1584
3932
+ msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
3933
  msgstr ""
3934
 
3935
+ #: languages/vue.php:1587
3936
+ msgid "You appear to be offline."
3937
  msgstr ""
3938
 
3939
  #. Translators: Error status and error text.
3940
+ #: languages/vue.php:1591
3941
+ msgid "Can't load license details. Error: %1$s, %2$s"
3942
  msgstr ""
3943
 
3944
+ #: languages/vue.php:1594
3945
+ msgid "Error loading license details"
3946
  msgstr ""
3947
 
3948
  #. Translators: Error status and error text.
3949
+ #: languages/vue.php:1598
3950
+ msgid "Can't verify the license. Error: %1$s, %2$s"
3951
  msgstr ""
3952
 
3953
+ #. Translators: Error status and error text.
3954
  #: languages/vue.php:1602
3955
+ msgid "Can't validate the license. Error: %1$s, %2$s"
3956
  msgstr ""
3957
 
3958
+ #: languages/vue.php:1605
3959
+ msgid "Last 30 Days Analytics for "
 
3960
  msgstr ""
3961
 
3962
+ #: languages/vue.php:1608
3963
+ msgid "Your Website"
3964
  msgstr ""
3965
 
3966
+ #: languages/vue.php:1611
3967
+ msgid "Avg. Duration"
 
3968
  msgstr ""
3969
 
3970
+ #: languages/vue.php:1614
3971
+ msgid "More data is available"
3972
  msgstr ""
3973
 
3974
+ #: languages/vue.php:1617
3975
+ msgid "Want to see page-specific stats?"
3976
  msgstr ""
3977
 
3978
+ #: languages/vue.php:1620
3979
+ msgid "You appear to be offline. WPForms not installed."
 
3980
  msgstr ""
3981
 
3982
+ #. Translators: Error status and error text.
3983
+ #: languages/vue.php:1624
3984
+ msgid "Can't activate addon. Error: %1$s, %2$s"
3985
  msgstr ""
3986
 
3987
+ #: languages/vue.php:1627
3988
+ msgid "You appear to be offline. Addon not activated."
3989
  msgstr ""
3990
 
3991
+ #. Translators: Error status and error text.
3992
+ #: languages/vue.php:1631
3993
+ msgid "Can't deactivate addon. Error: %1$s, %2$s"
3994
  msgstr ""
3995
 
3996
+ #: languages/vue.php:1634
3997
+ msgid "You appear to be offline. Addon not deactivated."
3998
  msgstr ""
3999
 
4000
+ #. Translators: Error status and error text.
4001
  #: languages/vue.php:1638
4002
+ msgid "Can't install plugin. Error: %1$s, %2$s"
4003
  msgstr ""
4004
 
4005
  #: languages/vue.php:1641
4006
+ msgid "You appear to be offline. Plugin not installed."
4007
  msgstr ""
4008
 
4009
+ #. Translators: Error status and error text.
4010
+ #: languages/vue.php:1645
4011
+ msgid "Can't install addon. Error: %1$s, %2$s"
4012
  msgstr ""
4013
 
 
4014
  #: languages/vue.php:1648
4015
+ msgid "You appear to be offline. Addon not installed."
4016
  msgstr ""
4017
 
4018
+ #. Translators: Error status and error text.
4019
  #: languages/vue.php:1652
4020
+ msgid "Can't install WPForms. Error: %1$s, %2$s"
4021
  msgstr ""
4022
 
4023
  #: languages/vue.php:1655
4024
+ msgid "Installing Addon"
4025
  msgstr ""
4026
 
4027
  #: languages/vue.php:1658
4028
+ msgid "Activating Addon"
4029
  msgstr ""
4030
 
4031
  #: languages/vue.php:1661
4032
+ msgid "Addon Activated"
4033
  msgstr ""
4034
 
4035
  #: languages/vue.php:1664
4036
+ msgid "Loading report data"
4037
  msgstr ""
4038
 
4039
  #: languages/vue.php:1667
4040
+ msgid "Please activate manually"
4041
  msgstr ""
4042
 
4043
+ #. Translators: Adds the error status and status text.
4044
+ #: languages/vue.php:1671
4045
+ msgid "Error: %1$s, %2$s"
4046
  msgstr ""
4047
 
 
4048
  #: languages/vue.php:1674
4049
+ msgid "Error Activating Addon"
4050
  msgstr ""
4051
 
4052
+ #: languages/vue.php:1680
4053
+ msgid "Dismiss"
 
4054
  msgstr ""
4055
 
4056
+ #: languages/vue.php:1683
4057
+ msgid "Redirecting"
 
4058
  msgstr ""
4059
 
 
4060
  #: languages/vue.php:1686
4061
+ msgid "Please wait"
4062
  msgstr ""
4063
 
4064
+ #: languages/vue.php:1689
4065
+ msgid "activate"
 
4066
  msgstr ""
4067
 
4068
+ #: languages/vue.php:1692
4069
+ msgid "install"
 
4070
  msgstr ""
4071
 
4072
+ #: languages/vue.php:1695
4073
+ msgid "Visit addons page"
4074
  msgstr ""
4075
 
4076
+ #: languages/vue.php:1698
4077
+ msgid "Report Unavailable"
4078
  msgstr ""
4079
 
4080
+ #. Translators: Install/Activate the addon.
4081
+ #: languages/vue.php:1702
4082
+ msgid "%s Addon"
4083
  msgstr ""
4084
 
4085
+ #: languages/vue.php:1705
4086
+ msgid "Go Back To Reports"
4087
  msgstr ""
4088
 
4089
+ #: languages/vue.php:1708
4090
+ msgid "Enable Enhanced eCommerce"
4091
  msgstr ""
4092
 
4093
+ #: languages/vue.php:1711
4094
+ msgid "Help Us Improve"
4095
  msgstr ""
4096
 
4097
+ #: languages/vue.php:1714
4098
+ msgid "Help us better understand our users and their website needs."
4099
  msgstr ""
4100
 
4101
+ #. Translators: Adds a link to the documentation.
4102
  #: languages/vue.php:1718
4103
+ 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"
4104
  msgstr ""
4105
 
4106
  #: languages/vue.php:1721
4107
+ msgid "License Key"
4108
  msgstr ""
4109
 
4110
+ #. Translators: Makes text bold and adds smiley.
4111
  #: languages/vue.php:1725
4112
+ msgid "You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
4113
  msgstr ""
4114
 
4115
+ #. Translators: Makes text green.
4116
+ #: languages/vue.php:1729
4117
+ msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout."
4118
  msgstr ""
4119
 
4120
+ #: languages/vue.php:1732
4121
+ msgid "Unlock All Features and Upgrade to Pro"
4122
  msgstr ""
4123
 
4124
+ #: languages/vue.php:1735
4125
+ #: languages/vue.php:2127
4126
+ msgid "Connect ExactMetrics"
4127
+ msgstr ""
4128
+
4129
+ #: languages/vue.php:1738
4130
+ msgid "Website profile"
4131
  msgstr ""
4132
 
 
4133
  #: languages/vue.php:1741
4134
+ msgid "Active profile"
4135
  msgstr ""
4136
 
4137
  #: languages/vue.php:1744
4138
+ msgid "Your website profile has been set at the network level of your WordPress Multisite."
4139
  msgstr ""
4140
 
4141
  #: languages/vue.php:1747
4142
+ msgid "If you would like to use a different profile for this subsite, you can authenticate below."
4143
  msgstr ""
4144
 
4145
  #: languages/vue.php:1750
4146
+ msgid "Skip and Keep Connection"
4147
  msgstr ""
4148
 
4149
  #: languages/vue.php:1753
4150
+ msgid "Authenticating"
4151
  msgstr ""
4152
 
4153
  #: languages/vue.php:1756
4154
+ msgid "New"
4155
  msgstr ""
4156
 
4157
  #: languages/vue.php:1759
4158
+ msgid "Returning"
4159
  msgstr ""
4160
 
4161
  #: languages/vue.php:1762
4162
+ msgid "Desktop"
4163
  msgstr ""
4164
 
4165
  #: languages/vue.php:1765
4166
+ msgid "Tablet"
4167
  msgstr ""
4168
 
4169
  #: languages/vue.php:1768
4170
+ msgid "Mobile"
4171
  msgstr ""
4172
 
4173
+ #: languages/vue.php:1771
4174
+ msgid "Top 10 Countries"
 
4175
  msgstr ""
4176
 
4177
+ #: languages/vue.php:1774
4178
+ msgid "View Countries Report"
 
4179
  msgstr ""
4180
 
4181
+ #: languages/vue.php:1777
4182
+ msgid "Top 10 Referrals"
4183
+ msgstr ""
4184
+
4185
+ #: languages/vue.php:1780
4186
+ msgid "View All Referral Sources"
4187
  msgstr ""
4188
 
 
4189
  #: languages/vue.php:1783
4190
+ msgid "View Full Posts/Pages Report"
4191
  msgstr ""
4192
 
4193
  #: languages/vue.php:1786
4194
+ 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."
4195
  msgstr ""
4196
 
4197
+ #: languages/vue.php:1789
4198
+ msgid "This list shows the top countries your website visitors are from."
 
4199
  msgstr ""
4200
 
4201
+ #: languages/vue.php:1792
4202
+ msgid "This list shows the top websites that send your website traffic, known as referral traffic."
4203
+ msgstr ""
4204
+
4205
+ #: languages/vue.php:1795
4206
+ msgid "No options available"
4207
  msgstr ""
4208
 
 
4209
  #: languages/vue.php:1798
4210
+ msgid "Network Active"
4211
  msgstr ""
4212
 
4213
+ #: languages/vue.php:1801
4214
+ msgid "Active"
 
4215
  msgstr ""
4216
 
4217
+ #: languages/vue.php:1804
4218
+ msgid "Inactive"
 
4219
  msgstr ""
4220
 
4221
+ #. Translators: Placeholder for the addon status (installed, active, etc).
4222
+ #: languages/vue.php:1808
4223
+ msgid "Status: %s"
4224
  msgstr ""
4225
 
4226
+ #: languages/vue.php:1811
4227
+ msgid "Not Installed"
4228
  msgstr ""
4229
 
4230
+ #. Translators: The name of the field that is throwing a validation error.
4231
+ #: languages/vue.php:1815
4232
+ msgid "%s can't be empty."
4233
  msgstr ""
4234
 
4235
+ #: languages/vue.php:1818
4236
+ msgid "Duplicate values are not allowed."
4237
  msgstr ""
4238
 
4239
+ #: languages/vue.php:1821
4240
+ msgid "Add Another Link Path"
4241
  msgstr ""
4242
 
4243
+ #: languages/vue.php:1824
4244
+ msgid "Remove row"
4245
  msgstr ""
4246
 
4247
+ #: languages/vue.php:1827
4248
+ msgid "Proceed"
4249
  msgstr ""
4250
 
4251
+ #: languages/vue.php:1830
4252
+ msgid "Connection Information"
4253
  msgstr ""
4254
 
4255
+ #: languages/vue.php:1833
4256
+ 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."
4257
  msgstr ""
4258
 
4259
+ #: languages/vue.php:1836
4260
+ msgid "Hostname"
4261
  msgstr ""
4262
 
4263
+ #: languages/vue.php:1839
4264
+ msgid "FTP Username"
4265
+ msgstr ""
4266
+
4267
+ #: languages/vue.php:1842
4268
+ msgid "FTP Password"
4269
  msgstr ""
4270
 
 
4271
  #: languages/vue.php:1845
4272
+ msgid "This password will not be stored on the server."
4273
+ msgstr ""
4274
+
4275
+ #: languages/vue.php:1848
4276
+ msgid "Connection Type"
4277
  msgstr ""
4278
 
4279
+ #: languages/vue.php:1851
4280
+ msgid "Cancel"
 
4281
  msgstr ""
4282
 
4283
+ #: languages/vue.php:1854
4284
+ msgid "Reset to default"
 
4285
  msgstr ""
4286
 
 
4287
  #: languages/vue.php:1857
4288
+ msgid "The value entered does not match the required format"
4289
  msgstr ""
4290
 
4291
  #: languages/vue.php:1860
4292
+ msgid "Google AMP"
4293
  msgstr ""
4294
 
4295
+ #: languages/vue.php:1863
4296
+ msgid "Want to use track users visiting your AMP pages? By upgrading to ExactMetrics Pro, you can enable AMP page tracking."
 
4297
  msgstr ""
4298
 
4299
+ #: languages/vue.php:1866
4300
+ msgid "Facebook Instant Articles"
4301
+ msgstr ""
4302
+
4303
+ #: languages/vue.php:1869
4304
+ msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to ExactMetrics Pro."
4305
  msgstr ""
4306
 
 
4307
  #: languages/vue.php:1872
4308
+ msgid "Forms Tracking help you see who’s viewing your forms, so you can increase conversions."
4309
  msgstr ""
4310
 
4311
  #: languages/vue.php:1875
4312
+ msgid "Custom Dimensions show you popular categories, best time to publish, focus keywords, etc."
4313
  msgstr ""
4314
 
4315
  #: languages/vue.php:1878
4316
+ msgid "Make Google Analytics GDPR compliant with our EU Compliance addon."
4317
  msgstr ""
4318
 
4319
  #: languages/vue.php:1881
4320
+ msgid "Get real-time Google Analytics report right inside your WordPress dashboard."
4321
  msgstr ""
4322
 
4323
  #: languages/vue.php:1884
4324
+ msgid "Use Google Optimize to easily perform A/B split tests on your site."
4325
  msgstr ""
4326
 
4327
  #: languages/vue.php:1887
4328
+ msgid "See all your important store metrics in one place with Enhanced Ecommerce Tracking."
4329
  msgstr ""
4330
 
4331
+ #: languages/vue.php:1890
4332
+ msgid "Unlock search console report to see your top performing keywords in Google."
 
4333
  msgstr ""
4334
 
4335
+ #: languages/vue.php:1893
4336
+ msgid "Get Page Insights to see important metrics for individual posts / pages in WordPress."
 
4337
  msgstr ""
4338
 
4339
+ #: languages/vue.php:1896
4340
+ msgid "Publishers Report shows your top performing pages, audience demographics, and more."
4341
  msgstr ""
4342
 
4343
+ #: languages/vue.php:1899
4344
+ msgid "Get Scroll-Depth tracking to see how far users scroll on your pages before leaving."
 
4345
  msgstr ""
4346
 
4347
+ #: languages/vue.php:1902
4348
+ msgid "Upgrade to Pro »"
4349
  msgstr ""
4350
 
4351
+ #: languages/vue.php:1905
4352
+ msgid "Pro Tip:"
4353
  msgstr ""
4354
 
4355
+ #. Translators: Number of days.
4356
+ #: languages/vue.php:1910
4357
+ msgid "vs. Previous Day"
4358
  msgstr ""
4359
 
4360
+ #: languages/vue.php:1914
4361
+ msgid "No change"
4362
  msgstr ""
4363
 
4364
+ #: languages/vue.php:1917
4365
+ msgid "Ads Tracking"
4366
  msgstr ""
4367
 
4368
+ #: languages/vue.php:1920
4369
+ msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
4370
  msgstr ""
4371
 
4372
+ #: languages/vue.php:1923
4373
+ msgid ""
4374
+ "The EU Compliance addon allows you to improve compliance with GDPR\n"
4375
+ " and other privacy regulations."
4376
  msgstr ""
4377
 
4378
+ #: languages/vue.php:1927
4379
+ msgid "EU Compliance"
4380
  msgstr ""
4381
 
4382
+ #. Translators: Error status and error text.
4383
+ #: languages/vue.php:1931
4384
+ msgid "Can't load errors. Error: %1$s, %2$s"
4385
  msgstr ""
4386
 
4387
+ #. Translators: Error status and error text.
4388
  #: languages/vue.php:1935
4389
+ msgid "Can't load settings. Error: %1$s, %2$s"
4390
  msgstr ""
4391
 
4392
+ #. Translators: Error status and error text.
4393
  #: languages/vue.php:1939
4394
+ msgid "Can't save settings. Error: %1$s, %2$s"
4395
  msgstr ""
4396
 
4397
  #: languages/vue.php:1942
4398
+ msgid "Network error encountered. Settings not saved."
4399
  msgstr ""
4400
 
4401
  #: languages/vue.php:1945
4402
+ msgid "Scroll Tracking"
4403
  msgstr ""
4404
 
4405
  #: languages/vue.php:1948
4406
+ msgid "Scroll depth tracking in web analytics is one of those things you simply must do, especially if you have a content-heavy site."
4407
  msgstr ""
4408
 
4409
  #: languages/vue.php:1951
4410
+ msgid "Performance"
4411
  msgstr ""
4412
 
4413
  #: languages/vue.php:1954
4414
+ 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."
 
 
 
 
4415
  msgstr ""
4416
 
4417
+ #: languages/vue.php:1958
4418
+ msgid "Miscellaneous"
4419
  msgstr ""
4420
 
4421
+ #: languages/vue.php:1962
4422
+ msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
4423
  msgstr ""
4424
 
4425
  #: languages/vue.php:1966
4426
+ msgid "Hide Announcements"
4427
  msgstr ""
4428
 
4429
  #: languages/vue.php:1969
4430
+ msgid "Usage Tracking"
4431
  msgstr ""
4432
 
4433
+ #: languages/vue.php:1972
4434
+ 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."
 
4435
  msgstr ""
4436
 
4437
+ #: languages/vue.php:1975
4438
+ msgid "Allow usage tracking"
4439
  msgstr ""
4440
 
4441
+ #. Translators: Adds a link to the documentation.
4442
  #: languages/vue.php:1979
4443
+ msgid "Complete documentation on usage tracking is available %1$shere%2$s."
4444
  msgstr ""
4445
 
4446
  #: languages/vue.php:1982
4447
+ msgid "Hide dashboard widget"
4448
  msgstr ""
4449
 
4450
  #: languages/vue.php:1985
4451
+ msgid "Are you sure you want to hide the ExactMetrics Dashboard Widget? "
4452
  msgstr ""
4453
 
4454
  #: languages/vue.php:1988
4455
+ msgid "Yes, hide it!"
4456
  msgstr ""
4457
 
4458
+ #: languages/vue.php:1991
4459
+ msgid "No, cancel!"
 
4460
  msgstr ""
4461
 
4462
+ #: languages/vue.php:1994
4463
+ msgid "ExactMetrics Widget Hidden"
4464
  msgstr ""
4465
 
4466
+ #: languages/vue.php:1997
4467
+ msgid "You can re-enable the ExactMetrics widget at any time using the \"Screen Options\" menu on the top right of this page"
4468
  msgstr ""
4469
 
4470
+ #. Translators: Adds link to the account area to retreive license key.
4471
  #: languages/vue.php:2001
4472
+ msgid "Already have a license key? Add it below to unlock ExactMetrics PRO. %1$sRetrieve your license key%2$s."
4473
  msgstr ""
4474
 
4475
  #: languages/vue.php:2004
4476
+ msgid "Paste your license key here"
4477
  msgstr ""
4478
 
4479
  #: languages/vue.php:2007
4480
+ msgid "Google Authentication"
4481
  msgstr ""
4482
 
4483
  #: languages/vue.php:2010
4484
+ msgid "Verify"
 
 
 
 
 
 
4485
  msgstr ""
4486
 
4487
+ #: languages/vue.php:2013
4488
+ msgid "Setup Wizard"
4489
  msgstr ""
4490
 
4491
+ #: languages/vue.php:2016
4492
+ msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
4493
  msgstr ""
4494
 
4495
+ #: languages/vue.php:2019
4496
+ msgid "Relaunch Setup Wizard"
4497
  msgstr ""
4498
 
4499
+ #: languages/vue.php:2022
4500
+ msgid "Connect ExactMetrics to Start Tracking Your Data"
4501
  msgstr ""
4502
 
4503
+ #: languages/vue.php:2025
4504
+ msgid "You're using ExactMetrics Lite – no license needed. Enjoy!"
4505
  msgstr ""
4506
 
4507
+ #. Translators: Adds link to upgrade.
4508
+ #: languages/vue.php:2030
4509
+ msgid "To unlock more features consider %1$supgrading to PRO%2$s."
4510
  msgstr ""
4511
 
4512
+ #: languages/vue.php:2034
4513
+ msgid "Receive 50% off automatically applied at the checkout!"
4514
  msgstr ""
4515
 
4516
+ #: languages/vue.php:2037
4517
+ msgid "See all features"
4518
  msgstr ""
4519
 
4520
+ #: languages/vue.php:2040
4521
+ msgid "Complete Upgrade"
4522
  msgstr ""
4523
 
4524
+ #: languages/vue.php:2043
4525
+ msgid "Upgrade to Pro Version!"
4526
  msgstr ""
4527
 
4528
+ #. Translators: Make text bold.
4529
  #: languages/vue.php:2047
4530
+ msgid "%1$sExactMetrics%2$s can automatically upgrade the installed version to the Pro and walk you through the process."
4531
  msgstr ""
4532
 
4533
  #: languages/vue.php:2050
4534
+ msgid "There was an error unlocking ExactMetrics PRO please try again or install manually."
4535
  msgstr ""
4536
 
4537
  #: languages/vue.php:2053
4538
+ msgid "Activating..."
4539
  msgstr ""
4540
 
4541
  #: languages/vue.php:2056
4542
+ msgid "Deactivating..."
4543
  msgstr ""
4544
 
4545
  #: languages/vue.php:2059
4546
+ msgid "Deactivate"
4547
  msgstr ""
4548
 
4549
  #: languages/vue.php:2062
4550
+ msgid "Upgrade"
 
 
 
 
4551
  msgstr ""
4552
 
4553
+ #. Translators: Make text green.
4554
+ #: languages/vue.php:2066
4555
+ msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
4556
  msgstr ""
4557
 
4558
+ #: languages/vue.php:2069
4559
+ 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!"
4560
  msgstr ""
4561
 
4562
+ #: languages/vue.php:2072
4563
+ msgid "To unlock more features consider upgrading to PRO."
4564
  msgstr ""
4565
 
4566
+ #: languages/vue.php:2075
4567
+ msgid "Upgrade to"
4568
  msgstr ""
4569
 
4570
+ #: languages/vue.php:2078
4571
+ msgid "Last 30 days"
4572
  msgstr ""
4573
 
4574
+ #. Translators: Add link to retrieve license key from account.
4575
+ #: languages/vue.php:2082
4576
+ msgid "Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
4577
  msgstr ""
4578
 
4579
+ #. Translators: Error status and error text.
4580
  #: languages/vue.php:2086
4581
+ msgid "Can't deauthenticate. Error: %1$s, %2$s"
4582
  msgstr ""
4583
 
4584
+ #: languages/vue.php:2089
4585
+ msgid "You appear to be offline. Settings not saved."
 
4586
  msgstr ""
4587
 
4588
+ #. Translators: Error status and error text.
4589
  #: languages/vue.php:2093
4590
+ msgid "Can't load authentication details. Error: %1$s, %2$s"
 
 
 
 
 
 
 
 
4591
  msgstr ""
4592
 
4593
+ #. Translators: Error status and error text.
4594
+ #: languages/vue.php:2097
4595
+ msgid "Can't authenticate. Error: %1$s, %2$s"
4596
  msgstr ""
4597
 
4598
+ #. Translators: Error status and error text.
4599
+ #: languages/vue.php:2101
4600
+ msgid "Can't reauthenticate. Error: %1$s, %2$s"
4601
  msgstr ""
4602
 
4603
  #. Translators: Error status and error text.
4604
+ #: languages/vue.php:2105
4605
+ msgid "Can't verify credentials. Error: %1$s, %2$s"
4606
  msgstr ""
4607
 
4608
+ #: languages/vue.php:2108
4609
+ msgid "Show"
4610
  msgstr ""
4611
 
4612
+ #. Translators: The number of results.
4613
+ #: languages/vue.php:2112
4614
+ msgid "%s results"
4615
  msgstr ""
4616
 
4617
+ #: languages/vue.php:2115
4618
+ msgid "Verifying Credentials"
4619
  msgstr ""
4620
 
4621
+ #: languages/vue.php:2118
4622
+ msgid "Your site is connected to ExactMetrics!"
4623
  msgstr ""
4624
 
4625
+ #: languages/vue.php:2121
4626
+ msgid "Deauthenticating"
4627
  msgstr ""
4628
 
4629
+ #: languages/vue.php:2124
4630
+ 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."
4631
  msgstr ""
4632
 
4633
+ #: languages/vue.php:2130
4634
+ msgid "Verify Credentials"
4635
  msgstr ""
4636
 
4637
+ #: languages/vue.php:2136
4638
+ msgid "Website Profile"
4639
  msgstr ""
4640
 
4641
+ #: languages/vue.php:2139
4642
+ msgid "Active Profile"
4643
  msgstr ""
4644
 
 
4645
  #: languages/vue.php:2142
4646
+ msgid "Force Deauthenticate"
4647
  msgstr ""
4648
 
4649
  #: languages/vue.php:2145
4650
+ msgid "Disconnect ExactMetrics"
4651
  msgstr ""
4652
 
4653
+ #. Translators: Make text bold.
4654
+ #: languages/vue.php:2149
4655
+ msgid "You're using %1$sExactMetrics Lite%2$s - no license needed. Enjoy!"
4656
  msgstr ""
4657
 
 
4658
  #: languages/vue.php:2152
4659
+ msgid "On the next step you will need to re-authenticate with Google Analytics"
4660
  msgstr ""
4661
 
4662
  #: languages/vue.php:2155
4663
+ msgid "On the next step you will need to re-authenticate with Google Analytics, please see our post to learn why (don't worry"
4664
  msgstr ""
4665
 
4666
  #: languages/vue.php:2158
4667
+ msgid "On the next step you will need to re-authenticate with Google Analytics, please see our post to learn why (don't worry your site will continue tracking until you do this)."
4668
  msgstr ""
4669
 
4670
  #: languages/vue.php:2161
4671
+ msgid "On the next step you will need to re-authenticate with Google Analytics, please see %1$sour post%2$s to learn why (don't worry your site will continue tracking until you do this)."
4672
  msgstr ""
4673
 
4674
  #: languages/vue.php:2164
4675
+ msgid "See who’s viewing and submitting your forms, so you can increase your conversion rate."
4676
  msgstr ""
4677
 
4678
  #: languages/vue.php:2167
4679
+ msgid "See All Your Important Store Metrics in One Place."
 
 
 
 
 
 
 
 
 
 
 
 
4680
  msgstr ""
4681
 
4682
+ #: languages/vue.php:2170
4683
+ msgid "On the next step, you will be asked to re-authenticate with Google Analytics. Please see our detailed post to learn why we need your help %1$shere%2$s. 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."
 
 
 
 
4684
  msgstr ""
4685
 
4686
+ #: languages/vue.php:2173
4687
+ 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."
 
4688
  msgstr ""
4689
 
4690
  #: exactmetrics.php:228
languages/vue.php CHANGED
@@ -1,19 +1,17 @@
1
  <?php
2
  /* THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY. */
3
  $generated_i18n_strings = array(
 
4
  // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:14
5
  __( 'Error', 'google-analytics-dashboard-for-wp' ),
6
 
7
  // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:15
8
  __( 'Please try again.', 'google-analytics-dashboard-for-wp' ),
9
 
10
- // Reference: src/plugins/exactmetrics-wizard-helper-plugin.js:19
11
- __( 'Loading settings', 'google-analytics-dashboard-for-wp' ),
12
-
13
  // Reference: src/plugins/exactmetrics-settings-helper-plugin.js:112
14
  __( 'Loading Settings', 'google-analytics-dashboard-for-wp' ),
15
 
16
- // Reference: src/components/TheAppFTPForm.vue:110
17
  __( 'Please wait...', 'google-analytics-dashboard-for-wp' ),
18
 
19
  // Reference: src/plugins/exactmetrics-settings-helper-plugin.js:20
@@ -33,7 +31,8 @@ $generated_i18n_strings = array(
33
  __( 'Loading new report data', 'google-analytics-dashboard-for-wp' ),
34
 
35
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:228
36
- /* Translators: Placeholder gets replaced with an arrow icon. */
 
37
  __( 'Continue %s', 'google-analytics-dashboard-for-wp' ),
38
 
39
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:180
@@ -48,7 +47,7 @@ $generated_i18n_strings = array(
48
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:32
49
  __( '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' ),
50
 
51
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:188
52
  __( 'Unlock the eCommerce Report and See Your Important Store Metrics', 'google-analytics-dashboard-for-wp' ),
53
 
54
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:189
@@ -60,13 +59,13 @@ $generated_i18n_strings = array(
60
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:193
61
  __( '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' ),
62
 
63
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:31
64
  __( 'Unlock the Forms Report and Improve Conversions', 'google-analytics-dashboard-for-wp' ),
65
 
66
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:32
67
  __( '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' ),
68
 
69
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:200
70
  __( 'Unlock the Search Console Report and See How People Find Your Website', 'google-analytics-dashboard-for-wp' ),
71
 
72
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:201
@@ -78,22 +77,6 @@ $generated_i18n_strings = array(
78
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:205
79
  __( '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' ),
80
 
81
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:250
82
- // Reference: src/modules/widget/store/index.js:13
83
- // Reference: src/modules/widget/widget.vue:27
84
- __( 'Overview Report', 'google-analytics-dashboard-for-wp' ),
85
-
86
- // Reference: src/modules/widget/components/WidgetReminder.vue:33
87
- /* Translators: Number of visitors. */
88
- __( 'See how %s visitors found your site!', 'google-analytics-dashboard-for-wp' ),
89
-
90
- // Reference: src/modules/widget/components/WidgetReminder.vue:35
91
- /* Translators: Number of visitors. */
92
- __( 'Your website was visited by %s users in the last 30 days.', 'google-analytics-dashboard-for-wp' ),
93
-
94
- // Reference: src/modules/widget/components/WidgetReminder.vue:36
95
- __( 'See the full analytics report!', 'google-analytics-dashboard-for-wp' ),
96
-
97
  // Reference: src/modules/settings/exactmetrics-site.vue:77
98
  __( 'Success! ', 'google-analytics-dashboard-for-wp' ),
99
 
@@ -104,6 +87,9 @@ $generated_i18n_strings = array(
104
  /* Translators: Placeholder gets replaced with an arrow icon. */
105
  __( 'Get Started %s', 'google-analytics-dashboard-for-wp' ),
106
 
 
 
 
107
  // Reference: src/plugins/exactmetrics-compatibility-plugin.js:27
108
  /* Translators: Current WordPress version. */
109
  __( 'ExactMetrics has detected that your site is running an outdated version of WordPress (%s). ExactMetrics will stop supporting WordPress versions lower than 4.6 in April, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install.', 'google-analytics-dashboard-for-wp' ),
@@ -128,486 +114,292 @@ $generated_i18n_strings = array(
128
  // Reference: src/plugins/exactmetrics-compatibility-plugin.js:59
129
  __( 'Learn more about updating WordPress', 'google-analytics-dashboard-for-wp' ),
130
 
131
- // Reference: src/modules/reports/routes/exactmetrics-routes.js:22
132
- // Reference: src/modules/widget/store/index.js:75
133
- __( 'Overview', 'google-analytics-dashboard-for-wp' ),
134
 
135
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:30
136
- // Reference: src/modules/reports/routes/exactmetrics-routes.js:30
137
- __( 'Publishers', 'google-analytics-dashboard-for-wp' ),
138
 
139
- // Reference: src/modules/reports/routes/exactmetrics-routes.js:38
140
- // Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:57
141
- __( 'eCommerce', 'google-analytics-dashboard-for-wp' ),
142
 
143
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:102
144
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:180
145
- __( 'Search Console', 'google-analytics-dashboard-for-wp' ),
146
 
147
- // Reference: src/modules/reports/routes/exactmetrics-routes.js:54
148
- __( 'Dimensions Report', 'google-analytics-dashboard-for-wp' ),
 
149
 
150
- // Reference: src/modules/reports/routes/exactmetrics-routes.js:62
151
- __( 'Forms', 'google-analytics-dashboard-for-wp' ),
 
152
 
153
- // Reference: src/modules/reports/routes/exactmetrics-routes.js:70
154
- __( 'Real-Time', 'google-analytics-dashboard-for-wp' ),
 
155
 
156
- // Reference: src/modules/about/components/AboutNavigation-Lite.vue:15
157
- // Reference: src/modules/about/components/exactmetrics-AboutTabAboutUs.vue:34
158
- // Reference: src/modules/settings/routes/network.js:35
159
- __( 'About Us', 'google-analytics-dashboard-for-wp' ),
160
 
161
- // Reference: src/modules/about/components/AboutNavigation-Lite.vue:16
162
- // Reference: src/modules/settings/routes/network.js:43
163
- __( 'Getting Started', 'google-analytics-dashboard-for-wp' ),
164
 
165
- // Reference: src/modules/about/components/AboutNavigation-Lite.vue:17
166
- // Reference: src/modules/settings/routes/network.js:52
167
- __( 'Lite vs Pro', 'google-analytics-dashboard-for-wp' ),
168
 
169
- // Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:55
170
- __( 'General', 'google-analytics-dashboard-for-wp' ),
 
171
 
172
- // Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:56
173
- __( 'Engagement', 'google-analytics-dashboard-for-wp' ),
174
 
175
- // Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:58
176
- __( 'Publisher', 'google-analytics-dashboard-for-wp' ),
177
 
178
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:44
179
- __( 'Conversions', 'google-analytics-dashboard-for-wp' ),
 
180
 
181
- // Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:60
182
- __( 'Advanced', 'google-analytics-dashboard-for-wp' ),
 
183
 
184
- // Reference: src/modules/settings/routes/site.js:86
185
- __( 'URL Builder', 'google-analytics-dashboard-for-wp' ),
 
186
 
187
- // Reference: src/modules/settings/routes/site.js:94
188
- __( 'Import Export', 'google-analytics-dashboard-for-wp' ),
 
189
 
190
- // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBelowContent.vue:17
191
- __( 'Go back', 'google-analytics-dashboard-for-wp' ),
 
192
 
193
- // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingAboveContent.vue:15
194
- /* Translators: Placeholders are replaced with the current step number out of the total number of steps. */
195
- __( 'Step %1$s of %2$s', 'google-analytics-dashboard-for-wp' ),
196
 
197
- // Reference: src/modules/wizard-onboarding/components/TheWizardHeader.vue:24
198
- __( 'Exit Setup', 'google-analytics-dashboard-for-wp' ),
199
 
200
- // Reference: src/modules/reports/api/index.js:21
201
- /* Translators: Error status and error text. */
202
- __( 'Can\'t load report data. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
 
 
203
 
204
- // Reference: src/modules/reports/api/index.js:28
205
- __( 'Error loading report data', 'google-analytics-dashboard-for-wp' ),
 
206
 
207
- // Reference: src/modules/reports/components/ReportReAuth.vue:19
208
- __( 'ExactMetrics encountered an error loading your report data', 'google-analytics-dashboard-for-wp' ),
 
209
 
210
- // Reference: src/modules/reports/components/ReportReAuth.vue:20
211
- __( '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' ),
212
 
213
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:47
214
- __( 'Reconnect ExactMetrics', 'google-analytics-dashboard-for-wp' ),
215
 
216
- // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:127
217
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:108
218
- __( 'Re-Authenticating', 'google-analytics-dashboard-for-wp' ),
219
 
220
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:126
221
- __( 'Ok', 'google-analytics-dashboard-for-wp' ),
222
 
223
- // Reference: src/modules/reports/components/ReportNoAuth.vue:25
224
- __( 'You must connect with ExactMetrics before you can view reports.', 'google-analytics-dashboard-for-wp' ),
225
 
226
- // Reference: src/modules/reports/components/ReportNoAuth.vue:26
227
- __( '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' ),
228
 
229
- // Reference: src/modules/reports/components/ReportNoAuth.vue:27
230
- __( 'Launch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
231
 
232
- // Reference: src/modules/reports/components/ReportNoAuth.vue:28
233
- __( 'Please ask your webmaster to connect ExactMetrics to Google Analytics.', 'google-analytics-dashboard-for-wp' ),
234
 
235
- // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:38
236
- __( 'Dimensions', 'google-analytics-dashboard-for-wp' ),
237
 
238
- // Reference: src/modules/settings/components/SettingsButtonSave.vue:46
239
- __( 'Save Changes', 'google-analytics-dashboard-for-wp' ),
240
 
241
- // Reference: src/modules/addons/store/actions.js:33
242
- /* Translators: Adds a link to documentation. */
243
- __( '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', 'google-analytics-dashboard-for-wp' ),
244
 
245
- // Reference: src/modules/addons/store/actions.js:36
246
- /* Translators: Adds link to activate/install plugin and documentation. */
247
- __( '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', 'google-analytics-dashboard-for-wp' ),
248
 
249
- // Reference: src/modules/addons/components/AddonButton.vue:43
250
- // Reference: src/modules/widget/components/WidgetFooter.vue:21
251
- __( 'Activate', 'google-analytics-dashboard-for-wp' ),
252
 
253
- // Reference: src/modules/addons/components/AddonButton.vue:47
254
- // Reference: src/modules/widget/components/WidgetFooter.vue:20
255
- __( 'Install', 'google-analytics-dashboard-for-wp' ),
256
 
257
- // Reference: src/modules/addons/store/actions.js:51
258
- /* Translators: Adds a link to documentation. */
259
- __( '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', 'google-analytics-dashboard-for-wp' ),
260
 
261
- // Reference: src/modules/addons/store/actions.js:54
262
- /* Translators: Adds link to activate/install plugin and documentation. */
263
- __( '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' ),
264
 
265
- // Reference: src/modules/addons/components/AddonsNavigation.vue:18
266
- __( 'ExactMetrics Addons', 'google-analytics-dashboard-for-wp' ),
267
 
268
- // Reference: src/modules/addons/components/AddonsNavigation.vue:19
269
- __( 'Search Addons', 'google-analytics-dashboard-for-wp' ),
270
 
271
- // Reference: src/modules/widget/components/WidgetSettings-Lite.vue:22
272
- /* Translators: Number of days. */
273
- __( 'Last %s days', 'google-analytics-dashboard-for-wp' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
274
 
275
  // Reference: src/modules/widget/components/WidgetFooter.vue:19
276
  /* Translators: Placeholder is replaced with WPForms. */
277
  __( 'Recommended Plugin: %s', 'google-analytics-dashboard-for-wp' ),
278
 
279
- // Reference: src/modules/frontend/components/FrontendNoAuth.vue:27
 
 
 
 
 
 
280
  __( 'Learn More', 'google-analytics-dashboard-for-wp' ),
281
 
282
- // Reference: src/components/TheQuickLinks.vue:31
283
- __( 'See Quick Links', 'google-analytics-dashboard-for-wp' ),
 
284
 
285
- // Reference: src/components/TheQuickLinks.vue:58
286
- __( 'Suggest a Feature', 'google-analytics-dashboard-for-wp' ),
287
 
288
- // Reference: src/components/TheQuickLinks.vue:64
289
- __( 'Join Our Community', 'google-analytics-dashboard-for-wp' ),
290
 
291
- // Reference: src/components/TheQuickLinks.vue:70
292
- __( 'Support & Docs', 'google-analytics-dashboard-for-wp' ),
293
 
294
- // Reference: src/components/TheQuickLinks.vue:78
295
- __( 'Upgrade to Pro &#187;', 'google-analytics-dashboard-for-wp' ),
 
 
 
296
 
297
  // Reference: src/modules/widget/components/exactmetrics-WidgetAccordion-Lite.vue:190
298
  __( 'Analytics', 'google-analytics-dashboard-for-wp' ),
299
 
300
- // Reference: src/modules/widget/components/settings/exactmetrics-WidgetFullReportButton.vue:16
301
  /* Translators: Adds an arrow icon. */
302
  __( 'View All Reports %s', 'google-analytics-dashboard-for-wp' ),
303
 
304
- // Reference: src/modules/license/store/actions.js:61
305
- /* Translators: Adds a link to the license renewal. */
306
- __( 'Your license key for ExactMetrics has expired. %1$sPlease click here to renew your license key.%2$s', 'google-analytics-dashboard-for-wp' ),
307
 
308
- // Reference: src/modules/license/store/actions.js:71
309
- __( 'Your license key for ExactMetrics has been disabled. Please use a different key.', 'google-analytics-dashboard-for-wp' ),
310
 
311
- // Reference: src/modules/license/store/actions.js:81
312
- __( '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' ),
 
313
 
314
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:197
315
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:145
316
- __( 'Pro Plan', 'google-analytics-dashboard-for-wp' ),
317
 
318
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:198
319
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:146
320
- __( 'per year', 'google-analytics-dashboard-for-wp' ),
321
 
322
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:199
323
- // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:46
324
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:147
325
- __( 'Upgrade Now', 'google-analytics-dashboard-for-wp' ),
326
 
327
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:90
328
- // Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewUpsell-Lite.vue:35
329
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:54
330
- // Reference: src/modules/widget/components/WidgetReportOverlay.vue:27
331
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:168
332
- __( 'Upgrade to PRO', 'google-analytics-dashboard-for-wp' ),
333
 
334
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:92
335
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:170
336
- __( 'eCommerce Tracking', 'google-analytics-dashboard-for-wp' ),
337
 
338
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:93
339
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:49
340
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:171
341
- __( 'Custom Dimensions', 'google-analytics-dashboard-for-wp' ),
342
-
343
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:94
344
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:172
345
- __( 'Form Tracking', 'google-analytics-dashboard-for-wp' ),
346
-
347
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:95
348
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:173
349
- __( 'AMP Support', 'google-analytics-dashboard-for-wp' ),
350
-
351
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:96
352
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:174
353
- __( 'Author Tracking', 'google-analytics-dashboard-for-wp' ),
354
-
355
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:99
356
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:177
357
- __( 'EU Compliance Addon', 'google-analytics-dashboard-for-wp' ),
358
-
359
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:100
360
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:178
361
- __( 'Real Time Report', 'google-analytics-dashboard-for-wp' ),
362
-
363
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:101
364
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:47
365
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:179
366
- __( 'Google Optimize', 'google-analytics-dashboard-for-wp' ),
367
-
368
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:103
369
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:181
370
- __( 'Custom Date Ranges', 'google-analytics-dashboard-for-wp' ),
371
-
372
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:204
373
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:153
374
- __( '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' ),
375
-
376
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:205
377
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:154
378
- __( 'Daniel Monaghan - Experienced', 'google-analytics-dashboard-for-wp' ),
379
-
380
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:209
381
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:158
382
- __( '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' ),
383
-
384
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:210
385
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:159
386
- __( 'Naomi Spirit - From This Day', 'google-analytics-dashboard-for-wp' ),
387
-
388
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:214
389
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:163
390
- __( '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' ),
391
-
392
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:215
393
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:164
394
- __( 'Julie Dupuis - Faraway Land Travel', 'google-analytics-dashboard-for-wp' ),
395
-
396
- // Reference: src/modules/frontend/components/FrontendNoAuth.vue:24
397
- __( 'Please Setup Website Analytics to See Audience Insights', 'google-analytics-dashboard-for-wp' ),
398
-
399
- // Reference: src/modules/frontend/components/FrontendNoAuth.vue:25
400
- __( 'ExactMetrics, WordPress analytics plugin, helps you connect your website with Google Analytics, so you can see how people find and use your website. Over 2 million website owners use ExactMetrics to see the stats that matter and grow their business.', 'google-analytics-dashboard-for-wp' ),
401
-
402
- // Reference: src/modules/frontend/components/FrontendNoAuth.vue:26
403
- __( 'Connect ExactMetrics and Setup Website Analytics', 'google-analytics-dashboard-for-wp' ),
404
-
405
- // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:37
406
- __( 'Welcome to the all-new ExactMetrics', 'google-analytics-dashboard-for-wp' ),
407
-
408
- // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:38
409
- __( 'Redesigned from the ground up, ExactMetrics is built to bring a world-class analytics and reporting experience to WordPress.', 'google-analytics-dashboard-for-wp' ),
410
-
411
- // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:39
412
- __( 'The New & Improved ExactMetrics includes:', 'google-analytics-dashboard-for-wp' ),
413
-
414
- // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:41
415
- __( 'All-New Design', 'google-analytics-dashboard-for-wp' ),
416
-
417
- // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:42
418
- __( 'Better Reporting', 'google-analytics-dashboard-for-wp' ),
419
-
420
- // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:43
421
- __( 'Better Tracking', 'google-analytics-dashboard-for-wp' ),
422
-
423
- // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:44
424
- __( 'Better Support', 'google-analytics-dashboard-for-wp' ),
425
-
426
- // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:46
427
- __( 'Continue', 'google-analytics-dashboard-for-wp' ),
428
-
429
- // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:47
430
- __( 'Your settings have been automatically transferred.', 'google-analytics-dashboard-for-wp' ),
431
-
432
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:28
433
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:62
434
- __( 'Ecommerce', 'google-analytics-dashboard-for-wp' ),
435
-
436
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:30
437
- /* Translators: Add line break. */
438
- __( 'See All Your Important Store%s Metrics in One Place', 'google-analytics-dashboard-for-wp' ),
439
-
440
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:31
441
- __( 'Get an Answer to All Your Top Ecommerce Questions From a Single Report', 'google-analytics-dashboard-for-wp' ),
442
-
443
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:35
444
- __( 'Here\'s what you get:', 'google-analytics-dashboard-for-wp' ),
445
-
446
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:38
447
- __( 'See Your Conversion Rate to Improve Funnel', 'google-analytics-dashboard-for-wp' ),
448
-
449
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:42
450
- __( 'See The Number of Transactions and Make Data-Driven Decisions', 'google-analytics-dashboard-for-wp' ),
451
-
452
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:46
453
- __( 'See The Total Revenue to Track Growth', 'google-analytics-dashboard-for-wp' ),
454
-
455
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:50
456
- __( 'See Average Order Value to Find Offer Opportunities', 'google-analytics-dashboard-for-wp' ),
457
-
458
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:54
459
- __( 'See Your Top Products to See Individual Performance', 'google-analytics-dashboard-for-wp' ),
460
-
461
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:58
462
- __( 'See your Top Conversion Sources and Focus on what\'s Working', 'google-analytics-dashboard-for-wp' ),
463
-
464
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:62
465
- __( 'See The Time it Takes for Customers to Purchase', 'google-analytics-dashboard-for-wp' ),
466
-
467
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:66
468
- __( 'See How Many Sessions are Needed for a Purchase', 'google-analytics-dashboard-for-wp' ),
469
-
470
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:44
471
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:71
472
- /* Translators: Example path (/go/). */
473
- __( 'Path (example: %s)', 'google-analytics-dashboard-for-wp' ),
474
-
475
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:46
476
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:73
477
- __( 'Path has to start with a / and have no spaces', 'google-analytics-dashboard-for-wp' ),
478
-
479
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:51
480
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:78
481
- /* Translators: Example label (aff). */
482
- __( 'Label (example: %s)', 'google-analytics-dashboard-for-wp' ),
483
-
484
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:53
485
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:80
486
- __( 'Label can\'t contain any spaces', 'google-analytics-dashboard-for-wp' ),
487
-
488
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:56
489
- __( 'Affiliate Links', 'google-analytics-dashboard-for-wp' ),
490
-
491
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:58
492
- /* Translators: Add links to documentation. */
493
- __( '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.', 'google-analytics-dashboard-for-wp' ),
494
-
495
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:59
496
- __( 'Our affiliate link tracking works by setting path for internal links to track as outbound links.', 'google-analytics-dashboard-for-wp' ),
497
-
498
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:48
499
- __( 'Connect ExactMetrics to Your Website', 'google-analytics-dashboard-for-wp' ),
500
-
501
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:49
502
- __( 'ExactMetrics connects Google Analytics to WordPress and shows you stats that matter.', 'google-analytics-dashboard-for-wp' ),
503
-
504
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:39
505
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:112
506
- __( 'Connect Google Analytics + WordPress', 'google-analytics-dashboard-for-wp' ),
507
-
508
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:40
509
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:113
510
- __( 'You will be taken to the ExactMetrics website where you\'ll need to connect your Analytics account.', 'google-analytics-dashboard-for-wp' ),
511
-
512
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:52
513
- __( 'Whoops, something went wrong and we weren\'t able to connect to ExactMetrics. Please enter your Google UA code manually.', 'google-analytics-dashboard-for-wp' ),
514
-
515
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:53
516
- __( 'Manually enter your UA code', 'google-analytics-dashboard-for-wp' ),
517
-
518
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:54
519
- __( 'Warning: If you use a manual UA code, you won\'t be able to use any of the reporting and some of the tracking features. Your UA code should look like UA-XXXXXX-XX where the X\'s are numbers.', 'google-analytics-dashboard-for-wp' ),
520
-
521
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:55
522
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:34
523
- __( 'Save and Continue', 'google-analytics-dashboard-for-wp' ),
524
-
525
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:81
526
- __( 'UA code can\'t be empty', 'google-analytics-dashboard-for-wp' ),
527
-
528
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:93
529
- __( 'Saving UA code...', 'google-analytics-dashboard-for-wp' ),
530
-
531
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:102
532
- __( 'Cross Domain Tracking', 'google-analytics-dashboard-for-wp' ),
533
-
534
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:104
535
- /* Translators: Add links to documentation. */
536
- __( '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.', 'google-analytics-dashboard-for-wp' ),
537
-
538
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:65
539
- __( 'Demographics', 'google-analytics-dashboard-for-wp' ),
540
-
541
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:66
542
- __( 'Enable Demographics and Interests Reports for Remarketing and Advertising', 'google-analytics-dashboard-for-wp' ),
543
-
544
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:67
545
- __( 'Anonymize IP Addresses', 'google-analytics-dashboard-for-wp' ),
546
-
547
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:68
548
- __( 'Link Attribution', 'google-analytics-dashboard-for-wp' ),
549
-
550
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:69
551
- __( 'Enable Enhanced Link Attribution', 'google-analytics-dashboard-for-wp' ),
552
-
553
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:70
554
- __( 'Enable Anchor Tracking', 'google-analytics-dashboard-for-wp' ),
555
-
556
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:71
557
- __( 'Enable allowAnchor', 'google-analytics-dashboard-for-wp' ),
558
 
559
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:72
560
- __( 'Enable allowLinker', 'google-analytics-dashboard-for-wp' ),
561
 
562
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:73
563
- __( 'Enable Tag Links in RSS', 'google-analytics-dashboard-for-wp' ),
564
 
565
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:74
566
- __( 'File Downloads', 'google-analytics-dashboard-for-wp' ),
567
 
568
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:75
569
- __( 'Extensions of Files to Track as Downloads', 'google-analytics-dashboard-for-wp' ),
 
570
 
571
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:76
572
- __( 'ExactMetrics will send an event to Google Analytics if a link to a file has one of the above extensions.', 'google-analytics-dashboard-for-wp' ),
573
 
574
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:78
575
- /* Translators: Add links to documentation. */
576
- __( '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.', 'google-analytics-dashboard-for-wp' ),
577
 
578
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:80
579
- /* Translators: Add links to documentation. */
580
- __( '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.', 'google-analytics-dashboard-for-wp' ),
581
 
582
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:82
583
- /* Translators: Add links to documentation. */
584
- __( 'Add %1$sEnhanced Link Attribution%2$s to your tracking code.', 'google-analytics-dashboard-for-wp' ),
585
 
586
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:83
587
- __( '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.', 'google-analytics-dashboard-for-wp' ),
588
 
589
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:85
590
- /* Translators: Add links to documentation. */
591
- __( '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.', 'google-analytics-dashboard-for-wp' ),
592
 
593
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:87
594
- /* Translators: Add links to documentation. */
595
- __( '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.', 'google-analytics-dashboard-for-wp' ),
596
 
597
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:89
598
- /* Translators: Add links to documentation. */
599
- __( '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.', 'google-analytics-dashboard-for-wp' ),
600
 
601
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:90
602
- __( 'Add domain', 'google-analytics-dashboard-for-wp' ),
603
 
604
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:95
605
- /* Translators: Domain name example. */
606
- __( 'Domain (example: %s)', 'google-analytics-dashboard-for-wp' ),
607
 
608
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:98
609
- /* Translators: Current domain name that should not be used. */
610
- __( 'Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s ).', 'google-analytics-dashboard-for-wp' ),
611
 
612
  // Reference: src/modules/widget/store/index.js:101
613
  __( 'Time to Purchase', 'google-analytics-dashboard-for-wp' ),
@@ -621,27 +413,21 @@ $generated_i18n_strings = array(
621
  // Reference: src/modules/widget/store/index.js:109
622
  __( 'This list shows the number of sessions it took users before they purchased a product from your website.', 'google-analytics-dashboard-for-wp' ),
623
 
624
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:261
625
  // Reference: src/modules/widget/store/index.js:19
626
  __( 'Top Posts/Pages', 'google-analytics-dashboard-for-wp' ),
627
 
628
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:272
629
  // Reference: src/modules/widget/store/index.js:20
630
  __( 'This list shows the most viewed posts and pages on your website.', 'google-analytics-dashboard-for-wp' ),
631
 
632
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:255
633
  // Reference: src/modules/widget/store/index.js:26
634
  __( 'New vs. Returning Visitors', 'google-analytics-dashboard-for-wp' ),
635
 
636
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:268
637
  // Reference: src/modules/widget/store/index.js:27
638
  __( 'This graph shows what percent of your user sessions come from new versus repeat visitors.', 'google-analytics-dashboard-for-wp' ),
639
 
640
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:256
641
  // Reference: src/modules/widget/store/index.js:33
642
  __( 'Device Breakdown', 'google-analytics-dashboard-for-wp' ),
643
 
644
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:269
645
  // Reference: src/modules/widget/store/index.js:34
646
  __( '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.', 'google-analytics-dashboard-for-wp' ),
647
 
@@ -690,59 +476,134 @@ $generated_i18n_strings = array(
690
  // Reference: src/modules/widget/store/index.js:95
691
  __( 'Total Add/Remove', 'google-analytics-dashboard-for-wp' ),
692
 
693
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:30
694
- __( 'Forms Report', 'google-analytics-dashboard-for-wp' ),
695
 
696
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:39
697
- __( 'See Reports for Any Contact Form Plugin or Sign-up Form', 'google-analytics-dashboard-for-wp' ),
 
698
 
699
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:43
700
- __( 'See Your Top Converting Forms and Optimize', 'google-analytics-dashboard-for-wp' ),
701
 
702
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:47
703
- __( 'See Your Forms Impressions Count to Find the Best Placement', 'google-analytics-dashboard-for-wp' ),
704
 
705
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:30
706
- __( 'Real-Time Report', 'google-analytics-dashboard-for-wp' ),
707
 
708
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:32
709
- __( '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.', 'google-analytics-dashboard-for-wp' ),
710
 
711
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:39
712
- __( 'See Your Active Visitors and Track Their Behaviour to Optimize', 'google-analytics-dashboard-for-wp' ),
713
 
714
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:43
715
- __( 'See Your Top Pages Immediately After Making Changes', 'google-analytics-dashboard-for-wp' ),
716
 
717
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:47
718
- __( 'See Your Top Referral Sources and Adapt Faster', 'google-analytics-dashboard-for-wp' ),
719
 
720
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:51
721
- __( 'See Your Traffic Demographics', 'google-analytics-dashboard-for-wp' ),
 
722
 
723
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:55
724
- __( 'Get Fresh Reports Data Every 60 Seconds', 'google-analytics-dashboard-for-wp' ),
 
725
 
726
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:59
727
- __( 'See Where Your Visitors are Connecting From (country & city)', 'google-analytics-dashboard-for-wp' ),
 
728
 
729
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:30
730
- __( 'Search Console Report', 'google-analytics-dashboard-for-wp' ),
 
731
 
732
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:32
733
- __( 'See exactly how people find tour website, which keywords they searched for, how many times the results were viewed, and more.', 'google-analytics-dashboard-for-wp' ),
734
 
735
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:39
736
- __( 'See Your Top Google Search Terms and Optimize Content', 'google-analytics-dashboard-for-wp' ),
737
 
738
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:43
739
- __( 'See The Number of Clicks and Track Interests', 'google-analytics-dashboard-for-wp' ),
740
 
741
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:47
742
- __( 'See The Click-Through-Ratio and Improve SEO', 'google-analytics-dashboard-for-wp' ),
 
743
 
744
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:51
745
- __( 'See The Average Results Position and Focus on what works.', 'google-analytics-dashboard-for-wp' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
746
 
747
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:53
748
  __( 'Recommended Settings', 'google-analytics-dashboard-for-wp' ),
@@ -786,6 +647,24 @@ $generated_i18n_strings = array(
786
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:66
787
  __( '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' ),
788
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
789
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:83
790
  __( 'Helps you increase affiliate revenue.', 'google-analytics-dashboard-for-wp' ),
791
 
@@ -801,7 +680,6 @@ $generated_i18n_strings = array(
801
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:87
802
  __( 'These user roles will be able to access ExactMetrics\'s reports in the WordPress admin area.', 'google-analytics-dashboard-for-wp' ),
803
 
804
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:78
805
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:88
806
  __( 'Users that have at least one of these roles will be able to view the reports, along with any user with the manage_options capability.', 'google-analytics-dashboard-for-wp' ),
807
 
@@ -814,129 +692,190 @@ $generated_i18n_strings = array(
814
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:92
815
  __( 'Enhanced Link Attribution is enabled the moment you set up ExactMetrics', 'google-analytics-dashboard-for-wp' ),
816
 
817
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:127
818
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:93
819
  __( '+ Add Role', 'google-analytics-dashboard-for-wp' ),
820
 
821
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:31
822
- __( 'Unlock the Publisher Report and Focus on the Content That Matters', 'google-analytics-dashboard-for-wp' ),
823
 
824
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:39
825
- __( 'See Your Top Landing Pages to Improve Engagement', 'google-analytics-dashboard-for-wp' ),
826
 
827
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:43
828
- __( 'See Your Top Exit Pages to Reduce Abandonment', 'google-analytics-dashboard-for-wp' ),
 
829
 
830
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:47
831
- __( 'See Your Top Outbound Links to Find New Revenue Opportunities', 'google-analytics-dashboard-for-wp' ),
 
832
 
833
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:51
834
- __( 'See Your Top Affiliate Links and Focus on what’s working', 'google-analytics-dashboard-for-wp' ),
835
 
836
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:55
837
- __( 'See Your Top Downloads and Improve Conversions', 'google-analytics-dashboard-for-wp' ),
838
 
839
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:59
840
- __( 'See Audience Demographic Report (Age / Gender / Interests)', 'google-analytics-dashboard-for-wp' ),
841
 
842
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:30
843
- __( 'Ecommerce Report', 'google-analytics-dashboard-for-wp' ),
844
 
845
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:32
846
- __( '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.', 'google-analytics-dashboard-for-wp' ),
847
 
848
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:59
849
- __( 'See Your Top Conversion Sources and Focus on what\'s Working', 'google-analytics-dashboard-for-wp' ),
850
 
851
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:157
852
- __( 'New', 'google-analytics-dashboard-for-wp' ),
853
 
854
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:158
855
- __( 'Returning', 'google-analytics-dashboard-for-wp' ),
856
 
857
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:191
858
- __( 'Desktop', 'google-analytics-dashboard-for-wp' ),
859
 
860
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:192
861
- __( 'Tablet', 'google-analytics-dashboard-for-wp' ),
862
 
863
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:193
864
- __( 'Mobile', 'google-analytics-dashboard-for-wp' ),
 
865
 
866
- // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:40
867
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:251
868
- __( 'Sessions', 'google-analytics-dashboard-for-wp' ),
869
 
870
- // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:41
871
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:252
872
- __( 'Pageviews', 'google-analytics-dashboard-for-wp' ),
873
 
874
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:253
875
- __( 'Avg. Session Duration', 'google-analytics-dashboard-for-wp' ),
876
 
877
- // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:43
878
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:254
879
- __( 'Bounce Rate', 'google-analytics-dashboard-for-wp' ),
880
 
881
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:257
882
- __( 'Top 10 Countries', 'google-analytics-dashboard-for-wp' ),
883
 
884
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:258
885
- __( 'View Countries Report', 'google-analytics-dashboard-for-wp' ),
886
 
887
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:259
888
- __( 'Top 10 Referrals', 'google-analytics-dashboard-for-wp' ),
889
 
890
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:260
891
- __( 'View All Referral Sources', 'google-analytics-dashboard-for-wp' ),
892
 
893
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:262
894
- __( 'View Full Posts/Pages Report', 'google-analytics-dashboard-for-wp' ),
895
 
896
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:264
897
- __( 'A session is the browsing session of a single user to your site.', 'google-analytics-dashboard-for-wp' ),
898
 
899
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:265
900
- __( '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' ),
901
 
902
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:266
903
- __( 'Total duration of all sessions (in seconds) / number of sessions.', 'google-analytics-dashboard-for-wp' ),
904
 
905
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:267
906
- __( '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' ),
907
 
908
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:270
909
- __( 'This list shows the top countries your website visitors are from.', 'google-analytics-dashboard-for-wp' ),
910
 
911
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:271
912
- __( 'This list shows the top websites that send your website traffic, known as referral traffic.', 'google-analytics-dashboard-for-wp' ),
913
 
914
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:30
915
- __( 'Custom Dimensions Report', 'google-analytics-dashboard-for-wp' ),
 
916
 
917
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:31
918
- __( 'Unlock the Dimensions Report and decide what data is important using your own custom tracking parameters', 'google-analytics-dashboard-for-wp' ),
919
 
920
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:32
921
- __( 'The Dimensions report allows you to easily see what\'s working right inside your WordPress dashboard.', 'google-analytics-dashboard-for-wp' ),
922
 
923
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:39
924
- __( 'Author tracking to see which author’s posts generate the most traffic', 'google-analytics-dashboard-for-wp' ),
 
925
 
926
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:43
927
- __( 'Post Type tracking to see which WordPress post types perform better', 'google-analytics-dashboard-for-wp' ),
928
 
929
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:47
930
- __( 'Category tracking to see which sections of your sites are the most popular', 'google-analytics-dashboard-for-wp' ),
931
 
932
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:51
933
- __( 'SEO score tracking to see which blog SEO scores are the most popular', 'google-analytics-dashboard-for-wp' ),
934
 
935
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:55
936
- __( 'Focus Keyword tracking to see which of your content is doing well in search engines.', 'google-analytics-dashboard-for-wp' ),
937
 
938
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:59
939
- __( 'Tag tracking to determine which topics are the most engaging to for your website visitors.', 'google-analytics-dashboard-for-wp' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
940
 
941
  // Reference: src/modules/addons/exactmetrics-addons-Lite.vue:54
942
  __( 'There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data.', 'google-analytics-dashboard-for-wp' ),
@@ -960,451 +899,436 @@ $generated_i18n_strings = array(
960
  // Reference: src/modules/addons/exactmetrics-addons-Lite.vue:85
961
  __( 'Refreshing Addons', 'google-analytics-dashboard-for-wp' ),
962
 
963
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
964
  __( 'One-click Complete eCommerce tracking', 'google-analytics-dashboard-for-wp' ),
965
 
966
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:101
967
  __( 'Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required', 'google-analytics-dashboard-for-wp' ),
968
 
969
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:105
970
  __( 'Forms Tracking', 'google-analytics-dashboard-for-wp' ),
971
 
972
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:109
973
  __( 'One-click Form Events Tracking', 'google-analytics-dashboard-for-wp' ),
974
 
975
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:110
976
  __( 'WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin', 'google-analytics-dashboard-for-wp' ),
977
 
978
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:114
979
  __( 'WordPress Admin Area Reports', 'google-analytics-dashboard-for-wp' ),
980
 
981
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:117
982
  __( 'Standard Reports', 'google-analytics-dashboard-for-wp' ),
983
 
984
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:118
985
  __( 'Overview Reports for the last 30 days.', 'google-analytics-dashboard-for-wp' ),
986
 
987
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:119
988
  __( 'Advanced Reports', 'google-analytics-dashboard-for-wp' ),
989
 
990
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:120
991
  __( 'Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection', 'google-analytics-dashboard-for-wp' ),
992
 
993
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:124
994
  __( 'Dashboard Widget', 'google-analytics-dashboard-for-wp' ),
995
 
996
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:127
997
  __( 'Basic Widget', 'google-analytics-dashboard-for-wp' ),
998
 
999
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:128
1000
  __( 'Overview Report Synopsis', 'google-analytics-dashboard-for-wp' ),
1001
 
1002
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:129
1003
  __( 'Advanced Dashboard Widget', 'google-analytics-dashboard-for-wp' ),
1004
 
1005
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:130
1006
  __( 'Includes the complete Overview report, Publisher reports and 6 different eCommerce reports', 'google-analytics-dashboard-for-wp' ),
1007
 
1008
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:134
1009
  __( 'Publisher Reports', 'google-analytics-dashboard-for-wp' ),
1010
 
1011
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:138
1012
  __( 'Advanced Publisher Reports & Tracking', 'google-analytics-dashboard-for-wp' ),
1013
 
1014
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:139
1015
  __( 'View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more', 'google-analytics-dashboard-for-wp' ),
1016
 
1017
- // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:102
1018
  __( 'Not Available', 'google-analytics-dashboard-for-wp' ),
1019
 
1020
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:147
1021
  __( 'Complete Custom Dimensions Tracking', 'google-analytics-dashboard-for-wp' ),
1022
 
1023
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:148
1024
  __( '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', 'google-analytics-dashboard-for-wp' ),
1025
 
1026
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:152
1027
  __( 'Support', 'google-analytics-dashboard-for-wp' ),
1028
 
1029
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:155
1030
  __( 'Limited Support', 'google-analytics-dashboard-for-wp' ),
1031
 
1032
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:156
1033
  __( 'Priority Support', 'google-analytics-dashboard-for-wp' ),
1034
 
1035
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:59
1036
  __( 'Get the most out of ExactMetrics by upgrading to Pro and unlocking all of the powerful features.', 'google-analytics-dashboard-for-wp' ),
1037
 
1038
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:60
1039
  __( 'Feature', 'google-analytics-dashboard-for-wp' ),
1040
 
1041
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:61
1042
  __( 'Lite', 'google-analytics-dashboard-for-wp' ),
1043
 
1044
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:62
1045
  __( 'Pro', 'google-analytics-dashboard-for-wp' ),
1046
 
1047
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:105
1048
  __( 'Get ExactMetrics Pro Today and Unlock all the Powerful Features', 'google-analytics-dashboard-for-wp' ),
1049
 
1050
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:64
1051
  __( 'Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout.', 'google-analytics-dashboard-for-wp' ),
1052
 
1053
- // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:60
1054
  __( 'Upgrade to Pro', 'google-analytics-dashboard-for-wp' ),
1055
 
1056
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:68
1057
  __( 'Universal Tracking', 'google-analytics-dashboard-for-wp' ),
1058
 
1059
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:71
1060
  __( 'Included', 'google-analytics-dashboard-for-wp' ),
1061
 
1062
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:76
1063
  __( 'Custom Google Analytics Link Tracking', 'google-analytics-dashboard-for-wp' ),
1064
 
1065
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:79
1066
  __( 'Standard Tracking', 'google-analytics-dashboard-for-wp' ),
1067
 
1068
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:80
1069
  __( 'Advanced Tracking', 'google-analytics-dashboard-for-wp' ),
1070
 
1071
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:81
1072
  __( 'Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking', 'google-analytics-dashboard-for-wp' ),
1073
 
1074
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:82
1075
  __( 'Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers', 'google-analytics-dashboard-for-wp' ),
1076
 
1077
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:86
1078
  __( 'No-Code-Needed Tracking Features', 'google-analytics-dashboard-for-wp' ),
1079
 
1080
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:89
1081
  __( 'Basic Tracking Options', 'google-analytics-dashboard-for-wp' ),
1082
 
1083
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:90
1084
  __( 'Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking', 'google-analytics-dashboard-for-wp' ),
1085
 
1086
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:91
1087
  __( 'Advanced Tracking Options', 'google-analytics-dashboard-for-wp' ),
1088
 
1089
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:92
1090
  __( 'Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors', 'google-analytics-dashboard-for-wp' ),
1091
 
1092
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:107
1093
- /* Translators: Placeholders make the text green. */
1094
- __( 'Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout.', 'google-analytics-dashboard-for-wp' ),
1095
-
1096
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:111
1097
- __( 'How to Connect to Google Analytics', 'google-analytics-dashboard-for-wp' ),
1098
 
1099
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:112
1100
- __( '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.', 'google-analytics-dashboard-for-wp' ),
 
1101
 
1102
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:117
1103
- __( 'Guide and Checklist for Advanced Insights', 'google-analytics-dashboard-for-wp' ),
1104
 
1105
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:118
1106
- __( '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.', 'google-analytics-dashboard-for-wp' ),
 
1107
 
1108
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:123
1109
- __( 'GDPR Guide', 'google-analytics-dashboard-for-wp' ),
1110
 
1111
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:124
1112
- __( '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. ', 'google-analytics-dashboard-for-wp' ),
1113
 
1114
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:129
1115
- __( 'How to Install and Activate ExactMetrics Addons', 'google-analytics-dashboard-for-wp' ),
1116
 
1117
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:130
1118
- __( '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.', 'google-analytics-dashboard-for-wp' ),
1119
 
1120
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:135
1121
- __( 'Enabling eCommerce Tracking and Reports', 'google-analytics-dashboard-for-wp' ),
1122
 
1123
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:136
1124
- __( '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.', 'google-analytics-dashboard-for-wp' ),
1125
 
1126
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:140
1127
- __( 'Read Documentation', 'google-analytics-dashboard-for-wp' ),
1128
 
1129
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:142
1130
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:90
1131
- __( 'Welcome to', 'google-analytics-dashboard-for-wp' ),
1132
 
1133
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:144
1134
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:92
1135
- /* Translators: Adds a line break. */
1136
- __( 'Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin', 'google-analytics-dashboard-for-wp' ),
1137
 
1138
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:146
1139
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:94
1140
- /* Translators: Makes text bold. */
1141
- __( '%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' ),
1142
-
1143
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:148
1144
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:96
1145
- __( 'ExactMetrics Features & Addons', 'google-analytics-dashboard-for-wp' ),
1146
-
1147
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:149
1148
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:97
1149
- __( 'Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market.', 'google-analytics-dashboard-for-wp' ),
1150
-
1151
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:154
1152
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:102
1153
- /* Translators: Makes text bold. */
1154
- __( '%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' ),
1155
-
1156
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:159
1157
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:107
1158
- /* Translators: Makes text bold. */
1159
- __( '%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights.', 'google-analytics-dashboard-for-wp' ),
1160
-
1161
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:164
1162
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:112
1163
- /* Translators: Makes text bold. */
1164
- __( '%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' ),
1165
-
1166
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:169
1167
- /* Translators: Makes the text bold. */
1168
- __( '%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress.', 'google-analytics-dashboard-for-wp' ),
1169
-
1170
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:174
1171
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:122
1172
- /* Translators: Makes text bold. */
1173
- __( '%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' ),
1174
-
1175
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:179
1176
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:127
1177
- /* Translators: Makes text bold. */
1178
- __( '%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' ),
1179
-
1180
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:184
1181
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:132
1182
- /* Translators: Makes text bold. */
1183
- __( '%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically.', 'google-analytics-dashboard-for-wp' ),
1184
-
1185
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:189
1186
- /* Translators: Makes the text bold. */
1187
- __( '%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post type, users, and other events with 1-click.', 'google-analytics-dashboard-for-wp' ),
1188
-
1189
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:194
1190
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:142
1191
- /* Translators: Adds link to the features page. */
1192
- __( '%1$sSee All Features%2$s', 'google-analytics-dashboard-for-wp' ),
1193
-
1194
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:218
1195
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:167
1196
- __( 'Guides and Documentation:', 'google-analytics-dashboard-for-wp' ),
1197
-
1198
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:85
1199
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:84
1200
- __( 'Getting Started with ExactMetrics', 'google-analytics-dashboard-for-wp' ),
1201
-
1202
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:86
1203
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:85
1204
- __( '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' ),
1205
-
1206
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:87
1207
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:86
1208
- __( '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' ),
1209
-
1210
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:88
1211
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:87
1212
- __( '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' ),
1213
-
1214
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:89
1215
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:88
1216
- __( 'Launch the wizard!', 'google-analytics-dashboard-for-wp' ),
1217
-
1218
- // Reference: src/modules/wizard-onboarding/components/inputs/exactmetrics-OnboardingLicense-Lite.vue:27
1219
- __( 'License Key', 'google-analytics-dashboard-for-wp' ),
1220
-
1221
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:37
1222
- /* Translators: Add link to retrieve license key from account. */
1223
- __( 'Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s.', 'google-analytics-dashboard-for-wp' ),
1224
-
1225
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:38
1226
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:108
1227
- __( 'Google Authentication', 'google-analytics-dashboard-for-wp' ),
1228
-
1229
- // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:32
1230
- __( 'Miscellaneous', 'google-analytics-dashboard-for-wp' ),
1231
 
1232
- // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:34
1233
- __( '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' ),
1234
 
1235
- // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:35
1236
- __( 'Hide Announcements', 'google-analytics-dashboard-for-wp' ),
1237
 
1238
- // Reference: src/modules/reports/store/actions.js:132
1239
- __( 'Installing Addon', 'google-analytics-dashboard-for-wp' ),
1240
 
1241
- // Reference: src/modules/reports/store/actions.js:155
1242
- __( 'Activating Addon', 'google-analytics-dashboard-for-wp' ),
1243
 
1244
- // Reference: src/modules/reports/store/actions.js:170
1245
- __( 'Addon Activated', 'google-analytics-dashboard-for-wp' ),
1246
 
1247
- // Reference: src/modules/reports/store/actions.js:171
1248
- __( 'Loading report data', 'google-analytics-dashboard-for-wp' ),
1249
 
1250
- // Reference: src/modules/reports/store/actions.js:188
1251
- __( 'Please activate manually', 'google-analytics-dashboard-for-wp' ),
1252
 
1253
- // Reference: src/modules/reports/store/actions.js:191
1254
- /* Translators: Adds the error status and status text. */
1255
- __( 'Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1256
 
1257
- // Reference: src/modules/reports/store/actions.js:197
1258
- __( 'Error Activating Addon', 'google-analytics-dashboard-for-wp' ),
1259
 
1260
- // Reference: src/modules/reports/store/actions.js:203
1261
- __( 'View Addons', 'google-analytics-dashboard-for-wp' ),
1262
 
1263
- // Reference: src/modules/reports/store/actions.js:204
1264
- __( 'Dismiss', 'google-analytics-dashboard-for-wp' ),
1265
 
1266
- // Reference: src/modules/reports/store/actions.js:211
1267
- __( 'Redirecting', 'google-analytics-dashboard-for-wp' ),
 
1268
 
1269
- // Reference: src/modules/reports/store/actions.js:212
1270
- __( 'Please wait', 'google-analytics-dashboard-for-wp' ),
 
1271
 
1272
- // Reference: src/modules/reports/store/actions.js:52
1273
- __( 'activate', 'google-analytics-dashboard-for-wp' ),
1274
 
1275
- // Reference: src/modules/reports/store/actions.js:52
1276
- __( 'install', 'google-analytics-dashboard-for-wp' ),
1277
 
1278
- // Reference: src/modules/reports/store/actions.js:56
1279
- __( 'Visit addons page', 'google-analytics-dashboard-for-wp' ),
1280
 
1281
- // Reference: src/modules/reports/store/actions.js:64
1282
- __( 'Report Unavailable', 'google-analytics-dashboard-for-wp' ),
1283
 
1284
- // Reference: src/modules/reports/store/actions.js:71
1285
- /* Translators: Install/Activate the addon. */
1286
- __( '%s Addon', 'google-analytics-dashboard-for-wp' ),
1287
 
1288
- // Reference: src/modules/reports/store/actions.js:90
1289
- __( 'Go Back To Reports', 'google-analytics-dashboard-for-wp' ),
1290
 
1291
- // Reference: src/modules/reports/store/actions.js:91
1292
- __( 'Enable Enhanced eCommerce', 'google-analytics-dashboard-for-wp' ),
1293
 
1294
- // Reference: src/modules/about/components/exactmetrics-AboutTabAboutUs.vue:31
1295
- __( 'Hello and Welcome to ExactMetrics, the Best Google Analytics Plugin for WordPress.', 'google-analytics-dashboard-for-wp' ),
1296
 
1297
- // Reference: src/modules/about/components/exactmetrics-AboutTabAboutUs.vue:32
1298
- __( '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.', 'google-analytics-dashboard-for-wp' ),
1299
 
1300
- // Reference: src/modules/about/components/exactmetrics-AboutTabAboutUs.vue:33
1301
- __( 'The ExactMetrics Team', 'google-analytics-dashboard-for-wp' ),
1302
 
1303
- // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:35
1304
- /* Translators: Placeholders make the text highlighted. */
1305
- __( '%1$sNeed%2$s to Grow FASTER??', 'google-analytics-dashboard-for-wp' ),
1306
 
1307
- // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:36
1308
- __( 'Get additional, actionable insights by going Pro.', 'google-analytics-dashboard-for-wp' ),
 
1309
 
1310
- // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:37
1311
- __( 'Skip', 'google-analytics-dashboard-for-wp' ),
 
1312
 
1313
- // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:38
1314
- __( 'See All Features', 'google-analytics-dashboard-for-wp' ),
1315
 
1316
- // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:39
1317
- __( '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.', 'google-analytics-dashboard-for-wp' ),
1318
 
1319
- // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:40
1320
- __( 'Our Pro plan includes:', 'google-analytics-dashboard-for-wp' ),
1321
 
1322
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:39
1323
- __( 'Awesome, You\'re All Set!', 'google-analytics-dashboard-for-wp' ),
1324
 
1325
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:40
1326
- __( 'ExactMetrics is all set up and ready to use. We\'ve verified that the tracking code is deployed properly and collecting data.', 'google-analytics-dashboard-for-wp' ),
1327
 
1328
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:42
1329
- /* Translators: Make the text bold. */
1330
- __( '%1$sPlease Note:%2$s While Google Analytics is properly setup and tracking everything, it does not send the data back to WordPress immediately. Depending on the size of your website, it can take between a few hours to 24 hours for reports to populate.', 'google-analytics-dashboard-for-wp' ),
1331
 
1332
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:44
1333
- /* Translators: Add link to blog. */
1334
- __( '%1$sSubscribe to the ExactMetrics blog%2$s for tips on how to get more traffic and grow your business.', 'google-analytics-dashboard-for-wp' ),
1335
 
1336
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:45
1337
- __( 'Finish Setup & Exit Wizard', 'google-analytics-dashboard-for-wp' ),
1338
 
1339
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:47
1340
- __( 'Google Analytics', 'google-analytics-dashboard-for-wp' ),
1341
 
1342
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:48
1343
- __( 'Subscribe', 'google-analytics-dashboard-for-wp' ),
1344
 
1345
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:61
1346
- __( 'Checking your website...', 'google-analytics-dashboard-for-wp' ),
1347
 
1348
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:53
1349
- __( 'Recommended Addons', 'google-analytics-dashboard-for-wp' ),
1350
 
1351
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:55
1352
- /* Translators: Add a link to upgrade and make the text green. */
1353
- __( '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!', 'google-analytics-dashboard-for-wp' ),
1354
 
1355
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:57
1356
- __( 'Upgrade to PRO Now', 'google-analytics-dashboard-for-wp' ),
1357
 
1358
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:61
1359
- __( 'See who’s viewing and submitting your forms, so you can increase your converion rate. Lorem ipsum dolor sit amet, consectetur adipiscing elit.', 'google-analytics-dashboard-for-wp' ),
1360
 
1361
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:63
1362
- __( 'See All Your Important Store Metrics in One Place. Lorem ipsum dolor sit amet, consectetur adipiscing elit.', 'google-analytics-dashboard-for-wp' ),
1363
 
1364
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:64
1365
- __( '... and more:', 'google-analytics-dashboard-for-wp' ),
1366
 
1367
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:68
1368
- __( 'Dimensions- Track authors, categories, trags, searches, users and more.', 'google-analytics-dashboard-for-wp' ),
1369
 
1370
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:72
1371
- __( 'EU Compliance- Improve compliance with GDPR and other privacy regulations.', 'google-analytics-dashboard-for-wp' ),
1372
 
1373
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:76
1374
- __( 'AMP- ExactMetrics Google AMP Addon enables accurate tracking of all mobile visitors to your AMP-enabled pages.', 'google-analytics-dashboard-for-wp' ),
1375
 
1376
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:80
1377
- __( 'Facebook Instant Articles- Integrate Google Analytics and Facebook Instant Articles with just one click.', 'google-analytics-dashboard-for-wp' ),
1378
 
1379
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:84
1380
- __( 'eCommerce- Sales tracking for your WooCommerce, Easy Digital Downloads, LifterLMS or MemberPress stores.', 'google-analytics-dashboard-for-wp' ),
1381
 
1382
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:88
1383
- __( 'Google Optimize- Easily enable Google Optimize on your WordPress site.', 'google-analytics-dashboard-for-wp' ),
1384
 
1385
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:92
1386
- __( 'Forms- Enable tracking of your form views, submissions and conversion rates.', 'google-analytics-dashboard-for-wp' ),
1387
 
1388
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:96
1389
- __( 'Ads- See who’s clicking on your Google Adsense banner ads.', 'google-analytics-dashboard-for-wp' ),
1390
 
1391
- // Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:66
1392
- __( 'Show Overview Reports', 'google-analytics-dashboard-for-wp' ),
1393
 
1394
- // Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:67
1395
- __( 'Show Publishers Reports', 'google-analytics-dashboard-for-wp' ),
1396
 
1397
- // Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:68
1398
- __( 'Show eCommerce Reports', 'google-analytics-dashboard-for-wp' ),
1399
 
1400
- // Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:70
1401
- __( 'Available in PRO version', 'google-analytics-dashboard-for-wp' ),
1402
 
1403
- // Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
1404
- __( 'Show in widget mode', 'google-analytics-dashboard-for-wp' ),
1405
 
1406
- // Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
1407
- __( 'Show in full-width mode', 'google-analytics-dashboard-for-wp' ),
1408
 
1409
  // Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:101
1410
  __( 'File imported', 'google-analytics-dashboard-for-wp' ),
@@ -1577,314 +1501,224 @@ $generated_i18n_strings = array(
1577
  // Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:229
1578
  __( 'Additional Information', 'google-analytics-dashboard-for-wp' ),
1579
 
1580
- // Reference: src/modules/addons/api/index.js:103
1581
- __( 'You appear to be offline. WPForms not installed.', 'google-analytics-dashboard-for-wp' ),
1582
-
1583
- // Reference: src/modules/addons/api/index.js:128
1584
- /* Translators: Error status and error text. */
1585
- __( 'Can\'t activate addon. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1586
-
1587
- // Reference: src/modules/addons/api/index.js:132
1588
- __( 'You appear to be offline. Addon not activated.', 'google-analytics-dashboard-for-wp' ),
1589
-
1590
- // Reference: src/modules/addons/api/index.js:157
1591
- /* Translators: Error status and error text. */
1592
- __( 'Can\'t deactivate addon. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1593
-
1594
- // Reference: src/modules/addons/api/index.js:161
1595
- __( 'You appear to be offline. Addon not deactivated.', 'google-analytics-dashboard-for-wp' ),
1596
-
1597
- // Reference: src/modules/addons/api/index.js:192
1598
- /* Translators: Error status and error text. */
1599
- __( 'Can\'t install plugin. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1600
-
1601
- // Reference: src/modules/addons/api/index.js:196
1602
- __( 'You appear to be offline. Plugin not installed.', 'google-analytics-dashboard-for-wp' ),
1603
-
1604
- // Reference: src/modules/addons/api/index.js:64
1605
- /* Translators: Error status and error text. */
1606
- __( 'Can\'t install addon. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1607
-
1608
- // Reference: src/modules/addons/api/index.js:68
1609
- __( 'You appear to be offline. Addon not installed.', 'google-analytics-dashboard-for-wp' ),
1610
-
1611
- // Reference: src/modules/addons/api/index.js:99
1612
- /* Translators: Error status and error text. */
1613
- __( 'Can\'t install WPForms. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1614
-
1615
- // Reference: src/modules/widget/components/WidgetReportsLink.vue:17
1616
- __( 'See All Reports', 'google-analytics-dashboard-for-wp' ),
1617
-
1618
- // Reference: src/modules/widget/components/WidgetReportsLink.vue:18
1619
- __( 'Go to the Analytics Dashboard', 'google-analytics-dashboard-for-wp' ),
1620
-
1621
- // Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewDatePicker-Lite.vue:50
1622
- /* Translators: Placeholder adds a line break. */
1623
- __( 'You can customize your %sdate range only in the PRO version.', 'google-analytics-dashboard-for-wp' ),
1624
-
1625
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:40
1626
- __( 'ExactMetrics Recommends WPForms', 'google-analytics-dashboard-for-wp' ),
1627
-
1628
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:41
1629
- __( 'Built by the folks behind ExactMetrics, WPForms is the most beginner friendly form plugin in the market.', 'google-analytics-dashboard-for-wp' ),
1630
-
1631
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:42
1632
- __( 'Used on over 3,000,000 websites!', 'google-analytics-dashboard-for-wp' ),
1633
-
1634
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:43
1635
- __( 'WPForms allow you to create beautiful contact forms, subscription forms, payment forms, and other types of forms for your site in minutes, not hours!', 'google-analytics-dashboard-for-wp' ),
1636
-
1637
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:44
1638
- __( 'Skip this Step', 'google-analytics-dashboard-for-wp' ),
1639
-
1640
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:45
1641
- __( 'Continue & Install WPForms', 'google-analytics-dashboard-for-wp' ),
1642
-
1643
- // Reference: src/modules/addons/components/AddonButton.vue:35
1644
- __( 'Installing...', 'google-analytics-dashboard-for-wp' ),
1645
-
1646
- // Reference: src/modules/widget/components/reports/WidgetReportOverview-Lite.vue:64
1647
- /* Translators: Line break. */
1648
- __( 'Unique %s Sessions', 'google-analytics-dashboard-for-wp' ),
1649
-
1650
- // Reference: src/modules/widget/components/reports/WidgetReportOverview-Lite.vue:67
1651
- /* Translators: Line break. */
1652
- __( 'Unique %s Pageviews', 'google-analytics-dashboard-for-wp' ),
1653
-
1654
- // Reference: src/modules/widget/components/reports/WidgetReportOverview-Lite.vue:71
1655
- __( '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' ),
1656
-
1657
- // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:38
1658
- __( 'Last 30 Days Analytics for ', 'google-analytics-dashboard-for-wp' ),
1659
-
1660
- // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:39
1661
- __( 'Your Website', 'google-analytics-dashboard-for-wp' ),
1662
 
1663
- // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:42
1664
- __( 'Avg. Duration', 'google-analytics-dashboard-for-wp' ),
1665
 
1666
- // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:52
1667
- __( 'More data is available', 'google-analytics-dashboard-for-wp' ),
1668
 
1669
- // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:54
1670
- __( 'Want to see page-specific stats?', 'google-analytics-dashboard-for-wp' ),
1671
 
1672
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:101
1673
- /* Translators: placeholders make text small. */
1674
- __( 'Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s', 'google-analytics-dashboard-for-wp' ),
1675
 
1676
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:106
1677
- /* Translators: placeholders make text small. */
1678
- __( 'Disabled %1$s- Hide reports and dashboard widget.%2$s', 'google-analytics-dashboard-for-wp' ),
1679
 
1680
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:113
1681
- /* Translators: placeholders make text small. */
1682
- __( 'Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s', 'google-analytics-dashboard-for-wp' ),
1683
 
1684
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:118
1685
- /* Translators: placeholders make text small. */
1686
- __( 'Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s', 'google-analytics-dashboard-for-wp' ),
1687
 
1688
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:123
1689
- /* Translators: placeholders make text small. */
1690
- __( 'None %1$s- Manually update everything.%2$s', 'google-analytics-dashboard-for-wp' ),
1691
 
1692
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:171
1693
- /* Translators: Adds a link to the general settings tab. */
1694
- __( '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.', 'google-analytics-dashboard-for-wp' ),
1695
 
1696
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:75
1697
- __( 'Permissions', 'google-analytics-dashboard-for-wp' ),
1698
 
1699
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:76
1700
- __( 'Allow These User Roles to See Reports', 'google-analytics-dashboard-for-wp' ),
1701
 
1702
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:77
1703
- __( 'Users that have at least one of these roles will be able to view the reports.', 'google-analytics-dashboard-for-wp' ),
1704
 
1705
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:79
1706
- __( 'Allow These User Roles to Save Settings', 'google-analytics-dashboard-for-wp' ),
1707
 
1708
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:80
1709
- __( 'Users that have at least one of these roles will be able to view and save the settings panel.', 'google-analytics-dashboard-for-wp' ),
1710
 
1711
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:81
1712
- __( '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.', 'google-analytics-dashboard-for-wp' ),
1713
 
1714
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:82
1715
- __( 'Exclude These User Roles From Tracking', 'google-analytics-dashboard-for-wp' ),
1716
 
1717
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:84
1718
- __( 'Users that have at least one of these roles will not be tracked into Google Analytics.', 'google-analytics-dashboard-for-wp' ),
1719
 
1720
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:85
1721
- __( 'Custom code', 'google-analytics-dashboard-for-wp' ),
1722
 
1723
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:87
1724
- /* Translators: Adds a link to the Google reference. */
1725
- __( '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.', 'google-analytics-dashboard-for-wp' ),
1726
 
1727
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:88
1728
- __( 'Reports', 'google-analytics-dashboard-for-wp' ),
1729
 
1730
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:89
1731
- __( 'Automatic Updates', 'google-analytics-dashboard-for-wp' ),
1732
 
1733
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:90
1734
- __( 'You must have the "unfiltered_html" capability to view/edit this setting.', 'google-analytics-dashboard-for-wp' ),
1735
 
1736
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:91
1737
- __( 'Hide Admin Bar Reports', 'google-analytics-dashboard-for-wp' ),
1738
 
1739
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:96
1740
- /* Translators: placeholders make text small. */
1741
- __( 'Enabled %1$s- Show reports and dashboard widget.%2$s', 'google-analytics-dashboard-for-wp' ),
1742
 
1743
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:45
1744
- __( 'Unlock Form Tracking', 'google-analytics-dashboard-for-wp' ),
 
1745
 
1746
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:46
1747
- __( 'See who\'s viewing and submitting your forms, so you can increase your conversion rate.', 'google-analytics-dashboard-for-wp' ),
1748
 
1749
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:48
1750
- __( 'Use Google Optimize to retarget your website visitors and perform A/B split tests with ease.', 'google-analytics-dashboard-for-wp' ),
 
1751
 
1752
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:50
1753
- __( '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' ),
1754
 
1755
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:32
1756
- __( 'Welcome to ExactMetrics!', 'google-analytics-dashboard-for-wp' ),
 
1757
 
1758
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:33
1759
- __( 'Let\'s get you set up.', 'google-analytics-dashboard-for-wp' ),
 
1760
 
1761
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:35
1762
- __( 'Which category best describes your website?', 'google-analytics-dashboard-for-wp' ),
1763
 
1764
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:36
1765
- __( 'We will recommend the optimal settings for ExactMetrics based on your choice.', 'google-analytics-dashboard-for-wp' ),
1766
 
1767
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:40
1768
- __( 'Business Website', 'google-analytics-dashboard-for-wp' ),
1769
 
1770
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:45
1771
- /* Translators: Make text bold. */
1772
- __( 'Publisher %1$s(Blog)%2$s', 'google-analytics-dashboard-for-wp' ),
1773
 
1774
- // Reference: src/modules/auth/api/index.js:119
1775
- /* Translators: Error status and error text. */
1776
- __( 'Can\'t deauthenticate. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1777
 
1778
- // Reference: src/modules/settings/api/index.js:23
1779
- __( 'You appear to be offline.', 'google-analytics-dashboard-for-wp' ),
1780
 
1781
- // Reference: src/modules/settings/api/index.js:50
1782
  /* Translators: Error status and error text. */
1783
- __( 'Can\'t save settings. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1784
 
1785
- // Reference: src/modules/auth/api/index.js:150
1786
- __( 'You appear to be offline. Settings not saved.', 'google-analytics-dashboard-for-wp' ),
1787
 
1788
- // Reference: src/modules/auth/api/index.js:17
1789
  /* Translators: Error status and error text. */
1790
- __( 'Can\'t load authentication details. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1791
 
1792
- // Reference: src/modules/auth/api/index.js:42
1793
- /* Translators: Error status and error text. */
1794
- __( 'Can\'t authenticate. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1795
 
1796
- // Reference: src/modules/auth/api/index.js:67
1797
  /* Translators: Error status and error text. */
1798
- __( 'Can\'t reauthenticate. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1799
 
1800
- // Reference: src/modules/auth/api/index.js:90
1801
- /* Translators: Error status and error text. */
1802
- __( 'Can\'t verify credentials. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1803
 
1804
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:117
1805
- /* Translators: Makes text bold. */
1806
- __( '%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress.', 'google-analytics-dashboard-for-wp' ),
1807
 
1808
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:137
1809
- /* Translators: Makes text bold. */
1810
- __( '%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' ),
1811
 
1812
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:148
1813
- __( 'Upgrade to ExactMetrics Pro Now', 'google-analytics-dashboard-for-wp' ),
 
1814
 
1815
- // Reference: src/components/TheFloatingBar-Lite.vue:29
1816
- /* Translators: Placeholders are used for making text bold and adding a link. */
1817
- __( 'You\'re using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s.', 'google-analytics-dashboard-for-wp' ),
1818
 
1819
- // Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputAds-Lite.vue:25
1820
- __( 'Ads Tracking', 'google-analytics-dashboard-for-wp' ),
1821
 
1822
- // Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputAds-Lite.vue:26
1823
- __( 'Add Ads tracking to see who\'s clicking on your Google Ads, so you can increase your revenue.', 'google-analytics-dashboard-for-wp' ),
1824
 
1825
- // Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputAmp-Lite.vue:25
1826
- __( 'Google AMP', 'google-analytics-dashboard-for-wp' ),
1827
 
1828
- // Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputAmp-Lite.vue:26
1829
- __( 'Want to use track users visiting your AMP pages? By upgrading to ExactMetrics Pro, you can enable AMP page tracking.', 'google-analytics-dashboard-for-wp' ),
1830
 
1831
- // Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputFbia-Lite.vue:25
1832
- __( 'Facebook Instant Articles', 'google-analytics-dashboard-for-wp' ),
 
1833
 
1834
- // Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputFbia-Lite.vue:26
1835
- __( 'Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to ExactMetrics Pro.', 'google-analytics-dashboard-for-wp' ),
1836
 
1837
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingImprove-Lite.vue:17
1838
- __( 'Help Us Improve', 'google-analytics-dashboard-for-wp' ),
1839
 
1840
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingImprove-Lite.vue:18
1841
- __( 'Help us better understand our users and their website needs.', 'google-analytics-dashboard-for-wp' ),
1842
 
1843
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingImprove-Lite.vue:20
1844
- /* Translators: Adds a link to the documentation. */
1845
- __( 'If enabled ExactMetrics will send some information about your WordPress site like what plugins and themes you use and which ExactMetrics settings you use to us so that we can improve our product. For a complete list of what we send and what we use it for, %1$svisit our website.%2$s', 'google-analytics-dashboard-for-wp' ),
1846
 
1847
- // Reference: src/modules/license/api/index.js:118
1848
- /* Translators: Error status and error text. */
1849
- __( 'Can\'t deactivate the license. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1850
 
1851
- // Reference: src/modules/license/api/index.js:144
1852
- /* Translators: Error status and error text. */
1853
- __( 'Can\'t upgrade to PRO please try again. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1854
 
1855
- // Reference: src/modules/license/api/index.js:18
1856
- /* Translators: Error status and error text. */
1857
- __( 'Can\'t load license details. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1858
 
1859
- // Reference: src/modules/license/api/index.js:24
1860
- __( 'Error loading license details', 'google-analytics-dashboard-for-wp' ),
1861
 
1862
- // Reference: src/modules/license/api/index.js:57
1863
- /* Translators: Error status and error text. */
1864
- __( 'Can\'t verify the license. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1865
 
1866
- // Reference: src/modules/license/api/index.js:82
1867
- /* Translators: Error status and error text. */
1868
- __( 'Can\'t validate the license. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1869
 
1870
- // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:134
1871
- /* Translators: The name of the field that is throwing a validation error. */
1872
- __( '%s can\'t be empty.', 'google-analytics-dashboard-for-wp' ),
1873
 
1874
- // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:155
1875
- __( 'Duplicate values are not allowed.', 'google-analytics-dashboard-for-wp' ),
1876
 
1877
- // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:42
1878
- __( 'Add Another Link Path', 'google-analytics-dashboard-for-wp' ),
1879
 
1880
- // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:43
1881
- __( 'Remove row', 'google-analytics-dashboard-for-wp' ),
1882
 
1883
- // Reference: src/modules/settings/components/input/tab-engagement/exactmetrics-SettingsInputScroll-Lite.vue:20
1884
- __( 'Scroll Tracking', 'google-analytics-dashboard-for-wp' ),
 
1885
 
1886
- // Reference: src/modules/settings/components/input/tab-engagement/exactmetrics-SettingsInputScroll-Lite.vue:21
1887
- __( 'Scroll depth tracking in web analytics is one of those things you simply must do, especially if you have a content-heavy site.', 'google-analytics-dashboard-for-wp' ),
1888
 
1889
  // Reference: src/modules/wizard-onboarding/components/inputs/exactmetrics-OnboardingLicense-Lite.vue:29
1890
  /* Translators: Makes text bold and adds smiley. */
@@ -1903,27 +1737,62 @@ $generated_i18n_strings = array(
1903
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:48
1904
  __( 'Website profile', 'google-analytics-dashboard-for-wp' ),
1905
 
1906
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:49
1907
- __( 'Active profile', 'google-analytics-dashboard-for-wp' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1908
 
1909
- // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:60
1910
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:50
1911
- __( 'Your website profile has been set at the network level of your WordPress Multisite.', 'google-analytics-dashboard-for-wp' ),
1912
 
1913
- // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:61
1914
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:51
1915
- __( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-dashboard-for-wp' ),
1916
 
1917
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:52
1918
- __( 'Skip and Keep Connection', 'google-analytics-dashboard-for-wp' ),
1919
 
1920
- // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:96
1921
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:79
1922
- __( 'Authenticating', 'google-analytics-dashboard-for-wp' ),
1923
 
1924
- // Reference: src/modules/reports/components/reports-overview/ReportOverviewUpsellMobile-Lite.vue:21
1925
- /* Translators: Make text green. */
1926
- __( 'Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s', 'google-analytics-dashboard-for-wp' ),
1927
 
1928
  // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:105
1929
  __( 'Network Active', 'google-analytics-dashboard-for-wp' ),
@@ -1941,6 +1810,19 @@ $generated_i18n_strings = array(
1941
  // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:99
1942
  __( 'Not Installed', 'google-analytics-dashboard-for-wp' ),
1943
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1944
  // Reference: src/components/TheAppFTPForm.vue:100
1945
  __( 'Proceed', 'google-analytics-dashboard-for-wp' ),
1946
 
@@ -1968,68 +1850,23 @@ $generated_i18n_strings = array(
1968
  // Reference: src/components/TheAppFTPForm.vue:99
1969
  __( 'Cancel', 'google-analytics-dashboard-for-wp' ),
1970
 
1971
- // Reference: src/modules/wizard-onboarding/api/index.js:18
1972
- /* Translators: Error status and error text. */
1973
- __( 'Can\'t load errors. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1974
-
1975
- // Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewUpsell-Lite.vue:32
1976
- __( '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!', 'google-analytics-dashboard-for-wp' ),
1977
-
1978
- // Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewUpsell-Lite.vue:33
1979
- __( 'To unlock more features consider upgrading to PRO.', 'google-analytics-dashboard-for-wp' ),
1980
-
1981
- // Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewUpsell-Lite.vue:34
1982
- __( 'Receive 50% off automatically applied at the checkout!', 'google-analytics-dashboard-for-wp' ),
1983
-
1984
- // Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewUpsell-Lite.vue:37
1985
- __( 'See all features', 'google-analytics-dashboard-for-wp' ),
1986
-
1987
- // Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewUpsell-Lite.vue:38
1988
- __( 'Upgrade to', 'google-analytics-dashboard-for-wp' ),
1989
-
1990
- // Reference: src/modules/frontend/components/FrontendInfoboxChange.vue:29
1991
- /* Translators: Replaced with the number of days */
1992
- __( 'vs. Previous Day', 'google-analytics-dashboard-for-wp' ),
1993
-
1994
- // Reference: src/modules/frontend/components/FrontendInfoboxChange.vue:46
1995
- __( 'No change', 'google-analytics-dashboard-for-wp' ),
1996
-
1997
- // Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewDatePicker-Lite.vue:48
1998
- __( 'Last 30 days', 'google-analytics-dashboard-for-wp' ),
1999
-
2000
  // Reference: src/modules/settings/components/input/SettingsInputText.vue:42
2001
  __( 'Reset to default', 'google-analytics-dashboard-for-wp' ),
2002
 
2003
  // Reference: src/modules/settings/components/input/SettingsInputText.vue:43
2004
  __( 'The value entered does not match the required format', 'google-analytics-dashboard-for-wp' ),
2005
 
2006
- // Reference: src/modules/settings/components/input/SettingsInputSelect.vue:62
2007
- __( 'No options available', 'google-analytics-dashboard-for-wp' ),
2008
-
2009
- // Reference: src/modules/settings/components/input/tab-engagement/exactmetrics-SettingsInputEUCompliance-Lite.vue:22
2010
- __( 'The EU Compliance addon allows you to improve compliance with GDPR
2011
- and other privacy regulations.', 'google-analytics-dashboard-for-wp' ),
2012
-
2013
- // Reference: src/modules/settings/components/input/tab-engagement/exactmetrics-SettingsInputEUCompliance-Lite.vue:23
2014
- __( 'EU Compliance', 'google-analytics-dashboard-for-wp' ),
2015
-
2016
- // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:14
2017
- __( 'Hide dashboard widget', 'google-analytics-dashboard-for-wp' ),
2018
-
2019
- // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:31
2020
- __( 'Are you sure you want to hide the ExactMetrics Dashboard Widget? ', 'google-analytics-dashboard-for-wp' ),
2021
-
2022
- // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:33
2023
- __( 'Yes, hide it!', 'google-analytics-dashboard-for-wp' ),
2024
 
2025
- // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:34
2026
- __( 'No, cancel!', 'google-analytics-dashboard-for-wp' ),
2027
 
2028
- // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:40
2029
- __( 'ExactMetrics Widget Hidden', 'google-analytics-dashboard-for-wp' ),
2030
 
2031
- // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:41
2032
- __( 'You can re-enable the ExactMetrics widget at any time using the "Screen Options" menu on the top right of this page', 'google-analytics-dashboard-for-wp' ),
2033
 
2034
  // Reference: src/modules/widget/components/WidgetTips.vue:19
2035
  __( 'Forms Tracking help you see who’s viewing your forms, so you can increase conversions.', 'google-analytics-dashboard-for-wp' ),
@@ -2067,14 +1904,66 @@ $generated_i18n_strings = array(
2067
  // Reference: src/modules/widget/components/WidgetTips.vue:70
2068
  __( 'Pro Tip:', 'google-analytics-dashboard-for-wp' ),
2069
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2070
  // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputPerformance-Lite.vue:21
2071
  __( 'Performance', 'google-analytics-dashboard-for-wp' ),
2072
 
2073
  // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputPerformance-Lite.vue:22
2074
  __( '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.', 'google-analytics-dashboard-for-wp' ),
2075
 
2076
- // Reference: src/modules/settings/components/SettingsAddonUpgrade.vue:33
2077
- __( 'Upgrade', 'google-analytics-dashboard-for-wp' ),
 
 
 
 
 
 
 
 
 
2078
 
2079
  // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:36
2080
  __( 'Usage Tracking', 'google-analytics-dashboard-for-wp' ),
@@ -2089,28 +1978,23 @@ $generated_i18n_strings = array(
2089
  /* Translators: Adds a link to the documentation. */
2090
  __( 'Complete documentation on usage tracking is available %1$shere%2$s.', 'google-analytics-dashboard-for-wp' ),
2091
 
2092
- // Reference: src/modules/addons/components/AddonButton.vue:27
2093
- __( 'Activating...', 'google-analytics-dashboard-for-wp' ),
2094
-
2095
- // Reference: src/modules/addons/components/AddonButton.vue:31
2096
- __( 'Deactivating...', 'google-analytics-dashboard-for-wp' ),
2097
 
2098
- // Reference: src/modules/addons/components/AddonButton.vue:39
2099
- __( 'Deactivate', 'google-analytics-dashboard-for-wp' ),
2100
 
2101
- // Reference: src/modules/reports/components/exactmetrics-ReportsPagination.vue:25
2102
- __( 'Show', 'google-analytics-dashboard-for-wp' ),
2103
 
2104
- // Reference: src/modules/reports/components/exactmetrics-ReportsPagination.vue:27
2105
- /* Translators: The number of results. */
2106
- __( '%s results', 'google-analytics-dashboard-for-wp' ),
2107
 
2108
- // Reference: src/modules/settings/api/index.js:19
2109
- /* Translators: Error status and error text. */
2110
- __( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
2111
 
2112
- // Reference: src/modules/settings/api/index.js:54
2113
- __( 'Network error encountered. Settings not saved.', 'google-analytics-dashboard-for-wp' ),
2114
 
2115
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:106
2116
  /* Translators: Adds link to the account area to retreive license key. */
@@ -2119,6 +2003,9 @@ $generated_i18n_strings = array(
2119
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:107
2120
  __( 'Paste your license key here', 'google-analytics-dashboard-for-wp' ),
2121
 
 
 
 
2122
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:109
2123
  __( 'Verify', 'google-analytics-dashboard-for-wp' ),
2124
 
@@ -2138,9 +2025,17 @@ $generated_i18n_strings = array(
2138
  __( 'You\'re using ExactMetrics Lite – no license needed. Enjoy!', 'google-analytics-dashboard-for-wp' ),
2139
 
2140
  // Reference: src/modules/settings/components/network/exactmetrics-SettingsInputLicenseNetwork-Lite.vue:23
2141
- /* Translators: Make text bold. */
 
2142
  __( 'To unlock more features consider %1$supgrading to PRO%2$s.', 'google-analytics-dashboard-for-wp' ),
2143
 
 
 
 
 
 
 
 
2144
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:129
2145
  __( 'Complete Upgrade', 'google-analytics-dashboard-for-wp' ),
2146
 
@@ -2154,6 +2049,68 @@ $generated_i18n_strings = array(
2154
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:166
2155
  __( 'There was an error unlocking ExactMetrics PRO please try again or install manually.', 'google-analytics-dashboard-for-wp' ),
2156
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2157
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:158
2158
  __( 'Verifying Credentials', 'google-analytics-dashboard-for-wp' ),
2159
 
@@ -2189,6 +2146,30 @@ $generated_i18n_strings = array(
2189
 
2190
  // Reference: src/modules/settings/components/network/exactmetrics-SettingsInputLicenseNetwork-Lite.vue:21
2191
  /* Translators: Make text bold. */
2192
- __( 'You\'re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy!', 'google-analytics-dashboard-for-wp' )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2193
  );
2194
  /* THIS IS THE END OF THE GENERATED FILE */
1
  <?php
2
  /* THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY. */
3
  $generated_i18n_strings = array(
4
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:168
5
  // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:14
6
  __( 'Error', 'google-analytics-dashboard-for-wp' ),
7
 
8
  // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:15
9
  __( 'Please try again.', 'google-analytics-dashboard-for-wp' ),
10
 
 
 
 
11
  // Reference: src/plugins/exactmetrics-settings-helper-plugin.js:112
12
  __( 'Loading Settings', 'google-analytics-dashboard-for-wp' ),
13
 
14
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:151
15
  __( 'Please wait...', 'google-analytics-dashboard-for-wp' ),
16
 
17
  // Reference: src/plugins/exactmetrics-settings-helper-plugin.js:20
31
  __( 'Loading new report data', 'google-analytics-dashboard-for-wp' ),
32
 
33
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:228
34
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:142
35
+ /* Translators: Adds an arrow icon. */
36
  __( 'Continue %s', 'google-analytics-dashboard-for-wp' ),
37
 
38
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:180
47
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:32
48
  __( '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' ),
49
 
50
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:31
51
  __( 'Unlock the eCommerce Report and See Your Important Store Metrics', 'google-analytics-dashboard-for-wp' ),
52
 
53
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:189
59
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:193
60
  __( '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' ),
61
 
62
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:196
63
  __( 'Unlock the Forms Report and Improve Conversions', 'google-analytics-dashboard-for-wp' ),
64
 
65
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:197
66
  __( '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' ),
67
 
68
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:31
69
  __( 'Unlock the Search Console Report and See How People Find Your Website', 'google-analytics-dashboard-for-wp' ),
70
 
71
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:201
77
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:205
78
  __( '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' ),
79
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
80
  // Reference: src/modules/settings/exactmetrics-site.vue:77
81
  __( 'Success! ', 'google-analytics-dashboard-for-wp' ),
82
 
87
  /* Translators: Placeholder gets replaced with an arrow icon. */
88
  __( 'Get Started %s', 'google-analytics-dashboard-for-wp' ),
89
 
90
+ // Reference: src/modules/widget/store/index.js:13
91
+ __( 'Overview Report', 'google-analytics-dashboard-for-wp' ),
92
+
93
  // Reference: src/plugins/exactmetrics-compatibility-plugin.js:27
94
  /* Translators: Current WordPress version. */
95
  __( 'ExactMetrics has detected that your site is running an outdated version of WordPress (%s). ExactMetrics will stop supporting WordPress versions lower than 4.6 in April, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install.', 'google-analytics-dashboard-for-wp' ),
114
  // Reference: src/plugins/exactmetrics-compatibility-plugin.js:59
115
  __( 'Learn more about updating WordPress', 'google-analytics-dashboard-for-wp' ),
116
 
117
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:102
118
+ /* Translators: Makes text bold. */
119
+ __( '%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' ),
120
 
121
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:107
122
+ /* Translators: Makes text bold. */
123
+ __( '%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights.', 'google-analytics-dashboard-for-wp' ),
124
 
125
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:112
126
+ /* Translators: Makes text bold. */
127
+ __( '%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' ),
128
 
129
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:117
130
+ /* Translators: Makes text bold. */
131
+ __( '%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress.', 'google-analytics-dashboard-for-wp' ),
132
 
133
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:122
134
+ /* Translators: Makes text bold. */
135
+ __( '%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' ),
136
 
137
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:127
138
+ /* Translators: Makes text bold. */
139
+ __( '%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' ),
140
 
141
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:132
142
+ /* Translators: Makes text bold. */
143
+ __( '%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically.', 'google-analytics-dashboard-for-wp' ),
144
 
145
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:137
146
+ /* Translators: Makes text bold. */
147
+ __( '%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' ),
 
148
 
149
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:142
150
+ /* Translators: Adds link to the features page. */
151
+ __( '%1$sSee All Features%2$s', 'google-analytics-dashboard-for-wp' ),
152
 
153
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:41
154
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:145
155
+ __( 'Pro Plan', 'google-analytics-dashboard-for-wp' ),
156
 
157
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:42
158
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:146
159
+ __( 'per year', 'google-analytics-dashboard-for-wp' ),
160
 
161
+ // Reference: src/modules/reports/components/reports-overview/ReportOverviewUpsellMobile-Lite.vue:22
162
+ __( 'Upgrade Now', 'google-analytics-dashboard-for-wp' ),
163
 
164
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:148
165
+ __( 'Upgrade to ExactMetrics Pro Now', 'google-analytics-dashboard-for-wp' ),
166
 
167
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:63
168
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:153
169
+ __( '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' ),
170
 
171
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:64
172
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:154
173
+ __( 'Daniel Monaghan - Experienced', 'google-analytics-dashboard-for-wp' ),
174
 
175
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:68
176
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:158
177
+ __( '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' ),
178
 
179
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:69
180
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:159
181
+ __( 'Naomi Spirit - From This Day', 'google-analytics-dashboard-for-wp' ),
182
 
183
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:73
184
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:163
185
+ __( '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' ),
186
 
187
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:74
188
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:164
189
+ __( 'Julie Dupuis - Faraway Land Travel', 'google-analytics-dashboard-for-wp' ),
190
 
191
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:167
192
+ __( 'Guides and Documentation:', 'google-analytics-dashboard-for-wp' ),
193
 
194
+ // Reference: src/modules/addons/exactmetrics-addons-Lite.vue:61
195
+ // Reference: src/modules/frontend/components/FrontendUpsell-Lite.vue:11
196
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:33
197
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:127
198
+ __( 'Upgrade to PRO', 'google-analytics-dashboard-for-wp' ),
199
 
200
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:98
201
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:42
202
+ __( 'eCommerce Tracking', 'google-analytics-dashboard-for-wp' ),
203
 
204
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:145
205
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:44
206
+ __( 'Custom Dimensions', 'google-analytics-dashboard-for-wp' ),
207
 
208
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:46
209
+ __( 'Form Tracking', 'google-analytics-dashboard-for-wp' ),
210
 
211
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:48
212
+ __( 'AMP Support', 'google-analytics-dashboard-for-wp' ),
213
 
214
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:50
215
+ __( 'Author Tracking', 'google-analytics-dashboard-for-wp' ),
 
216
 
217
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:43
218
+ __( 'EU Compliance Addon', 'google-analytics-dashboard-for-wp' ),
219
 
220
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:45
221
+ __( 'Real Time Report', 'google-analytics-dashboard-for-wp' ),
222
 
223
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:47
224
+ __( 'Google Optimize', 'google-analytics-dashboard-for-wp' ),
225
 
226
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:49
227
+ __( 'Search Console', 'google-analytics-dashboard-for-wp' ),
228
 
229
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:51
230
+ __( 'Custom Date Ranges', 'google-analytics-dashboard-for-wp' ),
231
 
232
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:84
233
+ __( 'Getting Started with ExactMetrics', 'google-analytics-dashboard-for-wp' ),
234
 
235
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:85
236
+ __( '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' ),
237
 
238
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:86
239
+ __( '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' ),
 
240
 
241
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:87
242
+ __( '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' ),
 
243
 
244
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:88
245
+ __( 'Launch the wizard!', 'google-analytics-dashboard-for-wp' ),
 
246
 
247
+ // Reference: src/components/ContentIntroFullWidth.vue:46
248
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:90
249
+ __( 'Welcome to', 'google-analytics-dashboard-for-wp' ),
250
 
251
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:92
252
+ /* Translators: Adds a line break. */
253
+ __( 'Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin', 'google-analytics-dashboard-for-wp' ),
254
 
255
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:94
256
+ /* Translators: Makes text bold. */
257
+ __( '%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' ),
258
 
259
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:96
260
+ __( 'ExactMetrics Features & Addons', 'google-analytics-dashboard-for-wp' ),
261
 
262
+ // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:97
263
+ __( 'Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market.', 'google-analytics-dashboard-for-wp' ),
264
 
265
+ // Reference: src/modules/widget/components/WidgetReminder.vue:33
266
+ /* Translators: Number of visitors. */
267
+ __( 'See how %s visitors found your site!', 'google-analytics-dashboard-for-wp' ),
268
+
269
+ // Reference: src/modules/widget/components/WidgetReminder.vue:35
270
+ /* Translators: Number of visitors. */
271
+ __( 'Your website was visited by %s users in the last 30 days.', 'google-analytics-dashboard-for-wp' ),
272
+
273
+ // Reference: src/modules/widget/components/WidgetReminder.vue:36
274
+ __( 'See the full analytics report!', 'google-analytics-dashboard-for-wp' ),
275
+
276
+ // Reference: src/modules/reports/api/index.js:21
277
+ /* Translators: Error status and error text. */
278
+ __( 'Can\'t load report data. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
279
+
280
+ // Reference: src/modules/reports/api/index.js:28
281
+ __( 'Error loading report data', 'google-analytics-dashboard-for-wp' ),
282
 
283
  // Reference: src/modules/widget/components/WidgetFooter.vue:19
284
  /* Translators: Placeholder is replaced with WPForms. */
285
  __( 'Recommended Plugin: %s', 'google-analytics-dashboard-for-wp' ),
286
 
287
+ // Reference: src/modules/widget/components/WidgetFooter.vue:20
288
+ __( 'Install', 'google-analytics-dashboard-for-wp' ),
289
+
290
+ // Reference: src/modules/widget/components/WidgetFooter.vue:21
291
+ __( 'Activate', 'google-analytics-dashboard-for-wp' ),
292
+
293
+ // Reference: src/modules/widget/components/WidgetFooter.vue:22
294
  __( 'Learn More', 'google-analytics-dashboard-for-wp' ),
295
 
296
+ // Reference: src/modules/widget/components/settings/WidgetSettingsIntervalUpsell.vue:27
297
+ /* Translators: Gets replaced with the number of days. */
298
+ __( 'Last %s days', 'google-analytics-dashboard-for-wp' ),
299
 
300
+ // Reference: src/modules/reports/components/ReportReAuth.vue:19
301
+ __( 'ExactMetrics encountered an error loading your report data', 'google-analytics-dashboard-for-wp' ),
302
 
303
+ // Reference: src/modules/reports/components/ReportReAuth.vue:20
304
+ __( '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' ),
305
 
306
+ // Reference: src/modules/reports/components/ReportReAuth.vue:21
307
+ __( 'Reconnect ExactMetrics', 'google-analytics-dashboard-for-wp' ),
308
 
309
+ // Reference: src/modules/reports/components/ReportReAuth.vue:30
310
+ __( 'Re-Authenticating', 'google-analytics-dashboard-for-wp' ),
311
+
312
+ // Reference: src/modules/reports/components/ReportReAuth.vue:47
313
+ __( 'Ok', 'google-analytics-dashboard-for-wp' ),
314
 
315
  // Reference: src/modules/widget/components/exactmetrics-WidgetAccordion-Lite.vue:190
316
  __( 'Analytics', 'google-analytics-dashboard-for-wp' ),
317
 
318
+ // Reference: src/modules/widget/components/exactmetrics-WidgetAccordion-Lite.vue:61
319
  /* Translators: Adds an arrow icon. */
320
  __( 'View All Reports %s', 'google-analytics-dashboard-for-wp' ),
321
 
322
+ // Reference: src/modules/settings/routes/network.js:35
323
+ __( 'About Us', 'google-analytics-dashboard-for-wp' ),
 
324
 
325
+ // Reference: src/modules/settings/routes/network.js:43
326
+ __( 'Getting Started', 'google-analytics-dashboard-for-wp' ),
327
 
328
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:60
329
+ // Reference: src/modules/settings/routes/network.js:52
330
+ __( 'Lite vs Pro', 'google-analytics-dashboard-for-wp' ),
331
 
332
+ // Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:55
333
+ // Reference: src/modules/settings/routes/site.js:29
334
+ __( 'General', 'google-analytics-dashboard-for-wp' ),
335
 
336
+ // Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:56
337
+ // Reference: src/modules/settings/routes/site.js:37
338
+ __( 'Engagement', 'google-analytics-dashboard-for-wp' ),
339
 
340
+ // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:36
341
+ // Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:57
342
+ // Reference: src/modules/settings/routes/site.js:45
343
+ __( 'eCommerce', 'google-analytics-dashboard-for-wp' ),
344
 
345
+ // Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:58
346
+ // Reference: src/modules/settings/routes/site.js:53
347
+ __( 'Publisher', 'google-analytics-dashboard-for-wp' ),
 
 
 
348
 
349
+ // Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:59
350
+ // Reference: src/modules/settings/routes/site.js:61
351
+ __( 'Conversions', 'google-analytics-dashboard-for-wp' ),
352
 
353
+ // Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:60
354
+ // Reference: src/modules/settings/routes/site.js:69
355
+ __( 'Advanced', 'google-analytics-dashboard-for-wp' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
356
 
357
+ // Reference: src/modules/tools/components/ToolsNavigation.vue:15
358
+ __( 'URL Builder', 'google-analytics-dashboard-for-wp' ),
359
 
360
+ // Reference: src/modules/tools/components/ToolsNavigation.vue:14
361
+ __( 'Import Export', 'google-analytics-dashboard-for-wp' ),
362
 
363
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBelowContent.vue:17
364
+ __( 'Go back', 'google-analytics-dashboard-for-wp' ),
365
 
366
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingAboveContent.vue:15
367
+ /* Translators: Placeholders are replaced with the current step number out of the total number of steps. */
368
+ __( 'Step %1$s of %2$s', 'google-analytics-dashboard-for-wp' ),
369
 
370
+ // Reference: src/modules/wizard-onboarding/components/TheWizardHeader.vue:24
371
+ __( 'Exit Setup', 'google-analytics-dashboard-for-wp' ),
372
 
373
+ // Reference: src/modules/widget/store/index.js:75
374
+ __( 'Overview', 'google-analytics-dashboard-for-wp' ),
 
375
 
376
+ // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:35
377
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:30
378
+ __( 'Publishers', 'google-analytics-dashboard-for-wp' ),
379
 
380
+ // Reference: src/modules/reports/routes/exactmetrics-routes.js:54
381
+ __( 'Dimensions Report', 'google-analytics-dashboard-for-wp' ),
 
382
 
383
+ // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:39
384
+ __( 'Forms', 'google-analytics-dashboard-for-wp' ),
385
 
386
+ // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:40
387
+ __( 'Real-Time', 'google-analytics-dashboard-for-wp' ),
 
388
 
389
+ // Reference: src/components/TheQuickLinks.vue:31
390
+ __( 'See Quick Links', 'google-analytics-dashboard-for-wp' ),
 
391
 
392
+ // Reference: src/components/TheQuickLinks.vue:58
393
+ __( 'Suggest a Feature', 'google-analytics-dashboard-for-wp' ),
 
394
 
395
+ // Reference: src/components/TheQuickLinks.vue:64
396
+ __( 'Join Our Community', 'google-analytics-dashboard-for-wp' ),
397
 
398
+ // Reference: src/components/TheQuickLinks.vue:70
399
+ __( 'Support & Docs', 'google-analytics-dashboard-for-wp' ),
 
400
 
401
+ // Reference: src/components/TheQuickLinks.vue:78
402
+ __( 'Upgrade to Pro &#187;', 'google-analytics-dashboard-for-wp' ),
 
403
 
404
  // Reference: src/modules/widget/store/index.js:101
405
  __( 'Time to Purchase', 'google-analytics-dashboard-for-wp' ),
413
  // Reference: src/modules/widget/store/index.js:109
414
  __( 'This list shows the number of sessions it took users before they purchased a product from your website.', 'google-analytics-dashboard-for-wp' ),
415
 
 
416
  // Reference: src/modules/widget/store/index.js:19
417
  __( 'Top Posts/Pages', 'google-analytics-dashboard-for-wp' ),
418
 
 
419
  // Reference: src/modules/widget/store/index.js:20
420
  __( 'This list shows the most viewed posts and pages on your website.', 'google-analytics-dashboard-for-wp' ),
421
 
 
422
  // Reference: src/modules/widget/store/index.js:26
423
  __( 'New vs. Returning Visitors', 'google-analytics-dashboard-for-wp' ),
424
 
 
425
  // Reference: src/modules/widget/store/index.js:27
426
  __( 'This graph shows what percent of your user sessions come from new versus repeat visitors.', 'google-analytics-dashboard-for-wp' ),
427
 
 
428
  // Reference: src/modules/widget/store/index.js:33
429
  __( 'Device Breakdown', 'google-analytics-dashboard-for-wp' ),
430
 
 
431
  // Reference: src/modules/widget/store/index.js:34
432
  __( '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.', 'google-analytics-dashboard-for-wp' ),
433
 
476
  // Reference: src/modules/widget/store/index.js:95
477
  __( 'Total Add/Remove', 'google-analytics-dashboard-for-wp' ),
478
 
479
+ // Reference: src/modules/settings/components/SettingsButtonSave.vue:46
480
+ __( 'Save Changes', 'google-analytics-dashboard-for-wp' ),
481
 
482
+ // Reference: src/modules/license/store/actions.js:61
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:71
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:81
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/modules/reports/components/ReportNoAuth.vue:25
493
+ __( 'You must connect with ExactMetrics before you can view reports.', 'google-analytics-dashboard-for-wp' ),
494
 
495
+ // Reference: src/modules/reports/components/ReportNoAuth.vue:26
496
+ __( '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' ),
497
 
498
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:118
499
+ __( 'Launch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
500
 
501
+ // Reference: src/modules/reports/components/ReportNoAuth.vue:28
502
+ __( 'Please ask your webmaster to connect ExactMetrics to Google Analytics.', 'google-analytics-dashboard-for-wp' ),
503
 
504
+ // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:38
505
+ __( 'Dimensions', 'google-analytics-dashboard-for-wp' ),
506
 
507
+ // Reference: src/modules/addons/store/actions.js:33
508
+ /* Translators: Adds a link to documentation. */
509
+ __( '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', 'google-analytics-dashboard-for-wp' ),
510
 
511
+ // Reference: src/modules/addons/store/actions.js:36
512
+ /* Translators: Adds link to activate/install plugin and documentation. */
513
+ __( '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', 'google-analytics-dashboard-for-wp' ),
514
 
515
+ // Reference: src/modules/addons/store/actions.js:51
516
+ /* Translators: Adds a link to documentation. */
517
+ __( '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', 'google-analytics-dashboard-for-wp' ),
518
 
519
+ // Reference: src/modules/addons/store/actions.js:54
520
+ /* Translators: Adds link to activate/install plugin and documentation. */
521
+ __( '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' ),
522
 
523
+ // Reference: src/modules/frontend/components/FrontendNoAuth.vue:24
524
+ __( 'Please Setup Website Analytics to See Audience Insights', 'google-analytics-dashboard-for-wp' ),
525
 
526
+ // Reference: src/modules/frontend/components/FrontendNoAuth.vue:25
527
+ __( 'ExactMetrics, WordPress analytics plugin, helps you connect your website with Google Analytics, so you can see how people find and use your website. Over 1 million website owners use ExactMetrics to see the stats that matter and grow their business.', 'google-analytics-dashboard-for-wp' ),
528
 
529
+ // Reference: src/modules/frontend/components/FrontendNoAuth.vue:26
530
+ __( 'Connect ExactMetrics and Setup Website Analytics', 'google-analytics-dashboard-for-wp' ),
531
 
532
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:35
533
+ /* Translators: Placeholders make the text highlighted. */
534
+ __( '%1$sNeed%2$s to Grow FASTER??', 'google-analytics-dashboard-for-wp' ),
535
 
536
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:36
537
+ __( 'Get additional, actionable insights by going Pro.', 'google-analytics-dashboard-for-wp' ),
538
+
539
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:37
540
+ __( 'Skip', 'google-analytics-dashboard-for-wp' ),
541
+
542
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:38
543
+ __( 'See All Features', 'google-analytics-dashboard-for-wp' ),
544
+
545
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:39
546
+ __( '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.', 'google-analytics-dashboard-for-wp' ),
547
+
548
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:40
549
+ __( 'Our Pro plan includes:', 'google-analytics-dashboard-for-wp' ),
550
+
551
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:48
552
+ __( 'Connect ExactMetrics to Your Website', 'google-analytics-dashboard-for-wp' ),
553
+
554
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:49
555
+ __( 'ExactMetrics connects Google Analytics to WordPress and shows you stats that matter.', 'google-analytics-dashboard-for-wp' ),
556
+
557
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:112
558
+ __( 'Connect Google Analytics + WordPress', 'google-analytics-dashboard-for-wp' ),
559
+
560
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:113
561
+ __( 'You will be taken to the ExactMetrics website where you\'ll need to connect your Analytics account.', 'google-analytics-dashboard-for-wp' ),
562
+
563
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:52
564
+ __( 'Whoops, something went wrong and we weren\'t able to connect to ExactMetrics. Please enter your Google UA code manually.', 'google-analytics-dashboard-for-wp' ),
565
+
566
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:53
567
+ __( 'Manually enter your UA code', 'google-analytics-dashboard-for-wp' ),
568
+
569
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:54
570
+ __( 'Warning: If you use a manual UA code, you won\'t be able to use any of the reporting and some of the tracking features. Your UA code should look like UA-XXXXXX-XX where the X\'s are numbers.', 'google-analytics-dashboard-for-wp' ),
571
+
572
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:55
573
+ __( 'Save and Continue', 'google-analytics-dashboard-for-wp' ),
574
+
575
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:81
576
+ __( 'UA code can\'t be empty', 'google-analytics-dashboard-for-wp' ),
577
+
578
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:93
579
+ __( 'Saving UA code...', 'google-analytics-dashboard-for-wp' ),
580
+
581
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:38
582
+ __( 'Welcome to the all-new ExactMetrics', 'google-analytics-dashboard-for-wp' ),
583
+
584
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:39
585
+ __( 'Redesigned from the ground up, ExactMetrics is built to bring a world-class analytics and reporting experience to WordPress.', 'google-analytics-dashboard-for-wp' ),
586
+
587
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:40
588
+ __( 'The New & Improved ExactMetrics includes:', 'google-analytics-dashboard-for-wp' ),
589
+
590
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:42
591
+ __( 'All-New Design', 'google-analytics-dashboard-for-wp' ),
592
+
593
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:43
594
+ __( 'Better Reporting', 'google-analytics-dashboard-for-wp' ),
595
+
596
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:44
597
+ __( 'Better Tracking', 'google-analytics-dashboard-for-wp' ),
598
+
599
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:45
600
+ __( 'Better Support', 'google-analytics-dashboard-for-wp' ),
601
+
602
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:47
603
+ __( 'Continue', 'google-analytics-dashboard-for-wp' ),
604
+
605
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:48
606
+ __( 'Your settings have been automatically transferred.', 'google-analytics-dashboard-for-wp' ),
607
 
608
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:53
609
  __( 'Recommended Settings', 'google-analytics-dashboard-for-wp' ),
647
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:66
648
  __( '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' ),
649
 
650
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:44
651
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:71
652
+ /* Translators: Example path (/go/). */
653
+ __( 'Path (example: %s)', 'google-analytics-dashboard-for-wp' ),
654
+
655
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:46
656
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:73
657
+ __( 'Path has to start with a / and have no spaces', 'google-analytics-dashboard-for-wp' ),
658
+
659
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:51
660
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:78
661
+ /* Translators: Example label (aff). */
662
+ __( 'Label (example: %s)', 'google-analytics-dashboard-for-wp' ),
663
+
664
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:53
665
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:80
666
+ __( 'Label can\'t contain any spaces', 'google-analytics-dashboard-for-wp' ),
667
+
668
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:83
669
  __( 'Helps you increase affiliate revenue.', 'google-analytics-dashboard-for-wp' ),
670
 
680
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:87
681
  __( 'These user roles will be able to access ExactMetrics\'s reports in the WordPress admin area.', 'google-analytics-dashboard-for-wp' ),
682
 
 
683
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:88
684
  __( 'Users that have at least one of these roles will be able to view the reports, along with any user with the manage_options capability.', 'google-analytics-dashboard-for-wp' ),
685
 
692
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:92
693
  __( 'Enhanced Link Attribution is enabled the moment you set up ExactMetrics', 'google-analytics-dashboard-for-wp' ),
694
 
 
695
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:93
696
  __( '+ Add Role', 'google-analytics-dashboard-for-wp' ),
697
 
698
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:39
699
+ __( 'Awesome, You\'re All Set!', 'google-analytics-dashboard-for-wp' ),
700
 
701
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:40
702
+ __( 'ExactMetrics is all set up and ready to use. We\'ve verified that the tracking code is deployed properly and collecting data.', 'google-analytics-dashboard-for-wp' ),
703
 
704
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:42
705
+ /* Translators: Make the text bold. */
706
+ __( '%1$sPlease Note:%2$s While Google Analytics is properly setup and tracking everything, it does not send the data back to WordPress immediately. Depending on the size of your website, it can take between a few hours to 24 hours for reports to populate.', 'google-analytics-dashboard-for-wp' ),
707
 
708
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:44
709
+ /* Translators: Add link to blog. */
710
+ __( '%1$sSubscribe to the ExactMetrics blog%2$s for tips on how to get more traffic and grow your business.', 'google-analytics-dashboard-for-wp' ),
711
 
712
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:45
713
+ __( 'Finish Setup & Exit Wizard', 'google-analytics-dashboard-for-wp' ),
714
 
715
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:47
716
+ __( 'Google Analytics', 'google-analytics-dashboard-for-wp' ),
717
 
718
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:48
719
+ __( 'Subscribe', 'google-analytics-dashboard-for-wp' ),
720
 
721
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:61
722
+ __( 'Checking your website...', 'google-analytics-dashboard-for-wp' ),
723
 
724
+ // Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:66
725
+ __( 'Show Overview Reports', 'google-analytics-dashboard-for-wp' ),
726
 
727
+ // Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:67
728
+ __( 'Show Publishers Reports', 'google-analytics-dashboard-for-wp' ),
729
 
730
+ // Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:68
731
+ __( 'Show eCommerce Reports', 'google-analytics-dashboard-for-wp' ),
732
 
733
+ // Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:70
734
+ __( 'Available in PRO version', 'google-analytics-dashboard-for-wp' ),
735
 
736
+ // Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
737
+ __( 'Show in widget mode', 'google-analytics-dashboard-for-wp' ),
738
 
739
+ // Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
740
+ __( 'Show in full-width mode', 'google-analytics-dashboard-for-wp' ),
741
 
742
+ // Reference: src/modules/widget/components/settings/WidgetSettingsIntervalUpsell.vue:29
743
+ /* Translators: Placeholder adds a line break. */
744
+ __( 'You can customize your %sdate range only in the PRO version.', 'google-analytics-dashboard-for-wp' ),
745
 
746
+ // Reference: src/modules/widget/components/WidgetReportsLink.vue:17
747
+ __( 'See All Reports', 'google-analytics-dashboard-for-wp' ),
 
748
 
749
+ // Reference: src/modules/widget/components/WidgetReportsLink.vue:18
750
+ __( 'Go to the Analytics Dashboard', 'google-analytics-dashboard-for-wp' ),
 
751
 
752
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:28
753
+ __( 'Ecommerce', 'google-analytics-dashboard-for-wp' ),
754
 
755
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:30
756
+ /* Translators: Add line break. */
757
+ __( 'See All Your Important Store%s Metrics in One Place', 'google-analytics-dashboard-for-wp' ),
758
 
759
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:31
760
+ __( 'Get an Answer to All Your Top Ecommerce Questions From a Single Report', 'google-analytics-dashboard-for-wp' ),
761
 
762
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:35
763
+ __( 'Here\'s what you get:', 'google-analytics-dashboard-for-wp' ),
764
 
765
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:39
766
+ __( 'See Your Conversion Rate to Improve Funnel', 'google-analytics-dashboard-for-wp' ),
767
 
768
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:43
769
+ __( 'See The Number of Transactions and Make Data-Driven Decisions', 'google-analytics-dashboard-for-wp' ),
770
 
771
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:47
772
+ __( 'See The Total Revenue to Track Growth', 'google-analytics-dashboard-for-wp' ),
773
 
774
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:51
775
+ __( 'See Average Order Value to Find Offer Opportunities', 'google-analytics-dashboard-for-wp' ),
776
 
777
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:55
778
+ __( 'See Your Top Products to See Individual Performance', 'google-analytics-dashboard-for-wp' ),
779
 
780
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:58
781
+ __( 'See your Top Conversion Sources and Focus on what\'s Working', 'google-analytics-dashboard-for-wp' ),
782
 
783
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:63
784
+ __( 'See The Time it Takes for Customers to Purchase', 'google-analytics-dashboard-for-wp' ),
785
 
786
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:67
787
+ __( 'See How Many Sessions are Needed for a Purchase', 'google-analytics-dashboard-for-wp' ),
788
 
789
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:56
790
+ __( 'Affiliate Links', 'google-analytics-dashboard-for-wp' ),
791
 
792
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:58
793
+ /* Translators: Add links to documentation. */
794
+ __( '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.', 'google-analytics-dashboard-for-wp' ),
795
 
796
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:59
797
+ __( 'Our affiliate link tracking works by setting path for internal links to track as outbound links.', 'google-analytics-dashboard-for-wp' ),
798
 
799
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:102
800
+ __( 'Cross Domain Tracking', 'google-analytics-dashboard-for-wp' ),
801
 
802
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:104
803
+ /* Translators: Add links to documentation. */
804
+ __( '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.', 'google-analytics-dashboard-for-wp' ),
805
 
806
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:65
807
+ __( 'Demographics', 'google-analytics-dashboard-for-wp' ),
808
 
809
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:66
810
+ __( 'Enable Demographics and Interests Reports for Remarketing and Advertising', 'google-analytics-dashboard-for-wp' ),
811
 
812
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:67
813
+ __( 'Anonymize IP Addresses', 'google-analytics-dashboard-for-wp' ),
814
 
815
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:68
816
+ __( 'Link Attribution', 'google-analytics-dashboard-for-wp' ),
817
 
818
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:69
819
+ __( 'Enable Enhanced Link Attribution', 'google-analytics-dashboard-for-wp' ),
820
+
821
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:70
822
+ __( 'Enable Anchor Tracking', 'google-analytics-dashboard-for-wp' ),
823
+
824
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:71
825
+ __( 'Enable allowAnchor', 'google-analytics-dashboard-for-wp' ),
826
+
827
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:72
828
+ __( 'Enable allowLinker', 'google-analytics-dashboard-for-wp' ),
829
+
830
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:73
831
+ __( 'Enable Tag Links in RSS', 'google-analytics-dashboard-for-wp' ),
832
+
833
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:74
834
+ __( 'File Downloads', 'google-analytics-dashboard-for-wp' ),
835
+
836
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:75
837
+ __( 'Extensions of Files to Track as Downloads', 'google-analytics-dashboard-for-wp' ),
838
+
839
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:76
840
+ __( 'ExactMetrics will send an event to Google Analytics if a link to a file has one of the above extensions.', 'google-analytics-dashboard-for-wp' ),
841
+
842
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:78
843
+ /* Translators: Add links to documentation. */
844
+ __( '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.', 'google-analytics-dashboard-for-wp' ),
845
+
846
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:80
847
+ /* Translators: Add links to documentation. */
848
+ __( '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.', 'google-analytics-dashboard-for-wp' ),
849
+
850
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:82
851
+ /* Translators: Add links to documentation. */
852
+ __( 'Add %1$sEnhanced Link Attribution%2$s to your tracking code.', 'google-analytics-dashboard-for-wp' ),
853
+
854
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:83
855
+ __( '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.', 'google-analytics-dashboard-for-wp' ),
856
+
857
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:85
858
+ /* Translators: Add links to documentation. */
859
+ __( '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.', 'google-analytics-dashboard-for-wp' ),
860
+
861
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:87
862
+ /* Translators: Add links to documentation. */
863
+ __( '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.', 'google-analytics-dashboard-for-wp' ),
864
+
865
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:89
866
+ /* Translators: Add links to documentation. */
867
+ __( '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.', 'google-analytics-dashboard-for-wp' ),
868
+
869
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:90
870
+ __( 'Add domain', 'google-analytics-dashboard-for-wp' ),
871
+
872
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:95
873
+ /* Translators: Domain name example. */
874
+ __( 'Domain (example: %s)', 'google-analytics-dashboard-for-wp' ),
875
+
876
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:98
877
+ /* Translators: Current domain name that should not be used. */
878
+ __( 'Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s ).', 'google-analytics-dashboard-for-wp' ),
879
 
880
  // Reference: src/modules/addons/exactmetrics-addons-Lite.vue:54
881
  __( 'There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data.', 'google-analytics-dashboard-for-wp' ),
899
  // Reference: src/modules/addons/exactmetrics-addons-Lite.vue:85
900
  __( 'Refreshing Addons', 'google-analytics-dashboard-for-wp' ),
901
 
902
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:101
903
+ /* Translators: placeholders make text small. */
904
+ __( 'Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s', 'google-analytics-dashboard-for-wp' ),
905
+
906
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:106
907
+ /* Translators: placeholders make text small. */
908
+ __( 'Disabled %1$s- Hide reports and dashboard widget.%2$s', 'google-analytics-dashboard-for-wp' ),
909
+
910
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:113
911
+ /* Translators: placeholders make text small. */
912
+ __( 'Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s', 'google-analytics-dashboard-for-wp' ),
913
+
914
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:118
915
+ /* Translators: placeholders make text small. */
916
+ __( 'Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s', 'google-analytics-dashboard-for-wp' ),
917
+
918
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:123
919
+ /* Translators: placeholders make text small. */
920
+ __( 'None %1$s- Manually update everything.%2$s', 'google-analytics-dashboard-for-wp' ),
921
+
922
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:171
923
+ /* Translators: Adds a link to the general settings tab. */
924
+ __( '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.', 'google-analytics-dashboard-for-wp' ),
925
+
926
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:75
927
+ __( 'Permissions', 'google-analytics-dashboard-for-wp' ),
928
+
929
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:76
930
+ __( 'Allow These User Roles to See Reports', 'google-analytics-dashboard-for-wp' ),
931
+
932
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:77
933
+ __( 'Users that have at least one of these roles will be able to view the reports.', 'google-analytics-dashboard-for-wp' ),
934
+
935
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:79
936
+ __( 'Allow These User Roles to Save Settings', 'google-analytics-dashboard-for-wp' ),
937
+
938
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:80
939
+ __( 'Users that have at least one of these roles will be able to view and save the settings panel.', 'google-analytics-dashboard-for-wp' ),
940
+
941
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:81
942
+ __( '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.', 'google-analytics-dashboard-for-wp' ),
943
+
944
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:82
945
+ __( 'Exclude These User Roles From Tracking', 'google-analytics-dashboard-for-wp' ),
946
+
947
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:84
948
+ __( 'Users that have at least one of these roles will not be tracked into Google Analytics.', 'google-analytics-dashboard-for-wp' ),
949
+
950
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:85
951
+ __( 'Custom code', 'google-analytics-dashboard-for-wp' ),
952
+
953
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:87
954
+ /* Translators: Adds a link to the Google reference. */
955
+ __( '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.', 'google-analytics-dashboard-for-wp' ),
956
+
957
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:88
958
+ __( 'Reports', 'google-analytics-dashboard-for-wp' ),
959
+
960
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:114
961
+ __( 'Automatic Updates', 'google-analytics-dashboard-for-wp' ),
962
+
963
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:90
964
+ __( 'You must have the "unfiltered_html" capability to view/edit this setting.', 'google-analytics-dashboard-for-wp' ),
965
+
966
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:91
967
+ __( 'Hide Admin Bar Reports', 'google-analytics-dashboard-for-wp' ),
968
+
969
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:96
970
+ /* Translators: placeholders make text small. */
971
+ __( 'Enabled %1$s- Show reports and dashboard widget.%2$s', 'google-analytics-dashboard-for-wp' ),
972
+
973
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:45
974
+ __( 'Unlock Form Tracking', 'google-analytics-dashboard-for-wp' ),
975
+
976
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:46
977
+ __( 'See who\'s viewing and submitting your forms, so you can increase your conversion rate.', 'google-analytics-dashboard-for-wp' ),
978
+
979
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:48
980
+ __( 'Use Google Optimize to retarget your website visitors and perform A/B split tests with ease.', 'google-analytics-dashboard-for-wp' ),
981
+
982
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:50
983
+ __( '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' ),
984
+
985
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:102
986
  __( 'One-click Complete eCommerce tracking', 'google-analytics-dashboard-for-wp' ),
987
 
988
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:103
989
  __( 'Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required', 'google-analytics-dashboard-for-wp' ),
990
 
991
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:107
992
  __( 'Forms Tracking', 'google-analytics-dashboard-for-wp' ),
993
 
994
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:111
995
  __( 'One-click Form Events Tracking', 'google-analytics-dashboard-for-wp' ),
996
 
997
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:112
998
  __( 'WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin', 'google-analytics-dashboard-for-wp' ),
999
 
1000
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:116
1001
  __( 'WordPress Admin Area Reports', 'google-analytics-dashboard-for-wp' ),
1002
 
1003
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:119
1004
  __( 'Standard Reports', 'google-analytics-dashboard-for-wp' ),
1005
 
1006
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:120
1007
  __( 'Overview Reports for the last 30 days.', 'google-analytics-dashboard-for-wp' ),
1008
 
1009
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:121
1010
  __( 'Advanced Reports', 'google-analytics-dashboard-for-wp' ),
1011
 
1012
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:122
1013
  __( 'Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection', 'google-analytics-dashboard-for-wp' ),
1014
 
1015
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:126
1016
  __( 'Dashboard Widget', 'google-analytics-dashboard-for-wp' ),
1017
 
1018
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:129
1019
  __( 'Basic Widget', 'google-analytics-dashboard-for-wp' ),
1020
 
1021
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:130
1022
  __( 'Overview Report Synopsis', 'google-analytics-dashboard-for-wp' ),
1023
 
1024
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:131
1025
  __( 'Advanced Dashboard Widget', 'google-analytics-dashboard-for-wp' ),
1026
 
1027
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:132
1028
  __( 'Includes the complete Overview report, Publisher reports and 6 different eCommerce reports', 'google-analytics-dashboard-for-wp' ),
1029
 
1030
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:136
1031
  __( 'Publisher Reports', 'google-analytics-dashboard-for-wp' ),
1032
 
1033
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:140
1034
  __( 'Advanced Publisher Reports & Tracking', 'google-analytics-dashboard-for-wp' ),
1035
 
1036
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:141
1037
  __( 'View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more', 'google-analytics-dashboard-for-wp' ),
1038
 
1039
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:148
1040
  __( 'Not Available', 'google-analytics-dashboard-for-wp' ),
1041
 
1042
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:149
1043
  __( 'Complete Custom Dimensions Tracking', 'google-analytics-dashboard-for-wp' ),
1044
 
1045
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:150
1046
  __( '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', 'google-analytics-dashboard-for-wp' ),
1047
 
1048
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:154
1049
  __( 'Support', 'google-analytics-dashboard-for-wp' ),
1050
 
1051
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:157
1052
  __( 'Limited Support', 'google-analytics-dashboard-for-wp' ),
1053
 
1054
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:158
1055
  __( 'Priority Support', 'google-analytics-dashboard-for-wp' ),
1056
 
1057
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:61
1058
  __( 'Get the most out of ExactMetrics by upgrading to Pro and unlocking all of the powerful features.', 'google-analytics-dashboard-for-wp' ),
1059
 
1060
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:62
1061
  __( 'Feature', 'google-analytics-dashboard-for-wp' ),
1062
 
1063
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:63
1064
  __( 'Lite', 'google-analytics-dashboard-for-wp' ),
1065
 
1066
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:64
1067
  __( 'Pro', 'google-analytics-dashboard-for-wp' ),
1068
 
1069
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:65
1070
  __( 'Get ExactMetrics Pro Today and Unlock all the Powerful Features', 'google-analytics-dashboard-for-wp' ),
1071
 
1072
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:66
1073
  __( 'Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout.', 'google-analytics-dashboard-for-wp' ),
1074
 
1075
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:67
1076
  __( 'Upgrade to Pro', 'google-analytics-dashboard-for-wp' ),
1077
 
1078
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:70
1079
  __( 'Universal Tracking', 'google-analytics-dashboard-for-wp' ),
1080
 
1081
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:73
1082
  __( 'Included', 'google-analytics-dashboard-for-wp' ),
1083
 
1084
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:78
1085
  __( 'Custom Google Analytics Link Tracking', 'google-analytics-dashboard-for-wp' ),
1086
 
1087
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:81
1088
  __( 'Standard Tracking', 'google-analytics-dashboard-for-wp' ),
1089
 
1090
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:82
1091
  __( 'Advanced Tracking', 'google-analytics-dashboard-for-wp' ),
1092
 
1093
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:83
1094
  __( 'Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking', 'google-analytics-dashboard-for-wp' ),
1095
 
1096
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:84
1097
  __( 'Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers', 'google-analytics-dashboard-for-wp' ),
1098
 
1099
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:88
1100
  __( 'No-Code-Needed Tracking Features', 'google-analytics-dashboard-for-wp' ),
1101
 
1102
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:91
1103
  __( 'Basic Tracking Options', 'google-analytics-dashboard-for-wp' ),
1104
 
1105
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:92
1106
  __( 'Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking', 'google-analytics-dashboard-for-wp' ),
1107
 
1108
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:93
1109
  __( 'Advanced Tracking Options', 'google-analytics-dashboard-for-wp' ),
1110
 
1111
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:94
1112
  __( 'Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors', 'google-analytics-dashboard-for-wp' ),
1113
 
1114
+ // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:79
1115
+ __( 'Sessions', 'google-analytics-dashboard-for-wp' ),
 
 
 
 
1116
 
1117
+ // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:81
1118
+ /* Translators: Line break. */
1119
+ __( 'Unique %s Sessions', 'google-analytics-dashboard-for-wp' ),
1120
 
1121
+ // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:82
1122
+ __( 'Pageviews', 'google-analytics-dashboard-for-wp' ),
1123
 
1124
+ // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:84
1125
+ /* Translators: Line break. */
1126
+ __( 'Unique %s Pageviews', 'google-analytics-dashboard-for-wp' ),
1127
 
1128
+ // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:85
1129
+ __( 'A session is the browsing session of a single user to your site.', 'google-analytics-dashboard-for-wp' ),
1130
 
1131
+ // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:86
1132
+ __( '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' ),
1133
 
1134
+ // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:87
1135
+ __( 'Total duration of all sessions (in seconds) / number of sessions.', 'google-analytics-dashboard-for-wp' ),
1136
 
1137
+ // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:88
1138
+ __( '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' ),
1139
 
1140
+ // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:89
1141
+ __( 'Avg. Session Duration', 'google-analytics-dashboard-for-wp' ),
1142
 
1143
+ // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:90
1144
+ __( 'Bounce Rate', 'google-analytics-dashboard-for-wp' ),
1145
 
1146
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:40
1147
+ __( 'ExactMetrics Recommends WPForms', 'google-analytics-dashboard-for-wp' ),
1148
 
1149
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:41
1150
+ __( 'Built by the folks behind ExactMetrics, WPForms is the most beginner friendly form plugin in the market.', 'google-analytics-dashboard-for-wp' ),
 
1151
 
1152
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:42
1153
+ __( 'Used on over 3,000,000 websites!', 'google-analytics-dashboard-for-wp' ),
 
 
1154
 
1155
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:43
1156
+ __( 'WPForms allow you to create beautiful contact forms, subscription forms, payment forms, and other types of forms for your site in minutes, not hours!', 'google-analytics-dashboard-for-wp' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1157
 
1158
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:44
1159
+ __( 'Skip this Step', 'google-analytics-dashboard-for-wp' ),
1160
 
1161
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:45
1162
+ __( 'Continue & Install WPForms', 'google-analytics-dashboard-for-wp' ),
1163
 
1164
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:46
1165
+ __( 'Installing...', 'google-analytics-dashboard-for-wp' ),
1166
 
1167
+ // Reference: src/modules/about/components/exactmetrics-AboutTabAboutUs.vue:33
1168
+ __( 'Hello and Welcome to ExactMetrics, the Best Google Analytics Plugin for WordPress.', 'google-analytics-dashboard-for-wp' ),
1169
 
1170
+ // Reference: src/modules/about/components/exactmetrics-AboutTabAboutUs.vue:34
1171
+ __( '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.', 'google-analytics-dashboard-for-wp' ),
1172
 
1173
+ // Reference: src/modules/about/components/exactmetrics-AboutTabAboutUs.vue:35
1174
+ __( 'The ExactMetrics Team', 'google-analytics-dashboard-for-wp' ),
1175
 
1176
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:32
1177
+ __( 'Welcome to ExactMetrics!', 'google-analytics-dashboard-for-wp' ),
1178
 
1179
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:33
1180
+ __( 'Let\'s get you set up.', 'google-analytics-dashboard-for-wp' ),
 
1181
 
1182
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:35
1183
+ __( 'Which category best describes your website?', 'google-analytics-dashboard-for-wp' ),
1184
 
1185
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:36
1186
+ __( 'We will recommend the optimal settings for ExactMetrics based on your choice.', 'google-analytics-dashboard-for-wp' ),
1187
 
1188
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:40
1189
+ __( 'Business Website', 'google-analytics-dashboard-for-wp' ),
1190
 
1191
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:45
1192
+ /* Translators: Make text bold. */
1193
+ __( 'Publisher %1$s(Blog)%2$s', 'google-analytics-dashboard-for-wp' ),
1194
 
1195
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:107
1196
+ /* Translators: Placeholders make the text green. */
1197
+ __( 'Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout.', 'google-analytics-dashboard-for-wp' ),
1198
 
1199
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:111
1200
+ __( 'How to Connect to Google Analytics', 'google-analytics-dashboard-for-wp' ),
1201
 
1202
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:112
1203
+ __( '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.', 'google-analytics-dashboard-for-wp' ),
1204
 
1205
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:117
1206
+ __( 'Guide and Checklist for Advanced Insights', 'google-analytics-dashboard-for-wp' ),
1207
 
1208
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:118
1209
+ __( '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.', 'google-analytics-dashboard-for-wp' ),
1210
 
1211
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:123
1212
+ __( 'GDPR Guide', 'google-analytics-dashboard-for-wp' ),
 
1213
 
1214
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:124
1215
+ __( '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. ', 'google-analytics-dashboard-for-wp' ),
1216
 
1217
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:129
1218
+ __( 'How to Install and Activate ExactMetrics Addons', 'google-analytics-dashboard-for-wp' ),
1219
 
1220
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:130
1221
+ __( '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.', 'google-analytics-dashboard-for-wp' ),
1222
 
1223
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:135
1224
+ __( 'Enabling eCommerce Tracking and Reports', 'google-analytics-dashboard-for-wp' ),
1225
 
1226
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:136
1227
+ __( '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.', 'google-analytics-dashboard-for-wp' ),
1228
 
1229
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:140
1230
+ __( 'Read Documentation', 'google-analytics-dashboard-for-wp' ),
 
1231
 
1232
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:169
1233
+ /* Translators: Makes the text bold. */
1234
+ __( '%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress.', 'google-analytics-dashboard-for-wp' ),
1235
 
1236
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:189
1237
+ /* Translators: Makes the text bold. */
1238
+ __( '%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post type, users, and other events with 1-click.', 'google-analytics-dashboard-for-wp' ),
1239
 
1240
+ // Reference: src/plugins/exactmetrics-wizard-helper-plugin.js:19
1241
+ __( 'Loading settings', 'google-analytics-dashboard-for-wp' ),
1242
 
1243
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:30
1244
+ __( 'Forms Report', 'google-analytics-dashboard-for-wp' ),
1245
 
1246
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:39
1247
+ __( 'See Reports for Any Contact Form Plugin or Sign-up Form', 'google-analytics-dashboard-for-wp' ),
1248
 
1249
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:43
1250
+ __( 'See Your Top Converting Forms and Optimize', 'google-analytics-dashboard-for-wp' ),
1251
 
1252
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:47
1253
+ __( 'See Your Forms Impressions Count to Find the Best Placement', 'google-analytics-dashboard-for-wp' ),
1254
 
1255
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:30
1256
+ __( 'Real-Time Report', 'google-analytics-dashboard-for-wp' ),
 
1257
 
1258
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:32
1259
+ __( '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.', 'google-analytics-dashboard-for-wp' ),
 
1260
 
1261
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:39
1262
+ __( 'See Your Active Visitors and Track Their Behaviour to Optimize', 'google-analytics-dashboard-for-wp' ),
1263
 
1264
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:43
1265
+ __( 'See Your Top Pages Immediately After Making Changes', 'google-analytics-dashboard-for-wp' ),
1266
 
1267
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:47
1268
+ __( 'See Your Top Referral Sources and Adapt Faster', 'google-analytics-dashboard-for-wp' ),
1269
 
1270
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:51
1271
+ __( 'See Your Traffic Demographics', 'google-analytics-dashboard-for-wp' ),
1272
 
1273
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:55
1274
+ __( 'Get Fresh Reports Data Every 60 Seconds', 'google-analytics-dashboard-for-wp' ),
1275
 
1276
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:59
1277
+ __( 'See Where Your Visitors are Connecting From (country & city)', 'google-analytics-dashboard-for-wp' ),
 
1278
 
1279
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:30
1280
+ __( 'Custom Dimensions Report', 'google-analytics-dashboard-for-wp' ),
1281
 
1282
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:31
1283
+ __( 'Unlock the Dimensions Report and decide what data is important using your own custom tracking parameters', 'google-analytics-dashboard-for-wp' ),
1284
 
1285
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:32
1286
+ __( 'The Dimensions report allows you to easily see what\'s working right inside your WordPress dashboard.', 'google-analytics-dashboard-for-wp' ),
1287
 
1288
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:39
1289
+ __( 'Author tracking to see which author’s posts generate the most traffic', 'google-analytics-dashboard-for-wp' ),
1290
 
1291
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:43
1292
+ __( 'Post Type tracking to see which WordPress post types perform better', 'google-analytics-dashboard-for-wp' ),
1293
 
1294
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:47
1295
+ __( 'Category tracking to see which sections of your sites are the most popular', 'google-analytics-dashboard-for-wp' ),
1296
 
1297
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:51
1298
+ __( 'SEO score tracking to see which blog SEO scores are the most popular', 'google-analytics-dashboard-for-wp' ),
1299
 
1300
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:55
1301
+ __( 'Focus Keyword tracking to see which of your content is doing well in search engines.', 'google-analytics-dashboard-for-wp' ),
1302
 
1303
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:59
1304
+ __( 'Tag tracking to determine which topics are the most engaging to for your website visitors.', 'google-analytics-dashboard-for-wp' ),
1305
 
1306
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:30
1307
+ __( 'Search Console Report', 'google-analytics-dashboard-for-wp' ),
1308
 
1309
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:32
1310
+ __( 'See exactly how people find tour website, which keywords they searched for, how many times the results were viewed, and more.', 'google-analytics-dashboard-for-wp' ),
1311
 
1312
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:39
1313
+ __( 'See Your Top Google Search Terms and Optimize Content', 'google-analytics-dashboard-for-wp' ),
1314
 
1315
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:43
1316
+ __( 'See The Number of Clicks and Track Interests', 'google-analytics-dashboard-for-wp' ),
1317
 
1318
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:47
1319
+ __( 'See The Click-Through-Ratio and Improve SEO', 'google-analytics-dashboard-for-wp' ),
1320
 
1321
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:51
1322
+ __( 'See The Average Results Position and Focus on what works.', 'google-analytics-dashboard-for-wp' ),
1323
 
1324
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:30
1325
+ __( 'Ecommerce Report', 'google-analytics-dashboard-for-wp' ),
1326
 
1327
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:32
1328
+ __( '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.', 'google-analytics-dashboard-for-wp' ),
1329
 
1330
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:59
1331
+ __( 'See Your Top Conversion Sources and Focus on what\'s Working', 'google-analytics-dashboard-for-wp' ),
1332
 
1333
  // Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:101
1334
  __( 'File imported', 'google-analytics-dashboard-for-wp' ),
1501
  // Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:229
1502
  __( 'Additional Information', 'google-analytics-dashboard-for-wp' ),
1503
 
1504
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:31
1505
+ __( 'Unlock the Publisher Report and Focus on the Content That Matters', 'google-analytics-dashboard-for-wp' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1506
 
1507
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:39
1508
+ __( 'See Your Top Landing Pages to Improve Engagement', 'google-analytics-dashboard-for-wp' ),
1509
 
1510
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:43
1511
+ __( 'See Your Top Exit Pages to Reduce Abandonment', 'google-analytics-dashboard-for-wp' ),
1512
 
1513
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:47
1514
+ __( 'See Your Top Outbound Links to Find New Revenue Opportunities', 'google-analytics-dashboard-for-wp' ),
1515
 
1516
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:51
1517
+ __( 'See Your Top Affiliate Links and Focus on what’s working', 'google-analytics-dashboard-for-wp' ),
 
1518
 
1519
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:55
1520
+ __( 'See Your Top Downloads and Improve Conversions', 'google-analytics-dashboard-for-wp' ),
 
1521
 
1522
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:59
1523
+ __( 'See Audience Demographic Report (Age / Gender / Interests)', 'google-analytics-dashboard-for-wp' ),
 
1524
 
1525
+ // Reference: src/components/TheFloatingBar-Lite.vue:29
1526
+ /* Translators: Placeholders are used for making text bold and adding a link. */
1527
+ __( 'You\'re using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s.', 'google-analytics-dashboard-for-wp' ),
1528
 
1529
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:53
1530
+ __( 'Recommended Addons', 'google-analytics-dashboard-for-wp' ),
 
1531
 
1532
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:55
1533
+ /* Translators: Add a link to upgrade and make the text green. */
1534
+ __( '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!', 'google-analytics-dashboard-for-wp' ),
1535
 
1536
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:57
1537
+ __( 'Upgrade to PRO Now', 'google-analytics-dashboard-for-wp' ),
1538
 
1539
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:61
1540
+ __( 'See who’s viewing and submitting your forms, so you can increase your converion rate. Lorem ipsum dolor sit amet, consectetur adipiscing elit.', 'google-analytics-dashboard-for-wp' ),
1541
 
1542
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:63
1543
+ __( 'See All Your Important Store Metrics in One Place. Lorem ipsum dolor sit amet, consectetur adipiscing elit.', 'google-analytics-dashboard-for-wp' ),
1544
 
1545
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:64
1546
+ __( '... and more:', 'google-analytics-dashboard-for-wp' ),
1547
 
1548
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:68
1549
+ __( 'Dimensions- Track authors, categories, trags, searches, users and more.', 'google-analytics-dashboard-for-wp' ),
1550
 
1551
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:72
1552
+ __( 'EU Compliance- Improve compliance with GDPR and other privacy regulations.', 'google-analytics-dashboard-for-wp' ),
1553
 
1554
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:76
1555
+ __( 'AMP- ExactMetrics Google AMP Addon enables accurate tracking of all mobile visitors to your AMP-enabled pages.', 'google-analytics-dashboard-for-wp' ),
1556
 
1557
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:80
1558
+ __( 'Facebook Instant Articles- Integrate Google Analytics and Facebook Instant Articles with just one click.', 'google-analytics-dashboard-for-wp' ),
1559
 
1560
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:84
1561
+ __( 'eCommerce- Sales tracking for your WooCommerce, Easy Digital Downloads, LifterLMS or MemberPress stores.', 'google-analytics-dashboard-for-wp' ),
1562
 
1563
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:88
1564
+ __( 'Google Optimize- Easily enable Google Optimize on your WordPress site.', 'google-analytics-dashboard-for-wp' ),
 
1565
 
1566
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:92
1567
+ __( 'Forms- Enable tracking of your form views, submissions and conversion rates.', 'google-analytics-dashboard-for-wp' ),
1568
 
1569
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:96
1570
+ __( 'Ads- See who’s clicking on your Google Adsense banner ads.', 'google-analytics-dashboard-for-wp' ),
1571
 
1572
+ // Reference: src/modules/addons/components/AddonsNavigation.vue:18
1573
+ __( 'ExactMetrics Addons', 'google-analytics-dashboard-for-wp' ),
1574
 
1575
+ // Reference: src/modules/addons/components/AddonsNavigation.vue:19
1576
+ __( 'Search Addons', 'google-analytics-dashboard-for-wp' ),
1577
 
1578
+ // Reference: src/modules/license/api/index.js:118
1579
+ /* Translators: Error status and error text. */
1580
+ __( 'Can\'t deactivate the license. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1581
 
1582
+ // Reference: src/modules/license/api/index.js:144
1583
+ /* Translators: Error status and error text. */
1584
+ __( 'Can\'t upgrade to PRO please try again. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1585
 
1586
+ // Reference: src/modules/auth/api/index.js:123
1587
+ __( 'You appear to be offline.', 'google-analytics-dashboard-for-wp' ),
1588
 
1589
+ // Reference: src/modules/license/api/index.js:18
1590
+ /* Translators: Error status and error text. */
1591
+ __( 'Can\'t load license details. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1592
 
1593
+ // Reference: src/modules/license/api/index.js:24
1594
+ __( 'Error loading license details', 'google-analytics-dashboard-for-wp' ),
1595
 
1596
+ // Reference: src/modules/license/api/index.js:57
1597
+ /* Translators: Error status and error text. */
1598
+ __( 'Can\'t verify the license. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1599
 
1600
+ // Reference: src/modules/license/api/index.js:82
1601
+ /* Translators: Error status and error text. */
1602
+ __( 'Can\'t validate the license. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1603
 
1604
+ // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:38
1605
+ __( 'Last 30 Days Analytics for ', 'google-analytics-dashboard-for-wp' ),
1606
 
1607
+ // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:39
1608
+ __( 'Your Website', 'google-analytics-dashboard-for-wp' ),
1609
 
1610
+ // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:42
1611
+ __( 'Avg. Duration', 'google-analytics-dashboard-for-wp' ),
1612
 
1613
+ // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:52
1614
+ __( 'More data is available', 'google-analytics-dashboard-for-wp' ),
 
1615
 
1616
+ // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:54
1617
+ __( 'Want to see page-specific stats?', 'google-analytics-dashboard-for-wp' ),
 
1618
 
1619
+ // Reference: src/modules/addons/api/index.js:103
1620
+ __( 'You appear to be offline. WPForms not installed.', 'google-analytics-dashboard-for-wp' ),
1621
 
1622
+ // Reference: src/modules/addons/api/index.js:128
1623
  /* Translators: Error status and error text. */
1624
+ __( 'Can\'t activate addon. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1625
 
1626
+ // Reference: src/modules/addons/api/index.js:132
1627
+ __( 'You appear to be offline. Addon not activated.', 'google-analytics-dashboard-for-wp' ),
1628
 
1629
+ // Reference: src/modules/addons/api/index.js:157
1630
  /* Translators: Error status and error text. */
1631
+ __( 'Can\'t deactivate addon. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1632
 
1633
+ // Reference: src/modules/addons/api/index.js:161
1634
+ __( 'You appear to be offline. Addon not deactivated.', 'google-analytics-dashboard-for-wp' ),
 
1635
 
1636
+ // Reference: src/modules/addons/api/index.js:192
1637
  /* Translators: Error status and error text. */
1638
+ __( 'Can\'t install plugin. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1639
 
1640
+ // Reference: src/modules/addons/api/index.js:196
1641
+ __( 'You appear to be offline. Plugin not installed.', 'google-analytics-dashboard-for-wp' ),
 
1642
 
1643
+ // Reference: src/modules/addons/api/index.js:64
1644
+ /* Translators: Error status and error text. */
1645
+ __( 'Can\'t install addon. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1646
 
1647
+ // Reference: src/modules/addons/api/index.js:68
1648
+ __( 'You appear to be offline. Addon not installed.', 'google-analytics-dashboard-for-wp' ),
 
1649
 
1650
+ // Reference: src/modules/addons/api/index.js:99
1651
+ /* Translators: Error status and error text. */
1652
+ __( 'Can\'t install WPForms. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1653
 
1654
+ // Reference: src/modules/reports/store/actions.js:132
1655
+ __( 'Installing Addon', 'google-analytics-dashboard-for-wp' ),
 
1656
 
1657
+ // Reference: src/modules/reports/store/actions.js:155
1658
+ __( 'Activating Addon', 'google-analytics-dashboard-for-wp' ),
1659
 
1660
+ // Reference: src/modules/reports/store/actions.js:170
1661
+ __( 'Addon Activated', 'google-analytics-dashboard-for-wp' ),
1662
 
1663
+ // Reference: src/modules/reports/store/actions.js:171
1664
+ __( 'Loading report data', 'google-analytics-dashboard-for-wp' ),
1665
 
1666
+ // Reference: src/modules/reports/store/actions.js:188
1667
+ __( 'Please activate manually', 'google-analytics-dashboard-for-wp' ),
1668
 
1669
+ // Reference: src/modules/reports/store/actions.js:191
1670
+ /* Translators: Adds the error status and status text. */
1671
+ __( 'Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1672
 
1673
+ // Reference: src/modules/reports/store/actions.js:197
1674
+ __( 'Error Activating Addon', 'google-analytics-dashboard-for-wp' ),
1675
 
1676
+ // Reference: src/modules/reports/store/actions.js:203
1677
+ __( 'View Addons', 'google-analytics-dashboard-for-wp' ),
1678
 
1679
+ // Reference: src/modules/reports/store/actions.js:204
1680
+ __( 'Dismiss', 'google-analytics-dashboard-for-wp' ),
1681
 
1682
+ // Reference: src/modules/reports/store/actions.js:211
1683
+ __( 'Redirecting', 'google-analytics-dashboard-for-wp' ),
 
1684
 
1685
+ // Reference: src/modules/reports/store/actions.js:212
1686
+ __( 'Please wait', 'google-analytics-dashboard-for-wp' ),
 
1687
 
1688
+ // Reference: src/modules/reports/store/actions.js:52
1689
+ __( 'activate', 'google-analytics-dashboard-for-wp' ),
 
1690
 
1691
+ // Reference: src/modules/reports/store/actions.js:52
1692
+ __( 'install', 'google-analytics-dashboard-for-wp' ),
 
1693
 
1694
+ // Reference: src/modules/reports/store/actions.js:56
1695
+ __( 'Visit addons page', 'google-analytics-dashboard-for-wp' ),
1696
 
1697
+ // Reference: src/modules/reports/store/actions.js:64
1698
+ __( 'Report Unavailable', 'google-analytics-dashboard-for-wp' ),
 
1699
 
1700
+ // Reference: src/modules/reports/store/actions.js:71
1701
+ /* Translators: Install/Activate the addon. */
1702
+ __( '%s Addon', 'google-analytics-dashboard-for-wp' ),
1703
 
1704
+ // Reference: src/modules/reports/store/actions.js:90
1705
+ __( 'Go Back To Reports', 'google-analytics-dashboard-for-wp' ),
 
1706
 
1707
+ // Reference: src/modules/reports/store/actions.js:91
1708
+ __( 'Enable Enhanced eCommerce', 'google-analytics-dashboard-for-wp' ),
1709
 
1710
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingImprove-Lite.vue:17
1711
+ __( 'Help Us Improve', 'google-analytics-dashboard-for-wp' ),
1712
 
1713
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingImprove-Lite.vue:18
1714
+ __( 'Help us better understand our users and their website needs.', 'google-analytics-dashboard-for-wp' ),
1715
 
1716
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingImprove-Lite.vue:20
1717
+ /* Translators: Adds a link to the documentation. */
1718
+ __( 'If enabled ExactMetrics will send some information about your WordPress site like what plugins and themes you use and which ExactMetrics settings you use to us so that we can improve our product. For a complete list of what we send and what we use it for, %1$svisit our website.%2$s', 'google-analytics-dashboard-for-wp' ),
1719
 
1720
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:104
1721
+ __( 'License Key', 'google-analytics-dashboard-for-wp' ),
1722
 
1723
  // Reference: src/modules/wizard-onboarding/components/inputs/exactmetrics-OnboardingLicense-Lite.vue:29
1724
  /* Translators: Makes text bold and adds smiley. */
1737
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:48
1738
  __( 'Website profile', 'google-analytics-dashboard-for-wp' ),
1739
 
1740
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:49
1741
+ __( 'Active profile', 'google-analytics-dashboard-for-wp' ),
1742
+
1743
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:50
1744
+ __( 'Your website profile has been set at the network level of your WordPress Multisite.', 'google-analytics-dashboard-for-wp' ),
1745
+
1746
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:51
1747
+ __( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-dashboard-for-wp' ),
1748
+
1749
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:52
1750
+ __( 'Skip and Keep Connection', 'google-analytics-dashboard-for-wp' ),
1751
+
1752
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:79
1753
+ __( 'Authenticating', 'google-analytics-dashboard-for-wp' ),
1754
+
1755
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:157
1756
+ __( 'New', 'google-analytics-dashboard-for-wp' ),
1757
+
1758
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:158
1759
+ __( 'Returning', 'google-analytics-dashboard-for-wp' ),
1760
+
1761
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:191
1762
+ __( 'Desktop', 'google-analytics-dashboard-for-wp' ),
1763
+
1764
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:192
1765
+ __( 'Tablet', 'google-analytics-dashboard-for-wp' ),
1766
+
1767
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:193
1768
+ __( 'Mobile', 'google-analytics-dashboard-for-wp' ),
1769
+
1770
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:257
1771
+ __( 'Top 10 Countries', 'google-analytics-dashboard-for-wp' ),
1772
+
1773
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:258
1774
+ __( 'View Countries Report', 'google-analytics-dashboard-for-wp' ),
1775
+
1776
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:259
1777
+ __( 'Top 10 Referrals', 'google-analytics-dashboard-for-wp' ),
1778
+
1779
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:260
1780
+ __( 'View All Referral Sources', 'google-analytics-dashboard-for-wp' ),
1781
 
1782
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:262
1783
+ __( 'View Full Posts/Pages Report', 'google-analytics-dashboard-for-wp' ),
 
1784
 
1785
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:267
1786
+ __( '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' ),
 
1787
 
1788
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:270
1789
+ __( 'This list shows the top countries your website visitors are from.', 'google-analytics-dashboard-for-wp' ),
1790
 
1791
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:271
1792
+ __( 'This list shows the top websites that send your website traffic, known as referral traffic.', 'google-analytics-dashboard-for-wp' ),
 
1793
 
1794
+ // Reference: src/modules/settings/components/input/SettingsInputSelect.vue:62
1795
+ __( 'No options available', 'google-analytics-dashboard-for-wp' ),
 
1796
 
1797
  // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:105
1798
  __( 'Network Active', 'google-analytics-dashboard-for-wp' ),
1810
  // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:99
1811
  __( 'Not Installed', 'google-analytics-dashboard-for-wp' ),
1812
 
1813
+ // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:134
1814
+ /* Translators: The name of the field that is throwing a validation error. */
1815
+ __( '%s can\'t be empty.', 'google-analytics-dashboard-for-wp' ),
1816
+
1817
+ // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:155
1818
+ __( 'Duplicate values are not allowed.', 'google-analytics-dashboard-for-wp' ),
1819
+
1820
+ // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:42
1821
+ __( 'Add Another Link Path', 'google-analytics-dashboard-for-wp' ),
1822
+
1823
+ // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:43
1824
+ __( 'Remove row', 'google-analytics-dashboard-for-wp' ),
1825
+
1826
  // Reference: src/components/TheAppFTPForm.vue:100
1827
  __( 'Proceed', 'google-analytics-dashboard-for-wp' ),
1828
 
1850
  // Reference: src/components/TheAppFTPForm.vue:99
1851
  __( 'Cancel', 'google-analytics-dashboard-for-wp' ),
1852
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1853
  // Reference: src/modules/settings/components/input/SettingsInputText.vue:42
1854
  __( 'Reset to default', 'google-analytics-dashboard-for-wp' ),
1855
 
1856
  // Reference: src/modules/settings/components/input/SettingsInputText.vue:43
1857
  __( 'The value entered does not match the required format', 'google-analytics-dashboard-for-wp' ),
1858
 
1859
+ // Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputAmp-Lite.vue:25
1860
+ __( 'Google AMP', 'google-analytics-dashboard-for-wp' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1861
 
1862
+ // Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputAmp-Lite.vue:26
1863
+ __( 'Want to use track users visiting your AMP pages? By upgrading to ExactMetrics Pro, you can enable AMP page tracking.', 'google-analytics-dashboard-for-wp' ),
1864
 
1865
+ // Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputFbia-Lite.vue:25
1866
+ __( 'Facebook Instant Articles', 'google-analytics-dashboard-for-wp' ),
1867
 
1868
+ // Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputFbia-Lite.vue:26
1869
+ __( 'Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to ExactMetrics Pro.', 'google-analytics-dashboard-for-wp' ),
1870
 
1871
  // Reference: src/modules/widget/components/WidgetTips.vue:19
1872
  __( 'Forms Tracking help you see who’s viewing your forms, so you can increase conversions.', 'google-analytics-dashboard-for-wp' ),
1904
  // Reference: src/modules/widget/components/WidgetTips.vue:70
1905
  __( 'Pro Tip:', 'google-analytics-dashboard-for-wp' ),
1906
 
1907
+ // Reference: src/modules/frontend/components/FrontendInfoboxChange.vue:29
1908
+ // Reference: src/modules/reports/components/ReportInfobox.vue:36
1909
+ /* Translators: Number of days. */
1910
+ __( 'vs. Previous Day', 'google-analytics-dashboard-for-wp' ),
1911
+
1912
+ // Reference: src/modules/frontend/components/FrontendInfoboxChange.vue:46
1913
+ // Reference: src/modules/reports/components/ReportInfobox.vue:53
1914
+ __( 'No change', 'google-analytics-dashboard-for-wp' ),
1915
+
1916
+ // Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputAds-Lite.vue:25
1917
+ __( 'Ads Tracking', 'google-analytics-dashboard-for-wp' ),
1918
+
1919
+ // Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputAds-Lite.vue:26
1920
+ __( 'Add Ads tracking to see who\'s clicking on your Google Ads, so you can increase your revenue.', 'google-analytics-dashboard-for-wp' ),
1921
+
1922
+ // Reference: src/modules/settings/components/input/tab-engagement/exactmetrics-SettingsInputEUCompliance-Lite.vue:22
1923
+ __( 'The EU Compliance addon allows you to improve compliance with GDPR
1924
+ and other privacy regulations.', 'google-analytics-dashboard-for-wp' ),
1925
+
1926
+ // Reference: src/modules/settings/components/input/tab-engagement/exactmetrics-SettingsInputEUCompliance-Lite.vue:23
1927
+ __( 'EU Compliance', 'google-analytics-dashboard-for-wp' ),
1928
+
1929
+ // Reference: src/modules/wizard-onboarding/api/index.js:18
1930
+ /* Translators: Error status and error text. */
1931
+ __( 'Can\'t load errors. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1932
+
1933
+ // Reference: src/modules/settings/api/index.js:19
1934
+ /* Translators: Error status and error text. */
1935
+ __( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1936
+
1937
+ // Reference: src/modules/auth/api/index.js:146
1938
+ /* Translators: Error status and error text. */
1939
+ __( 'Can\'t save settings. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1940
+
1941
+ // Reference: src/modules/settings/api/index.js:54
1942
+ __( 'Network error encountered. Settings not saved.', 'google-analytics-dashboard-for-wp' ),
1943
+
1944
+ // Reference: src/modules/settings/components/input/tab-engagement/exactmetrics-SettingsInputScroll-Lite.vue:20
1945
+ __( 'Scroll Tracking', 'google-analytics-dashboard-for-wp' ),
1946
+
1947
+ // Reference: src/modules/settings/components/input/tab-engagement/exactmetrics-SettingsInputScroll-Lite.vue:21
1948
+ __( 'Scroll depth tracking in web analytics is one of those things you simply must do, especially if you have a content-heavy site.', 'google-analytics-dashboard-for-wp' ),
1949
+
1950
  // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputPerformance-Lite.vue:21
1951
  __( 'Performance', 'google-analytics-dashboard-for-wp' ),
1952
 
1953
  // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputPerformance-Lite.vue:22
1954
  __( '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.', 'google-analytics-dashboard-for-wp' ),
1955
 
1956
+ // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:41
1957
+ // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:32
1958
+ __( 'Miscellaneous', 'google-analytics-dashboard-for-wp' ),
1959
+
1960
+ // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:43
1961
+ // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:34
1962
+ __( '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' ),
1963
+
1964
+ // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:44
1965
+ // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:35
1966
+ __( 'Hide Announcements', 'google-analytics-dashboard-for-wp' ),
1967
 
1968
  // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:36
1969
  __( 'Usage Tracking', 'google-analytics-dashboard-for-wp' ),
1978
  /* Translators: Adds a link to the documentation. */
1979
  __( 'Complete documentation on usage tracking is available %1$shere%2$s.', 'google-analytics-dashboard-for-wp' ),
1980
 
1981
+ // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:14
1982
+ __( 'Hide dashboard widget', 'google-analytics-dashboard-for-wp' ),
 
 
 
1983
 
1984
+ // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:31
1985
+ __( 'Are you sure you want to hide the ExactMetrics Dashboard Widget? ', 'google-analytics-dashboard-for-wp' ),
1986
 
1987
+ // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:33
1988
+ __( 'Yes, hide it!', 'google-analytics-dashboard-for-wp' ),
1989
 
1990
+ // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:34
1991
+ __( 'No, cancel!', 'google-analytics-dashboard-for-wp' ),
 
1992
 
1993
+ // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:40
1994
+ __( 'ExactMetrics Widget Hidden', 'google-analytics-dashboard-for-wp' ),
 
1995
 
1996
+ // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:41
1997
+ __( 'You can re-enable the ExactMetrics widget at any time using the "Screen Options" menu on the top right of this page', 'google-analytics-dashboard-for-wp' ),
1998
 
1999
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:106
2000
  /* Translators: Adds link to the account area to retreive license key. */
2003
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:107
2004
  __( 'Paste your license key here', 'google-analytics-dashboard-for-wp' ),
2005
 
2006
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:108
2007
+ __( 'Google Authentication', 'google-analytics-dashboard-for-wp' ),
2008
+
2009
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:109
2010
  __( 'Verify', 'google-analytics-dashboard-for-wp' ),
2011
 
2025
  __( 'You\'re using ExactMetrics Lite – no license needed. Enjoy!', 'google-analytics-dashboard-for-wp' ),
2026
 
2027
  // Reference: src/modules/settings/components/network/exactmetrics-SettingsInputLicenseNetwork-Lite.vue:23
2028
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:125
2029
+ /* Translators: Adds link to upgrade. */
2030
  __( 'To unlock more features consider %1$supgrading to PRO%2$s.', 'google-analytics-dashboard-for-wp' ),
2031
 
2032
+ // Reference: src/modules/settings/components/network/exactmetrics-SettingsInputLicenseNetwork-Lite.vue:24
2033
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:126
2034
+ __( 'Receive 50% off automatically applied at the checkout!', 'google-analytics-dashboard-for-wp' ),
2035
+
2036
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:128
2037
+ __( 'See all features', 'google-analytics-dashboard-for-wp' ),
2038
+
2039
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:129
2040
  __( 'Complete Upgrade', 'google-analytics-dashboard-for-wp' ),
2041
 
2049
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:166
2050
  __( 'There was an error unlocking ExactMetrics PRO please try again or install manually.', 'google-analytics-dashboard-for-wp' ),
2051
 
2052
+ // Reference: src/modules/addons/components/AddonButton.vue:27
2053
+ __( 'Activating...', 'google-analytics-dashboard-for-wp' ),
2054
+
2055
+ // Reference: src/modules/addons/components/AddonButton.vue:31
2056
+ __( 'Deactivating...', 'google-analytics-dashboard-for-wp' ),
2057
+
2058
+ // Reference: src/modules/addons/components/AddonButton.vue:39
2059
+ __( 'Deactivate', 'google-analytics-dashboard-for-wp' ),
2060
+
2061
+ // Reference: src/modules/settings/components/SettingsAddonUpgrade.vue:33
2062
+ __( 'Upgrade', 'google-analytics-dashboard-for-wp' ),
2063
+
2064
+ // Reference: src/modules/reports/components/reports-overview/ReportOverviewUpsellMobile-Lite.vue:21
2065
+ /* Translators: Make text green. */
2066
+ __( 'Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s', 'google-analytics-dashboard-for-wp' ),
2067
+
2068
+ // Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewUpsell-Lite.vue:32
2069
+ __( '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!', 'google-analytics-dashboard-for-wp' ),
2070
+
2071
+ // Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewUpsell-Lite.vue:33
2072
+ __( 'To unlock more features consider upgrading to PRO.', 'google-analytics-dashboard-for-wp' ),
2073
+
2074
+ // Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewUpsell-Lite.vue:38
2075
+ __( 'Upgrade to', 'google-analytics-dashboard-for-wp' ),
2076
+
2077
+ // Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewDatePicker-Lite.vue:48
2078
+ __( 'Last 30 days', 'google-analytics-dashboard-for-wp' ),
2079
+
2080
+ // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:37
2081
+ /* Translators: Add link to retrieve license key from account. */
2082
+ __( 'Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s.', 'google-analytics-dashboard-for-wp' ),
2083
+
2084
+ // Reference: src/modules/auth/api/index.js:119
2085
+ /* Translators: Error status and error text. */
2086
+ __( 'Can\'t deauthenticate. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
2087
+
2088
+ // Reference: src/modules/auth/api/index.js:150
2089
+ __( 'You appear to be offline. Settings not saved.', 'google-analytics-dashboard-for-wp' ),
2090
+
2091
+ // Reference: src/modules/auth/api/index.js:17
2092
+ /* Translators: Error status and error text. */
2093
+ __( 'Can\'t load authentication details. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
2094
+
2095
+ // Reference: src/modules/auth/api/index.js:42
2096
+ /* Translators: Error status and error text. */
2097
+ __( 'Can\'t authenticate. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
2098
+
2099
+ // Reference: src/modules/auth/api/index.js:67
2100
+ /* Translators: Error status and error text. */
2101
+ __( 'Can\'t reauthenticate. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
2102
+
2103
+ // Reference: src/modules/auth/api/index.js:90
2104
+ /* Translators: Error status and error text. */
2105
+ __( 'Can\'t verify credentials. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
2106
+
2107
+ // Reference: src/modules/reports/components/exactmetrics-ReportsPagination.vue:25
2108
+ __( 'Show', 'google-analytics-dashboard-for-wp' ),
2109
+
2110
+ // Reference: src/modules/reports/components/exactmetrics-ReportsPagination.vue:27
2111
+ /* Translators: The number of results. */
2112
+ __( '%s results', 'google-analytics-dashboard-for-wp' ),
2113
+
2114
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:158
2115
  __( 'Verifying Credentials', 'google-analytics-dashboard-for-wp' ),
2116
 
2146
 
2147
  // Reference: src/modules/settings/components/network/exactmetrics-SettingsInputLicenseNetwork-Lite.vue:21
2148
  /* Translators: Make text bold. */
2149
+ __( 'You\'re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy!', 'google-analytics-dashboard-for-wp' ),
2150
+
2151
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:49
2152
+ __( 'On the next step you will need to re-authenticate with Google Analytics', 'google-analytics-dashboard-for-wp' ),
2153
+
2154
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:49
2155
+ __( 'On the next step you will need to re-authenticate with Google Analytics, please see our post to learn why (don\'t worry', 'google-analytics-dashboard-for-wp' ),
2156
+
2157
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:49
2158
+ __( 'On the next step you will need to re-authenticate with Google Analytics, please see our post to learn why (don\'t worry your site will continue tracking until you do this).', 'google-analytics-dashboard-for-wp' ),
2159
+
2160
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:49
2161
+ __( 'On the next step you will need to re-authenticate with Google Analytics, please see %1$sour post%2$s to learn why (don\'t worry your site will continue tracking until you do this).', 'google-analytics-dashboard-for-wp' ),
2162
+
2163
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:61
2164
+ __( 'See who’s viewing and submitting your forms, so you can increase your conversion rate.', 'google-analytics-dashboard-for-wp' ),
2165
+
2166
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:63
2167
+ __( 'See All Your Important Store Metrics in One Place.', 'google-analytics-dashboard-for-wp' ),
2168
+
2169
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:49
2170
+ __( 'On the next step, you will be asked to re-authenticate with Google Analytics. Please see our detailed post to learn why we need your help %1$shere%2$s. 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.', 'google-analytics-dashboard-for-wp' ),
2171
+
2172
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:49
2173
+ __( '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.', 'google-analytics-dashboard-for-wp' )
2174
  );
2175
  /* THIS IS THE END OF THE GENERATED FILE */
lite/assets/vue/css/chunk-common.css CHANGED
@@ -1 +1 @@
1
- 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-493c7577]{display:block}.exactmetrics-reset-default[data-v-493c7577]{margin-left:5px}.exactmetrics-dark[data-v-2327c40a]{display:block}.exactmetrics-admin-page .exactmetrics-floating-bar{background:#6528f5;color:#fff;font-size:13px;padding:10px;text-align:center;position:relative;margin:-20px -20px 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:15px;position:absolute;right:15px;top:50%;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-db2d076c]: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-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-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)}}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;margin-left:-163px}@media (max-width:959px){.exactmetrics-navigation-bar{padding:0;border:0}}@media (max-width:750px){.exactmetrics-navigation-bar{background:none}}.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{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:0s;animation-duration:0s}.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 .monsterinsigts-swal-icons{position:absolute;left:-35px;top:-15px;width:260px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-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 .monsterinsigts-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 .monsterinsigts-swal-icons [class^=monstericon-]:nth-child(2){left:35px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-].monstericon-exclamation-em-solid:nth-child(2){left:50px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-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 .monsterinsigts-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}
1
+ 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-493c7577]{display:block}.exactmetrics-reset-default[data-v-493c7577]{margin-left:5px}.exactmetrics-dark[data-v-2327c40a]{display:block}.exactmetrics-admin-page .exactmetrics-floating-bar{background:#6528f5;color:#fff;font-size:13px;padding:10px;text-align:center;position:relative;margin:-20px -20px 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:15px;position:absolute;right:15px;top:50%;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-db2d076c]: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-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-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)}}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;margin-left:-163px}@media (max-width:959px){.exactmetrics-navigation-bar{padding:0;border:0}}@media (max-width:750px){.exactmetrics-navigation-bar{background:none}}.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{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 .monsterinsigts-swal-icons{position:absolute;left:-35px;top:-15px;width:260px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-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 .monsterinsigts-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 .monsterinsigts-swal-icons [class^=monstericon-]:nth-child(2){left:35px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-].monstericon-exclamation-em-solid:nth-child(2){left:50px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-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 .monsterinsigts-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}
lite/assets/vue/css/chunk-common.rtl.css CHANGED
@@ -1 +1 @@
1
- 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-493c7577]{display:block}.exactmetrics-reset-default[data-v-493c7577]{margin-right:5px}.exactmetrics-dark[data-v-2327c40a]{display:block}.exactmetrics-admin-page .exactmetrics-floating-bar{background:#6528f5;color:#fff;font-size:13px;padding:10px;text-align:center;position:relative;margin:-20px -20px 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:15px;position:absolute;left:15px;top:50%;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-db2d076c]: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-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-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)}}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;margin-right:-163px}@media (max-width:959px){.exactmetrics-navigation-bar{padding:0;border:0}}@media (max-width:750px){.exactmetrics-navigation-bar{background:none}}.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{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:0s;animation-duration:0s}.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 .monsterinsigts-swal-icons{position:absolute;right:-35px;top:-15px;width:260px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-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 .monsterinsigts-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 .monsterinsigts-swal-icons [class^=monstericon-]:nth-child(2){right:35px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-].monstericon-exclamation-em-solid:nth-child(2){right:50px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-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 .monsterinsigts-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}
1
+ 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-493c7577]{display:block}.exactmetrics-reset-default[data-v-493c7577]{margin-right:5px}.exactmetrics-dark[data-v-2327c40a]{display:block}.exactmetrics-admin-page .exactmetrics-floating-bar{background:#6528f5;color:#fff;font-size:13px;padding:10px;text-align:center;position:relative;margin:-20px -20px 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:15px;position:absolute;left:15px;top:50%;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-db2d076c]: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-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-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)}}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;margin-right:-163px}@media (max-width:959px){.exactmetrics-navigation-bar{padding:0;border:0}}@media (max-width:750px){.exactmetrics-navigation-bar{background:none}}.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{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 .monsterinsigts-swal-icons{position:absolute;right:-35px;top:-15px;width:260px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-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 .monsterinsigts-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 .monsterinsigts-swal-icons [class^=monstericon-]:nth-child(2){right:35px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-].monstericon-exclamation-em-solid:nth-child(2){right:50px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-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 .monsterinsigts-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}
lite/assets/vue/css/widget.css CHANGED
@@ -1,3 +1,3 @@
1
  .exactmetrics-tracking-notice{position:fixed;bottom:20px;right:15px;font-family:Arial,Helvetica,Trebuchet MS,sans-serif;background:#fff;-webkit-box-shadow:0 0 10px 0 #dedede;box-shadow:0 0 10px 0 #dedede;padding:6px 5px;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;width:380px;max-width:calc(100% - 30px);border-radius:6px;z-index:10000}.exactmetrics-tracking-notice h3{font-size:13px;color:#222;font-weight:700;margin:0 0 8px;padding:0;line-height:1;border:none}.exactmetrics-tracking-notice p{font-size:13px;color:#7f7f7f;font-weight:400;margin:0;padding:0;line-height:1.2;border:none}.exactmetrics-tracking-notice p a{color:#6528f5;font-size:13px;line-height:1.2;margin:0;padding:0;text-decoration:underline;font-weight:400}.exactmetrics-tracking-notice p a:hover{color:#37276a;text-decoration:none}.exactmetrics-tracking-notice .exactmetrics-tracking-notice-icon{padding:14px 11px;background-color:#f4f3f7;border-radius:6px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;margin-right:12px}.exactmetrics-tracking-notice .exactmetrics-tracking-notice-close{padding:0;margin:0 3px 0 0;border:none;-webkit-box-shadow:none;box-shadow:none;border-radius:0;color:#7f7f7f;background:rgba(0,0,0,0);line-height:1;-ms-flex-item-align:start;align-self:flex-start;cursor:pointer;font-size:16px;font-weight:400}.exactmetrics-tracking-notice .exactmetrics-fullwidth-mascot{position:relative;left:auto;top:auto;display:block;background-image:url(../img/em-logo.png);width:46px;height:40px;background-repeat:no-repeat;background-size:auto 100%;bottom:100%}.exactmetrics-slide-up-enter-active,.exactmetrics-slide-up-leave-active{-webkit-transition:bottom .7s ease;transition:bottom .7s ease}.exactmetrics-slide-up-enter,.exactmetrics-slide-up-leave-to{bottom:-200px}@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{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-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"}.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}/*!
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 .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-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-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}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-bottom:24px}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:935px){body.exactmetrics-reporting-page .exactmetrics-report-top h2{display:block;margin-bottom:25px}}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:935px){body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{float:none;margin-bottom:25px}}body.exactmetrics-reporting-page .exactmetrics-datepicker{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-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 0 0 80px;position:relative}.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-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}.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_reports_widget,#exactmetrics_reports_widget *{-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}#exactmetrics_reports_widget .inside{margin:0;padding:0}#exactmetrics_reports_widget .exactmetrics-info:focus,#exactmetrics_reports_widget a:focus,#exactmetrics_reports_widget button:focus{outline:none;-webkit-box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}#exactmetrics_reports_widget .handlediv:focus{outline:none;-webkit-box-shadow:none;box-shadow:none}#dashboard-widgets .exactmetrics-widget-toggle,.postbox .inside .exactmetrics-widget-toggle{background-color:rgba(0,0,0,0);border-bottom:1px solid #e9e7ee;cursor:pointer;padding:18px 16px;line-height:1;position:relative}#dashboard-widgets .exactmetrics-widget-toggle:focus,.postbox .inside .exactmetrics-widget-toggle:focus{outline:none;-webkit-box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);z-index:10}#dashboard-widgets .exactmetrics-widget-toggle h2,.postbox .inside .exactmetrics-widget-toggle h2{display:inline-block;font-size:17px;font-weight:700;line-height:1.5;margin:0;padding:0;color:#210f59}#dashboard-widgets .exactmetrics-widget-toggle:after,.postbox .inside .exactmetrics-widget-toggle:after{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f01f";font-size:20px;position:absolute;right:37px;top:28px;color:#210f59;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}#dashboard-widgets .exactmetrics-widget-toggle.exactmetrics-widget-toggle-active,.postbox .inside .exactmetrics-widget-toggle.exactmetrics-widget-toggle-active{border-bottom-color:rgba(0,0,0,0)}#dashboard-widgets .exactmetrics-widget-toggle.exactmetrics-widget-toggle-active:after,.postbox .inside .exactmetrics-widget-toggle.exactmetrics-widget-toggle-active:after{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}#dashboard-widgets .exactmetrics-reports-link,.postbox .inside .exactmetrics-reports-link{cursor:default}#dashboard-widgets .exactmetrics-reports-link>span,.postbox .inside .exactmetrics-reports-link>span{display:none}#dashboard-widgets .exactmetrics-reports-link .exactmetrics-button,.postbox .inside .exactmetrics-reports-link .exactmetrics-button{font-weight:700;padding:16px;margin:12px 16px;display:block;text-align:center;font-size:18px;border-radius:5px;line-height:1}#dashboard-widgets .exactmetrics-btn-group-label:before,.postbox .inside .exactmetrics-btn-group-label:before{color:#9087ac;content:"\f142";display:inline-block;font:normal 20px/1 dashicons;position:absolute;right:10px;text-decoration:none!important;text-indent:-1px;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;top:12px}#dashboard-widgets .exactmetrics-btn-group-label:after,.postbox .inside .exactmetrics-btn-group-label:after{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f04e";color:#37276a;position:absolute;right:34px;top:8px}#dashboard-widgets .exactmetrics-upsell-overlay h3,.postbox .inside .exactmetrics-upsell-overlay h3{color:#210f59;font-size:24px;margin:0 0 24px;font-weight:700;line-height:1.4}#dashboard-widgets .exactmetrics-upsell-overlay .exactmetrics-upsell-subtitle,.postbox .inside .exactmetrics-upsell-overlay .exactmetrics-upsell-subtitle{font-size:15px;line-height:1.75;color:#210f59}#dashboard-widgets .exactmetrics-upsell-overlay .exactmetrics-upsell-content,.postbox .inside .exactmetrics-upsell-overlay .exactmetrics-upsell-content{padding:0;width:100%;border:none}#dashboard-widgets .exactmetrics-upsell-overlay .exactmetrics-upsell-content ul,.postbox .inside .exactmetrics-upsell-overlay .exactmetrics-upsell-content ul{display:none}#dashboard-widgets .exactmetrics-upsell-overlay .exactmetrics-upsell-top,.postbox .inside .exactmetrics-upsell-overlay .exactmetrics-upsell-top{padding:0;position:relative}#dashboard-widgets .exactmetrics-upsell-overlay .exactmetrics-upsell-top .monstericon-unlock,.postbox .inside .exactmetrics-upsell-overlay .exactmetrics-upsell-top .monstericon-unlock{position:absolute;font-size:131px;color:#6528f5;opacity:.05;top:-102px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}#dashboard-widgets .exactmetrics-button-full-report,.postbox .inside .exactmetrics-button-full-report{line-height:1.2;margin-left:15px;height:40px;display:none}#dashboard-widgets .exactmetrics-button-full-report i,.postbox .inside .exactmetrics-button-full-report i{margin-left:10px}.exactmetrics-widget-cog,.exactmetrics-width-button{margin:0 0 0 4px;border:none;cursor:pointer;display:block;height:40px;padding:12px 14px 11px;color:#37276a;background:#e9e7ee;font-size:14px;border-radius:3px}.exactmetrics-widget-cog:focus,.exactmetrics-widget-cog:hover,.exactmetrics-width-button:focus,.exactmetrics-width-button:hover{color:#6528f5}.exactmetrics-widget-dropdown{position:relative;display:inline-block;vertical-align:middle}.exactmetrics-widget-dropdown-content{background:#fff;border:1px solid #d8d8d8;border-radius:5px;cursor:auto;font-weight:400;margin-right:-11px;margin-top:5px;padding:0 10px 10px;position:absolute;right:0;top:100%;width:180px;z-index:999}.exactmetrics-widget-dropdown-content:before{border-color:rgba(0,0,0,0) rgba(0,0,0,0) #d8d8d8;border-style:solid;border-width:0 4px 4px;bottom:100%;content:"";height:0;position:absolute;right:16px;width:0}.exactmetrics-widget-dropdown-content:after{border-color:rgba(0,0,0,0) rgba(0,0,0,0) #fff;border-style:solid;border-width:0 3px 3px;bottom:100%;content:"";height:0;position:absolute;right:17px;width:0}.exactmetrics-widget-dropdown-content>span{color:#999;font-size:10px;margin-top:12px;display:block}.exactmetrics-widget-dropdown-content label{padding-left:16px;color:#393f4c;font-size:12px;position:relative;margin-bottom:4px;display:block}.exactmetrics-widget-dropdown-content label:before{content:"";border:1px solid #d6e2ed;width:10px;height:10px;display:block;position:absolute;left:0;top:3px}.exactmetrics-widget-dropdown-content label input[type=checkbox]{display:none}.exactmetrics-widget-dropdown-content label.exactmetrics-checked:after{content:"";border-color:#6528f5;border-style:solid;border-width:1px 0 0 1px;display:block;width:6px;height:10px;position:absolute;left:3px;top:2px;-webkit-transform:rotate(216deg);-ms-transform:rotate(216deg);transform:rotate(216deg)}.exactmetrics-widget-dropdown-content label:focus{outline:none;-webkit-box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}.exactmetrics-red{color:#d73638}.exactmetrics-green{color:#5cc0a5}.exactmetrics-btn-group{position:relative;display:inline-block;vertical-align:middle;margin-right:0}.exactmetrics-btn-group .exactmetrics-btn-group-label,.exactmetrics-btn-group .exactmetrics-btn-group-list-button{background:#e9e7ee;border:none;border-radius:3px;cursor:pointer;display:inline-block;font-size:15px;font-weight:500;line-height:1.75;height:40px;position:relative;text-align:left;width:100%;padding:8px 20px 6px;margin:0;color:#37276a;min-width:170px}.exactmetrics-btn-group-list{position:absolute;top:100%;z-index:1000;right:0;left:0}.exactmetrics-btn-group-list .exactmetrics-btn-group-list-button{border-radius:0;border-width:0 0 1px}.exactmetrics-btn-group-list .exactmetrics-btn-group-list-button.exactmetrics-btn-group-list-button-selected{background:#6528f5;color:#fff}.exactmetrics-btn-group-list .exactmetrics-btn-group-list-button:last-child{border-radius:0 0 3px 3px}.exactmetrics-btn-group-open .exactmetrics-btn-group-label{border-radius:5px 5px 0 0}#exactmetrics_reports_widget.closed .inside{display:block}#exactmetrics_reports_widget .exactmetrics-widget-settings{position:absolute;bottom:100%;right:16px;margin-bottom:17px;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}@media (max-width:782px){#exactmetrics_reports_widget .exactmetrics-widget-settings{right:10px}}#exactmetrics_reports_widget .toggle-indicator{display:none}#exactmetrics_reports_widget .exactmetrics-not-authenticated-notice{-webkit-box-shadow:none;box-shadow:none;position:relative;width:100%;margin:0;left:0;top:0;padding-top:50px;border:none}#exactmetrics_reports_widget .exactmetrics-not-authenticated-notice h3{font-size:18px;font-weight:700}#exactmetrics_reports_widget .hndle{font-size:16px;color:#210f59;position:relative;padding-left:60px;padding-top:25px;padding-bottom:23px;line-height:1.5}#exactmetrics_reports_widget .hndle:before{content:"";width:32px;height:28px;background-image:url(../img/em-logo.png);background-size:auto 28px;position:absolute;left:18px;top:22px;background-position:0 0}@media (max-width:426px),(min-width:800px) and (max-width:924px),(min-width:961px) and (max-width:1049px){#exactmetrics_reports_widget .hndle>span{visibility:hidden}}.exactmetrics-report-tabs{margin:20px}.exactmetrics-report-infobox-row{margin:0 20px 20px;-ms-flex-flow:wrap;flex-flow:wrap;padding:24px}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:100%;padding:12px 10px 10px 0;border-left-color:#d6e2ed}@media (min-width:783px){.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:50%;padding-left:15px}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child,.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:nth-child(2){border-bottom:1px solid #d6e2ed}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:nth-child(3){border-left:none;padding-left:0}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child,.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:nth-child(2){padding-top:0}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:nth-child(3),.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:nth-child(4){padding-bottom:0}}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-info{top:12px;right:15px}.exactmetrics-reports-infobox-number{font-size:36px;float:none}.exactmetrics-reports-infobox-compare,.exactmetrics-reports-infobox-prev{float:none}.exactmetrics-reports-infobox-prev{margin-top:15px}.exactmetrics-info{color:#b6c9da;cursor:help;font-size:15px}.exactmetrics-report-tabs-navigation i{display:none}.exactmetrics-widget-regular-width .exactmetrics-report-tabs-navigation button{font-size:14px;padding:11px 9px 12px;line-height:1;text-align:left;font-weight:400}.exactmetrics-widget-regular-width .exactmetrics-report-tabs-navigation button.exactmetrics-active-tab-button{padding-top:9px}.exactmetrics-widget-regular-width .exactmetrics-table-box-list{padding:0 16px}.exactmetrics-widget-regular-width .exactmetrics-table-list-item{font-size:14px}.exactmetrics-widget-regular-width .exactmetrics-table-list-item .exactmetrics-reports-list-count{color:#9087ac}.exactmetrics-widget-regular-width .exactmetrics-table-list-item .exactmetrics-reports-list-number{color:#210f59;font-weight:500}.exactmetrics-widget-regular-width .exactmetrics-table-box-table td,.exactmetrics-widget-regular-width .exactmetrics-table-box-table td:first-child,.exactmetrics-widget-regular-width .exactmetrics-table-box-table th,.exactmetrics-widget-regular-width .exactmetrics-table-box-table th:first-child{padding-left:12px;padding-right:12px}.exactmetrics-table-list-item{padding:7px 20px 6px;min-height:39px}.exactmetrics-widget-report-title .exactmetrics-info{margin-left:10px;color:#9087ac;vertical-align:top}.exactmetrics-widget-content{border-bottom:1px solid #eee;height:100%}.exactmetrics-widget-content .exactmetrics-table-box{padding-top:0;border:none}.exactmetrics-dashboard-widget-page.exactmetrics-blur .exactmetrics-widget-content{height:auto}.exactmetrics-button{background:#6528f5;border:solid #6528f5;border-width:1px 1px 2px;border-radius:3px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none}.exactmetrics-button:focus,.exactmetrics-button:hover{background-color:#37276a;border-color:#37276a;color:#fff}.exactmetrics-button.exactmetrics-button-green{background:#32a27a;border-color:#32a27a;color:#fff}.exactmetrics-button.exactmetrics-button-green:focus,.exactmetrics-button.exactmetrics-button-green:hover{background-color:#19865f;border-color:#19865f;color:#fff}.exactmetrics-table-box-footer,.exactmetrics-table-box-pagination{display:none}.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}.exactmetrics-buttons-toggle .exactmetrics-button:hover{background:#fff}.exactmetrics-buttons-toggle .exactmetrics-button:focus{z-index:10;position:relative}.exactmetrics-buttons-toggle .exactmetrics-button:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}.exactmetrics-buttons-toggle .exactmetrics-button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;border-right:1px solid #d6e2ed}.exactmetrics-buttons-toggle .exactmetrics-button.exactmetrics-selected-interval{background:#fff;color:#6528f5;font-weight:700}.exactmetrics-reports-pie-chart{border:none;width:100%;padding-top:0}.exactmetrics-reports-pie-chart:first-child{border:none}.exactmetrics-reports-pie-chart .exactmetrics-reports-pie-chart-holder{padding:0}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart-legend{top:100%;margin-top:20px;left:50%;width:80%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);position:relative}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart-legend .exactmetrics-pie-chart-legend-text{min-width:75px}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart{margin:0 auto}.exactmetrics-reports-pie-chart-holder{padding-left:16px}.exactmetrics-upsell-overlay{position:relative;-webkit-transform:none;-ms-transform:none;transform:none;left:0;top:0;-webkit-box-shadow:none;box-shadow:none;border-radius:0;border:none;background:radial-gradient(181.87% 104.55% at 50.04% 50.07%,#fff 0,hsla(0,0%,100%,0) 100%),rgba(101,40,245,.1);padding:105px 32px 75px;text-align:center}.exactmetrics-upsell-overlay .exactmetrics-button{color:#fff;font-size:14px;line-height:1.2;padding:12px 20px 11px}.exactmetrics-ecommerce-overview{padding-top:20px}.exactmetrics-ecommerce-overview .exactmetrics-upsell-overlay{padding-top:0}.exactmetrics-report-title{font-size:16px}.exactmetrics-widget-loading{width:auto;height:auto;margin:0 20px 20px;padding:70px 50px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:#f4f3f7;border-radius:10px;text-align:center}.exactmetrics-table-box .exactmetrics-info{top:20px;right:20px}.exactmetrics-reports-pie-chart .exactmetrics-info,.exactmetrics-reports-pie-chart .exactmetrics-report-title,.exactmetrics-table-box .exactmetrics-info,.exactmetrics-table-box .exactmetrics-report-title{display:none}.exactmetrics-hide-button{border:none;background:none;padding:0;margin:5px 0 0;color:#9087ac;cursor:pointer}.exactmetrics-hide-button:focus,.exactmetrics-hide-button:hover{color:#393f4c}.exactmetrics-hide-button i{font-size:16px}.exactmetrics-widget-full-width .exactmetrics-hide-button i{font-size:20px}.exactmetrics-report-tabs .exactmetrics-report-tabs-content{padding:10px 5px 7px 9px}.exactmetrics-interval-full-dates{display:none}#exactmetrics_reports_widget.exactmetrics-widget-full-width{margin:16px 0;border-width:1px 0 1px 1px;border-color:#d6e2ed}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-dashboard-widget-page{padding-top:50px}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-table-box{padding-top:0!important}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-content>div:not(.exactmetrics-widget-loading){height:auto!important}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-width-button{margin-left:auto}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-report-infobox-row{margin-left:0;margin-right:0}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-button-full-report{display:inline-block}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-reports-pie-chart .exactmetrics-info,#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-reports-pie-chart .exactmetrics-report-title,#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-table-box .exactmetrics-info,#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-table-box .exactmetrics-report-title{display:block}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-reports-pie-chart .exactmetrics-info,#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-reports-pie-chart .exactmetrics-report-title,#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-table-box .exactmetrics-info,#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-table-box .exactmetrics-report-title{display:none}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-report-tabs .exactmetrics-report-tabs-content{padding-left:0;padding-bottom:0}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-report-element{border-color:#d6e2ed;border-style:solid;border-width:0 1px 1px 0;display:block;padding:32px;width:33.3333333%;margin:0}@media (max-width:1280px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-report-element{width:calc(50% - 10px)}}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-report-element{width:100%;padding:0;border:none;margin-right:0;margin-top:0}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-report-element:first-child{width:100%;padding:8px 0 0;margin:0;border-color:#d6e2ed;border-style:solid;border-width:0 1px 1px 0}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-report-element:first-child{border:none}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-report-overview .exactmetrics-widget-toggle{display:none}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-report-overview .exactmetrics-widget-toggle{display:block}}@media (min-width:783px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-report-overview .exactmetrics-report-infobox-row{margin:0 32px}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-report-overview .exactmetrics-reports-infobox{width:25%;padding-top:0;padding-bottom:0;padding-left:5%;border-bottom:none}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-report-overview .exactmetrics-reports-infobox:first-child{padding-left:calc(5% - 20px)}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-report-overview .exactmetrics-reports-infobox:nth-child(3){border-left:1px solid #d6e2ed}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-content{border-bottom:0}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-content h3.exactmetrics-report-title,#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-content h3.exactmetrics-report-title+.exactmetrics-info{display:none}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-content{padding-left:24px;padding-right:24px;padding-bottom:24px}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-report-tabs{margin:24px 32px 0}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-report-tabs{margin-left:0;margin-right:0}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-toggle{padding:0;border:0;margin-bottom:32px}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-toggle{padding:0 60px 0 24px}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-toggle:after{display:none}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-toggle:after{display:block;top:11px;right:30px}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-content>div:not(.exactmetrics-widget-loading) .exactmetrics-upsell-overlay{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;height:100%}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-tips{display:none}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-accordion{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;padding:0;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:-1px}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-accordion:after{width:33.333333%;display:block;content:""}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-accordion{padding:0}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .hndle{font-size:24px;padding-left:89px;padding-top:33px;padding-bottom:25px;line-height:1.4;margin:0;border-bottom:0;border-right:1px solid #d6e2ed}#exactmetrics_reports_widget.exactmetrics-widget-full-width .hndle:before{width:43px;height:38px;background-size:auto 38px;left:26px;top:32px}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-settings{right:32px}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-settings .exactmetrics-btn-group{margin-right:10px}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-settings{left:24px;right:24px;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left;top:14px}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-table-box-table th{padding-top:0}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-interval-full-dates{display:inline;margin:0 50px 0 0;font-weight:400}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-interval-full-dates:before{content:": ";font-weight:500}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-interval-full-dates{display:none}}.exactmetrics-report-2-columns.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child,.exactmetrics-report-2-columns.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:nth-child(2){border-bottom:0}.exactmetrics-fullwidth-mascot,.exactmetrics-fullwidth-report-title{display:none}.exactmetrics-blur .exactmetrics-report-row{-webkit-filter:none;filter:none}#dashboard-widgets .exactmetrics-widget-footer{padding:11px 12px;line-height:1;font-size:13px;color:#72777c}#dashboard-widgets .exactmetrics-widget-footer .exactmetrics-dark{color:#23282c;font-weight:500}#dashboard-widgets .exactmetrics-widget-footer a{margin-right:10px;text-decoration:underline;color:#1c75a6}#dashboard-widgets .exactmetrics-widget-footer a:focus,#dashboard-widgets .exactmetrics-widget-footer a:hover{text-decoration:none;color:#393f4c}@media (max-width:782px){#dashboard-widgets .exactmetrics-upsell-overlay{width:100%}}#dashboard-widgets .exactmetrics-upsell-overlay a{text-decoration:underline}#dashboard-widgets .exactmetrics-upsell-overlay a.exactmetrics-button,#dashboard-widgets .exactmetrics-upsell-overlay a:focus,#dashboard-widgets .exactmetrics-upsell-overlay a:hover{text-decoration:none}.exactmetrics-flex{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-table-item-content{word-break:break-all}.exactmetrics-table-box.exactmetrics-table-box-mobile .exactmetrics-reports-list-title{width:calc(100% - 30px);text-overflow:ellipsis;overflow:hidden}#exactmetrics-chartjs-line-overview-tooltip{margin-top:-60px}.folded #exactmetrics-chartjs-line-overview-tooltip{margin-left:-118px}#exactmetrics_reports_widget .exactmetrics-widget-error{padding:50px 25px;text-align:center}#exactmetrics_reports_widget .exactmetrics-widget-error .exactmetrics-error-title{font-weight:700;font-size:24px}#exactmetrics_reports_widget .exactmetrics-widget-error .exactmetrics-error-content{font-size:16px}#exactmetrics_reports_widget .exactmetrics-widget-error .exactmetrics-error-footer{margin:35px 0 0;padding:15px 0 0;border-top:1px solid #ccc}#exactmetrics_reports_widget .exactmetrics-widget-error .exactmetrics-error-footer a{color:#6528f5}#exactmetrics_reports_widget .exactmetrics-widget-error .exactmetrics-error-footer a:focus,#exactmetrics_reports_widget .exactmetrics-widget-error .exactmetrics-error-footer a:hover{color:#37276a}#exactmetrics_reports_widget .exactmetrics-widget-error .swal2-icon,#exactmetrics_reports_widget .exactmetrics-widget-error .swal2-icon *{-webkit-box-sizing:content-box;box-sizing:content-box}#exactmetrics_reports_widget .mi-dw-not-authed{padding:20px;text-align:center}#exactmetrics_reports_widget .mi-dw-not-authed h2{font-size:18px;margin:0}#exactmetrics_reports_widget .mi-dw-not-authed p{font-size:14px;margin:18px auto;max-width:280px}#exactmetrics_reports_widget .mi-dw-btn-large{background:#6528f5;border-radius:5px;color:#fff;display:inline-block;font-size:14px;line-height:1.2;margin-bottom:10px;padding:16px 23px 14px;text-decoration:none}#exactmetrics_reports_widget .mi-dw-btn-large:hover{color:#fff}.exactmetrics-swal .swal2-title,.exactmetrics-widget-error .swal2-title{line-height:1.2}.exactmetrics-swal .swal2-icon.swal2-error,.exactmetrics-swal .swal2-icon.swal2-info,.exactmetrics-widget-error .swal2-icon.swal2-error,.exactmetrics-widget-error .swal2-icon.swal2-info{border:none;border-radius:0}.exactmetrics-swal .swal2-icon.swal2-error:before,.exactmetrics-swal .swal2-icon.swal2-info:before,.exactmetrics-widget-error .swal2-icon.swal2-error:before,.exactmetrics-widget-error .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-swal .swal2-icon .swal2-icon-text,.exactmetrics-swal .swal2-icon .swal2-x-mark,.exactmetrics-widget-error .swal2-icon .swal2-icon-text,.exactmetrics-widget-error .swal2-icon .swal2-x-mark{display:none}.exactmetrics-swal .swal2-styled,.exactmetrics-widget-error .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-swal .swal2-styled.swal2-confirm,.exactmetrics-widget-error .swal2-styled.swal2-confirm{background:#6528f5}.exactmetrics-swal .swal2-styled.swal2-confirm:focus,.exactmetrics-swal .swal2-styled.swal2-confirm:hover,.exactmetrics-widget-error .swal2-styled.swal2-confirm:focus,.exactmetrics-widget-error .swal2-styled.swal2-confirm:hover{background-color:#37276a;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-swal .swal2-styled.swal2-cancel,.exactmetrics-widget-error .swal2-styled.swal2-cancel{background:#e9e7ee;color:#37276a}.exactmetrics-swal .swal2-styled.swal2-cancel:focus,.exactmetrics-swal .swal2-styled.swal2-cancel:hover,.exactmetrics-widget-error .swal2-styled.swal2-cancel:focus,.exactmetrics-widget-error .swal2-styled.swal2-cancel:hover{background-color:#f4f3f7;color:#37276a;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-swal .swal2-popup,.exactmetrics-widget-error .swal2-popup{border-radius:10px;padding:40px}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-accordion-lite .exactmetrics-widget-report-overview .exactmetrics-report-infobox-row{margin:0 32px 20px}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-accordion-lite .exactmetrics-widget-report-overview .exactmetrics-report-infobox-row{margin-left:0;margin-right:0}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-accordion-lite .exactmetrics-upsell-overlay{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;width:100%;margin-bottom:32px}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-accordion-lite .exactmetrics-upsell-overlay .exactmetrics-upsell-content{height:100%;background:rgba(0,0,0,0)}.exactmetrics-faded{opacity:.5}.exactmetrics-lite-overview-buttons{border-top:1px solid #d6e2ed;background:#f9fbff;padding:20px}.exactmetrics-lite-overview-buttons .exactmetrics-button{margin-top:0;font-size:13px;padding:8px 10px}#dashboard-widgets .exactmetrics-tips{background:#6528f5;margin:0 20px 20px;padding:16px;color:#fff;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;border-radius:5px;font-size:15px;line-height:1.5}#dashboard-widgets .exactmetrics-tips .monstericon-star{color:#fff;font-size:15px;margin-right:11px;-ms-flex-item-align:start;align-self:start}#dashboard-widgets .exactmetrics-tips a{color:#fff;text-decoration:underline}#dashboard-widgets .exactmetrics-tips a:hover{text-decoration:none}.exactmetrics-widget-report-title:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:40px;height:40px;background:rgba(33,15,89,.1);text-align:center;line-height:40px;font-size:15px;color:#4d3f7a;border-radius:50%;margin-right:20px}.exactmetrics-widget-report-overview .exactmetrics-widget-content>div{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.exactmetrics-widget-report-overview .exactmetrics-widget-report-title:before{content:"\f05b"}.exactmetrics-widget-accordion-lite .exactmetrics-widget-report-overview .exactmetrics-widget-content>div{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.exactmetrics-widget-report-landingpages .exactmetrics-widget-report-title:before,.exactmetrics-widget-report-toppages .exactmetrics-widget-report-title:before{content:"\f028"}.exactmetrics-widget-report-newvsreturn .exactmetrics-widget-report-title:before{content:"\f04c"}.exactmetrics-widget-report-devices .exactmetrics-widget-report-title:before{content:"\f044"}.exactmetrics-widget-report-exitpages .exactmetrics-widget-report-title:before{content:"\f055"}.exactmetrics-widget-report-affiliatelinks .exactmetrics-widget-report-title:before,.exactmetrics-widget-report-conversions .exactmetrics-widget-report-title:before,.exactmetrics-widget-report-outboundlinks .exactmetrics-widget-report-title:before{content:"\004a"}.exactmetrics-widget-report-downloadlinks .exactmetrics-widget-report-title:before{content:"\f035"}.exactmetrics-widget-report-infobox .exactmetrics-widget-report-title:before{content:"\f040"}.exactmetrics-widget-report-products .exactmetrics-widget-report-title:before{content:"\f03f"}.exactmetrics-widget-report-addremove .exactmetrics-widget-report-title:before{content:"\f033"}.exactmetrics-widget-report-days .exactmetrics-widget-report-title:before{content:"\f04e"}.exactmetrics-widget-report-sessions .exactmetrics-widget-report-title:before{content:"\f03e"}.exactmetrics-pie-chart-tooltip{left:50%;margin-left:-90px}.exactmetrics-dashboard-widget-page .exactmetrics-lite-datepicker{text-align:center;padding:12px 12px 27px;-webkit-box-shadow:0 40px 30px rgba(33,15,89,.1);box-shadow:0 40px 30px rgba(33,15,89,.1);background:#fff;border-radius:3px;border:1px solid #f4f3f7;margin-top:5px}.exactmetrics-dashboard-widget-page .exactmetrics-lite-datepicker p{color:#210f59;font-size:15px;line-height:1.5;font-weight:700}.exactmetrics-dashboard-widget-page .exactmetrics-lite-datepicker .exactmetrics-button-text{color:#32a27a;display:inline-block;width:auto;background:rgba(0,0,0,0);border:none;text-decoration:underline;padding-left:0;padding-right:0}.exactmetrics-dashboard-widget-page .exactmetrics-lite-datepicker .exactmetrics-button-text i{margin-left:10px}.exactmetrics-dashboard-widget-page .exactmetrics-lite-datepicker .exactmetrics-button-text:focus,.exactmetrics-dashboard-widget-page .exactmetrics-lite-datepicker .exactmetrics-button-text:hover{color:#19865f;text-decoration:none}.exactmetrics-widget-regular-width .exactmetrics-lite-datepicker p br{display:none}
1
  .exactmetrics-tracking-notice{position:fixed;bottom:20px;right:15px;font-family:Arial,Helvetica,Trebuchet MS,sans-serif;background:#fff;-webkit-box-shadow:0 0 10px 0 #dedede;box-shadow:0 0 10px 0 #dedede;padding:6px 5px;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;width:380px;max-width:calc(100% - 30px);border-radius:6px;z-index:10000}.exactmetrics-tracking-notice h3{font-size:13px;color:#222;font-weight:700;margin:0 0 8px;padding:0;line-height:1;border:none}.exactmetrics-tracking-notice p{font-size:13px;color:#7f7f7f;font-weight:400;margin:0;padding:0;line-height:1.2;border:none}.exactmetrics-tracking-notice p a{color:#6528f5;font-size:13px;line-height:1.2;margin:0;padding:0;text-decoration:underline;font-weight:400}.exactmetrics-tracking-notice p a:hover{color:#37276a;text-decoration:none}.exactmetrics-tracking-notice .exactmetrics-tracking-notice-icon{padding:14px 11px;background-color:#f4f3f7;border-radius:6px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;margin-right:12px}.exactmetrics-tracking-notice .exactmetrics-tracking-notice-close{padding:0;margin:0 3px 0 0;border:none;-webkit-box-shadow:none;box-shadow:none;border-radius:0;color:#7f7f7f;background:rgba(0,0,0,0);line-height:1;-ms-flex-item-align:start;align-self:flex-start;cursor:pointer;font-size:16px;font-weight:400}.exactmetrics-tracking-notice .exactmetrics-fullwidth-mascot{position:relative;left:auto;top:auto;display:block;background-image:url(../img/em-logo.png);width:46px;height:40px;background-repeat:no-repeat;background-size:auto 100%;bottom:100%}.exactmetrics-slide-up-enter-active,.exactmetrics-slide-up-leave-active{-webkit-transition:bottom .7s ease;transition:bottom .7s ease}.exactmetrics-slide-up-enter,.exactmetrics-slide-up-leave-to{bottom:-200px}@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{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-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"}.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}/*!
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 .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-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-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}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-bottom:24px}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:935px){body.exactmetrics-reporting-page .exactmetrics-report-top h2{display:block;margin-bottom:25px}}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:935px){body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{float:none;margin-bottom:25px}}body.exactmetrics-reporting-page .exactmetrics-datepicker{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-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 0 0 80px;position:relative}.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-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}.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_reports_widget,#exactmetrics_reports_widget *{-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}#exactmetrics_reports_widget .inside{margin:0;padding:0}#exactmetrics_reports_widget .exactmetrics-info:focus,#exactmetrics_reports_widget a:focus,#exactmetrics_reports_widget button:focus{outline:none;-webkit-box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}#exactmetrics_reports_widget .handlediv:focus{outline:none;-webkit-box-shadow:none;box-shadow:none}#dashboard-widgets .exactmetrics-widget-toggle,.postbox .inside .exactmetrics-widget-toggle{background-color:rgba(0,0,0,0);border-bottom:1px solid #e9e7ee;cursor:pointer;padding:18px 16px;line-height:1;position:relative}#dashboard-widgets .exactmetrics-widget-toggle:focus,.postbox .inside .exactmetrics-widget-toggle:focus{outline:none;-webkit-box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);z-index:10}#dashboard-widgets .exactmetrics-widget-toggle h2,.postbox .inside .exactmetrics-widget-toggle h2{display:inline-block;font-size:17px;font-weight:700;line-height:1.5;margin:0;padding:0;color:#210f59}#dashboard-widgets .exactmetrics-widget-toggle:after,.postbox .inside .exactmetrics-widget-toggle:after{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f01f";font-size:20px;position:absolute;right:37px;top:28px;color:#210f59;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}#dashboard-widgets .exactmetrics-widget-toggle.exactmetrics-widget-toggle-active,.postbox .inside .exactmetrics-widget-toggle.exactmetrics-widget-toggle-active{border-bottom-color:rgba(0,0,0,0)}#dashboard-widgets .exactmetrics-widget-toggle.exactmetrics-widget-toggle-active:after,.postbox .inside .exactmetrics-widget-toggle.exactmetrics-widget-toggle-active:after{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}#dashboard-widgets .exactmetrics-reports-link,.postbox .inside .exactmetrics-reports-link{cursor:default}#dashboard-widgets .exactmetrics-reports-link>span,.postbox .inside .exactmetrics-reports-link>span{display:none}#dashboard-widgets .exactmetrics-reports-link .exactmetrics-button,.postbox .inside .exactmetrics-reports-link .exactmetrics-button{font-weight:700;padding:16px;margin:12px 16px;display:block;text-align:center;font-size:18px;border-radius:5px;line-height:1;background:#efe9fe;color:#6528f5;border:none}#dashboard-widgets .exactmetrics-reports-link .exactmetrics-button:focus,#dashboard-widgets .exactmetrics-reports-link .exactmetrics-button:hover,.postbox .inside .exactmetrics-reports-link .exactmetrics-button:focus,.postbox .inside .exactmetrics-reports-link .exactmetrics-button:hover{color:#fff;background:#6528f5}#dashboard-widgets .exactmetrics-btn-group-label:before,.postbox .inside .exactmetrics-btn-group-label:before{color:#9087ac;content:"\f142";display:inline-block;font:normal 20px/1 dashicons;position:absolute;right:10px;text-decoration:none!important;text-indent:-1px;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;top:12px}#dashboard-widgets .exactmetrics-btn-group-label:after,.postbox .inside .exactmetrics-btn-group-label:after{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f04e";color:#37276a;position:absolute;right:34px;top:8px}#dashboard-widgets .exactmetrics-upsell-overlay h3,.postbox .inside .exactmetrics-upsell-overlay h3{color:#210f59;font-size:24px;margin:0 0 24px;font-weight:700;line-height:1.4}#dashboard-widgets .exactmetrics-upsell-overlay .exactmetrics-upsell-subtitle,.postbox .inside .exactmetrics-upsell-overlay .exactmetrics-upsell-subtitle{font-size:15px;line-height:1.75;color:#210f59}#dashboard-widgets .exactmetrics-upsell-overlay .exactmetrics-upsell-content,.postbox .inside .exactmetrics-upsell-overlay .exactmetrics-upsell-content{padding:0;width:100%;border:none}#dashboard-widgets .exactmetrics-upsell-overlay .exactmetrics-upsell-content ul,.postbox .inside .exactmetrics-upsell-overlay .exactmetrics-upsell-content ul{display:none}#dashboard-widgets .exactmetrics-upsell-overlay .exactmetrics-upsell-top,.postbox .inside .exactmetrics-upsell-overlay .exactmetrics-upsell-top{padding:0;position:relative}#dashboard-widgets .exactmetrics-upsell-overlay .exactmetrics-upsell-top .monstericon-unlock,.postbox .inside .exactmetrics-upsell-overlay .exactmetrics-upsell-top .monstericon-unlock{position:absolute;font-size:131px;color:#6528f5;opacity:.05;top:-102px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}#dashboard-widgets .exactmetrics-button-full-report,.postbox .inside .exactmetrics-button-full-report{line-height:1.2;margin-left:15px;height:40px;display:none}#dashboard-widgets .exactmetrics-button-full-report i,.postbox .inside .exactmetrics-button-full-report i{margin-left:10px}.exactmetrics-widget-cog,.exactmetrics-width-button{margin:0 0 0 4px;border:none;cursor:pointer;display:block;height:40px;padding:12px 14px 11px;color:#37276a;background:#e9e7ee;font-size:14px;border-radius:3px}.exactmetrics-widget-cog:focus,.exactmetrics-widget-cog:hover,.exactmetrics-width-button:focus,.exactmetrics-width-button:hover{color:#6528f5}.exactmetrics-widget-dropdown{position:relative;display:inline-block;vertical-align:middle}.exactmetrics-widget-dropdown-content{background:#fff;border:1px solid #d8d8d8;border-radius:5px;cursor:auto;font-weight:400;margin-right:-11px;margin-top:5px;padding:0 10px 10px;position:absolute;right:0;top:100%;width:180px;z-index:999}.exactmetrics-widget-dropdown-content:before{border-color:rgba(0,0,0,0) rgba(0,0,0,0) #d8d8d8;border-style:solid;border-width:0 4px 4px;bottom:100%;content:"";height:0;position:absolute;right:16px;width:0}.exactmetrics-widget-dropdown-content:after{border-color:rgba(0,0,0,0) rgba(0,0,0,0) #fff;border-style:solid;border-width:0 3px 3px;bottom:100%;content:"";height:0;position:absolute;right:17px;width:0}.exactmetrics-widget-dropdown-content>span{color:#999;font-size:10px;margin-top:12px;display:block}.exactmetrics-widget-dropdown-content label{padding-left:16px;color:#393f4c;font-size:12px;position:relative;margin-bottom:4px;display:block}.exactmetrics-widget-dropdown-content label:before{content:"";border:1px solid #d6e2ed;width:10px;height:10px;display:block;position:absolute;left:0;top:3px}.exactmetrics-widget-dropdown-content label input[type=checkbox]{display:none}.exactmetrics-widget-dropdown-content label.exactmetrics-checked:after{content:"";border-color:#6528f5;border-style:solid;border-width:1px 0 0 1px;display:block;width:6px;height:10px;position:absolute;left:3px;top:2px;-webkit-transform:rotate(216deg);-ms-transform:rotate(216deg);transform:rotate(216deg)}.exactmetrics-widget-dropdown-content label:focus{outline:none;-webkit-box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}.exactmetrics-red{color:#d73638}.exactmetrics-green{color:#5cc0a5}.exactmetrics-btn-group{position:relative;display:inline-block;vertical-align:middle;margin-right:0}.exactmetrics-btn-group .exactmetrics-btn-group-label,.exactmetrics-btn-group .exactmetrics-btn-group-list-button{background:#e9e7ee;border:none;border-radius:3px;cursor:pointer;display:inline-block;font-size:15px;font-weight:500;line-height:1.75;height:40px;position:relative;text-align:left;width:100%;padding:8px 20px 6px;margin:0;color:#37276a;min-width:170px}.exactmetrics-btn-group-list{position:absolute;top:100%;z-index:1000;right:0;left:0}.exactmetrics-btn-group-list .exactmetrics-btn-group-list-button{border-radius:0;border-width:0 0 1px}.exactmetrics-btn-group-list .exactmetrics-btn-group-list-button.exactmetrics-btn-group-list-button-selected{background:#6528f5;color:#fff}.exactmetrics-btn-group-list .exactmetrics-btn-group-list-button:last-child{border-radius:0 0 3px 3px}.exactmetrics-btn-group-open .exactmetrics-btn-group-label{border-radius:5px 5px 0 0}#exactmetrics_reports_widget.closed .inside{display:block}#exactmetrics_reports_widget .exactmetrics-widget-settings{position:absolute;bottom:100%;right:16px;margin-bottom:17px;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}@media (max-width:782px){#exactmetrics_reports_widget .exactmetrics-widget-settings{right:10px}}#exactmetrics_reports_widget .toggle-indicator{display:none}#exactmetrics_reports_widget .exactmetrics-not-authenticated-notice{-webkit-box-shadow:none;box-shadow:none;position:relative;width:100%;margin:0;left:0;top:0;padding-top:50px;border:none}#exactmetrics_reports_widget .exactmetrics-not-authenticated-notice h3{font-size:18px;font-weight:700}#exactmetrics_reports_widget .hndle{font-size:16px;color:#210f59;position:relative;padding-left:60px;padding-top:25px;padding-bottom:23px;line-height:1.5}#exactmetrics_reports_widget .hndle:before{content:"";width:32px;height:28px;background-image:url(../img/em-logo.png);background-size:auto 28px;position:absolute;left:18px;top:22px;background-position:0 0}@media (max-width:426px),(min-width:800px) and (max-width:924px),(min-width:961px) and (max-width:1049px){#exactmetrics_reports_widget .hndle>span{visibility:hidden}}.exactmetrics-report-tabs{margin:20px}.exactmetrics-report-infobox-row{margin:0 20px 20px;-ms-flex-flow:wrap;flex-flow:wrap;padding:24px}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:100%;padding:12px 10px 10px 0;border-left-color:#d6e2ed}@media (min-width:783px){.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:50%;padding-left:15px}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child,.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:nth-child(2){border-bottom:1px solid #d6e2ed}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:nth-child(3){border-left:none;padding-left:0}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child,.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:nth-child(2){padding-top:0}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:nth-child(3),.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:nth-child(4){padding-bottom:0}}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-info{top:12px;right:15px}.exactmetrics-reports-infobox-number{font-size:36px;float:none}.exactmetrics-reports-infobox-compare,.exactmetrics-reports-infobox-prev{float:none}.exactmetrics-reports-infobox-prev{margin-top:15px}.exactmetrics-info{color:#b6c9da;cursor:help;font-size:15px}.exactmetrics-report-tabs-navigation i{display:none}.exactmetrics-widget-regular-width .exactmetrics-report-tabs-navigation button{font-size:14px;padding:11px 9px 12px;line-height:1;text-align:left;font-weight:400}.exactmetrics-widget-regular-width .exactmetrics-report-tabs-navigation button.exactmetrics-active-tab-button{padding-top:9px}.exactmetrics-widget-regular-width .exactmetrics-table-box-list{padding:0 16px}.exactmetrics-widget-regular-width .exactmetrics-table-list-item{font-size:14px}.exactmetrics-widget-regular-width .exactmetrics-table-list-item .exactmetrics-reports-list-count{color:#9087ac}.exactmetrics-widget-regular-width .exactmetrics-table-list-item .exactmetrics-reports-list-number{color:#210f59;font-weight:500}.exactmetrics-widget-regular-width .exactmetrics-table-box-table td,.exactmetrics-widget-regular-width .exactmetrics-table-box-table td:first-child,.exactmetrics-widget-regular-width .exactmetrics-table-box-table th,.exactmetrics-widget-regular-width .exactmetrics-table-box-table th:first-child{padding-left:12px;padding-right:12px}.exactmetrics-table-list-item{padding:7px 20px 6px;min-height:39px}.exactmetrics-widget-report-title .exactmetrics-info{margin-left:10px;color:#9087ac;vertical-align:top}@media (max-width:767px){.exactmetrics-widget-report-title .exactmetrics-info{display:none}}.exactmetrics-widget-content{border-bottom:1px solid #eee;height:100%}.exactmetrics-widget-content .exactmetrics-table-box{padding-top:0;border:none}.exactmetrics-dashboard-widget-page.exactmetrics-blur .exactmetrics-widget-content{height:auto}.exactmetrics-button{background:#6528f5;border:solid #6528f5;border-width:1px 1px 2px;border-radius:3px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none}.exactmetrics-button:focus,.exactmetrics-button:hover{background-color:#37276a;border-color:#37276a;color:#fff}.exactmetrics-button.exactmetrics-button-green{background:#32a27a;border-color:#32a27a;color:#fff}.exactmetrics-button.exactmetrics-button-green:focus,.exactmetrics-button.exactmetrics-button-green:hover{background-color:#19865f;border-color:#19865f;color:#fff}.exactmetrics-table-box-footer,.exactmetrics-table-box-pagination{display:none}.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}.exactmetrics-buttons-toggle .exactmetrics-button:hover{background:#fff}.exactmetrics-buttons-toggle .exactmetrics-button:focus{z-index:10;position:relative}.exactmetrics-buttons-toggle .exactmetrics-button:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}.exactmetrics-buttons-toggle .exactmetrics-button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;border-right:1px solid #d6e2ed}.exactmetrics-buttons-toggle .exactmetrics-button.exactmetrics-selected-interval{background:#fff;color:#6528f5;font-weight:700}.exactmetrics-reports-pie-chart{border:none;width:100%;padding-top:0}.exactmetrics-reports-pie-chart:first-child{border:none}.exactmetrics-reports-pie-chart .exactmetrics-reports-pie-chart-holder{padding:0}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart-legend{top:100%;margin-top:20px;left:50%;width:80%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);position:relative}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart-legend .exactmetrics-pie-chart-legend-text{min-width:75px}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart{margin:0 auto}.exactmetrics-reports-pie-chart-holder{padding-left:16px}.exactmetrics-upsell-overlay{position:relative;-webkit-transform:none;-ms-transform:none;transform:none;left:0;top:0;-webkit-box-shadow:none;box-shadow:none;border-radius:0;border:none;background:radial-gradient(181.87% 104.55% at 50.04% 50.07%,#fff 0,hsla(0,0%,100%,0) 100%),rgba(101,40,245,.1);padding:105px 32px 75px;text-align:center}.exactmetrics-upsell-overlay .exactmetrics-button{color:#fff;font-size:14px;line-height:1.2;padding:12px 20px 11px}.exactmetrics-ecommerce-overview{padding-top:20px}.exactmetrics-ecommerce-overview .exactmetrics-upsell-overlay{padding-top:0}.exactmetrics-report-title{font-size:16px}.exactmetrics-widget-loading{width:auto;height:auto;margin:0 20px 20px;padding:70px 50px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:#f4f3f7;border-radius:10px;text-align:center}.exactmetrics-table-box .exactmetrics-info{top:20px;right:20px}.exactmetrics-reports-pie-chart .exactmetrics-info,.exactmetrics-reports-pie-chart .exactmetrics-report-title,.exactmetrics-table-box .exactmetrics-info,.exactmetrics-table-box .exactmetrics-report-title{display:none}.exactmetrics-hide-button{border:none;background:none;padding:0;margin:5px 0 0;color:#9087ac;cursor:pointer}.exactmetrics-hide-button:focus,.exactmetrics-hide-button:hover{color:#393f4c}.exactmetrics-hide-button i{font-size:16px}.exactmetrics-widget-full-width .exactmetrics-hide-button i{font-size:20px}.exactmetrics-report-tabs .exactmetrics-report-tabs-content{padding:10px 5px 7px 9px}.exactmetrics-interval-full-dates{display:none}#exactmetrics_reports_widget.exactmetrics-widget-full-width{margin:16px 0;border-width:1px 0 1px 1px;border-color:#d6e2ed}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-dashboard-widget-page{padding-top:50px}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-table-box{padding-top:0!important}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-content>div:not(.exactmetrics-widget-loading){height:auto!important}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-width-button{margin-left:auto}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-report-infobox-row{margin-left:0;margin-right:0}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-button-full-report{display:inline-block}@media (max-width:767px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-button-full-report{display:none}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-reports-pie-chart .exactmetrics-info,#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-reports-pie-chart .exactmetrics-report-title,#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-table-box .exactmetrics-info,#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-table-box .exactmetrics-report-title{display:block}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-reports-pie-chart .exactmetrics-info,#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-reports-pie-chart .exactmetrics-report-title,#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-table-box .exactmetrics-info,#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-table-box .exactmetrics-report-title{display:none}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-report-tabs .exactmetrics-report-tabs-content{padding-left:0;padding-bottom:0}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-report-element{border-color:#d6e2ed;border-style:solid;border-width:0 1px 1px 0;display:block;padding:32px;width:33.3333333%;margin:0}@media (max-width:1280px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-report-element{width:calc(50% - 10px)}}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-report-element{width:100%;padding:0;border:none;margin-right:0;margin-top:0}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-report-element:first-child{width:100%;padding:8px 0 0;margin:0;border-color:#d6e2ed;border-style:solid;border-width:0 1px 1px 0}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-report-element:first-child{border:none}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-report-overview .exactmetrics-widget-toggle{display:none}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-report-overview .exactmetrics-widget-toggle{display:block}}@media (min-width:783px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-report-overview .exactmetrics-report-infobox-row{margin:0 32px}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-report-overview .exactmetrics-reports-infobox{width:25%;padding-top:0;padding-bottom:0;padding-left:5%;border-bottom:none}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-report-overview .exactmetrics-reports-infobox:first-child{padding-left:calc(5% - 20px)}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-report-overview .exactmetrics-reports-infobox:nth-child(3){border-left:1px solid #d6e2ed}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-content{border-bottom:0}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-content h3.exactmetrics-report-title,#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-content h3.exactmetrics-report-title+.exactmetrics-info{display:none}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-content{padding-left:24px;padding-right:24px;padding-bottom:24px}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-report-tabs{margin:24px 32px 0}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-report-tabs{margin-left:0;margin-right:0}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-toggle{padding:0;border:0;margin-bottom:32px}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-toggle{padding:0 60px 0 24px}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-toggle:after{display:none}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-toggle:after{display:block;top:11px;right:30px}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-content>div:not(.exactmetrics-widget-loading) .exactmetrics-upsell-overlay{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;height:100%}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-tips{display:none}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-accordion{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;padding:0;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:-1px}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-accordion:after{width:33.333333%;display:block;content:""}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-accordion{padding:0}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .hndle{font-size:24px;padding-left:89px;padding-top:33px;padding-bottom:25px;line-height:1.4;margin:0;border-bottom:0;border-right:1px solid #d6e2ed}#exactmetrics_reports_widget.exactmetrics-widget-full-width .hndle:before{width:43px;height:38px;background-size:auto 38px;left:26px;top:32px}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-settings{right:32px}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-settings .exactmetrics-btn-group{margin-right:10px}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-settings{left:24px;right:24px;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left;top:14px}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-table-box-table th{padding-top:0}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-interval-full-dates{display:inline;margin:0 50px 0 0;font-weight:400}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-interval-full-dates:before{content:": ";font-weight:500}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-interval-full-dates{display:none}}.exactmetrics-report-2-columns.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child,.exactmetrics-report-2-columns.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:nth-child(2){border-bottom:0}.exactmetrics-fullwidth-mascot,.exactmetrics-fullwidth-report-title{display:none}.exactmetrics-blur .exactmetrics-report-row{-webkit-filter:none;filter:none}#dashboard-widgets .exactmetrics-widget-footer{padding:11px 12px;line-height:1;font-size:13px;color:#72777c}#dashboard-widgets .exactmetrics-widget-footer .exactmetrics-dark{color:#23282c;font-weight:500}#dashboard-widgets .exactmetrics-widget-footer a{margin-right:10px;text-decoration:underline;color:#1c75a6}#dashboard-widgets .exactmetrics-widget-footer a:focus,#dashboard-widgets .exactmetrics-widget-footer a:hover{text-decoration:none;color:#393f4c}@media (max-width:782px){#dashboard-widgets .exactmetrics-upsell-overlay{width:100%}}#dashboard-widgets .exactmetrics-upsell-overlay a{text-decoration:underline}#dashboard-widgets .exactmetrics-upsell-overlay a.exactmetrics-button,#dashboard-widgets .exactmetrics-upsell-overlay a:focus,#dashboard-widgets .exactmetrics-upsell-overlay a:hover{text-decoration:none}.exactmetrics-flex{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-table-item-content{word-break:break-all}.exactmetrics-table-box.exactmetrics-table-box-mobile .exactmetrics-reports-list-title{width:calc(100% - 30px);text-overflow:ellipsis;overflow:hidden}#exactmetrics-chartjs-line-overview-tooltip{margin-top:-60px}.folded #exactmetrics-chartjs-line-overview-tooltip{margin-left:-118px}#exactmetrics_reports_widget .exactmetrics-widget-error{padding:50px 25px;text-align:center}#exactmetrics_reports_widget .exactmetrics-widget-error .exactmetrics-error-title{font-weight:700;font-size:24px}#exactmetrics_reports_widget .exactmetrics-widget-error .exactmetrics-error-content{font-size:16px}#exactmetrics_reports_widget .exactmetrics-widget-error .exactmetrics-error-footer{margin:35px 0 0;padding:15px 0 0;border-top:1px solid #ccc}#exactmetrics_reports_widget .exactmetrics-widget-error .exactmetrics-error-footer a{color:#6528f5}#exactmetrics_reports_widget .exactmetrics-widget-error .exactmetrics-error-footer a:focus,#exactmetrics_reports_widget .exactmetrics-widget-error .exactmetrics-error-footer a:hover{color:#37276a}#exactmetrics_reports_widget .exactmetrics-widget-error .swal2-icon,#exactmetrics_reports_widget .exactmetrics-widget-error .swal2-icon *{-webkit-box-sizing:content-box;box-sizing:content-box}#exactmetrics_reports_widget .mi-dw-not-authed{padding:20px;text-align:center}#exactmetrics_reports_widget .mi-dw-not-authed h2{font-size:18px;margin:0}#exactmetrics_reports_widget .mi-dw-not-authed p{font-size:14px;margin:18px auto;max-width:280px}#exactmetrics_reports_widget .mi-dw-btn-large{background:#6528f5;border-radius:5px;color:#fff;display:inline-block;font-size:14px;line-height:1.2;margin-bottom:10px;padding:16px 23px 14px;text-decoration:none}#exactmetrics_reports_widget .mi-dw-btn-large:hover{color:#fff}.exactmetrics-swal .swal2-title,.exactmetrics-widget-error .swal2-title{line-height:1.2}.exactmetrics-swal .swal2-icon.swal2-error,.exactmetrics-swal .swal2-icon.swal2-info,.exactmetrics-widget-error .swal2-icon.swal2-error,.exactmetrics-widget-error .swal2-icon.swal2-info{border:none;border-radius:0}.exactmetrics-swal .swal2-icon.swal2-error:before,.exactmetrics-swal .swal2-icon.swal2-info:before,.exactmetrics-widget-error .swal2-icon.swal2-error:before,.exactmetrics-widget-error .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-swal .swal2-icon .swal2-icon-text,.exactmetrics-swal .swal2-icon .swal2-x-mark,.exactmetrics-widget-error .swal2-icon .swal2-icon-text,.exactmetrics-widget-error .swal2-icon .swal2-x-mark{display:none}.exactmetrics-swal .swal2-styled,.exactmetrics-widget-error .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-swal .swal2-styled.swal2-confirm,.exactmetrics-widget-error .swal2-styled.swal2-confirm{background:#6528f5}.exactmetrics-swal .swal2-styled.swal2-confirm:focus,.exactmetrics-swal .swal2-styled.swal2-confirm:hover,.exactmetrics-widget-error .swal2-styled.swal2-confirm:focus,.exactmetrics-widget-error .swal2-styled.swal2-confirm:hover{background-color:#37276a;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-swal .swal2-styled.swal2-cancel,.exactmetrics-widget-error .swal2-styled.swal2-cancel{background:#e9e7ee;color:#37276a}.exactmetrics-swal .swal2-styled.swal2-cancel:focus,.exactmetrics-swal .swal2-styled.swal2-cancel:hover,.exactmetrics-widget-error .swal2-styled.swal2-cancel:focus,.exactmetrics-widget-error .swal2-styled.swal2-cancel:hover{background-color:#f4f3f7;color:#37276a;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-swal .swal2-popup,.exactmetrics-widget-error .swal2-popup{border-radius:10px;padding:40px}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-accordion-lite .exactmetrics-widget-report-overview .exactmetrics-report-infobox-row{margin:0 32px 20px}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-accordion-lite .exactmetrics-widget-report-overview .exactmetrics-report-infobox-row{margin-left:0;margin-right:0}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-accordion-lite .exactmetrics-upsell-overlay{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;width:100%;margin-bottom:32px}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-accordion-lite .exactmetrics-upsell-overlay .exactmetrics-upsell-content{height:100%;background:rgba(0,0,0,0)}.exactmetrics-faded{opacity:.5}.exactmetrics-lite-overview-buttons{border-top:1px solid #d6e2ed;background:#f9fbff;padding:20px}.exactmetrics-lite-overview-buttons .exactmetrics-button{margin-top:0;font-size:13px;padding:8px 10px}#dashboard-widgets .exactmetrics-tips{background:#6528f5;margin:0 20px 20px;padding:16px;color:#fff;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;border-radius:5px;font-size:15px;line-height:1.5}#dashboard-widgets .exactmetrics-tips .monstericon-star{color:#fff;font-size:15px;margin-right:11px;-ms-flex-item-align:start;align-self:start}#dashboard-widgets .exactmetrics-tips a{color:#fff;text-decoration:underline}#dashboard-widgets .exactmetrics-tips a:hover{text-decoration:none}.exactmetrics-widget-report-title:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:40px;height:40px;background:rgba(33,15,89,.1);text-align:center;line-height:40px;font-size:15px;color:#4d3f7a;border-radius:50%;margin-right:20px}.exactmetrics-widget-report-overview .exactmetrics-widget-content>div{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.exactmetrics-widget-report-overview .exactmetrics-widget-report-title:before{content:"\f05b"}.exactmetrics-widget-accordion-lite .exactmetrics-widget-report-overview .exactmetrics-widget-content>div{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.exactmetrics-widget-report-landingpages .exactmetrics-widget-report-title:before,.exactmetrics-widget-report-toppages .exactmetrics-widget-report-title:before{content:"\f028"}.exactmetrics-widget-report-newvsreturn .exactmetrics-widget-report-title:before{content:"\f04c"}.exactmetrics-widget-report-devices .exactmetrics-widget-report-title:before{content:"\f044"}.exactmetrics-widget-report-exitpages .exactmetrics-widget-report-title:before{content:"\f055"}.exactmetrics-widget-report-affiliatelinks .exactmetrics-widget-report-title:before,.exactmetrics-widget-report-conversions .exactmetrics-widget-report-title:before,.exactmetrics-widget-report-outboundlinks .exactmetrics-widget-report-title:before{content:"\004a"}.exactmetrics-widget-report-downloadlinks .exactmetrics-widget-report-title:before{content:"\f035"}.exactmetrics-widget-report-infobox .exactmetrics-widget-report-title:before{content:"\f040"}.exactmetrics-widget-report-products .exactmetrics-widget-report-title:before{content:"\f03f"}.exactmetrics-widget-report-addremove .exactmetrics-widget-report-title:before{content:"\f033"}.exactmetrics-widget-report-days .exactmetrics-widget-report-title:before{content:"\f04e"}.exactmetrics-widget-report-sessions .exactmetrics-widget-report-title:before{content:"\f03e"}.exactmetrics-pie-chart-tooltip{left:50%;margin-left:-90px}.exactmetrics-dashboard-widget-page .exactmetrics-lite-datepicker{text-align:center;padding:12px 12px 27px;-webkit-box-shadow:0 40px 30px rgba(33,15,89,.1);box-shadow:0 40px 30px rgba(33,15,89,.1);background:#fff;border-radius:3px;border:1px solid #f4f3f7;margin-top:5px}.exactmetrics-dashboard-widget-page .exactmetrics-lite-datepicker p{color:#210f59;font-size:15px;line-height:1.5;font-weight:700}.exactmetrics-dashboard-widget-page .exactmetrics-lite-datepicker .exactmetrics-button-text{color:#32a27a;display:inline-block;width:auto;background:rgba(0,0,0,0);border:none;text-decoration:underline;padding-left:0;padding-right:0}.exactmetrics-dashboard-widget-page .exactmetrics-lite-datepicker .exactmetrics-button-text i{margin-left:10px}.exactmetrics-dashboard-widget-page .exactmetrics-lite-datepicker .exactmetrics-button-text:focus,.exactmetrics-dashboard-widget-page .exactmetrics-lite-datepicker .exactmetrics-button-text:hover{color:#19865f;text-decoration:none}.exactmetrics-widget-regular-width .exactmetrics-lite-datepicker p br{display:none}
lite/assets/vue/css/widget.rtl.css CHANGED
@@ -1,3 +1,3 @@
1
  .exactmetrics-tracking-notice{position:fixed;bottom:20px;left:15px;font-family:Arial,Helvetica,Trebuchet MS,sans-serif;background:#fff;-webkit-box-shadow:0 0 10px 0 #dedede;box-shadow:0 0 10px 0 #dedede;padding:6px 5px;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;width:380px;max-width:calc(100% - 30px);border-radius:6px;z-index:10000}.exactmetrics-tracking-notice h3{font-size:13px;color:#222;font-weight:700;margin:0 0 8px;padding:0;line-height:1;border:none}.exactmetrics-tracking-notice p{font-size:13px;color:#7f7f7f;font-weight:400;margin:0;padding:0;line-height:1.2;border:none}.exactmetrics-tracking-notice p a{color:#6528f5;font-size:13px;line-height:1.2;margin:0;padding:0;text-decoration:underline;font-weight:400}.exactmetrics-tracking-notice p a:hover{color:#37276a;text-decoration:none}.exactmetrics-tracking-notice .exactmetrics-tracking-notice-icon{padding:14px 11px;background-color:#f4f3f7;border-radius:6px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;margin-left:12px}.exactmetrics-tracking-notice .exactmetrics-tracking-notice-close{padding:0;margin:0 0 0 3px;border:none;-webkit-box-shadow:none;box-shadow:none;border-radius:0;color:#7f7f7f;background:rgba(0,0,0,0);line-height:1;-ms-flex-item-align:start;align-self:flex-start;cursor:pointer;font-size:16px;font-weight:400}.exactmetrics-tracking-notice .exactmetrics-fullwidth-mascot{position:relative;right:auto;top:auto;display:block;background-image:url(../img/em-logo.png);width:46px;height:40px;background-repeat:no-repeat;background-size:auto 100%;bottom:100%}.exactmetrics-slide-up-enter-active,.exactmetrics-slide-up-leave-active{-webkit-transition:bottom .7s ease;transition:bottom .7s ease}.exactmetrics-slide-up-enter,.exactmetrics-slide-up-leave-to{bottom:-200px}@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{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-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"}.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}/*!
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:100% -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:100% -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:100% -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:100% -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:100% -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:100% -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:100% -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:100% -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:100% -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:100% -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:100% -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:100% -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:100% -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:100% -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:100% -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-left:18px;margin-top:6px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text{line-height:1.7;color:#37276a;max-width:232px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;font-weight:500;text-decoration:none}.exactmetrics-report-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text,.exactmetrics-settings-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text{max-width:170px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text{cursor:pointer}.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text:focus,.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text:hover{color:#6528f5}.exactmetrics-full-width-upsell{background:#f7f3fe;min-height:445px;margin-bottom:116px}.exactmetrics-reports-page .exactmetrics-full-width-upsell{margin-bottom:0}@media (max-width:959px){.exactmetrics-full-width-upsell{margin-bottom:48px}}.exactmetrics-full-width-upsell.exactmetrics-full-width-no-space{margin-bottom:0;min-height:380px}.exactmetrics-full-width-upsell.exactmetrics-full-width-no-space+.exactmetrics-full-width-upsell{margin-top:-100px}.exactmetrics-full-width-upsell .exactmetrics-full-width-upsell-inner{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;position:relative}.exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-full-width-upsell-inner{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-full-width-upsell-inner .exactmetrics-upsell-left{padding-right:0;padding-top:100px}.exactmetrics-full-width-upsell h2{color:#210f59;font-size:24px;line-height:1.4}.exactmetrics-full-width-upsell p{font-size:15px;line-height:1.7;color:#210f59;margin:11px 0 0}.exactmetrics-full-width-upsell p.exactmetrics-upsell-pbold{font-weight:700;margin-top:0}.exactmetrics-full-width-upsell a.exactmetrics-green-text{color:#32a27a;font-weight:400}.exactmetrics-full-width-upsell a.exactmetrics-green-text:focus,.exactmetrics-full-width-upsell a.exactmetrics-green-text:hover{color:#19865f;text-decoration:none}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons{margin-top:20px;margin-bottom:72px}@media (max-width:1099px){.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons{margin-bottom:48px}}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons .exactmetrics-button:first-child{margin-left:18px}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons .exactmetrics-button-text .monstericon-arrow-right{font-size:12px;vertical-align:text-top;margin-right:10px}.exactmetrics-upsell-half{position:relative;padding-top:56px}.exactmetrics-upsell-half.exactmetrics-upsell-left{padding-right:96px;padding-top:56px;width:40%}@media (max-width:1099px){.exactmetrics-upsell-half.exactmetrics-upsell-left{width:50%;padding-right:24px}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-left{padding-top:24px}}.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image{max-width:100%;right:0;height:auto;padding-top:67%}.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image:after{background-position:50%;right:-16%;left:-16%;top:-10%;bottom:-10%}@media (min-width:960px){.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image{display:none}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-left{width:100%;padding-left:24px}}.exactmetrics-upsell-half.exactmetrics-upsell-right{padding-right:96px;padding-top:0;width:60%}@media (max-width:1099px){.exactmetrics-upsell-half.exactmetrics-upsell-right{width:50%}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-right{display:none}}.exactmetrics-upsell-half.exactmetrics-upsell-right .exactmetrics-em-upsell-screen{position:absolute;bottom:-140px;right:68px}.exactmetrics-upsell-half h3{color:#6528f5;font-size:20px;line-height:1.3;font-weight:400;margin:0 0 15px}.exactmetrics-upsell .exactmetrics-upsell-title{border-bottom:1px solid #e9e7ee}.exactmetrics-upsell .exactmetrics-upsell-title h2{color:#210f59;font-size:32px;margin-right:100px;margin-top:45px;margin-bottom:35px}@media (max-width:782px){.exactmetrics-upsell .exactmetrics-upsell-title h2{margin-right:24px;line-height:1.4;margin-top:24px;margin-bottom:24px}}.exactmetrics-upsell .exactmetrics-upsell-half h3{font-size:24px;color:#210f59;font-weight:700}.exactmetrics-upsell-bottom{background:#f7f9fd;border-top:1px solid #d6e2ed;padding:36px 50px 30px;position:relative}@media (max-width:767px){.exactmetrics-upsell-bottom{padding-right:20px;padding-left:20px}}.exactmetrics-upsell-bottom .exactmetrics-button-top{position:absolute;top:0;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}@media (max-width:767px){.exactmetrics-upsell-bottom .exactmetrics-button-top{min-width:288px}}.exactmetrics-upsell-bottom img{max-width:100%}.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-upsell-screen,.exactmetrics-screen-image{width:848px;padding-top:0;height:566px}@media (max-width:1099px){.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-upsell-screen,.exactmetrics-screen-image{right:20px}}.exactmetrics-em-ecommerce-upsell-screen:after,.exactmetrics-em-upsell-screen:after,.exactmetrics-screen-image:after{background-position:0 100%;background-image:url(../img/upsell-screen.png)}.exactmetrics-em-logo-text{width:432px;height:56px;margin-bottom:28px;padding-top:0;max-width:100%}@media (max-width:1400px){.exactmetrics-em-logo-text{padding-top:13%;height:auto}}@media (max-width:959px){.exactmetrics-em-logo-text{padding-top:8%}}.exactmetrics-em-logo-text:after{background-image:url(../img/exactmetrics.png)}.exactmetrics-em-addons-upsell-screen,.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-publishers-upsell-screen{bottom:auto;top:-90px}.exactmetrics-em-addons-upsell-screen:after,.exactmetrics-em-ecommerce-upsell-screen:after,.exactmetrics-em-publishers-upsell-screen:after{background-position:0 0;background-image:url(../img/ecommerce-screen.png)}.exactmetrics-em-publishers-upsell-screen:after{background-image:url(../img/publishers-screen.png)}.exactmetrics-em-addons-upsell-screen{margin-bottom:-180px;top:-70px}.exactmetrics-em-addons-upsell-screen:after{background-image:url(../img/addons-help-screen.png)}.exactmetrics-em-search-console-upsell-screen:after{background-image:url(../img/search-console-screen.png)}.exactmetrics-em-forms-report-upsell-screen:after{background-image:url(../img/forms-report-screen.png)}.exactmetrics-em-dimensions-report-upsell-screen:after{background-image:url(../img/dimensions-report-screen.png)}.exactmetrics-em-forms-upsell-screen{width:758px;max-width:100%;margin-top:-75px}.exactmetrics-em-forms-upsell-screen:after{background-position:50%;background-image:url(../img/forms-screen.png)}.exactmetrics-em-optimize-upsell-screen{width:758px;max-width:100%;margin-right:-10%}.exactmetrics-em-optimize-upsell-screen:after{background-position:50%;background-image:url(../img/optimize-screen.png)}.exactmetrics-em-dimensions-upsell-screen{width:758px;max-width:100%}.exactmetrics-em-dimensions-upsell-screen:after{background-position:50%;background-image:url(../img/custom-dimensions-screen.png)}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-right:0}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half p{max-width:400px;margin-bottom:28px}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-right:96px}.exactmetrics-icon-background-large{position:absolute;font-size:130px;color:rgba(101,40,245,.05);right:25px;top:25px;line-height:1;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator{font-size:13px;color:#fff;background-color:#32a27a;border-radius:3px;font-weight:500;padding:4px 8px;vertical-align:top;margin-right:10px;display:inline-block;margin-top:-4px;cursor:pointer;text-decoration:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:hover,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:hover{color:#fff;background:#19865f}.exactmetrics-report .exactmetrics-upsell-dismissable{margin-right:-32px;margin-left:-32px;padding-right:32px;padding-left:32px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable{text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable h3{font-size:17px;color:#210f59;line-height:1.5;font-weight:700}.exactmetrics-report .exactmetrics-upsell-dismissable p{font-size:15px;margin-bottom:25px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{width:50%;padding-top:38px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{padding-right:32px;padding-left:32px;width:100%;text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half:first-child p{max-width:524px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-right:40px;color:#9087ac}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-right:0;margin-top:20px}}.exactmetrics-report .exactmetrics-upsell-dismiss{position:absolute;left:20px;top:20px;z-index:10}.exactmetrics-forms-image-wpf-upsell{margin-bottom:-140px;padding-top:85%}@media (max-width:782px){.exactmetrics-forms-image-wpf-upsell{margin-bottom:0}}.exactmetrics-forms-image-wpf-upsell:after{background-position:0 100%;background-image:url(../img/forms-wpforms-upsell.png)}.exactmetrics-admin-page{overflow:hidden}.exactmetrics-report{padding:30px 32px;position:relative}@media (max-width:991px){.exactmetrics-report{padding-right:24px;padding-left:24px}}.exactmetrics-reports-page{margin-bottom:100px}.exactmetrics-reports-page .exactmetrics-header{padding-top:21px;padding-bottom:21px}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-bottom:24px}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:935px){body.exactmetrics-reporting-page .exactmetrics-report-top h2{display:block;margin-bottom:25px}}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{display:-webkit-box;display:-ms-flexbox;display:flex;float:left}@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-left:0}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker .exactmetrics-buttons-toggle .exactmetrics-button{width:50%}}@media (min-width:783px) and (max-width:935px){body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{float:none;margin-bottom:25px}}body.exactmetrics-reporting-page .exactmetrics-datepicker{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-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 5px 0 10px;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 20px 8px 28px;border:none;position:relative;text-align:right}@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-right:38px;margin-left:12px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info i{margin-right:10px;margin-left: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;left: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%;right: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:right;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-left:10px}body.exactmetrics-reporting-page .exactmetrics-mobile-details-toggle{width:100%;margin-bottom:0;margin-top:10px;margin-right: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-right: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-right:-32px;margin-left:-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-right:-24px;margin-left:-24px;padding-right:24px;padding-left: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-left: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-right-radius:3px;border-bottom-right-radius:3px}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:last-child{border-top-left-radius:3px;border-bottom-left-radius:3px;border-left: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{right:20px;top:20px;padding:0}@media (max-width:782px){.exactmetrics-pie-chart-tooltip{right:50%;margin-right:-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-left: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:"";right:50%;margin-right:-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:"";right:50%;margin-right:-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:right;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-right:1px solid #bcb7cd;padding:0 80px 0 0;position:relative}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-info{display:inline-block;font-size:12px;margin-right:6px;vertical-align:middle}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child{border-right:none;padding-right:0}@media (max-width:782px){.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:100%;border-right: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-right:0}@media (max-width:991px){.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-report-title{padding-right: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-right: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);left:100%;margin-left: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;right: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-left: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-left: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 32px 32px 20px;background:#fff;position:relative}.exactmetrics-reports-pie-chart:first-child{border-left:1px solid #e9e7ee;padding-right:0}@media (max-width:991px){.exactmetrics-reports-pie-chart:first-child{border-left:0}}@media (max-width:991px){.exactmetrics-reports-pie-chart{width:100%;border:none;padding-right:0;padding-left: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-right: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-right: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 0 0 12px}.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 0 7px 17px;float:right}.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-right:0;margin-top:0}@media (max-width:991px){.exactmetrics-table-box{margin-right:0;margin-top:20px}}.exactmetrics-table-box-footer{background:#fff;padding:20px 0 21px;text-align:left}.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-right: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-left: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 -8px -10px 0}.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:left;display:block;padding-right: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;left: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%;right: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 20px 8px 35px;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;left:20px}@media (max-width:792px){.exactmetrics-pagination-selector{width:100%;text-align:right;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;right:0;left: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-right:0;margin-right: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-right:0;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;width:100%;padding-right: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-left: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;left: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:right;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-right:20px}.exactmetrics-table-box-table td:last-child,.exactmetrics-table-box-table th:last-child{padding-left: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-left:32px;border-left:1px solid #e9e7ee}@media (max-width:991px){.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(odd){padding-left:0;border-left:none}}.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(2n){padding-right:32px}@media (max-width:991px){.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(2n){padding-right:0}}.exactmetrics-report-dimensions .exactmetrics-table-box{border-top:1px solid #e9e7ee;padding-right:32px;padding-left:32px}.exactmetrics-report-dimensions .exactmetrics-report-2-columns{margin-right:-32px;margin-left:-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-right:23px;min-width:95px}.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-left:10px;margin-right:2px}.exactmetrics-upsell-inline{background-image:url(../img/reports-upsell-bg.png);background-repeat:no-repeat;background-position:0 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;right: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-right:20px;padding-left: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-right: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;right: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-left: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-left: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;right:0}.exactmetrics-overview-upsell-desktop .exactmetrics-em-logo-text{width:376px;margin-left: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;right:100%;top:0;margin-right: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-right:25px}@media (max-width:991px){.exactmetrics-report-scroll:nth-child(2){width:100%;margin-right:0;margin-top:25px}}@media (max-width:782px){.exactmetrics-report-scroll{width:100%;margin-right: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%;right:50%;width:750px;max-width:100%;margin-right:-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-right:-357px}}@media (max-width:960px){.exactmetrics-not-authenticated-notice{margin-right:-357px}}@media (max-width:750px){.exactmetrics-not-authenticated-notice{right:0;margin-right:0}}@media (min-width:750px) and (max-width:782px){.exactmetrics-not-authenticated-notice{margin-right:-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-left:11px;vertical-align:middle;border-radius:50%}.exactmetrics-report-row-icon-left{position:relative;padding-right:170px}.exactmetrics-report-row-icon-left:before{font-size:50px;position:absolute;right: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-right: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}.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_reports_widget,#exactmetrics_reports_widget *{-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}#exactmetrics_reports_widget .inside{margin:0;padding:0}#exactmetrics_reports_widget .exactmetrics-info:focus,#exactmetrics_reports_widget a:focus,#exactmetrics_reports_widget button:focus{outline:none;-webkit-box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}#exactmetrics_reports_widget .handlediv:focus{outline:none;-webkit-box-shadow:none;box-shadow:none}#dashboard-widgets .exactmetrics-widget-toggle,.postbox .inside .exactmetrics-widget-toggle{background-color:rgba(0,0,0,0);border-bottom:1px solid #e9e7ee;cursor:pointer;padding:18px 16px;line-height:1;position:relative}#dashboard-widgets .exactmetrics-widget-toggle:focus,.postbox .inside .exactmetrics-widget-toggle:focus{outline:none;-webkit-box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);z-index:10}#dashboard-widgets .exactmetrics-widget-toggle h2,.postbox .inside .exactmetrics-widget-toggle h2{display:inline-block;font-size:17px;font-weight:700;line-height:1.5;margin:0;padding:0;color:#210f59}#dashboard-widgets .exactmetrics-widget-toggle:after,.postbox .inside .exactmetrics-widget-toggle:after{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f01f";font-size:20px;position:absolute;left:37px;top:28px;color:#210f59;-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg)}#dashboard-widgets .exactmetrics-widget-toggle.exactmetrics-widget-toggle-active,.postbox .inside .exactmetrics-widget-toggle.exactmetrics-widget-toggle-active{border-bottom-color:rgba(0,0,0,0)}#dashboard-widgets .exactmetrics-widget-toggle.exactmetrics-widget-toggle-active:after,.postbox .inside .exactmetrics-widget-toggle.exactmetrics-widget-toggle-active:after{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}#dashboard-widgets .exactmetrics-reports-link,.postbox .inside .exactmetrics-reports-link{cursor:default}#dashboard-widgets .exactmetrics-reports-link>span,.postbox .inside .exactmetrics-reports-link>span{display:none}#dashboard-widgets .exactmetrics-reports-link .exactmetrics-button,.postbox .inside .exactmetrics-reports-link .exactmetrics-button{font-weight:700;padding:16px;margin:12px 16px;display:block;text-align:center;font-size:18px;border-radius:5px;line-height:1}#dashboard-widgets .exactmetrics-btn-group-label:before,.postbox .inside .exactmetrics-btn-group-label:before{color:#9087ac;content:"\f142";display:inline-block;font:normal 20px/1 dashicons;position:absolute;left:10px;text-decoration:none!important;text-indent:-1px;-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg);speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;top:12px}#dashboard-widgets .exactmetrics-btn-group-label:after,.postbox .inside .exactmetrics-btn-group-label:after{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f04e";color:#37276a;position:absolute;left:34px;top:8px}#dashboard-widgets .exactmetrics-upsell-overlay h3,.postbox .inside .exactmetrics-upsell-overlay h3{color:#210f59;font-size:24px;margin:0 0 24px;font-weight:700;line-height:1.4}#dashboard-widgets .exactmetrics-upsell-overlay .exactmetrics-upsell-subtitle,.postbox .inside .exactmetrics-upsell-overlay .exactmetrics-upsell-subtitle{font-size:15px;line-height:1.75;color:#210f59}#dashboard-widgets .exactmetrics-upsell-overlay .exactmetrics-upsell-content,.postbox .inside .exactmetrics-upsell-overlay .exactmetrics-upsell-content{padding:0;width:100%;border:none}#dashboard-widgets .exactmetrics-upsell-overlay .exactmetrics-upsell-content ul,.postbox .inside .exactmetrics-upsell-overlay .exactmetrics-upsell-content ul{display:none}#dashboard-widgets .exactmetrics-upsell-overlay .exactmetrics-upsell-top,.postbox .inside .exactmetrics-upsell-overlay .exactmetrics-upsell-top{padding:0;position:relative}#dashboard-widgets .exactmetrics-upsell-overlay .exactmetrics-upsell-top .monstericon-unlock,.postbox .inside .exactmetrics-upsell-overlay .exactmetrics-upsell-top .monstericon-unlock{position:absolute;font-size:131px;color:#6528f5;opacity:.05;top:-102px;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}#dashboard-widgets .exactmetrics-button-full-report,.postbox .inside .exactmetrics-button-full-report{line-height:1.2;margin-right:15px;height:40px;display:none}#dashboard-widgets .exactmetrics-button-full-report i,.postbox .inside .exactmetrics-button-full-report i{margin-right:10px}.exactmetrics-widget-cog,.exactmetrics-width-button{margin:0 4px 0 0;border:none;cursor:pointer;display:block;height:40px;padding:12px 14px 11px;color:#37276a;background:#e9e7ee;font-size:14px;border-radius:3px}.exactmetrics-widget-cog:focus,.exactmetrics-widget-cog:hover,.exactmetrics-width-button:focus,.exactmetrics-width-button:hover{color:#6528f5}.exactmetrics-widget-dropdown{position:relative;display:inline-block;vertical-align:middle}.exactmetrics-widget-dropdown-content{background:#fff;border:1px solid #d8d8d8;border-radius:5px;cursor:auto;font-weight:400;margin-left:-11px;margin-top:5px;padding:0 10px 10px;position:absolute;left:0;top:100%;width:180px;z-index:999}.exactmetrics-widget-dropdown-content:before{border-color:rgba(0,0,0,0) rgba(0,0,0,0) #d8d8d8;border-style:solid;border-width:0 4px 4px;bottom:100%;content:"";height:0;position:absolute;left:16px;width:0}.exactmetrics-widget-dropdown-content:after{border-color:rgba(0,0,0,0) rgba(0,0,0,0) #fff;border-style:solid;border-width:0 3px 3px;bottom:100%;content:"";height:0;position:absolute;left:17px;width:0}.exactmetrics-widget-dropdown-content>span{color:#999;font-size:10px;margin-top:12px;display:block}.exactmetrics-widget-dropdown-content label{padding-right:16px;color:#393f4c;font-size:12px;position:relative;margin-bottom:4px;display:block}.exactmetrics-widget-dropdown-content label:before{content:"";border:1px solid #d6e2ed;width:10px;height:10px;display:block;position:absolute;right:0;top:3px}.exactmetrics-widget-dropdown-content label input[type=checkbox]{display:none}.exactmetrics-widget-dropdown-content label.exactmetrics-checked:after{content:"";border-color:#6528f5;border-style:solid;border-width:1px 1px 0 0;display:block;width:6px;height:10px;position:absolute;right:3px;top:2px;-webkit-transform:rotate(-216deg);-ms-transform:rotate(-216deg);transform:rotate(-216deg)}.exactmetrics-widget-dropdown-content label:focus{outline:none;-webkit-box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}.exactmetrics-red{color:#d73638}.exactmetrics-green{color:#5cc0a5}.exactmetrics-btn-group{position:relative;display:inline-block;vertical-align:middle;margin-left:0}.exactmetrics-btn-group .exactmetrics-btn-group-label,.exactmetrics-btn-group .exactmetrics-btn-group-list-button{background:#e9e7ee;border:none;border-radius:3px;cursor:pointer;display:inline-block;font-size:15px;font-weight:500;line-height:1.75;height:40px;position:relative;text-align:right;width:100%;padding:8px 20px 6px;margin:0;color:#37276a;min-width:170px}.exactmetrics-btn-group-list{position:absolute;top:100%;z-index:1000;left:0;right:0}.exactmetrics-btn-group-list .exactmetrics-btn-group-list-button{border-radius:0;border-width:0 0 1px}.exactmetrics-btn-group-list .exactmetrics-btn-group-list-button.exactmetrics-btn-group-list-button-selected{background:#6528f5;color:#fff}.exactmetrics-btn-group-list .exactmetrics-btn-group-list-button:last-child{border-radius:0 0 3px 3px}.exactmetrics-btn-group-open .exactmetrics-btn-group-label{border-radius:5px 5px 0 0}#exactmetrics_reports_widget.closed .inside{display:block}#exactmetrics_reports_widget .exactmetrics-widget-settings{position:absolute;bottom:100%;left:16px;margin-bottom:17px;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}@media (max-width:782px){#exactmetrics_reports_widget .exactmetrics-widget-settings{left:10px}}#exactmetrics_reports_widget .toggle-indicator{display:none}#exactmetrics_reports_widget .exactmetrics-not-authenticated-notice{-webkit-box-shadow:none;box-shadow:none;position:relative;width:100%;margin:0;right:0;top:0;padding-top:50px;border:none}#exactmetrics_reports_widget .exactmetrics-not-authenticated-notice h3{font-size:18px;font-weight:700}#exactmetrics_reports_widget .hndle{font-size:16px;color:#210f59;position:relative;padding-right:60px;padding-top:25px;padding-bottom:23px;line-height:1.5}#exactmetrics_reports_widget .hndle:before{content:"";width:32px;height:28px;background-image:url(../img/em-logo.png);background-size:auto 28px;position:absolute;right:18px;top:22px;background-position:100% 0}@media (max-width:426px),(min-width:800px) and (max-width:924px),(min-width:961px) and (max-width:1049px){#exactmetrics_reports_widget .hndle>span{visibility:hidden}}.exactmetrics-report-tabs{margin:20px}.exactmetrics-report-infobox-row{margin:0 20px 20px;-ms-flex-flow:wrap;flex-flow:wrap;padding:24px}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:100%;padding:12px 0 10px 10px;border-right-color:#d6e2ed}@media (min-width:783px){.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:50%;padding-right:15px}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child,.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:nth-child(2){border-bottom:1px solid #d6e2ed}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:nth-child(3){border-right:none;padding-right:0}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child,.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:nth-child(2){padding-top:0}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:nth-child(3),.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:nth-child(4){padding-bottom:0}}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-info{top:12px;left:15px}.exactmetrics-reports-infobox-number{font-size:36px;float:none}.exactmetrics-reports-infobox-compare,.exactmetrics-reports-infobox-prev{float:none}.exactmetrics-reports-infobox-prev{margin-top:15px}.exactmetrics-info{color:#b6c9da;cursor:help;font-size:15px}.exactmetrics-report-tabs-navigation i{display:none}.exactmetrics-widget-regular-width .exactmetrics-report-tabs-navigation button{font-size:14px;padding:11px 9px 12px;line-height:1;text-align:right;font-weight:400}.exactmetrics-widget-regular-width .exactmetrics-report-tabs-navigation button.exactmetrics-active-tab-button{padding-top:9px}.exactmetrics-widget-regular-width .exactmetrics-table-box-list{padding:0 16px}.exactmetrics-widget-regular-width .exactmetrics-table-list-item{font-size:14px}.exactmetrics-widget-regular-width .exactmetrics-table-list-item .exactmetrics-reports-list-count{color:#9087ac}.exactmetrics-widget-regular-width .exactmetrics-table-list-item .exactmetrics-reports-list-number{color:#210f59;font-weight:500}.exactmetrics-widget-regular-width .exactmetrics-table-box-table td,.exactmetrics-widget-regular-width .exactmetrics-table-box-table td:first-child,.exactmetrics-widget-regular-width .exactmetrics-table-box-table th,.exactmetrics-widget-regular-width .exactmetrics-table-box-table th:first-child{padding-right:12px;padding-left:12px}.exactmetrics-table-list-item{padding:7px 20px 6px;min-height:39px}.exactmetrics-widget-report-title .exactmetrics-info{margin-right:10px;color:#9087ac;vertical-align:top}.exactmetrics-widget-content{border-bottom:1px solid #eee;height:100%}.exactmetrics-widget-content .exactmetrics-table-box{padding-top:0;border:none}.exactmetrics-dashboard-widget-page.exactmetrics-blur .exactmetrics-widget-content{height:auto}.exactmetrics-button{background:#6528f5;border:solid #6528f5;border-width:1px 1px 2px;border-radius:3px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none}.exactmetrics-button:focus,.exactmetrics-button:hover{background-color:#37276a;border-color:#37276a;color:#fff}.exactmetrics-button.exactmetrics-button-green{background:#32a27a;border-color:#32a27a;color:#fff}.exactmetrics-button.exactmetrics-button-green:focus,.exactmetrics-button.exactmetrics-button-green:hover{background-color:#19865f;border-color:#19865f;color:#fff}.exactmetrics-table-box-footer,.exactmetrics-table-box-pagination{display:none}.exactmetrics-buttons-toggle .exactmetrics-button{background:#eceff5;color:#464c57;border-bottom-width:1px;border-color:#d6e2ed;border-radius:0;line-height:18px;border-left:0;margin:0}.exactmetrics-buttons-toggle .exactmetrics-button:hover{background:#fff}.exactmetrics-buttons-toggle .exactmetrics-button:focus{z-index:10;position:relative}.exactmetrics-buttons-toggle .exactmetrics-button:first-child{border-top-right-radius:3px;border-bottom-right-radius:3px}.exactmetrics-buttons-toggle .exactmetrics-button:last-child{border-top-left-radius:3px;border-bottom-left-radius:3px;border-left:1px solid #d6e2ed}.exactmetrics-buttons-toggle .exactmetrics-button.exactmetrics-selected-interval{background:#fff;color:#6528f5;font-weight:700}.exactmetrics-reports-pie-chart{border:none;width:100%;padding-top:0}.exactmetrics-reports-pie-chart:first-child{border:none}.exactmetrics-reports-pie-chart .exactmetrics-reports-pie-chart-holder{padding:0}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart-legend{top:100%;margin-top:20px;right:50%;width:80%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%);position:relative}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart-legend .exactmetrics-pie-chart-legend-text{min-width:75px}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart{margin:0 auto}.exactmetrics-reports-pie-chart-holder{padding-right:16px}.exactmetrics-upsell-overlay{position:relative;-webkit-transform:none;-ms-transform:none;transform:none;right:0;top:0;-webkit-box-shadow:none;box-shadow:none;border-radius:0;border:none;background:radial-gradient(181.87% 104.55% at 50.04% 50.07%,#fff 0,hsla(0,0%,100%,0) 100%),rgba(101,40,245,.1);padding:105px 32px 75px;text-align:center}.exactmetrics-upsell-overlay .exactmetrics-button{color:#fff;font-size:14px;line-height:1.2;padding:12px 20px 11px}.exactmetrics-ecommerce-overview{padding-top:20px}.exactmetrics-ecommerce-overview .exactmetrics-upsell-overlay{padding-top:0}.exactmetrics-report-title{font-size:16px}.exactmetrics-widget-loading{width:auto;height:auto;margin:0 20px 20px;padding:70px 50px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:#f4f3f7;border-radius:10px;text-align:center}.exactmetrics-table-box .exactmetrics-info{top:20px;left:20px}.exactmetrics-reports-pie-chart .exactmetrics-info,.exactmetrics-reports-pie-chart .exactmetrics-report-title,.exactmetrics-table-box .exactmetrics-info,.exactmetrics-table-box .exactmetrics-report-title{display:none}.exactmetrics-hide-button{border:none;background:none;padding:0;margin:5px 0 0;color:#9087ac;cursor:pointer}.exactmetrics-hide-button:focus,.exactmetrics-hide-button:hover{color:#393f4c}.exactmetrics-hide-button i{font-size:16px}.exactmetrics-widget-full-width .exactmetrics-hide-button i{font-size:20px}.exactmetrics-report-tabs .exactmetrics-report-tabs-content{padding:10px 9px 7px 5px}.exactmetrics-interval-full-dates{display:none}#exactmetrics_reports_widget.exactmetrics-widget-full-width{margin:16px 0;border-width:1px 1px 1px 0;border-color:#d6e2ed}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-dashboard-widget-page{padding-top:50px}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-table-box{padding-top:0!important}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-content>div:not(.exactmetrics-widget-loading){height:auto!important}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-width-button{margin-right:auto}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-report-infobox-row{margin-right:0;margin-left:0}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-button-full-report{display:inline-block}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-reports-pie-chart .exactmetrics-info,#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-reports-pie-chart .exactmetrics-report-title,#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-table-box .exactmetrics-info,#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-table-box .exactmetrics-report-title{display:block}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-reports-pie-chart .exactmetrics-info,#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-reports-pie-chart .exactmetrics-report-title,#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-table-box .exactmetrics-info,#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-table-box .exactmetrics-report-title{display:none}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-report-tabs .exactmetrics-report-tabs-content{padding-right:0;padding-bottom:0}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-report-element{border-color:#d6e2ed;border-style:solid;border-width:0 0 1px 1px;display:block;padding:32px;width:33.3333333%;margin:0}@media (max-width:1280px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-report-element{width:calc(50% - 10px)}}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-report-element{width:100%;padding:0;border:none;margin-left:0;margin-top:0}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-report-element:first-child{width:100%;padding:8px 0 0;margin:0;border-color:#d6e2ed;border-style:solid;border-width:0 0 1px 1px}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-report-element:first-child{border:none}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-report-overview .exactmetrics-widget-toggle{display:none}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-report-overview .exactmetrics-widget-toggle{display:block}}@media (min-width:783px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-report-overview .exactmetrics-report-infobox-row{margin:0 32px}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-report-overview .exactmetrics-reports-infobox{width:25%;padding-top:0;padding-bottom:0;padding-right:5%;border-bottom:none}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-report-overview .exactmetrics-reports-infobox:first-child{padding-right:calc(5% - 20px)}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-report-overview .exactmetrics-reports-infobox:nth-child(3){border-right:1px solid #d6e2ed}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-content{border-bottom:0}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-content h3.exactmetrics-report-title,#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-content h3.exactmetrics-report-title+.exactmetrics-info{display:none}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-content{padding-right:24px;padding-left:24px;padding-bottom:24px}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-report-tabs{margin:24px 32px 0}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-report-tabs{margin-right:0;margin-left:0}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-toggle{padding:0;border:0;margin-bottom:32px}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-toggle{padding:0 24px 0 60px}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-toggle:after{display:none}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-toggle:after{display:block;top:11px;left:30px}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-content>div:not(.exactmetrics-widget-loading) .exactmetrics-upsell-overlay{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;height:100%}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-tips{display:none}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-accordion{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;padding:0;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:-1px}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-accordion:after{width:33.333333%;display:block;content:""}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-accordion{padding:0}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .hndle{font-size:24px;padding-right:89px;padding-top:33px;padding-bottom:25px;line-height:1.4;margin:0;border-bottom:0;border-left:1px solid #d6e2ed}#exactmetrics_reports_widget.exactmetrics-widget-full-width .hndle:before{width:43px;height:38px;background-size:auto 38px;right:26px;top:32px}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-settings{left:32px}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-settings .exactmetrics-btn-group{margin-left:10px}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-settings{right:24px;left:24px;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left;top:14px}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-table-box-table th{padding-top:0}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-interval-full-dates{display:inline;margin:0 0 0 50px;font-weight:400}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-interval-full-dates:before{content:": ";font-weight:500}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-interval-full-dates{display:none}}.exactmetrics-report-2-columns.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child,.exactmetrics-report-2-columns.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:nth-child(2){border-bottom:0}.exactmetrics-fullwidth-mascot,.exactmetrics-fullwidth-report-title{display:none}.exactmetrics-blur .exactmetrics-report-row{-webkit-filter:none;filter:none}#dashboard-widgets .exactmetrics-widget-footer{padding:11px 12px;line-height:1;font-size:13px;color:#72777c}#dashboard-widgets .exactmetrics-widget-footer .exactmetrics-dark{color:#23282c;font-weight:500}#dashboard-widgets .exactmetrics-widget-footer a{margin-left:10px;text-decoration:underline;color:#1c75a6}#dashboard-widgets .exactmetrics-widget-footer a:focus,#dashboard-widgets .exactmetrics-widget-footer a:hover{text-decoration:none;color:#393f4c}@media (max-width:782px){#dashboard-widgets .exactmetrics-upsell-overlay{width:100%}}#dashboard-widgets .exactmetrics-upsell-overlay a{text-decoration:underline}#dashboard-widgets .exactmetrics-upsell-overlay a.exactmetrics-button,#dashboard-widgets .exactmetrics-upsell-overlay a:focus,#dashboard-widgets .exactmetrics-upsell-overlay a:hover{text-decoration:none}.exactmetrics-flex{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-table-item-content{word-break:break-all}.exactmetrics-table-box.exactmetrics-table-box-mobile .exactmetrics-reports-list-title{width:calc(100% - 30px);text-overflow:ellipsis;overflow:hidden}#exactmetrics-chartjs-line-overview-tooltip{margin-top:-60px}.folded #exactmetrics-chartjs-line-overview-tooltip{margin-right:-118px}#exactmetrics_reports_widget .exactmetrics-widget-error{padding:50px 25px;text-align:center}#exactmetrics_reports_widget .exactmetrics-widget-error .exactmetrics-error-title{font-weight:700;font-size:24px}#exactmetrics_reports_widget .exactmetrics-widget-error .exactmetrics-error-content{font-size:16px}#exactmetrics_reports_widget .exactmetrics-widget-error .exactmetrics-error-footer{margin:35px 0 0;padding:15px 0 0;border-top:1px solid #ccc}#exactmetrics_reports_widget .exactmetrics-widget-error .exactmetrics-error-footer a{color:#6528f5}#exactmetrics_reports_widget .exactmetrics-widget-error .exactmetrics-error-footer a:focus,#exactmetrics_reports_widget .exactmetrics-widget-error .exactmetrics-error-footer a:hover{color:#37276a}#exactmetrics_reports_widget .exactmetrics-widget-error .swal2-icon,#exactmetrics_reports_widget .exactmetrics-widget-error .swal2-icon *{-webkit-box-sizing:content-box;box-sizing:content-box}#exactmetrics_reports_widget .mi-dw-not-authed{padding:20px;text-align:center}#exactmetrics_reports_widget .mi-dw-not-authed h2{font-size:18px;margin:0}#exactmetrics_reports_widget .mi-dw-not-authed p{font-size:14px;margin:18px auto;max-width:280px}#exactmetrics_reports_widget .mi-dw-btn-large{background:#6528f5;border-radius:5px;color:#fff;display:inline-block;font-size:14px;line-height:1.2;margin-bottom:10px;padding:16px 23px 14px;text-decoration:none}#exactmetrics_reports_widget .mi-dw-btn-large:hover{color:#fff}.exactmetrics-swal .swal2-title,.exactmetrics-widget-error .swal2-title{line-height:1.2}.exactmetrics-swal .swal2-icon.swal2-error,.exactmetrics-swal .swal2-icon.swal2-info,.exactmetrics-widget-error .swal2-icon.swal2-error,.exactmetrics-widget-error .swal2-icon.swal2-info{border:none;border-radius:0}.exactmetrics-swal .swal2-icon.swal2-error:before,.exactmetrics-swal .swal2-icon.swal2-info:before,.exactmetrics-widget-error .swal2-icon.swal2-error:before,.exactmetrics-widget-error .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-swal .swal2-icon .swal2-icon-text,.exactmetrics-swal .swal2-icon .swal2-x-mark,.exactmetrics-widget-error .swal2-icon .swal2-icon-text,.exactmetrics-widget-error .swal2-icon .swal2-x-mark{display:none}.exactmetrics-swal .swal2-styled,.exactmetrics-widget-error .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-swal .swal2-styled.swal2-confirm,.exactmetrics-widget-error .swal2-styled.swal2-confirm{background:#6528f5}.exactmetrics-swal .swal2-styled.swal2-confirm:focus,.exactmetrics-swal .swal2-styled.swal2-confirm:hover,.exactmetrics-widget-error .swal2-styled.swal2-confirm:focus,.exactmetrics-widget-error .swal2-styled.swal2-confirm:hover{background-color:#37276a;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-swal .swal2-styled.swal2-cancel,.exactmetrics-widget-error .swal2-styled.swal2-cancel{background:#e9e7ee;color:#37276a}.exactmetrics-swal .swal2-styled.swal2-cancel:focus,.exactmetrics-swal .swal2-styled.swal2-cancel:hover,.exactmetrics-widget-error .swal2-styled.swal2-cancel:focus,.exactmetrics-widget-error .swal2-styled.swal2-cancel:hover{background-color:#f4f3f7;color:#37276a;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-swal .swal2-popup,.exactmetrics-widget-error .swal2-popup{border-radius:10px;padding:40px}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-accordion-lite .exactmetrics-widget-report-overview .exactmetrics-report-infobox-row{margin:0 32px 20px}@media (max-width:782px){#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-accordion-lite .exactmetrics-widget-report-overview .exactmetrics-report-infobox-row{margin-right:0;margin-left:0}}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-accordion-lite .exactmetrics-upsell-overlay{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;width:100%;margin-bottom:32px}#exactmetrics_reports_widget.exactmetrics-widget-full-width .exactmetrics-widget-accordion-lite .exactmetrics-upsell-overlay .exactmetrics-upsell-content{height:100%;background:rgba(0,0,0,0)}.exactmetrics-faded{opacity:.5}.exactmetrics-lite-overview-buttons{border-top:1px solid #d6e2ed;background:#f9fbff;padding:20px}.exactmetrics-lite-overview-buttons .exactmetrics-button{margin-top:0;font-size:13px;padding:8px 10px}#dashboard-widgets .exactmetrics-tips{background:#6528f5;margin:0 20px 20px;padding:16px;color:#fff;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;border-radius:5px;font-size:15px;line-height:1.5}#dashboard-widgets .exactmetrics-tips .monstericon-star{color:#fff;font-size:15px;margin-left:11px;-ms-flex-item-align:start;align-self:start}#dashboard-widgets .exactmetrics-tips a{color:#fff;text-decoration:underline}#dashboard-widgets .exactmetrics-tips a:hover{text-decoration:none}.exactmetrics-widget-report-title:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:40px;height:40px;background:rgba(33,15,89,.1);text-align:center;line-height:40px;font-size:15px;color:#4d3f7a;border-radius:50%;margin-left:20px}.exactmetrics-widget-report-overview .exactmetrics-widget-content>div{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.exactmetrics-widget-report-overview .exactmetrics-widget-report-title:before{content:"\f05b"}.exactmetrics-widget-accordion-lite .exactmetrics-widget-report-overview .exactmetrics-widget-content>div{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.exactmetrics-widget-report-landingpages .exactmetrics-widget-report-title:before,.exactmetrics-widget-report-toppages .exactmetrics-widget-report-title:before{content:"\f028"}.exactmetrics-widget-report-newvsreturn .exactmetrics-widget-report-title:before{content:"\f04c"}.exactmetrics-widget-report-devices .exactmetrics-widget-report-title:before{content:"\f044"}.exactmetrics-widget-report-exitpages .exactmetrics-widget-report-title:before{content:"\f055"}.exactmetrics-widget-report-affiliatelinks .exactmetrics-widget-report-title:before,.exactmetrics-widget-report-conversions .exactmetrics-widget-report-title:before,.exactmetrics-widget-report-outboundlinks .exactmetrics-widget-report-title:before{content:"\004a"}.exactmetrics-widget-report-downloadlinks .exactmetrics-widget-report-title:before{content:"\f035"}.exactmetrics-widget-report-infobox .exactmetrics-widget-report-title:before{content:"\f040"}.exactmetrics-widget-report-products .exactmetrics-widget-report-title:before{content:"\f03f"}.exactmetrics-widget-report-addremove .exactmetrics-widget-report-title:before{content:"\f033"}.exactmetrics-widget-report-days .exactmetrics-widget-report-title:before{content:"\f04e"}.exactmetrics-widget-report-sessions .exactmetrics-widget-report-title:before{content:"\f03e"}.exactmetrics-pie-chart-tooltip{right:50%;margin-right:-90px}.exactmetrics-dashboard-widget-page .exactmetrics-lite-datepicker{text-align:center;padding:12px 12px 27px;-webkit-box-shadow:0 40px 30px rgba(33,15,89,.1);box-shadow:0 40px 30px rgba(33,15,89,.1);background:#fff;border-radius:3px;border:1px solid #f4f3f7;margin-top:5px}.exactmetrics-dashboard-widget-page .exactmetrics-lite-datepicker p{color:#210f59;font-size:15px;line-height:1.5;font-weight:700}.exactmetrics-dashboard-widget-page .exactmetrics-lite-datepicker .exactmetrics-button-text{color:#32a27a;display:inline-block;width:auto;background:rgba(0,0,0,0);border:none;text-decoration:underline;padding-right:0;padding-left:0}.exactmetrics-dashboard-widget-page .exactmetrics-lite-datepicker .exactmetrics-button-text i{margin-right:10px}.exactmetrics-dashboard-widget-page .exactmetrics-lite-datepicker .exactmetrics-button-text:focus,.exactmetrics-dashboard-widget-page .exactmetrics-lite-datepicker .exactmetrics-button-text:hover{color:#19865f;text-decoration:none}.exactmetrics-widget-regular-width .exactmetrics-lite-datepicker p br{display:none}
1
  .exactmetrics-tracking-notice{position:fixed;bottom:20px;left:15px;font-family:Arial,Helvetica,Trebuchet MS,sans-serif;background:#fff;-webkit-box-shadow:0 0 10px 0 #dedede;box-shadow:0 0 10px 0 #dedede;padding:6px 5px;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;width:380px;max-width:calc(100% - 30px);border-radius:6px;z-index:10000}.exactmetrics-tracking-notice h3{font-size:13px;color:#222;font-weight:700;margin:0 0 8px;padding:0;line-height:1;border:none}.exactmetrics-tracking-notice p{font-size:13px;color:#7f7f7f;font-weight:400;margin:0;padding:0;line-height:1.2;border:none}.exactmetrics-tracking-notice p a{color:#6528f5;font-size:13px;line-height:1.2;margin:0;padding:0;text-decoration:underline;font-weight:400}.exactmetrics-tracking-notice p a:hover{color:#37276a;text-decoration:none}.exactmetrics-tracking-notice .exactmetrics-tracking-notice-icon{padding:14px 11px;background-color:#f4f3f7;border-radius:6px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;margin-left:12px}.exactmetrics-tracking-notice .exactmetrics-tracking-notice-close{padding:0;margin:0 0 0 3px;border:none;-webkit-box-shadow:none;box-shadow:none;border-radius:0;color:#7f7f7f;background:rgba(0,0,0,0);line-height:1;-ms-flex-item-align:start;align-self:flex-start;cursor:pointer;font-size:16px;font-weight:400}.exactmetrics-tracking-notice .exactmetrics-fullwidth-mascot{position:relative;right:auto;top:auto;display:block;background-image:url(../img/em-logo.png);width:46px;height:40px;background-repeat:no-repeat;background-size:auto 100%;bottom:100%}.exactmetrics-slide-up-enter-active,.exactmetrics-slide-up-leave-active{-webkit-transition:bottom .7s ease;transition:bottom .7s ease}.exactmetrics-slide-up-enter,.exactmetrics-slide-up-leave-to{bottom:-200px}@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{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-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"}.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}/*!
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:100% -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:100% -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:100% -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:100% -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:100% -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:100% -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:100% -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:100% -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:100% -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:100% -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:100% -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:100% -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:100% -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:100% -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:100% -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-left:18px;margin-top:6px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text{line-height:1.7;color:#37276a;max-width:232px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;font-weight:500;text-decoration:none}.exactmetrics-report-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text,.exactmetrics-settings-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text{max-width:170px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text{cursor:pointer}.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text:focus,.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text:hover{color:#6528f5}.exactmetrics-full-width-upsell{background:#f7f3fe;min-height:445px;margin-bottom:116px}.exactmetrics-reports-page .exactmetrics-full-width-upsell{margin-bottom:0}@media (max-width:959px){.exactmetrics-full-width-upsell{margin-bottom:48px}}.exactmetrics-full-width-upsell.exactmetrics-full-width-no-space{margin-bottom:0;min-height:380px}.exactmetrics-full-width-upsell.exactmetrics-full-width-no-space+.exactmetrics-full-width-upsell{margin-top:-100px}.exactmetrics-full-width-upsell .exactmetrics-full-width-upsell-inner{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;position:relative}.exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-full-width-upsell-inner{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-full-width-upsell-inner .exactmetrics-upsell-left{padding-right:0;padding-top:100px}.exactmetrics-full-width-upsell h2{color:#210f59;font-size:24px;line-height:1.4}.exactmetrics-full-width-upsell p{font-size:15px;line-height:1.7;color:#210f59;margin:11px 0 0}.exactmetrics-full-width-upsell p.exactmetrics-upsell-pbold{font-weight:700;margin-top:0}.exactmetrics-full-width-upsell a.exactmetrics-green-text{color:#32a27a;font-weight:400}.exactmetrics-full-width-upsell a.exactmetrics-green-text:focus,.exactmetrics-full-width-upsell a.exactmetrics-green-text:hover{color:#19865f;text-decoration:none}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons{margin-top:20px;margin-bottom:72px}@media (max-width:1099px){.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons{margin-bottom:48px}}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons .exactmetrics-button:first-child{margin-left:18px}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons .exactmetrics-button-text .monstericon-arrow-right{font-size:12px;vertical-align:text-top;margin-right:10px}.exactmetrics-upsell-half{position:relative;padding-top:56px}.exactmetrics-upsell-half.exactmetrics-upsell-left{padding-right:96px;padding-top:56px;width:40%}@media (max-width:1099px){.exactmetrics-upsell-half.exactmetrics-upsell-left{width:50%;padding-right:24px}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-left{padding-top:24px}}.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image{max-width:100%;right:0;height:auto;padding-top:67%}.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image:after{background-position:50%;right:-16%;left:-16%;top:-10%;bottom:-10%}@media (min-width:960px){.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image{display:none}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-left{width:100%;padding-left:24px}}.exactmetrics-upsell-half.exactmetrics-upsell-right{padding-right:96px;padding-top:0;width:60%}@media (max-width:1099px){.exactmetrics-upsell-half.exactmetrics-upsell-right{width:50%}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-right{display:none}}.exactmetrics-upsell-half.exactmetrics-upsell-right .exactmetrics-em-upsell-screen{position:absolute;bottom:-140px;right:68px}.exactmetrics-upsell-half h3{color:#6528f5;font-size:20px;line-height:1.3;font-weight:400;margin:0 0 15px}.exactmetrics-upsell .exactmetrics-upsell-title{border-bottom:1px solid #e9e7ee}.exactmetrics-upsell .exactmetrics-upsell-title h2{color:#210f59;font-size:32px;margin-right:100px;margin-top:45px;margin-bottom:35px}@media (max-width:782px){.exactmetrics-upsell .exactmetrics-upsell-title h2{margin-right:24px;line-height:1.4;margin-top:24px;margin-bottom:24px}}.exactmetrics-upsell .exactmetrics-upsell-half h3{font-size:24px;color:#210f59;font-weight:700}.exactmetrics-upsell-bottom{background:#f7f9fd;border-top:1px solid #d6e2ed;padding:36px 50px 30px;position:relative}@media (max-width:767px){.exactmetrics-upsell-bottom{padding-right:20px;padding-left:20px}}.exactmetrics-upsell-bottom .exactmetrics-button-top{position:absolute;top:0;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}@media (max-width:767px){.exactmetrics-upsell-bottom .exactmetrics-button-top{min-width:288px}}.exactmetrics-upsell-bottom img{max-width:100%}.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-upsell-screen,.exactmetrics-screen-image{width:848px;padding-top:0;height:566px}@media (max-width:1099px){.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-upsell-screen,.exactmetrics-screen-image{right:20px}}.exactmetrics-em-ecommerce-upsell-screen:after,.exactmetrics-em-upsell-screen:after,.exactmetrics-screen-image:after{background-position:0 100%;background-image:url(../img/upsell-screen.png)}.exactmetrics-em-logo-text{width:432px;height:56px;margin-bottom:28px;padding-top:0;max-width:100%}@media (max-width:1400px){.exactmetrics-em-logo-text{padding-top:13%;height:auto}}@media (max-width:959px){.exactmetrics-em-logo-text{padding-top:8%}}.exactmetrics-em-logo-text:after{background-image:url(../img/exactmetrics.png)}.exactmetrics-em-addons-upsell-screen,.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-publishers-upsell-screen{bottom:auto;top:-90px}.exactmetrics-em-addons-upsell-screen:after,.exactmetrics-em-ecommerce-upsell-screen:after,.exactmetrics-em-publishers-upsell-screen:after{background-position:0 0;background-image:url(../img/ecommerce-screen.png)}.exactmetrics-em-publishers-upsell-screen:after{background-image:url(../img/publishers-screen.png)}.exactmetrics-em-addons-upsell-screen{margin-bottom:-180px;top:-70px}.exactmetrics-em-addons-upsell-screen:after{background-image:url(../img/addons-help-screen.png)}.exactmetrics-em-search-console-upsell-screen:after{background-image:url(../img/search-console-screen.png)}.exactmetrics-em-forms-report-upsell-screen:after{background-image:url(../img/forms-report-screen.png)}.exactmetrics-em-dimensions-report-upsell-screen:after{background-image:url(../img/dimensions-report-screen.png)}.exactmetrics-em-forms-upsell-screen{width:758px;max-width:100%;margin-top:-75px}.exactmetrics-em-forms-upsell-screen:after{background-position:50%;background-image:url(../img/forms-screen.png)}.exactmetrics-em-optimize-upsell-screen{width:758px;max-width:100%;margin-right:-10%}.exactmetrics-em-optimize-upsell-screen:after{background-position:50%;background-image:url(../img/optimize-screen.png)}.exactmetrics-em-dimensions-upsell-screen{width:758px;max-width:100%}.exactmetrics-em-dimensions-upsell-screen:after{background-position:50%;background-image:url(../img/custom-dimensions-screen.png)}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-right:0}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half p{max-width:400px;margin-bottom:28px}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-right:96px}.exactmetrics-icon-background-large{position:absolute;font-size:130px;color:rgba(101,40,245,.05);right:25px;top:25px;line-height:1;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator{font-size:13px;color:#fff;background-color:#32a27a;border-radius:3px;font-weight:500;padding:4px 8px;vertical-align:top;margin-right:10px;display:inline-block;margin-top:-4px;cursor:pointer;text-decoration:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:hover,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:hover{color:#fff;background:#19865f}.exactmetrics-report .exactmetrics-upsell-dismissable{margin-right:-32px;margin-left:-32px;padding-right:32px;padding-left:32px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable{text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable h3{font-size:17px;color:#210f59;line-height:1.5;font-weight:700}.exactmetrics-report .exactmetrics-upsell-dismissable p{font-size:15px;margin-bottom:25px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{width:50%;padding-top:38px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{padding-right:32px;padding-left:32px;width:100%;text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half:first-child p{max-width:524px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-right:40px;color:#9087ac}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-right:0;margin-top:20px}}.exactmetrics-report .exactmetrics-upsell-dismiss{position:absolute;left:20px;top:20px;z-index:10}.exactmetrics-forms-image-wpf-upsell{margin-bottom:-140px;padding-top:85%}@media (max-width:782px){.exactmetrics-forms-image-wpf-upsell{margin-bottom:0}}.exactmetrics-forms-image-wpf-upsell:after{background-position:0 100%;background-image:url(../img/forms-wpforms-upsell.png)}.exactmetrics-admin-page{overflow:hidden}.exactmetrics-report{padding:30px 32px;position:relative}@media (max-width:991px){.exactmetrics-report{padding-right:24px;padding-left:24px}}.exactmetrics-reports-page{margin-bottom:100px}.exactmetrics-reports-page .exactmetrics-header{padding-top:21px;padding-bottom:21px}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-bottom:24px}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:935px){body.exactmetrics-reporting-page .exactmetrics-report-top h2{display:block;margin-bottom:25px}}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{display:-webkit-box;display:-ms-flexbox;display:flex;float:left}@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-left:0}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker .exactmetrics-buttons-toggle .exactmetrics-button{width:50%}}@media (min-width:783px) and (max-width:935px){body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{float:none;margin-bottom:25px}}body.exactmetrics-reporting-page .exactmetrics-datepicker{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-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 5px 0 10px;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 20px 8px 28px;border:none;position:relative;text-align:right}@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-right:38px;margin-left:12px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info i{margin-right:10px;margin-left: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;left: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%;right: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:right;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-left:10px}body.exactmetrics-reporting-page .exactmetrics-mobile-details-toggle{width:100%;margin-bottom:0;margin-top:10px;margin-right: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-right: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-right:-32px;margin-left:-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-right:-24px;margin-left:-24px;padding-right:24px;padding-left: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-left: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-right-radius:3px;border-bottom-right-radius:3px}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:last-child{border-top-left-radius:3px;border-bottom-left-radius:3px;border-left: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{right:20px;top:20px;padding:0}@media (max-width:782px){.exactmetrics-pie-chart-tooltip{right:50%;margin-right:-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-left: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:"";right:50%;margin-right:-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:"";right:50%;margin-right:-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:right;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-right:1px solid #bcb7cd;padding:0 80px 0 0;position:relative}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-info{display:inline-block;font-size:12px;margin-right:6px;vertical-align:middle}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child{border-right:none;padding-right:0}@media (max-width:782px){.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:100%;border-right: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-right:0}@media (max-width:991px){.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-report-title{padding-right: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-right: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);left:100%;margin-left: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;right: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-left: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-left: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 32px 32px 20px;background:#fff;position:relative}.exactmetrics-reports-pie-chart:first-child{border-left:1px solid #e9e7ee;padding-right:0}@media (max-width:991px){.exactmetrics-reports-pie-chart:first-child{border-left:0}}@media (max-width:991px){.exactmetrics-reports-pie-chart{width:100%;border:none;padding-right:0;padding-left: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-right: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-right: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 0 0 12px}.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 0 7px 17px;float:right}.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-right:0;margin-top:0}@media (max-width:991px){.exactmetrics-table-box{margin-right:0;margin-top:20px}}.exactmetrics-table-box-footer{background:#fff;padding:20px 0 21px;text-align:left}.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-right: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-left: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 -8px -10px 0}.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:left;display:block;padding-right: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;left: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%;right: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 20px 8px 35px;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;left:20px}@media (max-width:792px){.exactmetrics-pagination-selector{width:100%;text-align:right;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;right:0;left: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-right:0;margin-right: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-right:0;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;width:100%;padding-right: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-left: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;left: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:right;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-right:20px}.exactmetrics-table-box-table td:last-child,.exactmetrics-table-box-table th:last-child{padding-left: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-left:32px;border-left:1px solid #e9e7ee}@media (max-width:991px){.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(odd){padding-left:0;border-left:none}}.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(2n){padding-right:32px}@media (max-width:991px){.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(2n){padding-right:0}}.exactmetrics-report-dimensions .exactmetrics-table-box{border-top:1px solid #e9e7ee;padding-right:32px;padding-left:32px}.exactmetrics-report-dimensions .exactmetrics-report-2-columns{margin-right:-32px;margin-left:-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-right:23px;min-width:95px}.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-left:10px;margin-right:2px}.exactmetrics-upsell-inline{background-image:url(../img/reports-upsell-bg.png);background-repeat:no-repeat;background-position:0 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;right: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