Google Analytics Dashboard for WP (GADWP) - Version 8.11.0

Version Description

Download this release

Release Info

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

Code changes from version 7.10.1 to 8.11.0

assets/images/plugin-seedprod.png CHANGED
Binary file
gadwp.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin URI: https://exactmetrics.com
5
  * Description: Displays Google Analytics Reports and Real-Time Statistics in your Dashboard. Automatically inserts the tracking code in every page of your website.
6
  * Author: ExactMetrics
7
- * Version: 7.10.1
8
  * Requires at least: 4.8.0
9
  * Requires PHP: 5.6
10
  * Author URI: https://exactmetrics.com/lite/?utm_source=liteplugin&utm_medium=pluginheader&utm_campaign=authoruri&utm_content=7%2E0%2E0
@@ -44,7 +44,7 @@ final class ExactMetrics_Lite {
44
  * @access public
45
  * @var string $version Plugin version.
46
  */
47
- public $version = '7.10.1';
48
 
49
  /**
50
  * Plugin file.
4
  * Plugin URI: https://exactmetrics.com
5
  * Description: Displays Google Analytics Reports and Real-Time Statistics in your Dashboard. Automatically inserts the tracking code in every page of your website.
6
  * Author: ExactMetrics
7
+ * Version: 7.11.0
8
  * Requires at least: 4.8.0
9
  * Requires PHP: 5.6
10
  * Author URI: https://exactmetrics.com/lite/?utm_source=liteplugin&utm_medium=pluginheader&utm_campaign=authoruri&utm_content=7%2E0%2E0
44
  * @access public
45
  * @var string $version Plugin version.
46
  */
47
+ public $version = '7.11.0';
48
 
49
  /**
50
  * Plugin file.
includes/admin/common.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  /**
3
  * Common admin class.
4
  *
@@ -10,36 +11,37 @@
10
  */
11
 
12
  // Exit if accessed directly
13
- if ( ! defined( 'ABSPATH' ) ) {
14
  exit;
15
  }
16
 
17
- function exactmetrics_is_settings_page() {
18
- $current_screen = function_exists( 'get_current_screen' ) ? get_current_screen() : false;
 
19
  global $admin_page_hooks;
20
 
21
- if ( ! is_object( $current_screen ) || empty( $current_screen->id ) || empty( $admin_page_hooks ) ) {
22
  return false;
23
  }
24
 
25
  $settings_page = false;
26
- if ( ! empty( $admin_page_hooks['exactmetrics_settings'] ) && $current_screen->id === $admin_page_hooks['exactmetrics_settings'] ) {
27
  $settings_page = true;
28
  }
29
 
30
- if ( $current_screen->id === 'toplevel_page_exactmetrics_settings' ) {
31
  $settings_page = true;
32
  }
33
 
34
- if ( $current_screen->id === 'exactmetrics_page_exactmetrics_settings' ) {
35
  $settings_page = true;
36
  }
37
 
38
- if ( strpos( $current_screen->id, 'exactmetrics_settings' ) !== false ) {
39
  $settings_page = true;
40
  }
41
 
42
- if ( ! empty( $current_screen->base ) && strpos( $current_screen->base, 'exactmetrics_network' ) !== false ) {
43
  $settings_page = true;
44
  }
45
 
@@ -51,24 +53,25 @@ function exactmetrics_is_settings_page() {
51
  *
52
  * @return bool
53
  */
54
- function exactmetrics_is_reports_page() {
55
- $current_screen = function_exists( 'get_current_screen' ) ? get_current_screen() : false;
 
56
  global $admin_page_hooks;
57
 
58
- if ( ! is_object( $current_screen ) || empty( $current_screen->id ) || empty( $admin_page_hooks ) ) {
59
  return false;
60
  }
61
 
62
  $reports_page = false;
63
- if ( ! empty( $admin_page_hooks['exactmetrics_reports'] ) && $current_screen->id === $admin_page_hooks['exactmetrics_reports'] ) {
64
  $reports_page = true;
65
  }
66
 
67
- if ( 'toplevel_page_exactmetrics_reports' === $current_screen->id ) {
68
  $reports_page = true;
69
  }
70
 
71
- if ( strpos( $current_screen->id, 'exactmetrics_reports' ) !== false ) {
72
  $reports_page = true;
73
  }
74
 
@@ -83,19 +86,20 @@ function exactmetrics_is_reports_page() {
83
  * @access public
84
  *
85
  */
86
- function exactmetrics_admin_styles() {
 
87
 
88
- $suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
89
 
90
  // Load Common admin styles.
91
- wp_register_style( 'exactmetrics-admin-common-style', plugins_url( 'assets/css/admin-common' . $suffix . '.css', EXACTMETRICS_PLUGIN_FILE ), array(), exactmetrics_get_asset_version() );
92
- wp_enqueue_style( 'exactmetrics-admin-common-style' );
93
 
94
  // Get current screen.
95
  $screen = get_current_screen();
96
 
97
  // Bail if we're not on a ExactMetrics screen.
98
- if ( empty( $screen->id ) || strpos( $screen->id, 'exactmetrics' ) === false ) {
99
  return;
100
  }
101
 
@@ -103,32 +107,32 @@ function exactmetrics_admin_styles() {
103
  $rtl = is_rtl() ? '.rtl' : '';
104
 
105
  // For the settings page, load the Vue app styles.
106
- if ( exactmetrics_is_settings_page() ) {
107
- if ( ! defined( 'EXACTMETRICS_LOCAL_JS_URL' ) ) {
108
- wp_enqueue_style( 'exactmetrics-vue-style-vendors', plugins_url( $version_path . '/assets/vue/css/chunk-vendors' . $rtl . '.css', EXACTMETRICS_PLUGIN_FILE ), array(), exactmetrics_get_asset_version() );
109
- wp_enqueue_style( 'exactmetrics-vue-style-common', plugins_url( $version_path . '/assets/vue/css/chunk-common' . $rtl . '.css', EXACTMETRICS_PLUGIN_FILE ), array(), exactmetrics_get_asset_version() );
110
- wp_enqueue_style( 'exactmetrics-vue-style', plugins_url( $version_path . '/assets/vue/css/settings' . $rtl . '.css', EXACTMETRICS_PLUGIN_FILE ), array(), exactmetrics_get_asset_version() );
111
  }
112
 
113
  // Don't load other styles on the settings page.
114
  return;
115
  }
116
 
117
- if ( exactmetrics_is_reports_page() ) {
118
- if ( ! defined( 'EXACTMETRICS_LOCAL_REPORTS_JS_URL' ) ) {
119
- wp_enqueue_style( 'exactmetrics-vue-style-vendors', plugins_url( $version_path . '/assets/vue/css/chunk-vendors' . $rtl . '.css', EXACTMETRICS_PLUGIN_FILE ), array(), exactmetrics_get_asset_version() );
120
- wp_enqueue_style( 'exactmetrics-vue-style-common', plugins_url( $version_path . '/assets/vue/css/chunk-common' . $rtl . '.css', EXACTMETRICS_PLUGIN_FILE ), array(), exactmetrics_get_asset_version() );
121
- wp_enqueue_style( 'exactmetrics-vue-style', plugins_url( $version_path . '/assets/vue/css/reports' . $rtl . '.css', EXACTMETRICS_PLUGIN_FILE ), array(), exactmetrics_get_asset_version() );
122
  }
123
 
124
  return;
125
  }
126
 
127
  // Tooltips
128
- wp_enqueue_script( 'jquery-ui-tooltip' );
129
  }
130
 
131
- add_action( 'admin_enqueue_scripts', 'exactmetrics_admin_styles' );
132
 
133
  /**
134
  * Loads scripts for all ExactMetrics-based Administration Screens.
@@ -138,21 +142,22 @@ add_action( 'admin_enqueue_scripts', 'exactmetrics_admin_styles' );
138
  * @access public
139
  *
140
  */
141
- function exactmetrics_admin_scripts() {
 
142
 
143
  // Our Common Admin JS.
144
- $suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
145
 
146
- wp_register_script( 'exactmetrics-admin-common-script', plugins_url( 'assets/js/admin-common' . $suffix . '.js', EXACTMETRICS_PLUGIN_FILE ), array( 'jquery' ), exactmetrics_get_asset_version(), true );
147
 
148
- wp_enqueue_script( 'exactmetrics-admin-common-script' );
149
 
150
  wp_localize_script(
151
  'exactmetrics-admin-common-script',
152
  'exactmetrics_admin_common',
153
  array(
154
- 'ajax' => admin_url( 'admin-ajax.php' ),
155
- 'dismiss_notice_nonce' => wp_create_nonce( 'exactmetrics-dismiss-notice' ),
156
  )
157
  );
158
 
@@ -160,109 +165,109 @@ function exactmetrics_admin_scripts() {
160
  $screen = get_current_screen();
161
 
162
  // Bail if we're not on a ExactMetrics screen.
163
- if ( empty( $screen->id ) || strpos( $screen->id, 'exactmetrics' ) === false ) {
164
  return;
165
  }
166
 
167
  $version_path = exactmetrics_is_pro_version() ? 'pro' : 'lite';
168
 
169
  // For the settings page, load the Vue app.
170
- if ( exactmetrics_is_settings_page() ) {
171
- if ( ! defined( 'EXACTMETRICS_LOCAL_VENDORS_JS_URL' ) ) {
172
- wp_enqueue_script( 'exactmetrics-vue-vendors', plugins_url( $version_path . '/assets/vue/js/chunk-vendors.js', EXACTMETRICS_PLUGIN_FILE ), array(), exactmetrics_get_asset_version(), true );
173
- wp_enqueue_script( 'exactmetrics-vue-common', plugins_url( $version_path . '/assets/vue/js/chunk-common.js', EXACTMETRICS_PLUGIN_FILE ), array(), exactmetrics_get_asset_version(), true );
174
  } else {
175
- wp_enqueue_script( 'exactmetrics-vue-vendors', EXACTMETRICS_LOCAL_VENDORS_JS_URL, array(), exactmetrics_get_asset_version(), true );
176
- wp_enqueue_script( 'exactmetrics-vue-common', EXACTMETRICS_LOCAL_COMMON_JS_URL, array(), exactmetrics_get_asset_version(), true );
177
  }
178
- $app_js_url = defined( 'EXACTMETRICS_LOCAL_JS_URL' ) && EXACTMETRICS_LOCAL_JS_URL ? EXACTMETRICS_LOCAL_JS_URL : plugins_url( $version_path . '/assets/vue/js/settings.js', EXACTMETRICS_PLUGIN_FILE );
179
- wp_register_script( 'exactmetrics-vue-script', $app_js_url, array(), exactmetrics_get_asset_version(), true );
180
- wp_enqueue_script( 'exactmetrics-vue-script' );
181
  $plugins = get_plugins();
182
  $install_amp_url = false;
183
- if ( exactmetrics_can_install_plugins() ) {
184
  $amp_key = 'amp/amp.php';
185
- if ( array_key_exists( $amp_key, $plugins ) ) {
186
- $install_amp_url = wp_nonce_url( self_admin_url( 'plugins.php?action=activate&plugin=' . $amp_key ), 'activate-plugin_' . $amp_key );
187
  } else {
188
- $install_amp_url = wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=amp' ), 'install-plugin_amp' );
189
  }
190
  }
191
  $install_woocommerce_url = false;
192
- if ( exactmetrics_can_install_plugins() ) {
193
  $woo_key = 'woocommerce/woocommerce.php';
194
- if ( array_key_exists( $woo_key, $plugins ) ) {
195
- $install_woocommerce_url = wp_nonce_url( self_admin_url( 'plugins.php?action=activate&plugin=' . $woo_key ), 'activate-plugin_' . $woo_key );
196
  } else {
197
- $install_woocommerce_url = wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=woocommerce' ), 'install-plugin_woocommerce' );
198
  }
199
  }
200
  $install_fbia_url = false;
201
- if ( exactmetrics_can_install_plugins() ) {
202
  $fbia_key = 'fb-instant-articles/facebook-instant-articles.php';
203
- if ( array_key_exists( $fbia_key, $plugins ) ) {
204
- $install_fbia_url = wp_nonce_url( self_admin_url( 'plugins.php?action=activate&plugin=' . $fbia_key ), 'activate-plugin_' . $fbia_key );
205
  } else {
206
- $install_fbia_url = wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=fb-instant-articles' ), 'install-plugin_fb-instant-articles' );
207
  }
208
  }
209
 
210
  $prepared_dimensions = array();
211
- if ( class_exists( 'ExactMetrics_Admin_Custom_Dimensions' ) ) {
212
  $dimensions = new ExactMetrics_Admin_Custom_Dimensions();
213
  $dimensions = $dimensions->custom_dimensions();
214
  $prepared_dimensions = array();
215
- foreach ( $dimensions as $dimension_type => $dimension ) {
216
  $dimension['type'] = $dimension_type;
217
  $prepared_dimensions[] = $dimension;
218
  }
219
  }
220
- $is_authed = ( ExactMetrics()->auth->is_authed() || ExactMetrics()->auth->is_network_authed() );
221
 
222
  wp_localize_script(
223
  'exactmetrics-vue-script',
224
  'exactmetrics',
225
  array(
226
- 'ajax' => admin_url( 'admin-ajax.php' ),
227
- 'nonce' => wp_create_nonce( 'mi-admin-nonce' ),
228
  'network' => is_network_admin(),
229
- 'translations' => wp_get_jed_locale_data( exactmetrics_is_pro_version() ? 'exactmetrics-premium' : 'google-analytics-dashboard-for-wp' ),
230
- 'assets' => plugins_url( $version_path . '/assets/vue', EXACTMETRICS_PLUGIN_FILE ),
231
  'roles' => exactmetrics_get_roles(),
232
  'roles_manage_options' => exactmetrics_get_manage_options_roles(),
233
  'shareasale_id' => exactmetrics_get_shareasale_id(),
234
- 'shareasale_url' => exactmetrics_get_shareasale_url( exactmetrics_get_shareasale_id(), '' ),
235
- 'addons_url' => is_multisite() ? network_admin_url( 'admin.php?page=exactmetrics_network#/addons' ) : admin_url( 'admin.php?page=exactmetrics_settings#/addons' ),
236
- 'seo_settings_page_url' => is_multisite() ? network_admin_url( 'admin.php?page=exactmetrics_network#/seo' ) : admin_url( 'admin.php?page=exactmetrics_settings#/seo' ),
237
- 'aioseo_dashboard_url' => is_multisite() ? network_admin_url( 'admin.php?page=aioseo' ) : admin_url( 'admin.php?page=aioseo' ),
238
- 'wp_plugins_page_url' => is_multisite() ? network_admin_url( 'plugins.php' ) : admin_url( 'plugins.php' ),
239
- 'email_summary_url' => admin_url( 'admin.php?exactmetrics_email_preview&exactmetrics_email_template=summary' ),
240
  'install_amp_url' => $install_amp_url,
241
  'install_fbia_url' => $install_fbia_url,
242
  'install_woo_url' => $install_woocommerce_url,
243
  'dimensions' => $prepared_dimensions,
244
- 'wizard_url' => is_network_admin() ? network_admin_url( 'index.php?page=exactmetrics-onboarding' ) : admin_url( 'index.php?page=exactmetrics-onboarding' ),
245
  'install_plugins' => exactmetrics_can_install_plugins(),
246
- 'unfiltered_html' => current_user_can( 'unfiltered_html' ),
247
- 'activate_nonce' => wp_create_nonce( 'exactmetrics-activate' ),
248
- 'deactivate_nonce' => wp_create_nonce( 'exactmetrics-deactivate' ),
249
- 'install_nonce' => wp_create_nonce( 'exactmetrics-install' ),
250
  // Used to add notices for future deprecations.
251
  'versions' => exactmetrics_get_php_wp_version_warning_data(),
252
  'plugin_version' => EXACTMETRICS_VERSION,
253
  'is_admin' => true,
254
- 'admin_email' => get_option( 'admin_email' ),
255
  'site_url' => get_site_url(),
256
- 'reports_url' => add_query_arg( 'page', 'exactmetrics_reports', admin_url( 'admin.php' ) ),
257
- 'ecommerce_report_url' => add_query_arg( 'page', 'exactmetrics_reports#/ecommerce', admin_url( 'admin.php' ) ),
258
- 'ecommerce_settings_tab_url' => add_query_arg( 'page', 'exactmetrics_settings#/ecommerce', admin_url( 'admin.php' ) ),
259
- 'first_run_notice' => apply_filters( 'exactmetrics_settings_first_time_notice_hide', exactmetrics_get_option( 'exactmetrics_first_run_notice' ) ),
260
- 'getting_started_url' => is_network_admin() ? network_admin_url( 'admin.php?page=exactmetrics_network#/about' ) : admin_url( 'admin.php?page=exactmetrics_settings#/about/getting-started' ),
261
  'authed' => $is_authed,
262
- 'new_pretty_link_url' => admin_url( 'post-new.php?post_type=pretty-link' ),
263
- 'wpmailsmtp_admin_url' => admin_url( 'admin.php?page=wp-mail-smtp' ),
264
  'load_headline_analyzer_settings' => exactmetrics_load_gutenberg_app() ? 'true' : 'false',
265
- 'exit_url' => add_query_arg( 'page', 'exactmetrics_settings', admin_url( 'admin.php' ) ),
266
  )
267
  );
268
 
@@ -270,18 +275,18 @@ function exactmetrics_admin_scripts() {
270
  return;
271
  }
272
 
273
- if ( exactmetrics_is_reports_page() ) {
274
  global $wp_version;
275
- if ( ! defined( 'EXACTMETRICS_LOCAL_VENDORS_JS_URL' ) ) {
276
- wp_enqueue_script( 'exactmetrics-vue-vendors', plugins_url( $version_path . '/assets/vue/js/chunk-vendors.js', EXACTMETRICS_PLUGIN_FILE ), array(), exactmetrics_get_asset_version(), true );
277
- wp_enqueue_script( 'exactmetrics-vue-common', plugins_url( $version_path . '/assets/vue/js/chunk-common.js', EXACTMETRICS_PLUGIN_FILE ), array(), exactmetrics_get_asset_version(), true );
278
  } else {
279
- wp_enqueue_script( 'exactmetrics-vue-vendors', EXACTMETRICS_LOCAL_VENDORS_JS_URL, array(), exactmetrics_get_asset_version(), true );
280
- wp_enqueue_script( 'exactmetrics-vue-common', EXACTMETRICS_LOCAL_COMMON_JS_URL, array(), exactmetrics_get_asset_version(), true );
281
  }
282
- $app_js_url = defined( 'EXACTMETRICS_LOCAL_REPORTS_JS_URL' ) && EXACTMETRICS_LOCAL_REPORTS_JS_URL ? EXACTMETRICS_LOCAL_REPORTS_JS_URL : plugins_url( $version_path . '/assets/vue/js/reports.js', EXACTMETRICS_PLUGIN_FILE );
283
- wp_register_script( 'exactmetrics-vue-reports', $app_js_url, array(), exactmetrics_get_asset_version(), true );
284
- wp_enqueue_script( 'exactmetrics-vue-reports' );
285
 
286
  // We do not have a current auth.
287
  $auth = ExactMetrics()->auth;
@@ -292,30 +297,31 @@ function exactmetrics_admin_scripts() {
292
  'exactmetrics-vue-reports',
293
  'exactmetrics',
294
  array(
295
- 'ajax' => admin_url( 'admin-ajax.php' ),
296
- 'nonce' => wp_create_nonce( 'mi-admin-nonce' ),
297
  'network' => is_network_admin(),
298
- 'translations' => wp_get_jed_locale_data( exactmetrics_is_pro_version() ? 'exactmetrics-premium' : 'google-analytics-dashboard-for-wp' ),
299
- 'assets' => plugins_url( $version_path . '/assets/vue', EXACTMETRICS_PLUGIN_FILE ),
300
  'shareasale_id' => exactmetrics_get_shareasale_id(),
301
- 'shareasale_url' => exactmetrics_get_shareasale_url( exactmetrics_get_shareasale_id(), '' ),
302
- 'addons_url' => is_multisite() ? network_admin_url( 'admin.php?page=exactmetrics_network#/addons' ) : admin_url( 'admin.php?page=exactmetrics_settings#/addons' ),
303
- 'timezone' => date( 'e' ),
304
  'authed' => $site_auth || $ms_auth,
305
  'auth_connected_type' => $auth->get_connected_type(),
306
- 'settings_url' => add_query_arg( 'page', 'exactmetrics_settings', admin_url( 'admin.php' ) ),
307
  // Used to add notices for future deprecations.
308
  'versions' => exactmetrics_get_php_wp_version_warning_data(),
309
  'plugin_version' => EXACTMETRICS_VERSION,
310
  'is_admin' => true,
311
- 'admin_email' => get_option( 'admin_email' ),
312
  'site_url' => get_site_url(),
313
- 'wizard_url' => is_network_admin() ? network_admin_url( 'index.php?page=exactmetrics-onboarding' ) : admin_url( 'index.php?page=exactmetrics-onboarding' ),
314
- 'install_nonce' => wp_create_nonce( 'exactmetrics-install' ),
315
- 'activate_nonce' => wp_create_nonce( 'exactmetrics-activate' ),
316
- 'deactivate_nonce' => wp_create_nonce( 'exactmetrics-deactivate' ),
317
- 'update_settings' => current_user_can( 'exactmetrics_save_settings' ),
318
- 'migrated' => exactmetrics_get_option( 'gadwp_migrated', 0 ),
 
319
  )
320
  );
321
 
@@ -323,10 +329,10 @@ function exactmetrics_admin_scripts() {
323
  }
324
 
325
  // ublock notice
326
- add_action( 'admin_print_footer_scripts', 'exactmetrics_settings_ublock_error_js', 9999999 );
327
  }
328
 
329
- add_action( 'admin_enqueue_scripts', 'exactmetrics_admin_scripts' );
330
 
331
  /**
332
  * Remove Assets that conflict with ours from our screens.
@@ -336,13 +342,14 @@ add_action( 'admin_enqueue_scripts', 'exactmetrics_admin_scripts' );
336
  * @access public
337
  *
338
  */
339
- function exactmetrics_remove_conflicting_asset_files() {
 
340
 
341
  // Get current screen.
342
  $screen = get_current_screen();
343
 
344
  // Bail if we're not on a ExactMetrics screen.
345
- if ( empty( $screen->id ) || strpos( $screen->id, 'exactmetrics' ) === false ) {
346
  return;
347
  }
348
 
@@ -479,16 +486,16 @@ function exactmetrics_remove_conflicting_asset_files() {
479
  'date-js', // Google Analytics by Web Dorado
480
  );
481
 
482
- if ( ! empty( $styles ) ) {
483
- foreach ( $styles as $style ) {
484
- wp_dequeue_style( $style ); // Remove CSS file from MI screen
485
- wp_deregister_style( $style );
486
  }
487
  }
488
- if ( ! empty( $scripts ) ) {
489
- foreach ( $scripts as $script ) {
490
- wp_dequeue_script( $script ); // Remove JS file from MI screen
491
- wp_deregister_script( $script );
492
  }
493
  }
494
 
@@ -507,46 +514,46 @@ function exactmetrics_remove_conflicting_asset_files() {
507
  );
508
 
509
  global $wp_styles;
510
- foreach ( $wp_styles->queue as $handle ) {
511
- if ( strpos( $wp_styles->registered[ $handle ]->src, 'wp-content' ) === false ) {
512
  return;
513
  }
514
 
515
- if ( strpos( $wp_styles->registered[ $handle ]->handle, 'exactmetrics' ) !== false ) {
516
  return;
517
  }
518
 
519
- foreach ( $third_party as $partial ) {
520
- if ( strpos( $wp_styles->registered[ $handle ]->handle, $partial ) !== false ) {
521
- wp_dequeue_style( $handle ); // Remove css file from MI screen
522
- wp_deregister_style( $handle );
523
  break;
524
- } else if ( strpos( $wp_styles->registered[ $handle ]->src, $partial ) !== false ) {
525
- wp_dequeue_style( $handle ); // Remove css file from MI screen
526
- wp_deregister_style( $handle );
527
  break;
528
  }
529
  }
530
  }
531
 
532
  global $wp_scripts;
533
- foreach ( $wp_scripts->queue as $handle ) {
534
- if ( strpos( $wp_scripts->registered[ $handle ]->src, 'wp-content' ) === false ) {
535
  return;
536
  }
537
 
538
- if ( strpos( $wp_scripts->registered[ $handle ]->handle, 'exactmetrics' ) !== false ) {
539
  return;
540
  }
541
 
542
- foreach ( $third_party as $partial ) {
543
- if ( strpos( $wp_scripts->registered[ $handle ]->handle, $partial ) !== false ) {
544
- wp_dequeue_script( $handle ); // Remove JS file from MI screen
545
- wp_deregister_script( $handle );
546
  break;
547
- } else if ( strpos( $wp_scripts->registered[ $handle ]->src, $partial ) !== false ) {
548
- wp_dequeue_script( $handle ); // Remove JS file from MI screen
549
- wp_deregister_script( $handle );
550
  break;
551
  }
552
  }
@@ -554,50 +561,50 @@ function exactmetrics_remove_conflicting_asset_files() {
554
 
555
  // Remove actions from themes that are not following best practices and break the admin doing so
556
  // Theme: Newspaper by tagDiv
557
- remove_action( 'admin_enqueue_scripts', 'load_wp_admin_js' );
558
- remove_action( 'admin_enqueue_scripts', 'load_wp_admin_css' );
559
- remove_action( 'admin_print_scripts-widgets.php', 'td_on_admin_print_scripts_farbtastic' );
560
- remove_action( 'admin_print_styles-widgets.php', 'td_on_admin_print_styles_farbtastic' );
561
- remove_action( 'admin_print_footer_scripts', 'check_if_media_uploads_is_loaded', 9999 );
562
- remove_action( 'print_media_templates', 'td_custom_gallery_settings_hook' );
563
- remove_action( 'print_media_templates', 'td_change_backbone_js_hook' );
564
- remove_action( 'admin_head', 'tdc_on_admin_head' ); // TagDiv Composer Fix
565
- remove_action( 'print_media_templates', 'us_media_templates' ); // Impreza Theme Fix
566
- remove_action( 'admin_footer', 'gt3pg_add_gallery_template' ); // GT3 Photo & Video Gallery By GT3 Themes Plugin Fix
567
  // Plugin WP Booklist:
568
- remove_action( 'admin_footer', 'wpbooklist_jre_dismiss_prem_notice_forever_action_javascript' );
569
- remove_action( 'admin_footer', 'wpbooklist_dashboard_add_book_action_javascript' );
570
- remove_action( 'admin_footer', 'wpbooklist_edit_book_show_form_action_javascript' );
571
- remove_action( 'admin_footer', 'wpbooklist_show_book_in_colorbox_action_javascript' );
572
- remove_action( 'admin_footer', 'wpbooklist_new_lib_shortcode_action_javascript' );
573
- remove_action( 'admin_footer', 'wpbooklist_dashboard_save_library_display_options_action_javascript' );
574
- remove_action( 'admin_footer', 'wpbooklist_dashboard_save_post_display_options_action_javascript' );
575
- remove_action( 'admin_footer', 'wpbooklist_dashboard_save_page_display_options_action_javascript' );
576
- remove_action( 'admin_footer', 'wpbooklist_update_display_options_action_javascript' );
577
- remove_action( 'admin_footer', 'wpbooklist_edit_book_pagination_action_javascript' );
578
- remove_action( 'admin_footer', 'wpbooklist_edit_book_switch_lib_action_javascript' );
579
- remove_action( 'admin_footer', 'wpbooklist_edit_book_search_action_javascript' );
580
- remove_action( 'admin_footer', 'wpbooklist_edit_book_actual_action_javascript' );
581
- remove_action( 'admin_footer', 'wpbooklist_delete_book_action_javascript' );
582
- remove_action( 'admin_footer', 'wpbooklist_user_apis_action_javascript' );
583
- remove_action( 'admin_footer', 'wpbooklist_upload_new_stylepak_action_javascript' );
584
- remove_action( 'admin_footer', 'wpbooklist_upload_new_post_template_action_javascript' );
585
- remove_action( 'admin_footer', 'wpbooklist_upload_new_page_template_action_javascript' );
586
- remove_action( 'admin_footer', 'wpbooklist_create_db_library_backup_action_javascript' );
587
- remove_action( 'admin_footer', 'wpbooklist_restore_db_library_backup_action_javascript' );
588
- remove_action( 'admin_footer', 'wpbooklist_create_csv_action_javascript' );
589
- remove_action( 'admin_footer', 'wpbooklist_amazon_localization_action_javascript' );
590
- remove_action( 'admin_footer', 'wpbooklist_delete_book_bulk_action_javascript' );
591
- remove_action( 'admin_footer', 'wpbooklist_reorder_action_javascript' );
592
- remove_action( 'admin_footer', 'wpbooklist_exit_results_action_javascript' );
593
- remove_action( 'admin_footer', 'wpbooklist_storytime_select_category_action_javascript' );
594
- remove_action( 'admin_footer', 'wpbooklist_storytime_get_story_action_javascript' );
595
- remove_action( 'admin_footer', 'wpbooklist_storytime_expand_browse_action_javascript' );
596
- remove_action( 'admin_footer', 'wpbooklist_storytime_save_settings_action_javascript' );
597
- remove_action( 'admin_footer', 'wpbooklist_delete_story_action_javascript' );
598
  }
599
 
600
- add_action( 'admin_enqueue_scripts', 'exactmetrics_remove_conflicting_asset_files', 9999 );
601
 
602
  /**
603
  * Remove non-MI notices from MI page.
@@ -607,67 +614,68 @@ add_action( 'admin_enqueue_scripts', 'exactmetrics_remove_conflicting_asset_file
607
  * @access public
608
  *
609
  */
610
- function hide_non_exactmetrics_warnings() {
 
611
  // Bail if we're not on a ExactMetrics screen.
612
- if ( empty( $_REQUEST['page'] ) || strpos( $_REQUEST['page'], 'exactmetrics' ) === false ) {
613
  return;
614
  }
615
 
616
  global $wp_filter;
617
- if ( ! empty( $wp_filter['user_admin_notices']->callbacks ) && is_array( $wp_filter['user_admin_notices']->callbacks ) ) {
618
- foreach ( $wp_filter['user_admin_notices']->callbacks as $priority => $hooks ) {
619
- foreach ( $hooks as $name => $arr ) {
620
- if ( is_object( $arr['function'] ) && $arr['function'] instanceof Closure ) {
621
- unset( $wp_filter['user_admin_notices']->callbacks[ $priority ][ $name ] );
622
  continue;
623
  }
624
- if ( ! empty( $arr['function'][0] ) && is_object( $arr['function'][0] ) && strpos( strtolower( get_class( $arr['function'][0] ) ), 'exactmetrics' ) !== false ) {
625
  continue;
626
  }
627
- if ( ! empty( $name ) && strpos( $name, 'exactmetrics' ) === false ) {
628
- unset( $wp_filter['user_admin_notices']->callbacks[ $priority ][ $name ] );
629
  }
630
  }
631
  }
632
  }
633
 
634
- if ( ! empty( $wp_filter['admin_notices']->callbacks ) && is_array( $wp_filter['admin_notices']->callbacks ) ) {
635
- foreach ( $wp_filter['admin_notices']->callbacks as $priority => $hooks ) {
636
- foreach ( $hooks as $name => $arr ) {
637
- if ( is_object( $arr['function'] ) && $arr['function'] instanceof Closure ) {
638
- unset( $wp_filter['admin_notices']->callbacks[ $priority ][ $name ] );
639
  continue;
640
  }
641
- if ( ! empty( $arr['function'][0] ) && is_object( $arr['function'][0] ) && strpos( strtolower( get_class( $arr['function'][0] ) ), 'exactmetrics' ) !== false ) {
642
  continue;
643
  }
644
- if ( ! empty( $name ) && strpos( $name, 'exactmetrics' ) === false ) {
645
- unset( $wp_filter['admin_notices']->callbacks[ $priority ][ $name ] );
646
  }
647
  }
648
  }
649
  }
650
 
651
- if ( ! empty( $wp_filter['all_admin_notices']->callbacks ) && is_array( $wp_filter['all_admin_notices']->callbacks ) ) {
652
- foreach ( $wp_filter['all_admin_notices']->callbacks as $priority => $hooks ) {
653
- foreach ( $hooks as $name => $arr ) {
654
- if ( is_object( $arr['function'] ) && $arr['function'] instanceof Closure ) {
655
- unset( $wp_filter['all_admin_notices']->callbacks[ $priority ][ $name ] );
656
  continue;
657
  }
658
- if ( ! empty( $arr['function'][0] ) && is_object( $arr['function'][0] ) && strpos( strtolower( get_class( $arr['function'][0] ) ), 'exactmetrics' ) !== false ) {
659
  continue;
660
  }
661
- if ( ! empty( $name ) && strpos( $name, 'exactmetrics' ) === false ) {
662
- unset( $wp_filter['all_admin_notices']->callbacks[ $priority ][ $name ] );
663
  }
664
  }
665
  }
666
  }
667
  }
668
 
669
- add_action( 'admin_print_scripts', 'hide_non_exactmetrics_warnings' );
670
- add_action( 'admin_head', 'hide_non_exactmetrics_warnings', PHP_INT_MAX );
671
 
672
  /**
673
  * Called whenever an upgrade button / link is displayed in Lite, this function will
@@ -688,54 +696,57 @@ add_action( 'admin_head', 'hide_non_exactmetrics_warnings', PHP_INT_MAX );
688
  * @access public
689
  *
690
  */
691
- function exactmetrics_get_upgrade_link( $medium = '', $campaign = '', $url = '' ) {
692
- $url = exactmetrics_get_url( $medium, $campaign, $url, false );
 
693
 
694
- if ( exactmetrics_is_pro_version() ) {
695
- return esc_url( $url );
696
  }
697
 
698
  // Get the ShareASale ID
699
  $shareasale_id = exactmetrics_get_shareasale_id();
700
 
701
  // If we have a shareasale ID return the shareasale url
702
- if ( ! empty( $shareasale_id ) ) {
703
- $shareasale_id = absint( $shareasale_id );
704
 
705
- return esc_url( exactmetrics_get_shareasale_url( $shareasale_id, $url ) );
706
  } else {
707
- return esc_url( $url );
708
  }
709
  }
710
 
711
- function exactmetrics_get_url( $medium = '', $campaign = '', $url = '', $escape = true ) {
 
712
  // Setup Campaign variables
713
  $source = exactmetrics_is_pro_version() ? 'proplugin' : 'liteplugin';
714
- $medium = ! empty( $medium ) ? $medium : 'defaultmedium';
715
- $campaign = ! empty( $campaign ) ? $campaign : 'defaultcampaign';
716
  $content = EXACTMETRICS_VERSION;
717
  $default_url = exactmetrics_is_pro_version() ? '' : 'lite/';
718
- $url = ! empty( $url ) ? $url : 'https://www.exactmetrics.com/' . $default_url;
719
 
720
  // Put together redirect URL
721
  $url = add_query_arg(
722
  array(
723
  'utm_source' => $source, // Pro/Lite Plugin
724
- 'utm_medium' => sanitize_key( $medium ), // Area of ExactMetrics (example Reports)
725
- 'utm_campaign' => sanitize_key( $campaign ), // Which link (example eCommerce Report)
726
  'utm_content' => $content, // Version number of MI
727
  ),
728
- trailingslashit( $url )
729
  );
730
 
731
- if ( $escape ) {
732
- return esc_url( $url );
733
  } else {
734
  return $url;
735
  }
736
  }
737
 
738
- function exactmetrics_settings_ublock_error_js() {
 
739
  echo "<script type='text/javascript'>\n";
740
  echo "jQuery( document ).ready( function( $ ) {
741
  if ( window.uorigindetected == null){
@@ -750,69 +761,71 @@ function exactmetrics_settings_ublock_error_js() {
750
  echo "\n</script>";
751
  }
752
 
753
- function exactmetrics_ublock_notice() {
 
754
  ob_start(); ?>
755
  <div id="exactmetrics-ublock-origin-error" class="error inline" style="display:none;">
756
  <?php
757
  // Translators: Placeholders are for links to fix the issue.
758
- echo sprintf( esc_html__( 'ExactMetrics has detected that it\'s files are being blocked. This is usually caused by a adblock browser plugin (particularly uBlock Origin), or a conflicting WordPress theme or plugin. This issue only affects the admin side of ExactMetrics. To solve this, ensure ExactMetrics is whitelisted for your website URL in any adblock browser plugin you use. For step by step directions on how to do this, %1$sclick here%2$s. If this doesn\'t solve the issue (rare), send us a ticket %3$shere%2$s and we\'ll be happy to help diagnose the issue.', 'google-analytics-dashboard-for-wp' ), '<a href="https://exactmetrics.com/docs/exactmetrics-asset-files-blocked/" target="_blank" rel="noopener noreferrer" referrer="no-referrer">', '</a>', '<a href="https://exactmetrics.com/contact/" target="_blank" rel="noopener noreferrer" referrer="no-referrer">' );
759
  ?>
760
  </div>
761
- <?php
762
  return ob_get_clean();
763
  }
764
 
765
  /**
766
  * Some themes/plugins don't add proper checks and load JS code in all admin pages causing conflicts.
767
  */
768
- function exactmetrics_remove_unnecessary_footer_hooks() {
 
769
 
770
  $screen = get_current_screen();
771
  // Bail if we're not on a ExactMetrics screen.
772
- if ( empty( $screen->id ) || strpos( $screen->id, 'exactmetrics' ) === false ) {
773
  return;
774
  }
775
 
776
  // Remove js code added by Newspaper theme - version 8.8.0.
777
- remove_action( 'print_media_templates', 'td_custom_gallery_settings_hook' );
778
- remove_action( 'print_media_templates', 'td_change_backbone_js_hook' );
779
  // Remove js code added by the Brooklyn theme - version 4.5.3.1.
780
- remove_action( 'print_media_templates', 'ut_create_gallery_options' );
781
 
782
  // Remove js code added by WordPress Book List Plugin - version 5.8.1.
783
- remove_action( 'admin_footer', 'wpbooklist_jre_dismiss_prem_notice_forever_action_javascript' );
784
- remove_action( 'admin_footer', 'wpbooklist_dashboard_add_book_action_javascript' );
785
- remove_action( 'admin_footer', 'wpbooklist_edit_book_show_form_action_javascript' );
786
- remove_action( 'admin_footer', 'wpbooklist_show_book_in_colorbox_action_javascript' );
787
- remove_action( 'admin_footer', 'wpbooklist_new_lib_shortcode_action_javascript' );
788
- remove_action( 'admin_footer', 'wpbooklist_dashboard_save_library_display_options_action_javascript' );
789
- remove_action( 'admin_footer', 'wpbooklist_dashboard_save_post_display_options_action_javascript' );
790
- remove_action( 'admin_footer', 'wpbooklist_dashboard_save_page_display_options_action_javascript' );
791
- remove_action( 'admin_footer', 'wpbooklist_update_display_options_action_javascript' );
792
- remove_action( 'admin_footer', 'wpbooklist_edit_book_pagination_action_javascript' );
793
- remove_action( 'admin_footer', 'wpbooklist_edit_book_switch_lib_action_javascript' );
794
- remove_action( 'admin_footer', 'wpbooklist_edit_book_search_action_javascript' );
795
- remove_action( 'admin_footer', 'wpbooklist_edit_book_actual_action_javascript' );
796
- remove_action( 'admin_footer', 'wpbooklist_delete_book_action_javascript' );
797
- remove_action( 'admin_footer', 'wpbooklist_user_apis_action_javascript' );
798
- remove_action( 'admin_footer', 'wpbooklist_upload_new_stylepak_action_javascript' );
799
- remove_action( 'admin_footer', 'wpbooklist_upload_new_post_template_action_javascript' );
800
- remove_action( 'admin_footer', 'wpbooklist_upload_new_page_template_action_javascript' );
801
- remove_action( 'admin_footer', 'wpbooklist_create_db_library_backup_action_javascript' );
802
- remove_action( 'admin_footer', 'wpbooklist_restore_db_library_backup_action_javascript' );
803
- remove_action( 'admin_footer', 'wpbooklist_create_csv_action_javascript' );
804
- remove_action( 'admin_footer', 'wpbooklist_amazon_localization_action_javascript' );
805
- remove_action( 'admin_footer', 'wpbooklist_delete_book_bulk_action_javascript' );
806
- remove_action( 'admin_footer', 'wpbooklist_reorder_action_javascript' );
807
- remove_action( 'admin_footer', 'wpbooklist_exit_results_action_javascript' );
808
- remove_action( 'admin_footer', 'wpbooklist_storytime_select_category_action_javascript' );
809
- remove_action( 'admin_footer', 'wpbooklist_storytime_get_story_action_javascript' );
810
- remove_action( 'admin_footer', 'wpbooklist_storytime_expand_browse_action_javascript' );
811
- remove_action( 'admin_footer', 'wpbooklist_storytime_save_settings_action_javascript' );
812
- remove_action( 'admin_footer', 'wpbooklist_delete_story_action_javascript' );
813
  }
814
 
815
- add_action( 'admin_head', 'exactmetrics_remove_unnecessary_footer_hooks', 15 );
816
 
817
 
818
  /**
@@ -824,112 +837,114 @@ add_action( 'admin_head', 'exactmetrics_remove_unnecessary_footer_hooks', 15 );
824
  *
825
  * @return string
826
  */
827
- function exactmetrics_prevent_version_number_removal( $src ) {
 
828
  // Apply this only to admin-side scripts.
829
- if ( ! is_admin() ) {
830
  return $src;
831
  }
832
 
833
  // Make sure are only changing our scripts and only if the version number is missing.
834
- if ( ( false !== strpos( $src, 'exactmetrics' ) || false !== strpos( $src, 'google-analytics-dashboard-for-wp' ) || false !== strpos( $src, 'exactmetrics-premium' ) ) && false === strpos( $src, '?ver' ) ) {
835
- $src = add_query_arg( 'ver', exactmetrics_get_asset_version(), $src );
836
  }
837
 
838
  return $src;
839
  }
840
 
841
- add_filter( 'script_loader_src', 'exactmetrics_prevent_version_number_removal', 9999, 1 );
842
- add_filter( 'style_loader_src', 'exactmetrics_prevent_version_number_removal', 9999, 1 );
843
 
844
  /**
845
  * Data used for the Vue scripts to display old PHP and WP versions warnings.
846
  */
847
- function exactmetrics_get_php_wp_version_warning_data() {
 
848
  global $wp_version;
849
 
850
- $compatible_php_version = apply_filters( 'exactmetrics_compatible_php_version', false );
851
- $compatible_wp_version = apply_filters( 'exactmetrics_compatible_wp_version', false );
852
 
853
  return array(
854
  'php_version' => phpversion(),
855
- 'php_version_below_54' => apply_filters( 'exactmetrics_temporarily_hide_php_under_56_upgrade_warnings', version_compare( phpversion(), $compatible_php_version['warning'], '<' ) ),
856
- 'php_version_below_56' => apply_filters( 'exactmetrics_temporarily_hide_php_56_upgrade_warnings', version_compare( phpversion(), $compatible_php_version['warning'], '>=' ) && version_compare( phpversion(), $compatible_php_version['recommended'], '<' ) ),
857
- 'php_update_link' => exactmetrics_get_url( 'settings-notice', 'settings-page', 'https://www.exactmetrics.com/docs/update-php/' ),
858
  'wp_version' => $wp_version,
859
- 'wp_version_below_46' => version_compare( $wp_version, $compatible_wp_version['warning'], '<' ),
860
- 'wp_version_below_49' => version_compare( $wp_version, $compatible_wp_version['recommended'], '<' ),
861
- 'wp_update_link' => exactmetrics_get_url( 'settings-notice', 'settings-page', 'https://www.exactmetrics.com/docs/update-wordpress/' ),
862
  );
863
  }
864
 
865
  /**
866
  * Check WP and PHP version and add contextual notifications for upgrades.
867
  */
868
- function exactmetrics_maybe_add_wp_php_version_notification() {
 
869
  global $wp_version;
870
 
871
  $icon = '<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" r="16" fill="#FAD1D1"/><path d="M17.3634 19.0714C17.792 19.4821 18.0063 19.9821 18.0063 20.5714C18.0063 21.1607 17.792 21.6607 17.3634 22.0714C16.9527 22.5 16.4527 22.7143 15.8634 22.7143C15.2742 22.7143 14.7652 22.5 14.3367 22.0714C13.9259 21.6607 13.7206 21.1607 13.7206 20.5714C13.7206 19.9821 13.9259 19.4821 14.3367 19.0714C14.7652 18.6429 15.2742 18.4286 15.8634 18.4286C16.4527 18.4286 16.9527 18.6429 17.3634 19.0714ZM13.9617 9.66964C13.9617 9.49107 14.0242 9.33929 14.1492 9.21429C14.2742 9.07143 14.4259 9 14.6045 9H17.1224C17.3009 9 17.4527 9.07143 17.5777 9.21429C17.7027 9.33929 17.7652 9.49107 17.7652 9.66964L17.3902 16.9554C17.3902 17.1339 17.3277 17.2857 17.2027 17.4107C17.0777 17.5179 16.9259 17.5714 16.7474 17.5714H14.9795C14.8009 17.5714 14.6492 17.5179 14.5242 17.4107C14.3992 17.2857 14.3367 17.1339 14.3367 16.9554L13.9617 9.66964Z" fill="#EB5757"/></svg>';
872
- $needs_php_warning = version_compare( phpversion(), '5.6', '<' );
873
- $needs_wp_warning = version_compare( $wp_version, '4.9', '<' );
874
 
875
- if ( $needs_php_warning ) {
876
  $notification['id'] = 'upgrade_php_56_notification';
877
- $notification['title'] = __( 'ACTION REQUIRED: Your PHP version is putting your site at risk!', 'google-analytics-dashboard-for-wp' );
878
- if ( $needs_wp_warning ) {
879
- $notification['title'] = __( 'ACTION REQUIRED: Speed your website up 400% with a single email!', 'google-analytics-dashboard-for-wp' );
880
  }
881
 
882
- $php_url = exactmetrics_get_url( 'notifications', 'upgrade-php', 'https://www.exactmetrics.com/docs/update-php' );
883
 
884
- $notification['type'] = array( 'basic', 'lite', 'master', 'plus', 'pro' );
885
  // Translators: Placeholder is for the current PHP version.
886
- $notification['content'] = sprintf( esc_html__( 'In the next major release of ExactMetrics we are planning to remove support for the version of PHP you are using (%s). This insecure version is no longer supported by WordPress itself, so you are already missing out on the latest features of WordPress along with critical updates for security and performance (modern PHP versions make websites much faster).', 'google-analytics-dashboard-for-wp' ), phpversion() ) . "\n\n";
887
 
888
  // Translators: Placeholders add a link to an article.
889
- $notification['content'] .= sprintf( esc_html__( 'To ensure ExactMetrics and other plugins on your site continue to function properly, and avoid putting your site at risk, please take a few minutes to ask your website hosting provider to upgrade the version of PHP to a modern PHP version (7.2 or newer). We provide helpful templates for how to ask them %1$shere%2$s.', 'google-analytics-dashboard-for-wp' ), '<a target="_blank" href="' . $php_url . '">', '</a>' ) . "\n\n";
890
- $notification['content'] .= esc_html__( 'Upgrading your PHP version will make sure you are able to continue using WordPress without issues in the future, keep your site secure, and will also make your website up to 400% faster!', 'google-analytics-dashboard-for-wp' );
891
 
892
  $notification['icon'] = $icon;
893
  $notification['btns'] = array(
894
  'learn_more' => array(
895
  'url' => $php_url,
896
- 'text' => esc_html__( 'Learn More', 'google-analytics-dashboard-for-wp' ),
897
  ),
898
  );
899
 
900
  // Add the notification.
901
- ExactMetrics()->notifications->add( $notification );
902
  }
903
 
904
- if ( $needs_wp_warning ) {
905
  $isitwp_url = 'https://www.isitwp.com/upgrading-wordpress-is-easier-than-you-think/?utm_source=exactmetrics&utm_medium=notifications&utm_campaign=upgradewp';
906
- $wpbeginner_url = exactmetrics_get_url( 'notifications', 'pgradewp', 'https://www.wpbeginner.com/beginners-guide/why-you-should-always-use-the-latest-version-of-wordpress/' );
907
 
908
  $notification['id'] = 'upgrade_wp_49_notification';
909
- $notification['title'] = __( 'ACTION REQUIRED: Your WordPress version is putting your site at risk!', 'google-analytics-dashboard-for-wp' );
910
- $notification['type'] = array( 'basic', 'lite', 'master', 'plus', 'pro' );
911
  // Translators: Placeholder is for the current WordPress version.
912
- $notification['content'] = sprintf( esc_html__( 'In the next major release of ExactMetrics we are planning to remove support for the version of WordPress you are using (version %s). This version is several years out of date, and most plugins do not support this version anymore, so you could be missing out on critical updates for performance and security already!', 'google-analytics-dashboard-for-wp' ), $wp_version ) . "\n\n";
913
 
914
- $notification['content'] .= esc_html__( 'The good news: updating WordPress has never been easier and only takes a few moments.', 'google-analytics-dashboard-for-wp' );
915
  // Translators: Placeholders add links to articles.
916
- $notification['content'] .= sprintf( esc_html__( 'To update, we recommend following this %1$sstep by step guide for updating WordPress%2$s from IsItWP and afterwards check out %3$sWhy You Should Always Use the Latest Version of WordPress%4$s on WPBeginner.', 'google-analytics-dashboard-for-wp' ), '<a target="_blank" href="' . $isitwp_url . '">', '</a>', '<a target="_blank" href="' . $wpbeginner_url . '">', '</a>' ) . "\n\n";
917
 
918
  $notification['icon'] = $icon;
919
  $notification['btns'] = array(
920
  'learn_more' => array(
921
  'url' => $isitwp_url,
922
- 'text' => esc_html__( 'Learn More', 'google-analytics-dashboard-for-wp' ),
923
  ),
924
  );
925
 
926
  // Add the notification.
927
- ExactMetrics()->notifications->add( $notification );
928
  }
929
-
930
  }
931
 
932
- add_action( 'admin_init', 'exactmetrics_maybe_add_wp_php_version_notification' );
933
 
934
  /**
935
  * Add notification for Year In Review report for year 2021.
@@ -938,27 +953,51 @@ add_action( 'admin_init', 'exactmetrics_maybe_add_wp_php_version_notification' )
938
  * @since 7.13.2
939
  *
940
  */
941
- function exactmetrics_year_in_review_notification() {
 
942
 
943
  // Check if dates are between Jan 1st 2022 & 13th Jan 2022.
944
- if ( exactmetrics_date_is_between( '2022-01-01', '2022-01-14' ) ) {
945
 
946
  $notification['id'] = 'exactmetrics_notification_year_in_review';
947
- $notification['type'] = array( 'basic', 'lite', 'master', 'plus', 'pro' );
948
  $notification['start'] = '2022-01-01';
949
  $notification['end'] = '2022-01-14';
950
- $notification['title'] = esc_html__( 'View 2021 Year in Review report!', 'google-analytics-dashboard-for-wp' );
951
- $notification['content'] = esc_html__( 'See how your website performed this year and find tips along the way to help grow even more in 2022!', 'google-analytics-dashboard-for-wp' );
952
  $notification['btns'] = array(
953
  'learn_more' => array(
954
- 'url' => esc_url( admin_url( 'admin.php?page=exactmetrics_reports#/year-in-review' ) ),
955
- 'text' => esc_html__( 'Learn More', 'google-analytics-dashboard-for-wp' ),
956
  ),
957
  );
958
 
959
  // Add the notification.
960
- ExactMetrics()->notifications->add( $notification );
961
  }
962
  }
963
 
964
- add_action( 'admin_init', 'exactmetrics_year_in_review_notification' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  <?php
2
+
3
  /**
4
  * Common admin class.
5
  *
11
  */
12
 
13
  // Exit if accessed directly
14
+ if (!defined('ABSPATH')) {
15
  exit;
16
  }
17
 
18
+ function exactmetrics_is_settings_page()
19
+ {
20
+ $current_screen = function_exists('get_current_screen') ? get_current_screen() : false;
21
  global $admin_page_hooks;
22
 
23
+ if (!is_object($current_screen) || empty($current_screen->id) || empty($admin_page_hooks)) {
24
  return false;
25
  }
26
 
27
  $settings_page = false;
28
+ if (!empty($admin_page_hooks['exactmetrics_settings']) && $current_screen->id === $admin_page_hooks['exactmetrics_settings']) {
29
  $settings_page = true;
30
  }
31
 
32
+ if ($current_screen->id === 'toplevel_page_exactmetrics_settings') {
33
  $settings_page = true;
34
  }
35
 
36
+ if ($current_screen->id === 'exactmetrics_page_exactmetrics_settings') {
37
  $settings_page = true;
38
  }
39
 
40
+ if (strpos($current_screen->id, 'exactmetrics_settings') !== false) {
41
  $settings_page = true;
42
  }
43
 
44
+ if (!empty($current_screen->base) && strpos($current_screen->base, 'exactmetrics_network') !== false) {
45
  $settings_page = true;
46
  }
47
 
53
  *
54
  * @return bool
55
  */
56
+ function exactmetrics_is_reports_page()
57
+ {
58
+ $current_screen = function_exists('get_current_screen') ? get_current_screen() : false;
59
  global $admin_page_hooks;
60
 
61
+ if (!is_object($current_screen) || empty($current_screen->id) || empty($admin_page_hooks)) {
62
  return false;
63
  }
64
 
65
  $reports_page = false;
66
+ if (!empty($admin_page_hooks['exactmetrics_reports']) && $current_screen->id === $admin_page_hooks['exactmetrics_reports']) {
67
  $reports_page = true;
68
  }
69
 
70
+ if ('toplevel_page_exactmetrics_reports' === $current_screen->id) {
71
  $reports_page = true;
72
  }
73
 
74
+ if (strpos($current_screen->id, 'exactmetrics_reports') !== false) {
75
  $reports_page = true;
76
  }
77
 
86
  * @access public
87
  *
88
  */
89
+ function exactmetrics_admin_styles()
90
+ {
91
 
92
+ $suffix = (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG) ? '' : '.min';
93
 
94
  // Load Common admin styles.
95
+ wp_register_style('exactmetrics-admin-common-style', plugins_url('assets/css/admin-common' . $suffix . '.css', EXACTMETRICS_PLUGIN_FILE), array(), exactmetrics_get_asset_version());
96
+ wp_enqueue_style('exactmetrics-admin-common-style');
97
 
98
  // Get current screen.
99
  $screen = get_current_screen();
100
 
101
  // Bail if we're not on a ExactMetrics screen.
102
+ if (empty($screen->id) || strpos($screen->id, 'exactmetrics') === false) {
103
  return;
104
  }
105
 
107
  $rtl = is_rtl() ? '.rtl' : '';
108
 
109
  // For the settings page, load the Vue app styles.
110
+ if (exactmetrics_is_settings_page()) {
111
+ if (!defined('EXACTMETRICS_LOCAL_JS_URL')) {
112
+ wp_enqueue_style('exactmetrics-vue-style-vendors', plugins_url($version_path . '/assets/vue/css/chunk-vendors' . $rtl . '.css', EXACTMETRICS_PLUGIN_FILE), array(), exactmetrics_get_asset_version());
113
+ wp_enqueue_style('exactmetrics-vue-style-common', plugins_url($version_path . '/assets/vue/css/chunk-common' . $rtl . '.css', EXACTMETRICS_PLUGIN_FILE), array(), exactmetrics_get_asset_version());
114
+ wp_enqueue_style('exactmetrics-vue-style', plugins_url($version_path . '/assets/vue/css/settings' . $rtl . '.css', EXACTMETRICS_PLUGIN_FILE), array(), exactmetrics_get_asset_version());
115
  }
116
 
117
  // Don't load other styles on the settings page.
118
  return;
119
  }
120
 
121
+ if (exactmetrics_is_reports_page()) {
122
+ if (!defined('EXACTMETRICS_LOCAL_REPORTS_JS_URL')) {
123
+ wp_enqueue_style('exactmetrics-vue-style-vendors', plugins_url($version_path . '/assets/vue/css/chunk-vendors' . $rtl . '.css', EXACTMETRICS_PLUGIN_FILE), array(), exactmetrics_get_asset_version());
124
+ wp_enqueue_style('exactmetrics-vue-style-common', plugins_url($version_path . '/assets/vue/css/chunk-common' . $rtl . '.css', EXACTMETRICS_PLUGIN_FILE), array(), exactmetrics_get_asset_version());
125
+ wp_enqueue_style('exactmetrics-vue-style', plugins_url($version_path . '/assets/vue/css/reports' . $rtl . '.css', EXACTMETRICS_PLUGIN_FILE), array(), exactmetrics_get_asset_version());
126
  }
127
 
128
  return;
129
  }
130
 
131
  // Tooltips
132
+ wp_enqueue_script('jquery-ui-tooltip');
133
  }
134
 
135
+ add_action('admin_enqueue_scripts', 'exactmetrics_admin_styles');
136
 
137
  /**
138
  * Loads scripts for all ExactMetrics-based Administration Screens.
142
  * @access public
143
  *
144
  */
145
+ function exactmetrics_admin_scripts()
146
+ {
147
 
148
  // Our Common Admin JS.
149
+ $suffix = (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG) ? '' : '.min';
150
 
151
+ wp_register_script('exactmetrics-admin-common-script', plugins_url('assets/js/admin-common' . $suffix . '.js', EXACTMETRICS_PLUGIN_FILE), array('jquery'), exactmetrics_get_asset_version(), true);
152
 
153
+ wp_enqueue_script('exactmetrics-admin-common-script');
154
 
155
  wp_localize_script(
156
  'exactmetrics-admin-common-script',
157
  'exactmetrics_admin_common',
158
  array(
159
+ 'ajax' => admin_url('admin-ajax.php'),
160
+ 'dismiss_notice_nonce' => wp_create_nonce('exactmetrics-dismiss-notice'),
161
  )
162
  );
163
 
165
  $screen = get_current_screen();
166
 
167
  // Bail if we're not on a ExactMetrics screen.
168
+ if (empty($screen->id) || strpos($screen->id, 'exactmetrics') === false) {
169
  return;
170
  }
171
 
172
  $version_path = exactmetrics_is_pro_version() ? 'pro' : 'lite';
173
 
174
  // For the settings page, load the Vue app.
175
+ if (exactmetrics_is_settings_page()) {
176
+ if (!defined('EXACTMETRICS_LOCAL_VENDORS_JS_URL')) {
177
+ wp_enqueue_script('exactmetrics-vue-vendors', plugins_url($version_path . '/assets/vue/js/chunk-vendors.js', EXACTMETRICS_PLUGIN_FILE), array(), exactmetrics_get_asset_version(), true);
178
+ wp_enqueue_script('exactmetrics-vue-common', plugins_url($version_path . '/assets/vue/js/chunk-common.js', EXACTMETRICS_PLUGIN_FILE), array(), exactmetrics_get_asset_version(), true);
179
  } else {
180
+ wp_enqueue_script('exactmetrics-vue-vendors', EXACTMETRICS_LOCAL_VENDORS_JS_URL, array(), exactmetrics_get_asset_version(), true);
181
+ wp_enqueue_script('exactmetrics-vue-common', EXACTMETRICS_LOCAL_COMMON_JS_URL, array(), exactmetrics_get_asset_version(), true);
182
  }
183
+ $app_js_url = defined('EXACTMETRICS_LOCAL_JS_URL') && EXACTMETRICS_LOCAL_JS_URL ? EXACTMETRICS_LOCAL_JS_URL : plugins_url($version_path . '/assets/vue/js/settings.js', EXACTMETRICS_PLUGIN_FILE);
184
+ wp_register_script('exactmetrics-vue-script', $app_js_url, array(), exactmetrics_get_asset_version(), true);
185
+ wp_enqueue_script('exactmetrics-vue-script');
186
  $plugins = get_plugins();
187
  $install_amp_url = false;
188
+ if (exactmetrics_can_install_plugins()) {
189
  $amp_key = 'amp/amp.php';
190
+ if (array_key_exists($amp_key, $plugins)) {
191
+ $install_amp_url = wp_nonce_url(self_admin_url('plugins.php?action=activate&plugin=' . $amp_key), 'activate-plugin_' . $amp_key);
192
  } else {
193
+ $install_amp_url = wp_nonce_url(self_admin_url('update.php?action=install-plugin&plugin=amp'), 'install-plugin_amp');
194
  }
195
  }
196
  $install_woocommerce_url = false;
197
+ if (exactmetrics_can_install_plugins()) {
198
  $woo_key = 'woocommerce/woocommerce.php';
199
+ if (array_key_exists($woo_key, $plugins)) {
200
+ $install_woocommerce_url = wp_nonce_url(self_admin_url('plugins.php?action=activate&plugin=' . $woo_key), 'activate-plugin_' . $woo_key);
201
  } else {
202
+ $install_woocommerce_url = wp_nonce_url(self_admin_url('update.php?action=install-plugin&plugin=woocommerce'), 'install-plugin_woocommerce');
203
  }
204
  }
205
  $install_fbia_url = false;
206
+ if (exactmetrics_can_install_plugins()) {
207
  $fbia_key = 'fb-instant-articles/facebook-instant-articles.php';
208
+ if (array_key_exists($fbia_key, $plugins)) {
209
+ $install_fbia_url = wp_nonce_url(self_admin_url('plugins.php?action=activate&plugin=' . $fbia_key), 'activate-plugin_' . $fbia_key);
210
  } else {
211
+ $install_fbia_url = wp_nonce_url(self_admin_url('update.php?action=install-plugin&plugin=fb-instant-articles'), 'install-plugin_fb-instant-articles');
212
  }
213
  }
214
 
215
  $prepared_dimensions = array();
216
+ if (class_exists('ExactMetrics_Admin_Custom_Dimensions')) {
217
  $dimensions = new ExactMetrics_Admin_Custom_Dimensions();
218
  $dimensions = $dimensions->custom_dimensions();
219
  $prepared_dimensions = array();
220
+ foreach ($dimensions as $dimension_type => $dimension) {
221
  $dimension['type'] = $dimension_type;
222
  $prepared_dimensions[] = $dimension;
223
  }
224
  }
225
+ $is_authed = (ExactMetrics()->auth->is_authed() || ExactMetrics()->auth->is_network_authed());
226
 
227
  wp_localize_script(
228
  'exactmetrics-vue-script',
229
  'exactmetrics',
230
  array(
231
+ 'ajax' => admin_url('admin-ajax.php'),
232
+ 'nonce' => wp_create_nonce('mi-admin-nonce'),
233
  'network' => is_network_admin(),
234
+ 'translations' => wp_get_jed_locale_data(exactmetrics_is_pro_version() ? 'exactmetrics-premium' : 'google-analytics-dashboard-for-wp'),
235
+ 'assets' => plugins_url($version_path . '/assets/vue', EXACTMETRICS_PLUGIN_FILE),
236
  'roles' => exactmetrics_get_roles(),
237
  'roles_manage_options' => exactmetrics_get_manage_options_roles(),
238
  'shareasale_id' => exactmetrics_get_shareasale_id(),
239
+ 'shareasale_url' => exactmetrics_get_shareasale_url(exactmetrics_get_shareasale_id(), ''),
240
+ 'addons_url' => is_multisite() ? network_admin_url('admin.php?page=exactmetrics_network#/addons') : admin_url('admin.php?page=exactmetrics_settings#/addons'),
241
+ 'seo_settings_page_url' => is_multisite() ? network_admin_url('admin.php?page=exactmetrics_network#/seo') : admin_url('admin.php?page=exactmetrics_settings#/seo'),
242
+ 'aioseo_dashboard_url' => is_multisite() ? network_admin_url('admin.php?page=aioseo') : admin_url('admin.php?page=aioseo'),
243
+ 'wp_plugins_page_url' => is_multisite() ? network_admin_url('plugins.php') : admin_url('plugins.php'),
244
+ 'email_summary_url' => admin_url('admin.php?exactmetrics_email_preview&exactmetrics_email_template=summary'),
245
  'install_amp_url' => $install_amp_url,
246
  'install_fbia_url' => $install_fbia_url,
247
  'install_woo_url' => $install_woocommerce_url,
248
  'dimensions' => $prepared_dimensions,
249
+ 'wizard_url' => is_network_admin() ? network_admin_url('index.php?page=exactmetrics-onboarding') : admin_url('index.php?page=exactmetrics-onboarding'),
250
  'install_plugins' => exactmetrics_can_install_plugins(),
251
+ 'unfiltered_html' => current_user_can('unfiltered_html'),
252
+ 'activate_nonce' => wp_create_nonce('exactmetrics-activate'),
253
+ 'deactivate_nonce' => wp_create_nonce('exactmetrics-deactivate'),
254
+ 'install_nonce' => wp_create_nonce('exactmetrics-install'),
255
  // Used to add notices for future deprecations.
256
  'versions' => exactmetrics_get_php_wp_version_warning_data(),
257
  'plugin_version' => EXACTMETRICS_VERSION,
258
  'is_admin' => true,
259
+ 'admin_email' => get_option('admin_email'),
260
  'site_url' => get_site_url(),
261
+ 'reports_url' => add_query_arg('page', 'exactmetrics_reports', admin_url('admin.php')),
262
+ 'ecommerce_report_url' => add_query_arg('page', 'exactmetrics_reports#/ecommerce', admin_url('admin.php')),
263
+ 'ecommerce_settings_tab_url' => add_query_arg('page', 'exactmetrics_settings#/ecommerce', admin_url('admin.php')),
264
+ 'first_run_notice' => apply_filters('exactmetrics_settings_first_time_notice_hide', exactmetrics_get_option('exactmetrics_first_run_notice')),
265
+ 'getting_started_url' => is_network_admin() ? network_admin_url('admin.php?page=exactmetrics_network#/about') : admin_url('admin.php?page=exactmetrics_settings#/about/getting-started'),
266
  'authed' => $is_authed,
267
+ 'new_pretty_link_url' => admin_url('post-new.php?post_type=pretty-link'),
268
+ 'wpmailsmtp_admin_url' => admin_url('admin.php?page=wp-mail-smtp'),
269
  'load_headline_analyzer_settings' => exactmetrics_load_gutenberg_app() ? 'true' : 'false',
270
+ 'exit_url' => add_query_arg('page', 'exactmetrics_settings', admin_url('admin.php')),
271
  )
272
  );
273
 
275
  return;
276
  }
277
 
278
+ if (exactmetrics_is_reports_page()) {
279
  global $wp_version;
280
+ if (!defined('EXACTMETRICS_LOCAL_VENDORS_JS_URL')) {
281
+ wp_enqueue_script('exactmetrics-vue-vendors', plugins_url($version_path . '/assets/vue/js/chunk-vendors.js', EXACTMETRICS_PLUGIN_FILE), array(), exactmetrics_get_asset_version(), true);
282
+ wp_enqueue_script('exactmetrics-vue-common', plugins_url($version_path . '/assets/vue/js/chunk-common.js', EXACTMETRICS_PLUGIN_FILE), array(), exactmetrics_get_asset_version(), true);
283
  } else {
284
+ wp_enqueue_script('exactmetrics-vue-vendors', EXACTMETRICS_LOCAL_VENDORS_JS_URL, array(), exactmetrics_get_asset_version(), true);
285
+ wp_enqueue_script('exactmetrics-vue-common', EXACTMETRICS_LOCAL_COMMON_JS_URL, array(), exactmetrics_get_asset_version(), true);
286
  }
287
+ $app_js_url = defined('EXACTMETRICS_LOCAL_REPORTS_JS_URL') && EXACTMETRICS_LOCAL_REPORTS_JS_URL ? EXACTMETRICS_LOCAL_REPORTS_JS_URL : plugins_url($version_path . '/assets/vue/js/reports.js', EXACTMETRICS_PLUGIN_FILE);
288
+ wp_register_script('exactmetrics-vue-reports', $app_js_url, array(), exactmetrics_get_asset_version(), true);
289
+ wp_enqueue_script('exactmetrics-vue-reports');
290
 
291
  // We do not have a current auth.
292
  $auth = ExactMetrics()->auth;
297
  'exactmetrics-vue-reports',
298
  'exactmetrics',
299
  array(
300
+ 'ajax' => admin_url('admin-ajax.php'),
301
+ 'nonce' => wp_create_nonce('mi-admin-nonce'),
302
  'network' => is_network_admin(),
303
+ 'translations' => wp_get_jed_locale_data(exactmetrics_is_pro_version() ? 'exactmetrics-premium' : 'google-analytics-dashboard-for-wp'),
304
+ 'assets' => plugins_url($version_path . '/assets/vue', EXACTMETRICS_PLUGIN_FILE),
305
  'shareasale_id' => exactmetrics_get_shareasale_id(),
306
+ 'shareasale_url' => exactmetrics_get_shareasale_url(exactmetrics_get_shareasale_id(), ''),
307
+ 'addons_url' => is_multisite() ? network_admin_url('admin.php?page=exactmetrics_network#/addons') : admin_url('admin.php?page=exactmetrics_settings#/addons'),
308
+ 'timezone' => date('e'),
309
  'authed' => $site_auth || $ms_auth,
310
  'auth_connected_type' => $auth->get_connected_type(),
311
+ 'settings_url' => add_query_arg('page', 'exactmetrics_settings', admin_url('admin.php')),
312
  // Used to add notices for future deprecations.
313
  'versions' => exactmetrics_get_php_wp_version_warning_data(),
314
  'plugin_version' => EXACTMETRICS_VERSION,
315
  'is_admin' => true,
316
+ 'admin_email' => get_option('admin_email'),
317
  'site_url' => get_site_url(),
318
+ 'wizard_url' => is_network_admin() ? network_admin_url('index.php?page=exactmetrics-onboarding') : admin_url('index.php?page=exactmetrics-onboarding'),
319
+ 'install_nonce' => wp_create_nonce('exactmetrics-install'),
320
+ 'activate_nonce' => wp_create_nonce('exactmetrics-activate'),
321
+ 'deactivate_nonce' => wp_create_nonce('exactmetrics-deactivate'),
322
+ 'update_settings' => current_user_can('exactmetrics_save_settings'),
323
+ 'migrated' => exactmetrics_get_option('gadwp_migrated', 0),
324
+ 'yearinreview' => exactmetrics_yearinreview_dates(),
325
  )
326
  );
327
 
329
  }
330
 
331
  // ublock notice
332
+ add_action('admin_print_footer_scripts', 'exactmetrics_settings_ublock_error_js', 9999999);
333
  }
334
 
335
+ add_action('admin_enqueue_scripts', 'exactmetrics_admin_scripts');
336
 
337
  /**
338
  * Remove Assets that conflict with ours from our screens.
342
  * @access public
343
  *
344
  */
345
+ function exactmetrics_remove_conflicting_asset_files()
346
+ {
347
 
348
  // Get current screen.
349
  $screen = get_current_screen();
350
 
351
  // Bail if we're not on a ExactMetrics screen.
352
+ if (empty($screen->id) || strpos($screen->id, 'exactmetrics') === false) {
353
  return;
354
  }
355
 
486
  'date-js', // Google Analytics by Web Dorado
487
  );
488
 
489
+ if (!empty($styles)) {
490
+ foreach ($styles as $style) {
491
+ wp_dequeue_style($style); // Remove CSS file from MI screen
492
+ wp_deregister_style($style);
493
  }
494
  }
495
+ if (!empty($scripts)) {
496
+ foreach ($scripts as $script) {
497
+ wp_dequeue_script($script); // Remove JS file from MI screen
498
+ wp_deregister_script($script);
499
  }
500
  }
501
 
514
  );
515
 
516
  global $wp_styles;
517
+ foreach ($wp_styles->queue as $handle) {
518
+ if (strpos($wp_styles->registered[$handle]->src, 'wp-content') === false) {
519
  return;
520
  }
521
 
522
+ if (strpos($wp_styles->registered[$handle]->handle, 'exactmetrics') !== false) {
523
  return;
524
  }
525
 
526
+ foreach ($third_party as $partial) {
527
+ if (strpos($wp_styles->registered[$handle]->handle, $partial) !== false) {
528
+ wp_dequeue_style($handle); // Remove css file from MI screen
529
+ wp_deregister_style($handle);
530
  break;
531
+ } else if (strpos($wp_styles->registered[$handle]->src, $partial) !== false) {
532
+ wp_dequeue_style($handle); // Remove css file from MI screen
533
+ wp_deregister_style($handle);
534
  break;
535
  }
536
  }
537
  }
538
 
539
  global $wp_scripts;
540
+ foreach ($wp_scripts->queue as $handle) {
541
+ if (strpos($wp_scripts->registered[$handle]->src, 'wp-content') === false) {
542
  return;
543
  }
544
 
545
+ if (strpos($wp_scripts->registered[$handle]->handle, 'exactmetrics') !== false) {
546
  return;
547
  }
548
 
549
+ foreach ($third_party as $partial) {
550
+ if (strpos($wp_scripts->registered[$handle]->handle, $partial) !== false) {
551
+ wp_dequeue_script($handle); // Remove JS file from MI screen
552
+ wp_deregister_script($handle);
553
  break;
554
+ } else if (strpos($wp_scripts->registered[$handle]->src, $partial) !== false) {
555
+ wp_dequeue_script($handle); // Remove JS file from MI screen
556
+ wp_deregister_script($handle);
557
  break;
558
  }
559
  }
561
 
562
  // Remove actions from themes that are not following best practices and break the admin doing so
563
  // Theme: Newspaper by tagDiv
564
+ remove_action('admin_enqueue_scripts', 'load_wp_admin_js');
565
+ remove_action('admin_enqueue_scripts', 'load_wp_admin_css');
566
+ remove_action('admin_print_scripts-widgets.php', 'td_on_admin_print_scripts_farbtastic');
567
+ remove_action('admin_print_styles-widgets.php', 'td_on_admin_print_styles_farbtastic');
568
+ remove_action('admin_print_footer_scripts', 'check_if_media_uploads_is_loaded', 9999);
569
+ remove_action('print_media_templates', 'td_custom_gallery_settings_hook');
570
+ remove_action('print_media_templates', 'td_change_backbone_js_hook');
571
+ remove_action('admin_head', 'tdc_on_admin_head'); // TagDiv Composer Fix
572
+ remove_action('print_media_templates', 'us_media_templates'); // Impreza Theme Fix
573
+ remove_action('admin_footer', 'gt3pg_add_gallery_template'); // GT3 Photo & Video Gallery By GT3 Themes Plugin Fix
574
  // Plugin WP Booklist:
575
+ remove_action('admin_footer', 'wpbooklist_jre_dismiss_prem_notice_forever_action_javascript');
576
+ remove_action('admin_footer', 'wpbooklist_dashboard_add_book_action_javascript');
577
+ remove_action('admin_footer', 'wpbooklist_edit_book_show_form_action_javascript');
578
+ remove_action('admin_footer', 'wpbooklist_show_book_in_colorbox_action_javascript');
579
+ remove_action('admin_footer', 'wpbooklist_new_lib_shortcode_action_javascript');
580
+ remove_action('admin_footer', 'wpbooklist_dashboard_save_library_display_options_action_javascript');
581
+ remove_action('admin_footer', 'wpbooklist_dashboard_save_post_display_options_action_javascript');
582
+ remove_action('admin_footer', 'wpbooklist_dashboard_save_page_display_options_action_javascript');
583
+ remove_action('admin_footer', 'wpbooklist_update_display_options_action_javascript');
584
+ remove_action('admin_footer', 'wpbooklist_edit_book_pagination_action_javascript');
585
+ remove_action('admin_footer', 'wpbooklist_edit_book_switch_lib_action_javascript');
586
+ remove_action('admin_footer', 'wpbooklist_edit_book_search_action_javascript');
587
+ remove_action('admin_footer', 'wpbooklist_edit_book_actual_action_javascript');
588
+ remove_action('admin_footer', 'wpbooklist_delete_book_action_javascript');
589
+ remove_action('admin_footer', 'wpbooklist_user_apis_action_javascript');
590
+ remove_action('admin_footer', 'wpbooklist_upload_new_stylepak_action_javascript');
591
+ remove_action('admin_footer', 'wpbooklist_upload_new_post_template_action_javascript');
592
+ remove_action('admin_footer', 'wpbooklist_upload_new_page_template_action_javascript');
593
+ remove_action('admin_footer', 'wpbooklist_create_db_library_backup_action_javascript');
594
+ remove_action('admin_footer', 'wpbooklist_restore_db_library_backup_action_javascript');
595
+ remove_action('admin_footer', 'wpbooklist_create_csv_action_javascript');
596
+ remove_action('admin_footer', 'wpbooklist_amazon_localization_action_javascript');
597
+ remove_action('admin_footer', 'wpbooklist_delete_book_bulk_action_javascript');
598
+ remove_action('admin_footer', 'wpbooklist_reorder_action_javascript');
599
+ remove_action('admin_footer', 'wpbooklist_exit_results_action_javascript');
600
+ remove_action('admin_footer', 'wpbooklist_storytime_select_category_action_javascript');
601
+ remove_action('admin_footer', 'wpbooklist_storytime_get_story_action_javascript');
602
+ remove_action('admin_footer', 'wpbooklist_storytime_expand_browse_action_javascript');
603
+ remove_action('admin_footer', 'wpbooklist_storytime_save_settings_action_javascript');
604
+ remove_action('admin_footer', 'wpbooklist_delete_story_action_javascript');
605
  }
606
 
607
+ add_action('admin_enqueue_scripts', 'exactmetrics_remove_conflicting_asset_files', 9999);
608
 
609
  /**
610
  * Remove non-MI notices from MI page.
614
  * @access public
615
  *
616
  */
617
+ function hide_non_exactmetrics_warnings()
618
+ {
619
  // Bail if we're not on a ExactMetrics screen.
620
+ if (empty($_REQUEST['page']) || strpos($_REQUEST['page'], 'exactmetrics') === false) {
621
  return;
622
  }
623
 
624
  global $wp_filter;
625
+ if (!empty($wp_filter['user_admin_notices']->callbacks) && is_array($wp_filter['user_admin_notices']->callbacks)) {
626
+ foreach ($wp_filter['user_admin_notices']->callbacks as $priority => $hooks) {
627
+ foreach ($hooks as $name => $arr) {
628
+ if (is_object($arr['function']) && $arr['function'] instanceof Closure) {
629
+ unset($wp_filter['user_admin_notices']->callbacks[$priority][$name]);
630
  continue;
631
  }
632
+ if (!empty($arr['function'][0]) && is_object($arr['function'][0]) && strpos(strtolower(get_class($arr['function'][0])), 'exactmetrics') !== false) {
633
  continue;
634
  }
635
+ if (!empty($name) && strpos($name, 'exactmetrics') === false) {
636
+ unset($wp_filter['user_admin_notices']->callbacks[$priority][$name]);
637
  }
638
  }
639
  }
640
  }
641
 
642
+ if (!empty($wp_filter['admin_notices']->callbacks) && is_array($wp_filter['admin_notices']->callbacks)) {
643
+ foreach ($wp_filter['admin_notices']->callbacks as $priority => $hooks) {
644
+ foreach ($hooks as $name => $arr) {
645
+ if (is_object($arr['function']) && $arr['function'] instanceof Closure) {
646
+ unset($wp_filter['admin_notices']->callbacks[$priority][$name]);
647
  continue;
648
  }
649
+ if (!empty($arr['function'][0]) && is_object($arr['function'][0]) && strpos(strtolower(get_class($arr['function'][0])), 'exactmetrics') !== false) {
650
  continue;
651
  }
652
+ if (!empty($name) && strpos($name, 'exactmetrics') === false) {
653
+ unset($wp_filter['admin_notices']->callbacks[$priority][$name]);
654
  }
655
  }
656
  }
657
  }
658
 
659
+ if (!empty($wp_filter['all_admin_notices']->callbacks) && is_array($wp_filter['all_admin_notices']->callbacks)) {
660
+ foreach ($wp_filter['all_admin_notices']->callbacks as $priority => $hooks) {
661
+ foreach ($hooks as $name => $arr) {
662
+ if (is_object($arr['function']) && $arr['function'] instanceof Closure) {
663
+ unset($wp_filter['all_admin_notices']->callbacks[$priority][$name]);
664
  continue;
665
  }
666
+ if (!empty($arr['function'][0]) && is_object($arr['function'][0]) && strpos(strtolower(get_class($arr['function'][0])), 'exactmetrics') !== false) {
667
  continue;
668
  }
669
+ if (!empty($name) && strpos($name, 'exactmetrics') === false) {
670
+ unset($wp_filter['all_admin_notices']->callbacks[$priority][$name]);
671
  }
672
  }
673
  }
674
  }
675
  }
676
 
677
+ add_action('admin_print_scripts', 'hide_non_exactmetrics_warnings');
678
+ add_action('admin_head', 'hide_non_exactmetrics_warnings', PHP_INT_MAX);
679
 
680
  /**
681
  * Called whenever an upgrade button / link is displayed in Lite, this function will
696
  * @access public
697
  *
698
  */
699
+ function exactmetrics_get_upgrade_link($medium = '', $campaign = '', $url = '')
700
+ {
701
+ $url = exactmetrics_get_url($medium, $campaign, $url, false);
702
 
703
+ if (exactmetrics_is_pro_version()) {
704
+ return esc_url($url);
705
  }
706
 
707
  // Get the ShareASale ID
708
  $shareasale_id = exactmetrics_get_shareasale_id();
709
 
710
  // If we have a shareasale ID return the shareasale url
711
+ if (!empty($shareasale_id)) {
712
+ $shareasale_id = absint($shareasale_id);
713
 
714
+ return esc_url(exactmetrics_get_shareasale_url($shareasale_id, $url));
715
  } else {
716
+ return esc_url($url);
717
  }
718
  }
719
 
720
+ function exactmetrics_get_url($medium = '', $campaign = '', $url = '', $escape = true)
721
+ {
722
  // Setup Campaign variables
723
  $source = exactmetrics_is_pro_version() ? 'proplugin' : 'liteplugin';
724
+ $medium = !empty($medium) ? $medium : 'defaultmedium';
725
+ $campaign = !empty($campaign) ? $campaign : 'defaultcampaign';
726
  $content = EXACTMETRICS_VERSION;
727
  $default_url = exactmetrics_is_pro_version() ? '' : 'lite/';
728
+ $url = !empty($url) ? $url : 'https://www.exactmetrics.com/' . $default_url;
729
 
730
  // Put together redirect URL
731
  $url = add_query_arg(
732
  array(
733
  'utm_source' => $source, // Pro/Lite Plugin
734
+ 'utm_medium' => sanitize_key($medium), // Area of ExactMetrics (example Reports)
735
+ 'utm_campaign' => sanitize_key($campaign), // Which link (example eCommerce Report)
736
  'utm_content' => $content, // Version number of MI
737
  ),
738
+ trailingslashit($url)
739
  );
740
 
741
+ if ($escape) {
742
+ return esc_url($url);
743
  } else {
744
  return $url;
745
  }
746
  }
747
 
748
+ function exactmetrics_settings_ublock_error_js()
749
+ {
750
  echo "<script type='text/javascript'>\n";
751
  echo "jQuery( document ).ready( function( $ ) {
752
  if ( window.uorigindetected == null){
761
  echo "\n</script>";
762
  }
763
 
764
+ function exactmetrics_ublock_notice()
765
+ {
766
  ob_start(); ?>
767
  <div id="exactmetrics-ublock-origin-error" class="error inline" style="display:none;">
768
  <?php
769
  // Translators: Placeholders are for links to fix the issue.
770
+ echo sprintf(esc_html__('ExactMetrics has detected that it\'s files are being blocked. This is usually caused by a adblock browser plugin (particularly uBlock Origin), or a conflicting WordPress theme or plugin. This issue only affects the admin side of ExactMetrics. To solve this, ensure ExactMetrics is whitelisted for your website URL in any adblock browser plugin you use. For step by step directions on how to do this, %1$sclick here%2$s. If this doesn\'t solve the issue (rare), send us a ticket %3$shere%2$s and we\'ll be happy to help diagnose the issue.', 'google-analytics-dashboard-for-wp'), '<a href="https://exactmetrics.com/docs/exactmetrics-asset-files-blocked/" target="_blank" rel="noopener noreferrer" referrer="no-referrer">', '</a>', '<a href="https://exactmetrics.com/contact/" target="_blank" rel="noopener noreferrer" referrer="no-referrer">');
771
  ?>
772
  </div>
773
+ <?php
774
  return ob_get_clean();
775
  }
776
 
777
  /**
778
  * Some themes/plugins don't add proper checks and load JS code in all admin pages causing conflicts.
779
  */
780
+ function exactmetrics_remove_unnecessary_footer_hooks()
781
+ {
782
 
783
  $screen = get_current_screen();
784
  // Bail if we're not on a ExactMetrics screen.
785
+ if (empty($screen->id) || strpos($screen->id, 'exactmetrics') === false) {
786
  return;
787
  }
788
 
789
  // Remove js code added by Newspaper theme - version 8.8.0.
790
+ remove_action('print_media_templates', 'td_custom_gallery_settings_hook');
791
+ remove_action('print_media_templates', 'td_change_backbone_js_hook');
792
  // Remove js code added by the Brooklyn theme - version 4.5.3.1.
793
+ remove_action('print_media_templates', 'ut_create_gallery_options');
794
 
795
  // Remove js code added by WordPress Book List Plugin - version 5.8.1.
796
+ remove_action('admin_footer', 'wpbooklist_jre_dismiss_prem_notice_forever_action_javascript');
797
+ remove_action('admin_footer', 'wpbooklist_dashboard_add_book_action_javascript');
798
+ remove_action('admin_footer', 'wpbooklist_edit_book_show_form_action_javascript');
799
+ remove_action('admin_footer', 'wpbooklist_show_book_in_colorbox_action_javascript');
800
+ remove_action('admin_footer', 'wpbooklist_new_lib_shortcode_action_javascript');
801
+ remove_action('admin_footer', 'wpbooklist_dashboard_save_library_display_options_action_javascript');
802
+ remove_action('admin_footer', 'wpbooklist_dashboard_save_post_display_options_action_javascript');
803
+ remove_action('admin_footer', 'wpbooklist_dashboard_save_page_display_options_action_javascript');
804
+ remove_action('admin_footer', 'wpbooklist_update_display_options_action_javascript');
805
+ remove_action('admin_footer', 'wpbooklist_edit_book_pagination_action_javascript');
806
+ remove_action('admin_footer', 'wpbooklist_edit_book_switch_lib_action_javascript');
807
+ remove_action('admin_footer', 'wpbooklist_edit_book_search_action_javascript');
808
+ remove_action('admin_footer', 'wpbooklist_edit_book_actual_action_javascript');
809
+ remove_action('admin_footer', 'wpbooklist_delete_book_action_javascript');
810
+ remove_action('admin_footer', 'wpbooklist_user_apis_action_javascript');
811
+ remove_action('admin_footer', 'wpbooklist_upload_new_stylepak_action_javascript');
812
+ remove_action('admin_footer', 'wpbooklist_upload_new_post_template_action_javascript');
813
+ remove_action('admin_footer', 'wpbooklist_upload_new_page_template_action_javascript');
814
+ remove_action('admin_footer', 'wpbooklist_create_db_library_backup_action_javascript');
815
+ remove_action('admin_footer', 'wpbooklist_restore_db_library_backup_action_javascript');
816
+ remove_action('admin_footer', 'wpbooklist_create_csv_action_javascript');
817
+ remove_action('admin_footer', 'wpbooklist_amazon_localization_action_javascript');
818
+ remove_action('admin_footer', 'wpbooklist_delete_book_bulk_action_javascript');
819
+ remove_action('admin_footer', 'wpbooklist_reorder_action_javascript');
820
+ remove_action('admin_footer', 'wpbooklist_exit_results_action_javascript');
821
+ remove_action('admin_footer', 'wpbooklist_storytime_select_category_action_javascript');
822
+ remove_action('admin_footer', 'wpbooklist_storytime_get_story_action_javascript');
823
+ remove_action('admin_footer', 'wpbooklist_storytime_expand_browse_action_javascript');
824
+ remove_action('admin_footer', 'wpbooklist_storytime_save_settings_action_javascript');
825
+ remove_action('admin_footer', 'wpbooklist_delete_story_action_javascript');
826
  }
827
 
828
+ add_action('admin_head', 'exactmetrics_remove_unnecessary_footer_hooks', 15);
829
 
830
 
831
  /**
837
  *
838
  * @return string
839
  */
840
+ function exactmetrics_prevent_version_number_removal($src)
841
+ {
842
  // Apply this only to admin-side scripts.
843
+ if (!is_admin()) {
844
  return $src;
845
  }
846
 
847
  // Make sure are only changing our scripts and only if the version number is missing.
848
+ if ((false !== strpos($src, 'exactmetrics') || false !== strpos($src, 'google-analytics-dashboard-for-wp') || false !== strpos($src, 'exactmetrics-premium')) && false === strpos($src, '?ver')) {
849
+ $src = add_query_arg('ver', exactmetrics_get_asset_version(), $src);
850
  }
851
 
852
  return $src;
853
  }
854
 
855
+ add_filter('script_loader_src', 'exactmetrics_prevent_version_number_removal', 9999, 1);
856
+ add_filter('style_loader_src', 'exactmetrics_prevent_version_number_removal', 9999, 1);
857
 
858
  /**
859
  * Data used for the Vue scripts to display old PHP and WP versions warnings.
860
  */
861
+ function exactmetrics_get_php_wp_version_warning_data()
862
+ {
863
  global $wp_version;
864
 
865
+ $compatible_php_version = apply_filters('exactmetrics_compatible_php_version', false);
866
+ $compatible_wp_version = apply_filters('exactmetrics_compatible_wp_version', false);
867
 
868
  return array(
869
  'php_version' => phpversion(),
870
+ 'php_version_below_54' => apply_filters('exactmetrics_temporarily_hide_php_under_56_upgrade_warnings', version_compare(phpversion(), $compatible_php_version['warning'], '<')),
871
+ 'php_version_below_56' => apply_filters('exactmetrics_temporarily_hide_php_56_upgrade_warnings', version_compare(phpversion(), $compatible_php_version['warning'], '>=') && version_compare(phpversion(), $compatible_php_version['recommended'], '<')),
872
+ 'php_update_link' => exactmetrics_get_url('settings-notice', 'settings-page', 'https://www.exactmetrics.com/docs/update-php/'),
873
  'wp_version' => $wp_version,
874
+ 'wp_version_below_46' => version_compare($wp_version, $compatible_wp_version['warning'], '<'),
875
+ 'wp_version_below_49' => version_compare($wp_version, $compatible_wp_version['recommended'], '<'),
876
+ 'wp_update_link' => exactmetrics_get_url('settings-notice', 'settings-page', 'https://www.exactmetrics.com/docs/update-wordpress/'),
877
  );
878
  }
879
 
880
  /**
881
  * Check WP and PHP version and add contextual notifications for upgrades.
882
  */
883
+ function exactmetrics_maybe_add_wp_php_version_notification()
884
+ {
885
  global $wp_version;
886
 
887
  $icon = '<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="16" cy="16" r="16" fill="#FAD1D1"/><path d="M17.3634 19.0714C17.792 19.4821 18.0063 19.9821 18.0063 20.5714C18.0063 21.1607 17.792 21.6607 17.3634 22.0714C16.9527 22.5 16.4527 22.7143 15.8634 22.7143C15.2742 22.7143 14.7652 22.5 14.3367 22.0714C13.9259 21.6607 13.7206 21.1607 13.7206 20.5714C13.7206 19.9821 13.9259 19.4821 14.3367 19.0714C14.7652 18.6429 15.2742 18.4286 15.8634 18.4286C16.4527 18.4286 16.9527 18.6429 17.3634 19.0714ZM13.9617 9.66964C13.9617 9.49107 14.0242 9.33929 14.1492 9.21429C14.2742 9.07143 14.4259 9 14.6045 9H17.1224C17.3009 9 17.4527 9.07143 17.5777 9.21429C17.7027 9.33929 17.7652 9.49107 17.7652 9.66964L17.3902 16.9554C17.3902 17.1339 17.3277 17.2857 17.2027 17.4107C17.0777 17.5179 16.9259 17.5714 16.7474 17.5714H14.9795C14.8009 17.5714 14.6492 17.5179 14.5242 17.4107C14.3992 17.2857 14.3367 17.1339 14.3367 16.9554L13.9617 9.66964Z" fill="#EB5757"/></svg>';
888
+ $needs_php_warning = version_compare(phpversion(), '5.6', '<');
889
+ $needs_wp_warning = version_compare($wp_version, '4.9', '<');
890
 
891
+ if ($needs_php_warning) {
892
  $notification['id'] = 'upgrade_php_56_notification';
893
+ $notification['title'] = __('ACTION REQUIRED: Your PHP version is putting your site at risk!', 'google-analytics-dashboard-for-wp');
894
+ if ($needs_wp_warning) {
895
+ $notification['title'] = __('ACTION REQUIRED: Speed your website up 400% with a single email!', 'google-analytics-dashboard-for-wp');
896
  }
897
 
898
+ $php_url = exactmetrics_get_url('notifications', 'upgrade-php', 'https://www.exactmetrics.com/docs/update-php');
899
 
900
+ $notification['type'] = array('basic', 'lite', 'master', 'plus', 'pro');
901
  // Translators: Placeholder is for the current PHP version.
902
+ $notification['content'] = sprintf(esc_html__('In the next major release of ExactMetrics we are planning to remove support for the version of PHP you are using (%s). This insecure version is no longer supported by WordPress itself, so you are already missing out on the latest features of WordPress along with critical updates for security and performance (modern PHP versions make websites much faster).', 'google-analytics-dashboard-for-wp'), phpversion()) . "\n\n";
903
 
904
  // Translators: Placeholders add a link to an article.
905
+ $notification['content'] .= sprintf(esc_html__('To ensure ExactMetrics and other plugins on your site continue to function properly, and avoid putting your site at risk, please take a few minutes to ask your website hosting provider to upgrade the version of PHP to a modern PHP version (7.2 or newer). We provide helpful templates for how to ask them %1$shere%2$s.', 'google-analytics-dashboard-for-wp'), '<a target="_blank" href="' . $php_url . '">', '</a>') . "\n\n";
906
+ $notification['content'] .= esc_html__('Upgrading your PHP version will make sure you are able to continue using WordPress without issues in the future, keep your site secure, and will also make your website up to 400% faster!', 'google-analytics-dashboard-for-wp');
907
 
908
  $notification['icon'] = $icon;
909
  $notification['btns'] = array(
910
  'learn_more' => array(
911
  'url' => $php_url,
912
+ 'text' => esc_html__('Learn More', 'google-analytics-dashboard-for-wp'),
913
  ),
914
  );
915
 
916
  // Add the notification.
917
+ ExactMetrics()->notifications->add($notification);
918
  }
919
 
920
+ if ($needs_wp_warning) {
921
  $isitwp_url = 'https://www.isitwp.com/upgrading-wordpress-is-easier-than-you-think/?utm_source=exactmetrics&utm_medium=notifications&utm_campaign=upgradewp';
922
+ $wpbeginner_url = exactmetrics_get_url('notifications', 'pgradewp', 'https://www.wpbeginner.com/beginners-guide/why-you-should-always-use-the-latest-version-of-wordpress/');
923
 
924
  $notification['id'] = 'upgrade_wp_49_notification';
925
+ $notification['title'] = __('ACTION REQUIRED: Your WordPress version is putting your site at risk!', 'google-analytics-dashboard-for-wp');
926
+ $notification['type'] = array('basic', 'lite', 'master', 'plus', 'pro');
927
  // Translators: Placeholder is for the current WordPress version.
928
+ $notification['content'] = sprintf(esc_html__('In the next major release of ExactMetrics we are planning to remove support for the version of WordPress you are using (version %s). This version is several years out of date, and most plugins do not support this version anymore, so you could be missing out on critical updates for performance and security already!', 'google-analytics-dashboard-for-wp'), $wp_version) . "\n\n";
929
 
930
+ $notification['content'] .= esc_html__('The good news: updating WordPress has never been easier and only takes a few moments.', 'google-analytics-dashboard-for-wp');
931
  // Translators: Placeholders add links to articles.
932
+ $notification['content'] .= sprintf(esc_html__('To update, we recommend following this %1$sstep by step guide for updating WordPress%2$s from IsItWP and afterwards check out %3$sWhy You Should Always Use the Latest Version of WordPress%4$s on WPBeginner.', 'google-analytics-dashboard-for-wp'), '<a target="_blank" href="' . $isitwp_url . '">', '</a>', '<a target="_blank" href="' . $wpbeginner_url . '">', '</a>') . "\n\n";
933
 
934
  $notification['icon'] = $icon;
935
  $notification['btns'] = array(
936
  'learn_more' => array(
937
  'url' => $isitwp_url,
938
+ 'text' => esc_html__('Learn More', 'google-analytics-dashboard-for-wp'),
939
  ),
940
  );
941
 
942
  // Add the notification.
943
+ ExactMetrics()->notifications->add($notification);
944
  }
 
945
  }
946
 
947
+ add_action('admin_init', 'exactmetrics_maybe_add_wp_php_version_notification');
948
 
949
  /**
950
  * Add notification for Year In Review report for year 2021.
953
  * @since 7.13.2
954
  *
955
  */
956
+ function exactmetrics_year_in_review_notification()
957
+ {
958
 
959
  // Check if dates are between Jan 1st 2022 & 13th Jan 2022.
960
+ if (exactmetrics_date_is_between('2022-01-01', '2022-01-14')) {
961
 
962
  $notification['id'] = 'exactmetrics_notification_year_in_review';
963
+ $notification['type'] = array('basic', 'lite', 'master', 'plus', 'pro');
964
  $notification['start'] = '2022-01-01';
965
  $notification['end'] = '2022-01-14';
966
+ $notification['title'] = esc_html__('View 2021 Year in Review report!', 'google-analytics-dashboard-for-wp');
967
+ $notification['content'] = esc_html__('See how your website performed this year and find tips along the way to help grow even more in 2022!', 'google-analytics-dashboard-for-wp');
968
  $notification['btns'] = array(
969
  'learn_more' => array(
970
+ 'url' => esc_url(admin_url('admin.php?page=exactmetrics_reports#/year-in-review')),
971
+ 'text' => esc_html__('Learn More', 'google-analytics-dashboard-for-wp'),
972
  ),
973
  );
974
 
975
  // Add the notification.
976
+ ExactMetrics()->notifications->add($notification);
977
  }
978
  }
979
 
980
+ add_action('admin_init', 'exactmetrics_year_in_review_notification');
981
+
982
+
983
+ /**
984
+ * Dynamic dates for Year In Review report
985
+ */
986
+ function exactmetrics_yearinreview_dates()
987
+ {
988
+ $current_date = date('Y-m-d');
989
+ $current_year = date('Y');
990
+ $report_year = $current_year - 1;
991
+ $show_report = false;
992
+ $next_year = (string) $report_year + 1;
993
+ $show_report_start_date = date('Y-m-d', strtotime("Jan 01, {$current_year}"));
994
+ $show_report_end_date = date('Y-m-d', strtotime("Jan 14, {$current_year}"));
995
+ if (($current_date >= $show_report_start_date) && ($current_date <= $show_report_end_date)) {
996
+ $show_report = true;
997
+ }
998
+ return [
999
+ 'report_year' => $report_year,
1000
+ 'next_year' => $next_year,
1001
+ 'show_report' => $show_report,
1002
+ ];
1003
+ }
includes/admin/licensing/autoupdate.php CHANGED
@@ -150,7 +150,7 @@ function exactmetrics_automatic_updates( $update, $item ) {
150
  $current_major = exactmetrics_get_major_version( $current_version );
151
  $new_major = exactmetrics_get_major_version( $new_version );
152
 
153
- // If the opt in update allows major updates but there is no major version update, return early.
154
  if ( version_compare( $current_major, $new_major, '<' ) ) {
155
  if ( $automatic_updates === 'all' ) {
156
  return true;
@@ -159,7 +159,7 @@ function exactmetrics_automatic_updates( $update, $item ) {
159
  }
160
  }
161
 
162
- // If the opt in update allows minor updates but there is no minor version update, return early.
163
  if ( version_compare( $current_major, $new_major, '==' ) && version_compare( $current_version, $new_version, '<' ) ) {
164
  if ( $automatic_updates === 'all' || $automatic_updates === 'minor' ) {
165
  return true;
@@ -168,7 +168,7 @@ function exactmetrics_automatic_updates( $update, $item ) {
168
  }
169
  }
170
 
171
- // All our checks have passed - this plugin can be updated!
172
  return $update;
173
  }
174
 
150
  $current_major = exactmetrics_get_major_version( $current_version );
151
  $new_major = exactmetrics_get_major_version( $new_version );
152
 
153
+ // If this is a major update, and they have opted in to all updates, then autoupdate
154
  if ( version_compare( $current_major, $new_major, '<' ) ) {
155
  if ( $automatic_updates === 'all' ) {
156
  return true;
159
  }
160
  }
161
 
162
+ // If this is a minor update, and they have opted in to all updates or minor updates, then autoupdate
163
  if ( version_compare( $current_major, $new_major, '==' ) && version_compare( $current_version, $new_version, '<' ) ) {
164
  if ( $automatic_updates === 'all' || $automatic_updates === 'minor' ) {
165
  return true;
168
  }
169
  }
170
 
171
+ // Otherwise stick with default value
172
  return $update;
173
  }
174
 
includes/admin/reports/abstract-report.php CHANGED
@@ -177,8 +177,10 @@ class ExactMetrics_Report {
177
  }
178
 
179
  if ( ( $start !== $this->default_start_date() || $end !== $this->default_end_date() ) && ! exactmetrics_is_pro_version() ) {
180
- $start = $this->default_start_date();
181
- $end = $this->default_end_date();
 
 
182
  // return array(
183
  // 'success' => false,
184
  // 'error' => __( 'Please upgrade to ExactMetrics Pro to use custom date ranges.', 'google-analytics-dashboard-for-wp' ),
177
  }
178
 
179
  if ( ( $start !== $this->default_start_date() || $end !== $this->default_end_date() ) && ! exactmetrics_is_pro_version() ) {
180
+ // On lite version, the date range is blocked with upgrade to pro message and this conflicts with getting YIR report.
181
+ // $start = $this->default_start_date();
182
+ // $end = $this->default_end_date();
183
+
184
  // return array(
185
  // 'success' => false,
186
  // 'error' => __( 'Please upgrade to ExactMetrics Pro to use custom date ranges.', 'google-analytics-dashboard-for-wp' ),
includes/frontend/frontend.php CHANGED
@@ -117,7 +117,7 @@ add_filter( 'the_permalink_rss', 'exactmetrics_rss_link_tagger', 99 );
117
  * Checks used for loading the frontend scripts/admin bar button.
118
  */
119
  function exactmetrics_prevent_loading_frontend_reports() {
120
- return ! current_user_can( 'exactmetrics_view_dashboard' ) || exactmetrics_get_option( 'hide_admin_bar_reports' ) || function_exists( 'exactmetrics_is_reports_page' ) && exactmetrics_is_reports_page() || function_exists( 'exactmetrics_is_settings_page' ) && exactmetrics_is_settings_page();
121
  }
122
 
123
  /**
117
  * Checks used for loading the frontend scripts/admin bar button.
118
  */
119
  function exactmetrics_prevent_loading_frontend_reports() {
120
+ return ! current_user_can( 'exactmetrics_view_dashboard' ) || exactmetrics_get_option( 'hide_admin_bar_reports' );
121
  }
122
 
123
  /**
includes/helpers.php CHANGED
@@ -1257,7 +1257,7 @@ function exactmetrics_get_page_title() {
1257
  } elseif ( is_tax() ) {
1258
  $tax = get_taxonomy( get_queried_object()->taxonomy );
1259
  /* translators: Taxonomy term archive title. 1: Taxonomy singular name, 2: Current taxonomy term */
1260
- $title = sprintf( __( '%1$s: %2$s' ), $tax->labels->singular_name, single_term_title( '', false ) );
1261
  }
1262
 
1263
  return $title;
1257
  } elseif ( is_tax() ) {
1258
  $tax = get_taxonomy( get_queried_object()->taxonomy );
1259
  /* translators: Taxonomy term archive title. 1: Taxonomy singular name, 2: Current taxonomy term */
1260
+ $title = sprintf( '%1$s: %2$s', $tax->labels->singular_name, single_term_title( '', false ) );
1261
  }
1262
 
1263
  return $title;
languages/google-analytics-dashboard-for-wp.pot CHANGED
@@ -2,20 +2,20 @@
2
  # This file is distributed under the same license as the ExactMetrics Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: ExactMetrics Pro 7.10.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: 2022-11-09T15:13:25+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
- "X-Generator: WP-CLI 2.6.0\n"
15
  "X-Domain: google-analytics-dashboard-for-wp\n"
16
 
17
  #. Plugin Name of the plugin
18
- #: languages/vue.php:3493
19
  msgid "ExactMetrics Pro"
20
  msgstr ""
21
 
@@ -113,7 +113,7 @@ msgstr ""
113
  #: includes/admin/admin.php:34
114
  #: includes/admin/admin.php:42
115
  #: includes/admin/admin.php:230
116
- #: languages/vue.php:538
117
  msgid "Settings"
118
  msgstr ""
119
 
@@ -129,7 +129,7 @@ msgstr ""
129
 
130
  #: includes/admin/admin.php:39
131
  #: includes/admin/admin.php:131
132
- #: languages/vue.php:2316
133
  msgid "Reports"
134
  msgstr ""
135
 
@@ -139,7 +139,7 @@ msgstr ""
139
 
140
  #: includes/admin/admin.php:51
141
  #: languages/gutenberg.php:83
142
- #: languages/vue.php:997
143
  msgid "Popular Posts"
144
  msgstr ""
145
 
@@ -173,7 +173,7 @@ msgstr ""
173
 
174
  #: includes/admin/admin.php:71
175
  #: includes/admin/admin.php:147
176
- #: languages/vue.php:154
177
  msgid "About Us"
178
  msgstr ""
179
 
@@ -192,7 +192,7 @@ msgstr ""
192
  #: includes/admin/admin.php:76
193
  #: includes/admin/notifications/notification-upgrade-to-pro-high-traffic.php:41
194
  #: includes/admin/notifications/notification-upgrade-to-pro.php:33
195
- #: languages/vue.php:1045
196
  msgid "Upgrade to Pro"
197
  msgstr ""
198
 
@@ -220,7 +220,7 @@ msgstr ""
220
 
221
  #: includes/admin/admin.php:220
222
  #: includes/admin/admin.php:223
223
- #: languages/vue.php:1021
224
  msgid "Support"
225
  msgstr ""
226
 
@@ -231,8 +231,8 @@ msgstr ""
231
  #: includes/admin/notifications/notification-upgrade-for-events-reporting.php:31
232
  #: includes/admin/notifications/notification-upgrade-for-google-optimize.php:32
233
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:31
234
- #: includes/admin/reports/abstract-report.php:458
235
- #: languages/vue.php:1153
236
  msgid "Get ExactMetrics Pro"
237
  msgstr ""
238
 
@@ -242,31 +242,31 @@ msgid "Please rate %1$sExactMetrics%2$s on %3$s %4$sWordPress.org%5$s to help us
242
  msgstr ""
243
 
244
  #: includes/admin/admin.php:335
245
- #: languages/vue.php:1144
246
  msgid "Please Setup Website Analytics to See Audience Insights"
247
  msgstr ""
248
 
249
  #: includes/admin/admin.php:336
250
- #: languages/vue.php:1150
251
  msgid "Connect ExactMetrics and Setup Website Analytics"
252
  msgstr ""
253
 
254
  #: includes/admin/admin.php:338
255
- #: includes/admin/common.php:896
256
- #: includes/admin/common.php:922
257
- #: includes/admin/common.php:955
258
  #: includes/admin/notifications/notification-audience.php:45
259
  #: includes/admin/notifications/notification-bounce-rate.php:47
260
  #: includes/admin/notifications/notification-headline-analyzer.php:39
261
  #: includes/admin/notifications/notification-mobile-device-low-traffic.php:41
262
  #: includes/admin/notifications/notification-returning-visitors.php:43
263
  #: includes/admin/notifications/notification-traffic-dropping.php:43
264
- #: languages/vue.php:329
265
  msgid "Learn More"
266
  msgstr ""
267
 
268
  #: includes/admin/admin.php:340
269
- #: languages/vue.php:1147
270
  msgid "ExactMetrics, WordPress analytics plugin, helps you connect your website with Google Analytics, so you can see how people find and use your website. Over 3 million website owners use ExactMetrics to see the stats that matter and grow their business."
271
  msgstr ""
272
 
@@ -277,18 +277,18 @@ msgstr ""
277
 
278
  #. Translators: Adds a link to the license renewal.
279
  #: includes/admin/admin.php:363
280
- #: languages/vue.php:477
281
  msgid "Your license key for ExactMetrics has expired. %1$sPlease click here to renew your license key.%2$s"
282
  msgstr ""
283
 
284
  #: includes/admin/admin.php:365
285
- #: languages/vue.php:480
286
  msgid "Your license key for ExactMetrics has been disabled. Please use a different key."
287
  msgstr ""
288
 
289
  #: includes/admin/admin.php:367
290
  #: includes/admin/api-auth.php:303
291
- #: languages/vue.php:483
292
  msgid "Your license key for ExactMetrics is invalid. The key no longer exists or the user associated with the key has been deleted. Please use a different key."
293
  msgstr ""
294
 
@@ -435,57 +435,57 @@ msgid "Oops! There has been an error while trying to deauthenticate. Please try
435
  msgstr ""
436
 
437
  #. Translators: Placeholders are for links to fix the issue.
438
- #: includes/admin/common.php:758
439
  msgid "ExactMetrics has detected that it's files are being blocked. This is usually caused by a adblock browser plugin (particularly uBlock Origin), or a conflicting WordPress theme or plugin. This issue only affects the admin side of ExactMetrics. To solve this, ensure ExactMetrics is whitelisted for your website URL in any adblock browser plugin you use. For step by step directions on how to do this, %1$sclick here%2$s. If this doesn't solve the issue (rare), send us a ticket %3$shere%2$s and we'll be happy to help diagnose the issue."
440
  msgstr ""
441
 
442
- #: includes/admin/common.php:877
443
  msgid "ACTION REQUIRED: Your PHP version is putting your site at risk!"
444
  msgstr ""
445
 
446
- #: includes/admin/common.php:879
447
  msgid "ACTION REQUIRED: Speed your website up 400% with a single email!"
448
  msgstr ""
449
 
450
  #. Translators: Placeholder is for the current PHP version.
451
- #: includes/admin/common.php:886
452
  msgid "In the next major release of ExactMetrics we are planning to remove support for the version of PHP you are using (%s). This insecure version is no longer supported by WordPress itself, so you are already missing out on the latest features of WordPress along with critical updates for security and performance (modern PHP versions make websites much faster)."
453
  msgstr ""
454
 
455
  #. Translators: Placeholders add a link to an article.
456
- #: includes/admin/common.php:889
457
  msgid "To ensure ExactMetrics and other plugins on your site continue to function properly, and avoid putting your site at risk, please take a few minutes to ask your website hosting provider to upgrade the version of PHP to a modern PHP version (7.2 or newer). We provide helpful templates for how to ask them %1$shere%2$s."
458
  msgstr ""
459
 
460
  #. Translators: Placeholders add a link to an article.
461
- #: includes/admin/common.php:890
462
  msgid "Upgrading your PHP version will make sure you are able to continue using WordPress without issues in the future, keep your site secure, and will also make your website up to 400% faster!"
463
  msgstr ""
464
 
465
- #: includes/admin/common.php:909
466
  msgid "ACTION REQUIRED: Your WordPress version is putting your site at risk!"
467
  msgstr ""
468
 
469
  #. Translators: Placeholder is for the current WordPress version.
470
- #: includes/admin/common.php:912
471
  msgid "In the next major release of ExactMetrics we are planning to remove support for the version of WordPress you are using (version %s). This version is several years out of date, and most plugins do not support this version anymore, so you could be missing out on critical updates for performance and security already!"
472
  msgstr ""
473
 
474
- #: includes/admin/common.php:914
475
  msgid "The good news: updating WordPress has never been easier and only takes a few moments."
476
  msgstr ""
477
 
478
  #. Translators: Placeholders add links to articles.
479
- #: includes/admin/common.php:916
480
  msgid "To update, we recommend following this %1$sstep by step guide for updating WordPress%2$s from IsItWP and afterwards check out %3$sWhy You Should Always Use the Latest Version of WordPress%4$s on WPBeginner."
481
  msgstr ""
482
 
483
- #: includes/admin/common.php:950
484
  msgid "View 2021 Year in Review report!"
485
  msgstr ""
486
 
487
- #: includes/admin/common.php:951
488
- #: languages/vue.php:3337
489
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2022!"
490
  msgstr ""
491
 
@@ -506,7 +506,7 @@ msgstr ""
506
 
507
  #: includes/admin/exclude-page-metabox.php:144
508
  #: languages/gutenberg.php:354
509
- #: languages/vue.php:3129
510
  msgid "Upgrade"
511
  msgstr ""
512
 
@@ -703,7 +703,7 @@ msgstr ""
703
  #: includes/admin/notifications/notification-upgrade-for-custom-dimensions.php:25
704
  #: includes/admin/notifications/notification-upgrade-for-events-reporting.php:25
705
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:25
706
- #: languages/vue.php:1742
707
  #: lite/includes/admin/helpers.php:85
708
  msgid "Upgrade to ExactMetrics Pro"
709
  msgstr ""
@@ -738,8 +738,8 @@ msgstr ""
738
 
739
  #: includes/admin/notifications/notification-upgrade-for-form-conversion.php:31
740
  #: includes/admin/notifications/notification-upgrade-for-search-console.php:32
741
- #: includes/admin/reports/abstract-report.php:455
742
- #: languages/vue.php:222
743
  msgid "Upgrade Now"
744
  msgstr ""
745
 
@@ -860,64 +860,64 @@ msgstr ""
860
  msgid "Invalid date range."
861
  msgstr ""
862
 
863
- #: includes/admin/reports/abstract-report.php:299
864
  msgid "You must be properly authenticated with ExactMetrics to use our reports. Please use our %1$ssetup wizard%2$s to get started."
865
  msgstr ""
866
 
867
  #. Translators: Placeholders add the license level and the report title.
868
- #: includes/admin/reports/abstract-report.php:386
869
  msgid "You currently have a %1$s level license, but this report requires at least a %2$s level license to view the %3$s. Please upgrade to view this report."
870
  msgstr ""
871
 
872
- #: includes/admin/reports/abstract-report.php:400
873
  msgid "Ready to Get Analytics Super-Powers?"
874
  msgstr ""
875
 
876
- #: includes/admin/reports/abstract-report.php:402
877
  msgid "(And Crush Your Competition?)"
878
  msgstr ""
879
 
880
  #. Translators: License level and smiley.
881
- #: includes/admin/reports/abstract-report.php:408
882
  msgid "Hey there! It looks like you've got the %1$s license installed on your site. That's awesome! %s"
883
  msgstr ""
884
 
885
  #. Translators: Placeholders add the report title and license level.
886
- #: includes/admin/reports/abstract-report.php:415
887
  msgid "Do you want to access to %1$s reporting right now%2$s in your WordPress Dashboard? That comes with the %3$s level%4$s of our paid packages. You'll need to upgrade your license to get instant access."
888
  msgstr ""
889
 
890
  #. Translators: Placeholdes add links to the account area and a guide.
891
- #: includes/admin/reports/abstract-report.php:422
892
  msgid "It's easy! To upgrade, navigate to %1$sMy Account%2$s on ExactMetrics.com, go to the licenses tab, and click upgrade. We also have a %3$sstep by step guide%4$s with pictures of this process."
893
  msgstr ""
894
 
895
- #: includes/admin/reports/abstract-report.php:426
896
- #: includes/admin/reports/abstract-report.php:449
897
  msgid "If you have any questions, don't hesitate to reach out. We're here to help."
898
  msgstr ""
899
 
900
  #. Translators: Placeholder adds a smiley face.
901
- #: includes/admin/reports/abstract-report.php:431
902
  msgid "Hey there! %s It looks like you've got the free version of ExactMetrics installed on your site. That's awesome!"
903
  msgstr ""
904
 
905
  #. Translators: Placeholders make the text bold, add the license level and add a link to upgrade.
906
- #: includes/admin/reports/abstract-report.php:438
907
  msgid "Do you you want to access to %1$s reporting right now%2$s in your WordPress Dashboard? That comes with %3$s level%4$s of our paid packages. To get instant access, you'll want to buy a ExactMetrics license, which also gives you access to powerful addons, expanded reporting (including the ability to use custom date ranges), comprehensive tracking features (like UserID tracking) and access to our world-class support team."
908
  msgstr ""
909
 
910
  #. Translators: Placeholders make the text bold, add the license level and add a link to upgrade.
911
- #: includes/admin/reports/abstract-report.php:445
912
  msgid "Upgrading is easy! To upgrade, navigate to %1$ssour pricing page%2$s, purchase the required license, and then follow the %3$sinstructions in the email receipt%4$s to upgrade. It only takes a few minutes to unlock the most powerful, yet easy to use analytics tracking system for WordPress."
913
  msgstr ""
914
 
915
- #: includes/admin/reports/abstract-report.php:492
916
  msgid "Please ask your webmaster to enable this addon."
917
  msgstr ""
918
 
919
  #: includes/admin/reports/overview.php:34
920
- #: languages/vue.php:437
921
  msgid "Overview"
922
  msgstr ""
923
 
@@ -1018,7 +1018,7 @@ msgid "ThirstyAffiliates is a revolution in affiliate link management. Collect,
1018
  msgstr ""
1019
 
1020
  #: includes/admin/routes.php:535
1021
- #: languages/vue.php:3691
1022
  msgid "Start accepting one-time and recurring payments on your WordPress site without setting up a shopping cart. No code required."
1023
  msgstr ""
1024
 
@@ -1474,7 +1474,7 @@ msgid "Question"
1474
  msgstr ""
1475
 
1476
  #: includes/gutenberg/headline-tool/headline-tool.php:318
1477
- #: languages/vue.php:544
1478
  msgid "General"
1479
  msgstr ""
1480
 
@@ -4874,7 +4874,7 @@ msgid "Theme"
4874
  msgstr ""
4875
 
4876
  #: languages/gutenberg.php:77
4877
- #: languages/vue.php:529
4878
  msgid "Inline Popular Posts"
4879
  msgstr ""
4880
 
@@ -4911,7 +4911,7 @@ msgid "Comment Color"
4911
  msgstr ""
4912
 
4913
  #: languages/gutenberg.php:107
4914
- #: languages/vue.php:3085
4915
  msgid "Wide-Layout Options"
4916
  msgstr ""
4917
 
@@ -4920,12 +4920,12 @@ msgid "Choose Layout"
4920
  msgstr ""
4921
 
4922
  #: languages/gutenberg.php:113
4923
- #: languages/vue.php:3088
4924
  msgid "Adjust the number of columns displayed when the widget is placed in a wide container."
4925
  msgstr ""
4926
 
4927
  #: languages/gutenberg.php:116
4928
- #: languages/vue.php:3109
4929
  msgid "Post Count"
4930
  msgstr ""
4931
 
@@ -4934,7 +4934,7 @@ msgid "Number of posts displayed."
4934
  msgstr ""
4935
 
4936
  #: languages/gutenberg.php:122
4937
- #: languages/vue.php:3091
4938
  msgid "Display Options"
4939
  msgstr ""
4940
 
@@ -4947,7 +4947,7 @@ msgid "Display Widget Title"
4947
  msgstr ""
4948
 
4949
  #: languages/gutenberg.php:131
4950
- #: languages/vue.php:1958
4951
  msgid "Widget Title"
4952
  msgstr ""
4953
 
@@ -4956,17 +4956,17 @@ msgid "Only Show Posts From These Categories"
4956
  msgstr ""
4957
 
4958
  #: languages/gutenberg.php:137
4959
- #: languages/vue.php:3097
4960
  msgid "Display Author"
4961
  msgstr ""
4962
 
4963
  #: languages/gutenberg.php:140
4964
- #: languages/vue.php:3100
4965
  msgid "Display Date"
4966
  msgstr ""
4967
 
4968
  #: languages/gutenberg.php:143
4969
- #: languages/vue.php:3103
4970
  msgid "Display Comments"
4971
  msgstr ""
4972
 
@@ -5187,7 +5187,7 @@ msgid "Goal: "
5187
  msgstr ""
5188
 
5189
  #: languages/gutenberg.php:312
5190
- #: languages/vue.php:985
5191
  msgid "Headline Analyzer"
5192
  msgstr ""
5193
 
@@ -5200,13 +5200,13 @@ msgid "This headline analyzer is part of ExactMetrics to help you increase your
5200
  msgstr ""
5201
 
5202
  #: languages/gutenberg.php:321
5203
- #: languages/vue.php:106
5204
  #: lite/includes/admin/metaboxes.php:47
5205
  msgid "Last 30 days"
5206
  msgstr ""
5207
 
5208
  #: languages/gutenberg.php:324
5209
- #: languages/vue.php:94
5210
  #: lite/includes/admin/metaboxes.php:51
5211
  msgid "Yesterday"
5212
  msgstr ""
@@ -5268,2506 +5268,2506 @@ msgstr ""
5268
  msgid "Loading Settings"
5269
  msgstr ""
5270
 
5271
- #: languages/vue.php:14
5272
  msgid "Please wait..."
5273
  msgstr ""
5274
 
5275
- #: languages/vue.php:17
5276
  msgid "Saving Changes..."
5277
  msgstr ""
5278
 
5279
- #: languages/vue.php:20
5280
  msgid "Settings Updated"
5281
  msgstr ""
5282
 
5283
  #. Translators: Add a link to the onboarding wizard.
5284
- #: languages/vue.php:24
5285
  msgid "You need to %1$sconnect ExactMetrics%2$s first"
5286
  msgstr ""
5287
 
5288
- #: languages/vue.php:27
5289
  msgid "Could Not Save Changes"
5290
  msgstr ""
5291
 
5292
- #: languages/vue.php:30
5293
  msgid "Loading new report data"
5294
  msgstr ""
5295
 
5296
  #. Translators: Adds an arrow icon.
5297
- #: languages/vue.php:34
5298
  msgid "Continue %s"
5299
  msgstr ""
5300
 
5301
- #: languages/vue.php:37
5302
  msgid "Error"
5303
  msgstr ""
5304
 
5305
- #: languages/vue.php:40
5306
  msgid "Please try again."
5307
  msgstr ""
5308
 
5309
- #: languages/vue.php:43
5310
  msgid "Unlock the Publishers Report and Focus on the Content that Matters"
5311
  msgstr ""
5312
 
5313
- #: languages/vue.php:46
5314
  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."
5315
  msgstr ""
5316
 
5317
- #: languages/vue.php:49
5318
  msgid "Unlock the Publishers Report and Focus on the Content That Matters"
5319
  msgstr ""
5320
 
5321
- #: languages/vue.php:52
5322
  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."
5323
  msgstr ""
5324
 
5325
- #: languages/vue.php:55
5326
  msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
5327
  msgstr ""
5328
 
5329
- #: languages/vue.php:58
5330
  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."
5331
  msgstr ""
5332
 
5333
- #: languages/vue.php:61
5334
  msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
5335
  msgstr ""
5336
 
5337
- #: languages/vue.php:64
5338
  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."
5339
  msgstr ""
5340
 
5341
- #: languages/vue.php:67
5342
  msgid "Unlock the Forms Report and Improve Conversions"
5343
  msgstr ""
5344
 
5345
- #: languages/vue.php:70
5346
  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."
5347
  msgstr ""
5348
 
5349
- #: languages/vue.php:73
5350
  msgid "Unlock the Search Console Report and See How People Find Your Website"
5351
  msgstr ""
5352
 
5353
- #: languages/vue.php:76
5354
  msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
5355
  msgstr ""
5356
 
5357
- #: languages/vue.php:79
5358
  msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
5359
  msgstr ""
5360
 
5361
- #: languages/vue.php:82
5362
  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."
5363
  msgstr ""
5364
 
5365
- #: languages/vue.php:85
5366
  msgid "Unlock the Site Speed Report and Improve the Performance of Your Site"
5367
  msgstr ""
5368
 
5369
- #: languages/vue.php:88
5370
  msgid "See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking"
5371
  msgstr ""
5372
 
5373
- #: languages/vue.php:91
5374
  msgid "Today"
5375
  msgstr ""
5376
 
5377
- #: languages/vue.php:97
5378
  msgid "Last Week"
5379
  msgstr ""
5380
 
5381
- #: languages/vue.php:100
5382
  msgid "Last Month"
5383
  msgstr ""
5384
 
5385
- #: languages/vue.php:103
5386
  msgid "Last 7 days"
5387
  msgstr ""
5388
 
5389
- #: languages/vue.php:109
5390
  msgid "Loading settings"
5391
  msgstr ""
5392
 
5393
  #. Translators: Number of visitors.
5394
- #: languages/vue.php:113
5395
  msgid "See how %s visitors found your site!"
5396
  msgstr ""
5397
 
5398
  #. Translators: Number of visitors.
5399
- #: languages/vue.php:117
5400
  msgid "Your website was visited by %s users in the last 30 days."
5401
  msgstr ""
5402
 
5403
- #: languages/vue.php:120
5404
  msgid "See the full analytics report!"
5405
  msgstr ""
5406
 
5407
- #: languages/vue.php:123
5408
  msgid "Overview Report"
5409
  msgstr ""
5410
 
5411
  #. Translators: Current PHP version and recommended PHP version.
5412
- #: languages/vue.php:127
5413
  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."
5414
  msgstr ""
5415
 
5416
  #. Translators: Current WordPress version.
5417
- #: languages/vue.php:131
5418
  msgid "ExactMetrics has detected that your site is running an outdated version of WordPress (%s). ExactMetrics will stop supporting WordPress versions lower than 4.9 in 2020. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
5419
  msgstr ""
5420
 
5421
- #: languages/vue.php:134
5422
  msgid "Yikes! PHP Update Required"
5423
  msgstr ""
5424
 
5425
  #. Translators: Current PHP version and recommended PHP version.
5426
- #: languages/vue.php:138
5427
  msgid "ExactMetrics has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure."
5428
  msgstr ""
5429
 
5430
- #: languages/vue.php:141
5431
  msgid "Learn more about updating PHP"
5432
  msgstr ""
5433
 
5434
- #: languages/vue.php:144
5435
  msgid "Yikes! WordPress Update Required"
5436
  msgstr ""
5437
 
5438
  #. Translators: Current WordPress version.
5439
- #: languages/vue.php:148
5440
  msgid "ExactMetrics has detected that your site is running an outdated version of WordPress (%s). Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
5441
  msgstr ""
5442
 
5443
- #: languages/vue.php:151
5444
  msgid "Learn more about updating WordPress"
5445
  msgstr ""
5446
 
5447
- #: languages/vue.php:157
5448
  msgid "Getting Started"
5449
  msgstr ""
5450
 
5451
- #: languages/vue.php:160
5452
  msgid "Lite vs Pro"
5453
  msgstr ""
5454
 
5455
- #: languages/vue.php:163
5456
  msgid "Success! "
5457
  msgstr ""
5458
 
5459
- #: languages/vue.php:166
5460
  msgid "You're now using ExactMetrics Pro with all the features."
5461
  msgstr ""
5462
 
5463
  #. Translators: Placeholder gets replaced with an arrow icon.
5464
- #: languages/vue.php:170
5465
  msgid "Get Started %s"
5466
  msgstr ""
5467
 
5468
  #. Translators: Error status and error text.
5469
- #: languages/vue.php:174
5470
  msgid "Can't load report data. Error: %1$s, %2$s"
5471
  msgstr ""
5472
 
5473
- #: languages/vue.php:177
5474
  msgid "Error loading report data"
5475
  msgstr ""
5476
 
5477
  #. Translators: Makes the text bold.
5478
- #: languages/vue.php:181
5479
  msgid "%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
5480
  msgstr ""
5481
 
5482
  #. Translators: Makes the text bold.
5483
- #: languages/vue.php:185
5484
  msgid "%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights."
5485
  msgstr ""
5486
 
5487
  #. Translators: Makes the text bold.
5488
- #: languages/vue.php:189
5489
  msgid "%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more."
5490
  msgstr ""
5491
 
5492
  #. Translators: Makes text bold.
5493
- #: languages/vue.php:193
5494
  msgid "%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress."
5495
  msgstr ""
5496
 
5497
  #. Translators: Makes the text bold.
5498
- #: languages/vue.php:197
5499
  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."
5500
  msgstr ""
5501
 
5502
  #. Translators: Makes the text bold.
5503
- #: languages/vue.php:201
5504
  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."
5505
  msgstr ""
5506
 
5507
  #. Translators: Makes the text bold.
5508
- #: languages/vue.php:205
5509
  msgid "%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically."
5510
  msgstr ""
5511
 
5512
  #. Translators: Makes text bold.
5513
- #: languages/vue.php:209
5514
  msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click."
5515
  msgstr ""
5516
 
5517
  #. Translators: Adds a link and an arrow icon.
5518
- #: languages/vue.php:213
5519
  msgid "%1$sSee All Features%2$s"
5520
  msgstr ""
5521
 
5522
- #: languages/vue.php:216
5523
  msgid "Pro Plan"
5524
  msgstr ""
5525
 
5526
- #: languages/vue.php:219
5527
  msgid "per year"
5528
  msgstr ""
5529
 
5530
- #: languages/vue.php:225
5531
  msgid "Upgrade to ExactMetrics Pro Now"
5532
  msgstr ""
5533
 
5534
- #: languages/vue.php:228
5535
  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!"
5536
  msgstr ""
5537
 
5538
- #: languages/vue.php:231
5539
  msgid "Daniel Monaghan - Experienced"
5540
  msgstr ""
5541
 
5542
- #: languages/vue.php:234
5543
  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."
5544
  msgstr ""
5545
 
5546
- #: languages/vue.php:237
5547
  msgid "Naomi Spirit - From This Day"
5548
  msgstr ""
5549
 
5550
- #: languages/vue.php:240
5551
  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!"
5552
  msgstr ""
5553
 
5554
- #: languages/vue.php:243
5555
  msgid "Julie Dupuis - Faraway Land Travel"
5556
  msgstr ""
5557
 
5558
- #: languages/vue.php:246
5559
  msgid "Guides and Documentation:"
5560
  msgstr ""
5561
 
5562
- #: languages/vue.php:251
5563
  msgid "Upgrade to PRO"
5564
  msgstr ""
5565
 
5566
- #: languages/vue.php:254
5567
  msgid "eCommerce Tracking"
5568
  msgstr ""
5569
 
5570
- #: languages/vue.php:257
5571
  msgid "Custom Dimensions"
5572
  msgstr ""
5573
 
5574
- #: languages/vue.php:260
5575
  msgid "Form Tracking"
5576
  msgstr ""
5577
 
5578
- #: languages/vue.php:263
5579
  msgid "AMP Support"
5580
  msgstr ""
5581
 
5582
- #: languages/vue.php:266
5583
  msgid "Author Tracking"
5584
  msgstr ""
5585
 
5586
- #: languages/vue.php:269
5587
  msgid "EU Compliance Addon"
5588
  msgstr ""
5589
 
5590
- #: languages/vue.php:272
5591
  msgid "Real Time Report"
5592
  msgstr ""
5593
 
5594
- #: languages/vue.php:275
5595
  msgid "Google Optimize"
5596
  msgstr ""
5597
 
5598
- #: languages/vue.php:279
5599
  #: lite/includes/admin/reports/report-queries.php:22
5600
  msgid "Search Console"
5601
  msgstr ""
5602
 
5603
- #: languages/vue.php:282
5604
  msgid "Custom Date Ranges"
5605
  msgstr ""
5606
 
5607
- #: languages/vue.php:285
5608
- #: languages/vue.php:924
5609
  msgid "Getting Started with ExactMetrics"
5610
  msgstr ""
5611
 
5612
- #: languages/vue.php:288
5613
- #: languages/vue.php:927
5614
  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."
5615
  msgstr ""
5616
 
5617
- #: languages/vue.php:291
5618
  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."
5619
  msgstr ""
5620
 
5621
- #: languages/vue.php:294
5622
  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!."
5623
  msgstr ""
5624
 
5625
- #: languages/vue.php:297
5626
  msgid "Launch the wizard!"
5627
  msgstr ""
5628
 
5629
- #: languages/vue.php:300
5630
  msgid "Welcome to"
5631
  msgstr ""
5632
 
5633
  #. Translators: Adds a line break.
5634
- #: languages/vue.php:304
5635
  msgid "Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin"
5636
  msgstr ""
5637
 
5638
  #. Translators: Makes the product name bold.
5639
- #: languages/vue.php:308
5640
  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."
5641
  msgstr ""
5642
 
5643
- #: languages/vue.php:311
5644
  msgid "ExactMetrics Features & Addons"
5645
  msgstr ""
5646
 
5647
- #: languages/vue.php:314
5648
  msgid "Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market."
5649
  msgstr ""
5650
 
5651
  #. Translators: Placeholder is replaced with WPForms.
5652
- #: languages/vue.php:318
5653
  msgid "Recommended Plugin: %s"
5654
  msgstr ""
5655
 
5656
- #: languages/vue.php:322
5657
  msgid "Install"
5658
  msgstr ""
5659
 
5660
- #: languages/vue.php:326
5661
  msgid "Activate"
5662
  msgstr ""
5663
 
5664
- #: languages/vue.php:332
5665
  msgid "ExactMetrics encountered an error loading your report data"
5666
  msgstr ""
5667
 
5668
- #: languages/vue.php:335
5669
  msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
5670
  msgstr ""
5671
 
5672
- #: languages/vue.php:338
5673
- #: languages/vue.php:1855
5674
  msgid "Reconnect ExactMetrics"
5675
  msgstr ""
5676
 
5677
- #: languages/vue.php:341
5678
  msgid "Re-Authenticating"
5679
  msgstr ""
5680
 
5681
- #: languages/vue.php:344
5682
  msgid "Ok"
5683
  msgstr ""
5684
 
5685
- #: languages/vue.php:347
5686
- #: languages/vue.php:863
5687
  msgid "ExactMetrics Addons"
5688
  msgstr ""
5689
 
5690
- #: languages/vue.php:350
5691
  msgid "Search Addons"
5692
  msgstr ""
5693
 
5694
- #: languages/vue.php:353
5695
  msgid "Save Changes"
5696
  msgstr ""
5697
 
5698
- #: languages/vue.php:356
5699
  msgid "Exit Setup"
5700
  msgstr ""
5701
 
5702
- #: languages/vue.php:360
5703
  msgid "Time to Purchase"
5704
  msgstr ""
5705
 
5706
- #: languages/vue.php:363
5707
  msgid "This list shows how many days from first visit it took users to purchase products from your site."
5708
  msgstr ""
5709
 
5710
- #: languages/vue.php:367
5711
  msgid "Sessions to Purchase"
5712
  msgstr ""
5713
 
5714
- #: languages/vue.php:370
5715
  msgid "This list shows the number of sessions it took users before they purchased a product from your website."
5716
  msgstr ""
5717
 
5718
- #: languages/vue.php:373
5719
  msgid "New Customers"
5720
  msgstr ""
5721
 
5722
- #: languages/vue.php:376
5723
  msgid "This list shows the percentage of new customers who purchased a product from your website."
5724
  msgstr ""
5725
 
5726
- #: languages/vue.php:379
5727
  msgid "Abandoned Checkouts"
5728
  msgstr ""
5729
 
5730
- #: languages/vue.php:382
5731
  msgid "This list shows the percentage of carts that never went through the checkout process."
5732
  msgstr ""
5733
 
5734
- #: languages/vue.php:385
5735
  msgid "Top Posts/Pages"
5736
  msgstr ""
5737
 
5738
- #: languages/vue.php:388
5739
  msgid "This list shows the most viewed posts and pages on your website."
5740
  msgstr ""
5741
 
5742
- #: languages/vue.php:391
5743
  msgid "New vs. Returning Visitors"
5744
  msgstr ""
5745
 
5746
- #: languages/vue.php:394
5747
  msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
5748
  msgstr ""
5749
 
5750
- #: languages/vue.php:397
5751
  msgid "Device Breakdown"
5752
  msgstr ""
5753
 
5754
- #: languages/vue.php:400
5755
  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."
5756
  msgstr ""
5757
 
5758
- #: languages/vue.php:404
5759
  msgid "Top Landing Pages"
5760
  msgstr ""
5761
 
5762
- #: languages/vue.php:407
5763
  msgid "This list shows the top pages users first land on when visiting your website."
5764
  msgstr ""
5765
 
5766
- #: languages/vue.php:411
5767
  msgid "Top Exit Pages"
5768
  msgstr ""
5769
 
5770
- #: languages/vue.php:414
5771
  msgid "This list shows the top pages users exit your website from."
5772
  msgstr ""
5773
 
5774
- #: languages/vue.php:418
5775
  msgid "Top Outbound Links"
5776
  msgstr ""
5777
 
5778
- #: languages/vue.php:421
5779
  msgid "This list shows the top links clicked on your website that go to another website."
5780
  msgstr ""
5781
 
5782
- #: languages/vue.php:424
5783
  msgid "Top Affiliate Links"
5784
  msgstr ""
5785
 
5786
- #: languages/vue.php:427
5787
  msgid "This list shows the top affiliate links your visitors clicked on."
5788
  msgstr ""
5789
 
5790
- #: languages/vue.php:431
5791
  msgid "Top Download Links"
5792
  msgstr ""
5793
 
5794
- #: languages/vue.php:434
5795
  msgid "This list shows the download links your visitors clicked the most."
5796
  msgstr ""
5797
 
5798
- #: languages/vue.php:441
5799
  msgid "Top Products"
5800
  msgstr ""
5801
 
5802
- #: languages/vue.php:444
5803
  msgid "This list shows the top selling products on your website."
5804
  msgstr ""
5805
 
5806
- #: languages/vue.php:448
5807
  msgid "Top Conversion Sources"
5808
  msgstr ""
5809
 
5810
- #: languages/vue.php:451
5811
  msgid "This list shows the top referral websites in terms of product revenue."
5812
  msgstr ""
5813
 
5814
- #: languages/vue.php:454
5815
  msgid "Total Add/Remove"
5816
  msgstr ""
5817
 
5818
- #: languages/vue.php:457
5819
  msgid "Analytics"
5820
  msgstr ""
5821
 
5822
  #. Translators: Adds an arrow icon.
5823
- #: languages/vue.php:461
5824
  msgid "View All Reports %s"
5825
  msgstr ""
5826
 
5827
- #: languages/vue.php:464
5828
  msgid "You must connect with ExactMetrics before you can view reports."
5829
  msgstr ""
5830
 
5831
- #: languages/vue.php:467
5832
  msgid "ExactMetrics makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
5833
  msgstr ""
5834
 
5835
- #: languages/vue.php:470
5836
  msgid "Launch Setup Wizard"
5837
  msgstr ""
5838
 
5839
- #: languages/vue.php:473
5840
  msgid "Please ask your webmaster to connect ExactMetrics to Google Analytics."
5841
  msgstr ""
5842
 
5843
- #: languages/vue.php:486
5844
  msgid "See Quick Links"
5845
  msgstr ""
5846
 
5847
- #: languages/vue.php:489
5848
  msgid "Suggest a Feature"
5849
  msgstr ""
5850
 
5851
- #: languages/vue.php:492
5852
  msgid "Join Our Community"
5853
  msgstr ""
5854
 
5855
- #: languages/vue.php:495
5856
  msgid "Support & Docs"
5857
  msgstr ""
5858
 
5859
- #: languages/vue.php:498
5860
  msgid "Upgrade to Pro &#187;"
5861
  msgstr ""
5862
 
5863
- #: languages/vue.php:501
5864
  #: lite/includes/admin/reports/report-publisher.php:22
5865
  msgid "Publishers"
5866
  msgstr ""
5867
 
5868
- #: languages/vue.php:504
5869
  #: lite/includes/admin/reports/report-ecommerce.php:22
5870
  msgid "eCommerce"
5871
  msgstr ""
5872
 
5873
- #: languages/vue.php:507
5874
  msgid "Dimensions Report"
5875
  msgstr ""
5876
 
5877
- #: languages/vue.php:510
5878
  #: lite/includes/admin/reports/report-forms.php:22
5879
  msgid "Forms"
5880
  msgstr ""
5881
 
5882
- #: languages/vue.php:513
5883
  msgid "Real-Time"
5884
  msgstr ""
5885
 
5886
- #: languages/vue.php:516
5887
  msgid "Site Speed Report"
5888
  msgstr ""
5889
 
5890
- #: languages/vue.php:520
5891
  msgid "2020 Year in Review"
5892
  msgstr ""
5893
 
5894
- #: languages/vue.php:523
5895
  msgid "Import Export"
5896
  msgstr ""
5897
 
5898
- #: languages/vue.php:526
5899
  msgid "PrettyLinks Integration"
5900
  msgstr ""
5901
 
5902
- #: languages/vue.php:532
5903
  msgid "Popular Posts Widget"
5904
  msgstr ""
5905
 
5906
- #: languages/vue.php:535
5907
  msgid "Popular Products"
5908
  msgstr ""
5909
 
5910
- #: languages/vue.php:541
5911
  msgid "Sub menu item for WooCommerce Analytics"
5912
  msgstr ""
5913
 
5914
- #: languages/vue.php:547
5915
  msgid "Engagement"
5916
  msgstr ""
5917
 
5918
- #: languages/vue.php:550
5919
  msgid "Publisher"
5920
  msgstr ""
5921
 
5922
- #: languages/vue.php:553
5923
  msgid "Conversions"
5924
  msgstr ""
5925
 
5926
- #: languages/vue.php:556
5927
  msgid "Advanced"
5928
  msgstr ""
5929
 
5930
- #: languages/vue.php:559
5931
  msgid "URL Builder"
5932
  msgstr ""
5933
 
5934
  #. Translators: Adds a link to documentation.
5935
- #: languages/vue.php:563
5936
  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"
5937
  msgstr ""
5938
 
5939
  #. Translators: Adds link to activate/install plugin and documentation.
5940
- #: languages/vue.php:567
5941
  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"
5942
  msgstr ""
5943
 
5944
  #. Translators: Adds a link to documentation.
5945
- #: languages/vue.php:571
5946
  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"
5947
  msgstr ""
5948
 
5949
  #. Translators: Adds link to activate/install plugin and documentation.
5950
- #: languages/vue.php:575
5951
  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"
5952
  msgstr ""
5953
 
5954
- #: languages/vue.php:578
5955
  msgid "Installing Addon"
5956
  msgstr ""
5957
 
5958
- #: languages/vue.php:581
5959
  msgid "Activating Addon"
5960
  msgstr ""
5961
 
5962
- #: languages/vue.php:584
5963
  msgid "Addon Activated"
5964
  msgstr ""
5965
 
5966
- #: languages/vue.php:587
5967
  msgid "Loading report data"
5968
  msgstr ""
5969
 
5970
- #: languages/vue.php:590
5971
  msgid "Please activate manually"
5972
  msgstr ""
5973
 
5974
  #. Translators: Adds the error status and status text.
5975
- #: languages/vue.php:594
5976
  msgid "Error: %1$s, %2$s"
5977
  msgstr ""
5978
 
5979
- #: languages/vue.php:597
5980
  msgid "Error Activating Addon"
5981
  msgstr ""
5982
 
5983
- #: languages/vue.php:600
5984
  #: lite/includes/admin/wp-site-health.php:375
5985
  #: lite/includes/admin/wp-site-health.php:401
5986
  #: lite/includes/admin/wp-site-health.php:428
5987
  msgid "View Addons"
5988
  msgstr ""
5989
 
5990
- #: languages/vue.php:605
5991
  msgid "Dismiss"
5992
  msgstr ""
5993
 
5994
- #: languages/vue.php:608
5995
  msgid "Redirecting"
5996
  msgstr ""
5997
 
5998
- #: languages/vue.php:611
5999
  msgid "Please wait"
6000
  msgstr ""
6001
 
6002
- #: languages/vue.php:614
6003
  msgid "activate"
6004
  msgstr ""
6005
 
6006
- #: languages/vue.php:617
6007
  msgid "install"
6008
  msgstr ""
6009
 
6010
- #: languages/vue.php:620
6011
  msgid "Visit addons page"
6012
  msgstr ""
6013
 
6014
- #: languages/vue.php:623
6015
  msgid "Report Unavailable"
6016
  msgstr ""
6017
 
6018
  #. Translators: Install/Activate the addon.
6019
- #: languages/vue.php:627
6020
  msgid "%s Addon"
6021
  msgstr ""
6022
 
6023
- #: languages/vue.php:630
6024
  msgid "Go Back To Reports"
6025
  msgstr ""
6026
 
6027
- #: languages/vue.php:633
6028
  msgid "Enable Enhanced eCommerce"
6029
  msgstr ""
6030
 
6031
  #. Translators: Placeholders are replaced with the current step number out of the total number of steps.
6032
- #: languages/vue.php:637
6033
  msgid "Step %1$s of %2$s"
6034
  msgstr ""
6035
 
6036
- #: languages/vue.php:640
6037
  msgid "Go back"
6038
  msgstr ""
6039
 
6040
- #: languages/vue.php:643
6041
  msgid "Welcome to ExactMetrics!"
6042
  msgstr ""
6043
 
6044
- #: languages/vue.php:646
6045
  msgid "Let's get you set up."
6046
  msgstr ""
6047
 
6048
- #: languages/vue.php:649
6049
  msgid "Save and Continue"
6050
  msgstr ""
6051
 
6052
- #: languages/vue.php:652
6053
  msgid "Which category best describes your website?"
6054
  msgstr ""
6055
 
6056
- #: languages/vue.php:655
6057
  msgid "We will recommend the optimal settings for ExactMetrics based on your choice."
6058
  msgstr ""
6059
 
6060
- #: languages/vue.php:658
6061
  msgid "Business Website"
6062
  msgstr ""
6063
 
6064
  #. Translators: Make text bold.
6065
- #: languages/vue.php:662
6066
  msgid "Publisher %1$s(Blog)%2$s"
6067
  msgstr ""
6068
 
6069
- #: languages/vue.php:665
6070
  msgid "Ecommerce"
6071
  msgstr ""
6072
 
6073
- #: languages/vue.php:668
6074
  msgid "Connect ExactMetrics to Your Website"
6075
  msgstr ""
6076
 
6077
- #: languages/vue.php:671
6078
  msgid "ExactMetrics connects Google Analytics to WordPress and shows you stats that matter."
6079
  msgstr ""
6080
 
6081
- #: languages/vue.php:674
6082
  msgid "Connect Google Analytics + WordPress"
6083
  msgstr ""
6084
 
6085
- #: languages/vue.php:677
6086
  msgid "You will be taken to the ExactMetrics website where you'll need to connect your Analytics account."
6087
  msgstr ""
6088
 
6089
- #: languages/vue.php:680
6090
  msgid "Whoops, something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually."
6091
  msgstr ""
6092
 
6093
- #: languages/vue.php:683
6094
  msgid "Manually enter your UA code"
6095
  msgstr ""
6096
 
6097
- #: languages/vue.php:686
6098
  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."
6099
  msgstr ""
6100
 
6101
- #: languages/vue.php:689
6102
  msgid "UA code can't be empty"
6103
  msgstr ""
6104
 
6105
- #: languages/vue.php:692
6106
  msgid "Saving UA code..."
6107
  msgstr ""
6108
 
6109
- #: languages/vue.php:695
6110
  msgid "ExactMetrics Recommends WPForms"
6111
  msgstr ""
6112
 
6113
- #: languages/vue.php:698
6114
  msgid "Built by the folks behind ExactMetrics, WPForms is the most beginner friendly form plugin in the market."
6115
  msgstr ""
6116
 
6117
- #: languages/vue.php:701
6118
  msgid "Used on over 4,000,000 websites!"
6119
  msgstr ""
6120
 
6121
- #: languages/vue.php:704
6122
  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!"
6123
  msgstr ""
6124
 
6125
- #: languages/vue.php:707
6126
  msgid "Skip this Step"
6127
  msgstr ""
6128
 
6129
- #: languages/vue.php:710
6130
  msgid "Continue & Install WPForms"
6131
  msgstr ""
6132
 
6133
- #: languages/vue.php:713
6134
  msgid "Installing..."
6135
  msgstr ""
6136
 
6137
- #: languages/vue.php:716
6138
  msgid "Recommended Settings"
6139
  msgstr ""
6140
 
6141
- #: languages/vue.php:719
6142
  msgid "ExactMetrics recommends the following settings based on your configuration."
6143
  msgstr ""
6144
 
6145
- #: languages/vue.php:722
6146
  msgid "Events Tracking"
6147
  msgstr ""
6148
 
6149
- #: languages/vue.php:725
6150
  msgid "Must have for all click tracking on site."
6151
  msgstr ""
6152
 
6153
- #: languages/vue.php:728
6154
  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."
6155
  msgstr ""
6156
 
6157
- #: languages/vue.php:732
6158
  msgid "Enhanced Link Attribution"
6159
  msgstr ""
6160
 
6161
- #: languages/vue.php:735
6162
  msgid "Improves the accuracy of your In-Page Analytics."
6163
  msgstr ""
6164
 
6165
- #: languages/vue.php:738
6166
  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."
6167
  msgstr ""
6168
 
6169
- #: languages/vue.php:741
6170
  msgid "Install Updates Automatically"
6171
  msgstr ""
6172
 
6173
- #: languages/vue.php:744
6174
  msgid "Get the latest features, bug fixes, and security updates as they are released."
6175
  msgstr ""
6176
 
6177
- #: languages/vue.php:747
6178
  msgid "To ensure you get the latest bug fixes and security updates and avoid needing to spend time logging into your WordPress site to update ExactMetrics, we offer the ability to automatically have ExactMetrics update itself."
6179
  msgstr ""
6180
 
6181
- #: languages/vue.php:750
6182
  msgid "File Download Tracking"
6183
  msgstr ""
6184
 
6185
- #: languages/vue.php:753
6186
  msgid "Helps you see file downloads data."
6187
  msgstr ""
6188
 
6189
- #: languages/vue.php:756
6190
  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."
6191
  msgstr ""
6192
 
6193
  #. Translators: Example path (/go/).
6194
- #: languages/vue.php:760
6195
  msgid "Path (example: %s)"
6196
  msgstr ""
6197
 
6198
- #: languages/vue.php:763
6199
  msgid "Path has to start with a / and have no spaces"
6200
  msgstr ""
6201
 
6202
  #. Translators: Example label (aff).
6203
- #: languages/vue.php:767
6204
  msgid "Label (example: %s)"
6205
  msgstr ""
6206
 
6207
- #: languages/vue.php:770
6208
  msgid "Label can't contain any spaces"
6209
  msgstr ""
6210
 
6211
- #: languages/vue.php:773
6212
  msgid "Helps you increase affiliate revenue."
6213
  msgstr ""
6214
 
6215
- #: languages/vue.php:776
6216
  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."
6217
  msgstr ""
6218
 
6219
- #: languages/vue.php:779
6220
  msgid "Affiliate Link Tracking"
6221
  msgstr ""
6222
 
6223
- #: languages/vue.php:782
6224
  msgid "Who Can See Reports"
6225
  msgstr ""
6226
 
6227
- #: languages/vue.php:785
6228
  msgid "These user roles will be able to access ExactMetrics' reports in the WordPress admin area."
6229
  msgstr ""
6230
 
6231
- #: languages/vue.php:788
6232
  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."
6233
  msgstr ""
6234
 
6235
- #: languages/vue.php:791
6236
  msgid "Save and continue"
6237
  msgstr ""
6238
 
6239
- #: languages/vue.php:794
6240
  msgid "Events Tracking is enabled the moment you set up ExactMetrics"
6241
  msgstr ""
6242
 
6243
- #: languages/vue.php:797
6244
  msgid "Enhanced Link Attribution is enabled the moment you set up ExactMetrics"
6245
  msgstr ""
6246
 
6247
- #: languages/vue.php:800
6248
  msgid "+ Add Role"
6249
  msgstr ""
6250
 
6251
  #. Translators: Placeholders are used for making text bold and adding a link.
6252
- #: languages/vue.php:804
6253
  msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
6254
  msgstr ""
6255
 
6256
- #: languages/vue.php:807
6257
  #: lite/includes/admin/reports/report-dimensions.php:22
6258
  msgid "Dimensions"
6259
  msgstr ""
6260
 
6261
- #: languages/vue.php:810
6262
  msgid "Site Speed"
6263
  msgstr ""
6264
 
6265
- #: languages/vue.php:813
6266
  msgid "License Key"
6267
  msgstr ""
6268
 
6269
  #. Translators: Add link to retrieve license key from account.
6270
- #: languages/vue.php:817
6271
  msgid "Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
6272
  msgstr ""
6273
 
6274
- #: languages/vue.php:820
6275
  msgid "Google Authentication"
6276
  msgstr ""
6277
 
6278
- #: languages/vue.php:823
6279
  msgid "Miscellaneous"
6280
  msgstr ""
6281
 
6282
- #: languages/vue.php:826
6283
  msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
6284
  msgstr ""
6285
 
6286
- #: languages/vue.php:829
6287
  msgid "Hide Announcements"
6288
  msgstr ""
6289
 
6290
- #: languages/vue.php:832
6291
  msgid "You're using ExactMetrics Lite – no license needed. Enjoy!"
6292
  msgstr ""
6293
 
6294
- #. Translators: Add link to upgrade.
6295
- #: languages/vue.php:836
6296
  msgid "To unlock more features consider %1$supgrading to PRO%2$s."
6297
  msgstr ""
6298
 
6299
- #: languages/vue.php:839
6300
  msgid "Receive 50% off automatically applied at the checkout!"
6301
  msgstr ""
6302
 
6303
- #: languages/vue.php:842
6304
  msgid "See all features"
6305
  msgstr ""
6306
 
6307
- #: languages/vue.php:845
6308
  msgid "Setup Wizard"
6309
  msgstr ""
6310
 
6311
- #: languages/vue.php:848
6312
  msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
6313
  msgstr ""
6314
 
6315
- #: languages/vue.php:851
6316
  msgid "Relaunch Setup Wizard"
6317
  msgstr ""
6318
 
6319
- #: languages/vue.php:854
6320
  msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
6321
  msgstr ""
6322
 
6323
- #: languages/vue.php:857
6324
  msgid "No addons found."
6325
  msgstr ""
6326
 
6327
- #: languages/vue.php:860
6328
  msgid "Refresh Addons"
6329
  msgstr ""
6330
 
6331
  #. Translators: Adds a line break.
6332
- #: languages/vue.php:867
6333
  msgid "Upgrade to Pro to unlock addons and other great features."
6334
  msgstr ""
6335
 
6336
- #: languages/vue.php:870
6337
  msgid "As a valued ExactMetrics Lite user you receive 50% off, automaticaly applied at checkout!"
6338
  msgstr ""
6339
 
6340
- #: languages/vue.php:873
6341
  msgid "Refreshing Addons"
6342
  msgstr ""
6343
 
6344
- #: languages/vue.php:876
6345
  msgid "Get ExactMetrics Pro Today and Unlock all the Powerful Features"
6346
  msgstr ""
6347
 
6348
  #. Translators: Placeholders make the text green.
6349
- #: languages/vue.php:880
6350
  msgid "Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
6351
  msgstr ""
6352
 
6353
- #: languages/vue.php:883
6354
  msgid "How to Connect to Google Analytics"
6355
  msgstr ""
6356
 
6357
- #: languages/vue.php:886
6358
  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."
6359
  msgstr ""
6360
 
6361
- #: languages/vue.php:889
6362
  msgid "Guide and Checklist for Advanced Insights"
6363
  msgstr ""
6364
 
6365
- #: languages/vue.php:892
6366
  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."
6367
  msgstr ""
6368
 
6369
- #: languages/vue.php:895
6370
  msgid "GDPR Guide"
6371
  msgstr ""
6372
 
6373
- #: languages/vue.php:898
6374
  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. "
6375
  msgstr ""
6376
 
6377
- #: languages/vue.php:901
6378
  msgid "How to Install and Activate ExactMetrics Addons"
6379
  msgstr ""
6380
 
6381
- #: languages/vue.php:904
6382
  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."
6383
  msgstr ""
6384
 
6385
- #: languages/vue.php:907
6386
  msgid "Enabling eCommerce Tracking and Reports"
6387
  msgstr ""
6388
 
6389
- #: languages/vue.php:910
6390
  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."
6391
  msgstr ""
6392
 
6393
- #: languages/vue.php:913
6394
  msgid "Read Documentation"
6395
  msgstr ""
6396
 
6397
  #. Translators: Makes the text bold.
6398
- #: languages/vue.php:917
6399
  msgid "%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress."
6400
  msgstr ""
6401
 
6402
  #. Translators: Makes the text bold.
6403
- #: languages/vue.php:921
6404
  msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post type, users, and other events with 1-click."
6405
  msgstr ""
6406
 
6407
- #: languages/vue.php:930
6408
  msgid "One-click Complete eCommerce tracking"
6409
  msgstr ""
6410
 
6411
- #: languages/vue.php:933
6412
  msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
6413
  msgstr ""
6414
 
6415
- #: languages/vue.php:936
6416
  msgid "Forms Tracking"
6417
  msgstr ""
6418
 
6419
- #: languages/vue.php:939
6420
  msgid "One-click Form Events Tracking"
6421
  msgstr ""
6422
 
6423
- #: languages/vue.php:942
6424
  msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
6425
  msgstr ""
6426
 
6427
- #: languages/vue.php:945
6428
  msgid "WordPress Admin Area Reports"
6429
  msgstr ""
6430
 
6431
- #: languages/vue.php:948
6432
  msgid "Standard Reports"
6433
  msgstr ""
6434
 
6435
- #: languages/vue.php:951
6436
  msgid "Overview Reports for the last 30 days."
6437
  msgstr ""
6438
 
6439
- #: languages/vue.php:955
6440
  msgid "Advanced Reports"
6441
  msgstr ""
6442
 
6443
- #: languages/vue.php:958
6444
  msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
6445
  msgstr ""
6446
 
6447
- #: languages/vue.php:961
6448
  msgid "Dashboard Widget"
6449
  msgstr ""
6450
 
6451
- #: languages/vue.php:964
6452
  msgid "Basic Widget"
6453
  msgstr ""
6454
 
6455
- #: languages/vue.php:967
6456
  msgid "Overview Report Synopsis"
6457
  msgstr ""
6458
 
6459
- #: languages/vue.php:970
6460
  msgid "Advanced Dashboard Widget"
6461
  msgstr ""
6462
 
6463
- #: languages/vue.php:973
6464
  msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
6465
  msgstr ""
6466
 
6467
- #: languages/vue.php:976
6468
  msgid "Publisher Reports"
6469
  msgstr ""
6470
 
6471
- #: languages/vue.php:979
6472
  msgid "Advanced Publisher Reports & Tracking"
6473
  msgstr ""
6474
 
6475
- #: languages/vue.php:982
6476
  msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
6477
  msgstr ""
6478
 
6479
- #: languages/vue.php:988
6480
  msgid "Email Summaries"
6481
  msgstr ""
6482
 
6483
- #: languages/vue.php:991
6484
  msgid "Included"
6485
  msgstr ""
6486
 
6487
- #: languages/vue.php:994
6488
  msgid "Get weekly traffic reports directly in your inbox."
6489
  msgstr ""
6490
 
6491
- #: languages/vue.php:1000
6492
  msgid "Basic Options"
6493
  msgstr ""
6494
 
6495
- #: languages/vue.php:1003
6496
  msgid "Order Popular Posts by comments or shares with 3 simple theme choices."
6497
  msgstr ""
6498
 
6499
- #: languages/vue.php:1006
6500
  msgid "Dynamic Popular Posts & Popular Products"
6501
  msgstr ""
6502
 
6503
- #: languages/vue.php:1009
6504
  msgid "Display Popular Posts based on your actual traffic data from Google Analytics and choose from over 20 advanced themes. Display Popular WooCommerce products using widgets or Gutenberg blocks."
6505
  msgstr ""
6506
 
6507
- #: languages/vue.php:1012
6508
  msgid "Not Available"
6509
  msgstr ""
6510
 
6511
- #: languages/vue.php:1015
6512
  msgid "Complete Custom Dimensions Tracking"
6513
  msgstr ""
6514
 
6515
- #: languages/vue.php:1018
6516
  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"
6517
  msgstr ""
6518
 
6519
- #: languages/vue.php:1024
6520
  msgid "Limited Support"
6521
  msgstr ""
6522
 
6523
- #: languages/vue.php:1027
6524
  msgid "Priority Support"
6525
  msgstr ""
6526
 
6527
- #: languages/vue.php:1030
6528
  msgid "Get the most out of ExactMetrics by upgrading to Pro and unlocking all of the powerful features."
6529
  msgstr ""
6530
 
6531
- #: languages/vue.php:1033
6532
  msgid "Feature"
6533
  msgstr ""
6534
 
6535
- #: languages/vue.php:1036
6536
  msgid "Lite"
6537
  msgstr ""
6538
 
6539
- #: languages/vue.php:1039
6540
  msgid "Pro"
6541
  msgstr ""
6542
 
6543
- #: languages/vue.php:1042
6544
  msgid "Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout."
6545
  msgstr ""
6546
 
6547
- #: languages/vue.php:1048
6548
  msgid "Universal Tracking"
6549
  msgstr ""
6550
 
6551
- #: languages/vue.php:1051
6552
  msgid "Custom Google Analytics Link Tracking"
6553
  msgstr ""
6554
 
6555
- #: languages/vue.php:1054
6556
  msgid "Standard Tracking"
6557
  msgstr ""
6558
 
6559
- #: languages/vue.php:1057
6560
  msgid "Advanced Tracking"
6561
  msgstr ""
6562
 
6563
- #: languages/vue.php:1060
6564
  msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
6565
  msgstr ""
6566
 
6567
- #: languages/vue.php:1063
6568
  msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
6569
  msgstr ""
6570
 
6571
- #: languages/vue.php:1066
6572
  msgid "No-Code-Needed Tracking Features"
6573
  msgstr ""
6574
 
6575
- #: languages/vue.php:1069
6576
  msgid "Basic Tracking Options"
6577
  msgstr ""
6578
 
6579
- #: languages/vue.php:1072
6580
  msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
6581
  msgstr ""
6582
 
6583
- #: languages/vue.php:1075
6584
  msgid "Advanced Tracking Options"
6585
  msgstr ""
6586
 
6587
- #: languages/vue.php:1078
6588
  msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
6589
  msgstr ""
6590
 
6591
- #: languages/vue.php:1081
6592
  msgid "Inbox"
6593
  msgstr ""
6594
 
6595
- #: languages/vue.php:1084
6596
  msgid "Back to Inbox"
6597
  msgstr ""
6598
 
6599
- #: languages/vue.php:1087
6600
  msgid "View Dismissed"
6601
  msgstr ""
6602
 
6603
- #: languages/vue.php:1090
6604
  msgid "Notifications"
6605
  msgstr ""
6606
 
6607
- #: languages/vue.php:1093
6608
  msgid "Dismiss All"
6609
  msgstr ""
6610
 
6611
- #: languages/vue.php:1096
6612
  msgid "Dismissed"
6613
  msgstr ""
6614
 
6615
- #: languages/vue.php:1099
6616
  msgid "No Notifications"
6617
  msgstr ""
6618
 
6619
  #. Translators: Error status and error text.
6620
- #: languages/vue.php:1103
6621
  msgid "Can't load settings. Error: %1$s, %2$s"
6622
  msgstr ""
6623
 
6624
- #: languages/vue.php:1107
6625
  msgid "You appear to be offline."
6626
  msgstr ""
6627
 
6628
  #. Translators: Error status and error text.
6629
- #: languages/vue.php:1111
6630
  msgid "Can't save settings. Error: %1$s, %2$s"
6631
  msgstr ""
6632
 
6633
- #: languages/vue.php:1114
6634
  msgid "Network error encountered. Settings not saved."
6635
  msgstr ""
6636
 
6637
- #: languages/vue.php:1117
6638
  msgid "Show in widget mode"
6639
  msgstr ""
6640
 
6641
- #: languages/vue.php:1120
6642
  msgid "Show in full-width mode"
6643
  msgstr ""
6644
 
6645
- #: languages/vue.php:1123
6646
  msgid "Show Overview Reports"
6647
  msgstr ""
6648
 
6649
- #: languages/vue.php:1126
6650
  msgid "Show Publishers Reports"
6651
  msgstr ""
6652
 
6653
- #: languages/vue.php:1129
6654
  msgid "Show eCommerce Reports"
6655
  msgstr ""
6656
 
6657
- #: languages/vue.php:1132
6658
  msgid "Settings Menu"
6659
  msgstr ""
6660
 
6661
- #: languages/vue.php:1135
6662
  msgid "Available in PRO version"
6663
  msgstr ""
6664
 
6665
- #: languages/vue.php:1138
6666
  msgid "See All Reports"
6667
  msgstr ""
6668
 
6669
- #: languages/vue.php:1141
6670
  msgid "Go to the Analytics Dashboard"
6671
  msgstr ""
6672
 
6673
- #: languages/vue.php:1156
6674
  msgid "Cart Funnel"
6675
  msgstr ""
6676
 
6677
- #: languages/vue.php:1159
6678
  msgid "Customer Insights"
6679
  msgstr ""
6680
 
6681
- #: languages/vue.php:1162
6682
  msgid "Campaign Measurement"
6683
  msgstr ""
6684
 
6685
- #: languages/vue.php:1165
6686
  msgid "Customer Profiles"
6687
  msgstr ""
6688
 
6689
- #: languages/vue.php:1168
6690
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, revenue, and average order value, and more."
6691
  msgstr ""
6692
 
6693
- #: languages/vue.php:1171
6694
  msgid "Truly Understand Your%1$s Customers With %2$sExactMetrics%3$s"
6695
  msgstr ""
6696
 
6697
- #: languages/vue.php:1174
6698
  msgid "You never truly understand your customers until you used Enhanced %1$s eCommerce from ExactMetrics!"
6699
  msgstr ""
6700
 
6701
- #: languages/vue.php:1177
6702
  msgid "Track all-new metrics!"
6703
  msgstr ""
6704
 
6705
- #: languages/vue.php:1180
6706
  msgid "Get stats WooCommerce doesn’t give you like: Conversion Sources, Avg. Order Value, Revenue per Source, Total Add to Carts & More!"
6707
  msgstr ""
6708
 
6709
- #: languages/vue.php:1183
6710
  msgid "FEATURES"
6711
  msgstr ""
6712
 
6713
- #: languages/vue.php:1186
6714
  msgid "Get The Unique Metrics Neccessary for Growth"
6715
  msgstr ""
6716
 
6717
- #: languages/vue.php:1189
6718
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, %1$srevenue, and average order value, and more."
6719
  msgstr ""
6720
 
6721
- #: languages/vue.php:1192
6722
  msgid "Get Answers to the important questions %1$syou should know."
6723
  msgstr ""
6724
 
6725
- #: languages/vue.php:1195
6726
  msgid "Did the login/registration step of the checkout put users off?"
6727
  msgstr ""
6728
 
6729
- #: languages/vue.php:1198
6730
  msgid "Which ad campaign is driving the most revenue?"
6731
  msgstr ""
6732
 
6733
- #: languages/vue.php:1201
6734
  msgid "Who is my typical customer?"
6735
  msgstr ""
6736
 
6737
- #: languages/vue.php:1204
6738
  msgid "Level-up Your eCommerce store with %1$sExactMetrics + WooCommerce!%1$s"
6739
  msgstr ""
6740
 
6741
  #. Translators: Error status and error text.
6742
- #: languages/vue.php:1208
6743
  msgid "Can't deactivate the license. Error: %1$s, %2$s"
6744
  msgstr ""
6745
 
6746
  #. Translators: Error status and error text.
6747
- #: languages/vue.php:1212
6748
  msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
6749
  msgstr ""
6750
 
6751
  #. Translators: Error status and error text.
6752
- #: languages/vue.php:1216
6753
  msgid "Can't load license details. Error: %1$s, %2$s"
6754
  msgstr ""
6755
 
6756
- #: languages/vue.php:1219
6757
  msgid "Error loading license details"
6758
  msgstr ""
6759
 
6760
  #. Translators: Error status and error text.
6761
- #: languages/vue.php:1223
6762
  msgid "Can't verify the license. Error: %1$s, %2$s"
6763
  msgstr ""
6764
 
6765
  #. Translators: Error status and error text.
6766
- #: languages/vue.php:1227
6767
  msgid "Can't validate the license. Error: %1$s, %2$s"
6768
  msgstr ""
6769
 
6770
- #: languages/vue.php:1230
6771
  msgid "Reset to default"
6772
  msgstr ""
6773
 
6774
- #: languages/vue.php:1233
6775
  msgid "The value entered does not match the required format"
6776
  msgstr ""
6777
 
6778
- #: languages/vue.php:1236
6779
  msgid "Check out the newly added classic mode"
6780
  msgstr ""
6781
 
6782
  #. Translators: Placeholder adds a line break.
6783
- #: languages/vue.php:1240
6784
  msgid "You can customize your %sdate range only in the PRO version."
6785
  msgstr ""
6786
 
6787
- #: languages/vue.php:1243
6788
  msgid "Help Us Improve"
6789
  msgstr ""
6790
 
6791
- #: languages/vue.php:1246
6792
  msgid "Help us better understand our users and their website needs."
6793
  msgstr ""
6794
 
6795
  #. Translators: Adds a link to the documentation.
6796
- #: languages/vue.php:1250
6797
  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"
6798
  msgstr ""
6799
 
6800
  #. Translators: The name of the field that is throwing a validation error.
6801
- #: languages/vue.php:1254
6802
  msgid "%s can't be empty."
6803
  msgstr ""
6804
 
6805
- #: languages/vue.php:1257
6806
  msgid "Duplicate values are not allowed."
6807
  msgstr ""
6808
 
6809
- #: languages/vue.php:1260
6810
  msgid "You can add maximum 5 items."
6811
  msgstr ""
6812
 
6813
- #: languages/vue.php:1263
6814
  msgid "At least 0 item required."
6815
  msgstr ""
6816
 
6817
- #: languages/vue.php:1266
6818
  msgid "Add Another Link Path"
6819
  msgstr ""
6820
 
6821
- #: languages/vue.php:1269
6822
  msgid "Remove row"
6823
  msgstr ""
6824
 
6825
- #: languages/vue.php:1273
6826
  msgid "Sessions"
6827
  msgstr ""
6828
 
6829
  #. Translators: Line break.
6830
- #: languages/vue.php:1277
6831
  msgid "Unique %s Sessions"
6832
  msgstr ""
6833
 
6834
- #: languages/vue.php:1281
6835
  msgid "Pageviews"
6836
  msgstr ""
6837
 
6838
  #. Translators: Line break.
6839
- #: languages/vue.php:1285
6840
  msgid "Unique %s Pageviews"
6841
  msgstr ""
6842
 
6843
- #: languages/vue.php:1289
6844
  msgid "A session is the browsing session of a single user to your site."
6845
  msgstr ""
6846
 
6847
- #: languages/vue.php:1293
6848
  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."
6849
  msgstr ""
6850
 
6851
- #: languages/vue.php:1297
6852
  msgid "Total duration of all sessions (in seconds) / number of sessions."
6853
  msgstr ""
6854
 
6855
- #: languages/vue.php:1300
6856
  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."
6857
  msgstr ""
6858
 
6859
- #: languages/vue.php:1304
6860
  msgid "The number of distinct tracked users"
6861
  msgstr ""
6862
 
6863
- #: languages/vue.php:1308
6864
  msgid "Avg. Session Duration"
6865
  msgstr ""
6866
 
6867
- #: languages/vue.php:1316
6868
  msgid "Total Users"
6869
  msgstr ""
6870
 
6871
- #: languages/vue.php:1319
6872
  msgid "No options available"
6873
  msgstr ""
6874
 
6875
  #. Translators: Placeholders make the text highlighted.
6876
- #: languages/vue.php:1323
6877
  msgid "%1$sNeed%2$s to Grow FASTER??"
6878
  msgstr ""
6879
 
6880
- #: languages/vue.php:1326
6881
  msgid "Get additional, actionable insights by going Pro."
6882
  msgstr ""
6883
 
6884
- #: languages/vue.php:1329
6885
  msgid "Skip"
6886
  msgstr ""
6887
 
6888
- #: languages/vue.php:1332
6889
  msgid "See All Features"
6890
  msgstr ""
6891
 
6892
- #: languages/vue.php:1335
6893
  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."
6894
  msgstr ""
6895
 
6896
- #: languages/vue.php:1338
6897
  msgid "Our Pro plan includes:"
6898
  msgstr ""
6899
 
6900
  #. Translators: Error status and error text.
6901
- #: languages/vue.php:1342
6902
  msgid "Can't load errors. Error: %1$s, %2$s"
6903
  msgstr ""
6904
 
6905
- #: languages/vue.php:1345
6906
  msgid "Real-Time Report"
6907
  msgstr ""
6908
 
6909
- #: languages/vue.php:1348
6910
  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."
6911
  msgstr ""
6912
 
6913
  #. Translators: add link to blog.
6914
- #: languages/vue.php:1352
6915
  msgid "To comply with Google's API policies we've had to remove the real time report from the lite version. You can read about this decision and why it was made in %1$sthis blog post%2$s. To access the real time report in the WordPress backend, you will need to upgrade to Pro."
6916
  msgstr ""
6917
 
6918
- #: languages/vue.php:1355
6919
  msgid "Here's what you get:"
6920
  msgstr ""
6921
 
6922
- #: languages/vue.php:1358
6923
  msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
6924
  msgstr ""
6925
 
6926
- #: languages/vue.php:1361
6927
  msgid "See Your Top Pages Immediately After Making Changes"
6928
  msgstr ""
6929
 
6930
- #: languages/vue.php:1364
6931
  msgid "See Your Top Referral Sources and Adapt Faster"
6932
  msgstr ""
6933
 
6934
- #: languages/vue.php:1367
6935
  msgid "See Your Traffic Demographics"
6936
  msgstr ""
6937
 
6938
- #: languages/vue.php:1370
6939
  msgid "Get Fresh Report Data Every 60 Seconds"
6940
  msgstr ""
6941
 
6942
- #: languages/vue.php:1373
6943
  msgid "See Where Your Visitors are Connecting From (country & city)"
6944
  msgstr ""
6945
 
6946
- #: languages/vue.php:1376
6947
  msgid "Forms Report"
6948
  msgstr ""
6949
 
6950
- #: languages/vue.php:1379
6951
  msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
6952
  msgstr ""
6953
 
6954
- #: languages/vue.php:1382
6955
  msgid "See Your Top Converting Forms and Optimize"
6956
  msgstr ""
6957
 
6958
- #: languages/vue.php:1385
6959
  msgid "See Your Forms Impressions Count to Find the Best Placement"
6960
  msgstr ""
6961
 
6962
- #: languages/vue.php:1388
6963
  msgid "Awesome, You're All Set!"
6964
  msgstr ""
6965
 
6966
- #: languages/vue.php:1391
6967
  msgid "ExactMetrics is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
6968
  msgstr ""
6969
 
6970
  #. Translators: Make text bold.
6971
- #: languages/vue.php:1395
6972
  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."
6973
  msgstr ""
6974
 
6975
  #. Translators: Add link to blog.
6976
  #. Translators: Link to our blog.
6977
- #: languages/vue.php:1399
6978
- #: languages/vue.php:3605
6979
  msgid "%1$sSubscribe to the ExactMetrics blog%2$s for tips on how to get more traffic and grow your business."
6980
  msgstr ""
6981
 
6982
- #: languages/vue.php:1402
6983
  msgid "Finish Setup & Exit Wizard"
6984
  msgstr ""
6985
 
6986
- #: languages/vue.php:1405
6987
  msgid "Google Analytics"
6988
  msgstr ""
6989
 
6990
- #: languages/vue.php:1408
6991
  msgid "Subscribe"
6992
  msgstr ""
6993
 
6994
- #: languages/vue.php:1411
6995
  msgid "Checking your website..."
6996
  msgstr ""
6997
 
6998
- #: languages/vue.php:1414
6999
  msgid "Recommended Addons"
7000
  msgstr ""
7001
 
7002
  #. Translators: Add a link to upgrade and make the text green.
7003
- #: languages/vue.php:1418
7004
  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!"
7005
  msgstr ""
7006
 
7007
- #: languages/vue.php:1421
7008
  msgid "Upgrade to PRO Now"
7009
  msgstr ""
7010
 
7011
- #: languages/vue.php:1424
7012
  msgid "See who’s viewing and submitting your forms, so you can increase your conversion rate."
7013
  msgstr ""
7014
 
7015
- #: languages/vue.php:1427
7016
  msgid "See All Your Important Store Metrics in One Place."
7017
  msgstr ""
7018
 
7019
- #: languages/vue.php:1430
7020
  msgid "... and more:"
7021
  msgstr ""
7022
 
7023
- #: languages/vue.php:1433
7024
  msgid "Dimensions- Track authors, categories, trags, searches, users and more."
7025
  msgstr ""
7026
 
7027
- #: languages/vue.php:1436
7028
  msgid "EU Compliance- Improve compliance with GDPR and other privacy regulations."
7029
  msgstr ""
7030
 
7031
- #: languages/vue.php:1439
7032
  msgid "AMP- ExactMetrics Google AMP Addon enables accurate tracking of all mobile visitors to your AMP-enabled pages."
7033
  msgstr ""
7034
 
7035
- #: languages/vue.php:1442
7036
  msgid "Facebook Instant Articles- Integrate Google Analytics and Facebook Instant Articles with just one click."
7037
  msgstr ""
7038
 
7039
- #: languages/vue.php:1445
7040
  msgid "eCommerce- Sales tracking for your WooCommerce, Easy Digital Downloads, LifterLMS or MemberPress stores."
7041
  msgstr ""
7042
 
7043
- #: languages/vue.php:1448
7044
  msgid "Google Optimize- Easily enable Google Optimize on your WordPress site."
7045
  msgstr ""
7046
 
7047
- #: languages/vue.php:1451
7048
  msgid "Forms- Enable tracking of your form views, submissions and conversion rates."
7049
  msgstr ""
7050
 
7051
- #: languages/vue.php:1454
7052
  msgid "Ads- See who’s clicking on your Google Adsense banner ads."
7053
  msgstr ""
7054
 
7055
- #: languages/vue.php:1457
7056
  msgid "Hello and Welcome to ExactMetrics, the Best Google Analytics Plugin for WordPress."
7057
  msgstr ""
7058
 
7059
- #: languages/vue.php:1460
7060
  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."
7061
  msgstr ""
7062
 
7063
- #: languages/vue.php:1463
7064
  msgid "The ExactMetrics Team"
7065
  msgstr ""
7066
 
7067
- #: languages/vue.php:1466
7068
  msgid "Custom Dimensions Report"
7069
  msgstr ""
7070
 
7071
- #: languages/vue.php:1469
7072
  msgid "Unlock the Dimensions Report and decide what data is important using your own custom tracking parameters"
7073
  msgstr ""
7074
 
7075
- #: languages/vue.php:1472
7076
  msgid "The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
7077
  msgstr ""
7078
 
7079
- #: languages/vue.php:1475
7080
  msgid "Author tracking to see which author’s posts generate the most traffic"
7081
  msgstr ""
7082
 
7083
- #: languages/vue.php:1478
7084
  msgid "Post Type tracking to see which WordPress post types perform better"
7085
  msgstr ""
7086
 
7087
- #: languages/vue.php:1481
7088
  msgid "Category tracking to see which sections of your sites are the most popular"
7089
  msgstr ""
7090
 
7091
- #: languages/vue.php:1484
7092
  msgid "SEO score tracking to see which blog SEO scores are the most popular"
7093
  msgstr ""
7094
 
7095
- #: languages/vue.php:1487
7096
  msgid "Focus Keyword tracking to see which of your content is doing well in search engines."
7097
  msgstr ""
7098
 
7099
- #: languages/vue.php:1490
7100
  msgid "Tag tracking to determine which topics are the most engaging to for your website visitors."
7101
  msgstr ""
7102
 
7103
  #. Translators: add link to blog.
7104
- #: languages/vue.php:1494
7105
  msgid "One of the factors that help deliver an outstanding user experience is having a website that loads quickly. With the Site Speed report you'll be able to check your site's performance directly from your ExactMetrics dashboard."
7106
  msgstr ""
7107
 
7108
- #: languages/vue.php:1497
7109
  msgid "See Your Homepage's Overall Performance Score"
7110
  msgstr ""
7111
 
7112
- #: languages/vue.php:1500
7113
  msgid "Run an Audit on Your Homepage and See Your Server Response Time"
7114
  msgstr ""
7115
 
7116
- #: languages/vue.php:1503
7117
  msgid "Learn How Long It Takes for Your Viewers to Interact With Your Site"
7118
  msgstr ""
7119
 
7120
- #: languages/vue.php:1506
7121
  msgid "Learn How to Improve the Core Metrics that Google Uses to Rank Your Site"
7122
  msgstr ""
7123
 
7124
- #: languages/vue.php:1509
7125
  msgid "Hide dashboard widget"
7126
  msgstr ""
7127
 
7128
- #: languages/vue.php:1512
7129
  msgid "Are you sure you want to hide the ExactMetrics Dashboard Widget? "
7130
  msgstr ""
7131
 
7132
- #: languages/vue.php:1515
7133
  msgid "Yes, hide it!"
7134
  msgstr ""
7135
 
7136
- #: languages/vue.php:1518
7137
  msgid "No, cancel!"
7138
  msgstr ""
7139
 
7140
- #: languages/vue.php:1521
7141
  msgid "ExactMetrics Widget Hidden"
7142
  msgstr ""
7143
 
7144
- #: languages/vue.php:1524
7145
  msgid "You can re-enable the ExactMetrics widget at any time using the \"Screen Options\" menu on the top right of this page"
7146
  msgstr ""
7147
 
7148
  #. Translators: Error status and error text.
7149
- #: languages/vue.php:1528
7150
  msgid "Can't deauthenticate. Error: %1$s, %2$s"
7151
  msgstr ""
7152
 
7153
  #. Translators: Error status and error text.
7154
- #: languages/vue.php:1532
7155
  msgid "Can't load authentication details. Error: %1$s, %2$s"
7156
  msgstr ""
7157
 
7158
- #: languages/vue.php:1535
7159
  msgid "You appear to be offline. Settings not saved."
7160
  msgstr ""
7161
 
7162
  #. Translators: Error status and error text.
7163
- #: languages/vue.php:1539
7164
  msgid "Can't authenticate. Error: %1$s, %2$s"
7165
  msgstr ""
7166
 
7167
  #. Translators: Error status and error text.
7168
- #: languages/vue.php:1543
7169
  msgid "Can't reauthenticate. Error: %1$s, %2$s"
7170
  msgstr ""
7171
 
7172
  #. Translators: Error status and error text.
7173
- #: languages/vue.php:1547
7174
  msgid "Can't verify credentials. Error: %1$s, %2$s"
7175
  msgstr ""
7176
 
7177
- #: languages/vue.php:1550
7178
  msgid "Still Calculating..."
7179
  msgstr ""
7180
 
7181
- #: languages/vue.php:1553
7182
  msgid "Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year."
7183
  msgstr ""
7184
 
7185
- #: languages/vue.php:1556
7186
  msgid "Back to Overview Report"
7187
  msgstr ""
7188
 
7189
- #: languages/vue.php:1559
7190
  msgid "Your 2020 Analytics Report"
7191
  msgstr ""
7192
 
7193
- #: languages/vue.php:1562
7194
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2021!"
7195
  msgstr ""
7196
 
7197
- #: languages/vue.php:1565
7198
  msgid "Audience"
7199
  msgstr ""
7200
 
7201
- #: languages/vue.php:1568
7202
  msgid "Congrats"
7203
  msgstr ""
7204
 
7205
- #: languages/vue.php:1571
7206
  msgid "Your website was quite popular this year! "
7207
  msgstr ""
7208
 
7209
- #: languages/vue.php:1574
7210
  msgid "You had "
7211
  msgstr ""
7212
 
7213
- #: languages/vue.php:1577
7214
  msgid " visitors!"
7215
  msgstr ""
7216
 
7217
- #: languages/vue.php:1580
7218
  msgid " visitors"
7219
  msgstr ""
7220
 
7221
- #: languages/vue.php:1583
7222
  msgid "Total Visitors"
7223
  msgstr ""
7224
 
7225
- #: languages/vue.php:1586
7226
  msgid "Total Sessions"
7227
  msgstr ""
7228
 
7229
- #: languages/vue.php:1589
7230
  msgid "Visitors by Month"
7231
  msgstr ""
7232
 
7233
- #: languages/vue.php:1592
7234
  msgid "January 1, 2020 - December 31, 2020"
7235
  msgstr ""
7236
 
7237
- #: languages/vue.php:1595
7238
  msgid "A Tip for 2021"
7239
  msgstr ""
7240
 
7241
- #: languages/vue.php:1598
7242
  msgid "Demographics"
7243
  msgstr ""
7244
 
7245
- #: languages/vue.php:1601
7246
  msgid "#1"
7247
  msgstr ""
7248
 
7249
- #: languages/vue.php:1604
7250
  msgid "You Top 5 Countries"
7251
  msgstr ""
7252
 
7253
- #: languages/vue.php:1607
7254
  msgid "Let’s get to know your visitors a little better, shall we?"
7255
  msgstr ""
7256
 
7257
- #: languages/vue.php:1610
7258
  msgid "Gender"
7259
  msgstr ""
7260
 
7261
- #: languages/vue.php:1613
7262
  msgid "Female"
7263
  msgstr ""
7264
 
7265
- #: languages/vue.php:1616
7266
  msgid "Women"
7267
  msgstr ""
7268
 
7269
- #: languages/vue.php:1619
7270
  msgid "Male"
7271
  msgstr ""
7272
 
7273
- #: languages/vue.php:1622
7274
  msgid "Average Age"
7275
  msgstr ""
7276
 
7277
- #: languages/vue.php:1625
7278
  msgid "Behavior"
7279
  msgstr ""
7280
 
7281
- #: languages/vue.php:1628
7282
  msgid "Your Top 5 Pages"
7283
  msgstr ""
7284
 
7285
- #: languages/vue.php:1631
7286
  msgid "Time Spent on Site"
7287
  msgstr ""
7288
 
7289
- #: languages/vue.php:1634
7290
  msgid "minutes"
7291
  msgstr ""
7292
 
7293
- #: languages/vue.php:1637
7294
  msgid "Device Type"
7295
  msgstr ""
7296
 
7297
- #: languages/vue.php:1640
7298
  msgid "A Tip For 2021"
7299
  msgstr ""
7300
 
7301
- #: languages/vue.php:1643
7302
  msgid "Are you looking for a way to track your landing pages and see which one gets the most conversions on your website?"
7303
  msgstr ""
7304
 
7305
- #: languages/vue.php:1646
7306
  msgid "Read - How to Track Google Analytics Landing Page Conversions"
7307
  msgstr ""
7308
 
7309
- #: languages/vue.php:1649
7310
  msgid "So, where did all of these visitors come from?"
7311
  msgstr ""
7312
 
7313
- #: languages/vue.php:1652
7314
  msgid "Clicks"
7315
  msgstr ""
7316
 
7317
- #: languages/vue.php:1655
7318
  msgid "Your Top 5 Keywords"
7319
  msgstr ""
7320
 
7321
- #: languages/vue.php:1658
7322
  msgid "What keywords visitors searched for to find your site"
7323
  msgstr ""
7324
 
7325
- #: languages/vue.php:1661
7326
  msgid "Your Top 5 Referrals"
7327
  msgstr ""
7328
 
7329
- #: languages/vue.php:1664
7330
  msgid "The websites that link back to your website"
7331
  msgstr ""
7332
 
7333
- #: languages/vue.php:1667
7334
  msgid "Opportunity"
7335
  msgstr ""
7336
 
7337
- #: languages/vue.php:1670
7338
  msgid "Learn how to boost your SEO rankings using ExactMetrics so more visitors reach your articles and increase engagement."
7339
  msgstr ""
7340
 
7341
- #: languages/vue.php:1673
7342
  msgid "Read - 5 Ways to Skyrocket Your SEO Rankings with Google Analytics"
7343
  msgstr ""
7344
 
7345
- #: languages/vue.php:1676
7346
  msgid "Thank you for using ExactMetrics!"
7347
  msgstr ""
7348
 
7349
- #: languages/vue.php:1679
7350
  msgid "We’re grateful for your continued support. If there’s anything we can do to help you grow your business, please don’t hesitate to contact our team."
7351
  msgstr ""
7352
 
7353
- #: languages/vue.php:1682
7354
  msgid "Here's to an amazing 2021!"
7355
  msgstr ""
7356
 
7357
- #: languages/vue.php:1685
7358
  msgid "Enjoying ExactMetrics"
7359
  msgstr ""
7360
 
7361
- #: languages/vue.php:1688
7362
  msgid "Leave a five star review!"
7363
  msgstr ""
7364
 
7365
- #: languages/vue.php:1691
7366
  msgid "Syed Balkhi"
7367
  msgstr ""
7368
 
7369
- #: languages/vue.php:1694
7370
  msgid "Chris Christoff"
7371
  msgstr ""
7372
 
7373
- #: languages/vue.php:1697
7374
  msgid "Write Review"
7375
  msgstr ""
7376
 
7377
- #: languages/vue.php:1700
7378
  msgid "Did you know over 10 million websites use our plugins?"
7379
  msgstr ""
7380
 
7381
- #: languages/vue.php:1703
7382
  msgid "Try our other popular WordPress plugins to grow your website in 2021."
7383
  msgstr ""
7384
 
7385
- #: languages/vue.php:1706
7386
  msgid "Join our Communities!"
7387
  msgstr ""
7388
 
7389
- #: languages/vue.php:1709
7390
  msgid "Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level."
7391
  msgstr ""
7392
 
7393
- #: languages/vue.php:1712
7394
  msgid "Facebook Group"
7395
  msgstr ""
7396
 
7397
- #: languages/vue.php:1715
7398
  msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
7399
  msgstr ""
7400
 
7401
- #: languages/vue.php:1718
7402
  msgid "Join Now...It’s Free!"
7403
  msgstr ""
7404
 
7405
- #: languages/vue.php:1721
7406
  msgid "WordPress Tutorials by WPBeginner"
7407
  msgstr ""
7408
 
7409
- #: languages/vue.php:1724
7410
  msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
7411
  msgstr ""
7412
 
7413
- #: languages/vue.php:1727
7414
  msgid "Visit WPBeginner"
7415
  msgstr ""
7416
 
7417
- #: languages/vue.php:1730
7418
  msgid "Follow Us!"
7419
  msgstr ""
7420
 
7421
- #: languages/vue.php:1733
7422
  msgid "Follow ExactMetrics on social media to stay up to date with latest updates, trends, and tutorials on how to make the most out of analytics."
7423
  msgstr ""
7424
 
7425
- #: languages/vue.php:1736
7426
  msgid "Copyright ExactMetrics, 2021"
7427
  msgstr ""
7428
 
7429
- #: languages/vue.php:1739
7430
  msgid "Upgrade to ExactMetrics Pro to Unlock Additional Actionable Insights"
7431
  msgstr ""
7432
 
7433
- #: languages/vue.php:1745
7434
  msgid "January"
7435
  msgstr ""
7436
 
7437
- #: languages/vue.php:1748
7438
  msgid "February"
7439
  msgstr ""
7440
 
7441
- #: languages/vue.php:1751
7442
  msgid "March"
7443
  msgstr ""
7444
 
7445
- #: languages/vue.php:1754
7446
  msgid "April"
7447
  msgstr ""
7448
 
7449
- #: languages/vue.php:1757
7450
  msgid "May"
7451
  msgstr ""
7452
 
7453
- #: languages/vue.php:1760
7454
  msgid "June"
7455
  msgstr ""
7456
 
7457
- #: languages/vue.php:1763
7458
  msgid "July"
7459
  msgstr ""
7460
 
7461
- #: languages/vue.php:1766
7462
  msgid "August"
7463
  msgstr ""
7464
 
7465
- #: languages/vue.php:1769
7466
  msgid "September"
7467
  msgstr ""
7468
 
7469
- #: languages/vue.php:1772
7470
  msgid "October"
7471
  msgstr ""
7472
 
7473
- #: languages/vue.php:1775
7474
  msgid "November"
7475
  msgstr ""
7476
 
7477
- #: languages/vue.php:1778
7478
  msgid "December"
7479
  msgstr ""
7480
 
7481
  #. Translators: Number of visitors.
7482
- #: languages/vue.php:1782
7483
  msgid "Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>"
7484
  msgstr ""
7485
 
7486
- #: languages/vue.php:1785
7487
  msgid "See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success."
7488
  msgstr ""
7489
 
7490
  #. Translators: Number of visitors.
7491
- #: languages/vue.php:1789
7492
  msgid "Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries."
7493
  msgstr ""
7494
 
7495
  #. Translators: Number of visitors.
7496
- #: languages/vue.php:1793
7497
  msgid "%s Visitors"
7498
  msgstr ""
7499
 
7500
  #. Translators: Percent and Number of visitors.
7501
- #: languages/vue.php:1797
7502
  msgid "%1$s&#37 of your visitors were %2$s"
7503
  msgstr ""
7504
 
7505
  #. Translators: Number of visitors and their age.
7506
- #: languages/vue.php:1801
7507
  msgid "%1$s&#37 of your visitors were between the ages of %2$s"
7508
  msgstr ""
7509
 
7510
- #: languages/vue.php:1804
7511
  msgid "Your <strong>%1$s</strong> visitors viewed a total of <strong>%2$s</strong> pages. <span class='average-page-per-user' style='font-size: 20px;margin-top:25px;display:block;font-family:Lato'>That's an average of %3$s pages for each visitor!</span>"
7512
  msgstr ""
7513
 
7514
  #. Translators: Number of minutes spent on site.
7515
- #: languages/vue.php:1808
7516
  msgid "Each visitor spent an average of %s minutes on your website in 2020."
7517
  msgstr ""
7518
 
7519
  #. Translators: Name of device type.
7520
- #: languages/vue.php:1812
7521
  msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
7522
  msgstr ""
7523
 
7524
  #. Translators: Number of visitors and device percentage.
7525
- #: languages/vue.php:1816
7526
  msgid "%1$s&#37 of your visitors were on a %2$s device."
7527
  msgstr ""
7528
 
7529
- #: languages/vue.php:1819
7530
  msgid "Desktop"
7531
  msgstr ""
7532
 
7533
- #: languages/vue.php:1822
7534
  msgid "Tablet"
7535
  msgstr ""
7536
 
7537
- #: languages/vue.php:1825
7538
  msgid "Mobile"
7539
  msgstr ""
7540
 
7541
- #: languages/vue.php:1828
7542
  msgid "Force Deauthenticate"
7543
  msgstr ""
7544
 
7545
- #: languages/vue.php:1831
7546
  msgid "Disconnect ExactMetrics"
7547
  msgstr ""
7548
 
7549
- #: languages/vue.php:1834
7550
  msgid "Authenticating"
7551
  msgstr ""
7552
 
7553
- #: languages/vue.php:1837
7554
  msgid "Verifying Credentials"
7555
  msgstr ""
7556
 
7557
- #: languages/vue.php:1840
7558
  msgid "Your site is connected to ExactMetrics!"
7559
  msgstr ""
7560
 
7561
- #: languages/vue.php:1843
7562
  msgid "Deauthenticating"
7563
  msgstr ""
7564
 
7565
- #: languages/vue.php:1846
7566
  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."
7567
  msgstr ""
7568
 
7569
- #: languages/vue.php:1849
7570
- #: languages/vue.php:1921
7571
  msgid "Connect ExactMetrics"
7572
  msgstr ""
7573
 
7574
- #: languages/vue.php:1852
7575
  msgid "Verify Credentials"
7576
  msgstr ""
7577
 
7578
- #: languages/vue.php:1858
7579
  msgid "Website Profile"
7580
  msgstr ""
7581
 
7582
- #: languages/vue.php:1861
7583
  msgid "Active Profile"
7584
  msgstr ""
7585
 
7586
- #: languages/vue.php:1864
7587
  msgid "Your website profile has been set at the network level of your WordPress Multisite."
7588
  msgstr ""
7589
 
7590
- #: languages/vue.php:1867
7591
  msgid "If you would like to use a different profile for this subsite, you can authenticate below."
7592
  msgstr ""
7593
 
7594
- #: languages/vue.php:1870
7595
  msgid "Dual Tracking Profile"
7596
  msgstr ""
7597
 
7598
- #: languages/vue.php:1873
7599
  msgid "The dual tracking feature allows you to continue tracking this site into an existing GAv3 property so you can continue to use the GA reports you are used to already. Learn more about this feature %1$shere%2$s."
7600
  msgstr ""
7601
 
7602
- #: languages/vue.php:1876
7603
  msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers."
7604
  msgstr ""
7605
 
7606
- #: languages/vue.php:1879
7607
  msgid "The dual tracking feature allows you to begin tracking this site into a GAv4 property to take advantage of the new GAv4 analysis tools. Learn more about this feature %1$shere%2$s."
7608
  msgstr ""
7609
 
7610
- #: languages/vue.php:1882
7611
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
7612
  msgstr ""
7613
 
7614
- #: languages/vue.php:1885
7615
  msgid "Measurement Protocol API Secret"
7616
  msgstr ""
7617
 
7618
- #: languages/vue.php:1888
7619
  msgid "The Measurement Protocol API secret allows your site to send tracking data to Google Analytics. To retrieve your Measurement Protocol API Secret, follow %1$sthis guide%2$s."
7620
  msgstr ""
7621
 
7622
- #: languages/vue.php:1891
7623
  msgid "Classic mode"
7624
  msgstr ""
7625
 
7626
- #: languages/vue.php:1894
7627
  msgid "Proceed"
7628
  msgstr ""
7629
 
7630
- #: languages/vue.php:1897
7631
  msgid "Connection Information"
7632
  msgstr ""
7633
 
7634
- #: languages/vue.php:1900
7635
  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."
7636
  msgstr ""
7637
 
7638
- #: languages/vue.php:1903
7639
  msgid "Hostname"
7640
  msgstr ""
7641
 
7642
- #: languages/vue.php:1906
7643
  msgid "FTP Username"
7644
  msgstr ""
7645
 
7646
- #: languages/vue.php:1909
7647
  msgid "FTP Password"
7648
  msgstr ""
7649
 
7650
- #: languages/vue.php:1912
7651
  msgid "This password will not be stored on the server."
7652
  msgstr ""
7653
 
7654
- #: languages/vue.php:1915
7655
  msgid "Connection Type"
7656
  msgstr ""
7657
 
7658
- #: languages/vue.php:1918
7659
  msgid "Cancel"
7660
  msgstr ""
7661
 
7662
- #: languages/vue.php:1924
7663
  msgid "Website profile"
7664
  msgstr ""
7665
 
7666
- #: languages/vue.php:1927
7667
  msgid "Active profile"
7668
  msgstr ""
7669
 
7670
- #: languages/vue.php:1930
7671
  msgid "Skip and Keep Connection"
7672
  msgstr ""
7673
 
7674
  #. Translators: Replaced with the number of days
7675
- #: languages/vue.php:1934
7676
  msgid "vs. Previous Day"
7677
  msgstr ""
7678
 
7679
- #: languages/vue.php:1937
7680
  msgid "No change"
7681
  msgstr ""
7682
 
7683
- #: languages/vue.php:1940
7684
  msgid "Choose Theme"
7685
  msgstr ""
7686
 
7687
- #: languages/vue.php:1943
7688
  msgid "Widget Styling"
7689
  msgstr ""
7690
 
7691
- #: languages/vue.php:1946
7692
  msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
7693
  msgstr ""
7694
 
7695
- #: languages/vue.php:1949
7696
  msgid "Sort By"
7697
  msgstr ""
7698
 
7699
- #: languages/vue.php:1952
7700
  msgid "Choose how you'd like the widget to determine your popular posts."
7701
  msgstr ""
7702
 
7703
- #: languages/vue.php:1955
7704
  msgid "Display Title"
7705
  msgstr ""
7706
 
7707
- #: languages/vue.php:1961
7708
  msgid "Title your widget and set its display preferences."
7709
  msgstr ""
7710
 
7711
- #: languages/vue.php:1964
7712
  msgid "Include in Post Types"
7713
  msgstr ""
7714
 
7715
- #: languages/vue.php:1967
7716
  msgid "Exclude from specific posts"
7717
  msgstr ""
7718
 
7719
  #. Translators: Placeholders make the text bold.
7720
- #: languages/vue.php:1971
7721
  msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
7722
  msgstr ""
7723
 
7724
  #. Translators: Placeholders make the text bold.
7725
- #: languages/vue.php:1975
7726
  msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
7727
  msgstr ""
7728
 
7729
- #: languages/vue.php:1978
7730
  msgid "Loading Themes"
7731
  msgstr ""
7732
 
7733
  #. Translators: placeholders make text small.
7734
- #: languages/vue.php:1982
7735
  msgid "Default Styles %1$s- As seen above.%2$s"
7736
  msgstr ""
7737
 
7738
  #. Translators: placeholders make text small.
7739
- #: languages/vue.php:1986
7740
  msgid "No Styles %1$s- Use your own CSS.%2$s"
7741
  msgstr ""
7742
 
7743
  #. Translators: placeholders make text small.
7744
- #: languages/vue.php:1990
7745
  msgid "Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s"
7746
  msgstr ""
7747
 
7748
  #. Translators: placeholders make text small.
7749
- #: languages/vue.php:1994
7750
  msgid "SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s"
7751
  msgstr ""
7752
 
7753
  #. Translators: placeholders make text small.
7754
- #: languages/vue.php:1998
7755
  msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
7756
  msgstr ""
7757
 
7758
- #: languages/vue.php:2001
7759
  msgid "Placement"
7760
  msgstr ""
7761
 
7762
- #: languages/vue.php:2004
7763
  msgid "Choose how you'd like to place the widget."
7764
  msgstr ""
7765
 
7766
- #: languages/vue.php:2007
7767
  msgid "Insert After"
7768
  msgstr ""
7769
 
7770
- #: languages/vue.php:2010
7771
  msgid "Choose where in the post body the widget will be placed."
7772
  msgstr ""
7773
 
@@ -7951,45 +7951,45 @@ msgstr ""
7951
  msgid "Unlock PRO Features Now"
7952
  msgstr ""
7953
 
7954
- #: languages/vue.php:2151
7955
  msgid "Paste your license key here"
7956
  msgstr ""
7957
 
7958
- #: languages/vue.php:2154
7959
  msgid "Verify"
7960
  msgstr ""
7961
 
7962
  #. Translators: Add link to retrieve license from account area.
7963
- #: languages/vue.php:2158
7964
  msgid "Already purchased? Simply enter your license key below to connect with ExactMetrics PRO! %1$sRetrieve your license key%2$s."
7965
  msgstr ""
7966
 
7967
- #: languages/vue.php:2161
7968
- #: languages/vue.php:3642
7969
  msgid "There was an error unlocking ExactMetrics PRO please try again or install manually."
7970
  msgstr ""
7971
 
7972
- #: languages/vue.php:2164
7973
  msgid "%1$sAll-in-One SEO%2$s Makes SEO Simple. Gain Valuable Organic Traffic."
7974
  msgstr ""
7975
 
7976
- #: languages/vue.php:2167
7977
  msgid "Automatically migrate all of your SEO settings with just 1 click!"
7978
  msgstr ""
7979
 
7980
- #: languages/vue.php:2171
7981
  msgid "1,938"
7982
  msgstr ""
7983
 
7984
- #: languages/vue.php:2175
7985
  msgid "2+ Million Active Installs"
7986
  msgstr ""
7987
 
7988
- #: languages/vue.php:2178
7989
  msgid "AIOSEO is the DIY Solution for Managing your SEO"
7990
  msgstr ""
7991
 
7992
- #: languages/vue.php:2181
7993
  msgid "Set up the proper SEO foundations in less than 10 minutes."
7994
  msgstr ""
7995
 
@@ -7997,2444 +7997,2525 @@ msgstr ""
7997
  msgid "SEO Audit Checklist"
7998
  msgstr ""
7999
 
8000
- #: languages/vue.php:2189
8001
  msgid "Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic."
8002
  msgstr ""
8003
 
8004
- #: languages/vue.php:2192
8005
  msgid "Optimize Your Pages For Higher Rankings With TruSEO Score."
8006
  msgstr ""
8007
 
8008
- #: languages/vue.php:2195
8009
  msgid "TruSEO Score gives you a more in-depth analysis into your optimization efforts than just a pass or fail. Our actionable checklist helps you to unlock maximum traffic with each page."
8010
  msgstr ""
8011
 
8012
- #: languages/vue.php:2198
8013
  msgid "Get AIOSEO for WordPress"
8014
  msgstr ""
8015
 
8016
- #: languages/vue.php:2202
8017
  msgid "Get the #1 Most Powerful WordPress SEO Plugin Today"
8018
  msgstr ""
8019
 
8020
- #: languages/vue.php:2206
8021
  msgid "Try it out today, for free."
8022
  msgstr ""
8023
 
8024
- #: languages/vue.php:2210
8025
  msgid "Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings."
8026
  msgstr ""
8027
 
8028
- #: languages/vue.php:2214
8029
  msgid "Activate and Install the Plugin with just one click!"
8030
  msgstr ""
8031
 
8032
- #: languages/vue.php:2217
8033
  msgid "Installing AIOSEO..."
8034
  msgstr ""
8035
 
8036
- #: languages/vue.php:2221
8037
  msgid "Congrats! All-in-One SEO Installed."
8038
  msgstr ""
8039
 
8040
- #: languages/vue.php:2224
8041
  msgid "Switch to AIOSEO"
8042
  msgstr ""
8043
 
8044
- #: languages/vue.php:2228
8045
  msgid "Installation Failed. Please refresh and try again."
8046
  msgstr ""
8047
 
8048
- #: languages/vue.php:2232
8049
  msgid "Activating AIOSEO..."
8050
  msgstr ""
8051
 
8052
- #: languages/vue.php:2236
8053
  msgid "Activate AIOSEO"
8054
  msgstr ""
8055
 
8056
- #: languages/vue.php:2240
8057
  msgid "Activation Failed. Please refresh and try again."
8058
  msgstr ""
8059
 
8060
- #: languages/vue.php:2243
8061
  msgid "Unlock Form Tracking"
8062
  msgstr ""
8063
 
8064
- #: languages/vue.php:2246
8065
  msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
8066
  msgstr ""
8067
 
8068
- #: languages/vue.php:2249
8069
  msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
8070
  msgstr ""
8071
 
8072
- #: languages/vue.php:2252
8073
  msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
8074
  msgstr ""
8075
 
8076
- #: languages/vue.php:2255
8077
  msgid "Show"
8078
  msgstr ""
8079
 
8080
- #: languages/vue.php:2258
8081
  msgid "File imported"
8082
  msgstr ""
8083
 
8084
- #: languages/vue.php:2261
8085
  msgid "Settings successfully updated!"
8086
  msgstr ""
8087
 
8088
- #: languages/vue.php:2264
8089
  msgid "Error importing settings"
8090
  msgstr ""
8091
 
8092
- #: languages/vue.php:2267
8093
  msgid "Please choose a .json file generated by a ExactMetrics settings export."
8094
  msgstr ""
8095
 
8096
- #: languages/vue.php:2270
8097
  msgid "Import/Export"
8098
  msgstr ""
8099
 
8100
- #: languages/vue.php:2273
8101
  msgid "Import"
8102
  msgstr ""
8103
 
8104
- #: languages/vue.php:2276
8105
  msgid "Import settings from another ExactMetrics website."
8106
  msgstr ""
8107
 
8108
- #: languages/vue.php:2279
8109
  msgid "Export"
8110
  msgstr ""
8111
 
8112
- #: languages/vue.php:2282
8113
  msgid "Export settings to import into another ExactMetrics install."
8114
  msgstr ""
8115
 
8116
- #: languages/vue.php:2285
8117
  msgid "Import Settings"
8118
  msgstr ""
8119
 
8120
- #: languages/vue.php:2288
8121
  msgid "Export Settings"
8122
  msgstr ""
8123
 
8124
- #: languages/vue.php:2291
8125
  msgid "Please choose a file to import"
8126
  msgstr ""
8127
 
8128
- #: languages/vue.php:2294
8129
  msgid "Click Choose file below to select the settings export file from another site."
8130
  msgstr ""
8131
 
8132
- #: languages/vue.php:2297
8133
  msgid "Use the button below to export a file with your ExactMetrics settings."
8134
  msgstr ""
8135
 
8136
- #: languages/vue.php:2300
8137
  msgid "Choose file"
8138
  msgstr ""
8139
 
8140
- #: languages/vue.php:2303
8141
  msgid "No file chosen"
8142
  msgstr ""
8143
 
8144
- #: languages/vue.php:2306
8145
  msgid "Uploading file..."
8146
  msgstr ""
8147
 
8148
- #: languages/vue.php:2309
8149
  msgid "Custom code"
8150
  msgstr ""
8151
 
8152
  #. Translators: Adds a link to the Google reference.
8153
- #: languages/vue.php:2313
8154
  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."
8155
  msgstr ""
8156
 
8157
- #: languages/vue.php:2319
8158
  msgid "Automatic Updates"
8159
  msgstr ""
8160
 
8161
- #: languages/vue.php:2322
8162
  msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
8163
  msgstr ""
8164
 
8165
- #: languages/vue.php:2325
8166
  msgid "Hide Admin Bar Reports"
8167
  msgstr ""
8168
 
8169
  #. Translators: placeholders make text small.
8170
- #: languages/vue.php:2329
8171
  msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
8172
  msgstr ""
8173
 
8174
  #. Translators: placeholders make text small.
8175
- #: languages/vue.php:2333
8176
  msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
8177
  msgstr ""
8178
 
8179
  #. Translators: placeholders make text small.
8180
- #: languages/vue.php:2337
8181
  msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
8182
  msgstr ""
8183
 
8184
  #. Translators: placeholders make text small.
8185
- #: languages/vue.php:2341
8186
  msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
8187
  msgstr ""
8188
 
8189
  #. Translators: placeholders make text small.
8190
- #: languages/vue.php:2345
8191
  msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
8192
  msgstr ""
8193
 
8194
  #. Translators: placeholders make text small.
8195
- #: languages/vue.php:2349
8196
  msgid "None %1$s- Manually update everything.%2$s"
8197
  msgstr ""
8198
 
8199
  #. Translators: Adds a link to the general settings tab.
8200
- #: languages/vue.php:2353
8201
  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."
8202
  msgstr ""
8203
 
8204
- #: languages/vue.php:2356
8205
  msgid "Permissions"
8206
  msgstr ""
8207
 
8208
- #: languages/vue.php:2359
8209
  msgid "Export PDF Reports"
8210
  msgstr ""
8211
 
8212
- #: languages/vue.php:2362
8213
  msgid "Allow These User Roles to See Reports"
8214
  msgstr ""
8215
 
8216
- #: languages/vue.php:2365
8217
  msgid "Users that have at least one of these roles will be able to view the reports."
8218
  msgstr ""
8219
 
8220
- #: languages/vue.php:2368
8221
  msgid "Allow These User Roles to Save Settings"
8222
  msgstr ""
8223
 
8224
- #: languages/vue.php:2371
8225
  msgid "Users that have at least one of these roles will be able to view and save the settings panel."
8226
  msgstr ""
8227
 
8228
- #: languages/vue.php:2374
8229
  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."
8230
  msgstr ""
8231
 
8232
- #: languages/vue.php:2377
8233
  msgid "Exclude These User Roles From Tracking"
8234
  msgstr ""
8235
 
8236
- #: languages/vue.php:2380
8237
  msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
8238
  msgstr ""
8239
 
8240
- #: languages/vue.php:2383
8241
  msgid "Make your ExactMetrics campaign links prettier with Pretty Links!"
8242
  msgstr ""
8243
 
8244
- #: languages/vue.php:2386
8245
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links."
8246
  msgstr ""
8247
 
8248
- #: languages/vue.php:2389
8249
  msgid "Take your ExactMetrics campaign links from our URL Builder and shorten them with Pretty Links!"
8250
  msgstr ""
8251
 
8252
- #: languages/vue.php:2392
8253
  msgid "Over 200,000 websites use Pretty Links!"
8254
  msgstr ""
8255
 
8256
- #: languages/vue.php:2395
8257
  msgid "Install Pretty Links"
8258
  msgstr ""
8259
 
8260
- #: languages/vue.php:2398
8261
  msgid "Pretty Links Installed & Activated"
8262
  msgstr ""
8263
 
8264
- #: languages/vue.php:2401
8265
  msgid "Download Pretty Links"
8266
  msgstr ""
8267
 
8268
- #: languages/vue.php:2404
8269
  msgid "Install Pretty Links from the WordPress.org plugin repository."
8270
  msgstr ""
8271
 
8272
- #: languages/vue.php:2407
8273
  msgid "Activate Pretty Links"
8274
  msgstr ""
8275
 
8276
- #: languages/vue.php:2410
8277
  msgid "Activating Pretty Links..."
8278
  msgstr ""
8279
 
8280
- #: languages/vue.php:2413
8281
  msgid "Create New Pretty Link"
8282
  msgstr ""
8283
 
8284
- #: languages/vue.php:2416
8285
  msgid "Create a New Pretty Link"
8286
  msgstr ""
8287
 
8288
- #: languages/vue.php:2419
8289
  msgid "Grab your campaign link and paste it into the Target URL field."
8290
  msgstr ""
8291
 
8292
- #: languages/vue.php:2422
8293
  msgid "Custom Campaign Parameters"
8294
  msgstr ""
8295
 
8296
- #: languages/vue.php:2425
8297
  msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
8298
  msgstr ""
8299
 
8300
- #: languages/vue.php:2428
8301
  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."
8302
  msgstr ""
8303
 
8304
  #. Translators: Marks the field as required.
8305
- #: languages/vue.php:2432
8306
  msgid "Website URL %s"
8307
  msgstr ""
8308
 
8309
  #. Translators: Display the current website url in italic.
8310
- #: languages/vue.php:2436
8311
  msgid "The full website URL (e.g. %1$s %2$s%3$s)"
8312
  msgstr ""
8313
 
8314
  #. Translators: Marks the field as required.
8315
- #: languages/vue.php:2440
8316
  msgid "Campaign Source %s"
8317
  msgstr ""
8318
 
8319
  #. Translators: Make the text italic.
8320
- #: languages/vue.php:2444
8321
  msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
8322
  msgstr ""
8323
 
8324
  #. Translators: Make the text italic.
8325
- #: languages/vue.php:2448
8326
  msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
8327
  msgstr ""
8328
 
8329
  #. Translators: Make the text italic.
8330
- #: languages/vue.php:2452
8331
  msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
8332
  msgstr ""
8333
 
8334
- #: languages/vue.php:2455
8335
  msgid "Enter the paid keyword"
8336
  msgstr ""
8337
 
8338
- #: languages/vue.php:2458
8339
  msgid "Enter something to differentiate ads"
8340
  msgstr ""
8341
 
8342
- #: languages/vue.php:2461
8343
  msgid "Use Fragment"
8344
  msgstr ""
8345
 
8346
  #. Translators: Make the text bold.
8347
- #: languages/vue.php:2465
8348
  msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
8349
  msgstr ""
8350
 
8351
- #: languages/vue.php:2468
8352
  msgid "URL to use"
8353
  msgstr ""
8354
 
8355
- #: languages/vue.php:2471
8356
  msgid "(Updates automatically)"
8357
  msgstr ""
8358
 
8359
- #: languages/vue.php:2474
8360
  msgid "Copy to Clipboard"
8361
  msgstr ""
8362
 
8363
- #: languages/vue.php:2477
8364
  msgid "Copy to Pretty Links"
8365
  msgstr ""
8366
 
8367
- #: languages/vue.php:2480
8368
  msgid "Make your campaign links prettier!"
8369
  msgstr ""
8370
 
8371
- #: languages/vue.php:2483
8372
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links."
8373
  msgstr ""
8374
 
8375
- #: languages/vue.php:2486
8376
  msgid "More Information & Examples"
8377
  msgstr ""
8378
 
8379
- #: languages/vue.php:2489
8380
  msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
8381
  msgstr ""
8382
 
8383
- #: languages/vue.php:2492
8384
  msgid "Campaign Source"
8385
  msgstr ""
8386
 
8387
- #: languages/vue.php:2495
8388
  msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
8389
  msgstr ""
8390
 
8391
- #: languages/vue.php:2498
8392
  msgid "Campaign Medium"
8393
  msgstr ""
8394
 
8395
- #: languages/vue.php:2501
8396
  msgid "Use utm_medium to identify a medium such as email or cost-per-click."
8397
  msgstr ""
8398
 
8399
- #: languages/vue.php:2504
8400
  msgid "Campaign Name"
8401
  msgstr ""
8402
 
8403
- #: languages/vue.php:2507
8404
  msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
8405
  msgstr ""
8406
 
8407
- #: languages/vue.php:2510
8408
  msgid "Campaign Term"
8409
  msgstr ""
8410
 
8411
- #: languages/vue.php:2513
8412
  msgid "Used for paid search. Use utm_term to note the keywords for this ad."
8413
  msgstr ""
8414
 
8415
- #: languages/vue.php:2516
8416
  msgid "Campaign Content"
8417
  msgstr ""
8418
 
8419
- #: languages/vue.php:2519
8420
  msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
8421
  msgstr ""
8422
 
8423
  #. Translators: Example.
8424
- #: languages/vue.php:2523
8425
  msgid "Example: %s"
8426
  msgstr ""
8427
 
8428
  #. Translators: Examples.
8429
- #: languages/vue.php:2527
8430
  msgid "Examples: %s"
8431
  msgstr ""
8432
 
8433
- #: languages/vue.php:2530
8434
  msgid "About Campaigns"
8435
  msgstr ""
8436
 
8437
- #: languages/vue.php:2533
8438
  msgid "About Custom Campaigns"
8439
  msgstr ""
8440
 
8441
- #: languages/vue.php:2536
8442
  msgid "Best Practices for Creating Custom Campaigns"
8443
  msgstr ""
8444
 
8445
- #: languages/vue.php:2539
8446
  msgid "About the Referral Traffic Report"
8447
  msgstr ""
8448
 
8449
- #: languages/vue.php:2542
8450
  msgid "About Traffic Source Dimensions"
8451
  msgstr ""
8452
 
8453
- #: languages/vue.php:2545
8454
  msgid "AdWords Auto-Tagging"
8455
  msgstr ""
8456
 
8457
- #: languages/vue.php:2548
8458
  msgid "Additional Information"
8459
  msgstr ""
8460
 
8461
- #: languages/vue.php:2551
8462
  msgid "Affiliate Links"
8463
  msgstr ""
8464
 
8465
  #. Translators: Add links to documentation.
8466
- #: languages/vue.php:2555
8467
  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."
8468
  msgstr ""
8469
 
8470
- #: languages/vue.php:2558
8471
  msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
8472
  msgstr ""
8473
 
8474
- #: languages/vue.php:2561
8475
  msgid "The ExactMetrics Headline Analyzer tool in the Gutenberg editor enables you to write irresistible SEO-friendly headlines that drive traffic, social media shares, and rank better in search results."
8476
  msgstr ""
8477
 
8478
- #: languages/vue.php:2564
8479
  msgid "Disable the Headline Analyzer"
8480
  msgstr ""
8481
 
8482
  #. Translators: Add line break.
8483
- #: languages/vue.php:2568
8484
  msgid "See All Your Important Store%s Metrics in One Place"
8485
  msgstr ""
8486
 
8487
- #: languages/vue.php:2571
8488
  msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
8489
  msgstr ""
8490
 
8491
- #: languages/vue.php:2574
8492
  msgid "See Your Conversion Rate to Improve Funnel"
8493
  msgstr ""
8494
 
8495
- #: languages/vue.php:2577
8496
  msgid "See The Number of Transactions and Make Data-Driven Decisions"
8497
  msgstr ""
8498
 
8499
- #: languages/vue.php:2580
8500
  msgid "See The Total Revenue to Track Growth"
8501
  msgstr ""
8502
 
8503
- #: languages/vue.php:2583
8504
  msgid "See Average Order Value to Find Offer Opportunities"
8505
  msgstr ""
8506
 
8507
- #: languages/vue.php:2586
8508
  msgid "See Your Top Products to See Individual Performance"
8509
  msgstr ""
8510
 
8511
- #: languages/vue.php:2589
8512
  msgid "See your Top Conversion Sources and Focus on what's Working"
8513
  msgstr ""
8514
 
8515
- #: languages/vue.php:2592
8516
  msgid "See The Time it Takes for Customers to Purchase"
8517
  msgstr ""
8518
 
8519
- #: languages/vue.php:2595
8520
  msgid "See How Many Sessions are Needed for a Purchase"
8521
  msgstr ""
8522
 
8523
- #: languages/vue.php:2598
8524
  msgid "Automatically Track Affiliate Sales"
8525
  msgstr ""
8526
 
8527
- #: languages/vue.php:2601
8528
  msgid "The ExactMetrics eCommerce addon works with EasyAffiliate, so that you can instantly track all affiliate referrals and sales inside WordPress and Google Analytics, with no coding needed."
8529
  msgstr ""
8530
 
8531
- #: languages/vue.php:2604
8532
  msgid "Works with WooCommerce, MemberPress, and EasyDigitalDownloads."
8533
  msgstr ""
8534
 
8535
- #: languages/vue.php:2607
8536
  msgid "Cross Domain Tracking"
8537
  msgstr ""
8538
 
8539
  #. Translators: Add links to documentation.
8540
- #: languages/vue.php:2611
8541
  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."
8542
  msgstr ""
8543
 
8544
- #: languages/vue.php:2614
8545
  msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
8546
  msgstr ""
8547
 
8548
- #: languages/vue.php:2617
8549
  msgid "Anonymize IP Addresses"
8550
  msgstr ""
8551
 
8552
- #: languages/vue.php:2620
8553
  msgid "Link Attribution"
8554
  msgstr ""
8555
 
8556
- #: languages/vue.php:2623
8557
  msgid "Enable Enhanced Link Attribution"
8558
  msgstr ""
8559
 
8560
- #: languages/vue.php:2626
8561
  msgid "Enable Anchor Tracking"
8562
  msgstr ""
8563
 
8564
- #: languages/vue.php:2629
8565
  msgid "Enable allowAnchor"
8566
  msgstr ""
8567
 
8568
- #: languages/vue.php:2632
8569
  msgid "Enable allowLinker"
8570
  msgstr ""
8571
 
8572
- #: languages/vue.php:2635
8573
  msgid "Enable Tag Links in RSS"
8574
  msgstr ""
8575
 
8576
- #: languages/vue.php:2638
8577
  msgid "File Downloads"
8578
  msgstr ""
8579
 
8580
- #: languages/vue.php:2641
8581
  msgid "Extensions of Files to Track as Downloads"
8582
  msgstr ""
8583
 
8584
- #: languages/vue.php:2644
8585
  msgid "ExactMetrics will send an event to Google Analytics if a link to a file has one of the above extensions."
8586
  msgstr ""
8587
 
8588
  #. Translators: Add links to documentation.
8589
- #: languages/vue.php:2648
8590
  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."
8591
  msgstr ""
8592
 
8593
  #. Translators: Add links to documentation.
8594
- #: languages/vue.php:2652
8595
  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."
8596
  msgstr ""
8597
 
8598
  #. Translators: Add links to documentation.
8599
- #: languages/vue.php:2656
8600
  msgid "Adds the Enhanced Link Attribution (retain link) code to improve the accuracy of your In-Page Analytics report by automatically differentiating between multiple links to the same URL on a single page by using link element IDs."
8601
  msgstr ""
8602
 
8603
- #: languages/vue.php:2659
8604
  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."
8605
  msgstr ""
8606
 
8607
  #. Translators: Add links to documentation.
8608
- #: languages/vue.php:2663
8609
  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."
8610
  msgstr ""
8611
 
8612
  #. Translators: Add links to documentation.
8613
- #: languages/vue.php:2667
8614
  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."
8615
  msgstr ""
8616
 
8617
  #. Translators: Add links to documentation.
8618
- #: languages/vue.php:2671
8619
  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."
8620
  msgstr ""
8621
 
8622
- #: languages/vue.php:2674
8623
  msgid "Add domain"
8624
  msgstr ""
8625
 
8626
  #. Translators: Domain name example.
8627
- #: languages/vue.php:2678
8628
  msgid "Domain (example: %s)"
8629
  msgstr ""
8630
 
8631
  #. Translators: Current domain name that should not be used.
8632
- #: languages/vue.php:2682
8633
  msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
8634
  msgstr ""
8635
 
8636
  #. Translators: Adds link to the account area to retreive license key.
8637
- #: languages/vue.php:2686
8638
  msgid "Already have a license key? Add it below to unlock ExactMetrics PRO. %1$sRetrieve your license key%2$s."
8639
  msgstr ""
8640
 
8641
- #: languages/vue.php:2689
8642
  msgid "Connect ExactMetrics to Start Tracking Your Data"
8643
  msgstr ""
8644
 
8645
- #: languages/vue.php:2692
8646
  msgid "Complete Upgrade"
8647
  msgstr ""
8648
 
8649
- #: languages/vue.php:2695
8650
  msgid "Upgrade to Pro Version!"
8651
  msgstr ""
8652
 
8653
  #. Translators: Make text bold.
8654
- #: languages/vue.php:2699
8655
  msgid "%1$sExactMetrics%2$s can automatically upgrade the installed version to the Pro and walk you through the process."
8656
  msgstr ""
8657
 
8658
- #: languages/vue.php:2702
8659
  msgid "Install All-in-One SEO"
8660
  msgstr ""
8661
 
8662
- #: languages/vue.php:2705
8663
  msgid "Improve Your Website Search Rankings With All-In-One SEO"
8664
  msgstr ""
8665
 
8666
- #: languages/vue.php:2708
8667
  msgid "If you’re not using a plugin to optimize your website’s SEO you’re missing out on valuable organic traffic!"
8668
  msgstr ""
8669
 
8670
- #: languages/vue.php:2711
8671
  msgid "Finally, a WordPress SEO Plugin that’s Easy and Powerful!"
8672
  msgstr ""
8673
 
8674
- #: languages/vue.php:2714
8675
  msgid "AIOSEO makes it easy to set up the proper SEO foundations in less than 10 minutes."
8676
  msgstr ""
8677
 
8678
- #: languages/vue.php:2717
8679
  msgid "Local SEO"
8680
  msgstr ""
8681
 
8682
- #: languages/vue.php:2720
8683
  msgid "All in One SEO gives you all the tools you need to improve your local SEO and rank higher on Google Maps."
8684
  msgstr ""
8685
 
8686
- #: languages/vue.php:2723
8687
  msgid "WooCommerce SEO"
8688
  msgstr ""
8689
 
8690
- #: languages/vue.php:2726
8691
  msgid "Advanced eCommerce SEO support for WooCommerce to optimize product pages, product categories, and more."
8692
  msgstr ""
8693
 
8694
- #: languages/vue.php:2729
8695
  msgid "SEO Custom User Roles"
8696
  msgstr ""
8697
 
8698
- #: languages/vue.php:2732
8699
  msgid "SEO user roles allow you to manage access to important SEO features without handing over control of your website."
8700
  msgstr ""
8701
 
8702
- #: languages/vue.php:2735
8703
  msgid "Google News Sitemap"
8704
  msgstr ""
8705
 
8706
- #: languages/vue.php:2738
8707
  msgid "Get higher rankings and unlock more traffic by submitting your latest news articles to Google News."
8708
  msgstr ""
8709
 
8710
- #: languages/vue.php:2741
8711
  msgid "Smart XML Sitemaps"
8712
  msgstr ""
8713
 
8714
- #: languages/vue.php:2744
8715
  msgid "Automatically generate a WordPress XML sitemap and notify all search engines of any updates."
8716
  msgstr ""
8717
 
8718
- #: languages/vue.php:2747
8719
  msgid "Social Media Integration"
8720
  msgstr ""
8721
 
8722
- #: languages/vue.php:2750
8723
  msgid "Easily control how your content and thumbnails look on Facebook, Twitter, and other social media networks."
8724
  msgstr ""
8725
 
8726
- #: languages/vue.php:2753
8727
  msgid "TruSEO On-Page Analysis"
8728
  msgstr ""
8729
 
8730
- #: languages/vue.php:2756
8731
  msgid "Easily add title tags, meta descriptions, keywords, and everything else you need for proper on-page SEO optimization."
8732
  msgstr ""
8733
 
8734
- #: languages/vue.php:2759
8735
  msgid "& Many More!"
8736
  msgstr ""
8737
 
8738
- #: languages/vue.php:2762
8739
  msgid "Installing. Please wait.."
8740
  msgstr ""
8741
 
8742
- #: languages/vue.php:2765
8743
  msgid "Install All-in-One-SEO"
8744
  msgstr ""
8745
 
8746
- #: languages/vue.php:2768
8747
  msgid "Unlock the Publisher Report and Focus on the Content That Matters"
8748
  msgstr ""
8749
 
8750
- #: languages/vue.php:2771
8751
  msgid "See Your Top Landing Pages to Improve Engagement"
8752
  msgstr ""
8753
 
8754
- #: languages/vue.php:2774
8755
  msgid "See Your Top Exit Pages to Reduce Abandonment"
8756
  msgstr ""
8757
 
8758
- #: languages/vue.php:2777
8759
  msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
8760
  msgstr ""
8761
 
8762
- #: languages/vue.php:2780
8763
  msgid "See Your Top Affiliate Links and Focus on What’s Working"
8764
  msgstr ""
8765
 
8766
- #: languages/vue.php:2783
8767
  msgid "See Your Top Downloads and Improve Conversions"
8768
  msgstr ""
8769
 
8770
- #: languages/vue.php:2786
8771
  msgid "See Audience Demographic Report (Age / Gender / Interests)"
8772
  msgstr ""
8773
 
8774
- #: languages/vue.php:2789
8775
  msgid "Welcome to the all-new ExactMetrics"
8776
  msgstr ""
8777
 
8778
- #: languages/vue.php:2792
8779
  msgid "Redesigned from the ground up, ExactMetrics is built to bring a world-class analytics and reporting experience to WordPress."
8780
  msgstr ""
8781
 
8782
- #: languages/vue.php:2795
8783
  msgid "The New & Improved ExactMetrics includes:"
8784
  msgstr ""
8785
 
8786
- #: languages/vue.php:2798
8787
  msgid "All-New Design"
8788
  msgstr ""
8789
 
8790
- #: languages/vue.php:2801
8791
  msgid "Better Reporting"
8792
  msgstr ""
8793
 
8794
- #: languages/vue.php:2804
8795
  msgid "Better Tracking"
8796
  msgstr ""
8797
 
8798
- #: languages/vue.php:2807
8799
  msgid "Better Support"
8800
  msgstr ""
8801
 
8802
- #: languages/vue.php:2810
8803
  msgid "Continue"
8804
  msgstr ""
8805
 
8806
- #: languages/vue.php:2813
8807
  msgid "Your settings have been automatically transferred."
8808
  msgstr ""
8809
 
8810
- #: languages/vue.php:2816
8811
  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."
8812
  msgstr ""
8813
 
8814
- #: languages/vue.php:2819
8815
  msgid "New"
8816
  msgstr ""
8817
 
8818
- #: languages/vue.php:2822
8819
  msgid "Returning"
8820
  msgstr ""
8821
 
8822
- #: languages/vue.php:2825
8823
  msgid "Top 10 Countries"
8824
  msgstr ""
8825
 
8826
- #: languages/vue.php:2828
8827
  msgid "View Countries Report"
8828
  msgstr ""
8829
 
8830
- #: languages/vue.php:2831
8831
  msgid "Top 10 Referrals"
8832
  msgstr ""
8833
 
8834
- #: languages/vue.php:2834
8835
  msgid "View All Referral Sources"
8836
  msgstr ""
8837
 
8838
- #: languages/vue.php:2837
8839
  msgid "View Full Posts/Pages Report"
8840
  msgstr ""
8841
 
8842
- #: languages/vue.php:2840
8843
  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."
8844
  msgstr ""
8845
 
8846
- #: languages/vue.php:2843
8847
  msgid "This list shows the top countries your website visitors are from."
8848
  msgstr ""
8849
 
8850
- #: languages/vue.php:2846
8851
  msgid "This list shows the top websites that send your website traffic, known as referral traffic."
8852
  msgstr ""
8853
 
8854
- #: languages/vue.php:2849
8855
  msgid "This feature requires ExactMetrics Pro"
8856
  msgstr ""
8857
 
8858
- #: languages/vue.php:2852
8859
  msgid "By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more."
8860
  msgstr ""
8861
 
8862
- #: languages/vue.php:2855
8863
  msgid "Upgrade to Pro and Unlock Popular Products"
8864
  msgstr ""
8865
 
8866
- #: languages/vue.php:2858
8867
  msgid "View all Pro features"
8868
  msgstr ""
8869
 
8870
- #: languages/vue.php:2861
8871
  msgid "View notifications"
8872
  msgstr ""
8873
 
8874
- #: languages/vue.php:2864
8875
  msgid "Days"
8876
  msgstr ""
8877
 
8878
  #. Translators: placeholders make text small.
8879
- #: languages/vue.php:2868
8880
  msgid "7 days"
8881
  msgstr ""
8882
 
8883
- #: languages/vue.php:2871
8884
  msgid "30 days"
8885
  msgstr ""
8886
 
8887
- #: languages/vue.php:2874
8888
  msgid "Custom"
8889
  msgstr ""
8890
 
8891
- #: languages/vue.php:2877
8892
  msgid "2,000,000+ use AIOSEO to Improve Their Website Search Rankings"
8893
  msgstr ""
8894
 
8895
- #: languages/vue.php:2880
8896
  msgid "All-in-One SEO is a great product. I have been using it on all my WP sites for several years. I highly recommend it."
8897
  msgstr ""
8898
 
8899
- #: languages/vue.php:2883
8900
  msgid "Jack Brown"
8901
  msgstr ""
8902
 
8903
- #: languages/vue.php:2886
8904
  msgid "PJB Internet Marketing"
8905
  msgstr ""
8906
 
8907
- #: languages/vue.php:2889
8908
  msgid "I’m a professional SEO and used many tools and extensions. Regarding simplicity, individuality and configurability All in One SEO Pro is by far the best SEO plugin out there for WordPress."
8909
  msgstr ""
8910
 
8911
- #: languages/vue.php:2892
8912
  msgid "Joel Steinmann"
8913
  msgstr ""
8914
 
8915
- #: languages/vue.php:2895
8916
  msgid "CEO, Solergo"
8917
  msgstr ""
8918
 
8919
- #: languages/vue.php:2898
8920
  msgid "Only Show Posts from These Categories"
8921
  msgstr ""
8922
 
8923
- #: languages/vue.php:2901
8924
  msgid "Choose from which categories posts will be displayed in the widget. All categories will be used if left empty."
8925
  msgstr ""
8926
 
8927
- #: languages/vue.php:2904
8928
  msgid "Activating..."
8929
  msgstr ""
8930
 
8931
- #: languages/vue.php:2907
8932
  msgid "Deactivating..."
8933
  msgstr ""
8934
 
8935
- #: languages/vue.php:2910
8936
  msgid "Deactivate"
8937
  msgstr ""
8938
 
8939
- #: languages/vue.php:2913
8940
  msgid "Search Console Report"
8941
  msgstr ""
8942
 
8943
- #: languages/vue.php:2916
8944
  msgid "See exactly how people find tour website, which keywords they searched for, how many times the results were viewed, and more."
8945
  msgstr ""
8946
 
8947
- #: languages/vue.php:2919
8948
  msgid "See Your Top Google Search Terms and Optimize Content"
8949
  msgstr ""
8950
 
8951
- #: languages/vue.php:2922
8952
  msgid "See The Number of Clicks and Track Interests"
8953
  msgstr ""
8954
 
8955
- #: languages/vue.php:2925
8956
  msgid "See The Click-Through-Ratio and Improve SEO"
8957
  msgstr ""
8958
 
8959
- #: languages/vue.php:2928
8960
  msgid "See The Average Results Position and Focus on what works."
8961
  msgstr ""
8962
 
8963
- #: languages/vue.php:2931
8964
  msgid "Ecommerce Report"
8965
  msgstr ""
8966
 
8967
- #: languages/vue.php:2934
8968
  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."
8969
  msgstr ""
8970
 
8971
- #: languages/vue.php:2937
8972
  msgid "See Your Conversion Rate to Improve Your Funnel"
8973
  msgstr ""
8974
 
8975
- #: languages/vue.php:2940
8976
  msgid "See Your Top Conversion Sources and Focus on What's Working"
8977
  msgstr ""
8978
 
8979
- #: languages/vue.php:2943
8980
  msgid "Popular Posts data can be fetched correctly"
8981
  msgstr ""
8982
 
8983
- #: languages/vue.php:2946
8984
  msgid "Please note: depending on when you set up the Custom Dimensions settings, it may take up to 7 days to see relevant Popular Posts data loading from Google Analytics."
8985
  msgstr ""
8986
 
8987
- #: languages/vue.php:2949
8988
  msgid "Close"
8989
  msgstr ""
8990
 
8991
- #: languages/vue.php:2952
8992
  msgid "Add Top 5 Posts from Google Analytics"
8993
  msgstr ""
8994
 
8995
- #: languages/vue.php:2955
8996
  msgid "In order to load the top posts from Google Analytics you will need to enable the Custom Dimensions addon and set up the Post Type custom dimension in both ExactMetrics and Google Analytics settings."
8997
  msgstr ""
8998
 
8999
- #: languages/vue.php:2958
9000
  msgid "Test Automated Posts"
9001
  msgstr ""
9002
 
9003
  #. Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc.
9004
- #: languages/vue.php:2962
9005
  msgid "Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics."
9006
  msgstr ""
9007
 
9008
- #: languages/vue.php:2965
9009
  msgid "Automated + Curated"
9010
  msgstr ""
9011
 
9012
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
9013
- #: languages/vue.php:2969
9014
  msgid "Automatically add the top 5 Posts from the past 30 days to your Curated list of Posts using %1$sCustom Dimensions%2$s. Also requires Sort By - Curated to be selected. Setup steps can be found in our %3$sknowledge base%4$s."
9015
  msgstr ""
9016
 
9017
  #. Translators: Placeholder gets replaced with current license version.
9018
- #: languages/vue.php:2973
9019
  msgid "Pro version is required."
9020
  msgstr ""
9021
 
9022
- #: languages/vue.php:2976
9023
  msgid "Verifying Popular Posts data"
9024
  msgstr ""
9025
 
9026
- #: languages/vue.php:2979
9027
  msgid "Multiple Entries"
9028
  msgstr ""
9029
 
9030
- #: languages/vue.php:2982
9031
  msgid "Total Number of Widgets to Show"
9032
  msgstr ""
9033
 
9034
- #: languages/vue.php:2985
9035
  msgid "Choose how many widgets will be placed in a single Post."
9036
  msgstr ""
9037
 
9038
- #: languages/vue.php:2988
9039
  msgid "Minimum Distance Between Widgets"
9040
  msgstr ""
9041
 
9042
- #: languages/vue.php:2991
9043
  msgid "Choose the distance between widgets."
9044
  msgstr ""
9045
 
9046
- #: languages/vue.php:2994
9047
  msgid "Minimum Word Count to Display Multiple Widgets"
9048
  msgstr ""
9049
 
9050
- #: languages/vue.php:2997
9051
  msgid "Choose the minimum word count for a Post to have multiple entries."
9052
  msgstr ""
9053
 
9054
- #: languages/vue.php:3000
9055
  msgid "Pro version is required"
9056
  msgstr ""
9057
 
9058
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
9059
- #: languages/vue.php:3004
9060
  msgid "Automatically add the top 5 Posts from the past 30 days to your Curated list of Posts using Custom Dimensions (Pro version required. %1$sUpgrade now%2$s)."
9061
  msgstr ""
9062
 
9063
- #: languages/vue.php:3007
9064
  msgid "Select posts/search"
9065
  msgstr ""
9066
 
9067
- #: languages/vue.php:3010
9068
  msgid "Oops! No posts found."
9069
  msgstr ""
9070
 
9071
- #: languages/vue.php:3013
9072
  msgid "Search by post title"
9073
  msgstr ""
9074
 
9075
- #: languages/vue.php:3016
9076
  msgid "Can't load posts."
9077
  msgstr ""
9078
 
9079
- #: languages/vue.php:3019
9080
  msgid "Sartorial taxidermy venmo you probably haven't heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu."
9081
  msgstr ""
9082
 
9083
- #: languages/vue.php:3022
9084
  msgid "Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan"
9085
  msgstr ""
9086
 
9087
- #: languages/vue.php:3025
9088
  msgid "Color"
9089
  msgstr ""
9090
 
9091
- #: languages/vue.php:3028
9092
  msgid "Size"
9093
  msgstr ""
9094
 
9095
- #: languages/vue.php:3031
9096
  msgid "Title"
9097
  msgstr ""
9098
 
9099
- #: languages/vue.php:3034
9100
  msgid "Label"
9101
  msgstr ""
9102
 
9103
- #: languages/vue.php:3037
9104
  msgid "Background"
9105
  msgstr ""
9106
 
9107
- #: languages/vue.php:3040
9108
  msgid "Border"
9109
  msgstr ""
9110
 
9111
- #: languages/vue.php:3043
9112
  msgid "Icon"
9113
  msgstr ""
9114
 
9115
- #: languages/vue.php:3046
9116
  #: lite/includes/popular-posts/class-popular-posts-widget-sidebar.php:257
9117
  msgid "Theme Preview"
9118
  msgstr ""
9119
 
9120
- #: languages/vue.php:3049
9121
  msgid "SharedCount API Key"
9122
  msgstr ""
9123
 
9124
- #: languages/vue.php:3052
9125
  msgid "Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing."
9126
  msgstr ""
9127
 
9128
- #: languages/vue.php:3055
9129
  msgid "Start Indexing"
9130
  msgstr ""
9131
 
9132
- #: languages/vue.php:3058
9133
  msgid "%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing."
9134
  msgstr ""
9135
 
9136
- #: languages/vue.php:3061
9137
  msgid "Indexing completed, counts will update automatically every day."
9138
  msgstr ""
9139
 
9140
  #. Translators: Minimum and maximum number that can be used.
9141
- #: languages/vue.php:3065
9142
  msgid "Please enter a value between %1$s and %2$s"
9143
  msgstr ""
9144
 
9145
  #. Translators: The minimum set value.
9146
- #: languages/vue.php:3069
9147
  msgid "Please enter a value higher than %s"
9148
  msgstr ""
9149
 
9150
  #. Translators: The maximum set value.
9151
- #: languages/vue.php:3073
9152
  msgid "Please enter a value lower than %s"
9153
  msgstr ""
9154
 
9155
- #: languages/vue.php:3076
9156
  msgid "Please enter a number"
9157
  msgstr ""
9158
 
9159
- #: languages/vue.php:3079
9160
  msgid "Value has to be a round number"
9161
  msgstr ""
9162
 
9163
- #: languages/vue.php:3082
9164
  msgid "Author/Date"
9165
  msgstr ""
9166
 
9167
- #: languages/vue.php:3094
9168
  msgid "Choose which content you would like displayed in the widget."
9169
  msgstr ""
9170
 
9171
- #: languages/vue.php:3106
9172
  msgid "Comments"
9173
  msgstr ""
9174
 
9175
- #: languages/vue.php:3112
9176
  msgid "Choose how many posts you’d like displayed in the widget."
9177
  msgstr ""
9178
 
9179
  #. Translators: Page number of total pages. 1 & 2 make the first part of the text bold.
9180
- #: languages/vue.php:3116
9181
  msgid "%1$sPage %3$s%2$s of %4$s"
9182
  msgstr ""
9183
 
9184
- #: languages/vue.php:3119
9185
  msgid "Wide"
9186
  msgstr ""
9187
 
9188
- #: languages/vue.php:3122
9189
  msgid "Narrow"
9190
  msgstr ""
9191
 
9192
  #. Translators: Make text green.
9193
- #: languages/vue.php:3126
9194
  msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
9195
  msgstr ""
9196
 
9197
- #: languages/vue.php:3132
9198
  msgid "Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone."
9199
  msgstr ""
9200
 
9201
- #: languages/vue.php:3135
9202
  msgid "Our email summaries feature sends a weekly summary of the most important site analytics information."
9203
  msgstr ""
9204
 
9205
- #: languages/vue.php:3138
9206
  msgid "Usage Tracking"
9207
  msgstr ""
9208
 
9209
- #: languages/vue.php:3141
9210
  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."
9211
  msgstr ""
9212
 
9213
- #: languages/vue.php:3144
9214
  msgid "Allow usage tracking"
9215
  msgstr ""
9216
 
9217
  #. Translators: Adds a link to the documentation.
9218
- #: languages/vue.php:3148
9219
  msgid "Complete documentation on usage tracking is available %1$shere%2$s."
9220
  msgstr ""
9221
 
9222
- #: languages/vue.php:3151
9223
  msgid "Facebook Instant Articles"
9224
  msgstr ""
9225
 
9226
- #: languages/vue.php:3154
9227
  msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to ExactMetrics Pro."
9228
  msgstr ""
9229
 
9230
- #: languages/vue.php:3157
9231
  msgid "Performance"
9232
  msgstr ""
9233
 
9234
- #: languages/vue.php:3160
9235
  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."
9236
  msgstr ""
9237
 
9238
- #: languages/vue.php:3163
9239
  msgid "Google AMP"
9240
  msgstr ""
9241
 
9242
- #: languages/vue.php:3166
9243
  msgid "Want to use track users visiting your AMP pages? By upgrading to ExactMetrics Pro, you can enable AMP page tracking."
9244
  msgstr ""
9245
 
9246
- #: languages/vue.php:3169
9247
  msgid "Ads Tracking"
9248
  msgstr ""
9249
 
9250
- #: languages/vue.php:3172
9251
  msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
9252
  msgstr ""
9253
 
9254
- #: languages/vue.php:3175
9255
  msgid "Unlock with %s"
9256
  msgstr ""
9257
 
9258
- #: languages/vue.php:3178
9259
  msgid "Scroll Tracking"
9260
  msgstr ""
9261
 
9262
- #: languages/vue.php:3181
9263
  msgid "Scroll depth tracking in web analytics is one of those things you simply must do, especially if you have a content-heavy site."
9264
  msgstr ""
9265
 
9266
- #: languages/vue.php:3184
9267
  msgid ""
9268
  "The EU Compliance addon allows you to improve compliance with GDPR\n"
9269
  " and other privacy regulations."
9270
  msgstr ""
9271
 
9272
- #: languages/vue.php:3188
9273
  msgid "EU Compliance"
9274
  msgstr ""
9275
 
9276
- #: languages/vue.php:3191
9277
  msgid "Compatibility mode"
9278
  msgstr ""
9279
 
9280
- #: languages/vue.php:3194
9281
  msgid "Enable _gtagTracker Compatibility"
9282
  msgstr ""
9283
 
9284
  #. Translators: Placeholder gets replaced with default GA js function.
9285
- #: languages/vue.php:3198
9286
  msgid "This enables ExactMetrics to work with plugins that use %1$s and don't support %2$s"
9287
  msgstr ""
9288
 
9289
- #: languages/vue.php:3201
9290
  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!"
9291
  msgstr ""
9292
 
9293
- #: languages/vue.php:3204
9294
  msgid "To unlock more features consider upgrading to PRO."
9295
  msgstr ""
9296
 
9297
- #: languages/vue.php:3207
9298
  msgid "Upgrade to"
9299
  msgstr ""
9300
 
9301
- #: languages/vue.php:3210
9302
  msgid "Export PDF Report"
9303
  msgstr ""
9304
 
9305
- #: languages/vue.php:3213
9306
  msgid "You can export PDF reports only in the PRO version."
9307
  msgstr ""
9308
 
9309
- #: languages/vue.php:3216
9310
  msgid "Display Method"
9311
  msgstr ""
9312
 
9313
- #: languages/vue.php:3219
9314
  msgid "There are two ways to manual include the widget in your posts."
9315
  msgstr ""
9316
 
9317
- #: languages/vue.php:3222
9318
  msgid "Using the Gutenberg Block"
9319
  msgstr ""
9320
 
9321
- #: languages/vue.php:3225
9322
  msgid "Using the Shortcode"
9323
  msgstr ""
9324
 
9325
- #: languages/vue.php:3228
9326
  msgid "Learn how to insert the widget using Gutenberg blocks."
9327
  msgstr ""
9328
 
9329
- #: languages/vue.php:3231
9330
  msgid "Learn how to insert the widget using out Shortcode."
9331
  msgstr ""
9332
 
9333
- #: languages/vue.php:3234
9334
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg"
9335
  msgstr ""
9336
 
9337
- #: languages/vue.php:3237
9338
  msgid "%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page."
9339
  msgstr ""
9340
 
9341
- #: languages/vue.php:3240
9342
  msgid "%1$sStep 2%2$s - Search for “Inline Popular Posts by ExactMetrics”."
9343
  msgstr ""
9344
 
9345
- #: languages/vue.php:3243
9346
  msgid "%1$sStep 3%2$s - Style the widget using the Block Settings sidebar."
9347
  msgstr ""
9348
 
9349
- #: languages/vue.php:3246
9350
  msgid "Shortcode"
9351
  msgstr ""
9352
 
9353
- #: languages/vue.php:3249
9354
  msgid "Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin."
9355
  msgstr ""
9356
 
9357
- #: languages/vue.php:3252
9358
  msgid "Copy Shortcode"
9359
  msgstr ""
9360
 
9361
- #: languages/vue.php:3255
9362
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode"
9363
  msgstr ""
9364
 
9365
- #: languages/vue.php:3258
9366
  msgid "Automatic Placement"
9367
  msgstr ""
9368
 
9369
- #: languages/vue.php:3261
9370
  msgid "Display using Gutenberg Blocks"
9371
  msgstr ""
9372
 
9373
- #: languages/vue.php:3264
9374
  msgid "Embed Options"
9375
  msgstr ""
9376
 
9377
- #: languages/vue.php:3267
9378
  msgid "All Embed Options can be used in conjunction with one another."
9379
  msgstr ""
9380
 
9381
- #: languages/vue.php:3270
9382
  msgid "Using Automatic Embed"
9383
  msgstr ""
9384
 
9385
- #: languages/vue.php:3273
9386
  msgid "Learn how to insert the Popular Posts Widget into your posts and pages using Gutenberg Blocks. To style this widget, use the Gutenberg Block settings."
9387
  msgstr ""
9388
 
9389
- #: languages/vue.php:3276
9390
  msgid "Enabling Automatic Placement will include the Popular Posts Widget after the last paragraph of any and all posts that match your Behavior settings. To style this widget use the Customize Design panel above."
9391
  msgstr ""
9392
 
9393
- #: languages/vue.php:3279
9394
  msgid "Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above."
9395
  msgstr ""
9396
 
9397
- #: languages/vue.php:3282
9398
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg"
9399
  msgstr ""
9400
 
9401
- #: languages/vue.php:3285
9402
  msgid "%1$sStep 2%2$s - Search for “Popular Posts”."
9403
  msgstr ""
9404
 
9405
- #: languages/vue.php:3288
9406
  msgid "%1$sStep 1%2$s - Navigate to your Appearance > Widgets page using the menu on the left side your screen. Must be logged in as Admin."
9407
  msgstr ""
9408
 
9409
- #: languages/vue.php:3291
9410
  msgid "%1$sStep 2%2$s - On the left, under Available Widgets, look for the Popular Posts - ExactMetrics widget and drag it into the desired Sidebar on the right."
9411
  msgstr ""
9412
 
9413
- #: languages/vue.php:3294
9414
  msgid "%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design."
9415
  msgstr ""
9416
 
9417
- #: languages/vue.php:3297
9418
  msgid "Display using a Shortcode"
9419
  msgstr ""
9420
 
9421
- #: languages/vue.php:3300
9422
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode"
9423
  msgstr ""
9424
 
9425
- #: languages/vue.php:3303
9426
  msgid "Enable Automatic Placement"
9427
  msgstr ""
9428
 
9429
- #: languages/vue.php:3306
9430
  msgid "Display in a Sidebar"
9431
  msgstr ""
9432
 
9433
- #: languages/vue.php:3309
9434
  msgid "Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above."
9435
  msgstr ""
9436
 
9437
- #: languages/vue.php:3312
9438
  msgid "Watch Video - How to Add the Popular Posts widget using Widgets"
9439
  msgstr ""
9440
 
9441
  #. Translators: The number of results.
9442
- #: languages/vue.php:3316
9443
  msgid "%s results"
9444
  msgstr ""
9445
 
9446
- #: languages/vue.php:3319
9447
  msgid "Media"
9448
  msgstr ""
9449
 
9450
- #: languages/vue.php:3322
9451
  msgid "Track how your users interact with videos on your website. Upgrade to ExactMetrics Pro."
9452
  msgstr ""
9453
 
9454
- #: languages/vue.php:3325
9455
  msgid "2021 Year in Review"
9456
  msgstr ""
9457
 
9458
- #: languages/vue.php:3328
9459
  msgid "Media- Track how your users interact with videos on your website."
9460
  msgstr ""
9461
 
9462
- #: languages/vue.php:3331
9463
  msgid "Your 2021 Year in Review is still calculating. Please check back later to see how your website performed last year."
9464
  msgstr ""
9465
 
9466
- #: languages/vue.php:3334
9467
  msgid "Your 2021 Analytics Report"
9468
  msgstr ""
9469
 
9470
- #: languages/vue.php:3340
9471
  msgid "January 1, 2021 - December 31, 2021"
9472
  msgstr ""
9473
 
9474
- #: languages/vue.php:3343
9475
  msgid "A Tip for 2022"
9476
  msgstr ""
9477
 
9478
- #: languages/vue.php:3346
9479
  msgid "A Tip For 2022"
9480
  msgstr ""
9481
 
9482
- #: languages/vue.php:3349
9483
  msgid "Here's to an amazing 2022!"
9484
  msgstr ""
9485
 
9486
- #: languages/vue.php:3352
9487
  msgid "Try our other popular WordPress plugins to grow your website in 2022."
9488
  msgstr ""
9489
 
9490
- #: languages/vue.php:3355
9491
  msgid "Become a WordPress expert in 2022. Join our amazing communities and take your website to the next level."
9492
  msgstr ""
9493
 
9494
- #: languages/vue.php:3358
9495
  msgid "Copyright ExactMetrics, 2022"
9496
  msgstr ""
9497
 
9498
  #. Translators: Number of minutes spent on site.
9499
- #: languages/vue.php:3362
9500
  msgid "Each visitor spent an average of %s minutes on your website in 2021."
9501
  msgstr ""
9502
 
9503
  #. Translators: Placeholders are used for making text bold and adding a link.
9504
- #: languages/vue.php:3366
9505
  msgid "%1$sYou're using %2$s Lite%3$s. To unlock all reports, consider %4$supgrading to Pro%5$s."
9506
  msgstr ""
9507
 
9508
- #: languages/vue.php:3369
9509
  msgid "With ExactMetrics Pro, you can easily measure individual affiliate performance inside Google Analytics, no coding needed. Track clicks, revenue, and more."
9510
  msgstr ""
9511
 
9512
- #: languages/vue.php:3372
9513
  msgid "RafflePress"
9514
  msgstr ""
9515
 
9516
- #: languages/vue.php:3375
9517
  msgid "Launch giveaways and raffle campaigns to grow your email lists, increase traffic, and get more social media followers."
9518
  msgstr ""
9519
 
9520
- #: languages/vue.php:3378
9521
  msgid "Constant Contact"
9522
  msgstr ""
9523
 
9524
- #: languages/vue.php:3381
9525
  msgid "Create amazing email marketing campaigns with drag and drop simplicity. Exclusive Offer: Save 20%."
9526
  msgstr ""
9527
 
9528
- #: languages/vue.php:3384
9529
  msgid "SEMRUSH"
9530
  msgstr ""
9531
 
9532
- #: languages/vue.php:3387
9533
  msgid "Perform SEO and content marketing research, track keywords, and much more. Special Offer: First 30 Days Free."
9534
  msgstr ""
9535
 
9536
- #: languages/vue.php:3390
9537
  msgid "Engagement Tools"
9538
  msgstr ""
9539
 
9540
- #: languages/vue.php:3393
9541
  msgid "WPForms"
9542
  msgstr ""
9543
 
9544
- #: languages/vue.php:3396
9545
  msgid "The world’s most popular WordPress form builder, trusted by over 5 million websites. Easily build contact forms, payment forms, and more."
9546
  msgstr ""
9547
 
9548
- #: languages/vue.php:3400
9549
  msgid "OptinMonster"
9550
  msgstr ""
9551
 
9552
- #: languages/vue.php:3403
9553
  msgid "Convert and monetize more of your website traffic with engaging pop-up and gamified tools. Great for all types of websites."
9554
  msgstr ""
9555
 
9556
- #: languages/vue.php:3406
9557
  msgid "Smash Balloon - Facebook"
9558
  msgstr ""
9559
 
9560
- #: languages/vue.php:3409
9561
  msgid "Smash Balloon - Instagram"
9562
  msgstr ""
9563
 
9564
- #: languages/vue.php:3412
9565
  msgid "Quickly add social media feeds from Facebook, Instagram, Twitter, and others to your website, with no coding needed."
9566
  msgstr ""
9567
 
9568
- #: languages/vue.php:3415
9569
  msgid "Popular Posts by ExactMetrics"
9570
  msgstr ""
9571
 
9572
- #: languages/vue.php:3418
9573
  msgid "Increase your visitor engagement by automatically embedding popular and related content from your website."
9574
  msgstr ""
9575
 
9576
- #: languages/vue.php:3421
9577
  msgid "Popular Products by ExactMetrics"
9578
  msgstr ""
9579
 
9580
- #: languages/vue.php:3424
9581
  msgid "Automatically show related products to increase conversion rates and increase cart sizes on your eCommerce website."
9582
  msgstr ""
9583
 
9584
- #: languages/vue.php:3427
9585
  msgid "Revenue Tools"
9586
  msgstr ""
9587
 
9588
- #: languages/vue.php:3430
9589
  msgid "SeedProd"
9590
  msgstr ""
9591
 
9592
- #: languages/vue.php:3433
9593
  msgid "Use the best drag-and-drop landing page builder for WordPress to instantly build coming soon pages, sales pages, opt-in pages, webinar pages, maintenance pages, and more. Includes 100+ free templates."
9594
  msgstr ""
9595
 
9596
- #: languages/vue.php:3436
9597
  msgid "Featured Tools"
9598
  msgstr ""
9599
 
9600
- #: languages/vue.php:3439
9601
  msgid "Easy Affiliate"
9602
  msgstr ""
9603
 
9604
- #: languages/vue.php:3442
9605
  msgid "Launch, grow, and manage an affiliate program, all right from your WordPress dashboard. Works automatically with ExactMetrics."
9606
  msgstr ""
9607
 
9608
- #: languages/vue.php:3445
9609
  msgid "SearchWP"
9610
  msgstr ""
9611
 
9612
- #: languages/vue.php:3448
9613
  msgid "Unlock better search results for your website. Perfect for any information or eCommerce store to help users find exactly what content and products they’re looking for."
9614
  msgstr ""
9615
 
9616
- #: languages/vue.php:3451
9617
  msgid "Easy Digital Downloads"
9618
  msgstr ""
9619
 
9620
- #: languages/vue.php:3454
9621
  msgid "Easily sell digital products like ebooks, plugins, and courses with WordPress. Built-in payment processing, coupons, shopping cart, detailed reporting, and more."
9622
  msgstr ""
9623
 
9624
- #: languages/vue.php:3457
9625
  msgid "MemberPress"
9626
  msgstr ""
9627
 
9628
- #: languages/vue.php:3460
9629
  msgid "Create a membership website. Works automatically with ExactMetrics, no coding needed."
9630
  msgstr ""
9631
 
9632
- #: languages/vue.php:3463
9633
  msgid "Thirsty Affiliates"
9634
  msgstr ""
9635
 
9636
- #: languages/vue.php:3466
9637
  msgid "Manage all your affiliate links with features designed to help make bloggers more money."
9638
  msgstr ""
9639
 
9640
- #: languages/vue.php:3469
9641
  msgid "Upgrade to unlock advanced reporting and features designed to help you get more traffic and make more money from your website. Special Offer: Save 50% today."
9642
  msgstr ""
9643
 
9644
- #: languages/vue.php:3472
9645
  msgid "Advanced Coupons"
9646
  msgstr ""
9647
 
9648
- #: languages/vue.php:3475
9649
  msgid "Create coupons, reward loyal customers, and schedule promotions for your eCommerce store."
9650
  msgstr ""
9651
 
9652
- #: languages/vue.php:3478
9653
  msgid "PrettyLinks"
9654
  msgstr ""
9655
 
9656
- #: languages/vue.php:3481
9657
  msgid "Automatically monetize your website content with affiliate links added automatically to your content."
9658
  msgstr ""
9659
 
9660
- #: languages/vue.php:3484
9661
  msgid "Install Now"
9662
  msgstr ""
9663
 
9664
- #: languages/vue.php:3487
9665
  msgid "Online Marketing Guides & Resources"
9666
  msgstr ""
9667
 
9668
- #: languages/vue.php:3490
9669
  msgid "Read This Guide"
9670
  msgstr ""
9671
 
9672
- #: languages/vue.php:3496
9673
  msgid "Upgrade to unlock eCommerce tracking, Custom Dimensions, Form Tracking, and much more. Special Offer: Save 50% today."
9674
  msgstr ""
9675
 
9676
- #: languages/vue.php:3499
9677
  msgid "Traffic Tools"
9678
  msgstr ""
9679
 
9680
- #: languages/vue.php:3502
9681
  msgid "All in One SEO (AIOSEO)"
9682
  msgstr ""
9683
 
9684
- #: languages/vue.php:3505
9685
  msgid "The best WordPress SEO plugin that works automatically with ExactMetrics."
9686
  msgstr ""
9687
 
9688
- #: languages/vue.php:3508
9689
  msgid "PushEngage"
9690
  msgstr ""
9691
 
9692
- #: languages/vue.php:3511
9693
  msgid "Send push notifications to your visitors to drive more traffic and boost sales."
9694
  msgstr ""
9695
 
9696
- #: languages/vue.php:3514
9697
  msgid "Featured"
9698
  msgstr ""
9699
 
9700
- #: languages/vue.php:3517
9701
  msgid "Traffic"
9702
  msgstr ""
9703
 
9704
- #: languages/vue.php:3520
9705
  msgid "Revenue"
9706
  msgstr ""
9707
 
9708
- #: languages/vue.php:3523
9709
  msgid "Guides & Resources"
9710
  msgstr ""
9711
 
9712
- #: languages/vue.php:3526
9713
  msgid "Media Tracking"
9714
  msgstr ""
9715
 
9716
- #: languages/vue.php:3529
9717
  msgid "Get Started"
9718
  msgstr ""
9719
 
9720
- #: languages/vue.php:3532
9721
  msgid "Privacy Compliance Addon"
9722
  msgstr ""
9723
 
9724
- #: languages/vue.php:3535
9725
  msgid "Help Google Analytics become compliant with internet privacy laws like GDPR, PECR, and CCPA."
9726
  msgstr ""
9727
 
9728
- #: languages/vue.php:3538
9729
  msgid "Get access to advanced reports inside WordPress including search keywords report, real-time analytics dashboard, publishers / eCommerce report, custom dimensions, and more."
9730
  msgstr ""
9731
 
9732
- #: languages/vue.php:3541
9733
  msgid "Instantly enable enhanced eCommerce tracking, so you can measure conversions, sales, and revenue stats. Works with WooCommerce, Easy Digital Downloads, MemberPress, and more."
9734
  msgstr ""
9735
 
9736
- #: languages/vue.php:3544
9737
  msgid "20+ Advanced Tracking"
9738
  msgstr ""
9739
 
9740
- #: languages/vue.php:3547
9741
  msgid "Get access to advanced tracking features like form conversion tracking, author tracking, custom dimensions, scroll tracking, and more."
9742
  msgstr ""
9743
 
9744
- #: languages/vue.php:3550
9745
  msgid "Advanced Growth Tools"
9746
  msgstr ""
9747
 
9748
- #: languages/vue.php:3553
9749
  msgid "Get access to advanced growth tools such as popular posts addon, A/B testing tool, smart URL builder, and more."
9750
  msgstr ""
9751
 
9752
- #: languages/vue.php:3556
9753
  msgid "Track how your users interact with videos on your website."
9754
  msgstr ""
9755
 
9756
- #: languages/vue.php:3559
9757
  msgid "Error Processing"
9758
  msgstr ""
9759
 
9760
- #: languages/vue.php:3562
9761
  msgid "There was an error while processing some features. Please try again or you can skip this process for now"
9762
  msgstr ""
9763
 
9764
- #: languages/vue.php:3565
9765
  msgid "Which website features would you like to enable?"
9766
  msgstr ""
9767
 
9768
- #: languages/vue.php:3568
9769
  msgid "We’ve already selected our recommended features based on your site. "
9770
  msgstr ""
9771
 
9772
- #: languages/vue.php:3571
9773
  msgid "Other Addons"
9774
  msgstr ""
9775
 
9776
- #: languages/vue.php:3574
9777
  msgid "View all ExactMetrics addons"
9778
  msgstr ""
9779
 
9780
- #: languages/vue.php:3577
9781
  msgid "Standard Analytics & Reports"
9782
  msgstr ""
9783
 
9784
- #: languages/vue.php:3580
9785
  msgid "Get the reports and stats that matter right inside your WordPress Dashboard."
9786
  msgstr ""
9787
 
9788
- #: languages/vue.php:3583
9789
  msgid "Helps you see what links your users are clicking on your site."
9790
  msgstr ""
9791
 
9792
- #: languages/vue.php:3586
9793
  msgid "All In One SEO Toolkit"
9794
  msgstr ""
9795
 
9796
- #: languages/vue.php:3589
9797
  msgid "The best WordPress SEO plugin that works with ExactMetrics to boost your rankings."
9798
  msgstr ""
9799
 
9800
- #: languages/vue.php:3592
9801
  msgid "Smart Form Builder by WPForms"
9802
  msgstr ""
9803
 
9804
- #: languages/vue.php:3595
9805
  msgid "The most popular WordPress form plugin, trusted by over 5 million websites. Easily create contact forms, payment forms, surveys and more."
9806
  msgstr ""
9807
 
9808
- #: languages/vue.php:3598
9809
  msgid "Awesome! Tracking and Analytics are All Setup!"
9810
  msgstr ""
9811
 
9812
- #: languages/vue.php:3601
9813
  msgid "ExactMetrics is connected to Google Analytics and data is being collected."
9814
  msgstr ""
9815
 
9816
- #: languages/vue.php:3608
9817
  msgid "Complete Setup without Upgrading"
9818
  msgstr ""
9819
 
9820
- #: languages/vue.php:3611
9821
  msgid "Success"
9822
  msgstr ""
9823
 
9824
- #: languages/vue.php:3614
9825
  msgid "Connected to Google Analytics"
9826
  msgstr ""
9827
 
9828
- #: languages/vue.php:3617
9829
  msgid "Tracking Code Installed"
9830
  msgstr ""
9831
 
9832
- #: languages/vue.php:3620
9833
  msgid "Data Being Collected"
9834
  msgstr ""
9835
 
9836
  #. Translators: Add link to retrieve license from account area.
9837
- #: languages/vue.php:3624
9838
  msgid "Already purchased? Simply enter your license key below to connect with ExactMetrics PRO!"
9839
  msgstr ""
9840
 
9841
- #: languages/vue.php:3627
9842
  msgid "Verify License Key"
9843
  msgstr ""
9844
 
9845
- #: languages/vue.php:3630
9846
  msgid "Upgrade to Unlock These Features"
9847
  msgstr ""
9848
 
9849
- #: languages/vue.php:3633
9850
  msgid "To unlock the selected features, please upgrade to Pro and enter your license key below."
9851
  msgstr ""
9852
 
9853
- #: languages/vue.php:3636
9854
  msgid "%1$sBonus:%2$s Upgrade today and save %3$s50%% on a Pro License!%4$s (auto-applied at checkout)"
9855
  msgstr ""
9856
 
9857
- #: languages/vue.php:3639
9858
  msgid "Verifying License..."
9859
  msgstr ""
9860
 
9861
- #: languages/vue.php:3645
9862
  msgid "The following plugins will be installed: "
9863
  msgstr ""
9864
 
9865
- #: languages/vue.php:3648
9866
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
9867
  msgstr ""
9868
 
9869
- #: languages/vue.php:3651
9870
  msgid "Manually enter your GA4 Measurement ID"
9871
  msgstr ""
9872
 
9873
- #: languages/vue.php:3654
9874
  msgid "Warning: If you use a manual GA4 Measurement ID, you won't be able to use any of the reporting and some of the tracking features. Your UA code should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
9875
  msgstr ""
9876
 
9877
- #: languages/vue.php:3657
9878
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are a combination of numbers and letters."
9879
  msgstr ""
9880
 
9881
- #: languages/vue.php:3660
9882
  msgid "Your ExactMetrics license key has expired."
9883
  msgstr ""
9884
 
9885
- #: languages/vue.php:3663
9886
  msgid "Renew today to ensure Google Analytics continues to track properly."
9887
  msgstr ""
9888
 
9889
- #: languages/vue.php:3666
9890
  msgid "Click here."
9891
  msgstr ""
9892
 
9893
- #: languages/vue.php:3669
9894
  msgid "ExactMetrics makes it effortless for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
9895
  msgstr ""
9896
 
9897
- #: languages/vue.php:3672
9898
  msgid "License Expired"
9899
  msgstr ""
9900
 
9901
- #: languages/vue.php:3675
9902
  msgid "Expired"
9903
  msgstr ""
9904
 
9905
  #. Translators: Adds a link to the license renewal.
9906
- #: languages/vue.php:3679
9907
  msgid "To ensure tracking works properly, reactivate your license"
9908
  msgstr ""
9909
 
9910
- #: languages/vue.php:3682
9911
  msgid "Reactivate License"
9912
  msgstr ""
9913
 
9914
- #: languages/vue.php:3685
9915
  msgid "View All Reports"
9916
  msgstr ""
9917
 
9918
- #: languages/vue.php:3688
9919
  msgid "WP Simple Pay"
9920
  msgstr ""
9921
 
9922
  #. Translators: tag to make text italic starts, tag end.
9923
- #: languages/vue.php:3695
9924
  msgid "See What Your Website Visitors Are %1$sReally%2$s Thinking!"
9925
  msgstr ""
9926
 
9927
- #: languages/vue.php:3698
9928
  msgid "UserFeedback lets you easily collect feedback from your website in real time. You can use this important data to increase your traffic, sales, newsletter signups, engagement, and more."
9929
  msgstr ""
9930
 
9931
- #: languages/vue.php:3701
9932
  msgid "Understand exactly why visitors left your website, what convinced them to make a purchase, why they signed up for a newsletter, and more with real verbatim feedback"
9933
  msgstr ""
9934
 
9935
- #: languages/vue.php:3704
9936
  msgid "Ask open ended questions, run polls or surveys, gather ratings, and more with an easy survey builder"
9937
  msgstr ""
9938
 
9939
- #: languages/vue.php:3707
9940
  msgid "Customize targeting rules to get specific feedback on certain pages or products"
9941
  msgstr ""
9942
 
9943
- #: languages/vue.php:3710
9944
  msgid "Easily analyze your responses and export data"
9945
  msgstr ""
9946
 
9947
- #: languages/vue.php:3713
9948
  msgid "Install & Activate UserFeedback"
9949
  msgstr ""
9950
 
9951
- #: languages/vue.php:3716
9952
  msgid "Install UserFeedback by clicking the button below."
9953
  msgstr ""
9954
 
9955
- #: languages/vue.php:3719
9956
  msgid "Install UserFeedback"
9957
  msgstr ""
9958
 
9959
- #: languages/vue.php:3722
9960
  msgid "Set Up UserFeedback"
9961
  msgstr ""
9962
 
9963
- #: languages/vue.php:3725
9964
  msgid "Run the UserFeedback setup wizard to launch your first UserFeedback survey."
9965
  msgstr ""
9966
 
9967
- #: languages/vue.php:3728
9968
  msgid "Start Setup"
9969
  msgstr ""
9970
 
9971
- #: languages/vue.php:3731
9972
  msgid "Installing UserFeedback..."
9973
  msgstr ""
9974
 
9975
- #: languages/vue.php:3734
9976
  msgid "Activating UserFeedback..."
9977
  msgstr ""
9978
 
9979
- #: languages/vue.php:3737
9980
  msgid "Installed & Active"
9981
  msgstr ""
9982
 
9983
- #: languages/vue.php:3740
9984
  msgid "Oops! There was an error processing request. Please try again later."
9985
  msgstr ""
9986
 
9987
- #: languages/vue.php:3743
9988
  msgid "Oops! We could not save your changes. Please try again. If the problem persists, please %1$scontact our support%2$s team."
9989
  msgstr ""
9990
 
9991
- #: languages/vue.php:3746
9992
  msgid "Installing UserFeedback"
9993
  msgstr ""
9994
 
9995
- #: languages/vue.php:3749
9996
  msgid "Activating UserFeedback"
9997
  msgstr ""
9998
 
9999
- #: languages/vue.php:3752
10000
  msgid "Oops! Something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually."
10001
  msgstr ""
10002
 
10003
  #. Translators: Error status, error text, Support link tag starts with url and support link tag ends.
10004
- #: languages/vue.php:3756
10005
  msgid "Can't load settings. Error: %1$s, %2$s. Please %3$scontact our support%4$s team for assistance. "
10006
  msgstr ""
10007
 
10008
  #. Translators: Error status and error text, Support link tag starts with url and support link tag ends.
10009
- #: languages/vue.php:3760
10010
  msgid "Can't save settings. Error: %1$s, %2$s. Please %3$scontact our support%4$s team for assistance."
10011
  msgstr ""
10012
 
10013
  #. Translators: Support link tag starts with url and support link tag ends.
10014
- #: languages/vue.php:3764
10015
  msgid "Oops! There was an error, your settings were not saved. Please try again in a few minutes. If the issue persists, please %1$scontact our support%2$s team."
10016
  msgstr ""
10017
 
10018
  #. Translators: Support Link tag starts with URL, Support link tag ends, Error status and error text.
10019
- #: languages/vue.php:3768
10020
  msgid "Oops! There was an issue deactivating your license, please try again. If the issue persists, please %1$scontact our support team%2$s. Error: %3$s, %4$s"
10021
  msgstr ""
10022
 
10023
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10024
- #: languages/vue.php:3772
10025
  msgid "Oops! There was an issue deactivating your license, please try again. If the issue persists, please %1$scontact our support team%2$s."
10026
  msgstr ""
10027
 
10028
  #. Translators: Support Link tag starts with URL, Support link tag ends, Error status and error text.
10029
- #: languages/vue.php:3776
10030
  msgid "Oops! There was an issue verifying your license upgrade, please try again. If the issue persists, please %1$scontact our support team%2$s. Error: %3$s, %4$s"
10031
  msgstr ""
10032
 
10033
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10034
- #: languages/vue.php:3780
10035
  msgid "Oops! There was an issue verifying your license upgrade, please try again. If the issue persists, please %1$scontact our support team%2$s."
10036
  msgstr ""
10037
 
10038
  #. Translators: Support Link tag start with URL, Support link tag ends, Error status and error text.
10039
- #: languages/vue.php:3784
10040
  msgid "Oops! There was an issue loading your license details, please try again. If the issue persists please %1$scontact our support team%2$s. Error: %3$s, %4$s"
10041
  msgstr ""
10042
 
10043
- #: languages/vue.php:3787
10044
  msgid "Oops! There was an issue loading your license details, please try again. If the issue persists, please %1$scontact our support team%2$s."
10045
  msgstr ""
10046
 
10047
  #. Translators: Support Link tag start with URL, Support link tag ends, Error status and error text.
10048
- #: languages/vue.php:3791
10049
  msgid "Oops! There was an issue verifying your license, please try again. If the issue persists, please %1$scontact our support team%2$s. Error: %3$s, %4$s"
10050
  msgstr ""
10051
 
10052
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10053
- #: languages/vue.php:3795
10054
  msgid "Oops! There was an issue verifying your license, please try again. If the issue persists, please %1$scontact our support team%2$s."
10055
  msgstr ""
10056
 
10057
  #. Translators: Support Link tag start with URL, Support link tag ends, Error status and error text.
10058
- #: languages/vue.php:3799
10059
  msgid "Oops! There was an issue validating your license, please try again. If the issue persists, please %1$scontact our support team%2$s. Error: %3$s, %4$s"
10060
  msgstr ""
10061
 
10062
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10063
- #: languages/vue.php:3803
10064
  msgid "Oops! There was an issue validating your license, please try again. If the issue persists, please %1$scontact our support team%2$s."
10065
  msgstr ""
10066
 
10067
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10068
- #: languages/vue.php:3807
10069
  msgid "Oops! We can't verify deauthentication. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team."
10070
  msgstr ""
10071
 
10072
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10073
- #: languages/vue.php:3811
10074
  msgid "Can't load authentication details. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team. "
10075
  msgstr ""
10076
 
10077
  #. Translators: Support page link tag starts and support page link tag ends.
10078
- #: languages/vue.php:3815
10079
  msgid "Oops! There was an error loading your site details. Please refresh the page and try again. If the issue persists, please contact our support team."
10080
  msgstr ""
10081
 
10082
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10083
- #: languages/vue.php:3819
10084
  msgid "Can't save settings. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team."
10085
  msgstr ""
10086
 
10087
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10088
- #: languages/vue.php:3823
10089
  msgid "Oops! We can't authenticate. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team. "
10090
  msgstr ""
10091
 
10092
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10093
- #: languages/vue.php:3827
10094
  msgid "Oops! We can't reauthenticate. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team"
10095
  msgstr ""
10096
 
10097
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10098
- #: languages/vue.php:3831
10099
  msgid "Oops! We can't verify credentials. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team."
10100
  msgstr ""
10101
 
10102
  #. Translators: Error status, error text, Support link tag starts with url and support link tag ends.
10103
- #: languages/vue.php:3835
10104
  msgid "Can't load report data. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team."
10105
  msgstr ""
10106
 
10107
  #. Translators: Error status and error text.
10108
- #: languages/vue.php:3839
10109
  msgid "Oops! Can't install WPForms. Error: %1$s, %2$s"
10110
  msgstr ""
10111
 
10112
  #. Translators: Error status and error text.
10113
- #: languages/vue.php:3843
10114
  msgid "Oops! Can't activate addon. Error: %1$s, %2$s"
10115
  msgstr ""
10116
 
10117
- #: languages/vue.php:3846
10118
  msgid "Oops! There was an error activating the addon. Please try again. If the issue persists, please %1$scontact our support%2$s team."
10119
  msgstr ""
10120
 
10121
  #. Translators: Error status and error text.
10122
- #: languages/vue.php:3850
10123
  msgid "Oops! Can't deactivate addon. Error: %1$s, %2$s"
10124
  msgstr ""
10125
 
10126
  #. Translators: Error status and error text.
10127
- #: languages/vue.php:3854
10128
  msgid "Oops! Can't install plugin. Error: %1$s, %2$s"
10129
  msgstr ""
10130
 
10131
  #. Translators: Error status and error text.
10132
- #: languages/vue.php:3858
10133
  msgid "Oops! Can't install addon. Error: %1$s, %2$s"
10134
  msgstr ""
10135
 
10136
  #. Translators: Support link tag starts with url and support link tag ends.
10137
- #: languages/vue.php:3862
10138
  msgid "Oops! An error occurred while importing your settings. Please ensure you selected the correct file. If the issue continues please %1$scontact our support%2$s team."
10139
  msgstr ""
10140
 
10141
  #. Translators: Support link tag starts with url and support link tag ends.
10142
- #: languages/vue.php:3866
10143
  msgid "Oops! Can't load posts. Please try again in a few minutes. If the issue persists, please %1$scontact our support%2$s team."
10144
  msgstr ""
10145
 
10146
- #: languages/vue.php:3869
10147
  msgid "Website Badge"
10148
  msgstr ""
10149
 
10150
- #: languages/vue.php:3872
10151
  msgid "Publishers Report"
10152
  msgstr ""
10153
 
10154
- #: languages/vue.php:3875
10155
  msgid "Improve Your Conversion Rate With Insights Into Which Content Works Best."
10156
  msgstr ""
10157
 
10158
- #: languages/vue.php:3878
10159
  msgid "Top Affilliate Links"
10160
  msgstr ""
10161
 
10162
- #: languages/vue.php:3881
10163
  msgid "Scroll Depth"
10164
  msgstr ""
10165
 
10166
- #: languages/vue.php:3884
10167
  msgid "eCommerce Report"
10168
  msgstr ""
10169
 
10170
- #: languages/vue.php:3887
10171
  msgid "Increase Sales and Make More Money With Enhanced eCommerce Insights."
10172
  msgstr ""
10173
 
10174
- #: languages/vue.php:3890
10175
  msgid "10+ eCommerce Integrations"
10176
  msgstr ""
10177
 
10178
- #: languages/vue.php:3893
10179
  msgid "Average Order Value"
10180
  msgstr ""
10181
 
10182
- #: languages/vue.php:3896
10183
  msgid "Total Revenue"
10184
  msgstr ""
10185
 
10186
- #: languages/vue.php:3899
10187
  msgid "Number of Transactions"
10188
  msgstr ""
10189
 
10190
- #: languages/vue.php:3902
10191
  msgid "Increase Engagement and Unlock New Insights About Your Site."
10192
  msgstr ""
10193
 
10194
- #: languages/vue.php:3905
10195
  msgid "User ID Tracking"
10196
  msgstr ""
10197
 
10198
- #: languages/vue.php:3908
10199
  msgid "Post Types"
10200
  msgstr ""
10201
 
10202
- #: languages/vue.php:3911
10203
  msgid "Tag Tracking"
10204
  msgstr ""
10205
 
10206
- #: languages/vue.php:3914
10207
  msgid "Categories"
10208
  msgstr ""
10209
 
10210
- #: languages/vue.php:3917
10211
  msgid "SEO Scores"
10212
  msgstr ""
10213
 
10214
- #: languages/vue.php:3920
10215
  msgid "Publish Times"
10216
  msgstr ""
10217
 
10218
- #: languages/vue.php:3923
10219
  msgid "Focus Keywords"
10220
  msgstr ""
10221
 
10222
- #: languages/vue.php:3926
10223
  msgid "Track Every Type of Web Form and Gain Visibility Into Your Customer Journey."
10224
  msgstr ""
10225
 
10226
- #: languages/vue.php:3929
10227
  msgid "Conversion Counts"
10228
  msgstr ""
10229
 
10230
- #: languages/vue.php:3932
10231
  msgid "Impression Counts"
10232
  msgstr ""
10233
 
10234
- #: languages/vue.php:3935
10235
  msgid "Conversion Rates"
10236
  msgstr ""
10237
 
10238
- #: languages/vue.php:3938
10239
  msgid "See Exactly How Visitors Find Your Website From Google."
10240
  msgstr ""
10241
 
10242
- #: languages/vue.php:3941
10243
  msgid "Top Google Search Terms"
10244
  msgstr ""
10245
 
10246
- #: languages/vue.php:3944
10247
  msgid "Number of Clicks"
10248
  msgstr ""
10249
 
10250
- #: languages/vue.php:3947
10251
  msgid "Click-through Ratio"
10252
  msgstr ""
10253
 
10254
- #: languages/vue.php:3950
10255
  msgid "Average Results Position"
10256
  msgstr ""
10257
 
10258
- #: languages/vue.php:3953
10259
  msgid "Realtime Report"
10260
  msgstr ""
10261
 
10262
- #: languages/vue.php:3956
10263
  msgid "See Who And What is Happening on Your Website in Realtime."
10264
  msgstr ""
10265
 
10266
- #: languages/vue.php:3959
10267
  msgid "Top Page Views"
10268
  msgstr ""
10269
 
10270
- #: languages/vue.php:3962
10271
  msgid "Current Active Users"
10272
  msgstr ""
10273
 
10274
- #: languages/vue.php:3965
10275
  msgid "Top Referral Sources"
10276
  msgstr ""
10277
 
10278
- #: languages/vue.php:3968
10279
  msgid "Pageviews Per Minute"
10280
  msgstr ""
10281
 
10282
- #: languages/vue.php:3971
10283
  msgid "Top Countries"
10284
  msgstr ""
10285
 
10286
- #: languages/vue.php:3974
10287
  msgid "Top Cities"
10288
  msgstr ""
10289
 
10290
- #: languages/vue.php:3977
10291
  msgid "Improve Your User Experience and Improve Search Engine Rankings."
10292
  msgstr ""
10293
 
10294
- #: languages/vue.php:3980
10295
  msgid "Overall Site Speed Score"
10296
  msgstr ""
10297
 
10298
- #: languages/vue.php:3983
10299
  msgid "Server Response Times"
10300
  msgstr ""
10301
 
10302
- #: languages/vue.php:3986
10303
  msgid "Mobile and Desktop Scores"
10304
  msgstr ""
10305
 
10306
- #: languages/vue.php:3989
10307
  msgid "First Contentful Paint"
10308
  msgstr ""
10309
 
10310
- #: languages/vue.php:3992
10311
  msgid "Automatic Recommendations"
10312
  msgstr ""
10313
 
10314
- #: languages/vue.php:3995
10315
  msgid "Total Blocking Time"
10316
  msgstr ""
10317
 
10318
- #: languages/vue.php:3998
10319
  msgid "On-Demand Audits"
10320
  msgstr ""
10321
 
10322
- #: languages/vue.php:4001
10323
  msgid "Time to Interactive"
10324
  msgstr ""
10325
 
10326
- #: languages/vue.php:4004
10327
  msgid "Automatic Display"
10328
  msgstr ""
10329
 
10330
- #: languages/vue.php:4007
10331
  msgid "Automatically Display Website Badge in Website Footer"
10332
  msgstr ""
10333
 
10334
- #: languages/vue.php:4010
10335
  msgid "Enabling will add the chosen badge in your website’s footer."
10336
  msgstr ""
10337
 
10338
- #: languages/vue.php:4013
10339
  msgid "Enable Automatic Display"
10340
  msgstr ""
10341
 
10342
- #: languages/vue.php:4016
10343
  msgid "Appearance"
10344
  msgstr ""
10345
 
10346
- #: languages/vue.php:4019
10347
  msgid "Choose your badge style."
10348
  msgstr ""
10349
 
10350
- #: languages/vue.php:4022
10351
  msgid "Position"
10352
  msgstr ""
10353
 
10354
- #: languages/vue.php:4025
10355
  msgid "Select the position of the badge in your website’s footer."
10356
  msgstr ""
10357
 
10358
- #: languages/vue.php:4028
10359
  msgid "Manual Display"
10360
  msgstr ""
10361
 
10362
- #: languages/vue.php:4031
10363
  msgid "Copy"
10364
  msgstr ""
10365
 
10366
- #: languages/vue.php:4034
10367
  msgid "Light"
10368
  msgstr ""
10369
 
10370
- #: languages/vue.php:4037
10371
  msgid "Dark"
10372
  msgstr ""
10373
 
10374
- #: languages/vue.php:4040
10375
  msgid "Left"
10376
  msgstr ""
10377
 
10378
- #: languages/vue.php:4043
10379
  msgid "Center"
10380
  msgstr ""
10381
 
10382
- #: languages/vue.php:4046
10383
  msgid "Right"
10384
  msgstr ""
10385
 
10386
- #: languages/vue.php:4049
10387
  msgid "Show ExactMetrics Badge"
10388
  msgstr ""
10389
 
10390
- #: languages/vue.php:4052
10391
  msgid "Build trust with website visitors by automatically placing a ExactMetrics badge in your website’s footer."
10392
  msgstr ""
10393
 
10394
- #: languages/vue.php:4055
10395
  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 or GT-XXXXX where the X's are numbers."
10396
  msgstr ""
10397
 
10398
- #: languages/vue.php:4058
10399
  msgid "Conversion Tools"
10400
  msgstr ""
10401
 
10402
- #: languages/vue.php:4061
10403
  msgid "Get the #1 conversion optimization plugin to convert your growing website traffic into subscribers, leads and sales."
10404
  msgstr ""
10405
 
10406
- #: languages/vue.php:4064
10407
  msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX or GT-XXXXX where the X's are numbers."
10408
  msgstr ""
10409
 
10410
- #: languages/vue.php:4067
10411
  msgid "Your Measurement ID should look like G-XXXXXXXXXX or GT-XXXXX where the X's are combination of numbers and letters."
10412
  msgstr ""
10413
 
10414
- #: languages/vue.php:4071
10415
  msgid "Media Report"
10416
  msgstr ""
10417
 
10418
- #: languages/vue.php:4074
10419
  msgid "Easily See Which Videos Are Most Popular."
10420
  msgstr ""
10421
 
10422
- #: languages/vue.php:4077
10423
  msgid "The Media Report allows you to see which video are performing better and which video have lower performance so you can optimize your video content."
10424
  msgstr ""
10425
 
10426
- #: languages/vue.php:4080
10427
  msgid "Videos Plays, Average Duration, and Completions"
10428
  msgstr ""
10429
 
10430
- #: languages/vue.php:4083
10431
  msgid "Works with YouTube, Vimeo, and HTML 5 Videos"
10432
  msgstr ""
10433
 
10434
- #: languages/vue.php:4086
10435
  msgid "Compare stats over time"
10436
  msgstr ""
10437
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10438
  #: lite/includes/admin/connect.php:42
10439
  msgid "Oops! You are not allowed to install plugins. Please contact your site administrator."
10440
  msgstr ""
@@ -10525,10 +10606,6 @@ msgstr ""
10525
  msgid "Real Time"
10526
  msgstr ""
10527
 
10528
- #: lite/includes/admin/reports/report-year-in-review.php:22
10529
- msgid "Year in Review"
10530
- msgstr ""
10531
-
10532
  #: lite/includes/admin/tools.php:10
10533
  msgid "Want even more fine tuned control over your website analytics?"
10534
  msgstr ""
2
  # This file is distributed under the same license as the ExactMetrics Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: ExactMetrics Pro 7.11.0\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/monsterinsights-temp\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2022-12-12T17:58:10+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
+ "X-Generator: WP-CLI 2.7.1\n"
15
  "X-Domain: google-analytics-dashboard-for-wp\n"
16
 
17
  #. Plugin Name of the plugin
18
+ #: languages/vue.php:3489
19
  msgid "ExactMetrics Pro"
20
  msgstr ""
21
 
113
  #: includes/admin/admin.php:34
114
  #: includes/admin/admin.php:42
115
  #: includes/admin/admin.php:230
116
+ #: languages/vue.php:543
117
  msgid "Settings"
118
  msgstr ""
119
 
129
 
130
  #: includes/admin/admin.php:39
131
  #: includes/admin/admin.php:131
132
+ #: languages/vue.php:2307
133
  msgid "Reports"
134
  msgstr ""
135
 
139
 
140
  #: includes/admin/admin.php:51
141
  #: languages/gutenberg.php:83
142
+ #: languages/vue.php:1003
143
  msgid "Popular Posts"
144
  msgstr ""
145
 
173
 
174
  #: includes/admin/admin.php:71
175
  #: includes/admin/admin.php:147
176
+ #: languages/vue.php:160
177
  msgid "About Us"
178
  msgstr ""
179
 
192
  #: includes/admin/admin.php:76
193
  #: includes/admin/notifications/notification-upgrade-to-pro-high-traffic.php:41
194
  #: includes/admin/notifications/notification-upgrade-to-pro.php:33
195
+ #: languages/vue.php:1053
196
  msgid "Upgrade to Pro"
197
  msgstr ""
198
 
220
 
221
  #: includes/admin/admin.php:220
222
  #: includes/admin/admin.php:223
223
+ #: languages/vue.php:1028
224
  msgid "Support"
225
  msgstr ""
226
 
231
  #: includes/admin/notifications/notification-upgrade-for-events-reporting.php:31
232
  #: includes/admin/notifications/notification-upgrade-for-google-optimize.php:32
233
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:31
234
+ #: includes/admin/reports/abstract-report.php:460
235
+ #: languages/vue.php:1160
236
  msgid "Get ExactMetrics Pro"
237
  msgstr ""
238
 
242
  msgstr ""
243
 
244
  #: includes/admin/admin.php:335
245
+ #: languages/vue.php:1151
246
  msgid "Please Setup Website Analytics to See Audience Insights"
247
  msgstr ""
248
 
249
  #: includes/admin/admin.php:336
250
+ #: languages/vue.php:1157
251
  msgid "Connect ExactMetrics and Setup Website Analytics"
252
  msgstr ""
253
 
254
  #: includes/admin/admin.php:338
255
+ #: includes/admin/common.php:912
256
+ #: includes/admin/common.php:938
257
+ #: includes/admin/common.php:971
258
  #: includes/admin/notifications/notification-audience.php:45
259
  #: includes/admin/notifications/notification-bounce-rate.php:47
260
  #: includes/admin/notifications/notification-headline-analyzer.php:39
261
  #: includes/admin/notifications/notification-mobile-device-low-traffic.php:41
262
  #: includes/admin/notifications/notification-returning-visitors.php:43
263
  #: includes/admin/notifications/notification-traffic-dropping.php:43
264
+ #: languages/vue.php:339
265
  msgid "Learn More"
266
  msgstr ""
267
 
268
  #: includes/admin/admin.php:340
269
+ #: languages/vue.php:1154
270
  msgid "ExactMetrics, WordPress analytics plugin, helps you connect your website with Google Analytics, so you can see how people find and use your website. Over 3 million website owners use ExactMetrics to see the stats that matter and grow their business."
271
  msgstr ""
272
 
277
 
278
  #. Translators: Adds a link to the license renewal.
279
  #: includes/admin/admin.php:363
280
+ #: languages/vue.php:480
281
  msgid "Your license key for ExactMetrics has expired. %1$sPlease click here to renew your license key.%2$s"
282
  msgstr ""
283
 
284
  #: includes/admin/admin.php:365
285
+ #: languages/vue.php:483
286
  msgid "Your license key for ExactMetrics has been disabled. Please use a different key."
287
  msgstr ""
288
 
289
  #: includes/admin/admin.php:367
290
  #: includes/admin/api-auth.php:303
291
+ #: languages/vue.php:486
292
  msgid "Your license key for ExactMetrics is invalid. The key no longer exists or the user associated with the key has been deleted. Please use a different key."
293
  msgstr ""
294
 
435
  msgstr ""
436
 
437
  #. Translators: Placeholders are for links to fix the issue.
438
+ #: includes/admin/common.php:770
439
  msgid "ExactMetrics has detected that it's files are being blocked. This is usually caused by a adblock browser plugin (particularly uBlock Origin), or a conflicting WordPress theme or plugin. This issue only affects the admin side of ExactMetrics. To solve this, ensure ExactMetrics is whitelisted for your website URL in any adblock browser plugin you use. For step by step directions on how to do this, %1$sclick here%2$s. If this doesn't solve the issue (rare), send us a ticket %3$shere%2$s and we'll be happy to help diagnose the issue."
440
  msgstr ""
441
 
442
+ #: includes/admin/common.php:893
443
  msgid "ACTION REQUIRED: Your PHP version is putting your site at risk!"
444
  msgstr ""
445
 
446
+ #: includes/admin/common.php:895
447
  msgid "ACTION REQUIRED: Speed your website up 400% with a single email!"
448
  msgstr ""
449
 
450
  #. Translators: Placeholder is for the current PHP version.
451
+ #: includes/admin/common.php:902
452
  msgid "In the next major release of ExactMetrics we are planning to remove support for the version of PHP you are using (%s). This insecure version is no longer supported by WordPress itself, so you are already missing out on the latest features of WordPress along with critical updates for security and performance (modern PHP versions make websites much faster)."
453
  msgstr ""
454
 
455
  #. Translators: Placeholders add a link to an article.
456
+ #: includes/admin/common.php:905
457
  msgid "To ensure ExactMetrics and other plugins on your site continue to function properly, and avoid putting your site at risk, please take a few minutes to ask your website hosting provider to upgrade the version of PHP to a modern PHP version (7.2 or newer). We provide helpful templates for how to ask them %1$shere%2$s."
458
  msgstr ""
459
 
460
  #. Translators: Placeholders add a link to an article.
461
+ #: includes/admin/common.php:906
462
  msgid "Upgrading your PHP version will make sure you are able to continue using WordPress without issues in the future, keep your site secure, and will also make your website up to 400% faster!"
463
  msgstr ""
464
 
465
+ #: includes/admin/common.php:925
466
  msgid "ACTION REQUIRED: Your WordPress version is putting your site at risk!"
467
  msgstr ""
468
 
469
  #. Translators: Placeholder is for the current WordPress version.
470
+ #: includes/admin/common.php:928
471
  msgid "In the next major release of ExactMetrics we are planning to remove support for the version of WordPress you are using (version %s). This version is several years out of date, and most plugins do not support this version anymore, so you could be missing out on critical updates for performance and security already!"
472
  msgstr ""
473
 
474
+ #: includes/admin/common.php:930
475
  msgid "The good news: updating WordPress has never been easier and only takes a few moments."
476
  msgstr ""
477
 
478
  #. Translators: Placeholders add links to articles.
479
+ #: includes/admin/common.php:932
480
  msgid "To update, we recommend following this %1$sstep by step guide for updating WordPress%2$s from IsItWP and afterwards check out %3$sWhy You Should Always Use the Latest Version of WordPress%4$s on WPBeginner."
481
  msgstr ""
482
 
483
+ #: includes/admin/common.php:966
484
  msgid "View 2021 Year in Review report!"
485
  msgstr ""
486
 
487
+ #: includes/admin/common.php:967
488
+ #: languages/vue.php:3334
489
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2022!"
490
  msgstr ""
491
 
506
 
507
  #: includes/admin/exclude-page-metabox.php:144
508
  #: languages/gutenberg.php:354
509
+ #: languages/vue.php:3126
510
  msgid "Upgrade"
511
  msgstr ""
512
 
703
  #: includes/admin/notifications/notification-upgrade-for-custom-dimensions.php:25
704
  #: includes/admin/notifications/notification-upgrade-for-events-reporting.php:25
705
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:25
706
+ #: languages/vue.php:1741
707
  #: lite/includes/admin/helpers.php:85
708
  msgid "Upgrade to ExactMetrics Pro"
709
  msgstr ""
738
 
739
  #: includes/admin/notifications/notification-upgrade-for-form-conversion.php:31
740
  #: includes/admin/notifications/notification-upgrade-for-search-console.php:32
741
+ #: includes/admin/reports/abstract-report.php:457
742
+ #: languages/vue.php:231
743
  msgid "Upgrade Now"
744
  msgstr ""
745
 
860
  msgid "Invalid date range."
861
  msgstr ""
862
 
863
+ #: includes/admin/reports/abstract-report.php:301
864
  msgid "You must be properly authenticated with ExactMetrics to use our reports. Please use our %1$ssetup wizard%2$s to get started."
865
  msgstr ""
866
 
867
  #. Translators: Placeholders add the license level and the report title.
868
+ #: includes/admin/reports/abstract-report.php:388
869
  msgid "You currently have a %1$s level license, but this report requires at least a %2$s level license to view the %3$s. Please upgrade to view this report."
870
  msgstr ""
871
 
872
+ #: includes/admin/reports/abstract-report.php:402
873
  msgid "Ready to Get Analytics Super-Powers?"
874
  msgstr ""
875
 
876
+ #: includes/admin/reports/abstract-report.php:404
877
  msgid "(And Crush Your Competition?)"
878
  msgstr ""
879
 
880
  #. Translators: License level and smiley.
881
+ #: includes/admin/reports/abstract-report.php:410
882
  msgid "Hey there! It looks like you've got the %1$s license installed on your site. That's awesome! %s"
883
  msgstr ""
884
 
885
  #. Translators: Placeholders add the report title and license level.
886
+ #: includes/admin/reports/abstract-report.php:417
887
  msgid "Do you want to access to %1$s reporting right now%2$s in your WordPress Dashboard? That comes with the %3$s level%4$s of our paid packages. You'll need to upgrade your license to get instant access."
888
  msgstr ""
889
 
890
  #. Translators: Placeholdes add links to the account area and a guide.
891
+ #: includes/admin/reports/abstract-report.php:424
892
  msgid "It's easy! To upgrade, navigate to %1$sMy Account%2$s on ExactMetrics.com, go to the licenses tab, and click upgrade. We also have a %3$sstep by step guide%4$s with pictures of this process."
893
  msgstr ""
894
 
895
+ #: includes/admin/reports/abstract-report.php:428
896
+ #: includes/admin/reports/abstract-report.php:451
897
  msgid "If you have any questions, don't hesitate to reach out. We're here to help."
898
  msgstr ""
899
 
900
  #. Translators: Placeholder adds a smiley face.
901
+ #: includes/admin/reports/abstract-report.php:433
902
  msgid "Hey there! %s It looks like you've got the free version of ExactMetrics installed on your site. That's awesome!"
903
  msgstr ""
904
 
905
  #. Translators: Placeholders make the text bold, add the license level and add a link to upgrade.
906
+ #: includes/admin/reports/abstract-report.php:440
907
  msgid "Do you you want to access to %1$s reporting right now%2$s in your WordPress Dashboard? That comes with %3$s level%4$s of our paid packages. To get instant access, you'll want to buy a ExactMetrics license, which also gives you access to powerful addons, expanded reporting (including the ability to use custom date ranges), comprehensive tracking features (like UserID tracking) and access to our world-class support team."
908
  msgstr ""
909
 
910
  #. Translators: Placeholders make the text bold, add the license level and add a link to upgrade.
911
+ #: includes/admin/reports/abstract-report.php:447
912
  msgid "Upgrading is easy! To upgrade, navigate to %1$ssour pricing page%2$s, purchase the required license, and then follow the %3$sinstructions in the email receipt%4$s to upgrade. It only takes a few minutes to unlock the most powerful, yet easy to use analytics tracking system for WordPress."
913
  msgstr ""
914
 
915
+ #: includes/admin/reports/abstract-report.php:494
916
  msgid "Please ask your webmaster to enable this addon."
917
  msgstr ""
918
 
919
  #: includes/admin/reports/overview.php:34
920
+ #: languages/vue.php:442
921
  msgid "Overview"
922
  msgstr ""
923
 
1018
  msgstr ""
1019
 
1020
  #: includes/admin/routes.php:535
1021
+ #: languages/vue.php:3687
1022
  msgid "Start accepting one-time and recurring payments on your WordPress site without setting up a shopping cart. No code required."
1023
  msgstr ""
1024
 
1474
  msgstr ""
1475
 
1476
  #: includes/gutenberg/headline-tool/headline-tool.php:318
1477
+ #: languages/vue.php:549
1478
  msgid "General"
1479
  msgstr ""
1480
 
4874
  msgstr ""
4875
 
4876
  #: languages/gutenberg.php:77
4877
+ #: languages/vue.php:534
4878
  msgid "Inline Popular Posts"
4879
  msgstr ""
4880
 
4911
  msgstr ""
4912
 
4913
  #: languages/gutenberg.php:107
4914
+ #: languages/vue.php:3082
4915
  msgid "Wide-Layout Options"
4916
  msgstr ""
4917
 
4920
  msgstr ""
4921
 
4922
  #: languages/gutenberg.php:113
4923
+ #: languages/vue.php:3085
4924
  msgid "Adjust the number of columns displayed when the widget is placed in a wide container."
4925
  msgstr ""
4926
 
4927
  #: languages/gutenberg.php:116
4928
+ #: languages/vue.php:3106
4929
  msgid "Post Count"
4930
  msgstr ""
4931
 
4934
  msgstr ""
4935
 
4936
  #: languages/gutenberg.php:122
4937
+ #: languages/vue.php:3088
4938
  msgid "Display Options"
4939
  msgstr ""
4940
 
4947
  msgstr ""
4948
 
4949
  #: languages/gutenberg.php:131
4950
+ #: languages/vue.php:1957
4951
  msgid "Widget Title"
4952
  msgstr ""
4953
 
4956
  msgstr ""
4957
 
4958
  #: languages/gutenberg.php:137
4959
+ #: languages/vue.php:3094
4960
  msgid "Display Author"
4961
  msgstr ""
4962
 
4963
  #: languages/gutenberg.php:140
4964
+ #: languages/vue.php:3097
4965
  msgid "Display Date"
4966
  msgstr ""
4967
 
4968
  #: languages/gutenberg.php:143
4969
+ #: languages/vue.php:3100
4970
  msgid "Display Comments"
4971
  msgstr ""
4972
 
5187
  msgstr ""
5188
 
5189
  #: languages/gutenberg.php:312
5190
+ #: languages/vue.php:991
5191
  msgid "Headline Analyzer"
5192
  msgstr ""
5193
 
5200
  msgstr ""
5201
 
5202
  #: languages/gutenberg.php:321
5203
+ #: languages/vue.php:110
5204
  #: lite/includes/admin/metaboxes.php:47
5205
  msgid "Last 30 days"
5206
  msgstr ""
5207
 
5208
  #: languages/gutenberg.php:324
5209
+ #: languages/vue.php:97
5210
  #: lite/includes/admin/metaboxes.php:51
5211
  msgid "Yesterday"
5212
  msgstr ""
5268
  msgid "Loading Settings"
5269
  msgstr ""
5270
 
5271
+ #: languages/vue.php:15
5272
  msgid "Please wait..."
5273
  msgstr ""
5274
 
5275
+ #: languages/vue.php:18
5276
  msgid "Saving Changes..."
5277
  msgstr ""
5278
 
5279
+ #: languages/vue.php:21
5280
  msgid "Settings Updated"
5281
  msgstr ""
5282
 
5283
  #. Translators: Add a link to the onboarding wizard.
5284
+ #: languages/vue.php:25
5285
  msgid "You need to %1$sconnect ExactMetrics%2$s first"
5286
  msgstr ""
5287
 
5288
+ #: languages/vue.php:28
5289
  msgid "Could Not Save Changes"
5290
  msgstr ""
5291
 
5292
+ #: languages/vue.php:31
5293
  msgid "Loading new report data"
5294
  msgstr ""
5295
 
5296
  #. Translators: Adds an arrow icon.
5297
+ #: languages/vue.php:36
5298
  msgid "Continue %s"
5299
  msgstr ""
5300
 
5301
+ #: languages/vue.php:40
5302
  msgid "Error"
5303
  msgstr ""
5304
 
5305
+ #: languages/vue.php:43
5306
  msgid "Please try again."
5307
  msgstr ""
5308
 
5309
+ #: languages/vue.php:46
5310
  msgid "Unlock the Publishers Report and Focus on the Content that Matters"
5311
  msgstr ""
5312
 
5313
+ #: languages/vue.php:49
5314
  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."
5315
  msgstr ""
5316
 
5317
+ #: languages/vue.php:52
5318
  msgid "Unlock the Publishers Report and Focus on the Content That Matters"
5319
  msgstr ""
5320
 
5321
+ #: languages/vue.php:55
5322
  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."
5323
  msgstr ""
5324
 
5325
+ #: languages/vue.php:58
5326
  msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
5327
  msgstr ""
5328
 
5329
+ #: languages/vue.php:61
5330
  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."
5331
  msgstr ""
5332
 
5333
+ #: languages/vue.php:64
5334
  msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
5335
  msgstr ""
5336
 
5337
+ #: languages/vue.php:67
5338
  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."
5339
  msgstr ""
5340
 
5341
+ #: languages/vue.php:70
5342
  msgid "Unlock the Forms Report and Improve Conversions"
5343
  msgstr ""
5344
 
5345
+ #: languages/vue.php:73
5346
  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."
5347
  msgstr ""
5348
 
5349
+ #: languages/vue.php:76
5350
  msgid "Unlock the Search Console Report and See How People Find Your Website"
5351
  msgstr ""
5352
 
5353
+ #: languages/vue.php:79
5354
  msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
5355
  msgstr ""
5356
 
5357
+ #: languages/vue.php:82
5358
  msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
5359
  msgstr ""
5360
 
5361
+ #: languages/vue.php:85
5362
  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."
5363
  msgstr ""
5364
 
5365
+ #: languages/vue.php:88
5366
  msgid "Unlock the Site Speed Report and Improve the Performance of Your Site"
5367
  msgstr ""
5368
 
5369
+ #: languages/vue.php:91
5370
  msgid "See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking"
5371
  msgstr ""
5372
 
5373
+ #: languages/vue.php:94
5374
  msgid "Today"
5375
  msgstr ""
5376
 
5377
+ #: languages/vue.php:100
5378
  msgid "Last Week"
5379
  msgstr ""
5380
 
5381
+ #: languages/vue.php:103
5382
  msgid "Last Month"
5383
  msgstr ""
5384
 
5385
+ #: languages/vue.php:106
5386
  msgid "Last 7 days"
5387
  msgstr ""
5388
 
5389
+ #: languages/vue.php:113
5390
  msgid "Loading settings"
5391
  msgstr ""
5392
 
5393
  #. Translators: Number of visitors.
5394
+ #: languages/vue.php:117
5395
  msgid "See how %s visitors found your site!"
5396
  msgstr ""
5397
 
5398
  #. Translators: Number of visitors.
5399
+ #: languages/vue.php:121
5400
  msgid "Your website was visited by %s users in the last 30 days."
5401
  msgstr ""
5402
 
5403
+ #: languages/vue.php:124
5404
  msgid "See the full analytics report!"
5405
  msgstr ""
5406
 
5407
+ #: languages/vue.php:128
5408
  msgid "Overview Report"
5409
  msgstr ""
5410
 
5411
  #. Translators: Current PHP version and recommended PHP version.
5412
+ #: languages/vue.php:132
5413
  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."
5414
  msgstr ""
5415
 
5416
  #. Translators: Current WordPress version.
5417
+ #: languages/vue.php:136
5418
  msgid "ExactMetrics has detected that your site is running an outdated version of WordPress (%s). ExactMetrics will stop supporting WordPress versions lower than 4.9 in 2020. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
5419
  msgstr ""
5420
 
5421
+ #: languages/vue.php:139
5422
  msgid "Yikes! PHP Update Required"
5423
  msgstr ""
5424
 
5425
  #. Translators: Current PHP version and recommended PHP version.
5426
+ #: languages/vue.php:143
5427
  msgid "ExactMetrics has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure."
5428
  msgstr ""
5429
 
5430
+ #: languages/vue.php:146
5431
  msgid "Learn more about updating PHP"
5432
  msgstr ""
5433
 
5434
+ #: languages/vue.php:149
5435
  msgid "Yikes! WordPress Update Required"
5436
  msgstr ""
5437
 
5438
  #. Translators: Current WordPress version.
5439
+ #: languages/vue.php:153
5440
  msgid "ExactMetrics has detected that your site is running an outdated version of WordPress (%s). Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
5441
  msgstr ""
5442
 
5443
+ #: languages/vue.php:156
5444
  msgid "Learn more about updating WordPress"
5445
  msgstr ""
5446
 
5447
+ #: languages/vue.php:164
5448
  msgid "Getting Started"
5449
  msgstr ""
5450
 
5451
+ #: languages/vue.php:169
5452
  msgid "Lite vs Pro"
5453
  msgstr ""
5454
 
5455
+ #: languages/vue.php:172
5456
  msgid "Success! "
5457
  msgstr ""
5458
 
5459
+ #: languages/vue.php:175
5460
  msgid "You're now using ExactMetrics Pro with all the features."
5461
  msgstr ""
5462
 
5463
  #. Translators: Placeholder gets replaced with an arrow icon.
5464
+ #: languages/vue.php:179
5465
  msgid "Get Started %s"
5466
  msgstr ""
5467
 
5468
  #. Translators: Error status and error text.
5469
+ #: languages/vue.php:183
5470
  msgid "Can't load report data. Error: %1$s, %2$s"
5471
  msgstr ""
5472
 
5473
+ #: languages/vue.php:186
5474
  msgid "Error loading report data"
5475
  msgstr ""
5476
 
5477
  #. Translators: Makes the text bold.
5478
+ #: languages/vue.php:190
5479
  msgid "%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
5480
  msgstr ""
5481
 
5482
  #. Translators: Makes the text bold.
5483
+ #: languages/vue.php:194
5484
  msgid "%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights."
5485
  msgstr ""
5486
 
5487
  #. Translators: Makes the text bold.
5488
+ #: languages/vue.php:198
5489
  msgid "%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more."
5490
  msgstr ""
5491
 
5492
  #. Translators: Makes text bold.
5493
+ #: languages/vue.php:202
5494
  msgid "%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress."
5495
  msgstr ""
5496
 
5497
  #. Translators: Makes the text bold.
5498
+ #: languages/vue.php:206
5499
  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."
5500
  msgstr ""
5501
 
5502
  #. Translators: Makes the text bold.
5503
+ #: languages/vue.php:210
5504
  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."
5505
  msgstr ""
5506
 
5507
  #. Translators: Makes the text bold.
5508
+ #: languages/vue.php:214
5509
  msgid "%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically."
5510
  msgstr ""
5511
 
5512
  #. Translators: Makes text bold.
5513
+ #: languages/vue.php:218
5514
  msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click."
5515
  msgstr ""
5516
 
5517
  #. Translators: Adds a link and an arrow icon.
5518
+ #: languages/vue.php:222
5519
  msgid "%1$sSee All Features%2$s"
5520
  msgstr ""
5521
 
5522
+ #: languages/vue.php:225
5523
  msgid "Pro Plan"
5524
  msgstr ""
5525
 
5526
+ #: languages/vue.php:228
5527
  msgid "per year"
5528
  msgstr ""
5529
 
5530
+ #: languages/vue.php:234
5531
  msgid "Upgrade to ExactMetrics Pro Now"
5532
  msgstr ""
5533
 
5534
+ #: languages/vue.php:237
5535
  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!"
5536
  msgstr ""
5537
 
5538
+ #: languages/vue.php:240
5539
  msgid "Daniel Monaghan - Experienced"
5540
  msgstr ""
5541
 
5542
+ #: languages/vue.php:243
5543
  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."
5544
  msgstr ""
5545
 
5546
+ #: languages/vue.php:246
5547
  msgid "Naomi Spirit - From This Day"
5548
  msgstr ""
5549
 
5550
+ #: languages/vue.php:249
5551
  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!"
5552
  msgstr ""
5553
 
5554
+ #: languages/vue.php:252
5555
  msgid "Julie Dupuis - Faraway Land Travel"
5556
  msgstr ""
5557
 
5558
+ #: languages/vue.php:255
5559
  msgid "Guides and Documentation:"
5560
  msgstr ""
5561
 
5562
+ #: languages/vue.php:262
5563
  msgid "Upgrade to PRO"
5564
  msgstr ""
5565
 
5566
+ #: languages/vue.php:265
5567
  msgid "eCommerce Tracking"
5568
  msgstr ""
5569
 
5570
+ #: languages/vue.php:268
5571
  msgid "Custom Dimensions"
5572
  msgstr ""
5573
 
5574
+ #: languages/vue.php:271
5575
  msgid "Form Tracking"
5576
  msgstr ""
5577
 
5578
+ #: languages/vue.php:274
5579
  msgid "AMP Support"
5580
  msgstr ""
5581
 
5582
+ #: languages/vue.php:277
5583
  msgid "Author Tracking"
5584
  msgstr ""
5585
 
5586
+ #: languages/vue.php:280
5587
  msgid "EU Compliance Addon"
5588
  msgstr ""
5589
 
5590
+ #: languages/vue.php:283
5591
  msgid "Real Time Report"
5592
  msgstr ""
5593
 
5594
+ #: languages/vue.php:286
5595
  msgid "Google Optimize"
5596
  msgstr ""
5597
 
5598
+ #: languages/vue.php:289
5599
  #: lite/includes/admin/reports/report-queries.php:22
5600
  msgid "Search Console"
5601
  msgstr ""
5602
 
5603
+ #: languages/vue.php:292
5604
  msgid "Custom Date Ranges"
5605
  msgstr ""
5606
 
5607
+ #: languages/vue.php:295
5608
+ #: languages/vue.php:931
5609
  msgid "Getting Started with ExactMetrics"
5610
  msgstr ""
5611
 
5612
+ #: languages/vue.php:298
5613
+ #: languages/vue.php:934
5614
  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."
5615
  msgstr ""
5616
 
5617
+ #: languages/vue.php:301
5618
  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."
5619
  msgstr ""
5620
 
5621
+ #: languages/vue.php:304
5622
  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!."
5623
  msgstr ""
5624
 
5625
+ #: languages/vue.php:307
5626
  msgid "Launch the wizard!"
5627
  msgstr ""
5628
 
5629
+ #: languages/vue.php:311
5630
  msgid "Welcome to"
5631
  msgstr ""
5632
 
5633
  #. Translators: Adds a line break.
5634
+ #: languages/vue.php:315
5635
  msgid "Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin"
5636
  msgstr ""
5637
 
5638
  #. Translators: Makes the product name bold.
5639
+ #: languages/vue.php:319
5640
  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."
5641
  msgstr ""
5642
 
5643
+ #: languages/vue.php:322
5644
  msgid "ExactMetrics Features & Addons"
5645
  msgstr ""
5646
 
5647
+ #: languages/vue.php:325
5648
  msgid "Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market."
5649
  msgstr ""
5650
 
5651
  #. Translators: Placeholder is replaced with WPForms.
5652
+ #: languages/vue.php:329
5653
  msgid "Recommended Plugin: %s"
5654
  msgstr ""
5655
 
5656
+ #: languages/vue.php:332
5657
  msgid "Install"
5658
  msgstr ""
5659
 
5660
+ #: languages/vue.php:335
5661
  msgid "Activate"
5662
  msgstr ""
5663
 
5664
+ #: languages/vue.php:342
5665
  msgid "ExactMetrics encountered an error loading your report data"
5666
  msgstr ""
5667
 
5668
+ #: languages/vue.php:345
5669
  msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
5670
  msgstr ""
5671
 
5672
+ #: languages/vue.php:348
5673
+ #: languages/vue.php:1854
5674
  msgid "Reconnect ExactMetrics"
5675
  msgstr ""
5676
 
5677
+ #: languages/vue.php:351
5678
  msgid "Re-Authenticating"
5679
  msgstr ""
5680
 
5681
+ #: languages/vue.php:355
5682
  msgid "Ok"
5683
  msgstr ""
5684
 
5685
+ #: languages/vue.php:358
5686
+ #: languages/vue.php:870
5687
  msgid "ExactMetrics Addons"
5688
  msgstr ""
5689
 
5690
+ #: languages/vue.php:361
5691
  msgid "Search Addons"
5692
  msgstr ""
5693
 
5694
+ #: languages/vue.php:364
5695
  msgid "Save Changes"
5696
  msgstr ""
5697
 
5698
+ #: languages/vue.php:367
5699
  msgid "Exit Setup"
5700
  msgstr ""
5701
 
5702
+ #: languages/vue.php:370
5703
  msgid "Time to Purchase"
5704
  msgstr ""
5705
 
5706
+ #: languages/vue.php:373
5707
  msgid "This list shows how many days from first visit it took users to purchase products from your site."
5708
  msgstr ""
5709
 
5710
+ #: languages/vue.php:376
5711
  msgid "Sessions to Purchase"
5712
  msgstr ""
5713
 
5714
+ #: languages/vue.php:379
5715
  msgid "This list shows the number of sessions it took users before they purchased a product from your website."
5716
  msgstr ""
5717
 
5718
+ #: languages/vue.php:382
5719
  msgid "New Customers"
5720
  msgstr ""
5721
 
5722
+ #: languages/vue.php:385
5723
  msgid "This list shows the percentage of new customers who purchased a product from your website."
5724
  msgstr ""
5725
 
5726
+ #: languages/vue.php:388
5727
  msgid "Abandoned Checkouts"
5728
  msgstr ""
5729
 
5730
+ #: languages/vue.php:391
5731
  msgid "This list shows the percentage of carts that never went through the checkout process."
5732
  msgstr ""
5733
 
5734
+ #: languages/vue.php:394
5735
  msgid "Top Posts/Pages"
5736
  msgstr ""
5737
 
5738
+ #: languages/vue.php:397
5739
  msgid "This list shows the most viewed posts and pages on your website."
5740
  msgstr ""
5741
 
5742
+ #: languages/vue.php:400
5743
  msgid "New vs. Returning Visitors"
5744
  msgstr ""
5745
 
5746
+ #: languages/vue.php:403
5747
  msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
5748
  msgstr ""
5749
 
5750
+ #: languages/vue.php:406
5751
  msgid "Device Breakdown"
5752
  msgstr ""
5753
 
5754
+ #: languages/vue.php:409
5755
  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."
5756
  msgstr ""
5757
 
5758
+ #: languages/vue.php:412
5759
  msgid "Top Landing Pages"
5760
  msgstr ""
5761
 
5762
+ #: languages/vue.php:415
5763
  msgid "This list shows the top pages users first land on when visiting your website."
5764
  msgstr ""
5765
 
5766
+ #: languages/vue.php:418
5767
  msgid "Top Exit Pages"
5768
  msgstr ""
5769
 
5770
+ #: languages/vue.php:421
5771
  msgid "This list shows the top pages users exit your website from."
5772
  msgstr ""
5773
 
5774
+ #: languages/vue.php:424
5775
  msgid "Top Outbound Links"
5776
  msgstr ""
5777
 
5778
+ #: languages/vue.php:427
5779
  msgid "This list shows the top links clicked on your website that go to another website."
5780
  msgstr ""
5781
 
5782
+ #: languages/vue.php:430
5783
  msgid "Top Affiliate Links"
5784
  msgstr ""
5785
 
5786
+ #: languages/vue.php:433
5787
  msgid "This list shows the top affiliate links your visitors clicked on."
5788
  msgstr ""
5789
 
5790
+ #: languages/vue.php:436
5791
  msgid "Top Download Links"
5792
  msgstr ""
5793
 
5794
+ #: languages/vue.php:439
5795
  msgid "This list shows the download links your visitors clicked the most."
5796
  msgstr ""
5797
 
5798
+ #: languages/vue.php:445
5799
  msgid "Top Products"
5800
  msgstr ""
5801
 
5802
+ #: languages/vue.php:448
5803
  msgid "This list shows the top selling products on your website."
5804
  msgstr ""
5805
 
5806
+ #: languages/vue.php:451
5807
  msgid "Top Conversion Sources"
5808
  msgstr ""
5809
 
5810
+ #: languages/vue.php:454
5811
  msgid "This list shows the top referral websites in terms of product revenue."
5812
  msgstr ""
5813
 
5814
+ #: languages/vue.php:457
5815
  msgid "Total Add/Remove"
5816
  msgstr ""
5817
 
5818
+ #: languages/vue.php:460
5819
  msgid "Analytics"
5820
  msgstr ""
5821
 
5822
  #. Translators: Adds an arrow icon.
5823
+ #: languages/vue.php:464
5824
  msgid "View All Reports %s"
5825
  msgstr ""
5826
 
5827
+ #: languages/vue.php:467
5828
  msgid "You must connect with ExactMetrics before you can view reports."
5829
  msgstr ""
5830
 
5831
+ #: languages/vue.php:470
5832
  msgid "ExactMetrics makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
5833
  msgstr ""
5834
 
5835
+ #: languages/vue.php:473
5836
  msgid "Launch Setup Wizard"
5837
  msgstr ""
5838
 
5839
+ #: languages/vue.php:476
5840
  msgid "Please ask your webmaster to connect ExactMetrics to Google Analytics."
5841
  msgstr ""
5842
 
5843
+ #: languages/vue.php:489
5844
  msgid "See Quick Links"
5845
  msgstr ""
5846
 
5847
+ #: languages/vue.php:492
5848
  msgid "Suggest a Feature"
5849
  msgstr ""
5850
 
5851
+ #: languages/vue.php:495
5852
  msgid "Join Our Community"
5853
  msgstr ""
5854
 
5855
+ #: languages/vue.php:498
5856
  msgid "Support & Docs"
5857
  msgstr ""
5858
 
5859
+ #: languages/vue.php:501
5860
  msgid "Upgrade to Pro &#187;"
5861
  msgstr ""
5862
 
5863
+ #: languages/vue.php:504
5864
  #: lite/includes/admin/reports/report-publisher.php:22
5865
  msgid "Publishers"
5866
  msgstr ""
5867
 
5868
+ #: languages/vue.php:508
5869
  #: lite/includes/admin/reports/report-ecommerce.php:22
5870
  msgid "eCommerce"
5871
  msgstr ""
5872
 
5873
+ #: languages/vue.php:511
5874
  msgid "Dimensions Report"
5875
  msgstr ""
5876
 
5877
+ #: languages/vue.php:514
5878
  #: lite/includes/admin/reports/report-forms.php:22
5879
  msgid "Forms"
5880
  msgstr ""
5881
 
5882
+ #: languages/vue.php:517
5883
  msgid "Real-Time"
5884
  msgstr ""
5885
 
5886
+ #: languages/vue.php:521
5887
  msgid "Site Speed Report"
5888
  msgstr ""
5889
 
5890
+ #: languages/vue.php:525
5891
  msgid "2020 Year in Review"
5892
  msgstr ""
5893
 
5894
+ #: languages/vue.php:528
5895
  msgid "Import Export"
5896
  msgstr ""
5897
 
5898
+ #: languages/vue.php:531
5899
  msgid "PrettyLinks Integration"
5900
  msgstr ""
5901
 
5902
+ #: languages/vue.php:537
5903
  msgid "Popular Posts Widget"
5904
  msgstr ""
5905
 
5906
+ #: languages/vue.php:540
5907
  msgid "Popular Products"
5908
  msgstr ""
5909
 
5910
+ #: languages/vue.php:546
5911
  msgid "Sub menu item for WooCommerce Analytics"
5912
  msgstr ""
5913
 
5914
+ #: languages/vue.php:552
5915
  msgid "Engagement"
5916
  msgstr ""
5917
 
5918
+ #: languages/vue.php:555
5919
  msgid "Publisher"
5920
  msgstr ""
5921
 
5922
+ #: languages/vue.php:558
5923
  msgid "Conversions"
5924
  msgstr ""
5925
 
5926
+ #: languages/vue.php:561
5927
  msgid "Advanced"
5928
  msgstr ""
5929
 
5930
+ #: languages/vue.php:564
5931
  msgid "URL Builder"
5932
  msgstr ""
5933
 
5934
  #. Translators: Adds a link to documentation.
5935
+ #: languages/vue.php:568
5936
  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"
5937
  msgstr ""
5938
 
5939
  #. Translators: Adds link to activate/install plugin and documentation.
5940
+ #: languages/vue.php:572
5941
  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"
5942
  msgstr ""
5943
 
5944
  #. Translators: Adds a link to documentation.
5945
+ #: languages/vue.php:576
5946
  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"
5947
  msgstr ""
5948
 
5949
  #. Translators: Adds link to activate/install plugin and documentation.
5950
+ #: languages/vue.php:580
5951
  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"
5952
  msgstr ""
5953
 
5954
+ #: languages/vue.php:583
5955
  msgid "Installing Addon"
5956
  msgstr ""
5957
 
5958
+ #: languages/vue.php:586
5959
  msgid "Activating Addon"
5960
  msgstr ""
5961
 
5962
+ #: languages/vue.php:589
5963
  msgid "Addon Activated"
5964
  msgstr ""
5965
 
5966
+ #: languages/vue.php:592
5967
  msgid "Loading report data"
5968
  msgstr ""
5969
 
5970
+ #: languages/vue.php:595
5971
  msgid "Please activate manually"
5972
  msgstr ""
5973
 
5974
  #. Translators: Adds the error status and status text.
5975
+ #: languages/vue.php:599
5976
  msgid "Error: %1$s, %2$s"
5977
  msgstr ""
5978
 
5979
+ #: languages/vue.php:602
5980
  msgid "Error Activating Addon"
5981
  msgstr ""
5982
 
5983
+ #: languages/vue.php:605
5984
  #: lite/includes/admin/wp-site-health.php:375
5985
  #: lite/includes/admin/wp-site-health.php:401
5986
  #: lite/includes/admin/wp-site-health.php:428
5987
  msgid "View Addons"
5988
  msgstr ""
5989
 
5990
+ #: languages/vue.php:608
5991
  msgid "Dismiss"
5992
  msgstr ""
5993
 
5994
+ #: languages/vue.php:611
5995
  msgid "Redirecting"
5996
  msgstr ""
5997
 
5998
+ #: languages/vue.php:614
5999
  msgid "Please wait"
6000
  msgstr ""
6001
 
6002
+ #: languages/vue.php:617
6003
  msgid "activate"
6004
  msgstr ""
6005
 
6006
+ #: languages/vue.php:620
6007
  msgid "install"
6008
  msgstr ""
6009
 
6010
+ #: languages/vue.php:623
6011
  msgid "Visit addons page"
6012
  msgstr ""
6013
 
6014
+ #: languages/vue.php:626
6015
  msgid "Report Unavailable"
6016
  msgstr ""
6017
 
6018
  #. Translators: Install/Activate the addon.
6019
+ #: languages/vue.php:630
6020
  msgid "%s Addon"
6021
  msgstr ""
6022
 
6023
+ #: languages/vue.php:633
6024
  msgid "Go Back To Reports"
6025
  msgstr ""
6026
 
6027
+ #: languages/vue.php:636
6028
  msgid "Enable Enhanced eCommerce"
6029
  msgstr ""
6030
 
6031
  #. Translators: Placeholders are replaced with the current step number out of the total number of steps.
6032
+ #: languages/vue.php:640
6033
  msgid "Step %1$s of %2$s"
6034
  msgstr ""
6035
 
6036
+ #: languages/vue.php:643
6037
  msgid "Go back"
6038
  msgstr ""
6039
 
6040
+ #: languages/vue.php:646
6041
  msgid "Welcome to ExactMetrics!"
6042
  msgstr ""
6043
 
6044
+ #: languages/vue.php:649
6045
  msgid "Let's get you set up."
6046
  msgstr ""
6047
 
6048
+ #: languages/vue.php:652
6049
  msgid "Save and Continue"
6050
  msgstr ""
6051
 
6052
+ #: languages/vue.php:655
6053
  msgid "Which category best describes your website?"
6054
  msgstr ""
6055
 
6056
+ #: languages/vue.php:658
6057
  msgid "We will recommend the optimal settings for ExactMetrics based on your choice."
6058
  msgstr ""
6059
 
6060
+ #: languages/vue.php:661
6061
  msgid "Business Website"
6062
  msgstr ""
6063
 
6064
  #. Translators: Make text bold.
6065
+ #: languages/vue.php:665
6066
  msgid "Publisher %1$s(Blog)%2$s"
6067
  msgstr ""
6068
 
6069
+ #: languages/vue.php:668
6070
  msgid "Ecommerce"
6071
  msgstr ""
6072
 
6073
+ #: languages/vue.php:671
6074
  msgid "Connect ExactMetrics to Your Website"
6075
  msgstr ""
6076
 
6077
+ #: languages/vue.php:674
6078
  msgid "ExactMetrics connects Google Analytics to WordPress and shows you stats that matter."
6079
  msgstr ""
6080
 
6081
+ #: languages/vue.php:677
6082
  msgid "Connect Google Analytics + WordPress"
6083
  msgstr ""
6084
 
6085
+ #: languages/vue.php:680
6086
  msgid "You will be taken to the ExactMetrics website where you'll need to connect your Analytics account."
6087
  msgstr ""
6088
 
6089
+ #: languages/vue.php:683
6090
  msgid "Whoops, something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually."
6091
  msgstr ""
6092
 
6093
+ #: languages/vue.php:686
6094
  msgid "Manually enter your UA code"
6095
  msgstr ""
6096
 
6097
+ #: languages/vue.php:689
6098
  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."
6099
  msgstr ""
6100
 
6101
+ #: languages/vue.php:692
6102
  msgid "UA code can't be empty"
6103
  msgstr ""
6104
 
6105
+ #: languages/vue.php:695
6106
  msgid "Saving UA code..."
6107
  msgstr ""
6108
 
6109
+ #: languages/vue.php:698
6110
  msgid "ExactMetrics Recommends WPForms"
6111
  msgstr ""
6112
 
6113
+ #: languages/vue.php:701
6114
  msgid "Built by the folks behind ExactMetrics, WPForms is the most beginner friendly form plugin in the market."
6115
  msgstr ""
6116
 
6117
+ #: languages/vue.php:704
6118
  msgid "Used on over 4,000,000 websites!"
6119
  msgstr ""
6120
 
6121
+ #: languages/vue.php:707
6122
  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!"
6123
  msgstr ""
6124
 
6125
+ #: languages/vue.php:710
6126
  msgid "Skip this Step"
6127
  msgstr ""
6128
 
6129
+ #: languages/vue.php:713
6130
  msgid "Continue & Install WPForms"
6131
  msgstr ""
6132
 
6133
+ #: languages/vue.php:716
6134
  msgid "Installing..."
6135
  msgstr ""
6136
 
6137
+ #: languages/vue.php:719
6138
  msgid "Recommended Settings"
6139
  msgstr ""
6140
 
6141
+ #: languages/vue.php:722
6142
  msgid "ExactMetrics recommends the following settings based on your configuration."
6143
  msgstr ""
6144
 
6145
+ #: languages/vue.php:725
6146
  msgid "Events Tracking"
6147
  msgstr ""
6148
 
6149
+ #: languages/vue.php:728
6150
  msgid "Must have for all click tracking on site."
6151
  msgstr ""
6152
 
6153
+ #: languages/vue.php:731
6154
  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."
6155
  msgstr ""
6156
 
6157
+ #: languages/vue.php:734
6158
  msgid "Enhanced Link Attribution"
6159
  msgstr ""
6160
 
6161
+ #: languages/vue.php:737
6162
  msgid "Improves the accuracy of your In-Page Analytics."
6163
  msgstr ""
6164
 
6165
+ #: languages/vue.php:740
6166
  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."
6167
  msgstr ""
6168
 
6169
+ #: languages/vue.php:743
6170
  msgid "Install Updates Automatically"
6171
  msgstr ""
6172
 
6173
+ #: languages/vue.php:746
6174
  msgid "Get the latest features, bug fixes, and security updates as they are released."
6175
  msgstr ""
6176
 
6177
+ #: languages/vue.php:749
6178
  msgid "To ensure you get the latest bug fixes and security updates and avoid needing to spend time logging into your WordPress site to update ExactMetrics, we offer the ability to automatically have ExactMetrics update itself."
6179
  msgstr ""
6180
 
6181
+ #: languages/vue.php:752
6182
  msgid "File Download Tracking"
6183
  msgstr ""
6184
 
6185
+ #: languages/vue.php:755
6186
  msgid "Helps you see file downloads data."
6187
  msgstr ""
6188
 
6189
+ #: languages/vue.php:758
6190
  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."
6191
  msgstr ""
6192
 
6193
  #. Translators: Example path (/go/).
6194
+ #: languages/vue.php:763
6195
  msgid "Path (example: %s)"
6196
  msgstr ""
6197
 
6198
+ #: languages/vue.php:767
6199
  msgid "Path has to start with a / and have no spaces"
6200
  msgstr ""
6201
 
6202
  #. Translators: Example label (aff).
6203
+ #: languages/vue.php:772
6204
  msgid "Label (example: %s)"
6205
  msgstr ""
6206
 
6207
+ #: languages/vue.php:776
6208
  msgid "Label can't contain any spaces"
6209
  msgstr ""
6210
 
6211
+ #: languages/vue.php:779
6212
  msgid "Helps you increase affiliate revenue."
6213
  msgstr ""
6214
 
6215
+ #: languages/vue.php:782
6216
  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."
6217
  msgstr ""
6218
 
6219
+ #: languages/vue.php:785
6220
  msgid "Affiliate Link Tracking"
6221
  msgstr ""
6222
 
6223
+ #: languages/vue.php:788
6224
  msgid "Who Can See Reports"
6225
  msgstr ""
6226
 
6227
+ #: languages/vue.php:791
6228
  msgid "These user roles will be able to access ExactMetrics' reports in the WordPress admin area."
6229
  msgstr ""
6230
 
6231
+ #: languages/vue.php:794
6232
  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."
6233
  msgstr ""
6234
 
6235
+ #: languages/vue.php:797
6236
  msgid "Save and continue"
6237
  msgstr ""
6238
 
6239
+ #: languages/vue.php:800
6240
  msgid "Events Tracking is enabled the moment you set up ExactMetrics"
6241
  msgstr ""
6242
 
6243
+ #: languages/vue.php:803
6244
  msgid "Enhanced Link Attribution is enabled the moment you set up ExactMetrics"
6245
  msgstr ""
6246
 
6247
+ #: languages/vue.php:806
6248
  msgid "+ Add Role"
6249
  msgstr ""
6250
 
6251
  #. Translators: Placeholders are used for making text bold and adding a link.
6252
+ #: languages/vue.php:810
6253
  msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
6254
  msgstr ""
6255
 
6256
+ #: languages/vue.php:813
6257
  #: lite/includes/admin/reports/report-dimensions.php:22
6258
  msgid "Dimensions"
6259
  msgstr ""
6260
 
6261
+ #: languages/vue.php:816
6262
  msgid "Site Speed"
6263
  msgstr ""
6264
 
6265
+ #: languages/vue.php:819
6266
  msgid "License Key"
6267
  msgstr ""
6268
 
6269
  #. Translators: Add link to retrieve license key from account.
6270
+ #: languages/vue.php:823
6271
  msgid "Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
6272
  msgstr ""
6273
 
6274
+ #: languages/vue.php:826
6275
  msgid "Google Authentication"
6276
  msgstr ""
6277
 
6278
+ #: languages/vue.php:829
6279
  msgid "Miscellaneous"
6280
  msgstr ""
6281
 
6282
+ #: languages/vue.php:832
6283
  msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
6284
  msgstr ""
6285
 
6286
+ #: languages/vue.php:835
6287
  msgid "Hide Announcements"
6288
  msgstr ""
6289
 
6290
+ #: languages/vue.php:838
6291
  msgid "You're using ExactMetrics Lite – no license needed. Enjoy!"
6292
  msgstr ""
6293
 
6294
+ #. Translators: Adds link to upgrade.
6295
+ #: languages/vue.php:843
6296
  msgid "To unlock more features consider %1$supgrading to PRO%2$s."
6297
  msgstr ""
6298
 
6299
+ #: languages/vue.php:846
6300
  msgid "Receive 50% off automatically applied at the checkout!"
6301
  msgstr ""
6302
 
6303
+ #: languages/vue.php:849
6304
  msgid "See all features"
6305
  msgstr ""
6306
 
6307
+ #: languages/vue.php:852
6308
  msgid "Setup Wizard"
6309
  msgstr ""
6310
 
6311
+ #: languages/vue.php:855
6312
  msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
6313
  msgstr ""
6314
 
6315
+ #: languages/vue.php:858
6316
  msgid "Relaunch Setup Wizard"
6317
  msgstr ""
6318
 
6319
+ #: languages/vue.php:861
6320
  msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
6321
  msgstr ""
6322
 
6323
+ #: languages/vue.php:864
6324
  msgid "No addons found."
6325
  msgstr ""
6326
 
6327
+ #: languages/vue.php:867
6328
  msgid "Refresh Addons"
6329
  msgstr ""
6330
 
6331
  #. Translators: Adds a line break.
6332
+ #: languages/vue.php:874
6333
  msgid "Upgrade to Pro to unlock addons and other great features."
6334
  msgstr ""
6335
 
6336
+ #: languages/vue.php:877
6337
  msgid "As a valued ExactMetrics Lite user you receive 50% off, automaticaly applied at checkout!"
6338
  msgstr ""
6339
 
6340
+ #: languages/vue.php:880
6341
  msgid "Refreshing Addons"
6342
  msgstr ""
6343
 
6344
+ #: languages/vue.php:883
6345
  msgid "Get ExactMetrics Pro Today and Unlock all the Powerful Features"
6346
  msgstr ""
6347
 
6348
  #. Translators: Placeholders make the text green.
6349
+ #: languages/vue.php:887
6350
  msgid "Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
6351
  msgstr ""
6352
 
6353
+ #: languages/vue.php:890
6354
  msgid "How to Connect to Google Analytics"
6355
  msgstr ""
6356
 
6357
+ #: languages/vue.php:893
6358
  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."
6359
  msgstr ""
6360
 
6361
+ #: languages/vue.php:896
6362
  msgid "Guide and Checklist for Advanced Insights"
6363
  msgstr ""
6364
 
6365
+ #: languages/vue.php:899
6366
  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."
6367
  msgstr ""
6368
 
6369
+ #: languages/vue.php:902
6370
  msgid "GDPR Guide"
6371
  msgstr ""
6372
 
6373
+ #: languages/vue.php:905
6374
  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. "
6375
  msgstr ""
6376
 
6377
+ #: languages/vue.php:908
6378
  msgid "How to Install and Activate ExactMetrics Addons"
6379
  msgstr ""
6380
 
6381
+ #: languages/vue.php:911
6382
  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."
6383
  msgstr ""
6384
 
6385
+ #: languages/vue.php:914
6386
  msgid "Enabling eCommerce Tracking and Reports"
6387
  msgstr ""
6388
 
6389
+ #: languages/vue.php:917
6390
  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."
6391
  msgstr ""
6392
 
6393
+ #: languages/vue.php:920
6394
  msgid "Read Documentation"
6395
  msgstr ""
6396
 
6397
  #. Translators: Makes the text bold.
6398
+ #: languages/vue.php:924
6399
  msgid "%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress."
6400
  msgstr ""
6401
 
6402
  #. Translators: Makes the text bold.
6403
+ #: languages/vue.php:928
6404
  msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post type, users, and other events with 1-click."
6405
  msgstr ""
6406
 
6407
+ #: languages/vue.php:937
6408
  msgid "One-click Complete eCommerce tracking"
6409
  msgstr ""
6410
 
6411
+ #: languages/vue.php:940
6412
  msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
6413
  msgstr ""
6414
 
6415
+ #: languages/vue.php:943
6416
  msgid "Forms Tracking"
6417
  msgstr ""
6418
 
6419
+ #: languages/vue.php:946
6420
  msgid "One-click Form Events Tracking"
6421
  msgstr ""
6422
 
6423
+ #: languages/vue.php:949
6424
  msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
6425
  msgstr ""
6426
 
6427
+ #: languages/vue.php:952
6428
  msgid "WordPress Admin Area Reports"
6429
  msgstr ""
6430
 
6431
+ #: languages/vue.php:955
6432
  msgid "Standard Reports"
6433
  msgstr ""
6434
 
6435
+ #: languages/vue.php:958
6436
  msgid "Overview Reports for the last 30 days."
6437
  msgstr ""
6438
 
6439
+ #: languages/vue.php:961
6440
  msgid "Advanced Reports"
6441
  msgstr ""
6442
 
6443
+ #: languages/vue.php:964
6444
  msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
6445
  msgstr ""
6446
 
6447
+ #: languages/vue.php:967
6448
  msgid "Dashboard Widget"
6449
  msgstr ""
6450
 
6451
+ #: languages/vue.php:970
6452
  msgid "Basic Widget"
6453
  msgstr ""
6454
 
6455
+ #: languages/vue.php:973
6456
  msgid "Overview Report Synopsis"
6457
  msgstr ""
6458
 
6459
+ #: languages/vue.php:976
6460
  msgid "Advanced Dashboard Widget"
6461
  msgstr ""
6462
 
6463
+ #: languages/vue.php:979
6464
  msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
6465
  msgstr ""
6466
 
6467
+ #: languages/vue.php:982
6468
  msgid "Publisher Reports"
6469
  msgstr ""
6470
 
6471
+ #: languages/vue.php:985
6472
  msgid "Advanced Publisher Reports & Tracking"
6473
  msgstr ""
6474
 
6475
+ #: languages/vue.php:988
6476
  msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
6477
  msgstr ""
6478
 
6479
+ #: languages/vue.php:994
6480
  msgid "Email Summaries"
6481
  msgstr ""
6482
 
6483
+ #: languages/vue.php:997
6484
  msgid "Included"
6485
  msgstr ""
6486
 
6487
+ #: languages/vue.php:1000
6488
  msgid "Get weekly traffic reports directly in your inbox."
6489
  msgstr ""
6490
 
6491
+ #: languages/vue.php:1006
6492
  msgid "Basic Options"
6493
  msgstr ""
6494
 
6495
+ #: languages/vue.php:1009
6496
  msgid "Order Popular Posts by comments or shares with 3 simple theme choices."
6497
  msgstr ""
6498
 
6499
+ #: languages/vue.php:1012
6500
  msgid "Dynamic Popular Posts & Popular Products"
6501
  msgstr ""
6502
 
6503
+ #: languages/vue.php:1015
6504
  msgid "Display Popular Posts based on your actual traffic data from Google Analytics and choose from over 20 advanced themes. Display Popular WooCommerce products using widgets or Gutenberg blocks."
6505
  msgstr ""
6506
 
6507
+ #: languages/vue.php:1019
6508
  msgid "Not Available"
6509
  msgstr ""
6510
 
6511
+ #: languages/vue.php:1022
6512
  msgid "Complete Custom Dimensions Tracking"
6513
  msgstr ""
6514
 
6515
+ #: languages/vue.php:1025
6516
  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"
6517
  msgstr ""
6518
 
6519
+ #: languages/vue.php:1031
6520
  msgid "Limited Support"
6521
  msgstr ""
6522
 
6523
+ #: languages/vue.php:1034
6524
  msgid "Priority Support"
6525
  msgstr ""
6526
 
6527
+ #: languages/vue.php:1037
6528
  msgid "Get the most out of ExactMetrics by upgrading to Pro and unlocking all of the powerful features."
6529
  msgstr ""
6530
 
6531
+ #: languages/vue.php:1040
6532
  msgid "Feature"
6533
  msgstr ""
6534
 
6535
+ #: languages/vue.php:1043
6536
  msgid "Lite"
6537
  msgstr ""
6538
 
6539
+ #: languages/vue.php:1046
6540
  msgid "Pro"
6541
  msgstr ""
6542
 
6543
+ #: languages/vue.php:1049
6544
  msgid "Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout."
6545
  msgstr ""
6546
 
6547
+ #: languages/vue.php:1056
6548
  msgid "Universal Tracking"
6549
  msgstr ""
6550
 
6551
+ #: languages/vue.php:1059
6552
  msgid "Custom Google Analytics Link Tracking"
6553
  msgstr ""
6554
 
6555
+ #: languages/vue.php:1062
6556
  msgid "Standard Tracking"
6557
  msgstr ""
6558
 
6559
+ #: languages/vue.php:1065
6560
  msgid "Advanced Tracking"
6561
  msgstr ""
6562
 
6563
+ #: languages/vue.php:1068
6564
  msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
6565
  msgstr ""
6566
 
6567
+ #: languages/vue.php:1071
6568
  msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
6569
  msgstr ""
6570
 
6571
+ #: languages/vue.php:1074
6572
  msgid "No-Code-Needed Tracking Features"
6573
  msgstr ""
6574
 
6575
+ #: languages/vue.php:1077
6576
  msgid "Basic Tracking Options"
6577
  msgstr ""
6578
 
6579
+ #: languages/vue.php:1080
6580
  msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
6581
  msgstr ""
6582
 
6583
+ #: languages/vue.php:1083
6584
  msgid "Advanced Tracking Options"
6585
  msgstr ""
6586
 
6587
+ #: languages/vue.php:1086
6588
  msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
6589
  msgstr ""
6590
 
6591
+ #: languages/vue.php:1089
6592
  msgid "Inbox"
6593
  msgstr ""
6594
 
6595
+ #: languages/vue.php:1092
6596
  msgid "Back to Inbox"
6597
  msgstr ""
6598
 
6599
+ #: languages/vue.php:1095
6600
  msgid "View Dismissed"
6601
  msgstr ""
6602
 
6603
+ #: languages/vue.php:1098
6604
  msgid "Notifications"
6605
  msgstr ""
6606
 
6607
+ #: languages/vue.php:1101
6608
  msgid "Dismiss All"
6609
  msgstr ""
6610
 
6611
+ #: languages/vue.php:1104
6612
  msgid "Dismissed"
6613
  msgstr ""
6614
 
6615
+ #: languages/vue.php:1107
6616
  msgid "No Notifications"
6617
  msgstr ""
6618
 
6619
  #. Translators: Error status and error text.
6620
+ #: languages/vue.php:1111
6621
  msgid "Can't load settings. Error: %1$s, %2$s"
6622
  msgstr ""
6623
 
6624
+ #: languages/vue.php:1114
6625
  msgid "You appear to be offline."
6626
  msgstr ""
6627
 
6628
  #. Translators: Error status and error text.
6629
+ #: languages/vue.php:1118
6630
  msgid "Can't save settings. Error: %1$s, %2$s"
6631
  msgstr ""
6632
 
6633
+ #: languages/vue.php:1121
6634
  msgid "Network error encountered. Settings not saved."
6635
  msgstr ""
6636
 
6637
+ #: languages/vue.php:1124
6638
  msgid "Show in widget mode"
6639
  msgstr ""
6640
 
6641
+ #: languages/vue.php:1127
6642
  msgid "Show in full-width mode"
6643
  msgstr ""
6644
 
6645
+ #: languages/vue.php:1130
6646
  msgid "Show Overview Reports"
6647
  msgstr ""
6648
 
6649
+ #: languages/vue.php:1133
6650
  msgid "Show Publishers Reports"
6651
  msgstr ""
6652
 
6653
+ #: languages/vue.php:1136
6654
  msgid "Show eCommerce Reports"
6655
  msgstr ""
6656
 
6657
+ #: languages/vue.php:1139
6658
  msgid "Settings Menu"
6659
  msgstr ""
6660
 
6661
+ #: languages/vue.php:1142
6662
  msgid "Available in PRO version"
6663
  msgstr ""
6664
 
6665
+ #: languages/vue.php:1145
6666
  msgid "See All Reports"
6667
  msgstr ""
6668
 
6669
+ #: languages/vue.php:1148
6670
  msgid "Go to the Analytics Dashboard"
6671
  msgstr ""
6672
 
6673
+ #: languages/vue.php:1163
6674
  msgid "Cart Funnel"
6675
  msgstr ""
6676
 
6677
+ #: languages/vue.php:1166
6678
  msgid "Customer Insights"
6679
  msgstr ""
6680
 
6681
+ #: languages/vue.php:1169
6682
  msgid "Campaign Measurement"
6683
  msgstr ""
6684
 
6685
+ #: languages/vue.php:1172
6686
  msgid "Customer Profiles"
6687
  msgstr ""
6688
 
6689
+ #: languages/vue.php:1175
6690
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, revenue, and average order value, and more."
6691
  msgstr ""
6692
 
6693
+ #: languages/vue.php:1178
6694
  msgid "Truly Understand Your%1$s Customers With %2$sExactMetrics%3$s"
6695
  msgstr ""
6696
 
6697
+ #: languages/vue.php:1181
6698
  msgid "You never truly understand your customers until you used Enhanced %1$s eCommerce from ExactMetrics!"
6699
  msgstr ""
6700
 
6701
+ #: languages/vue.php:1184
6702
  msgid "Track all-new metrics!"
6703
  msgstr ""
6704
 
6705
+ #: languages/vue.php:1187
6706
  msgid "Get stats WooCommerce doesn’t give you like: Conversion Sources, Avg. Order Value, Revenue per Source, Total Add to Carts & More!"
6707
  msgstr ""
6708
 
6709
+ #: languages/vue.php:1190
6710
  msgid "FEATURES"
6711
  msgstr ""
6712
 
6713
+ #: languages/vue.php:1193
6714
  msgid "Get The Unique Metrics Neccessary for Growth"
6715
  msgstr ""
6716
 
6717
+ #: languages/vue.php:1196
6718
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, %1$srevenue, and average order value, and more."
6719
  msgstr ""
6720
 
6721
+ #: languages/vue.php:1199
6722
  msgid "Get Answers to the important questions %1$syou should know."
6723
  msgstr ""
6724
 
6725
+ #: languages/vue.php:1202
6726
  msgid "Did the login/registration step of the checkout put users off?"
6727
  msgstr ""
6728
 
6729
+ #: languages/vue.php:1205
6730
  msgid "Which ad campaign is driving the most revenue?"
6731
  msgstr ""
6732
 
6733
+ #: languages/vue.php:1208
6734
  msgid "Who is my typical customer?"
6735
  msgstr ""
6736
 
6737
+ #: languages/vue.php:1211
6738
  msgid "Level-up Your eCommerce store with %1$sExactMetrics + WooCommerce!%1$s"
6739
  msgstr ""
6740
 
6741
  #. Translators: Error status and error text.
6742
+ #: languages/vue.php:1215
6743
  msgid "Can't deactivate the license. Error: %1$s, %2$s"
6744
  msgstr ""
6745
 
6746
  #. Translators: Error status and error text.
6747
+ #: languages/vue.php:1219
6748
  msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
6749
  msgstr ""
6750
 
6751
  #. Translators: Error status and error text.
6752
+ #: languages/vue.php:1223
6753
  msgid "Can't load license details. Error: %1$s, %2$s"
6754
  msgstr ""
6755
 
6756
+ #: languages/vue.php:1226
6757
  msgid "Error loading license details"
6758
  msgstr ""
6759
 
6760
  #. Translators: Error status and error text.
6761
+ #: languages/vue.php:1230
6762
  msgid "Can't verify the license. Error: %1$s, %2$s"
6763
  msgstr ""
6764
 
6765
  #. Translators: Error status and error text.
6766
+ #: languages/vue.php:1234
6767
  msgid "Can't validate the license. Error: %1$s, %2$s"
6768
  msgstr ""
6769
 
6770
+ #: languages/vue.php:1237
6771
  msgid "Reset to default"
6772
  msgstr ""
6773
 
6774
+ #: languages/vue.php:1240
6775
  msgid "The value entered does not match the required format"
6776
  msgstr ""
6777
 
6778
+ #: languages/vue.php:1243
6779
  msgid "Check out the newly added classic mode"
6780
  msgstr ""
6781
 
6782
  #. Translators: Placeholder adds a line break.
6783
+ #: languages/vue.php:1248
6784
  msgid "You can customize your %sdate range only in the PRO version."
6785
  msgstr ""
6786
 
6787
+ #: languages/vue.php:1251
6788
  msgid "Help Us Improve"
6789
  msgstr ""
6790
 
6791
+ #: languages/vue.php:1254
6792
  msgid "Help us better understand our users and their website needs."
6793
  msgstr ""
6794
 
6795
  #. Translators: Adds a link to the documentation.
6796
+ #: languages/vue.php:1258
6797
  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"
6798
  msgstr ""
6799
 
6800
  #. Translators: The name of the field that is throwing a validation error.
6801
+ #: languages/vue.php:1262
6802
  msgid "%s can't be empty."
6803
  msgstr ""
6804
 
6805
+ #: languages/vue.php:1265
6806
  msgid "Duplicate values are not allowed."
6807
  msgstr ""
6808
 
6809
+ #: languages/vue.php:1268
6810
  msgid "You can add maximum 5 items."
6811
  msgstr ""
6812
 
6813
+ #: languages/vue.php:1271
6814
  msgid "At least 0 item required."
6815
  msgstr ""
6816
 
6817
+ #: languages/vue.php:1274
6818
  msgid "Add Another Link Path"
6819
  msgstr ""
6820
 
6821
+ #: languages/vue.php:1277
6822
  msgid "Remove row"
6823
  msgstr ""
6824
 
6825
+ #: languages/vue.php:1280
6826
  msgid "Sessions"
6827
  msgstr ""
6828
 
6829
  #. Translators: Line break.
6830
+ #: languages/vue.php:1284
6831
  msgid "Unique %s Sessions"
6832
  msgstr ""
6833
 
6834
+ #: languages/vue.php:1287
6835
  msgid "Pageviews"
6836
  msgstr ""
6837
 
6838
  #. Translators: Line break.
6839
+ #: languages/vue.php:1291
6840
  msgid "Unique %s Pageviews"
6841
  msgstr ""
6842
 
6843
+ #: languages/vue.php:1294
6844
  msgid "A session is the browsing session of a single user to your site."
6845
  msgstr ""
6846
 
6847
+ #: languages/vue.php:1297
6848
  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."
6849
  msgstr ""
6850
 
6851
+ #: languages/vue.php:1300
6852
  msgid "Total duration of all sessions (in seconds) / number of sessions."
6853
  msgstr ""
6854
 
6855
+ #: languages/vue.php:1303
6856
  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."
6857
  msgstr ""
6858
 
6859
+ #: languages/vue.php:1306
6860
  msgid "The number of distinct tracked users"
6861
  msgstr ""
6862
 
6863
+ #: languages/vue.php:1309
6864
  msgid "Avg. Session Duration"
6865
  msgstr ""
6866
 
6867
+ #: languages/vue.php:1315
6868
  msgid "Total Users"
6869
  msgstr ""
6870
 
6871
+ #: languages/vue.php:1318
6872
  msgid "No options available"
6873
  msgstr ""
6874
 
6875
  #. Translators: Placeholders make the text highlighted.
6876
+ #: languages/vue.php:1322
6877
  msgid "%1$sNeed%2$s to Grow FASTER??"
6878
  msgstr ""
6879
 
6880
+ #: languages/vue.php:1325
6881
  msgid "Get additional, actionable insights by going Pro."
6882
  msgstr ""
6883
 
6884
+ #: languages/vue.php:1328
6885
  msgid "Skip"
6886
  msgstr ""
6887
 
6888
+ #: languages/vue.php:1331
6889
  msgid "See All Features"
6890
  msgstr ""
6891
 
6892
+ #: languages/vue.php:1334
6893
  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."
6894
  msgstr ""
6895
 
6896
+ #: languages/vue.php:1337
6897
  msgid "Our Pro plan includes:"
6898
  msgstr ""
6899
 
6900
  #. Translators: Error status and error text.
6901
+ #: languages/vue.php:1341
6902
  msgid "Can't load errors. Error: %1$s, %2$s"
6903
  msgstr ""
6904
 
6905
+ #: languages/vue.php:1344
6906
  msgid "Real-Time Report"
6907
  msgstr ""
6908
 
6909
+ #: languages/vue.php:1347
6910
  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."
6911
  msgstr ""
6912
 
6913
  #. Translators: add link to blog.
6914
+ #: languages/vue.php:1351
6915
  msgid "To comply with Google's API policies we've had to remove the real time report from the lite version. You can read about this decision and why it was made in %1$sthis blog post%2$s. To access the real time report in the WordPress backend, you will need to upgrade to Pro."
6916
  msgstr ""
6917
 
6918
+ #: languages/vue.php:1354
6919
  msgid "Here's what you get:"
6920
  msgstr ""
6921
 
6922
+ #: languages/vue.php:1357
6923
  msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
6924
  msgstr ""
6925
 
6926
+ #: languages/vue.php:1360
6927
  msgid "See Your Top Pages Immediately After Making Changes"
6928
  msgstr ""
6929
 
6930
+ #: languages/vue.php:1363
6931
  msgid "See Your Top Referral Sources and Adapt Faster"
6932
  msgstr ""
6933
 
6934
+ #: languages/vue.php:1366
6935
  msgid "See Your Traffic Demographics"
6936
  msgstr ""
6937
 
6938
+ #: languages/vue.php:1369
6939
  msgid "Get Fresh Report Data Every 60 Seconds"
6940
  msgstr ""
6941
 
6942
+ #: languages/vue.php:1372
6943
  msgid "See Where Your Visitors are Connecting From (country & city)"
6944
  msgstr ""
6945
 
6946
+ #: languages/vue.php:1375
6947
  msgid "Forms Report"
6948
  msgstr ""
6949
 
6950
+ #: languages/vue.php:1378
6951
  msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
6952
  msgstr ""
6953
 
6954
+ #: languages/vue.php:1381
6955
  msgid "See Your Top Converting Forms and Optimize"
6956
  msgstr ""
6957
 
6958
+ #: languages/vue.php:1384
6959
  msgid "See Your Forms Impressions Count to Find the Best Placement"
6960
  msgstr ""
6961
 
6962
+ #: languages/vue.php:1387
6963
  msgid "Awesome, You're All Set!"
6964
  msgstr ""
6965
 
6966
+ #: languages/vue.php:1390
6967
  msgid "ExactMetrics is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
6968
  msgstr ""
6969
 
6970
  #. Translators: Make text bold.
6971
+ #: languages/vue.php:1394
6972
  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."
6973
  msgstr ""
6974
 
6975
  #. Translators: Add link to blog.
6976
  #. Translators: Link to our blog.
6977
+ #: languages/vue.php:1398
6978
+ #: languages/vue.php:3601
6979
  msgid "%1$sSubscribe to the ExactMetrics blog%2$s for tips on how to get more traffic and grow your business."
6980
  msgstr ""
6981
 
6982
+ #: languages/vue.php:1401
6983
  msgid "Finish Setup & Exit Wizard"
6984
  msgstr ""
6985
 
6986
+ #: languages/vue.php:1404
6987
  msgid "Google Analytics"
6988
  msgstr ""
6989
 
6990
+ #: languages/vue.php:1407
6991
  msgid "Subscribe"
6992
  msgstr ""
6993
 
6994
+ #: languages/vue.php:1410
6995
  msgid "Checking your website..."
6996
  msgstr ""
6997
 
6998
+ #: languages/vue.php:1413
6999
  msgid "Recommended Addons"
7000
  msgstr ""
7001
 
7002
  #. Translators: Add a link to upgrade and make the text green.
7003
+ #: languages/vue.php:1417
7004
  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!"
7005
  msgstr ""
7006
 
7007
+ #: languages/vue.php:1420
7008
  msgid "Upgrade to PRO Now"
7009
  msgstr ""
7010
 
7011
+ #: languages/vue.php:1423
7012
  msgid "See who’s viewing and submitting your forms, so you can increase your conversion rate."
7013
  msgstr ""
7014
 
7015
+ #: languages/vue.php:1426
7016
  msgid "See All Your Important Store Metrics in One Place."
7017
  msgstr ""
7018
 
7019
+ #: languages/vue.php:1429
7020
  msgid "... and more:"
7021
  msgstr ""
7022
 
7023
+ #: languages/vue.php:1432
7024
  msgid "Dimensions- Track authors, categories, trags, searches, users and more."
7025
  msgstr ""
7026
 
7027
+ #: languages/vue.php:1435
7028
  msgid "EU Compliance- Improve compliance with GDPR and other privacy regulations."
7029
  msgstr ""
7030
 
7031
+ #: languages/vue.php:1438
7032
  msgid "AMP- ExactMetrics Google AMP Addon enables accurate tracking of all mobile visitors to your AMP-enabled pages."
7033
  msgstr ""
7034
 
7035
+ #: languages/vue.php:1441
7036
  msgid "Facebook Instant Articles- Integrate Google Analytics and Facebook Instant Articles with just one click."
7037
  msgstr ""
7038
 
7039
+ #: languages/vue.php:1444
7040
  msgid "eCommerce- Sales tracking for your WooCommerce, Easy Digital Downloads, LifterLMS or MemberPress stores."
7041
  msgstr ""
7042
 
7043
+ #: languages/vue.php:1447
7044
  msgid "Google Optimize- Easily enable Google Optimize on your WordPress site."
7045
  msgstr ""
7046
 
7047
+ #: languages/vue.php:1450
7048
  msgid "Forms- Enable tracking of your form views, submissions and conversion rates."
7049
  msgstr ""
7050
 
7051
+ #: languages/vue.php:1453
7052
  msgid "Ads- See who’s clicking on your Google Adsense banner ads."
7053
  msgstr ""
7054
 
7055
+ #: languages/vue.php:1456
7056
  msgid "Hello and Welcome to ExactMetrics, the Best Google Analytics Plugin for WordPress."
7057
  msgstr ""
7058
 
7059
+ #: languages/vue.php:1459
7060
  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."
7061
  msgstr ""
7062
 
7063
+ #: languages/vue.php:1462
7064
  msgid "The ExactMetrics Team"
7065
  msgstr ""
7066
 
7067
+ #: languages/vue.php:1465
7068
  msgid "Custom Dimensions Report"
7069
  msgstr ""
7070
 
7071
+ #: languages/vue.php:1468
7072
  msgid "Unlock the Dimensions Report and decide what data is important using your own custom tracking parameters"
7073
  msgstr ""
7074
 
7075
+ #: languages/vue.php:1471
7076
  msgid "The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
7077
  msgstr ""
7078
 
7079
+ #: languages/vue.php:1474
7080
  msgid "Author tracking to see which author’s posts generate the most traffic"
7081
  msgstr ""
7082
 
7083
+ #: languages/vue.php:1477
7084
  msgid "Post Type tracking to see which WordPress post types perform better"
7085
  msgstr ""
7086
 
7087
+ #: languages/vue.php:1480
7088
  msgid "Category tracking to see which sections of your sites are the most popular"
7089
  msgstr ""
7090
 
7091
+ #: languages/vue.php:1483
7092
  msgid "SEO score tracking to see which blog SEO scores are the most popular"
7093
  msgstr ""
7094
 
7095
+ #: languages/vue.php:1486
7096
  msgid "Focus Keyword tracking to see which of your content is doing well in search engines."
7097
  msgstr ""
7098
 
7099
+ #: languages/vue.php:1489
7100
  msgid "Tag tracking to determine which topics are the most engaging to for your website visitors."
7101
  msgstr ""
7102
 
7103
  #. Translators: add link to blog.
7104
+ #: languages/vue.php:1493
7105
  msgid "One of the factors that help deliver an outstanding user experience is having a website that loads quickly. With the Site Speed report you'll be able to check your site's performance directly from your ExactMetrics dashboard."
7106
  msgstr ""
7107
 
7108
+ #: languages/vue.php:1496
7109
  msgid "See Your Homepage's Overall Performance Score"
7110
  msgstr ""
7111
 
7112
+ #: languages/vue.php:1499
7113
  msgid "Run an Audit on Your Homepage and See Your Server Response Time"
7114
  msgstr ""
7115
 
7116
+ #: languages/vue.php:1502
7117
  msgid "Learn How Long It Takes for Your Viewers to Interact With Your Site"
7118
  msgstr ""
7119
 
7120
+ #: languages/vue.php:1505
7121
  msgid "Learn How to Improve the Core Metrics that Google Uses to Rank Your Site"
7122
  msgstr ""
7123
 
7124
+ #: languages/vue.php:1508
7125
  msgid "Hide dashboard widget"
7126
  msgstr ""
7127
 
7128
+ #: languages/vue.php:1511
7129
  msgid "Are you sure you want to hide the ExactMetrics Dashboard Widget? "
7130
  msgstr ""
7131
 
7132
+ #: languages/vue.php:1514
7133
  msgid "Yes, hide it!"
7134
  msgstr ""
7135
 
7136
+ #: languages/vue.php:1517
7137
  msgid "No, cancel!"
7138
  msgstr ""
7139
 
7140
+ #: languages/vue.php:1520
7141
  msgid "ExactMetrics Widget Hidden"
7142
  msgstr ""
7143
 
7144
+ #: languages/vue.php:1523
7145
  msgid "You can re-enable the ExactMetrics widget at any time using the \"Screen Options\" menu on the top right of this page"
7146
  msgstr ""
7147
 
7148
  #. Translators: Error status and error text.
7149
+ #: languages/vue.php:1527
7150
  msgid "Can't deauthenticate. Error: %1$s, %2$s"
7151
  msgstr ""
7152
 
7153
  #. Translators: Error status and error text.
7154
+ #: languages/vue.php:1531
7155
  msgid "Can't load authentication details. Error: %1$s, %2$s"
7156
  msgstr ""
7157
 
7158
+ #: languages/vue.php:1534
7159
  msgid "You appear to be offline. Settings not saved."
7160
  msgstr ""
7161
 
7162
  #. Translators: Error status and error text.
7163
+ #: languages/vue.php:1538
7164
  msgid "Can't authenticate. Error: %1$s, %2$s"
7165
  msgstr ""
7166
 
7167
  #. Translators: Error status and error text.
7168
+ #: languages/vue.php:1542
7169
  msgid "Can't reauthenticate. Error: %1$s, %2$s"
7170
  msgstr ""
7171
 
7172
  #. Translators: Error status and error text.
7173
+ #: languages/vue.php:1546
7174
  msgid "Can't verify credentials. Error: %1$s, %2$s"
7175
  msgstr ""
7176
 
7177
+ #: languages/vue.php:1549
7178
  msgid "Still Calculating..."
7179
  msgstr ""
7180
 
7181
+ #: languages/vue.php:1552
7182
  msgid "Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year."
7183
  msgstr ""
7184
 
7185
+ #: languages/vue.php:1555
7186
  msgid "Back to Overview Report"
7187
  msgstr ""
7188
 
7189
+ #: languages/vue.php:1558
7190
  msgid "Your 2020 Analytics Report"
7191
  msgstr ""
7192
 
7193
+ #: languages/vue.php:1561
7194
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2021!"
7195
  msgstr ""
7196
 
7197
+ #: languages/vue.php:1564
7198
  msgid "Audience"
7199
  msgstr ""
7200
 
7201
+ #: languages/vue.php:1567
7202
  msgid "Congrats"
7203
  msgstr ""
7204
 
7205
+ #: languages/vue.php:1570
7206
  msgid "Your website was quite popular this year! "
7207
  msgstr ""
7208
 
7209
+ #: languages/vue.php:1573
7210
  msgid "You had "
7211
  msgstr ""
7212
 
7213
+ #: languages/vue.php:1576
7214
  msgid " visitors!"
7215
  msgstr ""
7216
 
7217
+ #: languages/vue.php:1579
7218
  msgid " visitors"
7219
  msgstr ""
7220
 
7221
+ #: languages/vue.php:1582
7222
  msgid "Total Visitors"
7223
  msgstr ""
7224
 
7225
+ #: languages/vue.php:1585
7226
  msgid "Total Sessions"
7227
  msgstr ""
7228
 
7229
+ #: languages/vue.php:1588
7230
  msgid "Visitors by Month"
7231
  msgstr ""
7232
 
7233
+ #: languages/vue.php:1591
7234
  msgid "January 1, 2020 - December 31, 2020"
7235
  msgstr ""
7236
 
7237
+ #: languages/vue.php:1594
7238
  msgid "A Tip for 2021"
7239
  msgstr ""
7240
 
7241
+ #: languages/vue.php:1597
7242
  msgid "Demographics"
7243
  msgstr ""
7244
 
7245
+ #: languages/vue.php:1600
7246
  msgid "#1"
7247
  msgstr ""
7248
 
7249
+ #: languages/vue.php:1603
7250
  msgid "You Top 5 Countries"
7251
  msgstr ""
7252
 
7253
+ #: languages/vue.php:1606
7254
  msgid "Let’s get to know your visitors a little better, shall we?"
7255
  msgstr ""
7256
 
7257
+ #: languages/vue.php:1609
7258
  msgid "Gender"
7259
  msgstr ""
7260
 
7261
+ #: languages/vue.php:1612
7262
  msgid "Female"
7263
  msgstr ""
7264
 
7265
+ #: languages/vue.php:1615
7266
  msgid "Women"
7267
  msgstr ""
7268
 
7269
+ #: languages/vue.php:1618
7270
  msgid "Male"
7271
  msgstr ""
7272
 
7273
+ #: languages/vue.php:1621
7274
  msgid "Average Age"
7275
  msgstr ""
7276
 
7277
+ #: languages/vue.php:1624
7278
  msgid "Behavior"
7279
  msgstr ""
7280
 
7281
+ #: languages/vue.php:1627
7282
  msgid "Your Top 5 Pages"
7283
  msgstr ""
7284
 
7285
+ #: languages/vue.php:1630
7286
  msgid "Time Spent on Site"
7287
  msgstr ""
7288
 
7289
+ #: languages/vue.php:1633
7290
  msgid "minutes"
7291
  msgstr ""
7292
 
7293
+ #: languages/vue.php:1636
7294
  msgid "Device Type"
7295
  msgstr ""
7296
 
7297
+ #: languages/vue.php:1639
7298
  msgid "A Tip For 2021"
7299
  msgstr ""
7300
 
7301
+ #: languages/vue.php:1642
7302
  msgid "Are you looking for a way to track your landing pages and see which one gets the most conversions on your website?"
7303
  msgstr ""
7304
 
7305
+ #: languages/vue.php:1645
7306
  msgid "Read - How to Track Google Analytics Landing Page Conversions"
7307
  msgstr ""
7308
 
7309
+ #: languages/vue.php:1648
7310
  msgid "So, where did all of these visitors come from?"
7311
  msgstr ""
7312
 
7313
+ #: languages/vue.php:1651
7314
  msgid "Clicks"
7315
  msgstr ""
7316
 
7317
+ #: languages/vue.php:1654
7318
  msgid "Your Top 5 Keywords"
7319
  msgstr ""
7320
 
7321
+ #: languages/vue.php:1657
7322
  msgid "What keywords visitors searched for to find your site"
7323
  msgstr ""
7324
 
7325
+ #: languages/vue.php:1660
7326
  msgid "Your Top 5 Referrals"
7327
  msgstr ""
7328
 
7329
+ #: languages/vue.php:1663
7330
  msgid "The websites that link back to your website"
7331
  msgstr ""
7332
 
7333
+ #: languages/vue.php:1666
7334
  msgid "Opportunity"
7335
  msgstr ""
7336
 
7337
+ #: languages/vue.php:1669
7338
  msgid "Learn how to boost your SEO rankings using ExactMetrics so more visitors reach your articles and increase engagement."
7339
  msgstr ""
7340
 
7341
+ #: languages/vue.php:1672
7342
  msgid "Read - 5 Ways to Skyrocket Your SEO Rankings with Google Analytics"
7343
  msgstr ""
7344
 
7345
+ #: languages/vue.php:1675
7346
  msgid "Thank you for using ExactMetrics!"
7347
  msgstr ""
7348
 
7349
+ #: languages/vue.php:1678
7350
  msgid "We’re grateful for your continued support. If there’s anything we can do to help you grow your business, please don’t hesitate to contact our team."
7351
  msgstr ""
7352
 
7353
+ #: languages/vue.php:1681
7354
  msgid "Here's to an amazing 2021!"
7355
  msgstr ""
7356
 
7357
+ #: languages/vue.php:1684
7358
  msgid "Enjoying ExactMetrics"
7359
  msgstr ""
7360
 
7361
+ #: languages/vue.php:1687
7362
  msgid "Leave a five star review!"
7363
  msgstr ""
7364
 
7365
+ #: languages/vue.php:1690
7366
  msgid "Syed Balkhi"
7367
  msgstr ""
7368
 
7369
+ #: languages/vue.php:1693
7370
  msgid "Chris Christoff"
7371
  msgstr ""
7372
 
7373
+ #: languages/vue.php:1696
7374
  msgid "Write Review"
7375
  msgstr ""
7376
 
7377
+ #: languages/vue.php:1699
7378
  msgid "Did you know over 10 million websites use our plugins?"
7379
  msgstr ""
7380
 
7381
+ #: languages/vue.php:1702
7382
  msgid "Try our other popular WordPress plugins to grow your website in 2021."
7383
  msgstr ""
7384
 
7385
+ #: languages/vue.php:1705
7386
  msgid "Join our Communities!"
7387
  msgstr ""
7388
 
7389
+ #: languages/vue.php:1708
7390
  msgid "Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level."
7391
  msgstr ""
7392
 
7393
+ #: languages/vue.php:1711
7394
  msgid "Facebook Group"
7395
  msgstr ""
7396
 
7397
+ #: languages/vue.php:1714
7398
  msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
7399
  msgstr ""
7400
 
7401
+ #: languages/vue.php:1717
7402
  msgid "Join Now...It’s Free!"
7403
  msgstr ""
7404
 
7405
+ #: languages/vue.php:1720
7406
  msgid "WordPress Tutorials by WPBeginner"
7407
  msgstr ""
7408
 
7409
+ #: languages/vue.php:1723
7410
  msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
7411
  msgstr ""
7412
 
7413
+ #: languages/vue.php:1726
7414
  msgid "Visit WPBeginner"
7415
  msgstr ""
7416
 
7417
+ #: languages/vue.php:1729
7418
  msgid "Follow Us!"
7419
  msgstr ""
7420
 
7421
+ #: languages/vue.php:1732
7422
  msgid "Follow ExactMetrics on social media to stay up to date with latest updates, trends, and tutorials on how to make the most out of analytics."
7423
  msgstr ""
7424
 
7425
+ #: languages/vue.php:1735
7426
  msgid "Copyright ExactMetrics, 2021"
7427
  msgstr ""
7428
 
7429
+ #: languages/vue.php:1738
7430
  msgid "Upgrade to ExactMetrics Pro to Unlock Additional Actionable Insights"
7431
  msgstr ""
7432
 
7433
+ #: languages/vue.php:1744
7434
  msgid "January"
7435
  msgstr ""
7436
 
7437
+ #: languages/vue.php:1747
7438
  msgid "February"
7439
  msgstr ""
7440
 
7441
+ #: languages/vue.php:1750
7442
  msgid "March"
7443
  msgstr ""
7444
 
7445
+ #: languages/vue.php:1753
7446
  msgid "April"
7447
  msgstr ""
7448
 
7449
+ #: languages/vue.php:1756
7450
  msgid "May"
7451
  msgstr ""
7452
 
7453
+ #: languages/vue.php:1759
7454
  msgid "June"
7455
  msgstr ""
7456
 
7457
+ #: languages/vue.php:1762
7458
  msgid "July"
7459
  msgstr ""
7460
 
7461
+ #: languages/vue.php:1765
7462
  msgid "August"
7463
  msgstr ""
7464
 
7465
+ #: languages/vue.php:1768
7466
  msgid "September"
7467
  msgstr ""
7468
 
7469
+ #: languages/vue.php:1771
7470
  msgid "October"
7471
  msgstr ""
7472
 
7473
+ #: languages/vue.php:1774
7474
  msgid "November"
7475
  msgstr ""
7476
 
7477
+ #: languages/vue.php:1777
7478
  msgid "December"
7479
  msgstr ""
7480
 
7481
  #. Translators: Number of visitors.
7482
+ #: languages/vue.php:1781
7483
  msgid "Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>"
7484
  msgstr ""
7485
 
7486
+ #: languages/vue.php:1784
7487
  msgid "See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success."
7488
  msgstr ""
7489
 
7490
  #. Translators: Number of visitors.
7491
+ #: languages/vue.php:1788
7492
  msgid "Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries."
7493
  msgstr ""
7494
 
7495
  #. Translators: Number of visitors.
7496
+ #: languages/vue.php:1792
7497
  msgid "%s Visitors"
7498
  msgstr ""
7499
 
7500
  #. Translators: Percent and Number of visitors.
7501
+ #: languages/vue.php:1796
7502
  msgid "%1$s&#37 of your visitors were %2$s"
7503
  msgstr ""
7504
 
7505
  #. Translators: Number of visitors and their age.
7506
+ #: languages/vue.php:1800
7507
  msgid "%1$s&#37 of your visitors were between the ages of %2$s"
7508
  msgstr ""
7509
 
7510
+ #: languages/vue.php:1803
7511
  msgid "Your <strong>%1$s</strong> visitors viewed a total of <strong>%2$s</strong> pages. <span class='average-page-per-user' style='font-size: 20px;margin-top:25px;display:block;font-family:Lato'>That's an average of %3$s pages for each visitor!</span>"
7512
  msgstr ""
7513
 
7514
  #. Translators: Number of minutes spent on site.
7515
+ #: languages/vue.php:1807
7516
  msgid "Each visitor spent an average of %s minutes on your website in 2020."
7517
  msgstr ""
7518
 
7519
  #. Translators: Name of device type.
7520
+ #: languages/vue.php:1811
7521
  msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
7522
  msgstr ""
7523
 
7524
  #. Translators: Number of visitors and device percentage.
7525
+ #: languages/vue.php:1815
7526
  msgid "%1$s&#37 of your visitors were on a %2$s device."
7527
  msgstr ""
7528
 
7529
+ #: languages/vue.php:1818
7530
  msgid "Desktop"
7531
  msgstr ""
7532
 
7533
+ #: languages/vue.php:1821
7534
  msgid "Tablet"
7535
  msgstr ""
7536
 
7537
+ #: languages/vue.php:1824
7538
  msgid "Mobile"
7539
  msgstr ""
7540
 
7541
+ #: languages/vue.php:1827
7542
  msgid "Force Deauthenticate"
7543
  msgstr ""
7544
 
7545
+ #: languages/vue.php:1830
7546
  msgid "Disconnect ExactMetrics"
7547
  msgstr ""
7548
 
7549
+ #: languages/vue.php:1833
7550
  msgid "Authenticating"
7551
  msgstr ""
7552
 
7553
+ #: languages/vue.php:1836
7554
  msgid "Verifying Credentials"
7555
  msgstr ""
7556
 
7557
+ #: languages/vue.php:1839
7558
  msgid "Your site is connected to ExactMetrics!"
7559
  msgstr ""
7560
 
7561
+ #: languages/vue.php:1842
7562
  msgid "Deauthenticating"
7563
  msgstr ""
7564
 
7565
+ #: languages/vue.php:1845
7566
  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."
7567
  msgstr ""
7568
 
7569
+ #: languages/vue.php:1848
7570
+ #: languages/vue.php:1920
7571
  msgid "Connect ExactMetrics"
7572
  msgstr ""
7573
 
7574
+ #: languages/vue.php:1851
7575
  msgid "Verify Credentials"
7576
  msgstr ""
7577
 
7578
+ #: languages/vue.php:1857
7579
  msgid "Website Profile"
7580
  msgstr ""
7581
 
7582
+ #: languages/vue.php:1860
7583
  msgid "Active Profile"
7584
  msgstr ""
7585
 
7586
+ #: languages/vue.php:1863
7587
  msgid "Your website profile has been set at the network level of your WordPress Multisite."
7588
  msgstr ""
7589
 
7590
+ #: languages/vue.php:1866
7591
  msgid "If you would like to use a different profile for this subsite, you can authenticate below."
7592
  msgstr ""
7593
 
7594
+ #: languages/vue.php:1869
7595
  msgid "Dual Tracking Profile"
7596
  msgstr ""
7597
 
7598
+ #: languages/vue.php:1872
7599
  msgid "The dual tracking feature allows you to continue tracking this site into an existing GAv3 property so you can continue to use the GA reports you are used to already. Learn more about this feature %1$shere%2$s."
7600
  msgstr ""
7601
 
7602
+ #: languages/vue.php:1875
7603
  msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers."
7604
  msgstr ""
7605
 
7606
+ #: languages/vue.php:1878
7607
  msgid "The dual tracking feature allows you to begin tracking this site into a GAv4 property to take advantage of the new GAv4 analysis tools. Learn more about this feature %1$shere%2$s."
7608
  msgstr ""
7609
 
7610
+ #: languages/vue.php:1881
7611
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
7612
  msgstr ""
7613
 
7614
+ #: languages/vue.php:1884
7615
  msgid "Measurement Protocol API Secret"
7616
  msgstr ""
7617
 
7618
+ #: languages/vue.php:1887
7619
  msgid "The Measurement Protocol API secret allows your site to send tracking data to Google Analytics. To retrieve your Measurement Protocol API Secret, follow %1$sthis guide%2$s."
7620
  msgstr ""
7621
 
7622
+ #: languages/vue.php:1890
7623
  msgid "Classic mode"
7624
  msgstr ""
7625
 
7626
+ #: languages/vue.php:1893
7627
  msgid "Proceed"
7628
  msgstr ""
7629
 
7630
+ #: languages/vue.php:1896
7631
  msgid "Connection Information"
7632
  msgstr ""
7633
 
7634
+ #: languages/vue.php:1899
7635
  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."
7636
  msgstr ""
7637
 
7638
+ #: languages/vue.php:1902
7639
  msgid "Hostname"
7640
  msgstr ""
7641
 
7642
+ #: languages/vue.php:1905
7643
  msgid "FTP Username"
7644
  msgstr ""
7645
 
7646
+ #: languages/vue.php:1908
7647
  msgid "FTP Password"
7648
  msgstr ""
7649
 
7650
+ #: languages/vue.php:1911
7651
  msgid "This password will not be stored on the server."
7652
  msgstr ""
7653
 
7654
+ #: languages/vue.php:1914
7655
  msgid "Connection Type"
7656
  msgstr ""
7657
 
7658
+ #: languages/vue.php:1917
7659
  msgid "Cancel"
7660
  msgstr ""
7661
 
7662
+ #: languages/vue.php:1923
7663
  msgid "Website profile"
7664
  msgstr ""
7665
 
7666
+ #: languages/vue.php:1926
7667
  msgid "Active profile"
7668
  msgstr ""
7669
 
7670
+ #: languages/vue.php:1929
7671
  msgid "Skip and Keep Connection"
7672
  msgstr ""
7673
 
7674
  #. Translators: Replaced with the number of days
7675
+ #: languages/vue.php:1933
7676
  msgid "vs. Previous Day"
7677
  msgstr ""
7678
 
7679
+ #: languages/vue.php:1936
7680
  msgid "No change"
7681
  msgstr ""
7682
 
7683
+ #: languages/vue.php:1939
7684
  msgid "Choose Theme"
7685
  msgstr ""
7686
 
7687
+ #: languages/vue.php:1942
7688
  msgid "Widget Styling"
7689
  msgstr ""
7690
 
7691
+ #: languages/vue.php:1945
7692
  msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
7693
  msgstr ""
7694
 
7695
+ #: languages/vue.php:1948
7696
  msgid "Sort By"
7697
  msgstr ""
7698
 
7699
+ #: languages/vue.php:1951
7700
  msgid "Choose how you'd like the widget to determine your popular posts."
7701
  msgstr ""
7702
 
7703
+ #: languages/vue.php:1954
7704
  msgid "Display Title"
7705
  msgstr ""
7706
 
7707
+ #: languages/vue.php:1960
7708
  msgid "Title your widget and set its display preferences."
7709
  msgstr ""
7710
 
7711
+ #: languages/vue.php:1963
7712
  msgid "Include in Post Types"
7713
  msgstr ""
7714
 
7715
+ #: languages/vue.php:1966
7716
  msgid "Exclude from specific posts"
7717
  msgstr ""
7718
 
7719
  #. Translators: Placeholders make the text bold.
7720
+ #: languages/vue.php:1970
7721
  msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
7722
  msgstr ""
7723
 
7724
  #. Translators: Placeholders make the text bold.
7725
+ #: languages/vue.php:1974
7726
  msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
7727
  msgstr ""
7728
 
7729
+ #: languages/vue.php:1977
7730
  msgid "Loading Themes"
7731
  msgstr ""
7732
 
7733
  #. Translators: placeholders make text small.
7734
+ #: languages/vue.php:1981
7735
  msgid "Default Styles %1$s- As seen above.%2$s"
7736
  msgstr ""
7737
 
7738
  #. Translators: placeholders make text small.
7739
+ #: languages/vue.php:1985
7740
  msgid "No Styles %1$s- Use your own CSS.%2$s"
7741
  msgstr ""
7742
 
7743
  #. Translators: placeholders make text small.
7744
+ #: languages/vue.php:1989
7745
  msgid "Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s"
7746
  msgstr ""
7747
 
7748
  #. Translators: placeholders make text small.
7749
+ #: languages/vue.php:1993
7750
  msgid "SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s"
7751
  msgstr ""
7752
 
7753
  #. Translators: placeholders make text small.
7754
+ #: languages/vue.php:1997
7755
  msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
7756
  msgstr ""
7757
 
7758
+ #: languages/vue.php:2000
7759
  msgid "Placement"
7760
  msgstr ""
7761
 
7762
+ #: languages/vue.php:2003
7763
  msgid "Choose how you'd like to place the widget."
7764
  msgstr ""
7765
 
7766
+ #: languages/vue.php:2006
7767
  msgid "Insert After"
7768
  msgstr ""
7769
 
7770
+ #: languages/vue.php:2009
7771
  msgid "Choose where in the post body the widget will be placed."
7772
  msgstr ""
7773
 
7951
  msgid "Unlock PRO Features Now"
7952
  msgstr ""
7953
 
7954
+ #: languages/vue.php:2152
7955
  msgid "Paste your license key here"
7956
  msgstr ""
7957
 
7958
+ #: languages/vue.php:2156
7959
  msgid "Verify"
7960
  msgstr ""
7961
 
7962
  #. Translators: Add link to retrieve license from account area.
7963
+ #: languages/vue.php:2160
7964
  msgid "Already purchased? Simply enter your license key below to connect with ExactMetrics PRO! %1$sRetrieve your license key%2$s."
7965
  msgstr ""
7966
 
7967
+ #: languages/vue.php:2164
7968
+ #: languages/vue.php:3638
7969
  msgid "There was an error unlocking ExactMetrics PRO please try again or install manually."
7970
  msgstr ""
7971
 
7972
+ #: languages/vue.php:2167
7973
  msgid "%1$sAll-in-One SEO%2$s Makes SEO Simple. Gain Valuable Organic Traffic."
7974
  msgstr ""
7975
 
7976
+ #: languages/vue.php:2170
7977
  msgid "Automatically migrate all of your SEO settings with just 1 click!"
7978
  msgstr ""
7979
 
7980
+ #: languages/vue.php:2173
7981
  msgid "1,938"
7982
  msgstr ""
7983
 
7984
+ #: languages/vue.php:2176
7985
  msgid "2+ Million Active Installs"
7986
  msgstr ""
7987
 
7988
+ #: languages/vue.php:2179
7989
  msgid "AIOSEO is the DIY Solution for Managing your SEO"
7990
  msgstr ""
7991
 
7992
+ #: languages/vue.php:2182
7993
  msgid "Set up the proper SEO foundations in less than 10 minutes."
7994
  msgstr ""
7995
 
7997
  msgid "SEO Audit Checklist"
7998
  msgstr ""
7999
 
8000
+ #: languages/vue.php:2188
8001
  msgid "Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic."
8002
  msgstr ""
8003
 
8004
+ #: languages/vue.php:2191
8005
  msgid "Optimize Your Pages For Higher Rankings With TruSEO Score."
8006
  msgstr ""
8007
 
8008
+ #: languages/vue.php:2194
8009
  msgid "TruSEO Score gives you a more in-depth analysis into your optimization efforts than just a pass or fail. Our actionable checklist helps you to unlock maximum traffic with each page."
8010
  msgstr ""
8011
 
8012
+ #: languages/vue.php:2197
8013
  msgid "Get AIOSEO for WordPress"
8014
  msgstr ""
8015
 
8016
+ #: languages/vue.php:2200
8017
  msgid "Get the #1 Most Powerful WordPress SEO Plugin Today"
8018
  msgstr ""
8019
 
8020
+ #: languages/vue.php:2203
8021
  msgid "Try it out today, for free."
8022
  msgstr ""
8023
 
8024
+ #: languages/vue.php:2206
8025
  msgid "Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings."
8026
  msgstr ""
8027
 
8028
+ #: languages/vue.php:2209
8029
  msgid "Activate and Install the Plugin with just one click!"
8030
  msgstr ""
8031
 
8032
+ #: languages/vue.php:2212
8033
  msgid "Installing AIOSEO..."
8034
  msgstr ""
8035
 
8036
+ #: languages/vue.php:2215
8037
  msgid "Congrats! All-in-One SEO Installed."
8038
  msgstr ""
8039
 
8040
+ #: languages/vue.php:2218
8041
  msgid "Switch to AIOSEO"
8042
  msgstr ""
8043
 
8044
+ #: languages/vue.php:2221
8045
  msgid "Installation Failed. Please refresh and try again."
8046
  msgstr ""
8047
 
8048
+ #: languages/vue.php:2224
8049
  msgid "Activating AIOSEO..."
8050
  msgstr ""
8051
 
8052
+ #: languages/vue.php:2227
8053
  msgid "Activate AIOSEO"
8054
  msgstr ""
8055
 
8056
+ #: languages/vue.php:2230
8057
  msgid "Activation Failed. Please refresh and try again."
8058
  msgstr ""
8059
 
8060
+ #: languages/vue.php:2233
8061
  msgid "Unlock Form Tracking"
8062
  msgstr ""
8063
 
8064
+ #: languages/vue.php:2236
8065
  msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
8066
  msgstr ""
8067
 
8068
+ #: languages/vue.php:2239
8069
  msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
8070
  msgstr ""
8071
 
8072
+ #: languages/vue.php:2242
8073
  msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
8074
  msgstr ""
8075
 
8076
+ #: languages/vue.php:2246
8077
  msgid "Show"
8078
  msgstr ""
8079
 
8080
+ #: languages/vue.php:2249
8081
  msgid "File imported"
8082
  msgstr ""
8083
 
8084
+ #: languages/vue.php:2252
8085
  msgid "Settings successfully updated!"
8086
  msgstr ""
8087
 
8088
+ #: languages/vue.php:2255
8089
  msgid "Error importing settings"
8090
  msgstr ""
8091
 
8092
+ #: languages/vue.php:2258
8093
  msgid "Please choose a .json file generated by a ExactMetrics settings export."
8094
  msgstr ""
8095
 
8096
+ #: languages/vue.php:2261
8097
  msgid "Import/Export"
8098
  msgstr ""
8099
 
8100
+ #: languages/vue.php:2264
8101
  msgid "Import"
8102
  msgstr ""
8103
 
8104
+ #: languages/vue.php:2267
8105
  msgid "Import settings from another ExactMetrics website."
8106
  msgstr ""
8107
 
8108
+ #: languages/vue.php:2270
8109
  msgid "Export"
8110
  msgstr ""
8111
 
8112
+ #: languages/vue.php:2273
8113
  msgid "Export settings to import into another ExactMetrics install."
8114
  msgstr ""
8115
 
8116
+ #: languages/vue.php:2276
8117
  msgid "Import Settings"
8118
  msgstr ""
8119
 
8120
+ #: languages/vue.php:2279
8121
  msgid "Export Settings"
8122
  msgstr ""
8123
 
8124
+ #: languages/vue.php:2282
8125
  msgid "Please choose a file to import"
8126
  msgstr ""
8127
 
8128
+ #: languages/vue.php:2285
8129
  msgid "Click Choose file below to select the settings export file from another site."
8130
  msgstr ""
8131
 
8132
+ #: languages/vue.php:2288
8133
  msgid "Use the button below to export a file with your ExactMetrics settings."
8134
  msgstr ""
8135
 
8136
+ #: languages/vue.php:2291
8137
  msgid "Choose file"
8138
  msgstr ""
8139
 
8140
+ #: languages/vue.php:2294
8141
  msgid "No file chosen"
8142
  msgstr ""
8143
 
8144
+ #: languages/vue.php:2297
8145
  msgid "Uploading file..."
8146
  msgstr ""
8147
 
8148
+ #: languages/vue.php:2300
8149
  msgid "Custom code"
8150
  msgstr ""
8151
 
8152
  #. Translators: Adds a link to the Google reference.
8153
+ #: languages/vue.php:2304
8154
  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."
8155
  msgstr ""
8156
 
8157
+ #: languages/vue.php:2310
8158
  msgid "Automatic Updates"
8159
  msgstr ""
8160
 
8161
+ #: languages/vue.php:2313
8162
  msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
8163
  msgstr ""
8164
 
8165
+ #: languages/vue.php:2316
8166
  msgid "Hide Admin Bar Reports"
8167
  msgstr ""
8168
 
8169
  #. Translators: placeholders make text small.
8170
+ #: languages/vue.php:2320
8171
  msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
8172
  msgstr ""
8173
 
8174
  #. Translators: placeholders make text small.
8175
+ #: languages/vue.php:2324
8176
  msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
8177
  msgstr ""
8178
 
8179
  #. Translators: placeholders make text small.
8180
+ #: languages/vue.php:2328
8181
  msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
8182
  msgstr ""
8183
 
8184
  #. Translators: placeholders make text small.
8185
+ #: languages/vue.php:2332
8186
  msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
8187
  msgstr ""
8188
 
8189
  #. Translators: placeholders make text small.
8190
+ #: languages/vue.php:2336
8191
  msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
8192
  msgstr ""
8193
 
8194
  #. Translators: placeholders make text small.
8195
+ #: languages/vue.php:2340
8196
  msgid "None %1$s- Manually update everything.%2$s"
8197
  msgstr ""
8198
 
8199
  #. Translators: Adds a link to the general settings tab.
8200
+ #: languages/vue.php:2344
8201
  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."
8202
  msgstr ""
8203
 
8204
+ #: languages/vue.php:2347
8205
  msgid "Permissions"
8206
  msgstr ""
8207
 
8208
+ #: languages/vue.php:2350
8209
  msgid "Export PDF Reports"
8210
  msgstr ""
8211
 
8212
+ #: languages/vue.php:2353
8213
  msgid "Allow These User Roles to See Reports"
8214
  msgstr ""
8215
 
8216
+ #: languages/vue.php:2356
8217
  msgid "Users that have at least one of these roles will be able to view the reports."
8218
  msgstr ""
8219
 
8220
+ #: languages/vue.php:2359
8221
  msgid "Allow These User Roles to Save Settings"
8222
  msgstr ""
8223
 
8224
+ #: languages/vue.php:2362
8225
  msgid "Users that have at least one of these roles will be able to view and save the settings panel."
8226
  msgstr ""
8227
 
8228
+ #: languages/vue.php:2365
8229
  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."
8230
  msgstr ""
8231
 
8232
+ #: languages/vue.php:2368
8233
  msgid "Exclude These User Roles From Tracking"
8234
  msgstr ""
8235
 
8236
+ #: languages/vue.php:2371
8237
  msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
8238
  msgstr ""
8239
 
8240
+ #: languages/vue.php:2374
8241
  msgid "Make your ExactMetrics campaign links prettier with Pretty Links!"
8242
  msgstr ""
8243
 
8244
+ #: languages/vue.php:2377
8245
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links."
8246
  msgstr ""
8247
 
8248
+ #: languages/vue.php:2380
8249
  msgid "Take your ExactMetrics campaign links from our URL Builder and shorten them with Pretty Links!"
8250
  msgstr ""
8251
 
8252
+ #: languages/vue.php:2383
8253
  msgid "Over 200,000 websites use Pretty Links!"
8254
  msgstr ""
8255
 
8256
+ #: languages/vue.php:2386
8257
  msgid "Install Pretty Links"
8258
  msgstr ""
8259
 
8260
+ #: languages/vue.php:2389
8261
  msgid "Pretty Links Installed & Activated"
8262
  msgstr ""
8263
 
8264
+ #: languages/vue.php:2392
8265
  msgid "Download Pretty Links"
8266
  msgstr ""
8267
 
8268
+ #: languages/vue.php:2395
8269
  msgid "Install Pretty Links from the WordPress.org plugin repository."
8270
  msgstr ""
8271
 
8272
+ #: languages/vue.php:2398
8273
  msgid "Activate Pretty Links"
8274
  msgstr ""
8275
 
8276
+ #: languages/vue.php:2401
8277
  msgid "Activating Pretty Links..."
8278
  msgstr ""
8279
 
8280
+ #: languages/vue.php:2404
8281
  msgid "Create New Pretty Link"
8282
  msgstr ""
8283
 
8284
+ #: languages/vue.php:2407
8285
  msgid "Create a New Pretty Link"
8286
  msgstr ""
8287
 
8288
+ #: languages/vue.php:2410
8289
  msgid "Grab your campaign link and paste it into the Target URL field."
8290
  msgstr ""
8291
 
8292
+ #: languages/vue.php:2413
8293
  msgid "Custom Campaign Parameters"
8294
  msgstr ""
8295
 
8296
+ #: languages/vue.php:2416
8297
  msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
8298
  msgstr ""
8299
 
8300
+ #: languages/vue.php:2419
8301
  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."
8302
  msgstr ""
8303
 
8304
  #. Translators: Marks the field as required.
8305
+ #: languages/vue.php:2423
8306
  msgid "Website URL %s"
8307
  msgstr ""
8308
 
8309
  #. Translators: Display the current website url in italic.
8310
+ #: languages/vue.php:2427
8311
  msgid "The full website URL (e.g. %1$s %2$s%3$s)"
8312
  msgstr ""
8313
 
8314
  #. Translators: Marks the field as required.
8315
+ #: languages/vue.php:2431
8316
  msgid "Campaign Source %s"
8317
  msgstr ""
8318
 
8319
  #. Translators: Make the text italic.
8320
+ #: languages/vue.php:2435
8321
  msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
8322
  msgstr ""
8323
 
8324
  #. Translators: Make the text italic.
8325
+ #: languages/vue.php:2439
8326
  msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
8327
  msgstr ""
8328
 
8329
  #. Translators: Make the text italic.
8330
+ #: languages/vue.php:2443
8331
  msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
8332
  msgstr ""
8333
 
8334
+ #: languages/vue.php:2446
8335
  msgid "Enter the paid keyword"
8336
  msgstr ""
8337
 
8338
+ #: languages/vue.php:2449
8339
  msgid "Enter something to differentiate ads"
8340
  msgstr ""
8341
 
8342
+ #: languages/vue.php:2452
8343
  msgid "Use Fragment"
8344
  msgstr ""
8345
 
8346
  #. Translators: Make the text bold.
8347
+ #: languages/vue.php:2456
8348
  msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
8349
  msgstr ""
8350
 
8351
+ #: languages/vue.php:2459
8352
  msgid "URL to use"
8353
  msgstr ""
8354
 
8355
+ #: languages/vue.php:2462
8356
  msgid "(Updates automatically)"
8357
  msgstr ""
8358
 
8359
+ #: languages/vue.php:2465
8360
  msgid "Copy to Clipboard"
8361
  msgstr ""
8362
 
8363
+ #: languages/vue.php:2468
8364
  msgid "Copy to Pretty Links"
8365
  msgstr ""
8366
 
8367
+ #: languages/vue.php:2471
8368
  msgid "Make your campaign links prettier!"
8369
  msgstr ""
8370
 
8371
+ #: languages/vue.php:2474
8372
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links."
8373
  msgstr ""
8374
 
8375
+ #: languages/vue.php:2477
8376
  msgid "More Information & Examples"
8377
  msgstr ""
8378
 
8379
+ #: languages/vue.php:2480
8380
  msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
8381
  msgstr ""
8382
 
8383
+ #: languages/vue.php:2483
8384
  msgid "Campaign Source"
8385
  msgstr ""
8386
 
8387
+ #: languages/vue.php:2486
8388
  msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
8389
  msgstr ""
8390
 
8391
+ #: languages/vue.php:2489
8392
  msgid "Campaign Medium"
8393
  msgstr ""
8394
 
8395
+ #: languages/vue.php:2492
8396
  msgid "Use utm_medium to identify a medium such as email or cost-per-click."
8397
  msgstr ""
8398
 
8399
+ #: languages/vue.php:2495
8400
  msgid "Campaign Name"
8401
  msgstr ""
8402
 
8403
+ #: languages/vue.php:2498
8404
  msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
8405
  msgstr ""
8406
 
8407
+ #: languages/vue.php:2501
8408
  msgid "Campaign Term"
8409
  msgstr ""
8410
 
8411
+ #: languages/vue.php:2504
8412
  msgid "Used for paid search. Use utm_term to note the keywords for this ad."
8413
  msgstr ""
8414
 
8415
+ #: languages/vue.php:2507
8416
  msgid "Campaign Content"
8417
  msgstr ""
8418
 
8419
+ #: languages/vue.php:2510
8420
  msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
8421
  msgstr ""
8422
 
8423
  #. Translators: Example.
8424
+ #: languages/vue.php:2514
8425
  msgid "Example: %s"
8426
  msgstr ""
8427
 
8428
  #. Translators: Examples.
8429
+ #: languages/vue.php:2518
8430
  msgid "Examples: %s"
8431
  msgstr ""
8432
 
8433
+ #: languages/vue.php:2521
8434
  msgid "About Campaigns"
8435
  msgstr ""
8436
 
8437
+ #: languages/vue.php:2524
8438
  msgid "About Custom Campaigns"
8439
  msgstr ""
8440
 
8441
+ #: languages/vue.php:2527
8442
  msgid "Best Practices for Creating Custom Campaigns"
8443
  msgstr ""
8444
 
8445
+ #: languages/vue.php:2530
8446
  msgid "About the Referral Traffic Report"
8447
  msgstr ""
8448
 
8449
+ #: languages/vue.php:2533
8450
  msgid "About Traffic Source Dimensions"
8451
  msgstr ""
8452
 
8453
+ #: languages/vue.php:2536
8454
  msgid "AdWords Auto-Tagging"
8455
  msgstr ""
8456
 
8457
+ #: languages/vue.php:2539
8458
  msgid "Additional Information"
8459
  msgstr ""
8460
 
8461
+ #: languages/vue.php:2542
8462
  msgid "Affiliate Links"
8463
  msgstr ""
8464
 
8465
  #. Translators: Add links to documentation.
8466
+ #: languages/vue.php:2546
8467
  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."
8468
  msgstr ""
8469
 
8470
+ #: languages/vue.php:2549
8471
  msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
8472
  msgstr ""
8473
 
8474
+ #: languages/vue.php:2552
8475
  msgid "The ExactMetrics Headline Analyzer tool in the Gutenberg editor enables you to write irresistible SEO-friendly headlines that drive traffic, social media shares, and rank better in search results."
8476
  msgstr ""
8477
 
8478
+ #: languages/vue.php:2555
8479
  msgid "Disable the Headline Analyzer"
8480
  msgstr ""
8481
 
8482
  #. Translators: Add line break.
8483
+ #: languages/vue.php:2559
8484
  msgid "See All Your Important Store%s Metrics in One Place"
8485
  msgstr ""
8486
 
8487
+ #: languages/vue.php:2562
8488
  msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
8489
  msgstr ""
8490
 
8491
+ #: languages/vue.php:2565
8492
  msgid "See Your Conversion Rate to Improve Funnel"
8493
  msgstr ""
8494
 
8495
+ #: languages/vue.php:2569
8496
  msgid "See The Number of Transactions and Make Data-Driven Decisions"
8497
  msgstr ""
8498
 
8499
+ #: languages/vue.php:2573
8500
  msgid "See The Total Revenue to Track Growth"
8501
  msgstr ""
8502
 
8503
+ #: languages/vue.php:2577
8504
  msgid "See Average Order Value to Find Offer Opportunities"
8505
  msgstr ""
8506
 
8507
+ #: languages/vue.php:2581
8508
  msgid "See Your Top Products to See Individual Performance"
8509
  msgstr ""
8510
 
8511
+ #: languages/vue.php:2584
8512
  msgid "See your Top Conversion Sources and Focus on what's Working"
8513
  msgstr ""
8514
 
8515
+ #: languages/vue.php:2588
8516
  msgid "See The Time it Takes for Customers to Purchase"
8517
  msgstr ""
8518
 
8519
+ #: languages/vue.php:2592
8520
  msgid "See How Many Sessions are Needed for a Purchase"
8521
  msgstr ""
8522
 
8523
+ #: languages/vue.php:2595
8524
  msgid "Automatically Track Affiliate Sales"
8525
  msgstr ""
8526
 
8527
+ #: languages/vue.php:2598
8528
  msgid "The ExactMetrics eCommerce addon works with EasyAffiliate, so that you can instantly track all affiliate referrals and sales inside WordPress and Google Analytics, with no coding needed."
8529
  msgstr ""
8530
 
8531
+ #: languages/vue.php:2601
8532
  msgid "Works with WooCommerce, MemberPress, and EasyDigitalDownloads."
8533
  msgstr ""
8534
 
8535
+ #: languages/vue.php:2604
8536
  msgid "Cross Domain Tracking"
8537
  msgstr ""
8538
 
8539
  #. Translators: Add links to documentation.
8540
+ #: languages/vue.php:2608
8541
  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."
8542
  msgstr ""
8543
 
8544
+ #: languages/vue.php:2611
8545
  msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
8546
  msgstr ""
8547
 
8548
+ #: languages/vue.php:2614
8549
  msgid "Anonymize IP Addresses"
8550
  msgstr ""
8551
 
8552
+ #: languages/vue.php:2617
8553
  msgid "Link Attribution"
8554
  msgstr ""
8555
 
8556
+ #: languages/vue.php:2620
8557
  msgid "Enable Enhanced Link Attribution"
8558
  msgstr ""
8559
 
8560
+ #: languages/vue.php:2623
8561
  msgid "Enable Anchor Tracking"
8562
  msgstr ""
8563
 
8564
+ #: languages/vue.php:2626
8565
  msgid "Enable allowAnchor"
8566
  msgstr ""
8567
 
8568
+ #: languages/vue.php:2629
8569
  msgid "Enable allowLinker"
8570
  msgstr ""
8571
 
8572
+ #: languages/vue.php:2632
8573
  msgid "Enable Tag Links in RSS"
8574
  msgstr ""
8575
 
8576
+ #: languages/vue.php:2635
8577
  msgid "File Downloads"
8578
  msgstr ""
8579
 
8580
+ #: languages/vue.php:2638
8581
  msgid "Extensions of Files to Track as Downloads"
8582
  msgstr ""
8583
 
8584
+ #: languages/vue.php:2641
8585
  msgid "ExactMetrics will send an event to Google Analytics if a link to a file has one of the above extensions."
8586
  msgstr ""
8587
 
8588
  #. Translators: Add links to documentation.
8589
+ #: languages/vue.php:2645
8590
  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."
8591
  msgstr ""
8592
 
8593
  #. Translators: Add links to documentation.
8594
+ #: languages/vue.php:2649
8595
  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."
8596
  msgstr ""
8597
 
8598
  #. Translators: Add links to documentation.
8599
+ #: languages/vue.php:2653
8600
  msgid "Adds the Enhanced Link Attribution (retain link) code to improve the accuracy of your In-Page Analytics report by automatically differentiating between multiple links to the same URL on a single page by using link element IDs."
8601
  msgstr ""
8602
 
8603
+ #: languages/vue.php:2656
8604
  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."
8605
  msgstr ""
8606
 
8607
  #. Translators: Add links to documentation.
8608
+ #: languages/vue.php:2660
8609
  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."
8610
  msgstr ""
8611
 
8612
  #. Translators: Add links to documentation.
8613
+ #: languages/vue.php:2664
8614
  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."
8615
  msgstr ""
8616
 
8617
  #. Translators: Add links to documentation.
8618
+ #: languages/vue.php:2668
8619
  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."
8620
  msgstr ""
8621
 
8622
+ #: languages/vue.php:2671
8623
  msgid "Add domain"
8624
  msgstr ""
8625
 
8626
  #. Translators: Domain name example.
8627
+ #: languages/vue.php:2675
8628
  msgid "Domain (example: %s)"
8629
  msgstr ""
8630
 
8631
  #. Translators: Current domain name that should not be used.
8632
+ #: languages/vue.php:2679
8633
  msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
8634
  msgstr ""
8635
 
8636
  #. Translators: Adds link to the account area to retreive license key.
8637
+ #: languages/vue.php:2683
8638
  msgid "Already have a license key? Add it below to unlock ExactMetrics PRO. %1$sRetrieve your license key%2$s."
8639
  msgstr ""
8640
 
8641
+ #: languages/vue.php:2686
8642
  msgid "Connect ExactMetrics to Start Tracking Your Data"
8643
  msgstr ""
8644
 
8645
+ #: languages/vue.php:2689
8646
  msgid "Complete Upgrade"
8647
  msgstr ""
8648
 
8649
+ #: languages/vue.php:2692
8650
  msgid "Upgrade to Pro Version!"
8651
  msgstr ""
8652
 
8653
  #. Translators: Make text bold.
8654
+ #: languages/vue.php:2696
8655
  msgid "%1$sExactMetrics%2$s can automatically upgrade the installed version to the Pro and walk you through the process."
8656
  msgstr ""
8657
 
8658
+ #: languages/vue.php:2699
8659
  msgid "Install All-in-One SEO"
8660
  msgstr ""
8661
 
8662
+ #: languages/vue.php:2702
8663
  msgid "Improve Your Website Search Rankings With All-In-One SEO"
8664
  msgstr ""
8665
 
8666
+ #: languages/vue.php:2705
8667
  msgid "If you’re not using a plugin to optimize your website’s SEO you’re missing out on valuable organic traffic!"
8668
  msgstr ""
8669
 
8670
+ #: languages/vue.php:2708
8671
  msgid "Finally, a WordPress SEO Plugin that’s Easy and Powerful!"
8672
  msgstr ""
8673
 
8674
+ #: languages/vue.php:2711
8675
  msgid "AIOSEO makes it easy to set up the proper SEO foundations in less than 10 minutes."
8676
  msgstr ""
8677
 
8678
+ #: languages/vue.php:2714
8679
  msgid "Local SEO"
8680
  msgstr ""
8681
 
8682
+ #: languages/vue.php:2717
8683
  msgid "All in One SEO gives you all the tools you need to improve your local SEO and rank higher on Google Maps."
8684
  msgstr ""
8685
 
8686
+ #: languages/vue.php:2720
8687
  msgid "WooCommerce SEO"
8688
  msgstr ""
8689
 
8690
+ #: languages/vue.php:2723
8691
  msgid "Advanced eCommerce SEO support for WooCommerce to optimize product pages, product categories, and more."
8692
  msgstr ""
8693
 
8694
+ #: languages/vue.php:2726
8695
  msgid "SEO Custom User Roles"
8696
  msgstr ""
8697
 
8698
+ #: languages/vue.php:2729
8699
  msgid "SEO user roles allow you to manage access to important SEO features without handing over control of your website."
8700
  msgstr ""
8701
 
8702
+ #: languages/vue.php:2732
8703
  msgid "Google News Sitemap"
8704
  msgstr ""
8705
 
8706
+ #: languages/vue.php:2735
8707
  msgid "Get higher rankings and unlock more traffic by submitting your latest news articles to Google News."
8708
  msgstr ""
8709
 
8710
+ #: languages/vue.php:2738
8711
  msgid "Smart XML Sitemaps"
8712
  msgstr ""
8713
 
8714
+ #: languages/vue.php:2741
8715
  msgid "Automatically generate a WordPress XML sitemap and notify all search engines of any updates."
8716
  msgstr ""
8717
 
8718
+ #: languages/vue.php:2744
8719
  msgid "Social Media Integration"
8720
  msgstr ""
8721
 
8722
+ #: languages/vue.php:2747
8723
  msgid "Easily control how your content and thumbnails look on Facebook, Twitter, and other social media networks."
8724
  msgstr ""
8725
 
8726
+ #: languages/vue.php:2750
8727
  msgid "TruSEO On-Page Analysis"
8728
  msgstr ""
8729
 
8730
+ #: languages/vue.php:2753
8731
  msgid "Easily add title tags, meta descriptions, keywords, and everything else you need for proper on-page SEO optimization."
8732
  msgstr ""
8733
 
8734
+ #: languages/vue.php:2756
8735
  msgid "& Many More!"
8736
  msgstr ""
8737
 
8738
+ #: languages/vue.php:2759
8739
  msgid "Installing. Please wait.."
8740
  msgstr ""
8741
 
8742
+ #: languages/vue.php:2762
8743
  msgid "Install All-in-One-SEO"
8744
  msgstr ""
8745
 
8746
+ #: languages/vue.php:2765
8747
  msgid "Unlock the Publisher Report and Focus on the Content That Matters"
8748
  msgstr ""
8749
 
8750
+ #: languages/vue.php:2768
8751
  msgid "See Your Top Landing Pages to Improve Engagement"
8752
  msgstr ""
8753
 
8754
+ #: languages/vue.php:2771
8755
  msgid "See Your Top Exit Pages to Reduce Abandonment"
8756
  msgstr ""
8757
 
8758
+ #: languages/vue.php:2774
8759
  msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
8760
  msgstr ""
8761
 
8762
+ #: languages/vue.php:2777
8763
  msgid "See Your Top Affiliate Links and Focus on What’s Working"
8764
  msgstr ""
8765
 
8766
+ #: languages/vue.php:2780
8767
  msgid "See Your Top Downloads and Improve Conversions"
8768
  msgstr ""
8769
 
8770
+ #: languages/vue.php:2783
8771
  msgid "See Audience Demographic Report (Age / Gender / Interests)"
8772
  msgstr ""
8773
 
8774
+ #: languages/vue.php:2786
8775
  msgid "Welcome to the all-new ExactMetrics"
8776
  msgstr ""
8777
 
8778
+ #: languages/vue.php:2789
8779
  msgid "Redesigned from the ground up, ExactMetrics is built to bring a world-class analytics and reporting experience to WordPress."
8780
  msgstr ""
8781
 
8782
+ #: languages/vue.php:2792
8783
  msgid "The New & Improved ExactMetrics includes:"
8784
  msgstr ""
8785
 
8786
+ #: languages/vue.php:2795
8787
  msgid "All-New Design"
8788
  msgstr ""
8789
 
8790
+ #: languages/vue.php:2798
8791
  msgid "Better Reporting"
8792
  msgstr ""
8793
 
8794
+ #: languages/vue.php:2801
8795
  msgid "Better Tracking"
8796
  msgstr ""
8797
 
8798
+ #: languages/vue.php:2804
8799
  msgid "Better Support"
8800
  msgstr ""
8801
 
8802
+ #: languages/vue.php:2807
8803
  msgid "Continue"
8804
  msgstr ""
8805
 
8806
+ #: languages/vue.php:2810
8807
  msgid "Your settings have been automatically transferred."
8808
  msgstr ""
8809
 
8810
+ #: languages/vue.php:2813
8811
  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."
8812
  msgstr ""
8813
 
8814
+ #: languages/vue.php:2816
8815
  msgid "New"
8816
  msgstr ""
8817
 
8818
+ #: languages/vue.php:2819
8819
  msgid "Returning"
8820
  msgstr ""
8821
 
8822
+ #: languages/vue.php:2822
8823
  msgid "Top 10 Countries"
8824
  msgstr ""
8825
 
8826
+ #: languages/vue.php:2825
8827
  msgid "View Countries Report"
8828
  msgstr ""
8829
 
8830
+ #: languages/vue.php:2828
8831
  msgid "Top 10 Referrals"
8832
  msgstr ""
8833
 
8834
+ #: languages/vue.php:2831
8835
  msgid "View All Referral Sources"
8836
  msgstr ""
8837
 
8838
+ #: languages/vue.php:2834
8839
  msgid "View Full Posts/Pages Report"
8840
  msgstr ""
8841
 
8842
+ #: languages/vue.php:2837
8843
  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."
8844
  msgstr ""
8845
 
8846
+ #: languages/vue.php:2840
8847
  msgid "This list shows the top countries your website visitors are from."
8848
  msgstr ""
8849
 
8850
+ #: languages/vue.php:2843
8851
  msgid "This list shows the top websites that send your website traffic, known as referral traffic."
8852
  msgstr ""
8853
 
8854
+ #: languages/vue.php:2846
8855
  msgid "This feature requires ExactMetrics Pro"
8856
  msgstr ""
8857
 
8858
+ #: languages/vue.php:2849
8859
  msgid "By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more."
8860
  msgstr ""
8861
 
8862
+ #: languages/vue.php:2852
8863
  msgid "Upgrade to Pro and Unlock Popular Products"
8864
  msgstr ""
8865
 
8866
+ #: languages/vue.php:2855
8867
  msgid "View all Pro features"
8868
  msgstr ""
8869
 
8870
+ #: languages/vue.php:2858
8871
  msgid "View notifications"
8872
  msgstr ""
8873
 
8874
+ #: languages/vue.php:2861
8875
  msgid "Days"
8876
  msgstr ""
8877
 
8878
  #. Translators: placeholders make text small.
8879
+ #: languages/vue.php:2865
8880
  msgid "7 days"
8881
  msgstr ""
8882
 
8883
+ #: languages/vue.php:2868
8884
  msgid "30 days"
8885
  msgstr ""
8886
 
8887
+ #: languages/vue.php:2871
8888
  msgid "Custom"
8889
  msgstr ""
8890
 
8891
+ #: languages/vue.php:2874
8892
  msgid "2,000,000+ use AIOSEO to Improve Their Website Search Rankings"
8893
  msgstr ""
8894
 
8895
+ #: languages/vue.php:2877
8896
  msgid "All-in-One SEO is a great product. I have been using it on all my WP sites for several years. I highly recommend it."
8897
  msgstr ""
8898
 
8899
+ #: languages/vue.php:2880
8900
  msgid "Jack Brown"
8901
  msgstr ""
8902
 
8903
+ #: languages/vue.php:2883
8904
  msgid "PJB Internet Marketing"
8905
  msgstr ""
8906
 
8907
+ #: languages/vue.php:2886
8908
  msgid "I’m a professional SEO and used many tools and extensions. Regarding simplicity, individuality and configurability All in One SEO Pro is by far the best SEO plugin out there for WordPress."
8909
  msgstr ""
8910
 
8911
+ #: languages/vue.php:2889
8912
  msgid "Joel Steinmann"
8913
  msgstr ""
8914
 
8915
+ #: languages/vue.php:2892
8916
  msgid "CEO, Solergo"
8917
  msgstr ""
8918
 
8919
+ #: languages/vue.php:2895
8920
  msgid "Only Show Posts from These Categories"
8921
  msgstr ""
8922
 
8923
+ #: languages/vue.php:2898
8924
  msgid "Choose from which categories posts will be displayed in the widget. All categories will be used if left empty."
8925
  msgstr ""
8926
 
8927
+ #: languages/vue.php:2901
8928
  msgid "Activating..."
8929
  msgstr ""
8930
 
8931
+ #: languages/vue.php:2904
8932
  msgid "Deactivating..."
8933
  msgstr ""
8934
 
8935
+ #: languages/vue.php:2907
8936
  msgid "Deactivate"
8937
  msgstr ""
8938
 
8939
+ #: languages/vue.php:2910
8940
  msgid "Search Console Report"
8941
  msgstr ""
8942
 
8943
+ #: languages/vue.php:2913
8944
  msgid "See exactly how people find tour website, which keywords they searched for, how many times the results were viewed, and more."
8945
  msgstr ""
8946
 
8947
+ #: languages/vue.php:2916
8948
  msgid "See Your Top Google Search Terms and Optimize Content"
8949
  msgstr ""
8950
 
8951
+ #: languages/vue.php:2919
8952
  msgid "See The Number of Clicks and Track Interests"
8953
  msgstr ""
8954
 
8955
+ #: languages/vue.php:2922
8956
  msgid "See The Click-Through-Ratio and Improve SEO"
8957
  msgstr ""
8958
 
8959
+ #: languages/vue.php:2925
8960
  msgid "See The Average Results Position and Focus on what works."
8961
  msgstr ""
8962
 
8963
+ #: languages/vue.php:2928
8964
  msgid "Ecommerce Report"
8965
  msgstr ""
8966
 
8967
+ #: languages/vue.php:2931
8968
  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."
8969
  msgstr ""
8970
 
8971
+ #: languages/vue.php:2934
8972
  msgid "See Your Conversion Rate to Improve Your Funnel"
8973
  msgstr ""
8974
 
8975
+ #: languages/vue.php:2937
8976
  msgid "See Your Top Conversion Sources and Focus on What's Working"
8977
  msgstr ""
8978
 
8979
+ #: languages/vue.php:2940
8980
  msgid "Popular Posts data can be fetched correctly"
8981
  msgstr ""
8982
 
8983
+ #: languages/vue.php:2943
8984
  msgid "Please note: depending on when you set up the Custom Dimensions settings, it may take up to 7 days to see relevant Popular Posts data loading from Google Analytics."
8985
  msgstr ""
8986
 
8987
+ #: languages/vue.php:2946
8988
  msgid "Close"
8989
  msgstr ""
8990
 
8991
+ #: languages/vue.php:2949
8992
  msgid "Add Top 5 Posts from Google Analytics"
8993
  msgstr ""
8994
 
8995
+ #: languages/vue.php:2952
8996
  msgid "In order to load the top posts from Google Analytics you will need to enable the Custom Dimensions addon and set up the Post Type custom dimension in both ExactMetrics and Google Analytics settings."
8997
  msgstr ""
8998
 
8999
+ #: languages/vue.php:2955
9000
  msgid "Test Automated Posts"
9001
  msgstr ""
9002
 
9003
  #. Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc.
9004
+ #: languages/vue.php:2959
9005
  msgid "Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics."
9006
  msgstr ""
9007
 
9008
+ #: languages/vue.php:2962
9009
  msgid "Automated + Curated"
9010
  msgstr ""
9011
 
9012
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
9013
+ #: languages/vue.php:2966
9014
  msgid "Automatically add the top 5 Posts from the past 30 days to your Curated list of Posts using %1$sCustom Dimensions%2$s. Also requires Sort By - Curated to be selected. Setup steps can be found in our %3$sknowledge base%4$s."
9015
  msgstr ""
9016
 
9017
  #. Translators: Placeholder gets replaced with current license version.
9018
+ #: languages/vue.php:2970
9019
  msgid "Pro version is required."
9020
  msgstr ""
9021
 
9022
+ #: languages/vue.php:2973
9023
  msgid "Verifying Popular Posts data"
9024
  msgstr ""
9025
 
9026
+ #: languages/vue.php:2976
9027
  msgid "Multiple Entries"
9028
  msgstr ""
9029
 
9030
+ #: languages/vue.php:2979
9031
  msgid "Total Number of Widgets to Show"
9032
  msgstr ""
9033
 
9034
+ #: languages/vue.php:2982
9035
  msgid "Choose how many widgets will be placed in a single Post."
9036
  msgstr ""
9037
 
9038
+ #: languages/vue.php:2985
9039
  msgid "Minimum Distance Between Widgets"
9040
  msgstr ""
9041
 
9042
+ #: languages/vue.php:2988
9043
  msgid "Choose the distance between widgets."
9044
  msgstr ""
9045
 
9046
+ #: languages/vue.php:2991
9047
  msgid "Minimum Word Count to Display Multiple Widgets"
9048
  msgstr ""
9049
 
9050
+ #: languages/vue.php:2994
9051
  msgid "Choose the minimum word count for a Post to have multiple entries."
9052
  msgstr ""
9053
 
9054
+ #: languages/vue.php:2997
9055
  msgid "Pro version is required"
9056
  msgstr ""
9057
 
9058
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
9059
+ #: languages/vue.php:3001
9060
  msgid "Automatically add the top 5 Posts from the past 30 days to your Curated list of Posts using Custom Dimensions (Pro version required. %1$sUpgrade now%2$s)."
9061
  msgstr ""
9062
 
9063
+ #: languages/vue.php:3004
9064
  msgid "Select posts/search"
9065
  msgstr ""
9066
 
9067
+ #: languages/vue.php:3007
9068
  msgid "Oops! No posts found."
9069
  msgstr ""
9070
 
9071
+ #: languages/vue.php:3010
9072
  msgid "Search by post title"
9073
  msgstr ""
9074
 
9075
+ #: languages/vue.php:3013
9076
  msgid "Can't load posts."
9077
  msgstr ""
9078
 
9079
+ #: languages/vue.php:3016
9080
  msgid "Sartorial taxidermy venmo you probably haven't heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu."
9081
  msgstr ""
9082
 
9083
+ #: languages/vue.php:3019
9084
  msgid "Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan"
9085
  msgstr ""
9086
 
9087
+ #: languages/vue.php:3022
9088
  msgid "Color"
9089
  msgstr ""
9090
 
9091
+ #: languages/vue.php:3025
9092
  msgid "Size"
9093
  msgstr ""
9094
 
9095
+ #: languages/vue.php:3028
9096
  msgid "Title"
9097
  msgstr ""
9098
 
9099
+ #: languages/vue.php:3031
9100
  msgid "Label"
9101
  msgstr ""
9102
 
9103
+ #: languages/vue.php:3034
9104
  msgid "Background"
9105
  msgstr ""
9106
 
9107
+ #: languages/vue.php:3037
9108
  msgid "Border"
9109
  msgstr ""
9110
 
9111
+ #: languages/vue.php:3040
9112
  msgid "Icon"
9113
  msgstr ""
9114
 
9115
+ #: languages/vue.php:3043
9116
  #: lite/includes/popular-posts/class-popular-posts-widget-sidebar.php:257
9117
  msgid "Theme Preview"
9118
  msgstr ""
9119
 
9120
+ #: languages/vue.php:3046
9121
  msgid "SharedCount API Key"
9122
  msgstr ""
9123
 
9124
+ #: languages/vue.php:3049
9125
  msgid "Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing."
9126
  msgstr ""
9127
 
9128
+ #: languages/vue.php:3052
9129
  msgid "Start Indexing"
9130
  msgstr ""
9131
 
9132
+ #: languages/vue.php:3055
9133
  msgid "%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing."
9134
  msgstr ""
9135
 
9136
+ #: languages/vue.php:3058
9137
  msgid "Indexing completed, counts will update automatically every day."
9138
  msgstr ""
9139
 
9140
  #. Translators: Minimum and maximum number that can be used.
9141
+ #: languages/vue.php:3062
9142
  msgid "Please enter a value between %1$s and %2$s"
9143
  msgstr ""
9144
 
9145
  #. Translators: The minimum set value.
9146
+ #: languages/vue.php:3066
9147
  msgid "Please enter a value higher than %s"
9148
  msgstr ""
9149
 
9150
  #. Translators: The maximum set value.
9151
+ #: languages/vue.php:3070
9152
  msgid "Please enter a value lower than %s"
9153
  msgstr ""
9154
 
9155
+ #: languages/vue.php:3073
9156
  msgid "Please enter a number"
9157
  msgstr ""
9158
 
9159
+ #: languages/vue.php:3076
9160
  msgid "Value has to be a round number"
9161
  msgstr ""
9162
 
9163
+ #: languages/vue.php:3079
9164
  msgid "Author/Date"
9165
  msgstr ""
9166
 
9167
+ #: languages/vue.php:3091
9168
  msgid "Choose which content you would like displayed in the widget."
9169
  msgstr ""
9170
 
9171
+ #: languages/vue.php:3103
9172
  msgid "Comments"
9173
  msgstr ""
9174
 
9175
+ #: languages/vue.php:3109
9176
  msgid "Choose how many posts you’d like displayed in the widget."
9177
  msgstr ""
9178
 
9179
  #. Translators: Page number of total pages. 1 & 2 make the first part of the text bold.
9180
+ #: languages/vue.php:3113
9181
  msgid "%1$sPage %3$s%2$s of %4$s"
9182
  msgstr ""
9183
 
9184
+ #: languages/vue.php:3116
9185
  msgid "Wide"
9186
  msgstr ""
9187
 
9188
+ #: languages/vue.php:3119
9189
  msgid "Narrow"
9190
  msgstr ""
9191
 
9192
  #. Translators: Make text green.
9193
+ #: languages/vue.php:3123
9194
  msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
9195
  msgstr ""
9196
 
9197
+ #: languages/vue.php:3129
9198
  msgid "Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone."
9199
  msgstr ""
9200
 
9201
+ #: languages/vue.php:3132
9202
  msgid "Our email summaries feature sends a weekly summary of the most important site analytics information."
9203
  msgstr ""
9204
 
9205
+ #: languages/vue.php:3135
9206
  msgid "Usage Tracking"
9207
  msgstr ""
9208
 
9209
+ #: languages/vue.php:3138
9210
  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."
9211
  msgstr ""
9212
 
9213
+ #: languages/vue.php:3141
9214
  msgid "Allow usage tracking"
9215
  msgstr ""
9216
 
9217
  #. Translators: Adds a link to the documentation.
9218
+ #: languages/vue.php:3145
9219
  msgid "Complete documentation on usage tracking is available %1$shere%2$s."
9220
  msgstr ""
9221
 
9222
+ #: languages/vue.php:3148
9223
  msgid "Facebook Instant Articles"
9224
  msgstr ""
9225
 
9226
+ #: languages/vue.php:3151
9227
  msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to ExactMetrics Pro."
9228
  msgstr ""
9229
 
9230
+ #: languages/vue.php:3154
9231
  msgid "Performance"
9232
  msgstr ""
9233
 
9234
+ #: languages/vue.php:3157
9235
  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."
9236
  msgstr ""
9237
 
9238
+ #: languages/vue.php:3160
9239
  msgid "Google AMP"
9240
  msgstr ""
9241
 
9242
+ #: languages/vue.php:3163
9243
  msgid "Want to use track users visiting your AMP pages? By upgrading to ExactMetrics Pro, you can enable AMP page tracking."
9244
  msgstr ""
9245
 
9246
+ #: languages/vue.php:3166
9247
  msgid "Ads Tracking"
9248
  msgstr ""
9249
 
9250
+ #: languages/vue.php:3169
9251
  msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
9252
  msgstr ""
9253
 
9254
+ #: languages/vue.php:3172
9255
  msgid "Unlock with %s"
9256
  msgstr ""
9257
 
9258
+ #: languages/vue.php:3175
9259
  msgid "Scroll Tracking"
9260
  msgstr ""
9261
 
9262
+ #: languages/vue.php:3178
9263
  msgid "Scroll depth tracking in web analytics is one of those things you simply must do, especially if you have a content-heavy site."
9264
  msgstr ""
9265
 
9266
+ #: languages/vue.php:3181
9267
  msgid ""
9268
  "The EU Compliance addon allows you to improve compliance with GDPR\n"
9269
  " and other privacy regulations."
9270
  msgstr ""
9271
 
9272
+ #: languages/vue.php:3185
9273
  msgid "EU Compliance"
9274
  msgstr ""
9275
 
9276
+ #: languages/vue.php:3188
9277
  msgid "Compatibility mode"
9278
  msgstr ""
9279
 
9280
+ #: languages/vue.php:3191
9281
  msgid "Enable _gtagTracker Compatibility"
9282
  msgstr ""
9283
 
9284
  #. Translators: Placeholder gets replaced with default GA js function.
9285
+ #: languages/vue.php:3195
9286
  msgid "This enables ExactMetrics to work with plugins that use %1$s and don't support %2$s"
9287
  msgstr ""
9288
 
9289
+ #: languages/vue.php:3198
9290
  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!"
9291
  msgstr ""
9292
 
9293
+ #: languages/vue.php:3201
9294
  msgid "To unlock more features consider upgrading to PRO."
9295
  msgstr ""
9296
 
9297
+ #: languages/vue.php:3204
9298
  msgid "Upgrade to"
9299
  msgstr ""
9300
 
9301
+ #: languages/vue.php:3207
9302
  msgid "Export PDF Report"
9303
  msgstr ""
9304
 
9305
+ #: languages/vue.php:3210
9306
  msgid "You can export PDF reports only in the PRO version."
9307
  msgstr ""
9308
 
9309
+ #: languages/vue.php:3213
9310
  msgid "Display Method"
9311
  msgstr ""
9312
 
9313
+ #: languages/vue.php:3216
9314
  msgid "There are two ways to manual include the widget in your posts."
9315
  msgstr ""
9316
 
9317
+ #: languages/vue.php:3219
9318
  msgid "Using the Gutenberg Block"
9319
  msgstr ""
9320
 
9321
+ #: languages/vue.php:3222
9322
  msgid "Using the Shortcode"
9323
  msgstr ""
9324
 
9325
+ #: languages/vue.php:3225
9326
  msgid "Learn how to insert the widget using Gutenberg blocks."
9327
  msgstr ""
9328
 
9329
+ #: languages/vue.php:3228
9330
  msgid "Learn how to insert the widget using out Shortcode."
9331
  msgstr ""
9332
 
9333
+ #: languages/vue.php:3231
9334
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg"
9335
  msgstr ""
9336
 
9337
+ #: languages/vue.php:3234
9338
  msgid "%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page."
9339
  msgstr ""
9340
 
9341
+ #: languages/vue.php:3237
9342
  msgid "%1$sStep 2%2$s - Search for “Inline Popular Posts by ExactMetrics”."
9343
  msgstr ""
9344
 
9345
+ #: languages/vue.php:3240
9346
  msgid "%1$sStep 3%2$s - Style the widget using the Block Settings sidebar."
9347
  msgstr ""
9348
 
9349
+ #: languages/vue.php:3243
9350
  msgid "Shortcode"
9351
  msgstr ""
9352
 
9353
+ #: languages/vue.php:3246
9354
  msgid "Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin."
9355
  msgstr ""
9356
 
9357
+ #: languages/vue.php:3249
9358
  msgid "Copy Shortcode"
9359
  msgstr ""
9360
 
9361
+ #: languages/vue.php:3252
9362
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode"
9363
  msgstr ""
9364
 
9365
+ #: languages/vue.php:3255
9366
  msgid "Automatic Placement"
9367
  msgstr ""
9368
 
9369
+ #: languages/vue.php:3258
9370
  msgid "Display using Gutenberg Blocks"
9371
  msgstr ""
9372
 
9373
+ #: languages/vue.php:3261
9374
  msgid "Embed Options"
9375
  msgstr ""
9376
 
9377
+ #: languages/vue.php:3264
9378
  msgid "All Embed Options can be used in conjunction with one another."
9379
  msgstr ""
9380
 
9381
+ #: languages/vue.php:3267
9382
  msgid "Using Automatic Embed"
9383
  msgstr ""
9384
 
9385
+ #: languages/vue.php:3270
9386
  msgid "Learn how to insert the Popular Posts Widget into your posts and pages using Gutenberg Blocks. To style this widget, use the Gutenberg Block settings."
9387
  msgstr ""
9388
 
9389
+ #: languages/vue.php:3273
9390
  msgid "Enabling Automatic Placement will include the Popular Posts Widget after the last paragraph of any and all posts that match your Behavior settings. To style this widget use the Customize Design panel above."
9391
  msgstr ""
9392
 
9393
+ #: languages/vue.php:3276
9394
  msgid "Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above."
9395
  msgstr ""
9396
 
9397
+ #: languages/vue.php:3279
9398
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg"
9399
  msgstr ""
9400
 
9401
+ #: languages/vue.php:3282
9402
  msgid "%1$sStep 2%2$s - Search for “Popular Posts”."
9403
  msgstr ""
9404
 
9405
+ #: languages/vue.php:3285
9406
  msgid "%1$sStep 1%2$s - Navigate to your Appearance > Widgets page using the menu on the left side your screen. Must be logged in as Admin."
9407
  msgstr ""
9408
 
9409
+ #: languages/vue.php:3288
9410
  msgid "%1$sStep 2%2$s - On the left, under Available Widgets, look for the Popular Posts - ExactMetrics widget and drag it into the desired Sidebar on the right."
9411
  msgstr ""
9412
 
9413
+ #: languages/vue.php:3291
9414
  msgid "%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design."
9415
  msgstr ""
9416
 
9417
+ #: languages/vue.php:3294
9418
  msgid "Display using a Shortcode"
9419
  msgstr ""
9420
 
9421
+ #: languages/vue.php:3297
9422
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode"
9423
  msgstr ""
9424
 
9425
+ #: languages/vue.php:3300
9426
  msgid "Enable Automatic Placement"
9427
  msgstr ""
9428
 
9429
+ #: languages/vue.php:3303
9430
  msgid "Display in a Sidebar"
9431
  msgstr ""
9432
 
9433
+ #: languages/vue.php:3306
9434
  msgid "Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above."
9435
  msgstr ""
9436
 
9437
+ #: languages/vue.php:3309
9438
  msgid "Watch Video - How to Add the Popular Posts widget using Widgets"
9439
  msgstr ""
9440
 
9441
  #. Translators: The number of results.
9442
+ #: languages/vue.php:3313
9443
  msgid "%s results"
9444
  msgstr ""
9445
 
9446
+ #: languages/vue.php:3316
9447
  msgid "Media"
9448
  msgstr ""
9449
 
9450
+ #: languages/vue.php:3319
9451
  msgid "Track how your users interact with videos on your website. Upgrade to ExactMetrics Pro."
9452
  msgstr ""
9453
 
9454
+ #: languages/vue.php:3322
9455
  msgid "2021 Year in Review"
9456
  msgstr ""
9457
 
9458
+ #: languages/vue.php:3325
9459
  msgid "Media- Track how your users interact with videos on your website."
9460
  msgstr ""
9461
 
9462
+ #: languages/vue.php:3328
9463
  msgid "Your 2021 Year in Review is still calculating. Please check back later to see how your website performed last year."
9464
  msgstr ""
9465
 
9466
+ #: languages/vue.php:3331
9467
  msgid "Your 2021 Analytics Report"
9468
  msgstr ""
9469
 
9470
+ #: languages/vue.php:3337
9471
  msgid "January 1, 2021 - December 31, 2021"
9472
  msgstr ""
9473
 
9474
+ #: languages/vue.php:3340
9475
  msgid "A Tip for 2022"
9476
  msgstr ""
9477
 
9478
+ #: languages/vue.php:3343
9479
  msgid "A Tip For 2022"
9480
  msgstr ""
9481
 
9482
+ #: languages/vue.php:3346
9483
  msgid "Here's to an amazing 2022!"
9484
  msgstr ""
9485
 
9486
+ #: languages/vue.php:3349
9487
  msgid "Try our other popular WordPress plugins to grow your website in 2022."
9488
  msgstr ""
9489
 
9490
+ #: languages/vue.php:3352
9491
  msgid "Become a WordPress expert in 2022. Join our amazing communities and take your website to the next level."
9492
  msgstr ""
9493
 
9494
+ #: languages/vue.php:3355
9495
  msgid "Copyright ExactMetrics, 2022"
9496
  msgstr ""
9497
 
9498
  #. Translators: Number of minutes spent on site.
9499
+ #: languages/vue.php:3359
9500
  msgid "Each visitor spent an average of %s minutes on your website in 2021."
9501
  msgstr ""
9502
 
9503
  #. Translators: Placeholders are used for making text bold and adding a link.
9504
+ #: languages/vue.php:3363
9505
  msgid "%1$sYou're using %2$s Lite%3$s. To unlock all reports, consider %4$supgrading to Pro%5$s."
9506
  msgstr ""
9507
 
9508
+ #: languages/vue.php:3366
9509
  msgid "With ExactMetrics Pro, you can easily measure individual affiliate performance inside Google Analytics, no coding needed. Track clicks, revenue, and more."
9510
  msgstr ""
9511
 
9512
+ #: languages/vue.php:3369
9513
  msgid "RafflePress"
9514
  msgstr ""
9515
 
9516
+ #: languages/vue.php:3372
9517
  msgid "Launch giveaways and raffle campaigns to grow your email lists, increase traffic, and get more social media followers."
9518
  msgstr ""
9519
 
9520
+ #: languages/vue.php:3375
9521
  msgid "Constant Contact"
9522
  msgstr ""
9523
 
9524
+ #: languages/vue.php:3378
9525
  msgid "Create amazing email marketing campaigns with drag and drop simplicity. Exclusive Offer: Save 20%."
9526
  msgstr ""
9527
 
9528
+ #: languages/vue.php:3381
9529
  msgid "SEMRUSH"
9530
  msgstr ""
9531
 
9532
+ #: languages/vue.php:3384
9533
  msgid "Perform SEO and content marketing research, track keywords, and much more. Special Offer: First 30 Days Free."
9534
  msgstr ""
9535
 
9536
+ #: languages/vue.php:3387
9537
  msgid "Engagement Tools"
9538
  msgstr ""
9539
 
9540
+ #: languages/vue.php:3390
9541
  msgid "WPForms"
9542
  msgstr ""
9543
 
9544
+ #: languages/vue.php:3393
9545
  msgid "The world’s most popular WordPress form builder, trusted by over 5 million websites. Easily build contact forms, payment forms, and more."
9546
  msgstr ""
9547
 
9548
+ #: languages/vue.php:3396
9549
  msgid "OptinMonster"
9550
  msgstr ""
9551
 
9552
+ #: languages/vue.php:3399
9553
  msgid "Convert and monetize more of your website traffic with engaging pop-up and gamified tools. Great for all types of websites."
9554
  msgstr ""
9555
 
9556
+ #: languages/vue.php:3402
9557
  msgid "Smash Balloon - Facebook"
9558
  msgstr ""
9559
 
9560
+ #: languages/vue.php:3405
9561
  msgid "Smash Balloon - Instagram"
9562
  msgstr ""
9563
 
9564
+ #: languages/vue.php:3408
9565
  msgid "Quickly add social media feeds from Facebook, Instagram, Twitter, and others to your website, with no coding needed."
9566
  msgstr ""
9567
 
9568
+ #: languages/vue.php:3411
9569
  msgid "Popular Posts by ExactMetrics"
9570
  msgstr ""
9571
 
9572
+ #: languages/vue.php:3414
9573
  msgid "Increase your visitor engagement by automatically embedding popular and related content from your website."
9574
  msgstr ""
9575
 
9576
+ #: languages/vue.php:3417
9577
  msgid "Popular Products by ExactMetrics"
9578
  msgstr ""
9579
 
9580
+ #: languages/vue.php:3420
9581
  msgid "Automatically show related products to increase conversion rates and increase cart sizes on your eCommerce website."
9582
  msgstr ""
9583
 
9584
+ #: languages/vue.php:3423
9585
  msgid "Revenue Tools"
9586
  msgstr ""
9587
 
9588
+ #: languages/vue.php:3426
9589
  msgid "SeedProd"
9590
  msgstr ""
9591
 
9592
+ #: languages/vue.php:3429
9593
  msgid "Use the best drag-and-drop landing page builder for WordPress to instantly build coming soon pages, sales pages, opt-in pages, webinar pages, maintenance pages, and more. Includes 100+ free templates."
9594
  msgstr ""
9595
 
9596
+ #: languages/vue.php:3432
9597
  msgid "Featured Tools"
9598
  msgstr ""
9599
 
9600
+ #: languages/vue.php:3435
9601
  msgid "Easy Affiliate"
9602
  msgstr ""
9603
 
9604
+ #: languages/vue.php:3438
9605
  msgid "Launch, grow, and manage an affiliate program, all right from your WordPress dashboard. Works automatically with ExactMetrics."
9606
  msgstr ""
9607
 
9608
+ #: languages/vue.php:3441
9609
  msgid "SearchWP"
9610
  msgstr ""
9611
 
9612
+ #: languages/vue.php:3444
9613
  msgid "Unlock better search results for your website. Perfect for any information or eCommerce store to help users find exactly what content and products they’re looking for."
9614
  msgstr ""
9615
 
9616
+ #: languages/vue.php:3447
9617
  msgid "Easy Digital Downloads"
9618
  msgstr ""
9619
 
9620
+ #: languages/vue.php:3450
9621
  msgid "Easily sell digital products like ebooks, plugins, and courses with WordPress. Built-in payment processing, coupons, shopping cart, detailed reporting, and more."
9622
  msgstr ""
9623
 
9624
+ #: languages/vue.php:3453
9625
  msgid "MemberPress"
9626
  msgstr ""
9627
 
9628
+ #: languages/vue.php:3456
9629
  msgid "Create a membership website. Works automatically with ExactMetrics, no coding needed."
9630
  msgstr ""
9631
 
9632
+ #: languages/vue.php:3459
9633
  msgid "Thirsty Affiliates"
9634
  msgstr ""
9635
 
9636
+ #: languages/vue.php:3462
9637
  msgid "Manage all your affiliate links with features designed to help make bloggers more money."
9638
  msgstr ""
9639
 
9640
+ #: languages/vue.php:3465
9641
  msgid "Upgrade to unlock advanced reporting and features designed to help you get more traffic and make more money from your website. Special Offer: Save 50% today."
9642
  msgstr ""
9643
 
9644
+ #: languages/vue.php:3468
9645
  msgid "Advanced Coupons"
9646
  msgstr ""
9647
 
9648
+ #: languages/vue.php:3471
9649
  msgid "Create coupons, reward loyal customers, and schedule promotions for your eCommerce store."
9650
  msgstr ""
9651
 
9652
+ #: languages/vue.php:3474
9653
  msgid "PrettyLinks"
9654
  msgstr ""
9655
 
9656
+ #: languages/vue.php:3477
9657
  msgid "Automatically monetize your website content with affiliate links added automatically to your content."
9658
  msgstr ""
9659
 
9660
+ #: languages/vue.php:3480
9661
  msgid "Install Now"
9662
  msgstr ""
9663
 
9664
+ #: languages/vue.php:3483
9665
  msgid "Online Marketing Guides & Resources"
9666
  msgstr ""
9667
 
9668
+ #: languages/vue.php:3486
9669
  msgid "Read This Guide"
9670
  msgstr ""
9671
 
9672
+ #: languages/vue.php:3492
9673
  msgid "Upgrade to unlock eCommerce tracking, Custom Dimensions, Form Tracking, and much more. Special Offer: Save 50% today."
9674
  msgstr ""
9675
 
9676
+ #: languages/vue.php:3495
9677
  msgid "Traffic Tools"
9678
  msgstr ""
9679
 
9680
+ #: languages/vue.php:3498
9681
  msgid "All in One SEO (AIOSEO)"
9682
  msgstr ""
9683
 
9684
+ #: languages/vue.php:3501
9685
  msgid "The best WordPress SEO plugin that works automatically with ExactMetrics."
9686
  msgstr ""
9687
 
9688
+ #: languages/vue.php:3504
9689
  msgid "PushEngage"
9690
  msgstr ""
9691
 
9692
+ #: languages/vue.php:3507
9693
  msgid "Send push notifications to your visitors to drive more traffic and boost sales."
9694
  msgstr ""
9695
 
9696
+ #: languages/vue.php:3510
9697
  msgid "Featured"
9698
  msgstr ""
9699
 
9700
+ #: languages/vue.php:3513
9701
  msgid "Traffic"
9702
  msgstr ""
9703
 
9704
+ #: languages/vue.php:3516
9705
  msgid "Revenue"
9706
  msgstr ""
9707
 
9708
+ #: languages/vue.php:3519
9709
  msgid "Guides & Resources"
9710
  msgstr ""
9711
 
9712
+ #: languages/vue.php:3522
9713
  msgid "Media Tracking"
9714
  msgstr ""
9715
 
9716
+ #: languages/vue.php:3525
9717
  msgid "Get Started"
9718
  msgstr ""
9719
 
9720
+ #: languages/vue.php:3528
9721
  msgid "Privacy Compliance Addon"
9722
  msgstr ""
9723
 
9724
+ #: languages/vue.php:3531
9725
  msgid "Help Google Analytics become compliant with internet privacy laws like GDPR, PECR, and CCPA."
9726
  msgstr ""
9727
 
9728
+ #: languages/vue.php:3534
9729
  msgid "Get access to advanced reports inside WordPress including search keywords report, real-time analytics dashboard, publishers / eCommerce report, custom dimensions, and more."
9730
  msgstr ""
9731
 
9732
+ #: languages/vue.php:3537
9733
  msgid "Instantly enable enhanced eCommerce tracking, so you can measure conversions, sales, and revenue stats. Works with WooCommerce, Easy Digital Downloads, MemberPress, and more."
9734
  msgstr ""
9735
 
9736
+ #: languages/vue.php:3540
9737
  msgid "20+ Advanced Tracking"
9738
  msgstr ""
9739
 
9740
+ #: languages/vue.php:3543
9741
  msgid "Get access to advanced tracking features like form conversion tracking, author tracking, custom dimensions, scroll tracking, and more."
9742
  msgstr ""
9743
 
9744
+ #: languages/vue.php:3546
9745
  msgid "Advanced Growth Tools"
9746
  msgstr ""
9747
 
9748
+ #: languages/vue.php:3549
9749
  msgid "Get access to advanced growth tools such as popular posts addon, A/B testing tool, smart URL builder, and more."
9750
  msgstr ""
9751
 
9752
+ #: languages/vue.php:3552
9753
  msgid "Track how your users interact with videos on your website."
9754
  msgstr ""
9755
 
9756
+ #: languages/vue.php:3555
9757
  msgid "Error Processing"
9758
  msgstr ""
9759
 
9760
+ #: languages/vue.php:3558
9761
  msgid "There was an error while processing some features. Please try again or you can skip this process for now"
9762
  msgstr ""
9763
 
9764
+ #: languages/vue.php:3561
9765
  msgid "Which website features would you like to enable?"
9766
  msgstr ""
9767
 
9768
+ #: languages/vue.php:3564
9769
  msgid "We’ve already selected our recommended features based on your site. "
9770
  msgstr ""
9771
 
9772
+ #: languages/vue.php:3567
9773
  msgid "Other Addons"
9774
  msgstr ""
9775
 
9776
+ #: languages/vue.php:3570
9777
  msgid "View all ExactMetrics addons"
9778
  msgstr ""
9779
 
9780
+ #: languages/vue.php:3573
9781
  msgid "Standard Analytics & Reports"
9782
  msgstr ""
9783
 
9784
+ #: languages/vue.php:3576
9785
  msgid "Get the reports and stats that matter right inside your WordPress Dashboard."
9786
  msgstr ""
9787
 
9788
+ #: languages/vue.php:3579
9789
  msgid "Helps you see what links your users are clicking on your site."
9790
  msgstr ""
9791
 
9792
+ #: languages/vue.php:3582
9793
  msgid "All In One SEO Toolkit"
9794
  msgstr ""
9795
 
9796
+ #: languages/vue.php:3585
9797
  msgid "The best WordPress SEO plugin that works with ExactMetrics to boost your rankings."
9798
  msgstr ""
9799
 
9800
+ #: languages/vue.php:3588
9801
  msgid "Smart Form Builder by WPForms"
9802
  msgstr ""
9803
 
9804
+ #: languages/vue.php:3591
9805
  msgid "The most popular WordPress form plugin, trusted by over 5 million websites. Easily create contact forms, payment forms, surveys and more."
9806
  msgstr ""
9807
 
9808
+ #: languages/vue.php:3594
9809
  msgid "Awesome! Tracking and Analytics are All Setup!"
9810
  msgstr ""
9811
 
9812
+ #: languages/vue.php:3597
9813
  msgid "ExactMetrics is connected to Google Analytics and data is being collected."
9814
  msgstr ""
9815
 
9816
+ #: languages/vue.php:3604
9817
  msgid "Complete Setup without Upgrading"
9818
  msgstr ""
9819
 
9820
+ #: languages/vue.php:3607
9821
  msgid "Success"
9822
  msgstr ""
9823
 
9824
+ #: languages/vue.php:3610
9825
  msgid "Connected to Google Analytics"
9826
  msgstr ""
9827
 
9828
+ #: languages/vue.php:3613
9829
  msgid "Tracking Code Installed"
9830
  msgstr ""
9831
 
9832
+ #: languages/vue.php:3616
9833
  msgid "Data Being Collected"
9834
  msgstr ""
9835
 
9836
  #. Translators: Add link to retrieve license from account area.
9837
+ #: languages/vue.php:3620
9838
  msgid "Already purchased? Simply enter your license key below to connect with ExactMetrics PRO!"
9839
  msgstr ""
9840
 
9841
+ #: languages/vue.php:3623
9842
  msgid "Verify License Key"
9843
  msgstr ""
9844
 
9845
+ #: languages/vue.php:3626
9846
  msgid "Upgrade to Unlock These Features"
9847
  msgstr ""
9848
 
9849
+ #: languages/vue.php:3629
9850
  msgid "To unlock the selected features, please upgrade to Pro and enter your license key below."
9851
  msgstr ""
9852
 
9853
+ #: languages/vue.php:3632
9854
  msgid "%1$sBonus:%2$s Upgrade today and save %3$s50%% on a Pro License!%4$s (auto-applied at checkout)"
9855
  msgstr ""
9856
 
9857
+ #: languages/vue.php:3635
9858
  msgid "Verifying License..."
9859
  msgstr ""
9860
 
9861
+ #: languages/vue.php:3641
9862
  msgid "The following plugins will be installed: "
9863
  msgstr ""
9864
 
9865
+ #: languages/vue.php:3644
9866
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
9867
  msgstr ""
9868
 
9869
+ #: languages/vue.php:3647
9870
  msgid "Manually enter your GA4 Measurement ID"
9871
  msgstr ""
9872
 
9873
+ #: languages/vue.php:3650
9874
  msgid "Warning: If you use a manual GA4 Measurement ID, you won't be able to use any of the reporting and some of the tracking features. Your UA code should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
9875
  msgstr ""
9876
 
9877
+ #: languages/vue.php:3653
9878
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are a combination of numbers and letters."
9879
  msgstr ""
9880
 
9881
+ #: languages/vue.php:3656
9882
  msgid "Your ExactMetrics license key has expired."
9883
  msgstr ""
9884
 
9885
+ #: languages/vue.php:3659
9886
  msgid "Renew today to ensure Google Analytics continues to track properly."
9887
  msgstr ""
9888
 
9889
+ #: languages/vue.php:3662
9890
  msgid "Click here."
9891
  msgstr ""
9892
 
9893
+ #: languages/vue.php:3665
9894
  msgid "ExactMetrics makes it effortless for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
9895
  msgstr ""
9896
 
9897
+ #: languages/vue.php:3668
9898
  msgid "License Expired"
9899
  msgstr ""
9900
 
9901
+ #: languages/vue.php:3671
9902
  msgid "Expired"
9903
  msgstr ""
9904
 
9905
  #. Translators: Adds a link to the license renewal.
9906
+ #: languages/vue.php:3675
9907
  msgid "To ensure tracking works properly, reactivate your license"
9908
  msgstr ""
9909
 
9910
+ #: languages/vue.php:3678
9911
  msgid "Reactivate License"
9912
  msgstr ""
9913
 
9914
+ #: languages/vue.php:3681
9915
  msgid "View All Reports"
9916
  msgstr ""
9917
 
9918
+ #: languages/vue.php:3684
9919
  msgid "WP Simple Pay"
9920
  msgstr ""
9921
 
9922
  #. Translators: tag to make text italic starts, tag end.
9923
+ #: languages/vue.php:3691
9924
  msgid "See What Your Website Visitors Are %1$sReally%2$s Thinking!"
9925
  msgstr ""
9926
 
9927
+ #: languages/vue.php:3694
9928
  msgid "UserFeedback lets you easily collect feedback from your website in real time. You can use this important data to increase your traffic, sales, newsletter signups, engagement, and more."
9929
  msgstr ""
9930
 
9931
+ #: languages/vue.php:3697
9932
  msgid "Understand exactly why visitors left your website, what convinced them to make a purchase, why they signed up for a newsletter, and more with real verbatim feedback"
9933
  msgstr ""
9934
 
9935
+ #: languages/vue.php:3700
9936
  msgid "Ask open ended questions, run polls or surveys, gather ratings, and more with an easy survey builder"
9937
  msgstr ""
9938
 
9939
+ #: languages/vue.php:3703
9940
  msgid "Customize targeting rules to get specific feedback on certain pages or products"
9941
  msgstr ""
9942
 
9943
+ #: languages/vue.php:3706
9944
  msgid "Easily analyze your responses and export data"
9945
  msgstr ""
9946
 
9947
+ #: languages/vue.php:3709
9948
  msgid "Install & Activate UserFeedback"
9949
  msgstr ""
9950
 
9951
+ #: languages/vue.php:3712
9952
  msgid "Install UserFeedback by clicking the button below."
9953
  msgstr ""
9954
 
9955
+ #: languages/vue.php:3715
9956
  msgid "Install UserFeedback"
9957
  msgstr ""
9958
 
9959
+ #: languages/vue.php:3718
9960
  msgid "Set Up UserFeedback"
9961
  msgstr ""
9962
 
9963
+ #: languages/vue.php:3721
9964
  msgid "Run the UserFeedback setup wizard to launch your first UserFeedback survey."
9965
  msgstr ""
9966
 
9967
+ #: languages/vue.php:3724
9968
  msgid "Start Setup"
9969
  msgstr ""
9970
 
9971
+ #: languages/vue.php:3727
9972
  msgid "Installing UserFeedback..."
9973
  msgstr ""
9974
 
9975
+ #: languages/vue.php:3730
9976
  msgid "Activating UserFeedback..."
9977
  msgstr ""
9978
 
9979
+ #: languages/vue.php:3733
9980
  msgid "Installed & Active"
9981
  msgstr ""
9982
 
9983
+ #: languages/vue.php:3736
9984
  msgid "Oops! There was an error processing request. Please try again later."
9985
  msgstr ""
9986
 
9987
+ #: languages/vue.php:3739
9988
  msgid "Oops! We could not save your changes. Please try again. If the problem persists, please %1$scontact our support%2$s team."
9989
  msgstr ""
9990
 
9991
+ #: languages/vue.php:3742
9992
  msgid "Installing UserFeedback"
9993
  msgstr ""
9994
 
9995
+ #: languages/vue.php:3745
9996
  msgid "Activating UserFeedback"
9997
  msgstr ""
9998
 
9999
+ #: languages/vue.php:3748
10000
  msgid "Oops! Something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually."
10001
  msgstr ""
10002
 
10003
  #. Translators: Error status, error text, Support link tag starts with url and support link tag ends.
10004
+ #: languages/vue.php:3752
10005
  msgid "Can't load settings. Error: %1$s, %2$s. Please %3$scontact our support%4$s team for assistance. "
10006
  msgstr ""
10007
 
10008
  #. Translators: Error status and error text, Support link tag starts with url and support link tag ends.
10009
+ #: languages/vue.php:3756
10010
  msgid "Can't save settings. Error: %1$s, %2$s. Please %3$scontact our support%4$s team for assistance."
10011
  msgstr ""
10012
 
10013
  #. Translators: Support link tag starts with url and support link tag ends.
10014
+ #: languages/vue.php:3760
10015
  msgid "Oops! There was an error, your settings were not saved. Please try again in a few minutes. If the issue persists, please %1$scontact our support%2$s team."
10016
  msgstr ""
10017
 
10018
  #. Translators: Support Link tag starts with URL, Support link tag ends, Error status and error text.
10019
+ #: languages/vue.php:3764
10020
  msgid "Oops! There was an issue deactivating your license, please try again. If the issue persists, please %1$scontact our support team%2$s. Error: %3$s, %4$s"
10021
  msgstr ""
10022
 
10023
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10024
+ #: languages/vue.php:3768
10025
  msgid "Oops! There was an issue deactivating your license, please try again. If the issue persists, please %1$scontact our support team%2$s."
10026
  msgstr ""
10027
 
10028
  #. Translators: Support Link tag starts with URL, Support link tag ends, Error status and error text.
10029
+ #: languages/vue.php:3772
10030
  msgid "Oops! There was an issue verifying your license upgrade, please try again. If the issue persists, please %1$scontact our support team%2$s. Error: %3$s, %4$s"
10031
  msgstr ""
10032
 
10033
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10034
+ #: languages/vue.php:3776
10035
  msgid "Oops! There was an issue verifying your license upgrade, please try again. If the issue persists, please %1$scontact our support team%2$s."
10036
  msgstr ""
10037
 
10038
  #. Translators: Support Link tag start with URL, Support link tag ends, Error status and error text.
10039
+ #: languages/vue.php:3780
10040
  msgid "Oops! There was an issue loading your license details, please try again. If the issue persists please %1$scontact our support team%2$s. Error: %3$s, %4$s"
10041
  msgstr ""
10042
 
10043
+ #: languages/vue.php:3783
10044
  msgid "Oops! There was an issue loading your license details, please try again. If the issue persists, please %1$scontact our support team%2$s."
10045
  msgstr ""
10046
 
10047
  #. Translators: Support Link tag start with URL, Support link tag ends, Error status and error text.
10048
+ #: languages/vue.php:3787
10049
  msgid "Oops! There was an issue verifying your license, please try again. If the issue persists, please %1$scontact our support team%2$s. Error: %3$s, %4$s"
10050
  msgstr ""
10051
 
10052
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10053
+ #: languages/vue.php:3791
10054
  msgid "Oops! There was an issue verifying your license, please try again. If the issue persists, please %1$scontact our support team%2$s."
10055
  msgstr ""
10056
 
10057
  #. Translators: Support Link tag start with URL, Support link tag ends, Error status and error text.
10058
+ #: languages/vue.php:3795
10059
  msgid "Oops! There was an issue validating your license, please try again. If the issue persists, please %1$scontact our support team%2$s. Error: %3$s, %4$s"
10060
  msgstr ""
10061
 
10062
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10063
+ #: languages/vue.php:3799
10064
  msgid "Oops! There was an issue validating your license, please try again. If the issue persists, please %1$scontact our support team%2$s."
10065
  msgstr ""
10066
 
10067
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10068
+ #: languages/vue.php:3803
10069
  msgid "Oops! We can't verify deauthentication. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team."
10070
  msgstr ""
10071
 
10072
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10073
+ #: languages/vue.php:3807
10074
  msgid "Can't load authentication details. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team. "
10075
  msgstr ""
10076
 
10077
  #. Translators: Support page link tag starts and support page link tag ends.
10078
+ #: languages/vue.php:3811
10079
  msgid "Oops! There was an error loading your site details. Please refresh the page and try again. If the issue persists, please contact our support team."
10080
  msgstr ""
10081
 
10082
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10083
+ #: languages/vue.php:3815
10084
  msgid "Can't save settings. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team."
10085
  msgstr ""
10086
 
10087
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10088
+ #: languages/vue.php:3819
10089
  msgid "Oops! We can't authenticate. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team. "
10090
  msgstr ""
10091
 
10092
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10093
+ #: languages/vue.php:3823
10094
  msgid "Oops! We can't reauthenticate. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team"
10095
  msgstr ""
10096
 
10097
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10098
+ #: languages/vue.php:3827
10099
  msgid "Oops! We can't verify credentials. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team."
10100
  msgstr ""
10101
 
10102
  #. Translators: Error status, error text, Support link tag starts with url and support link tag ends.
10103
+ #: languages/vue.php:3831
10104
  msgid "Can't load report data. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team."
10105
  msgstr ""
10106
 
10107
  #. Translators: Error status and error text.
10108
+ #: languages/vue.php:3835
10109
  msgid "Oops! Can't install WPForms. Error: %1$s, %2$s"
10110
  msgstr ""
10111
 
10112
  #. Translators: Error status and error text.
10113
+ #: languages/vue.php:3839
10114
  msgid "Oops! Can't activate addon. Error: %1$s, %2$s"
10115
  msgstr ""
10116
 
10117
+ #: languages/vue.php:3842
10118
  msgid "Oops! There was an error activating the addon. Please try again. If the issue persists, please %1$scontact our support%2$s team."
10119
  msgstr ""
10120
 
10121
  #. Translators: Error status and error text.
10122
+ #: languages/vue.php:3846
10123
  msgid "Oops! Can't deactivate addon. Error: %1$s, %2$s"
10124
  msgstr ""
10125
 
10126
  #. Translators: Error status and error text.
10127
+ #: languages/vue.php:3850
10128
  msgid "Oops! Can't install plugin. Error: %1$s, %2$s"
10129
  msgstr ""
10130
 
10131
  #. Translators: Error status and error text.
10132
+ #: languages/vue.php:3854
10133
  msgid "Oops! Can't install addon. Error: %1$s, %2$s"
10134
  msgstr ""
10135
 
10136
  #. Translators: Support link tag starts with url and support link tag ends.
10137
+ #: languages/vue.php:3858
10138
  msgid "Oops! An error occurred while importing your settings. Please ensure you selected the correct file. If the issue continues please %1$scontact our support%2$s team."
10139
  msgstr ""
10140
 
10141
  #. Translators: Support link tag starts with url and support link tag ends.
10142
+ #: languages/vue.php:3862
10143
  msgid "Oops! Can't load posts. Please try again in a few minutes. If the issue persists, please %1$scontact our support%2$s team."
10144
  msgstr ""
10145
 
10146
+ #: languages/vue.php:3865
10147
  msgid "Website Badge"
10148
  msgstr ""
10149
 
10150
+ #: languages/vue.php:3868
10151
  msgid "Publishers Report"
10152
  msgstr ""
10153
 
10154
+ #: languages/vue.php:3871
10155
  msgid "Improve Your Conversion Rate With Insights Into Which Content Works Best."
10156
  msgstr ""
10157
 
10158
+ #: languages/vue.php:3874
10159
  msgid "Top Affilliate Links"
10160
  msgstr ""
10161
 
10162
+ #: languages/vue.php:3877
10163
  msgid "Scroll Depth"
10164
  msgstr ""
10165
 
10166
+ #: languages/vue.php:3880
10167
  msgid "eCommerce Report"
10168
  msgstr ""
10169
 
10170
+ #: languages/vue.php:3883
10171
  msgid "Increase Sales and Make More Money With Enhanced eCommerce Insights."
10172
  msgstr ""
10173
 
10174
+ #: languages/vue.php:3886
10175
  msgid "10+ eCommerce Integrations"
10176
  msgstr ""
10177
 
10178
+ #: languages/vue.php:3889
10179
  msgid "Average Order Value"
10180
  msgstr ""
10181
 
10182
+ #: languages/vue.php:3892
10183
  msgid "Total Revenue"
10184
  msgstr ""
10185
 
10186
+ #: languages/vue.php:3895
10187
  msgid "Number of Transactions"
10188
  msgstr ""
10189
 
10190
+ #: languages/vue.php:3898
10191
  msgid "Increase Engagement and Unlock New Insights About Your Site."
10192
  msgstr ""
10193
 
10194
+ #: languages/vue.php:3901
10195
  msgid "User ID Tracking"
10196
  msgstr ""
10197
 
10198
+ #: languages/vue.php:3904
10199
  msgid "Post Types"
10200
  msgstr ""
10201
 
10202
+ #: languages/vue.php:3907
10203
  msgid "Tag Tracking"
10204
  msgstr ""
10205
 
10206
+ #: languages/vue.php:3910
10207
  msgid "Categories"
10208
  msgstr ""
10209
 
10210
+ #: languages/vue.php:3913
10211
  msgid "SEO Scores"
10212
  msgstr ""
10213
 
10214
+ #: languages/vue.php:3916
10215
  msgid "Publish Times"
10216
  msgstr ""
10217
 
10218
+ #: languages/vue.php:3919
10219
  msgid "Focus Keywords"
10220
  msgstr ""
10221
 
10222
+ #: languages/vue.php:3922
10223
  msgid "Track Every Type of Web Form and Gain Visibility Into Your Customer Journey."
10224
  msgstr ""
10225
 
10226
+ #: languages/vue.php:3925
10227
  msgid "Conversion Counts"
10228
  msgstr ""
10229
 
10230
+ #: languages/vue.php:3928
10231
  msgid "Impression Counts"
10232
  msgstr ""
10233
 
10234
+ #: languages/vue.php:3931
10235
  msgid "Conversion Rates"
10236
  msgstr ""
10237
 
10238
+ #: languages/vue.php:3934
10239
  msgid "See Exactly How Visitors Find Your Website From Google."
10240
  msgstr ""
10241
 
10242
+ #: languages/vue.php:3937
10243
  msgid "Top Google Search Terms"
10244
  msgstr ""
10245
 
10246
+ #: languages/vue.php:3940
10247
  msgid "Number of Clicks"
10248
  msgstr ""
10249
 
10250
+ #: languages/vue.php:3943
10251
  msgid "Click-through Ratio"
10252
  msgstr ""
10253
 
10254
+ #: languages/vue.php:3946
10255
  msgid "Average Results Position"
10256
  msgstr ""
10257
 
10258
+ #: languages/vue.php:3949
10259
  msgid "Realtime Report"
10260
  msgstr ""
10261
 
10262
+ #: languages/vue.php:3952
10263
  msgid "See Who And What is Happening on Your Website in Realtime."
10264
  msgstr ""
10265
 
10266
+ #: languages/vue.php:3955
10267
  msgid "Top Page Views"
10268
  msgstr ""
10269
 
10270
+ #: languages/vue.php:3958
10271
  msgid "Current Active Users"
10272
  msgstr ""
10273
 
10274
+ #: languages/vue.php:3961
10275
  msgid "Top Referral Sources"
10276
  msgstr ""
10277
 
10278
+ #: languages/vue.php:3964
10279
  msgid "Pageviews Per Minute"
10280
  msgstr ""
10281
 
10282
+ #: languages/vue.php:3967
10283
  msgid "Top Countries"
10284
  msgstr ""
10285
 
10286
+ #: languages/vue.php:3970
10287
  msgid "Top Cities"
10288
  msgstr ""
10289
 
10290
+ #: languages/vue.php:3973
10291
  msgid "Improve Your User Experience and Improve Search Engine Rankings."
10292
  msgstr ""
10293
 
10294
+ #: languages/vue.php:3976
10295
  msgid "Overall Site Speed Score"
10296
  msgstr ""
10297
 
10298
+ #: languages/vue.php:3979
10299
  msgid "Server Response Times"
10300
  msgstr ""
10301
 
10302
+ #: languages/vue.php:3982
10303
  msgid "Mobile and Desktop Scores"
10304
  msgstr ""
10305
 
10306
+ #: languages/vue.php:3985
10307
  msgid "First Contentful Paint"
10308
  msgstr ""
10309
 
10310
+ #: languages/vue.php:3988
10311
  msgid "Automatic Recommendations"
10312
  msgstr ""
10313
 
10314
+ #: languages/vue.php:3991
10315
  msgid "Total Blocking Time"
10316
  msgstr ""
10317
 
10318
+ #: languages/vue.php:3994
10319
  msgid "On-Demand Audits"
10320
  msgstr ""
10321
 
10322
+ #: languages/vue.php:3997
10323
  msgid "Time to Interactive"
10324
  msgstr ""
10325
 
10326
+ #: languages/vue.php:4000
10327
  msgid "Automatic Display"
10328
  msgstr ""
10329
 
10330
+ #: languages/vue.php:4003
10331
  msgid "Automatically Display Website Badge in Website Footer"
10332
  msgstr ""
10333
 
10334
+ #: languages/vue.php:4006
10335
  msgid "Enabling will add the chosen badge in your website’s footer."
10336
  msgstr ""
10337
 
10338
+ #: languages/vue.php:4009
10339
  msgid "Enable Automatic Display"
10340
  msgstr ""
10341
 
10342
+ #: languages/vue.php:4012
10343
  msgid "Appearance"
10344
  msgstr ""
10345
 
10346
+ #: languages/vue.php:4015
10347
  msgid "Choose your badge style."
10348
  msgstr ""
10349
 
10350
+ #: languages/vue.php:4018
10351
  msgid "Position"
10352
  msgstr ""
10353
 
10354
+ #: languages/vue.php:4021
10355
  msgid "Select the position of the badge in your website’s footer."
10356
  msgstr ""
10357
 
10358
+ #: languages/vue.php:4024
10359
  msgid "Manual Display"
10360
  msgstr ""
10361
 
10362
+ #: languages/vue.php:4027
10363
  msgid "Copy"
10364
  msgstr ""
10365
 
10366
+ #: languages/vue.php:4030
10367
  msgid "Light"
10368
  msgstr ""
10369
 
10370
+ #: languages/vue.php:4033
10371
  msgid "Dark"
10372
  msgstr ""
10373
 
10374
+ #: languages/vue.php:4036
10375
  msgid "Left"
10376
  msgstr ""
10377
 
10378
+ #: languages/vue.php:4039
10379
  msgid "Center"
10380
  msgstr ""
10381
 
10382
+ #: languages/vue.php:4042
10383
  msgid "Right"
10384
  msgstr ""
10385
 
10386
+ #: languages/vue.php:4045
10387
  msgid "Show ExactMetrics Badge"
10388
  msgstr ""
10389
 
10390
+ #: languages/vue.php:4048
10391
  msgid "Build trust with website visitors by automatically placing a ExactMetrics badge in your website’s footer."
10392
  msgstr ""
10393
 
10394
+ #: languages/vue.php:4051
10395
  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 or GT-XXXXX where the X's are numbers."
10396
  msgstr ""
10397
 
10398
+ #: languages/vue.php:4054
10399
  msgid "Conversion Tools"
10400
  msgstr ""
10401
 
10402
+ #: languages/vue.php:4057
10403
  msgid "Get the #1 conversion optimization plugin to convert your growing website traffic into subscribers, leads and sales."
10404
  msgstr ""
10405
 
10406
+ #: languages/vue.php:4060
10407
  msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX or GT-XXXXX where the X's are numbers."
10408
  msgstr ""
10409
 
10410
+ #: languages/vue.php:4063
10411
  msgid "Your Measurement ID should look like G-XXXXXXXXXX or GT-XXXXX where the X's are combination of numbers and letters."
10412
  msgstr ""
10413
 
10414
+ #: languages/vue.php:4066
10415
  msgid "Media Report"
10416
  msgstr ""
10417
 
10418
+ #: languages/vue.php:4069
10419
  msgid "Easily See Which Videos Are Most Popular."
10420
  msgstr ""
10421
 
10422
+ #: languages/vue.php:4072
10423
  msgid "The Media Report allows you to see which video are performing better and which video have lower performance so you can optimize your video content."
10424
  msgstr ""
10425
 
10426
+ #: languages/vue.php:4075
10427
  msgid "Videos Plays, Average Duration, and Completions"
10428
  msgstr ""
10429
 
10430
+ #: languages/vue.php:4078
10431
  msgid "Works with YouTube, Vimeo, and HTML 5 Videos"
10432
  msgstr ""
10433
 
10434
+ #: languages/vue.php:4081
10435
  msgid "Compare stats over time"
10436
  msgstr ""
10437
 
10438
+ #: languages/vue.php:4084
10439
+ #: lite/includes/admin/reports/report-year-in-review.php:22
10440
+ msgid "Year in Review"
10441
+ msgstr ""
10442
+
10443
+ #: languages/vue.php:4088
10444
+ msgid "%s Year in Review"
10445
+ msgstr ""
10446
+
10447
+ #: languages/vue.php:4091
10448
+ msgid "Your %s Year in Review is still calculating. Please check back later to see how your website performed last year."
10449
+ msgstr ""
10450
+
10451
+ #: languages/vue.php:4094
10452
+ msgid "Your %s Analytics Report"
10453
+ msgstr ""
10454
+
10455
+ #: languages/vue.php:4097
10456
+ msgid "January 1, %s - December 31, %s"
10457
+ msgstr ""
10458
+
10459
+ #: languages/vue.php:4100
10460
+ msgid "See how your website performed this year and find tips along the way to help grow even more in %s!"
10461
+ msgstr ""
10462
+
10463
+ #: languages/vue.php:4103
10464
+ msgid "A Tip for %s"
10465
+ msgstr ""
10466
+
10467
+ #: languages/vue.php:4106
10468
+ msgid "A Tip For %s"
10469
+ msgstr ""
10470
+
10471
+ #: languages/vue.php:4109
10472
+ msgid "Here's to an amazing %s!"
10473
+ msgstr ""
10474
+
10475
+ #: languages/vue.php:4112
10476
+ msgid "Try our other popular WordPress plugins to grow your website in %s."
10477
+ msgstr ""
10478
+
10479
+ #: languages/vue.php:4115
10480
+ msgid "Become a WordPress expert in %s. Join our amazing communities and take your website to the next level."
10481
+ msgstr ""
10482
+
10483
+ #: languages/vue.php:4118
10484
+ msgid "Copyright ExactMetrics, %s"
10485
+ msgstr ""
10486
+
10487
+ #: languages/vue.php:4121
10488
+ msgid "Year In Review %s!"
10489
+ msgstr ""
10490
+
10491
+ #: languages/vue.php:4124
10492
+ msgid "Generating PDF Report"
10493
+ msgstr ""
10494
+
10495
+ #: languages/vue.php:4127
10496
+ msgid "Download Failed"
10497
+ msgstr ""
10498
+
10499
+ #: languages/vue.php:4130
10500
+ msgid "Downloaded PDF report successfully!"
10501
+ msgstr ""
10502
+
10503
+ #: languages/vue.php:4133
10504
+ msgid "Download as PDF"
10505
+ msgstr ""
10506
+
10507
+ #: languages/vue.php:4136
10508
+ msgid "Download Failed, no report found!"
10509
+ msgstr ""
10510
+
10511
+ #: languages/vue.php:4139
10512
+ msgid "Unknown"
10513
+ msgstr ""
10514
+
10515
+ #: languages/vue.php:4142
10516
+ msgid "No records found."
10517
+ msgstr ""
10518
+
10519
  #: lite/includes/admin/connect.php:42
10520
  msgid "Oops! You are not allowed to install plugins. Please contact your site administrator."
10521
  msgstr ""
10606
  msgid "Real Time"
10607
  msgstr ""
10608
 
 
 
 
 
10609
  #: lite/includes/admin/tools.php:10
10610
  msgid "Want even more fine tuned control over your website analytics?"
10611
  msgstr ""
languages/vue.php CHANGED
@@ -10,7 +10,8 @@ $generated_i18n_strings = array(
10
  // Reference: src/plugins/exactmetrics-settings-helper-plugin.js:120
11
  __( 'Loading Settings', 'google-analytics-dashboard-for-wp' ),
12
 
13
- // Reference: src/plugins/exactmetrics-settings-helper-plugin.js:121
 
14
  __( 'Please wait...', 'google-analytics-dashboard-for-wp' ),
15
 
16
  // Reference: src/plugins/exactmetrics-settings-helper-plugin.js:22
@@ -29,14 +30,16 @@ $generated_i18n_strings = array(
29
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:129
30
  __( 'Loading new report data', 'google-analytics-dashboard-for-wp' ),
31
 
 
32
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:143
33
  /* Translators: Adds an arrow icon. */
34
  __( 'Continue %s', 'google-analytics-dashboard-for-wp' ),
35
 
36
- // Reference: src/plugins/exactmetrics-wizard-helper-plugin.js:18
 
37
  __( 'Error', 'google-analytics-dashboard-for-wp' ),
38
 
39
- // Reference: src/plugins/exactmetrics-wizard-helper-plugin.js:19
40
  __( 'Please try again.', 'google-analytics-dashboard-for-wp' ),
41
 
42
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:181
@@ -90,7 +93,7 @@ $generated_i18n_strings = array(
90
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:291
91
  __( 'Today', 'google-analytics-dashboard-for-wp' ),
92
 
93
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:297
94
  __( 'Yesterday', 'google-analytics-dashboard-for-wp' ),
95
 
96
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:303
@@ -102,6 +105,7 @@ $generated_i18n_strings = array(
102
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:315
103
  __( 'Last 7 days', 'google-analytics-dashboard-for-wp' ),
104
 
 
105
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:321
106
  __( 'Last 30 days', 'google-analytics-dashboard-for-wp' ),
107
 
@@ -120,6 +124,7 @@ $generated_i18n_strings = array(
120
  __( 'See the full analytics report!', 'google-analytics-dashboard-for-wp' ),
121
 
122
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:288
 
123
  __( 'Overview Report', 'google-analytics-dashboard-for-wp' ),
124
 
125
  // Reference: src/plugins/exactmetrics-compatibility-plugin.js:13
@@ -150,12 +155,16 @@ $generated_i18n_strings = array(
150
  // Reference: src/plugins/exactmetrics-compatibility-plugin.js:59
151
  __( 'Learn more about updating WordPress', 'google-analytics-dashboard-for-wp' ),
152
 
153
- // Reference: src/modules/about/components/exactmetrics-AboutTabAboutUs.vue:36
 
154
  __( 'About Us', 'google-analytics-dashboard-for-wp' ),
155
 
 
156
  // Reference: src/modules/settings/routes/site.js:142
157
  __( 'Getting Started', 'google-analytics-dashboard-for-wp' ),
158
 
 
 
159
  // Reference: src/modules/settings/routes/site.js:151
160
  __( 'Lite vs Pro', 'google-analytics-dashboard-for-wp' ),
161
 
@@ -212,73 +221,74 @@ $generated_i18n_strings = array(
212
  /* Translators: Adds a link and an arrow icon. */
213
  __( '%1$sSee All Features%2$s', 'google-analytics-dashboard-for-wp' ),
214
 
215
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:207
216
  __( 'Pro Plan', 'google-analytics-dashboard-for-wp' ),
217
 
218
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:208
219
  __( 'per year', 'google-analytics-dashboard-for-wp' ),
220
 
221
- // Reference: src/modules/reports/components/reports-overview/ReportOverviewUpsellMobile-Lite.vue:24
222
  __( 'Upgrade Now', 'google-analytics-dashboard-for-wp' ),
223
 
224
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:158
225
  __( 'Upgrade to ExactMetrics Pro Now', 'google-analytics-dashboard-for-wp' ),
226
 
227
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:214
228
  __( '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' ),
229
 
230
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:215
231
  __( 'Daniel Monaghan - Experienced', 'google-analytics-dashboard-for-wp' ),
232
 
233
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:219
234
  __( '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' ),
235
 
236
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:220
237
  __( 'Naomi Spirit - From This Day', 'google-analytics-dashboard-for-wp' ),
238
 
239
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:224
240
  __( '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' ),
241
 
242
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:225
243
  __( 'Julie Dupuis - Faraway Land Travel', 'google-analytics-dashboard-for-wp' ),
244
 
245
  // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:228
246
  __( 'Guides and Documentation:', 'google-analytics-dashboard-for-wp' ),
247
 
248
- // Reference: src/modules/reports/components/exactmetrics-ReportsPdfExport-Lite.vue:50
249
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:39
250
  // Reference: src/modules/settings/components/input/tab-engagement/exactmetrics-SettingsInputEUCompliance-Lite.vue:24
 
 
 
251
  __( 'Upgrade to PRO', 'google-analytics-dashboard-for-wp' ),
252
 
253
- // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:44
254
  __( 'eCommerce Tracking', 'google-analytics-dashboard-for-wp' ),
255
 
256
- // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:46
257
  __( 'Custom Dimensions', 'google-analytics-dashboard-for-wp' ),
258
 
259
- // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:48
260
  __( 'Form Tracking', 'google-analytics-dashboard-for-wp' ),
261
 
262
- // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:50
263
  __( 'AMP Support', 'google-analytics-dashboard-for-wp' ),
264
 
265
- // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:52
266
  __( 'Author Tracking', 'google-analytics-dashboard-for-wp' ),
267
 
268
- // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:45
269
  __( 'EU Compliance Addon', 'google-analytics-dashboard-for-wp' ),
270
 
271
- // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:47
272
  __( 'Real Time Report', 'google-analytics-dashboard-for-wp' ),
273
 
274
- // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:49
275
  __( 'Google Optimize', 'google-analytics-dashboard-for-wp' ),
276
 
277
- // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:49
278
- // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:51
279
  __( 'Search Console', 'google-analytics-dashboard-for-wp' ),
280
 
281
- // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:53
282
  __( 'Custom Date Ranges', 'google-analytics-dashboard-for-wp' ),
283
 
284
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:94
@@ -297,6 +307,7 @@ $generated_i18n_strings = array(
297
  __( 'Launch the wizard!', 'google-analytics-dashboard-for-wp' ),
298
 
299
  // Reference: src/components/ContentIntroFullWidth.vue:46
 
300
  __( 'Welcome to', 'google-analytics-dashboard-for-wp' ),
301
 
302
  // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:154
@@ -318,13 +329,12 @@ $generated_i18n_strings = array(
318
  __( 'Recommended Plugin: %s', 'google-analytics-dashboard-for-wp' ),
319
 
320
  // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:42
321
- // Reference: src/modules/widget/components/WidgetFooter.vue:20
322
  __( 'Install', 'google-analytics-dashboard-for-wp' ),
323
 
324
  // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:38
325
- // Reference: src/modules/widget/components/WidgetFooter.vue:21
326
  __( 'Activate', 'google-analytics-dashboard-for-wp' ),
327
 
 
328
  // Reference: src/modules/widget/components/WidgetFooter.vue:22
329
  __( 'Learn More', 'google-analytics-dashboard-for-wp' ),
330
 
@@ -341,6 +351,7 @@ $generated_i18n_strings = array(
341
  __( 'Re-Authenticating', 'google-analytics-dashboard-for-wp' ),
342
 
343
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:82
 
344
  __( 'Ok', 'google-analytics-dashboard-for-wp' ),
345
 
346
  // Reference: src/modules/addons/components/AddonsNavigation.vue:18
@@ -355,14 +366,12 @@ $generated_i18n_strings = array(
355
  // Reference: src/modules/wizard-onboarding/components/TheWizardHeader.vue:24
356
  __( 'Exit Setup', 'google-analytics-dashboard-for-wp' ),
357
 
358
- // Reference: src/modules/widget/store/index.js:103
359
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:216
360
  __( 'Time to Purchase', 'google-analytics-dashboard-for-wp' ),
361
 
362
  // Reference: src/modules/widget/store/index.js:104
363
  __( 'This list shows how many days from first visit it took users to purchase products from your site.', 'google-analytics-dashboard-for-wp' ),
364
 
365
- // Reference: src/modules/widget/store/index.js:111
366
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:212
367
  __( 'Sessions to Purchase', 'google-analytics-dashboard-for-wp' ),
368
 
@@ -399,21 +408,18 @@ $generated_i18n_strings = array(
399
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:309
400
  __( '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' ),
401
 
402
- // Reference: src/modules/widget/store/index.js:41
403
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:197
404
  __( 'Top Landing Pages', 'google-analytics-dashboard-for-wp' ),
405
 
406
  // Reference: src/modules/widget/store/index.js:42
407
  __( 'This list shows the top pages users first land on when visiting your website.', 'google-analytics-dashboard-for-wp' ),
408
 
409
- // Reference: src/modules/widget/store/index.js:48
410
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:199
411
  __( 'Top Exit Pages', 'google-analytics-dashboard-for-wp' ),
412
 
413
  // Reference: src/modules/widget/store/index.js:49
414
  __( 'This list shows the top pages users exit your website from.', 'google-analytics-dashboard-for-wp' ),
415
 
416
- // Reference: src/modules/widget/store/index.js:56
417
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:201
418
  __( 'Top Outbound Links', 'google-analytics-dashboard-for-wp' ),
419
 
@@ -426,24 +432,21 @@ $generated_i18n_strings = array(
426
  // Reference: src/modules/widget/store/index.js:64
427
  __( 'This list shows the top affiliate links your visitors clicked on.', 'google-analytics-dashboard-for-wp' ),
428
 
429
- // Reference: src/modules/widget/store/index.js:70
430
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:200
431
  __( 'Top Download Links', 'google-analytics-dashboard-for-wp' ),
432
 
433
  // Reference: src/modules/widget/store/index.js:71
434
  __( 'This list shows the download links your visitors clicked the most.', 'google-analytics-dashboard-for-wp' ),
435
 
436
- // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:46
437
  __( 'Overview', 'google-analytics-dashboard-for-wp' ),
438
 
439
- // Reference: src/modules/widget/store/index.js:83
440
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:214
441
  __( 'Top Products', 'google-analytics-dashboard-for-wp' ),
442
 
443
  // Reference: src/modules/widget/store/index.js:84
444
  __( 'This list shows the top selling products on your website.', 'google-analytics-dashboard-for-wp' ),
445
 
446
- // Reference: src/modules/widget/store/index.js:90
447
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:213
448
  __( 'Top Conversion Sources', 'google-analytics-dashboard-for-wp' ),
449
 
@@ -456,7 +459,7 @@ $generated_i18n_strings = array(
456
  // Reference: src/modules/widget/components/exactmetrics-WidgetAccordion-Lite.vue:224
457
  __( 'Analytics', 'google-analytics-dashboard-for-wp' ),
458
 
459
- // Reference: src/modules/widget/components/exactmetrics-WidgetAccordion-Lite.vue:71
460
  /* Translators: Adds an arrow icon. */
461
  __( 'View All Reports %s', 'google-analytics-dashboard-for-wp' ),
462
 
@@ -466,7 +469,7 @@ $generated_i18n_strings = array(
466
  // Reference: src/modules/reports/components/ReportNoAuth.vue:26
467
  __( 'ExactMetrics makes it "effortless" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard.', 'google-analytics-dashboard-for-wp' ),
468
 
469
- // Reference: src/modules/reports/components/ReportNoAuth.vue:29
470
  __( 'Launch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
471
 
472
  // Reference: src/modules/reports/components/ReportNoAuth.vue:30
@@ -497,22 +500,24 @@ $generated_i18n_strings = array(
497
  // Reference: src/components/TheQuickLinks.vue:78
498
  __( 'Upgrade to Pro &#187;', 'google-analytics-dashboard-for-wp' ),
499
 
500
- // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:47
501
  __( 'Publishers', 'google-analytics-dashboard-for-wp' ),
502
 
503
- // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:48
 
504
  __( 'eCommerce', 'google-analytics-dashboard-for-wp' ),
505
 
506
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:220
507
  __( 'Dimensions Report', 'google-analytics-dashboard-for-wp' ),
508
 
509
- // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:51
510
  __( 'Forms', 'google-analytics-dashboard-for-wp' ),
511
 
512
- // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:52
513
  __( 'Real-Time', 'google-analytics-dashboard-for-wp' ),
514
 
515
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:267
 
516
  __( 'Site Speed Report', 'google-analytics-dashboard-for-wp' ),
517
 
518
  // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:49
@@ -540,19 +545,19 @@ $generated_i18n_strings = array(
540
  // Reference: src/modules/settings/routes/site.js:209
541
  __( 'Sub menu item for WooCommerce Analytics', 'google-analytics-dashboard-for-wp' ),
542
 
543
- // Reference: src/modules/settings/routes/site.js:39
544
  __( 'General', 'google-analytics-dashboard-for-wp' ),
545
 
546
- // Reference: src/modules/settings/routes/site.js:47
547
  __( 'Engagement', 'google-analytics-dashboard-for-wp' ),
548
 
549
- // Reference: src/modules/settings/routes/site.js:63
550
  __( 'Publisher', 'google-analytics-dashboard-for-wp' ),
551
 
552
- // Reference: src/modules/settings/routes/site.js:71
553
  __( 'Conversions', 'google-analytics-dashboard-for-wp' ),
554
 
555
- // Reference: src/modules/settings/routes/site.js:79
556
  __( 'Advanced', 'google-analytics-dashboard-for-wp' ),
557
 
558
  // Reference: src/modules/settings/routes/site.js:96
@@ -599,9 +604,7 @@ $generated_i18n_strings = array(
599
  // Reference: src/modules/reports/store/actions.js:220
600
  __( 'View Addons', 'google-analytics-dashboard-for-wp' ),
601
 
602
- // Reference: src/modules/reports/store/actions.js:221
603
  // Reference: src/modules/seo/components/aioseo.vue:256
604
- // Reference: src/modules/seo/components/yoast.vue:266
605
  __( 'Dismiss', 'google-analytics-dashboard-for-wp' ),
606
 
607
  // Reference: src/modules/reports/store/actions.js:228
@@ -610,13 +613,13 @@ $generated_i18n_strings = array(
610
  // Reference: src/modules/reports/store/actions.js:229
611
  __( 'Please wait', 'google-analytics-dashboard-for-wp' ),
612
 
613
- // Reference: src/modules/reports/store/actions.js:56
614
  __( 'activate', 'google-analytics-dashboard-for-wp' ),
615
 
616
- // Reference: src/modules/reports/store/actions.js:56
617
  __( 'install', 'google-analytics-dashboard-for-wp' ),
618
 
619
- // Reference: src/modules/reports/store/actions.js:60
620
  __( 'Visit addons page', 'google-analytics-dashboard-for-wp' ),
621
 
622
  // Reference: src/modules/reports/store/actions.js:68
@@ -645,7 +648,7 @@ $generated_i18n_strings = array(
645
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:40
646
  __( 'Let\'s get you set up.', 'google-analytics-dashboard-for-wp' ),
647
 
648
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:41
649
  __( 'Save and Continue', 'google-analytics-dashboard-for-wp' ),
650
 
651
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:42
@@ -661,7 +664,7 @@ $generated_i18n_strings = array(
661
  /* Translators: Make text bold. */
662
  __( 'Publisher %1$s(Blog)%2$s', 'google-analytics-dashboard-for-wp' ),
663
 
664
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:56
665
  __( 'Ecommerce', 'google-analytics-dashboard-for-wp' ),
666
 
667
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:81
@@ -670,10 +673,10 @@ $generated_i18n_strings = array(
670
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:82
671
  __( 'ExactMetrics connects Google Analytics to WordPress and shows you stats that matter.', 'google-analytics-dashboard-for-wp' ),
672
 
673
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:83
674
  __( 'Connect Google Analytics + WordPress', 'google-analytics-dashboard-for-wp' ),
675
 
676
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:84
677
  __( 'You will be taken to the ExactMetrics website where you\'ll need to connect your Analytics account.', 'google-analytics-dashboard-for-wp' ),
678
 
679
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:85
@@ -728,7 +731,6 @@ $generated_i18n_strings = array(
728
  __( 'ExactMetrics uses an advanced system to automatically detect all outbound links, download links, affiliate links, telephone links, mail links, and more automatically. We do all the work for you so you don\'t have to write any code.', 'google-analytics-dashboard-for-wp' ),
729
 
730
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:87
731
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:94
732
  __( 'Enhanced Link Attribution', 'google-analytics-dashboard-for-wp' ),
733
 
734
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:88
@@ -755,17 +757,21 @@ $generated_i18n_strings = array(
755
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:97
756
  __( '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' ),
757
 
 
758
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:102
759
  /* Translators: Example path (/go/). */
760
  __( 'Path (example: %s)', 'google-analytics-dashboard-for-wp' ),
761
 
 
762
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:104
763
  __( 'Path has to start with a / and have no spaces', 'google-analytics-dashboard-for-wp' ),
764
 
 
765
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:109
766
  /* Translators: Example label (aff). */
767
  __( 'Label (example: %s)', 'google-analytics-dashboard-for-wp' ),
768
 
 
769
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:111
770
  __( 'Label can\'t contain any spaces', 'google-analytics-dashboard-for-wp' ),
771
 
@@ -803,51 +809,52 @@ $generated_i18n_strings = array(
803
  /* Translators: Placeholders are used for making text bold and adding a link. */
804
  __( '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' ),
805
 
806
- // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:50
807
  __( 'Dimensions', 'google-analytics-dashboard-for-wp' ),
808
 
809
- // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:54
810
  __( 'Site Speed', 'google-analytics-dashboard-for-wp' ),
811
 
812
- // Reference: src/modules/wizard-onboarding/components/inputs/exactmetrics-OnboardingLicense-Lite.vue:30
813
  __( 'License Key', 'google-analytics-dashboard-for-wp' ),
814
 
815
  // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:82
816
  /* Translators: Add link to retrieve license key from account. */
817
  __( 'Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s.', 'google-analytics-dashboard-for-wp' ),
818
 
819
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:83
820
  __( 'Google Authentication', 'google-analytics-dashboard-for-wp' ),
821
 
822
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:86
823
  __( 'Miscellaneous', 'google-analytics-dashboard-for-wp' ),
824
 
825
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:88
826
  __( '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' ),
827
 
828
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:89
829
  __( 'Hide Announcements', 'google-analytics-dashboard-for-wp' ),
830
 
831
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:90
832
  __( 'You\'re using ExactMetrics Lite – no license needed. Enjoy!', 'google-analytics-dashboard-for-wp' ),
833
 
834
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:36
835
- /* Translators: Add link to upgrade. */
 
836
  __( 'To unlock more features consider %1$supgrading to PRO%2$s.', 'google-analytics-dashboard-for-wp' ),
837
 
838
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:93
839
  __( 'Receive 50% off automatically applied at the checkout!', 'google-analytics-dashboard-for-wp' ),
840
 
841
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:95
842
  __( 'See all features', 'google-analytics-dashboard-for-wp' ),
843
 
844
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:96
845
  __( 'Setup Wizard', 'google-analytics-dashboard-for-wp' ),
846
 
847
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:97
848
  __( 'Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks).', 'google-analytics-dashboard-for-wp' ),
849
 
850
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:98
851
  __( 'Relaunch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
852
 
853
  // Reference: src/modules/addons/exactmetrics-addons-Lite.vue:65
@@ -872,7 +879,7 @@ $generated_i18n_strings = array(
872
  // Reference: src/modules/addons/exactmetrics-addons-Lite.vue:96
873
  __( 'Refreshing Addons', 'google-analytics-dashboard-for-wp' ),
874
 
875
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:115
876
  __( 'Get ExactMetrics Pro Today and Unlock all the Powerful Features', 'google-analytics-dashboard-for-wp' ),
877
 
878
  // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:117
@@ -951,7 +958,6 @@ $generated_i18n_strings = array(
951
  __( 'Overview Reports for the last 30 days.', 'google-analytics-dashboard-for-wp' ),
952
 
953
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:124
954
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:153
955
  __( 'Advanced Reports', 'google-analytics-dashboard-for-wp' ),
956
 
957
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:125
@@ -981,7 +987,7 @@ $generated_i18n_strings = array(
981
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:144
982
  __( 'View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more', 'google-analytics-dashboard-for-wp' ),
983
 
984
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:148
985
  __( 'Headline Analyzer', 'google-analytics-dashboard-for-wp' ),
986
 
987
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:156
@@ -1008,6 +1014,7 @@ $generated_i18n_strings = array(
1008
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:171
1009
  __( 'Display Popular Posts based on your actual traffic data from Google Analytics and choose from over 20 advanced themes. Display Popular WooCommerce products using widgets or Gutenberg blocks.', 'google-analytics-dashboard-for-wp' ),
1010
 
 
1011
  // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:112
1012
  __( 'Not Available', 'google-analytics-dashboard-for-wp' ),
1013
 
@@ -1041,6 +1048,7 @@ $generated_i18n_strings = array(
1041
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:69
1042
  __( 'Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout.', 'google-analytics-dashboard-for-wp' ),
1043
 
 
1044
  // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:65
1045
  __( 'Upgrade to Pro', 'google-analytics-dashboard-for-wp' ),
1046
 
@@ -1102,8 +1110,7 @@ $generated_i18n_strings = array(
1102
  /* Translators: Error status and error text. */
1103
  __( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1104
 
1105
- // Reference: src/modules/license/api/index.js:156
1106
- // Reference: src/modules/settings/api/index.js:28
1107
  __( 'You appear to be offline.', 'google-analytics-dashboard-for-wp' ),
1108
 
1109
  // Reference: src/modules/auth/api/index.js:232
@@ -1226,7 +1233,7 @@ $generated_i18n_strings = array(
1226
  /* Translators: Error status and error text. */
1227
  __( 'Can\'t validate the license. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1228
 
1229
- // Reference: src/modules/settings/components/input/SettingsInputText.vue:56
1230
  __( 'Reset to default', 'google-analytics-dashboard-for-wp' ),
1231
 
1232
  // Reference: src/modules/settings/components/input/SettingsInputText.vue:57
@@ -1236,6 +1243,7 @@ $generated_i18n_strings = array(
1236
  __( 'Check out the newly added classic mode', 'google-analytics-dashboard-for-wp' ),
1237
 
1238
  // Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewDatePicker-Lite.vue:52
 
1239
  /* Translators: Placeholder adds a line break. */
1240
  __( 'You can customize your %sdate range only in the PRO version.', 'google-analytics-dashboard-for-wp' ),
1241
 
@@ -1268,16 +1276,14 @@ $generated_i18n_strings = array(
1268
  // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:70
1269
  __( 'Remove row', 'google-analytics-dashboard-for-wp' ),
1270
 
1271
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:289
1272
- // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:103
1273
  __( 'Sessions', 'google-analytics-dashboard-for-wp' ),
1274
 
1275
  // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:105
1276
  /* Translators: Line break. */
1277
  __( 'Unique %s Sessions', 'google-analytics-dashboard-for-wp' ),
1278
 
1279
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:290
1280
- // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:106
1281
  __( 'Pageviews', 'google-analytics-dashboard-for-wp' ),
1282
 
1283
  // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:108
@@ -1285,34 +1291,27 @@ $generated_i18n_strings = array(
1285
  __( 'Unique %s Pageviews', 'google-analytics-dashboard-for-wp' ),
1286
 
1287
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:303
1288
- // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:109
1289
  __( 'A session is the browsing session of a single user to your site.', 'google-analytics-dashboard-for-wp' ),
1290
 
1291
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:304
1292
- // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:110
1293
  __( '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' ),
1294
 
1295
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:305
1296
- // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:111
1297
  __( 'Total duration of all sessions (in seconds) / number of sessions.', 'google-analytics-dashboard-for-wp' ),
1298
 
1299
  // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:112
1300
  __( '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' ),
1301
 
1302
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:307
1303
- // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:113
1304
  __( 'The number of distinct tracked users', 'google-analytics-dashboard-for-wp' ),
1305
 
1306
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:291
1307
- // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:114
1308
  __( 'Avg. Session Duration', 'google-analytics-dashboard-for-wp' ),
1309
 
1310
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:292
1311
- // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:115
1312
  __( 'Bounce Rate', 'google-analytics-dashboard-for-wp' ),
1313
 
1314
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:293
1315
- // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:116
1316
  __( 'Total Users', 'google-analytics-dashboard-for-wp' ),
1317
 
1318
  // Reference: src/modules/settings/components/input/SettingsInputSelect.vue:68
@@ -1351,7 +1350,7 @@ $generated_i18n_strings = array(
1351
  /* Translators: add link to blog. */
1352
  __( 'To comply with Google\'s API policies we\'ve had to remove the real time report from the lite version. You can read about this decision and why it was made in %1$sthis blog post%2$s. To access the real time report in the WordPress backend, you will need to upgrade to Pro.', 'google-analytics-dashboard-for-wp' ),
1353
 
1354
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:40
1355
  __( 'Here\'s what you get:', 'google-analytics-dashboard-for-wp' ),
1356
 
1357
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:46
@@ -1372,7 +1371,7 @@ $generated_i18n_strings = array(
1372
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:66
1373
  __( 'See Where Your Visitors are Connecting From (country & city)', 'google-analytics-dashboard-for-wp' ),
1374
 
1375
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:35
1376
  __( 'Forms Report', 'google-analytics-dashboard-for-wp' ),
1377
 
1378
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:44
@@ -1546,13 +1545,13 @@ $generated_i18n_strings = array(
1546
  /* Translators: Error status and error text. */
1547
  __( 'Can\'t verify credentials. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1548
 
1549
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:305
1550
  __( 'Still Calculating...', 'google-analytics-dashboard-for-wp' ),
1551
 
1552
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:257
1553
  __( 'Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year.', 'google-analytics-dashboard-for-wp' ),
1554
 
1555
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:307
1556
  __( 'Back to Overview Report', 'google-analytics-dashboard-for-wp' ),
1557
 
1558
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:259
@@ -1561,31 +1560,31 @@ $generated_i18n_strings = array(
1561
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:261
1562
  __( 'See how your website performed this year and find tips along the way to help grow even more in 2021!', 'google-analytics-dashboard-for-wp' ),
1563
 
1564
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:311
1565
  __( 'Audience', 'google-analytics-dashboard-for-wp' ),
1566
 
1567
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:312
1568
  __( 'Congrats', 'google-analytics-dashboard-for-wp' ),
1569
 
1570
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:313
1571
  __( 'Your website was quite popular this year! ', 'google-analytics-dashboard-for-wp' ),
1572
 
1573
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:314
1574
  __( 'You had ', 'google-analytics-dashboard-for-wp' ),
1575
 
1576
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:315
1577
  __( ' visitors!', 'google-analytics-dashboard-for-wp' ),
1578
 
1579
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:316
1580
  __( ' visitors', 'google-analytics-dashboard-for-wp' ),
1581
 
1582
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:317
1583
  __( 'Total Visitors', 'google-analytics-dashboard-for-wp' ),
1584
 
1585
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:318
1586
  __( 'Total Sessions', 'google-analytics-dashboard-for-wp' ),
1587
 
1588
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:319
1589
  __( 'Visitors by Month', 'google-analytics-dashboard-for-wp' ),
1590
 
1591
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:271
@@ -1594,7 +1593,7 @@ $generated_i18n_strings = array(
1594
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:272
1595
  __( 'A Tip for 2021', 'google-analytics-dashboard-for-wp' ),
1596
 
1597
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:322
1598
  __( 'Demographics', 'google-analytics-dashboard-for-wp' ),
1599
 
1600
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:323
@@ -1618,22 +1617,22 @@ $generated_i18n_strings = array(
1618
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:329
1619
  __( 'Male', 'google-analytics-dashboard-for-wp' ),
1620
 
1621
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:330
1622
  __( 'Average Age', 'google-analytics-dashboard-for-wp' ),
1623
 
1624
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:331
1625
  __( 'Behavior', 'google-analytics-dashboard-for-wp' ),
1626
 
1627
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:332
1628
  __( 'Your Top 5 Pages', 'google-analytics-dashboard-for-wp' ),
1629
 
1630
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:334
1631
  __( 'Time Spent on Site', 'google-analytics-dashboard-for-wp' ),
1632
 
1633
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:335
1634
  __( 'minutes', 'google-analytics-dashboard-for-wp' ),
1635
 
1636
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:336
1637
  __( 'Device Type', 'google-analytics-dashboard-for-wp' ),
1638
 
1639
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:288
@@ -1681,137 +1680,137 @@ $generated_i18n_strings = array(
1681
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:305
1682
  __( 'Here\'s to an amazing 2021!', 'google-analytics-dashboard-for-wp' ),
1683
 
1684
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:355
1685
  __( 'Enjoying ExactMetrics', 'google-analytics-dashboard-for-wp' ),
1686
 
1687
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:356
1688
  __( 'Leave a five star review!', 'google-analytics-dashboard-for-wp' ),
1689
 
1690
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:357
1691
  __( 'Syed Balkhi', 'google-analytics-dashboard-for-wp' ),
1692
 
1693
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:358
1694
  __( 'Chris Christoff', 'google-analytics-dashboard-for-wp' ),
1695
 
1696
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:359
1697
  __( 'Write Review', 'google-analytics-dashboard-for-wp' ),
1698
 
1699
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:360
1700
  __( 'Did you know over 10 million websites use our plugins?', 'google-analytics-dashboard-for-wp' ),
1701
 
1702
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:312
1703
  __( 'Try our other popular WordPress plugins to grow your website in 2021.', 'google-analytics-dashboard-for-wp' ),
1704
 
1705
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:362
1706
  __( 'Join our Communities!', 'google-analytics-dashboard-for-wp' ),
1707
 
1708
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:314
1709
  __( 'Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level.', 'google-analytics-dashboard-for-wp' ),
1710
 
1711
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:364
1712
  __( 'Facebook Group', 'google-analytics-dashboard-for-wp' ),
1713
 
1714
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:365
1715
  __( 'Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group.', 'google-analytics-dashboard-for-wp' ),
1716
 
1717
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:366
1718
  __( 'Join Now...It’s Free!', 'google-analytics-dashboard-for-wp' ),
1719
 
1720
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:367
1721
  __( 'WordPress Tutorials by WPBeginner', 'google-analytics-dashboard-for-wp' ),
1722
 
1723
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:368
1724
  __( 'WPBeginner is the largest free WordPress resource site for beginners and non-techy users.', 'google-analytics-dashboard-for-wp' ),
1725
 
1726
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:369
1727
  __( 'Visit WPBeginner', 'google-analytics-dashboard-for-wp' ),
1728
 
1729
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:370
1730
  __( 'Follow Us!', 'google-analytics-dashboard-for-wp' ),
1731
 
1732
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:371
1733
  __( 'Follow ExactMetrics on social media to stay up to date with latest updates, trends, and tutorials on how to make the most out of analytics.', 'google-analytics-dashboard-for-wp' ),
1734
 
1735
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:323
1736
  __( 'Copyright ExactMetrics, 2021', 'google-analytics-dashboard-for-wp' ),
1737
 
1738
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:373
1739
  __( 'Upgrade to ExactMetrics Pro to Unlock Additional Actionable Insights', 'google-analytics-dashboard-for-wp' ),
1740
 
1741
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:374
1742
  __( 'Upgrade to ExactMetrics Pro', 'google-analytics-dashboard-for-wp' ),
1743
 
1744
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:377
1745
  __( 'January', 'google-analytics-dashboard-for-wp' ),
1746
 
1747
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:378
1748
  __( 'February', 'google-analytics-dashboard-for-wp' ),
1749
 
1750
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:379
1751
  __( 'March', 'google-analytics-dashboard-for-wp' ),
1752
 
1753
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:380
1754
  __( 'April', 'google-analytics-dashboard-for-wp' ),
1755
 
1756
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:381
1757
  __( 'May', 'google-analytics-dashboard-for-wp' ),
1758
 
1759
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:382
1760
  __( 'June', 'google-analytics-dashboard-for-wp' ),
1761
 
1762
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:383
1763
  __( 'July', 'google-analytics-dashboard-for-wp' ),
1764
 
1765
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:384
1766
  __( 'August', 'google-analytics-dashboard-for-wp' ),
1767
 
1768
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:385
1769
  __( 'September', 'google-analytics-dashboard-for-wp' ),
1770
 
1771
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:386
1772
  __( 'October', 'google-analytics-dashboard-for-wp' ),
1773
 
1774
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:387
1775
  __( 'November', 'google-analytics-dashboard-for-wp' ),
1776
 
1777
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:388
1778
  __( 'December', 'google-analytics-dashboard-for-wp' ),
1779
 
1780
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:416
1781
  /* Translators: Number of visitors. */
1782
  __( 'Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>', 'google-analytics-dashboard-for-wp' ),
1783
 
1784
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:419
1785
  __( 'See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success.', 'google-analytics-dashboard-for-wp' ),
1786
 
1787
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:438
1788
  /* Translators: Number of visitors. */
1789
  __( 'Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries.', 'google-analytics-dashboard-for-wp' ),
1790
 
1791
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:445
1792
  /* Translators: Number of visitors. */
1793
  __( '%s Visitors', 'google-analytics-dashboard-for-wp' ),
1794
 
1795
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:460
1796
  /* Translators: Percent and Number of visitors. */
1797
  __( '%1$s&#37 of your visitors were %2$s', 'google-analytics-dashboard-for-wp' ),
1798
 
1799
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:467
1800
  /* Translators: Number of visitors and their age. */
1801
  __( '%1$s&#37 of your visitors were between the ages of %2$s', 'google-analytics-dashboard-for-wp' ),
1802
 
1803
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:476
1804
  __( 'Your <strong>%1$s</strong> visitors viewed a total of <strong>%2$s</strong> pages. <span class=\'average-page-per-user\' style=\'font-size: 20px;margin-top:25px;display:block;font-family:Lato\'>That\'s an average of %3$s pages for each visitor!</span>', 'google-analytics-dashboard-for-wp' ),
1805
 
1806
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:456
1807
  /* Translators: Number of minutes spent on site. */
1808
  __( 'Each visitor spent an average of %s minutes on your website in 2020.', 'google-analytics-dashboard-for-wp' ),
1809
 
1810
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:522
1811
  /* Translators: Name of device type. */
1812
  __( 'Most of your visitors viewed your website from their <strong>%s</strong> device.', 'google-analytics-dashboard-for-wp' ),
1813
 
1814
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:526
1815
  /* Translators: Number of visitors and device percentage. */
1816
  __( '%1$s&#37 of your visitors were on a %2$s device.', 'google-analytics-dashboard-for-wp' ),
1817
 
@@ -1866,25 +1865,25 @@ $generated_i18n_strings = array(
1866
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:94
1867
  __( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-dashboard-for-wp' ),
1868
 
1869
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:97
1870
  __( 'Dual Tracking Profile', 'google-analytics-dashboard-for-wp' ),
1871
 
1872
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:99
1873
  __( 'The dual tracking feature allows you to continue tracking this site into an existing GAv3 property so you can continue to use the GA reports you are used to already. Learn more about this feature %1$shere%2$s.', 'google-analytics-dashboard-for-wp' ),
1874
 
1875
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:103
1876
  __( 'Your Universal Analytics code should look like UA-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-dashboard-for-wp' ),
1877
 
1878
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:105
1879
  __( 'The dual tracking feature allows you to begin tracking this site into a GAv4 property to take advantage of the new GAv4 analysis tools. Learn more about this feature %1$shere%2$s.', 'google-analytics-dashboard-for-wp' ),
1880
 
1881
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:96
1882
  __( 'Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-dashboard-for-wp' ),
1883
 
1884
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:110
1885
  __( 'Measurement Protocol API Secret', 'google-analytics-dashboard-for-wp' ),
1886
 
1887
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:112
1888
  __( 'The Measurement Protocol API secret allows your site to send tracking data to Google Analytics. To retrieve your Measurement Protocol API Secret, follow %1$sthis guide%2$s.', 'google-analytics-dashboard-for-wp' ),
1889
 
1890
  // Reference: src/modules/widget/components/settings/exactmetrics-WidgetSettingsCompact.vue:19
@@ -2009,7 +2008,8 @@ $generated_i18n_strings = array(
2009
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:128
2010
  __( 'Choose where in the post body the widget will be placed.', 'google-analytics-dashboard-for-wp' ),
2011
 
2012
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:180
 
2013
  __( 'Customize Design', 'google-analytics-dashboard-for-wp' ),
2014
 
2015
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:137
@@ -2148,9 +2148,11 @@ $generated_i18n_strings = array(
2148
  __( 'Unlock PRO Features Now', 'google-analytics-dashboard-for-wp' ),
2149
 
2150
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:40
 
2151
  __( 'Paste your license key here', 'google-analytics-dashboard-for-wp' ),
2152
 
2153
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:41
 
2154
  __( 'Verify', 'google-analytics-dashboard-for-wp' ),
2155
 
2156
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:43
@@ -2158,6 +2160,7 @@ $generated_i18n_strings = array(
2158
  __( 'Already purchased? Simply enter your license key below to connect with ExactMetrics PRO! %1$sRetrieve your license key%2$s.', 'google-analytics-dashboard-for-wp' ),
2159
 
2160
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:73
 
2161
  __( 'There was an error unlocking ExactMetrics PRO please try again or install manually.', 'google-analytics-dashboard-for-wp' ),
2162
 
2163
  // Reference: src/modules/seo/components/yoast.vue:166
@@ -2167,11 +2170,9 @@ $generated_i18n_strings = array(
2167
  __( 'Automatically migrate all of your SEO settings with just 1 click!', 'google-analytics-dashboard-for-wp' ),
2168
 
2169
  // Reference: src/modules/seo/components/aioseo.vue:165
2170
- // Reference: src/modules/seo/components/yoast.vue:168
2171
  __( '1,938', 'google-analytics-dashboard-for-wp' ),
2172
 
2173
  // Reference: src/modules/seo/components/aioseo.vue:166
2174
- // Reference: src/modules/seo/components/yoast.vue:169
2175
  __( '2+ Million Active Installs', 'google-analytics-dashboard-for-wp' ),
2176
 
2177
  // Reference: src/modules/seo/components/yoast.vue:172
@@ -2181,11 +2182,9 @@ $generated_i18n_strings = array(
2181
  __( 'Set up the proper SEO foundations in less than 10 minutes.', 'google-analytics-dashboard-for-wp' ),
2182
 
2183
  // Reference: src/modules/seo/components/aioseo.vue:175
2184
- // Reference: src/modules/seo/components/yoast.vue:174
2185
  __( 'SEO Audit Checklist', 'google-analytics-dashboard-for-wp' ),
2186
 
2187
  // Reference: src/modules/seo/components/aioseo.vue:176
2188
- // Reference: src/modules/seo/components/yoast.vue:175
2189
  __( 'Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic.', 'google-analytics-dashboard-for-wp' ),
2190
 
2191
  // Reference: src/modules/seo/components/yoast.vue:176
@@ -2198,45 +2197,36 @@ $generated_i18n_strings = array(
2198
  __( 'Get AIOSEO for WordPress', 'google-analytics-dashboard-for-wp' ),
2199
 
2200
  // Reference: src/modules/seo/components/aioseo.vue:190
2201
- // Reference: src/modules/seo/components/yoast.vue:181
2202
  __( 'Get the #1 Most Powerful WordPress SEO Plugin Today', 'google-analytics-dashboard-for-wp' ),
2203
 
2204
  // Reference: src/modules/seo/components/aioseo.vue:191
2205
- // Reference: src/modules/seo/components/yoast.vue:182
2206
  __( 'Try it out today, for free.', 'google-analytics-dashboard-for-wp' ),
2207
 
2208
  // Reference: src/modules/seo/components/aioseo.vue:194
2209
- // Reference: src/modules/seo/components/yoast.vue:185
2210
  __( 'Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings.', 'google-analytics-dashboard-for-wp' ),
2211
 
2212
  // Reference: src/modules/seo/components/aioseo.vue:195
2213
- // Reference: src/modules/seo/components/yoast.vue:186
2214
  __( 'Activate and Install the Plugin with just one click!', 'google-analytics-dashboard-for-wp' ),
2215
 
2216
  // Reference: src/modules/seo/components/yoast.vue:251
2217
  __( 'Installing AIOSEO...', 'google-analytics-dashboard-for-wp' ),
2218
 
2219
  // Reference: src/modules/seo/components/aioseo.vue:250
2220
- // Reference: src/modules/seo/components/yoast.vue:260
2221
  __( 'Congrats! All-in-One SEO Installed.', 'google-analytics-dashboard-for-wp' ),
2222
 
2223
  // Reference: src/modules/seo/components/yoast.vue:277
2224
  __( 'Switch to AIOSEO', 'google-analytics-dashboard-for-wp' ),
2225
 
2226
  // Reference: src/modules/seo/components/aioseo.vue:271
2227
- // Reference: src/modules/seo/components/yoast.vue:281
2228
  __( 'Installation Failed. Please refresh and try again.', 'google-analytics-dashboard-for-wp' ),
2229
 
2230
  // Reference: src/modules/seo/components/aioseo.vue:278
2231
- // Reference: src/modules/seo/components/yoast.vue:288
2232
  __( 'Activating AIOSEO...', 'google-analytics-dashboard-for-wp' ),
2233
 
2234
  // Reference: src/modules/seo/components/aioseo.vue:285
2235
- // Reference: src/modules/seo/components/yoast.vue:295
2236
  __( 'Activate AIOSEO', 'google-analytics-dashboard-for-wp' ),
2237
 
2238
  // Reference: src/modules/seo/components/aioseo.vue:289
2239
- // Reference: src/modules/seo/components/yoast.vue:299
2240
  __( 'Activation Failed. Please refresh and try again.', 'google-analytics-dashboard-for-wp' ),
2241
 
2242
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:58
@@ -2252,6 +2242,7 @@ $generated_i18n_strings = array(
2252
  __( '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' ),
2253
 
2254
  // Reference: src/modules/reports/components/exactmetrics-ReportsPagination.vue:33
 
2255
  __( 'Show', 'google-analytics-dashboard-for-wp' ),
2256
 
2257
  // Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:103
@@ -2574,24 +2565,30 @@ $generated_i18n_strings = array(
2574
  __( 'See Your Conversion Rate to Improve Funnel', 'google-analytics-dashboard-for-wp' ),
2575
 
2576
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:48
 
2577
  __( 'See The Number of Transactions and Make Data-Driven Decisions', 'google-analytics-dashboard-for-wp' ),
2578
 
2579
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:52
 
2580
  __( 'See The Total Revenue to Track Growth', 'google-analytics-dashboard-for-wp' ),
2581
 
2582
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:56
 
2583
  __( 'See Average Order Value to Find Offer Opportunities', 'google-analytics-dashboard-for-wp' ),
2584
 
2585
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:60
 
2586
  __( 'See Your Top Products to See Individual Performance', 'google-analytics-dashboard-for-wp' ),
2587
 
2588
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:84
2589
  __( 'See your Top Conversion Sources and Focus on what\'s Working', 'google-analytics-dashboard-for-wp' ),
2590
 
2591
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:68
 
2592
  __( 'See The Time it Takes for Customers to Purchase', 'google-analytics-dashboard-for-wp' ),
2593
 
2594
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:72
 
2595
  __( 'See How Many Sessions are Needed for a Purchase', 'google-analytics-dashboard-for-wp' ),
2596
 
2597
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:96
@@ -2806,7 +2803,7 @@ $generated_i18n_strings = array(
2806
  // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:45
2807
  __( 'Better Support', 'google-analytics-dashboard-for-wp' ),
2808
 
2809
- // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:47
2810
  __( 'Continue', 'google-analytics-dashboard-for-wp' ),
2811
 
2812
  // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:48
@@ -2948,7 +2945,7 @@ $generated_i18n_strings = array(
2948
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:119
2949
  __( 'Close', 'google-analytics-dashboard-for-wp' ),
2950
 
2951
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:31
2952
  __( 'Add Top 5 Posts from Google Analytics', 'google-analytics-dashboard-for-wp' ),
2953
 
2954
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:56
@@ -2961,7 +2958,7 @@ $generated_i18n_strings = array(
2961
  /* Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc. */
2962
  __( 'Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics.', 'google-analytics-dashboard-for-wp' ),
2963
 
2964
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:33
2965
  __( 'Automated + Curated', 'google-analytics-dashboard-for-wp' ),
2966
 
2967
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:62
@@ -3015,31 +3012,31 @@ $generated_i18n_strings = array(
3015
  // Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:92
3016
  __( 'Can\'t load posts.', 'google-analytics-dashboard-for-wp' ),
3017
 
3018
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:68
3019
  __( 'Sartorial taxidermy venmo you probably haven\'t heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu.', 'google-analytics-dashboard-for-wp' ),
3020
 
3021
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:69
3022
  __( 'Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan', 'google-analytics-dashboard-for-wp' ),
3023
 
3024
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:182
3025
  __( 'Color', 'google-analytics-dashboard-for-wp' ),
3026
 
3027
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:183
3028
  __( 'Size', 'google-analytics-dashboard-for-wp' ),
3029
 
3030
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:181
3031
  __( 'Title', 'google-analytics-dashboard-for-wp' ),
3032
 
3033
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:186
3034
  __( 'Label', 'google-analytics-dashboard-for-wp' ),
3035
 
3036
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:187
3037
  __( 'Background', 'google-analytics-dashboard-for-wp' ),
3038
 
3039
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:184
3040
  __( 'Border', 'google-analytics-dashboard-for-wp' ),
3041
 
3042
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:76
3043
  __( 'Icon', 'google-analytics-dashboard-for-wp' ),
3044
 
3045
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:92
@@ -3125,7 +3122,7 @@ $generated_i18n_strings = array(
3125
  /* Translators: Make text green. */
3126
  __( 'Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s', 'google-analytics-dashboard-for-wp' ),
3127
 
3128
- // Reference: src/modules/popular-posts/components/PopularPostsUpgradeOverlay.vue:30
3129
  __( 'Upgrade', 'google-analytics-dashboard-for-wp' ),
3130
 
3131
  // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputPdfReports-Lite.vue:17
@@ -3218,7 +3215,7 @@ $generated_i18n_strings = array(
3218
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:82
3219
  __( 'There are two ways to manual include the widget in your posts.', 'google-analytics-dashboard-for-wp' ),
3220
 
3221
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:83
3222
  __( 'Using the Gutenberg Block', 'google-analytics-dashboard-for-wp' ),
3223
 
3224
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:84
@@ -3233,22 +3230,22 @@ $generated_i18n_strings = array(
3233
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:87
3234
  __( '%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg', 'google-analytics-dashboard-for-wp' ),
3235
 
3236
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:89
3237
  __( '%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page.', 'google-analytics-dashboard-for-wp' ),
3238
 
3239
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:90
3240
  __( '%1$sStep 2%2$s - Search for “Inline Popular Posts by ExactMetrics”.', 'google-analytics-dashboard-for-wp' ),
3241
 
3242
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:91
3243
  __( '%1$sStep 3%2$s - Style the widget using the Block Settings sidebar.', 'google-analytics-dashboard-for-wp' ),
3244
 
3245
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:93
3246
  __( 'Shortcode', 'google-analytics-dashboard-for-wp' ),
3247
 
3248
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:94
3249
  __( 'Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin.', 'google-analytics-dashboard-for-wp' ),
3250
 
3251
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:95
3252
  __( 'Copy Shortcode', 'google-analytics-dashboard-for-wp' ),
3253
 
3254
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:96
@@ -3315,49 +3312,49 @@ $generated_i18n_strings = array(
3315
  /* Translators: The number of results. */
3316
  __( '%s results', 'google-analytics-dashboard-for-wp' ),
3317
 
3318
- // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:55
3319
  __( 'Media', 'google-analytics-dashboard-for-wp' ),
3320
 
3321
  // Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputMedia-Lite.vue:26
3322
  __( 'Track how your users interact with videos on your website. Upgrade to ExactMetrics Pro.', 'google-analytics-dashboard-for-wp' ),
3323
 
3324
- // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:53
3325
  __( '2021 Year in Review', 'google-analytics-dashboard-for-wp' ),
3326
 
3327
  // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:100
3328
  __( 'Media- Track how your users interact with videos on your website.', 'google-analytics-dashboard-for-wp' ),
3329
 
3330
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:306
3331
  __( 'Your 2021 Year in Review is still calculating. Please check back later to see how your website performed last year.', 'google-analytics-dashboard-for-wp' ),
3332
 
3333
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:308
3334
  __( 'Your 2021 Analytics Report', 'google-analytics-dashboard-for-wp' ),
3335
 
3336
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:310
3337
  __( 'See how your website performed this year and find tips along the way to help grow even more in 2022!', 'google-analytics-dashboard-for-wp' ),
3338
 
3339
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:320
3340
  __( 'January 1, 2021 - December 31, 2021', 'google-analytics-dashboard-for-wp' ),
3341
 
3342
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:321
3343
  __( 'A Tip for 2022', 'google-analytics-dashboard-for-wp' ),
3344
 
3345
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:337
3346
  __( 'A Tip For 2022', 'google-analytics-dashboard-for-wp' ),
3347
 
3348
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:354
3349
  __( 'Here\'s to an amazing 2022!', 'google-analytics-dashboard-for-wp' ),
3350
 
3351
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:361
3352
  __( 'Try our other popular WordPress plugins to grow your website in 2022.', 'google-analytics-dashboard-for-wp' ),
3353
 
3354
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:363
3355
  __( 'Become a WordPress expert in 2022. Join our amazing communities and take your website to the next level.', 'google-analytics-dashboard-for-wp' ),
3356
 
3357
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:372
3358
  __( 'Copyright ExactMetrics, 2022', 'google-analytics-dashboard-for-wp' ),
3359
 
3360
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:500
3361
  /* Translators: Number of minutes spent on site. */
3362
  __( 'Each visitor spent an average of %s minutes on your website in 2021.', 'google-analytics-dashboard-for-wp' ),
3363
 
@@ -3395,7 +3392,6 @@ $generated_i18n_strings = array(
3395
  // Reference: src/modules/growth-tools/exactmetrics-growth-tools.vue:146
3396
  __( 'The world’s most popular WordPress form builder, trusted by over 5 million websites. Easily build contact forms, payment forms, and more.', 'google-analytics-dashboard-for-wp' ),
3397
 
3398
- // Reference: src/modules/growth-tools/exactmetrics-growth-tools.vue:157
3399
  // Reference: src/modules/wizard-onboarding/components/OnboardingAddon-Lite.vue:42
3400
  __( 'OptinMonster', 'google-analytics-dashboard-for-wp' ),
3401
 
@@ -3522,7 +3518,7 @@ $generated_i18n_strings = array(
3522
  // Reference: src/modules/growth-tools/components/GrowthNavigation.vue:21
3523
  __( 'Guides & Resources', 'google-analytics-dashboard-for-wp' ),
3524
 
3525
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:197
3526
  __( 'Media Tracking', 'google-analytics-dashboard-for-wp' ),
3527
 
3528
  // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:34
@@ -3644,13 +3640,13 @@ $generated_i18n_strings = array(
3644
  // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:53
3645
  __( 'The following plugins will be installed: ', 'google-analytics-dashboard-for-wp' ),
3646
 
3647
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:109
3648
  __( 'Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-dashboard-for-wp' ),
3649
 
3650
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:95
3651
  __( 'Manually enter your GA4 Measurement ID', 'google-analytics-dashboard-for-wp' ),
3652
 
3653
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:96
3654
  __( 'Warning: If you use a manual GA4 Measurement ID, you won\'t be able to use any of the reporting and some of the tracking features. Your UA code should look like G-XXXXXXXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-dashboard-for-wp' ),
3655
 
3656
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:107
@@ -4066,8 +4062,7 @@ $generated_i18n_strings = array(
4066
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:107
4067
  __( 'Your Measurement ID should look like G-XXXXXXXXXX or GT-XXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-dashboard-for-wp' ),
4068
 
4069
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportMedia-Lite.vue:35
4070
- // Reference: src/modules/reports/routes/exactmetrics-routes.js:90
4071
  __( 'Media Report', 'google-analytics-dashboard-for-wp' ),
4072
 
4073
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportMedia-Lite.vue:36
@@ -4083,6 +4078,67 @@ $generated_i18n_strings = array(
4083
  __( 'Works with YouTube, Vimeo, and HTML 5 Videos', 'google-analytics-dashboard-for-wp' ),
4084
 
4085
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportMedia-Lite.vue:52
4086
- __( 'Compare stats over time', 'google-analytics-dashboard-for-wp' )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4087
  );
4088
  /* THIS IS THE END OF THE GENERATED FILE */
10
  // Reference: src/plugins/exactmetrics-settings-helper-plugin.js:120
11
  __( 'Loading Settings', 'google-analytics-dashboard-for-wp' ),
12
 
13
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:59
14
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:171
15
  __( 'Please wait...', 'google-analytics-dashboard-for-wp' ),
16
 
17
  // Reference: src/plugins/exactmetrics-settings-helper-plugin.js:22
30
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:129
31
  __( 'Loading new report data', 'google-analytics-dashboard-for-wp' ),
32
 
33
+ // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:296
34
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:143
35
  /* Translators: Adds an arrow icon. */
36
  __( 'Continue %s', 'google-analytics-dashboard-for-wp' ),
37
 
38
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:75
39
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:188
40
  __( 'Error', 'google-analytics-dashboard-for-wp' ),
41
 
42
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:151
43
  __( 'Please try again.', 'google-analytics-dashboard-for-wp' ),
44
 
45
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:181
93
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:291
94
  __( 'Today', 'google-analytics-dashboard-for-wp' ),
95
 
96
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:99
97
  __( 'Yesterday', 'google-analytics-dashboard-for-wp' ),
98
 
99
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:303
105
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:315
106
  __( 'Last 7 days', 'google-analytics-dashboard-for-wp' ),
107
 
108
+ // Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewDatePicker-Lite.vue:50
109
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:321
110
  __( 'Last 30 days', 'google-analytics-dashboard-for-wp' ),
111
 
124
  __( 'See the full analytics report!', 'google-analytics-dashboard-for-wp' ),
125
 
126
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:288
127
+ // Reference: src/modules/widget/widget.vue:26
128
  __( 'Overview Report', 'google-analytics-dashboard-for-wp' ),
129
 
130
  // Reference: src/plugins/exactmetrics-compatibility-plugin.js:13
155
  // Reference: src/plugins/exactmetrics-compatibility-plugin.js:59
156
  __( 'Learn more about updating WordPress', 'google-analytics-dashboard-for-wp' ),
157
 
158
+ // Reference: src/modules/about/components/AboutNavigation-Lite.vue:17
159
+ // Reference: src/modules/settings/routes/site.js:134
160
  __( 'About Us', 'google-analytics-dashboard-for-wp' ),
161
 
162
+ // Reference: src/modules/about/components/AboutNavigation-Lite.vue:18
163
  // Reference: src/modules/settings/routes/site.js:142
164
  __( 'Getting Started', 'google-analytics-dashboard-for-wp' ),
165
 
166
+ // Reference: src/modules/about/components/AboutNavigation-Lite.vue:19
167
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:63
168
  // Reference: src/modules/settings/routes/site.js:151
169
  __( 'Lite vs Pro', 'google-analytics-dashboard-for-wp' ),
170
 
221
  /* Translators: Adds a link and an arrow icon. */
222
  __( '%1$sSee All Features%2$s', 'google-analytics-dashboard-for-wp' ),
223
 
224
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:11
225
  __( 'Pro Plan', 'google-analytics-dashboard-for-wp' ),
226
 
227
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:12
228
  __( 'per year', 'google-analytics-dashboard-for-wp' ),
229
 
230
+ // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:63
231
  __( 'Upgrade Now', 'google-analytics-dashboard-for-wp' ),
232
 
233
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:158
234
  __( 'Upgrade to ExactMetrics Pro Now', 'google-analytics-dashboard-for-wp' ),
235
 
236
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:33
237
  __( 'This is absolutely, positively, one of the TOP plugins to install on your WP site. There is no better way to quickly gauge traffic for spikes, surges, and consistency. I installed this on over a dozen WordPress installations and counting, thank you for an outstanding app!', 'google-analytics-dashboard-for-wp' ),
238
 
239
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:34
240
  __( 'Daniel Monaghan - Experienced', 'google-analytics-dashboard-for-wp' ),
241
 
242
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:38
243
  __( 'Very simple to configure and the results are very clearly displayed. So much easier for clients to view than in their own analytics account! Delighted with it.', 'google-analytics-dashboard-for-wp' ),
244
 
245
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:39
246
  __( 'Naomi Spirit - From This Day', 'google-analytics-dashboard-for-wp' ),
247
 
248
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:43
249
  __( 'Love this plugin! It’s got powerful customization options, it’s easy to use, there’s good documentation, and if all that’s not enough, ExactMetrics is quick to provide support. Thanks for this wonderful plugin!', 'google-analytics-dashboard-for-wp' ),
250
 
251
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:44
252
  __( 'Julie Dupuis - Faraway Land Travel', 'google-analytics-dashboard-for-wp' ),
253
 
254
  // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:228
255
  __( 'Guides and Documentation:', 'google-analytics-dashboard-for-wp' ),
256
 
257
+ // Reference: src/modules/reports/components/reports/exactmetrics-SiteSpeed-Lite.vue:41
 
258
  // Reference: src/modules/settings/components/input/tab-engagement/exactmetrics-SettingsInputEUCompliance-Lite.vue:24
259
+ // Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputAmp-Lite.vue:24
260
+ // Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputMedia-Lite.vue:24
261
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:147
262
  __( 'Upgrade to PRO', 'google-analytics-dashboard-for-wp' ),
263
 
264
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:101
265
  __( 'eCommerce Tracking', 'google-analytics-dashboard-for-wp' ),
266
 
267
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:175
268
  __( 'Custom Dimensions', 'google-analytics-dashboard-for-wp' ),
269
 
270
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:19
271
  __( 'Form Tracking', 'google-analytics-dashboard-for-wp' ),
272
 
273
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:20
274
  __( 'AMP Support', 'google-analytics-dashboard-for-wp' ),
275
 
276
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:223
277
  __( 'Author Tracking', 'google-analytics-dashboard-for-wp' ),
278
 
279
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:24
280
  __( 'EU Compliance Addon', 'google-analytics-dashboard-for-wp' ),
281
 
282
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:25
283
  __( 'Real Time Report', 'google-analytics-dashboard-for-wp' ),
284
 
285
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:60
286
  __( 'Google Optimize', 'google-analytics-dashboard-for-wp' ),
287
 
288
+ // Reference: src/modules/reports/routes/exactmetrics-routes.js:49
 
289
  __( 'Search Console', 'google-analytics-dashboard-for-wp' ),
290
 
291
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:28
292
  __( 'Custom Date Ranges', 'google-analytics-dashboard-for-wp' ),
293
 
294
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:94
307
  __( 'Launch the wizard!', 'google-analytics-dashboard-for-wp' ),
308
 
309
  // Reference: src/components/ContentIntroFullWidth.vue:46
310
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:152
311
  __( 'Welcome to', 'google-analytics-dashboard-for-wp' ),
312
 
313
  // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:154
329
  __( 'Recommended Plugin: %s', 'google-analytics-dashboard-for-wp' ),
330
 
331
  // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:42
 
332
  __( 'Install', 'google-analytics-dashboard-for-wp' ),
333
 
334
  // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:38
 
335
  __( 'Activate', 'google-analytics-dashboard-for-wp' ),
336
 
337
+ // Reference: src/modules/growth-tools/exactmetrics-growth-tools.vue:257
338
  // Reference: src/modules/widget/components/WidgetFooter.vue:22
339
  __( 'Learn More', 'google-analytics-dashboard-for-wp' ),
340
 
351
  __( 'Re-Authenticating', 'google-analytics-dashboard-for-wp' ),
352
 
353
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:82
354
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:195
355
  __( 'Ok', 'google-analytics-dashboard-for-wp' ),
356
 
357
  // Reference: src/modules/addons/components/AddonsNavigation.vue:18
366
  // Reference: src/modules/wizard-onboarding/components/TheWizardHeader.vue:24
367
  __( 'Exit Setup', 'google-analytics-dashboard-for-wp' ),
368
 
 
369
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:216
370
  __( 'Time to Purchase', 'google-analytics-dashboard-for-wp' ),
371
 
372
  // Reference: src/modules/widget/store/index.js:104
373
  __( 'This list shows how many days from first visit it took users to purchase products from your site.', 'google-analytics-dashboard-for-wp' ),
374
 
 
375
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:212
376
  __( 'Sessions to Purchase', 'google-analytics-dashboard-for-wp' ),
377
 
408
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:309
409
  __( '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' ),
410
 
 
411
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:197
412
  __( 'Top Landing Pages', 'google-analytics-dashboard-for-wp' ),
413
 
414
  // Reference: src/modules/widget/store/index.js:42
415
  __( 'This list shows the top pages users first land on when visiting your website.', 'google-analytics-dashboard-for-wp' ),
416
 
 
417
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:199
418
  __( 'Top Exit Pages', 'google-analytics-dashboard-for-wp' ),
419
 
420
  // Reference: src/modules/widget/store/index.js:49
421
  __( 'This list shows the top pages users exit your website from.', 'google-analytics-dashboard-for-wp' ),
422
 
 
423
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:201
424
  __( 'Top Outbound Links', 'google-analytics-dashboard-for-wp' ),
425
 
432
  // Reference: src/modules/widget/store/index.js:64
433
  __( 'This list shows the top affiliate links your visitors clicked on.', 'google-analytics-dashboard-for-wp' ),
434
 
 
435
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:200
436
  __( 'Top Download Links', 'google-analytics-dashboard-for-wp' ),
437
 
438
  // Reference: src/modules/widget/store/index.js:71
439
  __( 'This list shows the download links your visitors clicked the most.', 'google-analytics-dashboard-for-wp' ),
440
 
441
+ // Reference: src/modules/reports/routes/exactmetrics-routes.js:25
442
  __( 'Overview', 'google-analytics-dashboard-for-wp' ),
443
 
 
444
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:214
445
  __( 'Top Products', 'google-analytics-dashboard-for-wp' ),
446
 
447
  // Reference: src/modules/widget/store/index.js:84
448
  __( 'This list shows the top selling products on your website.', 'google-analytics-dashboard-for-wp' ),
449
 
 
450
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:213
451
  __( 'Top Conversion Sources', 'google-analytics-dashboard-for-wp' ),
452
 
459
  // Reference: src/modules/widget/components/exactmetrics-WidgetAccordion-Lite.vue:224
460
  __( 'Analytics', 'google-analytics-dashboard-for-wp' ),
461
 
462
+ // Reference: src/modules/widget/components/settings/exactmetrics-WidgetFullReportButton.vue:18
463
  /* Translators: Adds an arrow icon. */
464
  __( 'View All Reports %s', 'google-analytics-dashboard-for-wp' ),
465
 
469
  // Reference: src/modules/reports/components/ReportNoAuth.vue:26
470
  __( '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' ),
471
 
472
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:138
473
  __( 'Launch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
474
 
475
  // Reference: src/modules/reports/components/ReportNoAuth.vue:30
500
  // Reference: src/components/TheQuickLinks.vue:78
501
  __( 'Upgrade to Pro &#187;', 'google-analytics-dashboard-for-wp' ),
502
 
503
+ // Reference: src/modules/reports/routes/exactmetrics-routes.js:33
504
  __( 'Publishers', 'google-analytics-dashboard-for-wp' ),
505
 
506
+ // Reference: src/modules/reports/routes/exactmetrics-routes.js:41
507
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:69
508
  __( 'eCommerce', 'google-analytics-dashboard-for-wp' ),
509
 
510
+ // Reference: src/modules/reports/routes/exactmetrics-routes.js:57
511
  __( 'Dimensions Report', 'google-analytics-dashboard-for-wp' ),
512
 
513
+ // Reference: src/modules/reports/routes/exactmetrics-routes.js:65
514
  __( 'Forms', 'google-analytics-dashboard-for-wp' ),
515
 
516
+ // Reference: src/modules/reports/routes/exactmetrics-routes.js:73
517
  __( 'Real-Time', 'google-analytics-dashboard-for-wp' ),
518
 
519
+ // Reference: src/modules/reports/components/reports/exactmetrics-SiteSpeed-Lite.vue:35
520
+ // Reference: src/modules/reports/routes/exactmetrics-routes.js:81
521
  __( 'Site Speed Report', 'google-analytics-dashboard-for-wp' ),
522
 
523
  // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:49
545
  // Reference: src/modules/settings/routes/site.js:209
546
  __( 'Sub menu item for WooCommerce Analytics', 'google-analytics-dashboard-for-wp' ),
547
 
548
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:67
549
  __( 'General', 'google-analytics-dashboard-for-wp' ),
550
 
551
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:68
552
  __( 'Engagement', 'google-analytics-dashboard-for-wp' ),
553
 
554
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:70
555
  __( 'Publisher', 'google-analytics-dashboard-for-wp' ),
556
 
557
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:71
558
  __( 'Conversions', 'google-analytics-dashboard-for-wp' ),
559
 
560
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:72
561
  __( 'Advanced', 'google-analytics-dashboard-for-wp' ),
562
 
563
  // Reference: src/modules/settings/routes/site.js:96
604
  // Reference: src/modules/reports/store/actions.js:220
605
  __( 'View Addons', 'google-analytics-dashboard-for-wp' ),
606
 
 
607
  // Reference: src/modules/seo/components/aioseo.vue:256
 
608
  __( 'Dismiss', 'google-analytics-dashboard-for-wp' ),
609
 
610
  // Reference: src/modules/reports/store/actions.js:228
613
  // Reference: src/modules/reports/store/actions.js:229
614
  __( 'Please wait', 'google-analytics-dashboard-for-wp' ),
615
 
616
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:126
617
  __( 'activate', 'google-analytics-dashboard-for-wp' ),
618
 
619
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:126
620
  __( 'install', 'google-analytics-dashboard-for-wp' ),
621
 
622
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:134
623
  __( 'Visit addons page', 'google-analytics-dashboard-for-wp' ),
624
 
625
  // Reference: src/modules/reports/store/actions.js:68
648
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:40
649
  __( 'Let\'s get you set up.', 'google-analytics-dashboard-for-wp' ),
650
 
651
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:88
652
  __( 'Save and Continue', 'google-analytics-dashboard-for-wp' ),
653
 
654
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:42
664
  /* Translators: Make text bold. */
665
  __( 'Publisher %1$s(Blog)%2$s', 'google-analytics-dashboard-for-wp' ),
666
 
667
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:54
668
  __( 'Ecommerce', 'google-analytics-dashboard-for-wp' ),
669
 
670
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:81
673
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:82
674
  __( 'ExactMetrics connects Google Analytics to WordPress and shows you stats that matter.', 'google-analytics-dashboard-for-wp' ),
675
 
676
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:132
677
  __( 'Connect Google Analytics + WordPress', 'google-analytics-dashboard-for-wp' ),
678
 
679
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:133
680
  __( 'You will be taken to the ExactMetrics website where you\'ll need to connect your Analytics account.', 'google-analytics-dashboard-for-wp' ),
681
 
682
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:85
731
  __( 'ExactMetrics uses an advanced system to automatically detect all outbound links, download links, affiliate links, telephone links, mail links, and more automatically. We do all the work for you so you don\'t have to write any code.', 'google-analytics-dashboard-for-wp' ),
732
 
733
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:87
 
734
  __( 'Enhanced Link Attribution', 'google-analytics-dashboard-for-wp' ),
735
 
736
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:88
757
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:97
758
  __( 'ExactMetrics will automatically track downloads of common file types from links you have inserted onto your website. For example: want to know how many of your site\'s visitors have downloaded a PDF or other file you offer your visitors to download on your site? ExactMetrics makes this both easy, and code-free! You can customize the file types to track at any time from our settings panel.', 'google-analytics-dashboard-for-wp' ),
759
 
760
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:62
761
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:102
762
  /* Translators: Example path (/go/). */
763
  __( 'Path (example: %s)', 'google-analytics-dashboard-for-wp' ),
764
 
765
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:64
766
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:104
767
  __( 'Path has to start with a / and have no spaces', 'google-analytics-dashboard-for-wp' ),
768
 
769
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:69
770
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:109
771
  /* Translators: Example label (aff). */
772
  __( 'Label (example: %s)', 'google-analytics-dashboard-for-wp' ),
773
 
774
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:71
775
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:111
776
  __( 'Label can\'t contain any spaces', 'google-analytics-dashboard-for-wp' ),
777
 
809
  /* Translators: Placeholders are used for making text bold and adding a link. */
810
  __( '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' ),
811
 
812
+ // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:49
813
  __( 'Dimensions', 'google-analytics-dashboard-for-wp' ),
814
 
815
+ // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:52
816
  __( 'Site Speed', 'google-analytics-dashboard-for-wp' ),
817
 
818
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:124
819
  __( 'License Key', 'google-analytics-dashboard-for-wp' ),
820
 
821
  // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:82
822
  /* Translators: Add link to retrieve license key from account. */
823
  __( 'Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s.', 'google-analytics-dashboard-for-wp' ),
824
 
825
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:128
826
  __( 'Google Authentication', 'google-analytics-dashboard-for-wp' ),
827
 
828
+ // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:32
829
  __( 'Miscellaneous', 'google-analytics-dashboard-for-wp' ),
830
 
831
+ // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:34
832
  __( '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' ),
833
 
834
+ // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:35
835
  __( 'Hide Announcements', 'google-analytics-dashboard-for-wp' ),
836
 
837
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:143
838
  __( 'You\'re using ExactMetrics Lite – no license needed. Enjoy!', 'google-analytics-dashboard-for-wp' ),
839
 
840
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:36
841
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:145
842
+ /* Translators: Adds link to upgrade. */
843
  __( 'To unlock more features consider %1$supgrading to PRO%2$s.', 'google-analytics-dashboard-for-wp' ),
844
 
845
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:146
846
  __( 'Receive 50% off automatically applied at the checkout!', 'google-analytics-dashboard-for-wp' ),
847
 
848
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:148
849
  __( 'See all features', 'google-analytics-dashboard-for-wp' ),
850
 
851
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:135
852
  __( 'Setup Wizard', 'google-analytics-dashboard-for-wp' ),
853
 
854
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:136
855
  __( 'Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks).', 'google-analytics-dashboard-for-wp' ),
856
 
857
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:137
858
  __( 'Relaunch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
859
 
860
  // Reference: src/modules/addons/exactmetrics-addons-Lite.vue:65
879
  // Reference: src/modules/addons/exactmetrics-addons-Lite.vue:96
880
  __( 'Refreshing Addons', 'google-analytics-dashboard-for-wp' ),
881
 
882
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:68
883
  __( 'Get ExactMetrics Pro Today and Unlock all the Powerful Features', 'google-analytics-dashboard-for-wp' ),
884
 
885
  // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:117
958
  __( 'Overview Reports for the last 30 days.', 'google-analytics-dashboard-for-wp' ),
959
 
960
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:124
 
961
  __( 'Advanced Reports', 'google-analytics-dashboard-for-wp' ),
962
 
963
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:125
987
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:144
988
  __( 'View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more', 'google-analytics-dashboard-for-wp' ),
989
 
990
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:79
991
  __( 'Headline Analyzer', 'google-analytics-dashboard-for-wp' ),
992
 
993
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:156
1014
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:171
1015
  __( 'Display Popular Posts based on your actual traffic data from Google Analytics and choose from over 20 advanced themes. Display Popular WooCommerce products using widgets or Gutenberg blocks.', 'google-analytics-dashboard-for-wp' ),
1016
 
1017
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:178
1018
  // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:112
1019
  __( 'Not Available', 'google-analytics-dashboard-for-wp' ),
1020
 
1048
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:69
1049
  __( 'Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout.', 'google-analytics-dashboard-for-wp' ),
1050
 
1051
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:70
1052
  // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:65
1053
  __( 'Upgrade to Pro', 'google-analytics-dashboard-for-wp' ),
1054
 
1110
  /* Translators: Error status and error text. */
1111
  __( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1112
 
1113
+ // Reference: src/modules/auth/api/index.js:129
 
1114
  __( 'You appear to be offline.', 'google-analytics-dashboard-for-wp' ),
1115
 
1116
  // Reference: src/modules/auth/api/index.js:232
1233
  /* Translators: Error status and error text. */
1234
  __( 'Can\'t validate the license. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1235
 
1236
+ // Reference: src/modules/settings/components/input/SettingsInputNumber.vue:63
1237
  __( 'Reset to default', 'google-analytics-dashboard-for-wp' ),
1238
 
1239
  // Reference: src/modules/settings/components/input/SettingsInputText.vue:57
1243
  __( 'Check out the newly added classic mode', 'google-analytics-dashboard-for-wp' ),
1244
 
1245
  // Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewDatePicker-Lite.vue:52
1246
+ // Reference: src/modules/widget/components/settings/WidgetSettingsIntervalUpsell.vue:28
1247
  /* Translators: Placeholder adds a line break. */
1248
  __( 'You can customize your %sdate range only in the PRO version.', 'google-analytics-dashboard-for-wp' ),
1249
 
1276
  // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:70
1277
  __( 'Remove row', 'google-analytics-dashboard-for-wp' ),
1278
 
1279
+ // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:61
 
1280
  __( 'Sessions', 'google-analytics-dashboard-for-wp' ),
1281
 
1282
  // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:105
1283
  /* Translators: Line break. */
1284
  __( 'Unique %s Sessions', 'google-analytics-dashboard-for-wp' ),
1285
 
1286
+ // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:62
 
1287
  __( 'Pageviews', 'google-analytics-dashboard-for-wp' ),
1288
 
1289
  // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:108
1291
  __( 'Unique %s Pageviews', 'google-analytics-dashboard-for-wp' ),
1292
 
1293
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:303
 
1294
  __( 'A session is the browsing session of a single user to your site.', 'google-analytics-dashboard-for-wp' ),
1295
 
1296
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:304
 
1297
  __( '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' ),
1298
 
1299
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:305
 
1300
  __( 'Total duration of all sessions (in seconds) / number of sessions.', 'google-analytics-dashboard-for-wp' ),
1301
 
1302
  // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:112
1303
  __( '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' ),
1304
 
1305
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:307
 
1306
  __( 'The number of distinct tracked users', 'google-analytics-dashboard-for-wp' ),
1307
 
1308
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:291
 
1309
  __( 'Avg. Session Duration', 'google-analytics-dashboard-for-wp' ),
1310
 
1311
+ // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:64
 
1312
  __( 'Bounce Rate', 'google-analytics-dashboard-for-wp' ),
1313
 
1314
+ // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:65
 
1315
  __( 'Total Users', 'google-analytics-dashboard-for-wp' ),
1316
 
1317
  // Reference: src/modules/settings/components/input/SettingsInputSelect.vue:68
1350
  /* Translators: add link to blog. */
1351
  __( 'To comply with Google\'s API policies we\'ve had to remove the real time report from the lite version. You can read about this decision and why it was made in %1$sthis blog post%2$s. To access the real time report in the WordPress backend, you will need to upgrade to Pro.', 'google-analytics-dashboard-for-wp' ),
1352
 
1353
+ // Reference: src/modules/reports/components/reports/exactmetrics-SiteSpeed-Lite.vue:42
1354
  __( 'Here\'s what you get:', 'google-analytics-dashboard-for-wp' ),
1355
 
1356
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:46
1371
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:66
1372
  __( 'See Where Your Visitors are Connecting From (country & city)', 'google-analytics-dashboard-for-wp' ),
1373
 
1374
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:234
1375
  __( 'Forms Report', 'google-analytics-dashboard-for-wp' ),
1376
 
1377
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:44
1545
  /* Translators: Error status and error text. */
1546
  __( 'Can\'t verify credentials. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1547
 
1548
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:311
1549
  __( 'Still Calculating...', 'google-analytics-dashboard-for-wp' ),
1550
 
1551
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:257
1552
  __( 'Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year.', 'google-analytics-dashboard-for-wp' ),
1553
 
1554
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:312
1555
  __( 'Back to Overview Report', 'google-analytics-dashboard-for-wp' ),
1556
 
1557
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:259
1560
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:261
1561
  __( 'See how your website performed this year and find tips along the way to help grow even more in 2021!', 'google-analytics-dashboard-for-wp' ),
1562
 
1563
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:313
1564
  __( 'Audience', 'google-analytics-dashboard-for-wp' ),
1565
 
1566
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:314
1567
  __( 'Congrats', 'google-analytics-dashboard-for-wp' ),
1568
 
1569
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:315
1570
  __( 'Your website was quite popular this year! ', 'google-analytics-dashboard-for-wp' ),
1571
 
1572
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:316
1573
  __( 'You had ', 'google-analytics-dashboard-for-wp' ),
1574
 
1575
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:317
1576
  __( ' visitors!', 'google-analytics-dashboard-for-wp' ),
1577
 
1578
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:318
1579
  __( ' visitors', 'google-analytics-dashboard-for-wp' ),
1580
 
1581
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:319
1582
  __( 'Total Visitors', 'google-analytics-dashboard-for-wp' ),
1583
 
1584
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:320
1585
  __( 'Total Sessions', 'google-analytics-dashboard-for-wp' ),
1586
 
1587
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:321
1588
  __( 'Visitors by Month', 'google-analytics-dashboard-for-wp' ),
1589
 
1590
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:271
1593
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:272
1594
  __( 'A Tip for 2021', 'google-analytics-dashboard-for-wp' ),
1595
 
1596
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:86
1597
  __( 'Demographics', 'google-analytics-dashboard-for-wp' ),
1598
 
1599
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:323
1617
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:329
1618
  __( 'Male', 'google-analytics-dashboard-for-wp' ),
1619
 
1620
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:331
1621
  __( 'Average Age', 'google-analytics-dashboard-for-wp' ),
1622
 
1623
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:113
1624
  __( 'Behavior', 'google-analytics-dashboard-for-wp' ),
1625
 
1626
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:333
1627
  __( 'Your Top 5 Pages', 'google-analytics-dashboard-for-wp' ),
1628
 
1629
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:335
1630
  __( 'Time Spent on Site', 'google-analytics-dashboard-for-wp' ),
1631
 
1632
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:336
1633
  __( 'minutes', 'google-analytics-dashboard-for-wp' ),
1634
 
1635
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:337
1636
  __( 'Device Type', 'google-analytics-dashboard-for-wp' ),
1637
 
1638
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:288
1680
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:305
1681
  __( 'Here\'s to an amazing 2021!', 'google-analytics-dashboard-for-wp' ),
1682
 
1683
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:354
1684
  __( 'Enjoying ExactMetrics', 'google-analytics-dashboard-for-wp' ),
1685
 
1686
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:355
1687
  __( 'Leave a five star review!', 'google-analytics-dashboard-for-wp' ),
1688
 
1689
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:356
1690
  __( 'Syed Balkhi', 'google-analytics-dashboard-for-wp' ),
1691
 
1692
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:357
1693
  __( 'Chris Christoff', 'google-analytics-dashboard-for-wp' ),
1694
 
1695
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:358
1696
  __( 'Write Review', 'google-analytics-dashboard-for-wp' ),
1697
 
1698
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:359
1699
  __( 'Did you know over 10 million websites use our plugins?', 'google-analytics-dashboard-for-wp' ),
1700
 
1701
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:312
1702
  __( 'Try our other popular WordPress plugins to grow your website in 2021.', 'google-analytics-dashboard-for-wp' ),
1703
 
1704
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:360
1705
  __( 'Join our Communities!', 'google-analytics-dashboard-for-wp' ),
1706
 
1707
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:314
1708
  __( 'Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level.', 'google-analytics-dashboard-for-wp' ),
1709
 
1710
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:361
1711
  __( 'Facebook Group', 'google-analytics-dashboard-for-wp' ),
1712
 
1713
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:362
1714
  __( 'Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group.', 'google-analytics-dashboard-for-wp' ),
1715
 
1716
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:363
1717
  __( 'Join Now...It’s Free!', 'google-analytics-dashboard-for-wp' ),
1718
 
1719
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:364
1720
  __( 'WordPress Tutorials by WPBeginner', 'google-analytics-dashboard-for-wp' ),
1721
 
1722
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:365
1723
  __( 'WPBeginner is the largest free WordPress resource site for beginners and non-techy users.', 'google-analytics-dashboard-for-wp' ),
1724
 
1725
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:366
1726
  __( 'Visit WPBeginner', 'google-analytics-dashboard-for-wp' ),
1727
 
1728
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:367
1729
  __( 'Follow Us!', 'google-analytics-dashboard-for-wp' ),
1730
 
1731
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:368
1732
  __( 'Follow ExactMetrics on social media to stay up to date with latest updates, trends, and tutorials on how to make the most out of analytics.', 'google-analytics-dashboard-for-wp' ),
1733
 
1734
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:323
1735
  __( 'Copyright ExactMetrics, 2021', 'google-analytics-dashboard-for-wp' ),
1736
 
1737
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:369
1738
  __( 'Upgrade to ExactMetrics Pro to Unlock Additional Actionable Insights', 'google-analytics-dashboard-for-wp' ),
1739
 
1740
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:160
1741
  __( 'Upgrade to ExactMetrics Pro', 'google-analytics-dashboard-for-wp' ),
1742
 
1743
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:373
1744
  __( 'January', 'google-analytics-dashboard-for-wp' ),
1745
 
1746
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:374
1747
  __( 'February', 'google-analytics-dashboard-for-wp' ),
1748
 
1749
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:375
1750
  __( 'March', 'google-analytics-dashboard-for-wp' ),
1751
 
1752
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:376
1753
  __( 'April', 'google-analytics-dashboard-for-wp' ),
1754
 
1755
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:377
1756
  __( 'May', 'google-analytics-dashboard-for-wp' ),
1757
 
1758
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:378
1759
  __( 'June', 'google-analytics-dashboard-for-wp' ),
1760
 
1761
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:379
1762
  __( 'July', 'google-analytics-dashboard-for-wp' ),
1763
 
1764
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:380
1765
  __( 'August', 'google-analytics-dashboard-for-wp' ),
1766
 
1767
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:381
1768
  __( 'September', 'google-analytics-dashboard-for-wp' ),
1769
 
1770
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:382
1771
  __( 'October', 'google-analytics-dashboard-for-wp' ),
1772
 
1773
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:383
1774
  __( 'November', 'google-analytics-dashboard-for-wp' ),
1775
 
1776
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:384
1777
  __( 'December', 'google-analytics-dashboard-for-wp' ),
1778
 
1779
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:432
1780
  /* Translators: Number of visitors. */
1781
  __( 'Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>', 'google-analytics-dashboard-for-wp' ),
1782
 
1783
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:435
1784
  __( 'See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success.', 'google-analytics-dashboard-for-wp' ),
1785
 
1786
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:454
1787
  /* Translators: Number of visitors. */
1788
  __( 'Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries.', 'google-analytics-dashboard-for-wp' ),
1789
 
1790
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:461
1791
  /* Translators: Number of visitors. */
1792
  __( '%s Visitors', 'google-analytics-dashboard-for-wp' ),
1793
 
1794
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:479
1795
  /* Translators: Percent and Number of visitors. */
1796
  __( '%1$s&#37 of your visitors were %2$s', 'google-analytics-dashboard-for-wp' ),
1797
 
1798
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:486
1799
  /* Translators: Number of visitors and their age. */
1800
  __( '%1$s&#37 of your visitors were between the ages of %2$s', 'google-analytics-dashboard-for-wp' ),
1801
 
1802
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:495
1803
  __( 'Your <strong>%1$s</strong> visitors viewed a total of <strong>%2$s</strong> pages. <span class=\'average-page-per-user\' style=\'font-size: 20px;margin-top:25px;display:block;font-family:Lato\'>That\'s an average of %3$s pages for each visitor!</span>', 'google-analytics-dashboard-for-wp' ),
1804
 
1805
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:456
1806
  /* Translators: Number of minutes spent on site. */
1807
  __( 'Each visitor spent an average of %s minutes on your website in 2020.', 'google-analytics-dashboard-for-wp' ),
1808
 
1809
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:541
1810
  /* Translators: Name of device type. */
1811
  __( 'Most of your visitors viewed your website from their <strong>%s</strong> device.', 'google-analytics-dashboard-for-wp' ),
1812
 
1813
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:545
1814
  /* Translators: Number of visitors and device percentage. */
1815
  __( '%1$s&#37 of your visitors were on a %2$s device.', 'google-analytics-dashboard-for-wp' ),
1816
 
1865
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:94
1866
  __( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-dashboard-for-wp' ),
1867
 
1868
+ // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:95
1869
  __( 'Dual Tracking Profile', 'google-analytics-dashboard-for-wp' ),
1870
 
1871
+ // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:97
1872
  __( 'The dual tracking feature allows you to continue tracking this site into an existing GAv3 property so you can continue to use the GA reports you are used to already. Learn more about this feature %1$shere%2$s.', 'google-analytics-dashboard-for-wp' ),
1873
 
1874
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:94
1875
  __( 'Your Universal Analytics code should look like UA-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-dashboard-for-wp' ),
1876
 
1877
+ // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:103
1878
  __( 'The dual tracking feature allows you to begin tracking this site into a GAv4 property to take advantage of the new GAv4 analysis tools. Learn more about this feature %1$shere%2$s.', 'google-analytics-dashboard-for-wp' ),
1879
 
1880
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:96
1881
  __( 'Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-dashboard-for-wp' ),
1882
 
1883
+ // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:108
1884
  __( 'Measurement Protocol API Secret', 'google-analytics-dashboard-for-wp' ),
1885
 
1886
+ // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:110
1887
  __( 'The Measurement Protocol API secret allows your site to send tracking data to Google Analytics. To retrieve your Measurement Protocol API Secret, follow %1$sthis guide%2$s.', 'google-analytics-dashboard-for-wp' ),
1888
 
1889
  // Reference: src/modules/widget/components/settings/exactmetrics-WidgetSettingsCompact.vue:19
2008
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:128
2009
  __( 'Choose where in the post body the widget will be placed.', 'google-analytics-dashboard-for-wp' ),
2010
 
2011
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:135
2012
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:137
2013
  __( 'Customize Design', 'google-analytics-dashboard-for-wp' ),
2014
 
2015
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:137
2148
  __( 'Unlock PRO Features Now', 'google-analytics-dashboard-for-wp' ),
2149
 
2150
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:40
2151
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:127
2152
  __( 'Paste your license key here', 'google-analytics-dashboard-for-wp' ),
2153
 
2154
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:41
2155
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:129
2156
  __( 'Verify', 'google-analytics-dashboard-for-wp' ),
2157
 
2158
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:43
2160
  __( 'Already purchased? Simply enter your license key below to connect with ExactMetrics PRO! %1$sRetrieve your license key%2$s.', 'google-analytics-dashboard-for-wp' ),
2161
 
2162
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:73
2163
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:186
2164
  __( 'There was an error unlocking ExactMetrics PRO please try again or install manually.', 'google-analytics-dashboard-for-wp' ),
2165
 
2166
  // Reference: src/modules/seo/components/yoast.vue:166
2170
  __( 'Automatically migrate all of your SEO settings with just 1 click!', 'google-analytics-dashboard-for-wp' ),
2171
 
2172
  // Reference: src/modules/seo/components/aioseo.vue:165
 
2173
  __( '1,938', 'google-analytics-dashboard-for-wp' ),
2174
 
2175
  // Reference: src/modules/seo/components/aioseo.vue:166
 
2176
  __( '2+ Million Active Installs', 'google-analytics-dashboard-for-wp' ),
2177
 
2178
  // Reference: src/modules/seo/components/yoast.vue:172
2182
  __( 'Set up the proper SEO foundations in less than 10 minutes.', 'google-analytics-dashboard-for-wp' ),
2183
 
2184
  // Reference: src/modules/seo/components/aioseo.vue:175
 
2185
  __( 'SEO Audit Checklist', 'google-analytics-dashboard-for-wp' ),
2186
 
2187
  // Reference: src/modules/seo/components/aioseo.vue:176
 
2188
  __( 'Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic.', 'google-analytics-dashboard-for-wp' ),
2189
 
2190
  // Reference: src/modules/seo/components/yoast.vue:176
2197
  __( 'Get AIOSEO for WordPress', 'google-analytics-dashboard-for-wp' ),
2198
 
2199
  // Reference: src/modules/seo/components/aioseo.vue:190
 
2200
  __( 'Get the #1 Most Powerful WordPress SEO Plugin Today', 'google-analytics-dashboard-for-wp' ),
2201
 
2202
  // Reference: src/modules/seo/components/aioseo.vue:191
 
2203
  __( 'Try it out today, for free.', 'google-analytics-dashboard-for-wp' ),
2204
 
2205
  // Reference: src/modules/seo/components/aioseo.vue:194
 
2206
  __( 'Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings.', 'google-analytics-dashboard-for-wp' ),
2207
 
2208
  // Reference: src/modules/seo/components/aioseo.vue:195
 
2209
  __( 'Activate and Install the Plugin with just one click!', 'google-analytics-dashboard-for-wp' ),
2210
 
2211
  // Reference: src/modules/seo/components/yoast.vue:251
2212
  __( 'Installing AIOSEO...', 'google-analytics-dashboard-for-wp' ),
2213
 
2214
  // Reference: src/modules/seo/components/aioseo.vue:250
 
2215
  __( 'Congrats! All-in-One SEO Installed.', 'google-analytics-dashboard-for-wp' ),
2216
 
2217
  // Reference: src/modules/seo/components/yoast.vue:277
2218
  __( 'Switch to AIOSEO', 'google-analytics-dashboard-for-wp' ),
2219
 
2220
  // Reference: src/modules/seo/components/aioseo.vue:271
 
2221
  __( 'Installation Failed. Please refresh and try again.', 'google-analytics-dashboard-for-wp' ),
2222
 
2223
  // Reference: src/modules/seo/components/aioseo.vue:278
 
2224
  __( 'Activating AIOSEO...', 'google-analytics-dashboard-for-wp' ),
2225
 
2226
  // Reference: src/modules/seo/components/aioseo.vue:285
 
2227
  __( 'Activate AIOSEO', 'google-analytics-dashboard-for-wp' ),
2228
 
2229
  // Reference: src/modules/seo/components/aioseo.vue:289
 
2230
  __( 'Activation Failed. Please refresh and try again.', 'google-analytics-dashboard-for-wp' ),
2231
 
2232
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:58
2242
  __( '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' ),
2243
 
2244
  // Reference: src/modules/reports/components/exactmetrics-ReportsPagination.vue:33
2245
+ // Reference: src/modules/reports/components/reports-year-in-review/ReportYearInReviewListBox.vue:47
2246
  __( 'Show', 'google-analytics-dashboard-for-wp' ),
2247
 
2248
  // Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:103
2565
  __( 'See Your Conversion Rate to Improve Funnel', 'google-analytics-dashboard-for-wp' ),
2566
 
2567
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:48
2568
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:68
2569
  __( 'See The Number of Transactions and Make Data-Driven Decisions', 'google-analytics-dashboard-for-wp' ),
2570
 
2571
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:52
2572
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:72
2573
  __( 'See The Total Revenue to Track Growth', 'google-analytics-dashboard-for-wp' ),
2574
 
2575
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:56
2576
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:76
2577
  __( 'See Average Order Value to Find Offer Opportunities', 'google-analytics-dashboard-for-wp' ),
2578
 
2579
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:60
2580
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:80
2581
  __( 'See Your Top Products to See Individual Performance', 'google-analytics-dashboard-for-wp' ),
2582
 
2583
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:84
2584
  __( 'See your Top Conversion Sources and Focus on what\'s Working', 'google-analytics-dashboard-for-wp' ),
2585
 
2586
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:68
2587
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:88
2588
  __( 'See The Time it Takes for Customers to Purchase', 'google-analytics-dashboard-for-wp' ),
2589
 
2590
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:72
2591
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:92
2592
  __( 'See How Many Sessions are Needed for a Purchase', 'google-analytics-dashboard-for-wp' ),
2593
 
2594
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:96
2803
  // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:45
2804
  __( 'Better Support', 'google-analytics-dashboard-for-wp' ),
2805
 
2806
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:51
2807
  __( 'Continue', 'google-analytics-dashboard-for-wp' ),
2808
 
2809
  // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:48
2945
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:119
2946
  __( 'Close', 'google-analytics-dashboard-for-wp' ),
2947
 
2948
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:55
2949
  __( 'Add Top 5 Posts from Google Analytics', 'google-analytics-dashboard-for-wp' ),
2950
 
2951
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:56
2958
  /* Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc. */
2959
  __( 'Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics.', 'google-analytics-dashboard-for-wp' ),
2960
 
2961
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:60
2962
  __( 'Automated + Curated', 'google-analytics-dashboard-for-wp' ),
2963
 
2964
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:62
3012
  // Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:92
3013
  __( 'Can\'t load posts.', 'google-analytics-dashboard-for-wp' ),
3014
 
3015
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:128
3016
  __( 'Sartorial taxidermy venmo you probably haven\'t heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu.', 'google-analytics-dashboard-for-wp' ),
3017
 
3018
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:129
3019
  __( 'Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan', 'google-analytics-dashboard-for-wp' ),
3020
 
3021
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:130
3022
  __( 'Color', 'google-analytics-dashboard-for-wp' ),
3023
 
3024
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:131
3025
  __( 'Size', 'google-analytics-dashboard-for-wp' ),
3026
 
3027
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:132
3028
  __( 'Title', 'google-analytics-dashboard-for-wp' ),
3029
 
3030
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:133
3031
  __( 'Label', 'google-analytics-dashboard-for-wp' ),
3032
 
3033
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:134
3034
  __( 'Background', 'google-analytics-dashboard-for-wp' ),
3035
 
3036
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:135
3037
  __( 'Border', 'google-analytics-dashboard-for-wp' ),
3038
 
3039
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:136
3040
  __( 'Icon', 'google-analytics-dashboard-for-wp' ),
3041
 
3042
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:92
3122
  /* Translators: Make text green. */
3123
  __( 'Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s', 'google-analytics-dashboard-for-wp' ),
3124
 
3125
+ // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputEmailSummaries-Lite.vue:16
3126
  __( 'Upgrade', 'google-analytics-dashboard-for-wp' ),
3127
 
3128
  // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputPdfReports-Lite.vue:17
3215
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:82
3216
  __( 'There are two ways to manual include the widget in your posts.', 'google-analytics-dashboard-for-wp' ),
3217
 
3218
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:129
3219
  __( 'Using the Gutenberg Block', 'google-analytics-dashboard-for-wp' ),
3220
 
3221
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:84
3230
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:87
3231
  __( '%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg', 'google-analytics-dashboard-for-wp' ),
3232
 
3233
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:137
3234
  __( '%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page.', 'google-analytics-dashboard-for-wp' ),
3235
 
3236
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:90
3237
  __( '%1$sStep 2%2$s - Search for “Inline Popular Posts by ExactMetrics”.', 'google-analytics-dashboard-for-wp' ),
3238
 
3239
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:139
3240
  __( '%1$sStep 3%2$s - Style the widget using the Block Settings sidebar.', 'google-analytics-dashboard-for-wp' ),
3241
 
3242
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:93
3243
  __( 'Shortcode', 'google-analytics-dashboard-for-wp' ),
3244
 
3245
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:147
3246
  __( 'Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin.', 'google-analytics-dashboard-for-wp' ),
3247
 
3248
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:148
3249
  __( 'Copy Shortcode', 'google-analytics-dashboard-for-wp' ),
3250
 
3251
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:96
3312
  /* Translators: The number of results. */
3313
  __( '%s results', 'google-analytics-dashboard-for-wp' ),
3314
 
3315
+ // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:53
3316
  __( 'Media', 'google-analytics-dashboard-for-wp' ),
3317
 
3318
  // Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputMedia-Lite.vue:26
3319
  __( 'Track how your users interact with videos on your website. Upgrade to ExactMetrics Pro.', 'google-analytics-dashboard-for-wp' ),
3320
 
3321
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:28
3322
  __( '2021 Year in Review', 'google-analytics-dashboard-for-wp' ),
3323
 
3324
  // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:100
3325
  __( 'Media- Track how your users interact with videos on your website.', 'google-analytics-dashboard-for-wp' ),
3326
 
3327
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:25
3328
  __( 'Your 2021 Year in Review is still calculating. Please check back later to see how your website performed last year.', 'google-analytics-dashboard-for-wp' ),
3329
 
3330
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:27
3331
  __( 'Your 2021 Analytics Report', 'google-analytics-dashboard-for-wp' ),
3332
 
3333
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:29
3334
  __( 'See how your website performed this year and find tips along the way to help grow even more in 2022!', 'google-analytics-dashboard-for-wp' ),
3335
 
3336
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:39
3337
  __( 'January 1, 2021 - December 31, 2021', 'google-analytics-dashboard-for-wp' ),
3338
 
3339
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:40
3340
  __( 'A Tip for 2022', 'google-analytics-dashboard-for-wp' ),
3341
 
3342
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:56
3343
  __( 'A Tip For 2022', 'google-analytics-dashboard-for-wp' ),
3344
 
3345
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:73
3346
  __( 'Here\'s to an amazing 2022!', 'google-analytics-dashboard-for-wp' ),
3347
 
3348
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:80
3349
  __( 'Try our other popular WordPress plugins to grow your website in 2022.', 'google-analytics-dashboard-for-wp' ),
3350
 
3351
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:82
3352
  __( 'Become a WordPress expert in 2022. Join our amazing communities and take your website to the next level.', 'google-analytics-dashboard-for-wp' ),
3353
 
3354
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:91
3355
  __( 'Copyright ExactMetrics, 2022', 'google-analytics-dashboard-for-wp' ),
3356
 
3357
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:519
3358
  /* Translators: Number of minutes spent on site. */
3359
  __( 'Each visitor spent an average of %s minutes on your website in 2021.', 'google-analytics-dashboard-for-wp' ),
3360
 
3392
  // Reference: src/modules/growth-tools/exactmetrics-growth-tools.vue:146
3393
  __( 'The world’s most popular WordPress form builder, trusted by over 5 million websites. Easily build contact forms, payment forms, and more.', 'google-analytics-dashboard-for-wp' ),
3394
 
 
3395
  // Reference: src/modules/wizard-onboarding/components/OnboardingAddon-Lite.vue:42
3396
  __( 'OptinMonster', 'google-analytics-dashboard-for-wp' ),
3397
 
3518
  // Reference: src/modules/growth-tools/components/GrowthNavigation.vue:21
3519
  __( 'Guides & Resources', 'google-analytics-dashboard-for-wp' ),
3520
 
3521
+ // Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputMedia-Lite.vue:25
3522
  __( 'Media Tracking', 'google-analytics-dashboard-for-wp' ),
3523
 
3524
  // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:34
3640
  // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:53
3641
  __( 'The following plugins will be installed: ', 'google-analytics-dashboard-for-wp' ),
3642
 
3643
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:100
3644
  __( 'Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-dashboard-for-wp' ),
3645
 
3646
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:86
3647
  __( 'Manually enter your GA4 Measurement ID', 'google-analytics-dashboard-for-wp' ),
3648
 
3649
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:87
3650
  __( 'Warning: If you use a manual GA4 Measurement ID, you won\'t be able to use any of the reporting and some of the tracking features. Your UA code should look like G-XXXXXXXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-dashboard-for-wp' ),
3651
 
3652
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:107
4062
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:107
4063
  __( 'Your Measurement ID should look like G-XXXXXXXXXX or GT-XXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-dashboard-for-wp' ),
4064
 
4065
+ // Reference: src/modules/reports/routes/exactmetrics-routes.js:89
 
4066
  __( 'Media Report', 'google-analytics-dashboard-for-wp' ),
4067
 
4068
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportMedia-Lite.vue:36
4078
  __( 'Works with YouTube, Vimeo, and HTML 5 Videos', 'google-analytics-dashboard-for-wp' ),
4079
 
4080
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportMedia-Lite.vue:52
4081
+ __( 'Compare stats over time', 'google-analytics-dashboard-for-wp' ),
4082
+
4083
+ // Reference: src/modules/reports/routes/exactmetrics-routes.js:101
4084
+ __( 'Year in Review', 'google-analytics-dashboard-for-wp' ),
4085
+
4086
+ // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:65
4087
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:405
4088
+ __( '%s Year in Review', 'google-analytics-dashboard-for-wp' ),
4089
+
4090
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:403
4091
+ __( 'Your %s Year in Review is still calculating. Please check back later to see how your website performed last year.', 'google-analytics-dashboard-for-wp' ),
4092
+
4093
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:404
4094
+ __( 'Your %s Analytics Report', 'google-analytics-dashboard-for-wp' ),
4095
+
4096
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:406
4097
+ __( 'January 1, %s - December 31, %s', 'google-analytics-dashboard-for-wp' ),
4098
+
4099
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:408
4100
+ __( 'See how your website performed this year and find tips along the way to help grow even more in %s!', 'google-analytics-dashboard-for-wp' ),
4101
+
4102
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:409
4103
+ __( 'A Tip for %s', 'google-analytics-dashboard-for-wp' ),
4104
+
4105
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:410
4106
+ __( 'A Tip For %s', 'google-analytics-dashboard-for-wp' ),
4107
+
4108
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:411
4109
+ __( 'Here\'s to an amazing %s!', 'google-analytics-dashboard-for-wp' ),
4110
+
4111
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:412
4112
+ __( 'Try our other popular WordPress plugins to grow your website in %s.', 'google-analytics-dashboard-for-wp' ),
4113
+
4114
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:413
4115
+ __( 'Become a WordPress expert in %s. Join our amazing communities and take your website to the next level.', 'google-analytics-dashboard-for-wp' ),
4116
+
4117
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:414
4118
+ __( 'Copyright ExactMetrics, %s', 'google-analytics-dashboard-for-wp' ),
4119
+
4120
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:416
4121
+ __( 'Year In Review %s!', 'google-analytics-dashboard-for-wp' ),
4122
+
4123
+ // Reference: src/modules/reports/components/exactmetrics-YearInReviewReportsPdfExport.vue:115
4124
+ __( 'Generating PDF Report', 'google-analytics-dashboard-for-wp' ),
4125
+
4126
+ // Reference: src/modules/reports/components/exactmetrics-YearInReviewReportsPdfExport.vue:159
4127
+ __( 'Download Failed', 'google-analytics-dashboard-for-wp' ),
4128
+
4129
+ // Reference: src/modules/reports/components/exactmetrics-YearInReviewReportsPdfExport.vue:181
4130
+ __( 'Downloaded PDF report successfully!', 'google-analytics-dashboard-for-wp' ),
4131
+
4132
+ // Reference: src/modules/reports/components/exactmetrics-YearInReviewReportsPdfExport.vue:23
4133
+ __( 'Download as PDF', 'google-analytics-dashboard-for-wp' ),
4134
+
4135
+ // Reference: src/modules/reports/components/exactmetrics-YearInReviewReportsPdfExport.vue:104
4136
+ __( 'Download Failed, no report found!', 'google-analytics-dashboard-for-wp' ),
4137
+
4138
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:330
4139
+ __( 'Unknown', 'google-analytics-dashboard-for-wp' ),
4140
+
4141
+ // Reference: src/modules/reports/components/reports-year-in-review/ReportYearInReviewListBox.vue:48
4142
+ __( 'No records found.', 'google-analytics-dashboard-for-wp' )
4143
  );
4144
  /* THIS IS THE END OF THE GENERATED FILE */
lite/assets/vue/css/reports.css CHANGED
@@ -1,3 +1,3 @@
1
  /*!
2
  * Generated with CSS Flag Sprite generator (https://www.flag-sprites.com/)
3
- */.exactmetrics-flag{display:inline-block;width:32px;height:32px;background:url(../img/flags.png) no-repeat}.exactmetrics-flag.exactmetrics-flag-ad{background-position:-32px 0}.exactmetrics-flag.exactmetrics-flag-ae{background-position:-64px 0}.exactmetrics-flag.exactmetrics-flag-af{background-position:-96px 0}.exactmetrics-flag.exactmetrics-flag-ag{background-position:-128px 0}.exactmetrics-flag.exactmetrics-flag-ai{background-position:-160px 0}.exactmetrics-flag.exactmetrics-flag-al{background-position:-192px 0}.exactmetrics-flag.exactmetrics-flag-am{background-position:-224px 0}.exactmetrics-flag.exactmetrics-flag-an{background-position:-256px 0}.exactmetrics-flag.exactmetrics-flag-ao{background-position:-288px 0}.exactmetrics-flag.exactmetrics-flag-ar{background-position:-320px 0}.exactmetrics-flag.exactmetrics-flag-as{background-position:-352px 0}.exactmetrics-flag.exactmetrics-flag-at{background-position:-384px 0}.exactmetrics-flag.exactmetrics-flag-au{background-position:-416px 0}.exactmetrics-flag.exactmetrics-flag-aw{background-position:-448px 0}.exactmetrics-flag.exactmetrics-flag-ax{background-position:-480px 0}.exactmetrics-flag.exactmetrics-flag-az{background-position:0 -32px}.exactmetrics-flag.exactmetrics-flag-ba{background-position:-32px -32px}.exactmetrics-flag.exactmetrics-flag-bb{background-position:-64px -32px}.exactmetrics-flag.exactmetrics-flag-bd{background-position:-96px -32px}.exactmetrics-flag.exactmetrics-flag-be{background-position:-128px -32px}.exactmetrics-flag.exactmetrics-flag-bf{background-position:-160px -32px}.exactmetrics-flag.exactmetrics-flag-bg{background-position:-192px -32px}.exactmetrics-flag.exactmetrics-flag-bh{background-position:-224px -32px}.exactmetrics-flag.exactmetrics-flag-bi{background-position:-256px -32px}.exactmetrics-flag.exactmetrics-flag-bj{background-position:-288px -32px}.exactmetrics-flag.exactmetrics-flag-bl{background-position:-320px -32px}.exactmetrics-flag.exactmetrics-flag-bm{background-position:-352px -32px}.exactmetrics-flag.exactmetrics-flag-bn{background-position:-384px -32px}.exactmetrics-flag.exactmetrics-flag-bo{background-position:-416px -32px}.exactmetrics-flag.exactmetrics-flag-br{background-position:-448px -32px}.exactmetrics-flag.exactmetrics-flag-bs{background-position:-480px -32px}.exactmetrics-flag.exactmetrics-flag-bt{background-position:0 -64px}.exactmetrics-flag.exactmetrics-flag-bw{background-position:-32px -64px}.exactmetrics-flag.exactmetrics-flag-by{background-position:-64px -64px}.exactmetrics-flag.exactmetrics-flag-bz{background-position:-96px -64px}.exactmetrics-flag.exactmetrics-flag-ca{background-position:-128px -64px}.exactmetrics-flag.exactmetrics-flag-cd{background-position:-160px -64px}.exactmetrics-flag.exactmetrics-flag-cf{background-position:-192px -64px}.exactmetrics-flag.exactmetrics-flag-cg{background-position:-224px -64px}.exactmetrics-flag.exactmetrics-flag-ch{background-position:-256px -64px}.exactmetrics-flag.exactmetrics-flag-ci{background-position:-288px -64px}.exactmetrics-flag.exactmetrics-flag-ck{background-position:-320px -64px}.exactmetrics-flag.exactmetrics-flag-cl{background-position:-352px -64px}.exactmetrics-flag.exactmetrics-flag-cm{background-position:-384px -64px}.exactmetrics-flag.exactmetrics-flag-cn{background-position:-416px -64px}.exactmetrics-flag.exactmetrics-flag-co{background-position:-448px -64px}.exactmetrics-flag.exactmetrics-flag-cr{background-position:-480px -64px}.exactmetrics-flag.exactmetrics-flag-cu{background-position:0 -96px}.exactmetrics-flag.exactmetrics-flag-cv{background-position:-32px -96px}.exactmetrics-flag.exactmetrics-flag-cw{background-position:-64px -96px}.exactmetrics-flag.exactmetrics-flag-cy{background-position:-96px -96px}.exactmetrics-flag.exactmetrics-flag-cz{background-position:-128px -96px}.exactmetrics-flag.exactmetrics-flag-de{background-position:-160px -96px}.exactmetrics-flag.exactmetrics-flag-dj{background-position:-192px -96px}.exactmetrics-flag.exactmetrics-flag-dk{background-position:-224px -96px}.exactmetrics-flag.exactmetrics-flag-dm{background-position:-256px -96px}.exactmetrics-flag.exactmetrics-flag-do{background-position:-288px -96px}.exactmetrics-flag.exactmetrics-flag-dz{background-position:-320px -96px}.exactmetrics-flag.exactmetrics-flag-ec{background-position:-352px -96px}.exactmetrics-flag.exactmetrics-flag-ee{background-position:-384px -96px}.exactmetrics-flag.exactmetrics-flag-eg{background-position:-416px -96px}.exactmetrics-flag.exactmetrics-flag-eh{background-position:-448px -96px}.exactmetrics-flag.exactmetrics-flag-er{background-position:-480px -96px}.exactmetrics-flag.exactmetrics-flag-es{background-position:0 -128px}.exactmetrics-flag.exactmetrics-flag-et{background-position:-32px -128px}.exactmetrics-flag.exactmetrics-flag-eu{background-position:-64px -128px}.exactmetrics-flag.exactmetrics-flag-fi{background-position:-96px -128px}.exactmetrics-flag.exactmetrics-flag-fj{background-position:-128px -128px}.exactmetrics-flag.exactmetrics-flag-fk{background-position:-160px -128px}.exactmetrics-flag.exactmetrics-flag-fm{background-position:-192px -128px}.exactmetrics-flag.exactmetrics-flag-fo{background-position:-224px -128px}.exactmetrics-flag.exactmetrics-flag-fr{background-position:-256px -128px}.exactmetrics-flag.exactmetrics-flag-ga{background-position:-288px -128px}.exactmetrics-flag.exactmetrics-flag-gb{background-position:-320px -128px}.exactmetrics-flag.exactmetrics-flag-gd{background-position:-352px -128px}.exactmetrics-flag.exactmetrics-flag-ge{background-position:-384px -128px}.exactmetrics-flag.exactmetrics-flag-gg{background-position:-416px -128px}.exactmetrics-flag.exactmetrics-flag-gh{background-position:-448px -128px}.exactmetrics-flag.exactmetrics-flag-gi{background-position:-480px -128px}.exactmetrics-flag.exactmetrics-flag-gl{background-position:0 -160px}.exactmetrics-flag.exactmetrics-flag-gm{background-position:-32px -160px}.exactmetrics-flag.exactmetrics-flag-gn{background-position:-64px -160px}.exactmetrics-flag.exactmetrics-flag-gp{background-position:-96px -160px}.exactmetrics-flag.exactmetrics-flag-gq{background-position:-128px -160px}.exactmetrics-flag.exactmetrics-flag-gr{background-position:-160px -160px}.exactmetrics-flag.exactmetrics-flag-gs{background-position:-192px -160px}.exactmetrics-flag.exactmetrics-flag-gt{background-position:-224px -160px}.exactmetrics-flag.exactmetrics-flag-gu{background-position:-256px -160px}.exactmetrics-flag.exactmetrics-flag-gw{background-position:-288px -160px}.exactmetrics-flag.exactmetrics-flag-gy{background-position:-320px -160px}.exactmetrics-flag.exactmetrics-flag-hk{background-position:-352px -160px}.exactmetrics-flag.exactmetrics-flag-hn{background-position:-384px -160px}.exactmetrics-flag.exactmetrics-flag-hr{background-position:-416px -160px}.exactmetrics-flag.exactmetrics-flag-ht{background-position:-448px -160px}.exactmetrics-flag.exactmetrics-flag-hu{background-position:-480px -160px}.exactmetrics-flag.exactmetrics-flag-ic{background-position:0 -192px}.exactmetrics-flag.exactmetrics-flag-id{background-position:-32px -192px}.exactmetrics-flag.exactmetrics-flag-ie{background-position:-64px -192px}.exactmetrics-flag.exactmetrics-flag-il{background-position:-96px -192px}.exactmetrics-flag.exactmetrics-flag-im{background-position:-128px -192px}.exactmetrics-flag.exactmetrics-flag-in{background-position:-160px -192px}.exactmetrics-flag.exactmetrics-flag-iq{background-position:-192px -192px}.exactmetrics-flag.exactmetrics-flag-ir{background-position:-224px -192px}.exactmetrics-flag.exactmetrics-flag-is{background-position:-256px -192px}.exactmetrics-flag.exactmetrics-flag-it{background-position:-288px -192px}.exactmetrics-flag.exactmetrics-flag-je{background-position:-320px -192px}.exactmetrics-flag.exactmetrics-flag-jm{background-position:-352px -192px}.exactmetrics-flag.exactmetrics-flag-jo{background-position:-384px -192px}.exactmetrics-flag.exactmetrics-flag-jp{background-position:-416px -192px}.exactmetrics-flag.exactmetrics-flag-ke{background-position:-448px -192px}.exactmetrics-flag.exactmetrics-flag-kg{background-position:-480px -192px}.exactmetrics-flag.exactmetrics-flag-kh{background-position:0 -224px}.exactmetrics-flag.exactmetrics-flag-ki{background-position:-32px -224px}.exactmetrics-flag.exactmetrics-flag-km{background-position:-64px -224px}.exactmetrics-flag.exactmetrics-flag-kn{background-position:-96px -224px}.exactmetrics-flag.exactmetrics-flag-kp{background-position:-128px -224px}.exactmetrics-flag.exactmetrics-flag-kr{background-position:-160px -224px}.exactmetrics-flag.exactmetrics-flag-kw{background-position:-192px -224px}.exactmetrics-flag.exactmetrics-flag-ky{background-position:-224px -224px}.exactmetrics-flag.exactmetrics-flag-kz{background-position:-256px -224px}.exactmetrics-flag.exactmetrics-flag-la{background-position:-288px -224px}.exactmetrics-flag.exactmetrics-flag-lb{background-position:-320px -224px}.exactmetrics-flag.exactmetrics-flag-lc{background-position:-352px -224px}.exactmetrics-flag.exactmetrics-flag-li{background-position:-384px -224px}.exactmetrics-flag.exactmetrics-flag-lk{background-position:-416px -224px}.exactmetrics-flag.exactmetrics-flag-lr{background-position:-448px -224px}.exactmetrics-flag.exactmetrics-flag-ls{background-position:-480px -224px}.exactmetrics-flag.exactmetrics-flag-lt{background-position:0 -256px}.exactmetrics-flag.exactmetrics-flag-lu{background-position:-32px -256px}.exactmetrics-flag.exactmetrics-flag-lv{background-position:-64px -256px}.exactmetrics-flag.exactmetrics-flag-ly{background-position:-96px -256px}.exactmetrics-flag.exactmetrics-flag-ma{background-position:-128px -256px}.exactmetrics-flag.exactmetrics-flag-mc{background-position:-160px -256px}.exactmetrics-flag.exactmetrics-flag-md{background-position:-192px -256px}.exactmetrics-flag.exactmetrics-flag-me{background-position:-224px -256px}.exactmetrics-flag.exactmetrics-flag-mf{background-position:-256px -256px}.exactmetrics-flag.exactmetrics-flag-mg{background-position:-288px -256px}.exactmetrics-flag.exactmetrics-flag-mh{background-position:-320px -256px}.exactmetrics-flag.exactmetrics-flag-mk{background-position:-352px -256px}.exactmetrics-flag.exactmetrics-flag-ml{background-position:-384px -256px}.exactmetrics-flag.exactmetrics-flag-mm{background-position:-416px -256px}.exactmetrics-flag.exactmetrics-flag-mn{background-position:-448px -256px}.exactmetrics-flag.exactmetrics-flag-mo{background-position:-480px -256px}.exactmetrics-flag.exactmetrics-flag-mp{background-position:0 -288px}.exactmetrics-flag.exactmetrics-flag-mq{background-position:-32px -288px}.exactmetrics-flag.exactmetrics-flag-mr{background-position:-64px -288px}.exactmetrics-flag.exactmetrics-flag-ms{background-position:-96px -288px}.exactmetrics-flag.exactmetrics-flag-mt{background-position:-128px -288px}.exactmetrics-flag.exactmetrics-flag-mu{background-position:-160px -288px}.exactmetrics-flag.exactmetrics-flag-mv{background-position:-192px -288px}.exactmetrics-flag.exactmetrics-flag-mw{background-position:-224px -288px}.exactmetrics-flag.exactmetrics-flag-mx{background-position:-256px -288px}.exactmetrics-flag.exactmetrics-flag-my{background-position:-288px -288px}.exactmetrics-flag.exactmetrics-flag-mz{background-position:-320px -288px}.exactmetrics-flag.exactmetrics-flag-na{background-position:-352px -288px}.exactmetrics-flag.exactmetrics-flag-nc{background-position:-384px -288px}.exactmetrics-flag.exactmetrics-flag-ne{background-position:-416px -288px}.exactmetrics-flag.exactmetrics-flag-nf{background-position:-448px -288px}.exactmetrics-flag.exactmetrics-flag-ng{background-position:-480px -288px}.exactmetrics-flag.exactmetrics-flag-ni{background-position:0 -320px}.exactmetrics-flag.exactmetrics-flag-nl{background-position:-32px -320px}.exactmetrics-flag.exactmetrics-flag-no{background-position:-64px -320px}.exactmetrics-flag.exactmetrics-flag-np{background-position:-96px -320px}.exactmetrics-flag.exactmetrics-flag-nr{background-position:-128px -320px}.exactmetrics-flag.exactmetrics-flag-nu{background-position:-160px -320px}.exactmetrics-flag.exactmetrics-flag-nz{background-position:-192px -320px}.exactmetrics-flag.exactmetrics-flag-om{background-position:-224px -320px}.exactmetrics-flag.exactmetrics-flag-pa{background-position:-256px -320px}.exactmetrics-flag.exactmetrics-flag-pe{background-position:-288px -320px}.exactmetrics-flag.exactmetrics-flag-pf{background-position:-320px -320px}.exactmetrics-flag.exactmetrics-flag-pg{background-position:-352px -320px}.exactmetrics-flag.exactmetrics-flag-ph{background-position:-384px -320px}.exactmetrics-flag.exactmetrics-flag-pk{background-position:-416px -320px}.exactmetrics-flag.exactmetrics-flag-pl{background-position:-448px -320px}.exactmetrics-flag.exactmetrics-flag-pn{background-position:-480px -320px}.exactmetrics-flag.exactmetrics-flag-pr{background-position:0 -352px}.exactmetrics-flag.exactmetrics-flag-ps{background-position:-32px -352px}.exactmetrics-flag.exactmetrics-flag-pt{background-position:-64px -352px}.exactmetrics-flag.exactmetrics-flag-pw{background-position:-96px -352px}.exactmetrics-flag.exactmetrics-flag-py{background-position:-128px -352px}.exactmetrics-flag.exactmetrics-flag-qa{background-position:-160px -352px}.exactmetrics-flag.exactmetrics-flag-re{background-position:-192px -352px}.exactmetrics-flag.exactmetrics-flag-ro{background-position:-224px -352px}.exactmetrics-flag.exactmetrics-flag-rs{background-position:-256px -352px}.exactmetrics-flag.exactmetrics-flag-ru{background-position:-288px -352px}.exactmetrics-flag.exactmetrics-flag-rw{background-position:-320px -352px}.exactmetrics-flag.exactmetrics-flag-sa{background-position:-352px -352px}.exactmetrics-flag.exactmetrics-flag-sb{background-position:-384px -352px}.exactmetrics-flag.exactmetrics-flag-sc{background-position:-416px -352px}.exactmetrics-flag.exactmetrics-flag-sd{background-position:-448px -352px}.exactmetrics-flag.exactmetrics-flag-se{background-position:-480px -352px}.exactmetrics-flag.exactmetrics-flag-sg{background-position:0 -384px}.exactmetrics-flag.exactmetrics-flag-sh{background-position:-32px -384px}.exactmetrics-flag.exactmetrics-flag-si{background-position:-64px -384px}.exactmetrics-flag.exactmetrics-flag-sk{background-position:-96px -384px}.exactmetrics-flag.exactmetrics-flag-sl{background-position:-128px -384px}.exactmetrics-flag.exactmetrics-flag-sm{background-position:-160px -384px}.exactmetrics-flag.exactmetrics-flag-sn{background-position:-192px -384px}.exactmetrics-flag.exactmetrics-flag-so{background-position:-224px -384px}.exactmetrics-flag.exactmetrics-flag-sr{background-position:-256px -384px}.exactmetrics-flag.exactmetrics-flag-ss{background-position:-288px -384px}.exactmetrics-flag.exactmetrics-flag-st{background-position:-320px -384px}.exactmetrics-flag.exactmetrics-flag-sv{background-position:-352px -384px}.exactmetrics-flag.exactmetrics-flag-sy{background-position:-384px -384px}.exactmetrics-flag.exactmetrics-flag-sz{background-position:-416px -384px}.exactmetrics-flag.exactmetrics-flag-tc{background-position:-448px -384px}.exactmetrics-flag.exactmetrics-flag-td{background-position:-480px -384px}.exactmetrics-flag.exactmetrics-flag-tf{background-position:0 -416px}.exactmetrics-flag.exactmetrics-flag-tg{background-position:-32px -416px}.exactmetrics-flag.exactmetrics-flag-th{background-position:-64px -416px}.exactmetrics-flag.exactmetrics-flag-tj{background-position:-96px -416px}.exactmetrics-flag.exactmetrics-flag-tk{background-position:-128px -416px}.exactmetrics-flag.exactmetrics-flag-tl{background-position:-160px -416px}.exactmetrics-flag.exactmetrics-flag-tm{background-position:-192px -416px}.exactmetrics-flag.exactmetrics-flag-tn{background-position:-224px -416px}.exactmetrics-flag.exactmetrics-flag-to{background-position:-256px -416px}.exactmetrics-flag.exactmetrics-flag-tr{background-position:-288px -416px}.exactmetrics-flag.exactmetrics-flag-tt{background-position:-320px -416px}.exactmetrics-flag.exactmetrics-flag-tv{background-position:-352px -416px}.exactmetrics-flag.exactmetrics-flag-tw{background-position:-384px -416px}.exactmetrics-flag.exactmetrics-flag-tz{background-position:-416px -416px}.exactmetrics-flag.exactmetrics-flag-ua{background-position:-448px -416px}.exactmetrics-flag.exactmetrics-flag-ug{background-position:-480px -416px}.exactmetrics-flag.exactmetrics-flag-us{background-position:0 -448px}.exactmetrics-flag.exactmetrics-flag-uy{background-position:-32px -448px}.exactmetrics-flag.exactmetrics-flag-uz{background-position:-64px -448px}.exactmetrics-flag.exactmetrics-flag-va{background-position:-96px -448px}.exactmetrics-flag.exactmetrics-flag-vc{background-position:-128px -448px}.exactmetrics-flag.exactmetrics-flag-ve{background-position:-160px -448px}.exactmetrics-flag.exactmetrics-flag-vg{background-position:-192px -448px}.exactmetrics-flag.exactmetrics-flag-vi{background-position:-224px -448px}.exactmetrics-flag.exactmetrics-flag-vn{background-position:-256px -448px}.exactmetrics-flag.exactmetrics-flag-vu{background-position:-288px -448px}.exactmetrics-flag.exactmetrics-flag-wf{background-position:-320px -448px}.exactmetrics-flag.exactmetrics-flag-ws{background-position:-352px -448px}.exactmetrics-flag.exactmetrics-flag-ye{background-position:-384px -448px}.exactmetrics-flag.exactmetrics-flag-yt{background-position:-416px -448px}.exactmetrics-flag.exactmetrics-flag-za{background-position:-448px -448px}.exactmetrics-flag.exactmetrics-flag-zm{background-position:-480px -448px}.exactmetrics-flag.exactmetrics-flag-zw{background-position:0 -480px}.exactmetrics-full-width-upsell .exactmetrics-full-width-upsell-inner,.exactmetrics-upsell-row .exactmetrics-upsell-row-inner,.exactmetrics-upsell .exactmetrics-upsell-title .exactmetrics-upsell-title-inner{max-width:1400px;margin:0 auto}.exactmetrics-reports-page .exactmetrics-upsell{border-bottom:1px solid #d6e2ed}.exactmetrics-upsell-row{width:100%;background:rgba(101,40,245,.05)}.exactmetrics-upsell-row .exactmetrics-upsell-row-inner{padding:0 96px}@media (max-width:782px){.exactmetrics-upsell-row .exactmetrics-upsell-row-inner{padding:0 24px}}.exactmetrics-upsell-row h3{margin:0 0 60px;font-size:15px}.exactmetrics-upsell-row .exactmetrics-upsell-list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding-bottom:15px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 31%;flex:1 0 31%;margin-bottom:45px}.exactmetrics-report-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item,.exactmetrics-settings-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item{-webkit-box-flex:1;-ms-flex:1 0 21%;flex:1 0 21%}@media (max-width:782px){.exactmetrics-upsell-row .exactmetrics-upsell-list-item{width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}}.exactmetrics-upsell-row .exactmetrics-upsell-list-item i{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;color:#6528f5;font-size:23px;margin-right:18px;margin-top:6px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text{line-height:1.7;color:#37276a;max-width:232px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;font-weight:500;text-decoration:none}.exactmetrics-report-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text,.exactmetrics-settings-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text{max-width:170px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text{cursor:pointer}.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text:focus,.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text:hover{color:#6528f5}.exactmetrics-full-width-upsell{background:#f7f3fe;min-height:445px;margin-bottom:116px}.exactmetrics-reports-page .exactmetrics-full-width-upsell{margin-bottom:0}@media (max-width:959px){.exactmetrics-full-width-upsell{margin-bottom:48px}}.exactmetrics-full-width-upsell.exactmetrics-full-width-no-space{margin-bottom:0;min-height:380px}.exactmetrics-full-width-upsell.exactmetrics-full-width-no-space+.exactmetrics-full-width-upsell{margin-top:-100px}.exactmetrics-full-width-upsell .exactmetrics-full-width-upsell-inner{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;position:relative}.exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-full-width-upsell-inner{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-full-width-upsell-inner .exactmetrics-upsell-left{padding-left:0;padding-top:100px}.exactmetrics-full-width-upsell h2{color:#210f59;font-size:24px;line-height:1.4}.exactmetrics-full-width-upsell p{font-size:15px;line-height:1.7;color:#210f59;margin:11px 0 0}.exactmetrics-full-width-upsell p.exactmetrics-upsell-pbold{font-weight:700;margin-top:0}.exactmetrics-full-width-upsell a.exactmetrics-green-text{color:#32a27a;font-weight:400}.exactmetrics-full-width-upsell a.exactmetrics-green-text:focus,.exactmetrics-full-width-upsell a.exactmetrics-green-text:hover{color:#19865f;text-decoration:none}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons{margin-top:20px;margin-bottom:72px}@media (max-width:1099px){.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons{margin-bottom:48px}}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons .exactmetrics-button:first-child{margin-right:18px}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons .exactmetrics-button-text .monstericon-arrow-right{font-size:12px;vertical-align:text-top;margin-left:10px}.exactmetrics-upsell-half{position:relative;padding-top:56px}.exactmetrics-upsell-half.exactmetrics-upsell-left{padding-left:96px;padding-top:56px;width:40%}@media (max-width:1099px){.exactmetrics-upsell-half.exactmetrics-upsell-left{width:50%;padding-left:24px}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-left{padding-top:24px}}.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image{max-width:100%;left:0;height:auto;padding-top:67%}.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image:after{background-position:50%;left:-16%;right:-16%;top:-10%;bottom:-10%}@media (min-width:960px){.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image{display:none}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-left{width:100%;padding-right:24px}}.exactmetrics-upsell-half.exactmetrics-upsell-right{padding-left:96px;padding-top:0;width:60%}@media (max-width:1099px){.exactmetrics-upsell-half.exactmetrics-upsell-right{width:50%}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-right{display:none}}.exactmetrics-upsell-half.exactmetrics-upsell-right .exactmetrics-em-upsell-screen{position:absolute;bottom:-140px;left:68px}.exactmetrics-upsell-half h3{color:#6528f5;font-size:20px;line-height:1.3;font-weight:400;margin:0 0 15px}.exactmetrics-upsell a{color:#6528f5}.exactmetrics-upsell a:focus,.exactmetrics-upsell a:hover{color:#37276a}.exactmetrics-upsell .exactmetrics-upsell-title{border-bottom:1px solid #e9e7ee}.exactmetrics-upsell .exactmetrics-upsell-title h2{color:#210f59;font-size:32px;margin-left:100px;margin-top:45px;margin-bottom:35px}@media (max-width:782px){.exactmetrics-upsell .exactmetrics-upsell-title h2{margin-left:24px;line-height:1.4;margin-top:24px;margin-bottom:24px}}.exactmetrics-upsell .exactmetrics-upsell-half h3{font-size:24px;color:#210f59;font-weight:700}.exactmetrics-upsell-bottom{background:#f7f9fd;border-top:1px solid #d6e2ed;padding:36px 50px 30px;position:relative}@media (max-width:767px){.exactmetrics-upsell-bottom{padding-left:20px;padding-right:20px}}.exactmetrics-upsell-bottom .exactmetrics-button-top{position:absolute;top:0;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}@media (max-width:767px){.exactmetrics-upsell-bottom .exactmetrics-button-top{min-width:288px}}.exactmetrics-upsell-bottom img{max-width:100%}.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-upsell-screen,.exactmetrics-screen-image{width:848px;padding-top:0;height:566px}@media (max-width:1099px){.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-upsell-screen,.exactmetrics-screen-image{left:20px}}.exactmetrics-em-ecommerce-upsell-screen:after,.exactmetrics-em-upsell-screen:after,.exactmetrics-screen-image:after{background-position:100% 100%;background-image:url(../img/upsell-screen.png)}.exactmetrics-em-logo-text{width:432px;height:56px;margin-bottom:28px;padding-top:0;max-width:100%}@media (max-width:1400px){.exactmetrics-em-logo-text{padding-top:13%;height:auto}}@media (max-width:959px){.exactmetrics-em-logo-text{padding-top:8%}}.exactmetrics-em-logo-text:after{background-image:url(../img/exactmetrics.png)}.exactmetrics-em-addons-upsell-screen,.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-publishers-upsell-screen{bottom:auto;top:-65px;width:648px;right:-13%}.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/one-click-integrations.png)}.exactmetrics-em-publishers-upsell-screen:after{background-image:url(../img/publishers-screen.png)}.exactmetrics-em-addons-upsell-screen{margin-bottom:-180px;top:-70px}.exactmetrics-em-addons-upsell-screen:after{background-image:url(../img/addons-help-screen.png)}.exactmetrics-em-search-console-upsell-screen:after{background-image:url(../img/search-console-screen.png)}.exactmetrics-em-real-time-upsell-screen:after{background-image:url(../img/real-time-screen.png)}.exactmetrics-em-site-speed-upsell-screen:after{background-image:url(../img/site-speed-screen.png)}.exactmetrics-em-forms-report-upsell-screen:after{background-image:url(../img/forms-report-screen.png)}.exactmetrics-em-dimensions-report-upsell-screen:after{background-image:url(../img/dimensions-report-screen.png)}.exactmetrics-em-media-report-upsell-screen:after{background-image:url(../img/media-report-upsell.png);background-size:80%;background-position:right 40px}.exactmetrics-em-forms-upsell-screen{width:758px;max-width:100%;margin-top:-75px}.exactmetrics-em-forms-upsell-screen:after{background-position:50%;background-image:url(../img/forms-screen.png)}.exactmetrics-em-optimize-upsell-screen{width:758px;max-width:100%;margin-left:-10%}.exactmetrics-em-optimize-upsell-screen:after{background-position:50%;background-image:url(../img/optimize-screen.png)}.exactmetrics-em-dimensions-upsell-screen{width:758px;max-width:100%}.exactmetrics-em-dimensions-upsell-screen:after{background-position:50%;background-image:url(../img/custom-dimensions-screen.png)}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-left:0}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half p{max-width:400px;margin-bottom:28px}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-left:96px}.exactmetrics-icon-background-large{position:absolute;font-size:130px;color:rgba(101,40,245,.05);left:25px;top:25px;line-height:1;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator{font-size:13px;color:#fff;background-color:#32a27a;border-radius:3px;font-weight:500;padding:4px 8px;vertical-align:top;margin-left:10px;display:inline-block;margin-top:-4px;cursor:pointer;text-decoration:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:hover,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:hover{color:#fff;background:#19865f}.exactmetrics-report .exactmetrics-upsell-dismissable{margin-left:-32px;margin-right:-32px;padding-left:32px;padding-right:32px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable{text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable h3{font-size:17px;color:#210f59;line-height:1.5;font-weight:700}.exactmetrics-report .exactmetrics-upsell-dismissable p{font-size:15px;margin-bottom:25px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{width:50%;padding-top:38px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{padding-left:32px;padding-right:32px;width:100%;text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half:first-child p{max-width:524px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-left:40px;color:#9087ac}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-left:0;margin-top:20px}}.exactmetrics-report .exactmetrics-upsell-dismiss{position:absolute;right:20px;top:20px;z-index:10}.exactmetrics-forms-image-wpf-upsell{margin-bottom:-140px;padding-top:85%}@media (max-width:782px){.exactmetrics-forms-image-wpf-upsell{margin-bottom:0}}.exactmetrics-forms-image-wpf-upsell:after{background-position:100% 100%;background-image:url(../img/forms-wpforms-upsell.png)}.exactmetrics-report-year-in-review{margin-left:auto;margin-right:auto;max-width:960px;background-color:#fff;background-image:url(../img/confetti-background.png);background-repeat:no-repeat;background-position:0 0;margin-bottom:90px}.exactmetrics-report-year-in-review .exactmetrics-pie-chart-tooltip{left:22px;top:23px}.exactmetrics-report-year-in-review .exactmetrics-reports-doughnut-tooltip{width:120px;height:120px}.exactmetrics-report-year-in-review.exactmetrics-yir-report-calculating-row{width:610px;margin-top:50px}@media (max-width:767px){.exactmetrics-report-year-in-review.exactmetrics-yir-report-calculating-row{width:100%;margin-top:20px}}.exactmetrics-report-year-in-review a,.exactmetrics-report-year-in-review h1,.exactmetrics-report-year-in-review h2,.exactmetrics-report-year-in-review h3,.exactmetrics-report-year-in-review h4,.exactmetrics-report-year-in-review h5,.exactmetrics-report-year-in-review p,.exactmetrics-report-year-in-review span{font-family:Lato,sans-serif;margin:0}.exactmetrics-report-year-in-review h1,.exactmetrics-report-year-in-review h2,.exactmetrics-report-year-in-review h3,.exactmetrics-report-year-in-review h4,.exactmetrics-report-year-in-review h5{font-weight:900}.exactmetrics-report-year-in-review p{font-style:normal;font-weight:400;font-size:14px;line-height:24px}.exactmetrics-report-year-in-review a{text-decoration:none;padding:8px 30px;border-radius:5px;color:#fff;font-weight:700;font-size:14px;line-height:24px;text-align:center}.exactmetrics-report-year-in-review .exactmetrics-yir-separator{border-left-color:#e0e0e0;border-right-color:#e0e0e0;border-top:1px solid #e0e0e0;border-bottom:1px solid #e0e0e0}.exactmetrics-report-year-in-review .exactmetrics-yir-footer,.exactmetrics-report-year-in-review .exactmetrics-yir-header,.exactmetrics-report-year-in-review section{padding:0 90px;clear:both;overflow:hidden}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-footer,.exactmetrics-report-year-in-review .exactmetrics-yir-header,.exactmetrics-report-year-in-review section{padding:0 15px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-footer,.exactmetrics-report-year-in-review .exactmetrics-yir-header,.exactmetrics-report-year-in-review section{padding:0 30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-text-right{text-align:right}.exactmetrics-report-year-in-review .exactmetrics-yir-text-right h2{color:#fff}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header{padding:90px 0 90px 90px;background-image:url(../img/em-logo-lg.png);background-repeat:no-repeat;background-position:center right 26px;background-size:230px 200px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header{padding:50px 15px 40px;background-image:none}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header{padding-left:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating{padding:90px 0 100px 60px;background-image:url(../img/em-logo-lg.png);background-position:right top 83px;background-size:160px 150px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating{padding-left:15px;padding-right:15px;padding-top:50px;background-size:140px 180px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-title{font-size:32px;line-height:37px;color:#393f4c;margin-top:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-title{font-size:26px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-summary{font-weight:400;font-size:14px;line-height:20px;color:#393f4c;max-width:385px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-summary{font-size:12px;max-width:230px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link{background:#4e9ee7;border-radius:5px;font-weight:700;font-size:14px;line-height:16px;text-align:center;color:#fff;border:0;margin-right:0;padding:12px 20px;margin-top:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link{width:inherit}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link{width:inherit}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link:active,.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-subtitle{font-size:20px;font-weight:900;background:#338eef;border-radius:30px;color:#fff;padding:14px 25px 14px 90px;position:relative;display:inline-block}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-subtitle{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-subtitle svg{position:absolute;left:5px;bottom:-5px}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-title{font-style:normal;font-weight:900;font-size:48px;line-height:58px;color:#393f4c;margin-bottom:15px;margin-top:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-title{font-size:20px;line-height:20px;margin-bottom:10px;margin-top:30px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-title{font-size:32px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-summary{font-weight:500;font-size:24px;line-height:32px;color:#828282;max-width:480px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-summary{font-size:16px;line-height:18px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-summary{font-size:16px;line-height:20px;max-width:400px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart{background:#fff;-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);border-radius:4.85258px}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-header{display:-webkit-box;display:-ms-flexbox;display:flex;padding:20px 30px;border-bottom:2px solid #f2f2f2;margin-bottom:55px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-header{margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-header div{width:100%}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-title{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:right;color:#393f4c;margin:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-subtitle{font-size:10px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content{padding:0 50px 15px 30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content{padding:0 15px 15px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content .exactmetrics-reports-bar-chart-holder{position:relative}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content .exactmetrics-reports-bar-chart-holder .exactmetrics-chart-tooltip{position:absolute;pointer-events:none}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box{padding-top:0;position:relative;border:0;-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);background:hsla(0,0%,100%,.38)}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box.exactmetrics-year-in-review-table-box-blur-report .exactmetrics-year-in-review-table-box-list{-webkit-filter:blur(5px);filter:blur(5px)}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header{padding:20px 30px;border-bottom:2px solid #f2f2f2;margin-bottom:30px}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-title{display:inline-block}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-title .exactmetrics-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-title .exactmetrics-report-title{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-subtitle{display:inline-block;float:right}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-subtitle .exactmetrics-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:right;color:#393f4c;margin:0;text-transform:capitalize}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list{padding-bottom:30px}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item{padding:9px 30px}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a{padding:0;border-radius:0;line-height:37px;line-height:inherit}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a:active,.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a:focus,.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a:hover{-webkit-box-shadow:none;box-shadow:none;background:none}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer{position:absolute;bottom:-34px;width:100%;left:0;text-align:center}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer{bottom:-40px}}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer .exactmetrics-yir-tooltip{font-weight:400;font-size:12px;color:#828282}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer .exactmetrics-yir-tooltip span{font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer .exactmetrics-yir-tooltip .exactmetrics-yir-icon{background:#dadada;border-radius:50%;padding:0;margin-right:10px;color:#fff;width:15px;height:15px;display:inline-block;line-height:16px}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart{border:0;margin:0;padding:0;width:100%}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-reports-pie-chart-holder{display:inline-block;float:left}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-reports-pie-chart-holder{display:block;float:none}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-reports-pie-chart-holder .exactmetrics-pie-chart{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAFxSURBVHgB7dlPTsJAFAbwb6BxQVzgTThCXaCC3kEPoFBP0PYGVQ9gvUNFY2PSI3AUFhISgx1njAsjIfa1jA+S90u6aDOTzpf5s5gHCF4KNVyePPntthea7j1Ad9FcUWr9cDc5SkFEDjAavoZKlREc0BrR7aQfU/qQAgTDlwut1D0cUmp5mGSDomr7FgjM4M/hmNZ2aVZHCmD4cK9HaUwN8B9Ih4KHBm4e+7VOsd/Gp7lGTds4AyQSgJsE4CYBuEkAbhKAmwTgJgG4SQBuEoCbBOAmAbhJAG4SgFuju9Emd5qbIktoHaUQq/nbwdcDXMORRktoHTvgJOsnPz4lo2HeNaFI1Zcq3MzA3EtXfrTnJXCAGmCGLUMNMK3SqOy8Byvflh9VC4QFCEh7wG5MU8v1/27XCq8Gz7P2YpHa97KzP1ZaR6jAFrxBQK5xBWd5ZEJsfDNapoAeJ9lxROqDGr4L3nZJ+GjO7qupnV1zchUQO+YTOT9YisPBuEEAAAAASUVORK5CYII=);background-color:#fff;background-repeat:no-repeat;background-position:50%}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content{padding-left:50px;padding-top:35px;float:left}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content{padding-left:0;padding-top:20px;float:none}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin-bottom:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-title{font-size:16px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:18px;line-height:24px;color:#393f4c;margin-top:10px;margin-bottom:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-subtitle{font-size:14px;line-height:14px}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend{position:relative;left:inherit;top:inherit;-webkit-transform:inherit;-ms-transform:inherit;transform:inherit;margin:24px 0 0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend{margin:10px 0 0}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li{display:inline-block;margin-right:30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li{margin-right:10px}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-color{border-radius:0;width:16px;height:16px;margin-bottom:-3px;margin-right:5px}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-text,.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-value{font-family:Lato;font-style:normal;font-weight:700;font-size:14px;line-height:24px;color:#393f4c;min-width:inherit;margin-right:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-text,.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-value{font-size:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip{border:2px solid #e3f1ff;border-radius:5px;padding-top:45px;padding-bottom:45px;overflow:hidden;background:#f3f9ff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip{padding-top:15px;padding-bottom:15px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip a,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip h3,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip p{font-family:Lato,sans-serif;margin:0}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-icon{float:left;width:144px;text-align:center}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-icon{width:90px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-icon img{background:#338eef;padding:12px;border-radius:50%;margin-top:12px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content{float:left;width:calc(100% - 144px);padding-right:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content{padding-right:0;width:calc(100% - 90px)}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-title{font-weight:900;font-size:18px;line-height:27px;color:#333;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-title{font-size:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-summary{font-weight:400;font-size:18px;line-height:27px;color:#393f4c;margin-bottom:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-summary{font-size:12px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper{margin-top:15px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link{font-weight:900;font-size:18px;line-height:27px;-webkit-text-decoration-line:underline;text-decoration-line:underline;color:#338eef;margin-top:15px;padding:0;border-radius:0;text-align:left}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link:hover{color:#2469b2;-webkit-box-shadow:none;box-shadow:none}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay{position:absolute;top:0;left:0;width:calc(100% - 25px);height:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content{margin-top:66px;text-align:center;height:calc(100% - 66px);padding-top:80px;padding-right:25px;padding-left:25px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-details{font-size:14px;line-height:20px;font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay{display:inline-block;border-radius:5px;font-size:14px;line-height:20px;color:#fff;padding:10px 30px;text-decoration:none;font-family:Lato;background:#338eef;margin-top:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success{background:#1ec185}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success:hover{opacity:.8;background:#10ad73}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay:hover{border:0;background:#2469b2;outline:none}.exactmetrics-report-year-in-review .exactmetrics-yir-audience{padding-bottom:85px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience{padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:685px;margin-bottom:80px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-summary{font-size:18px;line-height:20px;margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors{width:100%;margin-bottom:70px;padding-left:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors{margin-bottom:20px;padding-left:0;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions img,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors img{margin-bottom:15px;max-height:28px}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions h4,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors h4{font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions h4,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors h4{font-size:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions .exactmetrics-yir-number,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors .exactmetrics-yir-number{font-weight:900;font-size:60px;line-height:72px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions .exactmetrics-yir-number,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors .exactmetrics-yir-number{font-size:40px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-visitor-by-chart{margin-bottom:60px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-visitor-by-chart{margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics{padding-top:85px;padding-bottom:85px;background-image:url(../img/map-background.png);background-repeat:no-repeat;background-position:top}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics{padding-top:30px;padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:656px;margin-bottom:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-summary{font-size:18px;line-height:20px;margin-bottom:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries{display:block}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country{width:50%;margin-top:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-number-one{font-size:24px;line-height:29px;color:#fff;background:#338eef;width:50px;height:50px;border-radius:50%;display:inline-block;text-align:center;line-height:50px;margin-bottom:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-flag{display:block}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-flag{margin:0 auto}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-flag.exactmetrics-flag-zz{display:none}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-name{font-size:32px;line-height:38px;color:#393f4c;margin-top:0;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-name{font-size:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-visitors{font-weight:400;font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-visitors{font-size:16px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-countries-graph{width:50%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-countries-graph{width:100%}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-know-visitors{font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-know-visitors{font-size:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info{margin-top:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info{width:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info span,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info span,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info span{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info h2,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info h2,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info h2{font-size:30px;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info p,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info p,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info p{font-size:10px;line-height:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior{padding-top:85px;padding-bottom:85px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior{padding-top:30px;padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:585px;margin-bottom:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data{display:block;margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary{width:50%;margin-top:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary img{width:32px;height:32px;margin-left:-3px;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary img{margin-left:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-time-spent{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent{font-size:32px;line-height:38px;color:#393f4c;margin-top:15px;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent{margin-top:5px;margin-bottom:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent .exactmetrics-yir-number{font-weight:900;font-size:48px;line-height:58px;color:#338eef;margin-right:10px;overflow-wrap:break-word}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent .exactmetrics-yir-number{font-size:30px;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent .exactmetrics-yir-type{font-weight:900;font-size:16px;line-height:103.8%;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-each-visitor-spent{font-weight:400;font-size:18px;line-height:24px;color:#393f4c;max-width:330px;margin-top:15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-each-visitor-spent{font-size:14px;max-width:100%;margin-top:5px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-top-pages-graph{width:50%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-top-pages-graph{width:100%}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-most-visitors-device{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-most-visitors-device{font-size:20px;line-height:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info{margin-top:20px;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info{width:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info span,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info h2,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info p,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-grow-traffic-tip{margin-top:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-grow-traffic-tip{margin-top:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from{margin-top:55px;margin-bottom:100px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from{margin-top:20px;margin-bottom:60px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-title{font-size:32px;line-height:44px;color:#393f4c;margin-bottom:30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-title{font-size:20px;line-height:20px;margin-bottom:15px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals{display:block}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-keywords,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-referrals{width:50%;position:relative}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-keywords,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-referrals{width:100%}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-keywords{padding-right:25px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-keywords{padding-right:0;margin-bottom:60px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-referrals{padding-left:25px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-referrals{padding-left:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce{padding-top:85px;padding-bottom:30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce{padding-top:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number{width:55%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number{width:30%}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-products-sold,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-revenue{padding:75px 0}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-title{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-title{font-size:14px;line-height:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-amount{font-size:54px;line-height:65px;color:#338eef;overflow-wrap:break-word}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-amount{font-size:24px;line-height:40px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products{width:45%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products{width:70%}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular{-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);border-radius:3.59813px;padding:30px;margin-bottom:30px}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning img,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular img{margin-bottom:5px}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning span,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning span,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular span{font-size:14px;line-height:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning .exactmetrics-yir-product-title,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular .exactmetrics-yir-product-title{font-weight:700;font-size:28px;line-height:32px;color:#338eef;margin-top:10px;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning .exactmetrics-yir-product-title,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular .exactmetrics-yir-product-title{font-size:16px;line-height:16px;margin-bottom:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning .exactmetrics-yir-count,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular .exactmetrics-yir-count{font-weight:400;font-size:16px;line-height:19px;color:#828282}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning .exactmetrics-yir-count,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular .exactmetrics-yir-count{font-size:12px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-revenue-by-month{margin-bottom:50px}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you{padding-top:90px;background-color:#fff;background-image:url(../img/confetti-background.png);background-position:0 0;padding-bottom:85px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you{padding-top:0;padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-title{font-size:54px;line-height:65px;text-align:center;color:#393f4c;max-width:588px;margin:0 auto 10px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-title{font-size:30px;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-summary{font-weight:500;font-size:20px;line-height:28px;text-align:center;color:#393f4c;max-width:585px;margin:0 auto 15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-summary{font-size:14px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-amazing-year{font-weight:700;font-size:32px;line-height:37px;text-align:center;color:#393f4c;font-style:italic;margin-bottom:35px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-amazing-year{font-size:24px;line-height:24px;margin-bottom:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors{text-align:center;margin-bottom:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors{margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author{display:inline-block;padding:0 45px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author{padding:0 10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-thumbnail{width:96px;height:96px;background-repeat:no-repeat;margin:0 auto 10px}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-thumbnail.chris{background-image:url(../img/chris.png)}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-thumbnail.syed{background-image:url(../img/syed.png)}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-name{font-weight:900;font-size:18px;line-height:22px;text-align:center;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-name{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review{background:#338eef;-webkit-box-shadow:0 8px 8px rgba(30,88,150,.2);box-shadow:0 8px 8px rgba(30,88,150,.2);border-radius:5px;padding:24px;display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review{display:block}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content,.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-rating,.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button{width:100%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content{text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content span{font-weight:900;font-size:14px;color:#fff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content span{font-size:12px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content h3{font-weight:900;font-size:20px;line-height:31px;color:#fff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content h3{font-size:18px;line-height:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-rating .exactmetrics-yir-five-star{margin:0;padding:12px 0 0;text-align:center}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-rating .exactmetrics-yir-five-star li{list-style:none;display:inline-block;margin-right:7px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-rating .exactmetrics-yir-five-star li{margin-right:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button{text-align:center;padding-top:5px}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button a{background:#2469b3;border-radius:5px;text-align:center;height:38px;display:inline-block}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button a:active,.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button a:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button a:hover{background:#123c68}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-title{font-size:36px;line-height:44px;color:#393f4c;margin-bottom:20px;max-width:638px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-title{font-size:20px;line-height:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-summary{font-weight:500;font-size:20px;line-height:24px;color:#393f4c;max-width:450px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-summary{font-size:14px;line-height:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins{margin-top:20px;margin-left:-30px;margin-right:-30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins{margin-left:0;margin-right:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon{width:calc(50% - 60px);float:left;background:#f3f9ff;border:2px solid #e3f1ff;border-radius:5px;position:relative;min-height:260px;margin:30px 30px 0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon{width:100%;margin:30px 0;min-height:300px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top{padding-top:30px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-image{width:104px;float:left;padding-left:25px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-image .exactmetrics-addon-thumb{width:32px;height:32px;border:2px solid #e3f1ff;border-radius:5px;padding:10px;-webkit-box-sizing:content-box;box-sizing:content-box}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-text{width:calc(100% - 104px);float:left;padding-right:25px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-text .exactmetrics-addon-title{font-size:18px;line-height:24px;margin-top:0;font-family:Lato;margin-bottom:5px;color:#393f4c;font-weight:900}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-text .exactmetrics-addon-excerpt{font-weight:400;font-size:14px;line-height:18px;color:#393f4c;font-family:Lato;margin:0}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message{border-top:2px solid #e3f1ff;clear:both;padding:13px 25px;position:absolute;bottom:0;left:0;width:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-addon-status{float:right;line-height:32px;font-weight:900;font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-addon-status span{color:#d4393d}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-button{line-height:32px;background:#338eef;border-radius:3px;display:inline-block;padding:0 30px;border:0;font-weight:700;font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-button:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-button:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-button:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-addon-status span{color:#64bfa5}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-button,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-button:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-button:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-button:hover{background:rgba(51,142,239,.5)}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities{background-color:#338eef;padding-top:160px;margin-top:-90px;color:#fff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities{padding-top:100px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities h2{font-size:36px;line-height:43px;color:#fff;margin-bottom:15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities h2{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities h3{font-weight:500;font-size:20px;line-height:24px;color:#fff;max-width:575px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities h3{font-size:18px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-30px;padding-top:60px;padding-bottom:90px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities{display:block;margin-left:0;padding-bottom:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community{width:100%;background-color:#2469b2;border-radius:5px;margin-left:30px;padding:24px;position:relative;min-height:340px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community{margin-left:0;margin-bottom:30px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community{min-height:350px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-title{font-weight:900;font-size:20px;line-height:24px;margin-bottom:10px;margin-top:5px}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link,.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links{position:absolute;bottom:15px;left:24px;width:80%;width:calc(100% - 48px)}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link{background-color:#123c68;display:block}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link{padding:8px 10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links{margin:0}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links li{float:left;margin-right:8px;margin-bottom:0}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links li a{background-color:#123c68;display:block;margin:0;width:40px;height:40px;padding:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links li a:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links li a:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-footer{height:84px;background:#2368b1;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-footer{display:block;text-align:center;padding:15px 0;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-footer div{width:100%;font-weight:500;font-size:16px;color:#fff;text-align:center}.exactmetrics-report-site-speed .exactmetrics-site-speed-blur{width:100%;padding-top:70%;background-image:url(../img/site-speed-blur.png);background-repeat:no-repeat;background-size:contain;background-position:50%}.exactmetrics-report-site-speed .exactmetrics-upsell-top{max-width:80%;margin:0 auto}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-report-top{display:-webkit-box;display:-ms-flexbox;display:flex}}.exactmetrics-report-site-speed .exactmetrics-report-top h2.exactmetrics-report-top-title{margin-top:10px}.exactmetrics-report-site-speed .exactmetrics-report-top .exactmetrics-export-pdf-report{margin-right:16px}.exactmetrics-report-site-speed .exactmetrics-report-top .exactmetrics-export-pdf-report button{background-color:#f5f5f5;color:#4c6577;border-color:#dcdcdc}.exactmetrics-report-site-speed .exactmetrics-report-top .exactmetrics-run-audit-btn .exactmetrics-run-audit{background-color:#3990ec;height:39px}.exactmetrics-report-site-speed .exactmetrics-report-top .exactmetrics-run-audit-btn .exactmetrics-run-audit:hover{background-color:rgba(57,144,236,.8)}.exactmetrics-report-site-speed .exactmetrics-choose-device-button{margin-left:15px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button{display:inline-block;text-align:center;background-color:#f5f5f5;color:#444;border-color:#dcdcdc;border-radius:5px;outline:none}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button:hover{background-color:#3990ec;border-color:#1c77db;outline:none}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button:hover .svg-icons{fill:#fff}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.active{background-color:#3990ec;border-color:#1c77db;color:#fff;outline:none}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.active .svg-icons{fill:#fff}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.mobile{border-top-right-radius:0;border-bottom-right-radius:0;border-right:0;width:45px;height:40px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.mobile svg{margin-left:-6px;margin-top:-1px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.desktop{border-top-left-radius:0;border-bottom-left-radius:0;border-left:0;width:54px;height:40px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.desktop svg{margin-left:-6px;margin-top:-1px}.exactmetrics-report-site-speed .exactmetrics-site-speed-container{max-width:1010px}.exactmetrics-report-site-speed .exactmetrics-site-speed-device,.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator{width:338px;margin-right:10px;max-height:304px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator{width:100%;margin-bottom:25px}}@media screen and (min-width:768px) and (max-width:1024px){.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator{width:100%;margin-bottom:25px}}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-indicator-device-icon{margin-bottom:40px;text-align:center}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-indicator-device-icon .desktop{width:80px}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-indicator-percent-text{font-size:5em;color:#f2994a;text-align:center;font-weight:700}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-indicator-overall-text{display:inline-block;padding-top:2rem;font-weight:600;font-size:16px;text-align:center}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-progress-circle{max-width:300px;max-height:255px;width:100%;-webkit-transform:scaleX(-1) rotate(-55deg);-ms-transform:scaleX(-1) rotate(-55deg);transform:scaleX(-1) rotate(-55deg);overflow:visible}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-progress-circle__percent{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-progress-circle__container{display:inline-block;position:relative}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-progress-circle__path{-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out;overflow:visible}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats{width:662px}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-site-speed-stats{width:100%}}@media screen and (min-width:768px) and (max-width:1024px){.exactmetrics-report-site-speed .exactmetrics-site-speed-stats{width:100%}}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-report-flex{text-align:center}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-report-flex.exactmetrics-report-2-columns{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-site-speed-stat{width:49%;background-color:#fff;border:1px solid #e0e0e0;min-height:135px;margin-bottom:15px;padding-top:1.2rem}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-site-speed-stat{width:100%;margin-top:15px;margin-right:0}}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-site-speed-stat h2{font-size:40px;margin:0;padding:20px 0 10px}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-site-speed-stat p{color:#828282}.exactmetrics-report-site-speed .exactmetrics-how-to-improve h2.title{font-size:22px;color:#393f4c}div.exactmetrics-pdf-score{position:relative;margin:80px;left:-1px;top:1px}.exactmetrics-admin-page{overflow:hidden}.exactmetrics-report{padding:30px 32px;position:relative}@media (max-width:991px){.exactmetrics-report{padding-left:24px;padding-right:24px}}.exactmetrics-reports-page{margin-bottom:100px}.exactmetrics-reports-page .exactmetrics-header{padding-top:21px;padding-bottom:21px}@media (max-width:782px){.exactmetrics-reports-page .exactmetrics-report-top{margin-bottom:25px}}.exactmetrics_page.exactmetrics-downloading-pdf-report #wpbody{-webkit-filter:blur(15px);filter:blur(15px)}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion-item-details,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-pdf-score{display:block!important}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion-item-title,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion .exactmetrics-accordion div:not(:last-child){border:none!important}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion-item-trigger-icon,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-notificationsv3-container,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-progress-circle{display:none}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-header{min-height:85px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report{width:1120px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation{border-bottom:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button.exactmetrics-active-tab-button{border:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button:first-child{border-right:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-row.exactmetrics-report-row-border-top{border-top:0;margin-bottom:25px}@media (max-width:782px){.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-title{padding-left:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-title.exactmetrics-has-pagination{margin-bottom:25px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-title:before{position:inherit;left:inherit}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button{font-size:18px;padding:23px 20px 25px;text-align:left}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-infobox-row{padding:24px 60px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:25%;border-left:1px solid #bcb7cd;border-top:0;padding:0 10px 0 80px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child{border-left:none;padding-left:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-reports-ecommerce-pie-chart{width:40%;padding-top:130px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart .exactmetrics-pie-chart{margin:inherit}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart .exactmetrics-reports-pie-chart-holder{-webkit-box-pack:inherit;-ms-flex-pack:inherit;justify-content:inherit;-webkit-box-align:inherit;-ms-flex-align:inherit;align-items:inherit;margin-left:20px;-webkit-box-orient:inherit;-webkit-box-direction:inherit;-ms-flex-flow:wrap;flex-flow:wrap}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-report-box{width:calc(50% - 12.5px);margin-top:0}}@media (max-width:991px){.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-row.exactmetrics-report-row-border-top{margin-left:-32px;margin-right:-32px;padding-left:32px;padding-right:32px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex{-ms-flex-flow:inherit;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:inherit}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart{width:50%;border:none;padding-left:32px;padding-right:20px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart:first-child{border-right:1px solid #e9e7ee}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-table-box{margin-left:20px;margin-top:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-table-box:first-child{margin-left:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-report-2-columns .exactmetrics-table-box{width:calc(50% - 12.5px)}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex.exactmetrics-interests-scroll-report .exactmetrics-table-box{width:100%}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-reports-pie-chart{width:calc(50% - 12.5px)}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-reports-pie-chart:first-child{margin:0 25px 0 0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-left:25px;margin-top:0}}body.exactmetrics-reporting-page #wpbody-content{padding-bottom:0}body.exactmetrics-reporting-page .exactmetrics-red{color:#d73638}body.exactmetrics-reporting-page .exactmetrics-green{color:#5cc0a5}body.exactmetrics-reporting-page .exactmetrics-report-top{margin-top:14px;margin-bottom:24px}@media (min-width:783px) and (max-width:1130px){body.exactmetrics-reporting-page .exactmetrics-report-top{margin-bottom:25px}}body.exactmetrics-reporting-page .exactmetrics-report-top h2{margin:12px 0;display:inline-block;color:#210f59;font-size:32px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-report-top h2{display:none}}@media (min-width:783px) and (max-width:1130px){body.exactmetrics-reporting-page .exactmetrics-report-top h2{display:block;margin:0 0 25px}}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report{float:right;margin-right:25px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-export-pdf-report{float:none;margin-right:0;margin-bottom:0;text-align:center;padding-top:20px}}@media (min-width:783px) and (max-width:1130px){body.exactmetrics-reporting-page .exactmetrics-export-pdf-report{float:none;margin-bottom:0}}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button{background:#e9e7ee;color:#210f59}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button:focus,body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button:hover{background:#bcb7cd}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button[disabled=disabled]{cursor:not-allowed}body.exactmetrics-reporting-page .exactmetrics-report-realtime .exactmetrics-export-pdf-report{margin-right:0}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{display:-webkit-box;display:-ms-flexbox;display:flex;float:right}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{float:none;width:100%;-ms-flex-flow:wrap;flex-flow:wrap}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker .exactmetrics-buttons-toggle{width:100%;margin-right:0}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker .exactmetrics-buttons-toggle .exactmetrics-button{width:50%}}@media (min-width:783px) and (max-width:1130px){body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{float:right}}body.exactmetrics-reporting-page .exactmetrics-datepicker,body.exactmetrics-reporting-page .exactmetrics-hide{display:none}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container{position:relative}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container{max-width:100%}}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container.exactmetrics-hide,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .exactmetrics-hide{display:none}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-wrapper{display:block}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-wrapper .flatpickr-calendar{width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-calendar.static.open{position:relative;-webkit-box-shadow:none;box-shadow:none;border:none;width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:after,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:before{display:none}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-rContainer{width:100%;display:block}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .dayContainer,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-days{width:100%;max-width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day{max-width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange.inRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange.nextMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange.prevMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange:focus,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange:hover,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected.inRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected.nextMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected.prevMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected:focus,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected:hover,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange.inRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange.nextMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange.prevMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange:focus,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange:hover{background-color:#6528f5;border-color:#6528f5}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-months{padding-bottom:10px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .dayContainer{padding:0 28px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-weekdays{height:40px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-weekdaycontainer{background:#f4f3f7;padding:14px 28px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-current-month{font-size:15px;color:#210f59}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper{width:55px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper input.cur-year{padding:0 10px 0 5px;min-height:25px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info{background:#e9e7ee;border-radius:3px;font-size:15px;color:#210f59;line-height:1.75;padding:8px 28px 8px 20px;border:none;position:relative;text-align:left}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info{max-width:100%;line-height:1.4}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info>span{overflow:hidden;white-space:pre;text-overflow:ellipsis;max-width:calc(100% - 40px);display:inline-block}}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info i{margin-left:38px;margin-right:12px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info i{margin-left:10px;margin-right:10px;vertical-align:super}}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info:after{width:0;height:0;border-color:#9087ac rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:5px 3.5px 0;content:"";position:absolute;top:50%;margin-top:-2px;right:20px}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown{position:absolute;z-index:100;background:#fff;border:1px solid #f4f3f7;border-radius:3px;margin-top:6px;-webkit-box-shadow:0 10px 20px rgba(48,44,62,.05);box-shadow:0 10px 20px rgba(48,44,62,.05);padding:7px 8px;width:100%;left:0;top:100%}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button{display:block;border:none;padding:8px 12px;font-size:15px;line-height:1.75;color:#210f59;width:100%;text-align:left;border-radius:2px;background:#fff}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button.exactmetrics-interval-active,body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button:focus,body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button:hover{background:#e9e7ee}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button i{margin-right:10px}body.exactmetrics-reporting-page .exactmetrics-mobile-details-toggle{width:100%;margin-bottom:0;margin-top:10px;margin-left:0;font-weight:700}@media (min-width:783px){body.exactmetrics-reporting-page .exactmetrics-mobile-details-toggle{display:none}}body.exactmetrics-reporting-page .exactmetrics-info{color:#9087ac;cursor:help;font-size:15px;position:relative;display:inline-block;vertical-align:top;margin-left:10px}body.exactmetrics-reporting-page .exactmetrics-report-row{margin-bottom:25px}body.exactmetrics-reporting-page .exactmetrics-report-row.exactmetrics-report-row-border-top{margin-bottom:0;margin-left:-32px;margin-right:-32px;padding:0 32px;border-top:1px solid #e9e7ee}@media (max-width:991px){body.exactmetrics-reporting-page .exactmetrics-report-row.exactmetrics-report-row-border-top{margin-left:-24px;margin-right:-24px;padding-left:24px;padding-right:24px}}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button{background:#eceff5;color:#464c57;border-bottom-width:1px;border-color:#d6e2ed;border-radius:0;line-height:18px;border-right:0;margin:0}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:hover{background:#fff}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:focus{z-index:10;position:relative}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;border-right:1px solid #d6e2ed}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button.exactmetrics-selected-interval{background:#fff;color:#6528f5;font-weight:700}.exactmetrics-reports-overview-datagraph-tooltip-container{padding:15px;background-color:#fff;border:1px solid #bcb7cd;-webkit-box-shadow:0 10px 20px rgba(57,15,157,.15);box-shadow:0 10px 20px rgba(57,15,157,.15);border-radius:5px;display:block}.exactmetrics-pie-chart-tooltip{left:20px;top:20px;padding:0}@media (max-width:782px){.exactmetrics-pie-chart-tooltip{left:50%;margin-left:-97px}}.exactmetrics-reports-doughnut-tooltip{-webkit-box-shadow:none;box-shadow:none;border:none;width:172px;border-radius:50%;height:172px;text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.exactmetrics-reports-doughnut-tooltip .exactmetrics-reports-overview-datagraph-tooltip-title{font-size:30px;color:#6528f5;margin-bottom:18px;font-weight:700}.exactmetrics-reports-doughnut-tooltip .exactmetrics-reports-overview-datagraph-tooltip-number{color:#6528f5;font-size:15px;font-weight:500}#exactmetrics-chartjs-line-overview-tooltip{min-width:100px}.exactmetrics-reports-overview-datagraph-tooltip-number{color:#210f59;font-size:24px;font-weight:400;margin-bottom:5px;display:inline-block;margin-right:5px}.exactmetrics-reports-overview-datagraph-tooltip-trend{color:#23282d;font-size:14px;font-weight:400;display:inline-block}.exactmetrics-reports-overview-datagraph-tooltip-descriptor{color:#9087ac;font-size:12px;font-weight:400;width:100%;clear:both}.exactmetrics-reports-overview-datagraph-tooltip-title{color:#210f59;font-size:12px;font-weight:400;width:100%}#exactmetrics-chartjs-bar-tooltip,.exactmetrics-line-chart-tooltip{opacity:1;position:absolute;-webkit-transform:translate(-50%,-100%);-ms-transform:translate(-50%,-100%);transform:translate(-50%,-100%);margin-top:-20px}#exactmetrics-chartjs-bar-tooltip:after,.exactmetrics-line-chart-tooltip:after{position:absolute;top:100%;width:0;height:0;border-color:#fff rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:10px 9.5px 0;content:"";left:50%;margin-left:-9px;margin-top:-7px}#exactmetrics-chartjs-bar-tooltip:before,.exactmetrics-line-chart-tooltip:before{position:absolute;top:100%;width:0;height:0;border-color:#bcb7cd rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:10px 10.5px 0;content:"";left:50%;margin-left:-10px;margin-top:-6px}#exactmetrics-chartjs-line-age-tooltip .exactmetrics-reports-overview-datagraph-tooltip-number:after{content:"%"}.exactmetrics-report-tabs-navigation{border-bottom:1px solid #e9e7ee}.exactmetrics-report-tabs-navigation button{color:#4d3f7a;font-weight:700;text-align:left;font-size:15px;padding:15px 24px 17px;cursor:pointer;margin:0 0 -1px;position:relative;line-height:1;border-radius:5px 5px 0 0;background:#fff;border:1px solid;border-color:#fff #fff #e9e7ee}@media (max-width:782px){.exactmetrics-report-tabs-navigation button{font-size:14px;padding:13px 20px 15px;text-align:center}}.exactmetrics-report-tabs-navigation button:focus{z-index:10}.exactmetrics-report-tabs-navigation button.exactmetrics-active-tab-button{background:#fff;color:#6528f5;border-color:#e9e7ee #e9e7ee #fff}.exactmetrics-report-tabs{background:#fff}.exactmetrics-report-tabs .exactmetrics-report-tabs-content{padding-top:20px}#mi-custom-line{max-height:330px}.exactmetrics-report-infobox-row{display:-webkit-box;display:-ms-flexbox;display:flex;background:#f4f3f7;border-radius:10px;padding:24px 60px}@media (max-width:782px){.exactmetrics-report-infobox-row{-ms-flex-flow:wrap;flex-flow:wrap;padding:20px}}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:25%;border-left:1px solid #bcb7cd;padding:0 10px 0 60px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-info{display:inline-block;font-size:12px;margin-left:6px;vertical-align:middle}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child{border-left:none;padding-left:0}@media (max-width:782px){.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:100%;border-left:none;border-top:1px solid #bcb7cd;padding:24px 0}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child{border-top:0;padding-top:0}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:last-child{padding-bottom:0}}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-report-title{text-overflow:ellipsis;overflow:hidden;white-space:pre;line-height:1.2;color:#4d3f7a;font-size:13px;display:inline-block;vertical-align:middle;padding-left:0}@media (max-width:991px){.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-report-title{padding-left:0}}.exactmetrics-report-title{font-size:24px;color:#210f59;font-weight:700;margin-top:0;line-height:1.4;display:inline-block}@media (max-width:762px){.exactmetrics-report-title{padding-left:60px}.exactmetrics-report-title.exactmetrics-has-pagination{margin-bottom:80px}}.exactmetrics-report-title:before{width:40px;height:40px;border-radius:50%;background:rgba(33,15,89,.1);right:100%;margin-right:30px;color:#210f59;text-align:center;line-height:40px;font-size:15px;-webkit-transition:background .2s ease 0ms,color .2s ease 0ms;transition:background .2s ease 0ms,color .2s ease 0ms;vertical-align:middle;margin-top:-2px}@media (max-width:762px){.exactmetrics-report-title:before{position:absolute;left:0}}.exactmetrics-reports-infobox-number{font-size:32px;font-weight:500;line-height:1;margin-top:4px;color:#210f59;width:100%;display:block}@media (max-width:782px){.exactmetrics-reports-infobox-number{font-size:36px;float:none}}.exactmetrics-reports-infobox-compare,.exactmetrics-reports-infobox-prev{display:inline-block}@media (max-width:1280px){.exactmetrics-reports-infobox-compare,.exactmetrics-reports-infobox-prev{float:none;clear:both}}.exactmetrics-reports-infobox-prev{font-size:14px;margin-top:4px;margin-right:5px}.exactmetrics-reports-infobox-prev .exactmetrics-arrow{vertical-align:middle}.exactmetrics-reports-infobox-compare{font-size:12px;color:#9087ac;display:inline-block}.exactmetrics-buttons-toggle{margin-right:25px}.exactmetrics-report-flex{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:991px){.exactmetrics-report-flex{-ms-flex-flow:wrap;flex-flow:wrap}}.exactmetrics-reports-pie-chart{width:50%;padding:32px 20px 32px 32px;background:#fff;position:relative}.exactmetrics-reports-pie-chart:first-child{border-right:1px solid #e9e7ee;padding-left:0}@media (max-width:991px){.exactmetrics-reports-pie-chart:first-child{border-right:0}}@media (max-width:991px){.exactmetrics-reports-pie-chart{width:100%;border:none;padding-left:0;padding-right:0}}.exactmetrics-reports-pie-chart .exactmetrics-reports-pie-chart-holder{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;margin-left:20px}@media (max-width:781px){.exactmetrics-reports-pie-chart .exactmetrics-reports-pie-chart-holder{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-left:0;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart{margin:0 12px 0 0}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart-legend{margin:24px 12px;-ms-flex-negative:0;flex-shrink:0;-ms-flex-item-align:center;align-self:center}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart-legend li{background:#f4f3f7;border-radius:10px;padding:10px 20px}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart-tooltip{position:absolute;pointer-events:none}.exactmetrics-pie-chart-legend-color{width:25px;height:25px;display:inline-block;border-radius:50%;margin:7px 17px 7px 0;float:left}.exactmetrics-pie-chart-legend-text{display:inline-block;font-size:15px;color:#9087ac;width:calc(100% - 50px)}.exactmetrics-pie-chart-legend-value{color:#210f59;font-size:18px;font-weight:500;display:inline-block;width:calc(100% - 50px)}.exactmetrics-table-box{background:#fff;width:100%;padding-top:32px;position:relative}.exactmetrics-table-box:first-child{margin-left:0;margin-top:0}@media (max-width:991px){.exactmetrics-table-box{margin-left:0;margin-top:20px}}.exactmetrics-table-box-footer{background:#fff;padding:20px 0 21px;text-align:right}.exactmetrics-report-row-border-top .exactmetrics-table-box-footer{padding-bottom:46px}.exactmetrics-table-box-footer:after{display:table;clear:both;content:""}.exactmetrics-table-box-footer .exactmetrics-button [class*=monstericon-]{margin-left:18px}@media (max-width:782px){.exactmetrics-table-box-footer>.exactmetrics-button{width:100%;text-align:center}}.exactmetrics-table-list-item{padding:12px 20px;min-height:42px;font-size:15px;display:-webkit-box;display:-ms-flexbox;display:flex;border-radius:3px}table .exactmetrics-table-list-item{display:table-row}.exactmetrics-table-list-item:nth-child(odd){background-color:#f4f3f7}.exactmetrics-table-list-item .exactmetrics-reports-list-text{color:#210f59;white-space:pre;text-overflow:ellipsis;overflow:hidden;vertical-align:middle;display:inline-block;width:100%;padding:1px;margin:-1px;font-weight:500}.exactmetrics-table-list-item .exactmetrics-reports-list-text a{display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis;color:#210f59}.exactmetrics-table-list-item .exactmetrics-reports-list-text img{display:inline-block;margin-right:10px;vertical-align:middle}.exactmetrics-table-list-item .exactmetrics-flag{-webkit-transform:scale(.5);-ms-transform:scale(.5);transform:scale(.5);display:inline-block;margin:-6px 0 -10px -8px}.exactmetrics-table-list-item a{text-decoration:none;color:#393f4c}.exactmetrics-table-list-item a:focus,.exactmetrics-table-list-item a:hover{color:#777}.exactmetrics-table-list-item .exactmetrics-reports-list-count{display:inline-block;min-width:30px;color:#657086;font-weight:400}.exactmetrics-table-list-item .exactmetrics-reports-list-number{color:#393f4c;font-size:15px;text-align:right;display:block;padding-left:5px}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:absolute;top:32px;right:0}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-table-box-pagination{float:none;width:100%;margin-top:20px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;top:65px}}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination span{color:#9087ac}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle{position:absolute;top:100%;background:#fff;border:1px solid #f4f3f7;border-radius:3px;margin-top:6px;-webkit-box-shadow:0 10px 20px rgba(48,44,62,.05);box-shadow:0 10px 20px rgba(48,44,62,.05);padding:7px 8px;width:100%;left:0}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle .exactmetrics-button{width:100%;border-radius:3px;border:none;background:#fff}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle .exactmetrics-button.exactmetrics-selected-interval,body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle .exactmetrics-button:focus,body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle .exactmetrics-button:hover{background:#f4f3f7}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-pagination-selector span{color:#37276a}.exactmetrics-pagination-selector{background:#f4f3f7;padding:8px 35px 8px 20px;border:none;border-radius:3px;font-size:15px;line-height:1.7;cursor:pointer}.exactmetrics-pagination-selector:after{width:0;height:0;border-color:#9087ac rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:5px 3.5px 0;content:"";position:absolute;top:50%;margin-top:-1px;right:20px}@media (max-width:792px){.exactmetrics-pagination-selector{width:100%;text-align:left;top:65px}}.exactmetrics-table-box-list{min-height:calc(100% - 147px);position:relative}.exactmetrics-table-box-list .exactmetrics-table-no-data{top:0;bottom:0;left:0;right:0}.exactmetrics-table-box-table .exactmetrics-table-item-content{display:-webkit-box;display:-ms-flexbox;display:flex;word-break:break-all}@media (max-width:782px){.exactmetrics-table-box-table .exactmetrics-table-item-content{-ms-flex-flow:wrap;flex-flow:wrap}}.exactmetrics-table-box-mobile .exactmetrics-table-box-table{overflow:auto}.exactmetrics-table-box-mobile .exactmetrics-table-box-table tr{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly;padding:0}.exactmetrics-table-box-mobile .exactmetrics-table-box-table tr.exactmetrics-table-list-item-active td{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;padding-left:0;margin-left:50px;border-top:1px solid #d6e2ed;font-size:13px;color:#657086;padding-top:8px;padding-bottom:8px}.exactmetrics-table-box-mobile .exactmetrics-table-box-table tr.exactmetrics-table-list-item-active td.exactmetrics-table-cell-1{margin-left:0;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;width:100%;padding-left:20px;font-size:15px;color:#210f59;padding-top:12px;padding-bottom:12px;border-top:none}.exactmetrics-table-box-mobile .exactmetrics-table-box-table tr.exactmetrics-table-list-item-active td.exactmetrics-table-cell-1 .exactmetrics-table-item-content:after{-webkit-transform:translateY(-50%) rotate(0);-ms-transform:translateY(-50%) rotate(0);transform:translateY(-50%) rotate(0)}.exactmetrics-table-box-mobile .exactmetrics-table-box-table td,.exactmetrics-table-box-mobile .exactmetrics-table-box-table th{display:none;width:100%}.exactmetrics-table-box-mobile .exactmetrics-table-box-table td.exactmetrics-table-cell-1,.exactmetrics-table-box-mobile .exactmetrics-table-box-table th.exactmetrics-table-cell-1{display:block;width:100%}.exactmetrics-table-box-mobile .exactmetrics-table-box-table td.exactmetrics-table-cell-1 .exactmetrics-table-item-content,.exactmetrics-table-box-mobile .exactmetrics-table-box-table th.exactmetrics-table-cell-1 .exactmetrics-table-item-content{padding-right:30px;position:relative;white-space:pre;text-overflow:ellipsis;overflow:hidden;width:100%}.exactmetrics-table-box-mobile .exactmetrics-table-box-table td.exactmetrics-table-cell-1 .exactmetrics-table-item-content:after,.exactmetrics-table-box-mobile .exactmetrics-table-box-table th.exactmetrics-table-cell-1 .exactmetrics-table-item-content:after{content:"\F01F";display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;position:absolute;right:10px;top:50%;-webkit-transform:translateY(-50%) rotate(180deg);-ms-transform:translateY(-50%) rotate(180deg);transform:translateY(-50%) rotate(180deg);color:#9087ac;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}.exactmetrics-table-box-mobile .exactmetrics-table-box-table .exactmetrics-table-mobile-heading{min-width:125px}.exactmetrics-table-box-mobile .exactmetrics-table-box-table .exactmetrics-table-list-item-empty td:first-child .exactmetrics-table-item-content:after{display:none}.exactmetrics-table-box-table table{width:100%;border-collapse:collapse}.exactmetrics-table-box-mobile .exactmetrics-table-box-table table{table-layout:fixed}.exactmetrics-table-box-table th{text-align:left;font-size:12px;color:#9087ac;text-transform:uppercase;letter-spacing:.08em}.exactmetrics-table-box-table td,.exactmetrics-table-box-table th{border:none;padding:12px 10px;line-height:19px}.exactmetrics-table-box-table td:first-child,.exactmetrics-table-box-table th:first-child{padding-left:20px}.exactmetrics-table-box-table td:last-child,.exactmetrics-table-box-table th:last-child{padding-right:20px}.exactmetrics-report-2-columns{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.exactmetrics-report-2-columns .exactmetrics-table-box{width:50%}@media (max-width:991px){.exactmetrics-report-2-columns .exactmetrics-table-box{width:100%}}.exactmetrics-report-2-columns.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:50%}@media (max-width:782px){.exactmetrics-report-2-columns.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:100%}}.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(odd){padding-right:32px;border-right:1px solid #e9e7ee}@media (max-width:991px){.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(odd){padding-right:0;border-right:none}}.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(2n){padding-left:32px}@media (max-width:991px){.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(2n){padding-left:0}}.exactmetrics-report-dimensions .exactmetrics-table-box{border-top:1px solid #e9e7ee;padding-left:32px;padding-right:32px}.exactmetrics-report-dimensions .exactmetrics-report-2-columns{margin-left:-32px;margin-right:-32px}.exactmetrics-report-flex .exactmetrics-report-box{width:50%}@media (max-width:782px){.exactmetrics-report-flex .exactmetrics-report-box{width:100%;margin-top:20px}.exactmetrics-report-flex .exactmetrics-report-box:first-child{margin-top:0}}.exactmetrics-reports-tooltip{font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.exactmetrics-arrow{width:10px;height:11px;display:inline-block;background-size:contain;background-repeat:no-repeat}.exactmetrics-arrow.exactmetrics-down{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAXVBMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjip09rAAAAHnRSTlMA8IciAeKVlnAwD/bp1ci5on1URtyyl2dhPzccFQOiNcZVAAAAg0lEQVQoz9XNWQ6DMAxFUUNCmwBl7Dx4/8tsjCAvQd4A98OWdT5MaOr74UtaLTOPqhRByuNL7fxefs9ZoOPmlYsdmB3RLdzFOxV759BMHQv5REqWJjKV7NZEGRc4WVqpMqu4CBtdP4s8IoAujQwACAFAAI3OABAgJ4BGgJzkuVrt0+sPB0gVjZ7FTpgAAAAASUVORK5CYII=)}.exactmetrics-arrow.exactmetrics-down.exactmetrics-green{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMADloG+qFg0bOrm1RNGJCAd3FoRe/Zyci8kjIuLCxb7jsAAACJSURBVCjP3cpbFsIgDEXRC8G29mVrfWvmP00DcREtHYHnI0A2sB7T5LEVnZh52RLHkv8DeblCnhTnnc/DSlquZXWQd+1+ZIwrwoWlqzORv7EBS4jnjbLMCUYAfaKGPlIlaIFMO5UuKGidUhp6BYwsAULOhxVYldFewagAowxFxwiNQkkKZf38DW9jKhaFyDomEwAAAABJRU5ErkJggg==)}.exactmetrics-arrow.exactmetrics-up{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMA8Icj45jrlzD20bqkfXJkV0sUD9zWxbaLcT43HO3asg8AAACASURBVCjP3clJFsIgEADRisRA5slZuf81ReQ1UZILpBa1+SyaDeup3OotsPa4AUIJCCUQKYVIERKKcC7dKqEIp1fmfugDRcgVXui+JFAogtB60nDxYBDh5mng6p49WQj6IyNTZcsHP0JjbQfMd8Of0I9IIqEdSOGkXZWhrpsJ6Q1+nBSNjDcDLgAAAABJRU5ErkJggg==)}.exactmetrics-arrow.exactmetrics-up.exactmetrics-red{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAZCAMAAAAc9R5vAAAAV1BMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjhHHlCMAAAAHHRSTlMALTzj+N0V79kkHNVD0U5IIBnqy8K3VTcSB704vhc5cQAAAJRJREFUKM/VjUkSwyAMBIeACRhsvC+J/v/ORErZcOADmYOm1F0lIccH51HJoIl0xbQNfaOHKhdT4ZKmLfnoiGrGOirixpsH3p8ySmM7+Zp4bvIrWOaH8MkrrofXlzlmOaHwE1ATd2fx4jZvXAK7/FmgmUdkgWj4hFSPUqA3ZBIQ1w2FELMm5GTB+XOxV8S5EM3nvX4AV4MVrf6KAvgAAAAASUVORK5CYII=)}.exactmetrics-reports-overview-datagraph-tooltip-trend{font-weight:700}.exactmetrics-report-box{background:#fff;padding:32px 0;position:relative}.exactmetrics-report-box-icon-heading{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:10px}.exactmetrics-report-box-icon-heading h3{color:#6528f5;margin-left:15px}.exactmetrics-realtime-large{font-size:120px;text-align:center;line-height:1.4;color:#32a27a}.exactmetrics-realtime-active{text-align:center;width:100%;font-size:17px;line-height:1;margin-top:-2px;color:#210f59;font-weight:500}.exactmetrics-realtime-box-content .exactmetrics-line-chart-tooltip{max-width:115px}.exactmetrics-realtime-count-box{width:357px;height:357px;margin:50px auto;border-radius:50%;border:15px solid #e9e7ee;text-align:center;padding-top:52px}@media (max-width:782px){.exactmetrics-realtime-count-box{width:300px;height:300px;padding-top:40px}}.exactmetrics-realtime-count-box h3{display:inline-block;font-size:24px;color:#210f59;line-height:1.4;margin:0}#exactmetrics-chartjs-pie-age-tooltip{margin-left:23px;min-width:95px}.exactmetrics-blur .exactmetrics-report-top{pointer-events:none}.exactmetrics-blur .exactmetrics-report-row{-webkit-filter:blur(5px);filter:blur(5px)}.exactmetrics-blur .exactmetrics-report{min-height:850px}.exactmetrics-reports-referral-icon{vertical-align:middle;margin-right:10px;margin-left:2px}.exactmetrics-upsell-inline{background-image:url(../img/reports-upsell-bg.png);background-repeat:no-repeat;background-position:100% 0;background-color:#fff;background-size:452px}@media (max-width:991px){.exactmetrics-upsell-inline .exactmetrics-upsell-inline-content{margin:-20px;padding:20px;background:hsla(0,0%,100%,.3)}}.exactmetrics-upsell-content{max-width:750px}.exactmetrics-upsell-content p{font-size:16px;color:#393f4c;line-height:1.8}.exactmetrics-upsell-content .exactmetrics-light{color:#657086}.exactmetrics-upsell-content .exactmetrics-button{font-size:17px;font-weight:700;padding:15px 25px;line-height:1}@media (max-width:782px){.exactmetrics-upsell-content .exactmetrics-button{font-size:15px}}.exactmetrics-upsell-overlay{position:absolute;top:125px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:750px;max-width:100%;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);background-color:#fff;border:1px solid #d6e2ed}.exactmetrics-upsell-overlay .exactmetrics-upsell-top{padding:0 40px}@media (max-width:782px){.exactmetrics-upsell-overlay .exactmetrics-upsell-top{padding:0 20px}}@media (max-width:782px){.exactmetrics-upsell-overlay{top:70px;width:calc(100% - 40px)}}.exactmetrics-upsell-overlay h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.exactmetrics-upsell-overlay h4{font-size:16px;line-height:140%;color:#444}.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:16px auto 24px;max-width:520px;display:grid;grid-gap:10px}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul.columns-1{grid-template-columns:1fr}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul.columns-2{grid-template-columns:1fr 1fr}.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:#6528f5;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:#fff;font-size:14px;text-align:center;line-height:20px;top:-1px}.exactmetrics-upsell-overlay .exactmetrics-upsell-content .exactmetrics-button{font-weight:400;font-size:16px;margin-top:10px}.exactmetrics-upsell-overlay a{color:#393f4c}.exactmetrics-upsell-overlay a:hover{text-decoration:none}.exactmetrics-center,.exactmetrics-mobile-upsell{text-align:center}.exactmetrics-mobile-upsell .exactmetrics-notice{border-top:1px solid #d6e2ed;border-right:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.exactmetrics-mobile-upsell .exactmetrics-notice-inner{margin-top:0}@media (min-width:783px){.exactmetrics-mobile-upsell{display:none}}.exactmetrics-mobile-upsell .exactmetrics-notice-success .exactmetrics-notice-button{margin-right:0}.exactmetrics-overview-upsell-desktop{margin:0 -32px}@media (max-width:782px){.exactmetrics-overview-upsell-desktop{display:none}}.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-left{width:55%}@media (max-width:969px){.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-left{width:100%}}.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-right{width:45%}.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-right .exactmetrics-em-upsell-screen{bottom:auto;height:490px;width:779px;left:0}.exactmetrics-overview-upsell-desktop .exactmetrics-em-logo-text{width:376px;margin-right:142px}.exactmetrics-overview-upsell-desktop .exactmetrics-em-logo-text:before{content:"";height:48px;width:127px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAP4AAABgCAMAAAAKJD9QAAAAV1BMVEUAAAAgD1ghD1kgC1ghD1khD1ogD1ggEFEgDlkgDlggDlghDlkgDlkiDlkgEFghD1kgDlggEF0gDlggD1ogD1chD1kgD1kgDVgiDlkgD1ggEFogEFUhD1k1ONBfAAAAHHRSTlMAv98g/u9AEHCAYI+vnyHPUBGggDDuvkF/vjExfxARwwAABb9JREFUeNrlnO3O2yAMhfkIhAJp0y7tuo37v85p0qRqC+XENm+Wbed3hXhiY4NNUf+ElpgmbUz5IXPRU5it2ia9VVMKfsugSW9Tnk6zl5OPPmlX1nI5LAqrkGRytOh7Fop08iL27FqzTQvEJ0tHgE+UmSwP3ieHB48jGR+PCfCp4nwAr3t83cKSmQE+/QOw4bGSBfh0pRHg8z0Ky956DV64MrYrfhmem+mD6zbbwpZbAD5Vj3ET/Fl3/LqlN78ubF228M+OO7rF+HJ+XQT8mP5U2DILxJevKF0ESgD+OhWBhoDw5ebSsgm26S8FiBoAikyf+uKXu20FPUDP4C9C2b745dGwvSlFzt8XX3fGHzzw/L78RSrfF7+Yd/hT6aIhAnyzFsH8esOADpifl/GM0VobB8PL0sQ39ZN1MO/MD/FtrT6Taat/bmegFO34mmo2W9M1wftifdCE8UnnlmGpBf0GkD6td4v+5kB4JeMrW13Xjoj/kjUwmeKIov2bwaPBuwuMj2fhMT7gh3up8NbrPWeDfLc8/NEA78f4mH8YN7v+iXk4fPDwlQexn4ivfCM1vXQDZxiyAwyRgA/o3EjCx2TpdyOCEyzjfHwfefixrLUI8O2Gxa8b1QGor3X+Tzz8sTJaJOFjtrv6RZ8BPYv/PjbwadM9SfBjLfZh4xtE/1Ksm5+Hn8pKkwT/XMG3qx+AQgsj/t15+KEzvnJg239DyQFL14aYWfgRZD4y/qWNf3UFfHCsc22MBwvf98bXbfzIc328axzGvwFfV8MWVaY2Sifnzx+If61XRLBw8nxw8E+9Q59p4s/A+ALzDyMDP3fO+9d24ruBvChIfkOs4pM/Y0D4RLccVnmBGfZBApno+As48GN8fOa5tH1jVhzpKinGxye0EeOTTvy57RsjACVsrqn4FgRiMv6z3ek6kRoh1BjjMT42fhbgW1DqBoEWCGWYQMR/lopi52KXQZuChmiWSxgfVxytpNQJNvROsPTx5DMFf0ygzUPF9wa2eUAtBAg1Si7b8e3TlaoiE99r3OQ716bM1Leykqngu9NaaTKgJUnCH5eY3JYW5Fka+Ntj3VWR6tNHdng/A3xp5hPjG9sXf4gAf1JcfQR+VH3xv6i/Cd90v9uDwlU+EL6zAJ/j+n9P6AuqL/4nPGXTN/ExhTvx8vHk2x6YRbrfwdRy+j02vXL8pBC+/EbnZY8jj9xWcnyzoDnje6/Udkpg4xuveuK7yvWk/csd8v+yKN31rzxztTXN0QyKXQTpxvrTQsvj/q/vtfSNYuC7ySvVDd8kT62rp16F7kzGdzkC39Mk+BEarZP3R9DmgOAmp7iw6unR/1AAyQ5Nu3+Ty4I6P0W43JHRDdaXdmlxXtSu+KPjuL8GPsM3ftgXX82cfy+Fwlr9eAkNdj/8hvt7GLLFwf9sRJdb5PgC90+Flfvx7agd8Vvu/wBRS3yxLVRHUDviN90/wBFFO/+vsmuNcnywku+Wbv4yiRZ+MXZP/Lb7X8CQgB/R142/J37b/UtimL9M4xbPN63d9v74V0eP5LkUZvwLrllR3h9fzfSzz9nxXrwYE2hP7IUvdP/AevIkvm2j2p3xsfvPYFTyB/AalCl3xMfuf7fY/evKc8Xtnwb0EXfDH1Zgmb6RmdtFmOBfwcPOSYOm9O742JZDkD3aYbSepklfHOonLOoP46uA5oXPLYJuyh/HB39PAs8XCPuSB8A/O3r2u5ou9EfAf+P+Hm3f5fTHwAfuD/yfT38U/Lr7Z1D5ysKodxh8FcAM+z9a5dWB8JUGmz/whAZVX6w6FH7d/R+9H6x73YM/Fv6bc1z6iOcKL4s6HL7SIPv1eqzyHpQ6IP7ZgewnXAGv+wOHxG+4P5TXBPiD4r9x/3nje604CegwKnVc/LNrZD+s2H6k+uTpT5TfZPhpNeCXlgGCrulEeapav6mAWPWfaJlP+ecD9c6YfNv8QP13jdUZgGL72MYAAAAASUVORK5CYII=);background-size:contain;position:absolute;left:100%;top:0;margin-left:15px}.exactmetrics-report-realtime .exactmetrics-table-box th:first-child{width:auto}.exactmetrics-reports-list-title{display:inline-block;word-break:break-all}@media (max-width:782px){.exactmetrics-reports-list-title{width:calc(100% - 30px);text-overflow:ellipsis;overflow:hidden}}.exactmetrics-report-scroll{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;padding-top:32px}.exactmetrics-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-left:25px}@media (max-width:991px){.exactmetrics-report-scroll:nth-child(2){width:100%;margin-left:0;margin-top:25px}}@media (max-width:782px){.exactmetrics-report-scroll{width:100%;margin-left:0}}.exactmetrics-report-scroll>h3{position:absolute;top:0}.exactmetrics-report-scroll .exactmetrics-realtime-active{margin:0 0 50px}.exactmetrics-report-scroll .exactmetrics-realtime-box-content{margin:25px 0}.exactmetrics-report-scroll .exactmetrics-realtime-large{line-height:1;margin:50px 0 0;font-size:80px}@media (max-width:782px){.exactmetrics-report-scroll .exactmetrics-realtime-large{margin-top:25px}}.exactmetrics-not-authenticated-notice{position:fixed;top:40%;left:50%;width:750px;max-width:100%;margin-left:-295px;background:#fff;padding:0 20px 20px;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);border:1px solid #d6e2ed;text-align:center}@media (min-width:783px){.folded .exactmetrics-not-authenticated-notice{margin-left:-357px}}@media (max-width:960px){.exactmetrics-not-authenticated-notice{margin-left:-357px}}@media (max-width:750px){.exactmetrics-not-authenticated-notice{left:0;margin-left:0}}@media (min-width:750px) and (max-width:782px){.exactmetrics-not-authenticated-notice{margin-left:-375px}}.exactmetrics-not-authenticated-notice .exactmetrics-auth-manual-connect-paragraph{display:none}.exactmetrics-not-authenticated-notice h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate{text-align:center}.exactmetrics-not-authenticated-notice .exactmetrics-license-button{line-height:1;margin-top:20px}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button{font-size:16px;padding:20px 40px;margin:20px 20px 10px;background:#e9e7ee;border-color:#e9e7ee;color:#37276a}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button:focus,.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button:hover{background-color:#f4f3f7;border-color:#f4f3f7;color:#37276a}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-alt{background:#6528f5;border-color:#6528f5;color:#fff}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-alt:focus,.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-alt:hover{background-color:#37276a;border-color:#37276a;color:#fff}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-disabled{background:#e9e7ee;border-color:#e9e7ee;color:#9087ac}.exactmetrics-reports-list-has-overflow{cursor:pointer}.exactmetrics-reports-ecommerce-pie-chart{padding:130px 0 0;width:40%;max-width:100%}@media (max-width:792px){.exactmetrics-reports-ecommerce-pie-chart{width:100%;padding-top:32px}}.exactmetrics-reports-ecommerce-pie-chart .exactmetrics-reports-pie-chart{position:relative;width:225px;text-align:center;padding:0;margin:0 auto;border:none}.exactmetrics-table-no-data{background:url(../img/loading-background.jpg) no-repeat bottom #f4f3f7;height:100%;min-height:300px;text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background-size:cover;border-radius:10px;padding:20px}.exactmetrics-table-no-data h3{font-size:17px;line-height:1.5;color:#210f59}.exactmetrics-product-color{display:inline-block;width:14px;height:14px;margin-right:11px;vertical-align:middle;border-radius:50%}.exactmetrics-report-row-icon-left{position:relative;padding-left:170px}.exactmetrics-report-row-icon-left:before{font-size:50px;position:absolute;left:50px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);color:#9087ac}@media (max-width:782px){.exactmetrics-report-row-icon-left{padding-left:20px}.exactmetrics-report-row-icon-left:before{display:none}}.exactmetrics-admin-page .exactmetrics-lite-datepicker{text-align:center;padding:12px 12px 27px}.exactmetrics-admin-page .exactmetrics-lite-datepicker p{color:#210f59;font-size:15px;line-height:1.5;font-weight:700}.exactmetrics-admin-page .exactmetrics-lite-datepicker .exactmetrics-button-text{color:#32a27a;display:inline-block;width:auto}.exactmetrics-admin-page .exactmetrics-lite-datepicker .exactmetrics-button-text:focus,.exactmetrics-admin-page .exactmetrics-lite-datepicker .exactmetrics-button-text:hover{color:#19865f}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-button{background:#e9e7ee;color:#210f59}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-button:focus,body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-button:hover{background:#bcb7cd}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-accordion-item-details,body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-pdf-score{display:block!important}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-progress-circle{display:none}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-reports-intervals-dropdown{min-width:250px}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-reports-intervals-dropdown .exactmetrics-button{background:rgba(0,0,0,0);color:#32a27a}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-reports-intervals-dropdown .exactmetrics-button:focus,body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-reports-intervals-dropdown .exactmetrics-button:hover{color:#19865f}body.exactmetrics-reporting-page .exactmetrics-notice-error.exactmetrics-license_expired{display:none!important}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .exactmetrics-swal-icons{display:none}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .swal2-popup{width:600px;padding:2em 3.25em}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .swal2-actions{display:none!important}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .swal2-footer{display:block!important;text-align:center;padding-top:20px}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .swal2-footer a{display:inline-block}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .swal2-footer a.swal2-styled{padding-top:16px;padding-bottom:20px;margin-bottom:15px;text-decoration:none}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .swal2-footer a:nth-child(3){color:#393f4c!important}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .exactmetrics-expired-license-alert{text-align:left;padding-right:39px}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .exactmetrics-expired-license-alert h3{font-size:40px;margin:0 0 8px;padding:0}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .exactmetrics-expired-license-alert h4{font-size:20px;margin:0 0 10px;padding:0}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .exactmetrics-expired-license-alert p{font-size:16px;margin:0 0 10px;padding:0}
1
  /*!
2
  * Generated with CSS Flag Sprite generator (https://www.flag-sprites.com/)
3
+ */.exactmetrics-flag{display:inline-block;width:32px;height:32px;background:url(../img/flags.png) no-repeat}.exactmetrics-flag.exactmetrics-flag-ad{background-position:-32px 0}.exactmetrics-flag.exactmetrics-flag-ae{background-position:-64px 0}.exactmetrics-flag.exactmetrics-flag-af{background-position:-96px 0}.exactmetrics-flag.exactmetrics-flag-ag{background-position:-128px 0}.exactmetrics-flag.exactmetrics-flag-ai{background-position:-160px 0}.exactmetrics-flag.exactmetrics-flag-al{background-position:-192px 0}.exactmetrics-flag.exactmetrics-flag-am{background-position:-224px 0}.exactmetrics-flag.exactmetrics-flag-an{background-position:-256px 0}.exactmetrics-flag.exactmetrics-flag-ao{background-position:-288px 0}.exactmetrics-flag.exactmetrics-flag-ar{background-position:-320px 0}.exactmetrics-flag.exactmetrics-flag-as{background-position:-352px 0}.exactmetrics-flag.exactmetrics-flag-at{background-position:-384px 0}.exactmetrics-flag.exactmetrics-flag-au{background-position:-416px 0}.exactmetrics-flag.exactmetrics-flag-aw{background-position:-448px 0}.exactmetrics-flag.exactmetrics-flag-ax{background-position:-480px 0}.exactmetrics-flag.exactmetrics-flag-az{background-position:0 -32px}.exactmetrics-flag.exactmetrics-flag-ba{background-position:-32px -32px}.exactmetrics-flag.exactmetrics-flag-bb{background-position:-64px -32px}.exactmetrics-flag.exactmetrics-flag-bd{background-position:-96px -32px}.exactmetrics-flag.exactmetrics-flag-be{background-position:-128px -32px}.exactmetrics-flag.exactmetrics-flag-bf{background-position:-160px -32px}.exactmetrics-flag.exactmetrics-flag-bg{background-position:-192px -32px}.exactmetrics-flag.exactmetrics-flag-bh{background-position:-224px -32px}.exactmetrics-flag.exactmetrics-flag-bi{background-position:-256px -32px}.exactmetrics-flag.exactmetrics-flag-bj{background-position:-288px -32px}.exactmetrics-flag.exactmetrics-flag-bl{background-position:-320px -32px}.exactmetrics-flag.exactmetrics-flag-bm{background-position:-352px -32px}.exactmetrics-flag.exactmetrics-flag-bn{background-position:-384px -32px}.exactmetrics-flag.exactmetrics-flag-bo{background-position:-416px -32px}.exactmetrics-flag.exactmetrics-flag-br{background-position:-448px -32px}.exactmetrics-flag.exactmetrics-flag-bs{background-position:-480px -32px}.exactmetrics-flag.exactmetrics-flag-bt{background-position:0 -64px}.exactmetrics-flag.exactmetrics-flag-bw{background-position:-32px -64px}.exactmetrics-flag.exactmetrics-flag-by{background-position:-64px -64px}.exactmetrics-flag.exactmetrics-flag-bz{background-position:-96px -64px}.exactmetrics-flag.exactmetrics-flag-ca{background-position:-128px -64px}.exactmetrics-flag.exactmetrics-flag-cd{background-position:-160px -64px}.exactmetrics-flag.exactmetrics-flag-cf{background-position:-192px -64px}.exactmetrics-flag.exactmetrics-flag-cg{background-position:-224px -64px}.exactmetrics-flag.exactmetrics-flag-ch{background-position:-256px -64px}.exactmetrics-flag.exactmetrics-flag-ci{background-position:-288px -64px}.exactmetrics-flag.exactmetrics-flag-ck{background-position:-320px -64px}.exactmetrics-flag.exactmetrics-flag-cl{background-position:-352px -64px}.exactmetrics-flag.exactmetrics-flag-cm{background-position:-384px -64px}.exactmetrics-flag.exactmetrics-flag-cn{background-position:-416px -64px}.exactmetrics-flag.exactmetrics-flag-co{background-position:-448px -64px}.exactmetrics-flag.exactmetrics-flag-cr{background-position:-480px -64px}.exactmetrics-flag.exactmetrics-flag-cu{background-position:0 -96px}.exactmetrics-flag.exactmetrics-flag-cv{background-position:-32px -96px}.exactmetrics-flag.exactmetrics-flag-cw{background-position:-64px -96px}.exactmetrics-flag.exactmetrics-flag-cy{background-position:-96px -96px}.exactmetrics-flag.exactmetrics-flag-cz{background-position:-128px -96px}.exactmetrics-flag.exactmetrics-flag-de{background-position:-160px -96px}.exactmetrics-flag.exactmetrics-flag-dj{background-position:-192px -96px}.exactmetrics-flag.exactmetrics-flag-dk{background-position:-224px -96px}.exactmetrics-flag.exactmetrics-flag-dm{background-position:-256px -96px}.exactmetrics-flag.exactmetrics-flag-do{background-position:-288px -96px}.exactmetrics-flag.exactmetrics-flag-dz{background-position:-320px -96px}.exactmetrics-flag.exactmetrics-flag-ec{background-position:-352px -96px}.exactmetrics-flag.exactmetrics-flag-ee{background-position:-384px -96px}.exactmetrics-flag.exactmetrics-flag-eg{background-position:-416px -96px}.exactmetrics-flag.exactmetrics-flag-eh{background-position:-448px -96px}.exactmetrics-flag.exactmetrics-flag-er{background-position:-480px -96px}.exactmetrics-flag.exactmetrics-flag-es{background-position:0 -128px}.exactmetrics-flag.exactmetrics-flag-et{background-position:-32px -128px}.exactmetrics-flag.exactmetrics-flag-eu{background-position:-64px -128px}.exactmetrics-flag.exactmetrics-flag-fi{background-position:-96px -128px}.exactmetrics-flag.exactmetrics-flag-fj{background-position:-128px -128px}.exactmetrics-flag.exactmetrics-flag-fk{background-position:-160px -128px}.exactmetrics-flag.exactmetrics-flag-fm{background-position:-192px -128px}.exactmetrics-flag.exactmetrics-flag-fo{background-position:-224px -128px}.exactmetrics-flag.exactmetrics-flag-fr{background-position:-256px -128px}.exactmetrics-flag.exactmetrics-flag-ga{background-position:-288px -128px}.exactmetrics-flag.exactmetrics-flag-gb{background-position:-320px -128px}.exactmetrics-flag.exactmetrics-flag-gd{background-position:-352px -128px}.exactmetrics-flag.exactmetrics-flag-ge{background-position:-384px -128px}.exactmetrics-flag.exactmetrics-flag-gg{background-position:-416px -128px}.exactmetrics-flag.exactmetrics-flag-gh{background-position:-448px -128px}.exactmetrics-flag.exactmetrics-flag-gi{background-position:-480px -128px}.exactmetrics-flag.exactmetrics-flag-gl{background-position:0 -160px}.exactmetrics-flag.exactmetrics-flag-gm{background-position:-32px -160px}.exactmetrics-flag.exactmetrics-flag-gn{background-position:-64px -160px}.exactmetrics-flag.exactmetrics-flag-gp{background-position:-96px -160px}.exactmetrics-flag.exactmetrics-flag-gq{background-position:-128px -160px}.exactmetrics-flag.exactmetrics-flag-gr{background-position:-160px -160px}.exactmetrics-flag.exactmetrics-flag-gs{background-position:-192px -160px}.exactmetrics-flag.exactmetrics-flag-gt{background-position:-224px -160px}.exactmetrics-flag.exactmetrics-flag-gu{background-position:-256px -160px}.exactmetrics-flag.exactmetrics-flag-gw{background-position:-288px -160px}.exactmetrics-flag.exactmetrics-flag-gy{background-position:-320px -160px}.exactmetrics-flag.exactmetrics-flag-hk{background-position:-352px -160px}.exactmetrics-flag.exactmetrics-flag-hn{background-position:-384px -160px}.exactmetrics-flag.exactmetrics-flag-hr{background-position:-416px -160px}.exactmetrics-flag.exactmetrics-flag-ht{background-position:-448px -160px}.exactmetrics-flag.exactmetrics-flag-hu{background-position:-480px -160px}.exactmetrics-flag.exactmetrics-flag-ic{background-position:0 -192px}.exactmetrics-flag.exactmetrics-flag-id{background-position:-32px -192px}.exactmetrics-flag.exactmetrics-flag-ie{background-position:-64px -192px}.exactmetrics-flag.exactmetrics-flag-il{background-position:-96px -192px}.exactmetrics-flag.exactmetrics-flag-im{background-position:-128px -192px}.exactmetrics-flag.exactmetrics-flag-in{background-position:-160px -192px}.exactmetrics-flag.exactmetrics-flag-iq{background-position:-192px -192px}.exactmetrics-flag.exactmetrics-flag-ir{background-position:-224px -192px}.exactmetrics-flag.exactmetrics-flag-is{background-position:-256px -192px}.exactmetrics-flag.exactmetrics-flag-it{background-position:-288px -192px}.exactmetrics-flag.exactmetrics-flag-je{background-position:-320px -192px}.exactmetrics-flag.exactmetrics-flag-jm{background-position:-352px -192px}.exactmetrics-flag.exactmetrics-flag-jo{background-position:-384px -192px}.exactmetrics-flag.exactmetrics-flag-jp{background-position:-416px -192px}.exactmetrics-flag.exactmetrics-flag-ke{background-position:-448px -192px}.exactmetrics-flag.exactmetrics-flag-kg{background-position:-480px -192px}.exactmetrics-flag.exactmetrics-flag-kh{background-position:0 -224px}.exactmetrics-flag.exactmetrics-flag-ki{background-position:-32px -224px}.exactmetrics-flag.exactmetrics-flag-km{background-position:-64px -224px}.exactmetrics-flag.exactmetrics-flag-kn{background-position:-96px -224px}.exactmetrics-flag.exactmetrics-flag-kp{background-position:-128px -224px}.exactmetrics-flag.exactmetrics-flag-kr{background-position:-160px -224px}.exactmetrics-flag.exactmetrics-flag-kw{background-position:-192px -224px}.exactmetrics-flag.exactmetrics-flag-ky{background-position:-224px -224px}.exactmetrics-flag.exactmetrics-flag-kz{background-position:-256px -224px}.exactmetrics-flag.exactmetrics-flag-la{background-position:-288px -224px}.exactmetrics-flag.exactmetrics-flag-lb{background-position:-320px -224px}.exactmetrics-flag.exactmetrics-flag-lc{background-position:-352px -224px}.exactmetrics-flag.exactmetrics-flag-li{background-position:-384px -224px}.exactmetrics-flag.exactmetrics-flag-lk{background-position:-416px -224px}.exactmetrics-flag.exactmetrics-flag-lr{background-position:-448px -224px}.exactmetrics-flag.exactmetrics-flag-ls{background-position:-480px -224px}.exactmetrics-flag.exactmetrics-flag-lt{background-position:0 -256px}.exactmetrics-flag.exactmetrics-flag-lu{background-position:-32px -256px}.exactmetrics-flag.exactmetrics-flag-lv{background-position:-64px -256px}.exactmetrics-flag.exactmetrics-flag-ly{background-position:-96px -256px}.exactmetrics-flag.exactmetrics-flag-ma{background-position:-128px -256px}.exactmetrics-flag.exactmetrics-flag-mc{background-position:-160px -256px}.exactmetrics-flag.exactmetrics-flag-md{background-position:-192px -256px}.exactmetrics-flag.exactmetrics-flag-me{background-position:-224px -256px}.exactmetrics-flag.exactmetrics-flag-mf{background-position:-256px -256px}.exactmetrics-flag.exactmetrics-flag-mg{background-position:-288px -256px}.exactmetrics-flag.exactmetrics-flag-mh{background-position:-320px -256px}.exactmetrics-flag.exactmetrics-flag-mk{background-position:-352px -256px}.exactmetrics-flag.exactmetrics-flag-ml{background-position:-384px -256px}.exactmetrics-flag.exactmetrics-flag-mm{background-position:-416px -256px}.exactmetrics-flag.exactmetrics-flag-mn{background-position:-448px -256px}.exactmetrics-flag.exactmetrics-flag-mo{background-position:-480px -256px}.exactmetrics-flag.exactmetrics-flag-mp{background-position:0 -288px}.exactmetrics-flag.exactmetrics-flag-mq{background-position:-32px -288px}.exactmetrics-flag.exactmetrics-flag-mr{background-position:-64px -288px}.exactmetrics-flag.exactmetrics-flag-ms{background-position:-96px -288px}.exactmetrics-flag.exactmetrics-flag-mt{background-position:-128px -288px}.exactmetrics-flag.exactmetrics-flag-mu{background-position:-160px -288px}.exactmetrics-flag.exactmetrics-flag-mv{background-position:-192px -288px}.exactmetrics-flag.exactmetrics-flag-mw{background-position:-224px -288px}.exactmetrics-flag.exactmetrics-flag-mx{background-position:-256px -288px}.exactmetrics-flag.exactmetrics-flag-my{background-position:-288px -288px}.exactmetrics-flag.exactmetrics-flag-mz{background-position:-320px -288px}.exactmetrics-flag.exactmetrics-flag-na{background-position:-352px -288px}.exactmetrics-flag.exactmetrics-flag-nc{background-position:-384px -288px}.exactmetrics-flag.exactmetrics-flag-ne{background-position:-416px -288px}.exactmetrics-flag.exactmetrics-flag-nf{background-position:-448px -288px}.exactmetrics-flag.exactmetrics-flag-ng{background-position:-480px -288px}.exactmetrics-flag.exactmetrics-flag-ni{background-position:0 -320px}.exactmetrics-flag.exactmetrics-flag-nl{background-position:-32px -320px}.exactmetrics-flag.exactmetrics-flag-no{background-position:-64px -320px}.exactmetrics-flag.exactmetrics-flag-np{background-position:-96px -320px}.exactmetrics-flag.exactmetrics-flag-nr{background-position:-128px -320px}.exactmetrics-flag.exactmetrics-flag-nu{background-position:-160px -320px}.exactmetrics-flag.exactmetrics-flag-nz{background-position:-192px -320px}.exactmetrics-flag.exactmetrics-flag-om{background-position:-224px -320px}.exactmetrics-flag.exactmetrics-flag-pa{background-position:-256px -320px}.exactmetrics-flag.exactmetrics-flag-pe{background-position:-288px -320px}.exactmetrics-flag.exactmetrics-flag-pf{background-position:-320px -320px}.exactmetrics-flag.exactmetrics-flag-pg{background-position:-352px -320px}.exactmetrics-flag.exactmetrics-flag-ph{background-position:-384px -320px}.exactmetrics-flag.exactmetrics-flag-pk{background-position:-416px -320px}.exactmetrics-flag.exactmetrics-flag-pl{background-position:-448px -320px}.exactmetrics-flag.exactmetrics-flag-pn{background-position:-480px -320px}.exactmetrics-flag.exactmetrics-flag-pr{background-position:0 -352px}.exactmetrics-flag.exactmetrics-flag-ps{background-position:-32px -352px}.exactmetrics-flag.exactmetrics-flag-pt{background-position:-64px -352px}.exactmetrics-flag.exactmetrics-flag-pw{background-position:-96px -352px}.exactmetrics-flag.exactmetrics-flag-py{background-position:-128px -352px}.exactmetrics-flag.exactmetrics-flag-qa{background-position:-160px -352px}.exactmetrics-flag.exactmetrics-flag-re{background-position:-192px -352px}.exactmetrics-flag.exactmetrics-flag-ro{background-position:-224px -352px}.exactmetrics-flag.exactmetrics-flag-rs{background-position:-256px -352px}.exactmetrics-flag.exactmetrics-flag-ru{background-position:-288px -352px}.exactmetrics-flag.exactmetrics-flag-rw{background-position:-320px -352px}.exactmetrics-flag.exactmetrics-flag-sa{background-position:-352px -352px}.exactmetrics-flag.exactmetrics-flag-sb{background-position:-384px -352px}.exactmetrics-flag.exactmetrics-flag-sc{background-position:-416px -352px}.exactmetrics-flag.exactmetrics-flag-sd{background-position:-448px -352px}.exactmetrics-flag.exactmetrics-flag-se{background-position:-480px -352px}.exactmetrics-flag.exactmetrics-flag-sg{background-position:0 -384px}.exactmetrics-flag.exactmetrics-flag-sh{background-position:-32px -384px}.exactmetrics-flag.exactmetrics-flag-si{background-position:-64px -384px}.exactmetrics-flag.exactmetrics-flag-sk{background-position:-96px -384px}.exactmetrics-flag.exactmetrics-flag-sl{background-position:-128px -384px}.exactmetrics-flag.exactmetrics-flag-sm{background-position:-160px -384px}.exactmetrics-flag.exactmetrics-flag-sn{background-position:-192px -384px}.exactmetrics-flag.exactmetrics-flag-so{background-position:-224px -384px}.exactmetrics-flag.exactmetrics-flag-sr{background-position:-256px -384px}.exactmetrics-flag.exactmetrics-flag-ss{background-position:-288px -384px}.exactmetrics-flag.exactmetrics-flag-st{background-position:-320px -384px}.exactmetrics-flag.exactmetrics-flag-sv{background-position:-352px -384px}.exactmetrics-flag.exactmetrics-flag-sy{background-position:-384px -384px}.exactmetrics-flag.exactmetrics-flag-sz{background-position:-416px -384px}.exactmetrics-flag.exactmetrics-flag-tc{background-position:-448px -384px}.exactmetrics-flag.exactmetrics-flag-td{background-position:-480px -384px}.exactmetrics-flag.exactmetrics-flag-tf{background-position:0 -416px}.exactmetrics-flag.exactmetrics-flag-tg{background-position:-32px -416px}.exactmetrics-flag.exactmetrics-flag-th{background-position:-64px -416px}.exactmetrics-flag.exactmetrics-flag-tj{background-position:-96px -416px}.exactmetrics-flag.exactmetrics-flag-tk{background-position:-128px -416px}.exactmetrics-flag.exactmetrics-flag-tl{background-position:-160px -416px}.exactmetrics-flag.exactmetrics-flag-tm{background-position:-192px -416px}.exactmetrics-flag.exactmetrics-flag-tn{background-position:-224px -416px}.exactmetrics-flag.exactmetrics-flag-to{background-position:-256px -416px}.exactmetrics-flag.exactmetrics-flag-tr{background-position:-288px -416px}.exactmetrics-flag.exactmetrics-flag-tt{background-position:-320px -416px}.exactmetrics-flag.exactmetrics-flag-tv{background-position:-352px -416px}.exactmetrics-flag.exactmetrics-flag-tw{background-position:-384px -416px}.exactmetrics-flag.exactmetrics-flag-tz{background-position:-416px -416px}.exactmetrics-flag.exactmetrics-flag-ua{background-position:-448px -416px}.exactmetrics-flag.exactmetrics-flag-ug{background-position:-480px -416px}.exactmetrics-flag.exactmetrics-flag-us{background-position:0 -448px}.exactmetrics-flag.exactmetrics-flag-uy{background-position:-32px -448px}.exactmetrics-flag.exactmetrics-flag-uz{background-position:-64px -448px}.exactmetrics-flag.exactmetrics-flag-va{background-position:-96px -448px}.exactmetrics-flag.exactmetrics-flag-vc{background-position:-128px -448px}.exactmetrics-flag.exactmetrics-flag-ve{background-position:-160px -448px}.exactmetrics-flag.exactmetrics-flag-vg{background-position:-192px -448px}.exactmetrics-flag.exactmetrics-flag-vi{background-position:-224px -448px}.exactmetrics-flag.exactmetrics-flag-vn{background-position:-256px -448px}.exactmetrics-flag.exactmetrics-flag-vu{background-position:-288px -448px}.exactmetrics-flag.exactmetrics-flag-wf{background-position:-320px -448px}.exactmetrics-flag.exactmetrics-flag-ws{background-position:-352px -448px}.exactmetrics-flag.exactmetrics-flag-ye{background-position:-384px -448px}.exactmetrics-flag.exactmetrics-flag-yt{background-position:-416px -448px}.exactmetrics-flag.exactmetrics-flag-za{background-position:-448px -448px}.exactmetrics-flag.exactmetrics-flag-zm{background-position:-480px -448px}.exactmetrics-flag.exactmetrics-flag-zw{background-position:0 -480px}.exactmetrics-full-width-upsell .exactmetrics-full-width-upsell-inner,.exactmetrics-upsell-row .exactmetrics-upsell-row-inner,.exactmetrics-upsell .exactmetrics-upsell-title .exactmetrics-upsell-title-inner{max-width:1400px;margin:0 auto}.exactmetrics-reports-page .exactmetrics-upsell{border-bottom:1px solid #d6e2ed}.exactmetrics-upsell-row{width:100%;background:rgba(101,40,245,.05)}.exactmetrics-upsell-row .exactmetrics-upsell-row-inner{padding:0 96px}@media (max-width:782px){.exactmetrics-upsell-row .exactmetrics-upsell-row-inner{padding:0 24px}}.exactmetrics-upsell-row h3{margin:0 0 60px;font-size:15px}.exactmetrics-upsell-row .exactmetrics-upsell-list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding-bottom:15px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 31%;flex:1 0 31%;margin-bottom:45px}.exactmetrics-report-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item,.exactmetrics-settings-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item{-webkit-box-flex:1;-ms-flex:1 0 21%;flex:1 0 21%}@media (max-width:782px){.exactmetrics-upsell-row .exactmetrics-upsell-list-item{width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}}.exactmetrics-upsell-row .exactmetrics-upsell-list-item i{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;color:#6528f5;font-size:23px;margin-right:18px;margin-top:6px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text{line-height:1.7;color:#37276a;max-width:232px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;font-weight:500;text-decoration:none}.exactmetrics-report-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text,.exactmetrics-settings-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text{max-width:170px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text{cursor:pointer}.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text:focus,.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text:hover{color:#6528f5}.exactmetrics-full-width-upsell{background:#f7f3fe;min-height:445px;margin-bottom:116px}.exactmetrics-reports-page .exactmetrics-full-width-upsell{margin-bottom:0}@media (max-width:959px){.exactmetrics-full-width-upsell{margin-bottom:48px}}.exactmetrics-full-width-upsell.exactmetrics-full-width-no-space{margin-bottom:0;min-height:380px}.exactmetrics-full-width-upsell.exactmetrics-full-width-no-space+.exactmetrics-full-width-upsell{margin-top:-100px}.exactmetrics-full-width-upsell .exactmetrics-full-width-upsell-inner{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;position:relative}.exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-full-width-upsell-inner{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-full-width-upsell-inner .exactmetrics-upsell-left{padding-left:0;padding-top:100px}.exactmetrics-full-width-upsell h2{color:#210f59;font-size:24px;line-height:1.4}.exactmetrics-full-width-upsell p{font-size:15px;line-height:1.7;color:#210f59;margin:11px 0 0}.exactmetrics-full-width-upsell p.exactmetrics-upsell-pbold{font-weight:700;margin-top:0}.exactmetrics-full-width-upsell a.exactmetrics-green-text{color:#32a27a;font-weight:400}.exactmetrics-full-width-upsell a.exactmetrics-green-text:focus,.exactmetrics-full-width-upsell a.exactmetrics-green-text:hover{color:#19865f;text-decoration:none}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons{margin-top:20px;margin-bottom:72px}@media (max-width:1099px){.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons{margin-bottom:48px}}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons .exactmetrics-button:first-child{margin-right:18px}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons .exactmetrics-button-text .monstericon-arrow-right{font-size:12px;vertical-align:text-top;margin-left:10px}.exactmetrics-upsell-half{position:relative;padding-top:56px}.exactmetrics-upsell-half.exactmetrics-upsell-left{padding-left:96px;padding-top:56px;width:40%}@media (max-width:1099px){.exactmetrics-upsell-half.exactmetrics-upsell-left{width:50%;padding-left:24px}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-left{padding-top:24px}}.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image{max-width:100%;left:0;height:auto;padding-top:67%}.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image:after{background-position:50%;left:-16%;right:-16%;top:-10%;bottom:-10%}@media (min-width:960px){.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image{display:none}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-left{width:100%;padding-right:24px}}.exactmetrics-upsell-half.exactmetrics-upsell-right{padding-left:96px;padding-top:0;width:60%}@media (max-width:1099px){.exactmetrics-upsell-half.exactmetrics-upsell-right{width:50%}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-right{display:none}}.exactmetrics-upsell-half.exactmetrics-upsell-right .exactmetrics-em-upsell-screen{position:absolute;bottom:-140px;left:68px}.exactmetrics-upsell-half h3{color:#6528f5;font-size:20px;line-height:1.3;font-weight:400;margin:0 0 15px}.exactmetrics-upsell a{color:#6528f5}.exactmetrics-upsell a:focus,.exactmetrics-upsell a:hover{color:#37276a}.exactmetrics-upsell .exactmetrics-upsell-title{border-bottom:1px solid #e9e7ee}.exactmetrics-upsell .exactmetrics-upsell-title h2{color:#210f59;font-size:32px;margin-left:100px;margin-top:45px;margin-bottom:35px}@media (max-width:782px){.exactmetrics-upsell .exactmetrics-upsell-title h2{margin-left:24px;line-height:1.4;margin-top:24px;margin-bottom:24px}}.exactmetrics-upsell .exactmetrics-upsell-half h3{font-size:24px;color:#210f59;font-weight:700}.exactmetrics-upsell-bottom{background:#f7f9fd;border-top:1px solid #d6e2ed;padding:36px 50px 30px;position:relative}@media (max-width:767px){.exactmetrics-upsell-bottom{padding-left:20px;padding-right:20px}}.exactmetrics-upsell-bottom .exactmetrics-button-top{position:absolute;top:0;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}@media (max-width:767px){.exactmetrics-upsell-bottom .exactmetrics-button-top{min-width:288px}}.exactmetrics-upsell-bottom img{max-width:100%}.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-upsell-screen,.exactmetrics-screen-image{width:848px;padding-top:0;height:566px}@media (max-width:1099px){.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-upsell-screen,.exactmetrics-screen-image{left:20px}}.exactmetrics-em-ecommerce-upsell-screen:after,.exactmetrics-em-upsell-screen:after,.exactmetrics-screen-image:after{background-position:100% 100%;background-image:url(../img/upsell-screen.png)}.exactmetrics-em-logo-text{width:432px;height:56px;margin-bottom:28px;padding-top:0;max-width:100%}@media (max-width:1400px){.exactmetrics-em-logo-text{padding-top:13%;height:auto}}@media (max-width:959px){.exactmetrics-em-logo-text{padding-top:8%}}.exactmetrics-em-logo-text:after{background-image:url(../img/exactmetrics.png)}.exactmetrics-em-addons-upsell-screen,.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-publishers-upsell-screen{bottom:auto;top:-65px;width:648px;right:-13%}.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/one-click-integrations.png)}.exactmetrics-em-publishers-upsell-screen:after{background-image:url(../img/publishers-screen.png)}.exactmetrics-em-addons-upsell-screen{margin-bottom:-180px;top:-70px}.exactmetrics-em-addons-upsell-screen:after{background-image:url(../img/addons-help-screen.png)}.exactmetrics-em-search-console-upsell-screen:after{background-image:url(../img/search-console-screen.png)}.exactmetrics-em-real-time-upsell-screen:after{background-image:url(../img/real-time-screen.png)}.exactmetrics-em-site-speed-upsell-screen:after{background-image:url(../img/site-speed-screen.png)}.exactmetrics-em-forms-report-upsell-screen:after{background-image:url(../img/forms-report-screen.png)}.exactmetrics-em-dimensions-report-upsell-screen:after{background-image:url(../img/dimensions-report-screen.png)}.exactmetrics-em-media-report-upsell-screen:after{background-image:url(../img/media-report-upsell.png);background-size:80%;background-position:right 40px}.exactmetrics-em-forms-upsell-screen{width:758px;max-width:100%;margin-top:-75px}.exactmetrics-em-forms-upsell-screen:after{background-position:50%;background-image:url(../img/forms-screen.png)}.exactmetrics-em-optimize-upsell-screen{width:758px;max-width:100%;margin-left:-10%}.exactmetrics-em-optimize-upsell-screen:after{background-position:50%;background-image:url(../img/optimize-screen.png)}.exactmetrics-em-dimensions-upsell-screen{width:758px;max-width:100%}.exactmetrics-em-dimensions-upsell-screen:after{background-position:50%;background-image:url(../img/custom-dimensions-screen.png)}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-left:0}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half p{max-width:400px;margin-bottom:28px}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-left:96px}.exactmetrics-icon-background-large{position:absolute;font-size:130px;color:rgba(101,40,245,.05);left:25px;top:25px;line-height:1;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator{font-size:13px;color:#fff;background-color:#32a27a;border-radius:3px;font-weight:500;padding:4px 8px;vertical-align:top;margin-left:10px;display:inline-block;margin-top:-4px;cursor:pointer;text-decoration:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:hover,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:hover{color:#fff;background:#19865f}.exactmetrics-report .exactmetrics-upsell-dismissable{margin-left:-32px;margin-right:-32px;padding-left:32px;padding-right:32px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable{text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable h3{font-size:17px;color:#210f59;line-height:1.5;font-weight:700}.exactmetrics-report .exactmetrics-upsell-dismissable p{font-size:15px;margin-bottom:25px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{width:50%;padding-top:38px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{padding-left:32px;padding-right:32px;width:100%;text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half:first-child p{max-width:524px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-left:40px;color:#9087ac}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-left:0;margin-top:20px}}.exactmetrics-report .exactmetrics-upsell-dismiss{position:absolute;right:20px;top:20px;z-index:10}.exactmetrics-forms-image-wpf-upsell{margin-bottom:-140px;padding-top:85%}@media (max-width:782px){.exactmetrics-forms-image-wpf-upsell{margin-bottom:0}}.exactmetrics-forms-image-wpf-upsell:after{background-position:100% 100%;background-image:url(../img/forms-wpforms-upsell.png)}.exactmetrics-report-year-in-review{margin-left:auto;margin-right:auto;max-width:960px;background-color:#fff;background-image:url(../img/confetti-background.png);background-repeat:no-repeat;background-position:0 0;margin-bottom:90px}.exactmetrics-report-year-in-review .exactmetrics-pie-chart-tooltip{left:22px;top:23px}.exactmetrics-report-year-in-review .exactmetrics-reports-doughnut-tooltip{width:120px;height:120px}.exactmetrics-report-year-in-review.exactmetrics-yir-report-calculating-row{width:610px;margin-top:50px}@media (max-width:767px){.exactmetrics-report-year-in-review.exactmetrics-yir-report-calculating-row{width:100%;margin-top:20px}}.exactmetrics-report-year-in-review a,.exactmetrics-report-year-in-review h1,.exactmetrics-report-year-in-review h2,.exactmetrics-report-year-in-review h3,.exactmetrics-report-year-in-review h4,.exactmetrics-report-year-in-review h5,.exactmetrics-report-year-in-review p,.exactmetrics-report-year-in-review span{font-family:Lato,sans-serif;margin:0}.exactmetrics-report-year-in-review h1,.exactmetrics-report-year-in-review h2,.exactmetrics-report-year-in-review h3,.exactmetrics-report-year-in-review h4,.exactmetrics-report-year-in-review h5{font-weight:900}.exactmetrics-report-year-in-review p{font-style:normal;font-weight:400;font-size:14px;line-height:24px}.exactmetrics-report-year-in-review a{text-decoration:none;padding:8px 30px;border-radius:5px;color:#fff;font-weight:700;font-size:14px;line-height:24px;text-align:center}.exactmetrics-report-year-in-review .exactmetrics-yir-separator{border-left-color:#e0e0e0;border-right-color:#e0e0e0;border-top:1px solid #e0e0e0;border-bottom:1px solid #e0e0e0}.exactmetrics-report-year-in-review .text-capitalize{text-transform:capitalize}.exactmetrics-report-year-in-review .exactmetrics-yir-footer,.exactmetrics-report-year-in-review .exactmetrics-yir-header,.exactmetrics-report-year-in-review section{padding:0 90px;clear:both;overflow:hidden}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-footer,.exactmetrics-report-year-in-review .exactmetrics-yir-header,.exactmetrics-report-year-in-review section{padding:0 15px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-footer,.exactmetrics-report-year-in-review .exactmetrics-yir-header,.exactmetrics-report-year-in-review section{padding:0 30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-text-right{text-align:right}.exactmetrics-report-year-in-review .exactmetrics-yir-text-right h2{color:#fff}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header{padding:90px 0 90px 90px;background-image:url(../img/em-logo-lg.png);background-repeat:no-repeat;background-position:100%;background-size:222px 195px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header{padding:50px 15px 40px;background-image:none}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header{padding-left:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating{padding:90px 0 100px 60px;background-image:url(../img/em-logo-lg.png);background-position:right top 83px;background-size:160px 150px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating{padding-left:15px;padding-right:15px;padding-top:50px;background-size:140px 180px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-title{font-size:32px;line-height:37px;color:#393f4c;margin-top:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-title{font-size:26px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-summary{font-weight:400;font-size:14px;line-height:20px;color:#393f4c;max-width:385px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-summary{font-size:12px;max-width:230px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link{background:#4e9ee7;border-radius:5px;font-weight:700;font-size:14px;line-height:16px;text-align:center;color:#fff;border:0;margin-right:0;padding:12px 20px;margin-top:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link{width:inherit}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link{width:inherit}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link:active,.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-export-link{color:#338eef;cursor:pointer}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-subtitle{font-size:20px;font-weight:900;background:#338eef;border-radius:30px;color:#fff;padding:14px 25px 14px 90px;position:relative;display:inline-block}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-subtitle{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-subtitle svg{position:absolute;left:5px;bottom:-5px}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-title{font-style:normal;font-weight:900;font-size:48px;line-height:58px;color:#393f4c;margin-bottom:15px;margin-top:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-title{font-size:20px;line-height:20px;margin-bottom:10px;margin-top:30px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-title{font-size:32px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-summary{font-weight:500;font-size:24px;line-height:32px;color:#828282;max-width:480px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-summary{font-size:16px;line-height:18px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-summary{font-size:16px;line-height:20px;max-width:400px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart{background:#fff;-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);border-radius:4.85258px}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-header{display:-webkit-box;display:-ms-flexbox;display:flex;padding:20px 30px;border-bottom:2px solid #f2f2f2;margin-bottom:55px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-header{margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-header div{width:100%}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-title{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:right;color:#393f4c;margin:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-subtitle{font-size:10px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content{padding:0 50px 15px 30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content{padding:0 15px 15px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content .exactmetrics-reports-bar-chart-holder{position:relative}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content .exactmetrics-reports-bar-chart-holder .exactmetrics-chart-tooltip{position:absolute;pointer-events:none}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box{padding-top:0;position:relative;border:0;-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);background:hsla(0,0%,100%,.38)}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box.exactmetrics-year-in-review-table-box-blur-report .exactmetrics-year-in-review-table-box-list{-webkit-filter:blur(5px);filter:blur(5px)}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header{padding:20px 30px;border-bottom:2px solid #f2f2f2;margin-bottom:0}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-title{display:inline-block}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-title .exactmetrics-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-title .exactmetrics-report-title{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-subtitle{display:inline-block;float:right}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-subtitle .exactmetrics-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:right;color:#393f4c;margin:0;text-transform:capitalize}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list{min-height:245px;padding-bottom:30px}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item{padding:9px 30px}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a{padding:0;border-radius:0;line-height:37px;line-height:inherit}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a:active,.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a:focus,.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a:hover{-webkit-box-shadow:none;box-shadow:none;background:none}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer{position:absolute;bottom:-34px;width:100%;left:0;text-align:center}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer{bottom:-40px}}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer .exactmetrics-yir-tooltip{font-weight:400;font-size:12px;color:#828282}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer .exactmetrics-yir-tooltip span{font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer .exactmetrics-yir-tooltip .exactmetrics-yir-icon{background:#dadada;border-radius:50%;padding:0;margin-right:10px;color:#fff;width:15px;height:15px;display:inline-block;line-height:16px}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart{border:0;margin:0;padding:0;width:100%}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-reports-pie-chart-holder{display:inline-block;float:left}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-reports-pie-chart-holder{display:block;float:none}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-reports-pie-chart-holder .exactmetrics-pie-chart{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAFxSURBVHgB7dlPTsJAFAbwb6BxQVzgTThCXaCC3kEPoFBP0PYGVQ9gvUNFY2PSI3AUFhISgx1njAsjIfa1jA+S90u6aDOTzpf5s5gHCF4KNVyePPntthea7j1Ad9FcUWr9cDc5SkFEDjAavoZKlREc0BrR7aQfU/qQAgTDlwut1D0cUmp5mGSDomr7FgjM4M/hmNZ2aVZHCmD4cK9HaUwN8B9Ih4KHBm4e+7VOsd/Gp7lGTds4AyQSgJsE4CYBuEkAbhKAmwTgJgG4SQBuEoCbBOAmAbhJAG4SgFuju9Emd5qbIktoHaUQq/nbwdcDXMORRktoHTvgJOsnPz4lo2HeNaFI1Zcq3MzA3EtXfrTnJXCAGmCGLUMNMK3SqOy8Byvflh9VC4QFCEh7wG5MU8v1/27XCq8Gz7P2YpHa97KzP1ZaR6jAFrxBQK5xBWd5ZEJsfDNapoAeJ9lxROqDGr4L3nZJ+GjO7qupnV1zchUQO+YTOT9YisPBuEEAAAAASUVORK5CYII=);background-color:#fff;background-repeat:no-repeat;background-position:50%}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content{padding-left:50px;padding-top:35px;float:left}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content{padding-left:0;padding-top:20px;float:none}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin-bottom:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-title{font-size:16px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:18px;line-height:24px;color:#393f4c;margin-top:10px;margin-bottom:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-subtitle{font-size:14px;line-height:14px}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend{position:relative;left:inherit;top:inherit;-webkit-transform:inherit;-ms-transform:inherit;transform:inherit;margin:24px 0 0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend{margin:10px 0 0}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li{display:inline-block;margin-right:30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li{margin-right:10px}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-color{border-radius:0;width:16px;height:16px;margin-bottom:-3px;margin-right:5px}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-text,.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-value{font-family:Lato;font-style:normal;font-weight:700;font-size:14px;line-height:24px;color:#393f4c;min-width:inherit;margin-right:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-text,.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-value{font-size:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip{border:2px solid #e3f1ff;border-radius:5px;padding-top:45px;padding-bottom:45px;overflow:hidden;background:#f3f9ff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip{padding-top:15px;padding-bottom:15px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip a,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip h3,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip p{font-family:Lato,sans-serif;margin:0}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-icon{float:left;width:144px;text-align:center}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-icon{width:90px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-icon img{background:#338eef;padding:12px;border-radius:50%;margin-top:12px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content{float:left;width:calc(100% - 144px);padding-right:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content{padding-right:0;width:calc(100% - 90px)}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-title{font-weight:900;font-size:18px;line-height:27px;color:#333;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-title{font-size:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-summary{font-weight:400;font-size:18px;line-height:27px;color:#393f4c;margin-bottom:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-summary{font-size:12px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper{margin-top:15px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link{font-weight:900;font-size:18px;line-height:27px;-webkit-text-decoration-line:underline;text-decoration-line:underline;color:#338eef;margin-top:15px;padding:0;border-radius:0;text-align:left}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link:hover{color:#2469b2;-webkit-box-shadow:none;box-shadow:none}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay{position:absolute;top:0;left:0;width:calc(100% - 25px);height:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content{margin-top:66px;text-align:center;height:calc(100% - 66px);padding-top:80px;padding-right:25px;padding-left:25px;background-color:#fff}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-details{font-size:14px;line-height:20px;font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay{display:inline-block;border-radius:5px;font-size:14px;line-height:20px;color:#fff;padding:10px 30px;text-decoration:none;font-family:Lato;background:#338eef;margin-top:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success{background:#1ec185}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success:hover{opacity:.8;background:#10ad73}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay:hover{border:0;background:#2469b2;outline:none}.exactmetrics-report-year-in-review .exactmetrics-yir-audience{padding-bottom:85px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience{padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:685px;margin-bottom:80px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-summary{font-size:18px;line-height:20px;margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors{width:100%;margin-bottom:70px;padding-left:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors{margin-bottom:20px;padding-left:0;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions img,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors img{margin-bottom:15px;max-height:28px}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions h4,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors h4{font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions h4,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors h4{font-size:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions .exactmetrics-yir-number,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors .exactmetrics-yir-number{font-weight:900;font-size:60px;line-height:72px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions .exactmetrics-yir-number,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors .exactmetrics-yir-number{font-size:40px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-visitor-by-chart{margin-bottom:60px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-visitor-by-chart{margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics{padding-top:85px;padding-bottom:85px;background-image:url(../img/map-background.png);background-repeat:no-repeat;background-position:top}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics{padding-top:30px;padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:656px;margin-bottom:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-summary{font-size:18px;line-height:20px;margin-bottom:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries{display:block}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country{width:50%;margin-top:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-number-one{font-size:24px;line-height:29px;color:#fff;background:#338eef;width:50px;height:50px;border-radius:50%;display:inline-block;text-align:center;line-height:50px;margin-bottom:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-flag{display:block}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-flag{margin:0 auto}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-flag.exactmetrics-flag-zz{display:none}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-name{font-size:32px;line-height:38px;color:#393f4c;margin-top:0;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-name{font-size:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-visitors{font-weight:400;font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-visitors{font-size:16px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-countries-graph{width:50%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-countries-graph{width:100%}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-know-visitors{font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-know-visitors{font-size:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info{margin-top:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info{width:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info span,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info span,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info span{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info h2,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info h2,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info h2{font-size:30px;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info p,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info p,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info p{font-size:10px;line-height:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior{padding-top:85px;padding-bottom:85px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior{padding-top:30px;padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:585px;margin-bottom:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data{display:block;margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary{width:50%;margin-top:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary img{width:32px;height:32px;margin-left:-3px;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary img{margin-left:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-time-spent{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent{font-size:32px;line-height:38px;color:#393f4c;margin-top:15px;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent{margin-top:5px;margin-bottom:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent .exactmetrics-yir-number{font-weight:900;font-size:48px;line-height:58px;color:#338eef;margin-right:10px;overflow-wrap:break-word}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent .exactmetrics-yir-number{font-size:30px;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent .exactmetrics-yir-type{font-weight:900;font-size:16px;line-height:103.8%;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-each-visitor-spent{font-weight:400;font-size:18px;line-height:24px;color:#393f4c;max-width:330px;margin-top:15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-each-visitor-spent{font-size:14px;max-width:100%;margin-top:5px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-top-pages-graph{width:50%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-top-pages-graph{width:100%}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-most-visitors-device{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-most-visitors-device{font-size:20px;line-height:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info{margin-top:20px;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info{width:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info span,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info h2,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info p,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-grow-traffic-tip{margin-top:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-grow-traffic-tip{margin-top:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from{margin-top:55px;margin-bottom:100px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from{margin-top:20px;margin-bottom:60px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-title{font-size:32px;line-height:44px;color:#393f4c;margin-bottom:30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-title{font-size:20px;line-height:20px;margin-bottom:15px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals{display:block}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-keywords,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-referrals{width:50%;position:relative}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-keywords,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-referrals{width:100%}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-keywords{padding-right:25px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-keywords{padding-right:0;margin-bottom:60px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-referrals{padding-left:25px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-referrals{padding-left:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce{padding-top:85px;padding-bottom:30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce{padding-top:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number{width:55%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number{width:30%}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-products-sold,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-revenue{padding:75px 0}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-title{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-title{font-size:14px;line-height:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-amount{font-size:54px;line-height:65px;color:#338eef;overflow-wrap:break-word}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-amount{font-size:24px;line-height:40px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products{width:45%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products{width:70%}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular{-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);border-radius:3.59813px;padding:30px;margin-bottom:30px}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning img,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular img{margin-bottom:5px}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning span,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning span,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular span{font-size:14px;line-height:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning .exactmetrics-yir-product-title,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular .exactmetrics-yir-product-title{font-weight:700;font-size:28px;line-height:32px;color:#338eef;margin-top:10px;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning .exactmetrics-yir-product-title,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular .exactmetrics-yir-product-title{font-size:16px;line-height:16px;margin-bottom:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning .exactmetrics-yir-count,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular .exactmetrics-yir-count{font-weight:400;font-size:16px;line-height:19px;color:#828282}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning .exactmetrics-yir-count,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular .exactmetrics-yir-count{font-size:12px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-revenue-by-month{margin-bottom:50px}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you{padding-top:90px;background-color:#fff;background-image:url(../img/confetti-background.png);background-position:0 0;padding-bottom:85px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you{padding-top:0;padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-title{font-size:54px;line-height:65px;text-align:center;color:#393f4c;max-width:588px;margin:0 auto 10px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-title{font-size:30px;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-summary{font-weight:500;font-size:20px;line-height:28px;text-align:center;color:#393f4c;max-width:585px;margin:0 auto 15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-summary{font-size:14px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-amazing-year{font-weight:700;font-size:32px;line-height:37px;text-align:center;color:#393f4c;font-style:italic;margin-bottom:35px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-amazing-year{font-size:24px;line-height:24px;margin-bottom:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors{text-align:center;margin-bottom:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors{margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author{display:inline-block;padding:0 45px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author{padding:0 10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-thumbnail{width:96px;height:96px;background-repeat:no-repeat;margin:0 auto 10px}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-thumbnail.chris{background-image:url(../img/chris.png)}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-thumbnail.syed{background-image:url(../img/syed.png)}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-name{font-weight:900;font-size:18px;line-height:22px;text-align:center;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-name{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review{background:#338eef;-webkit-box-shadow:0 8px 8px rgba(30,88,150,.2);box-shadow:0 8px 8px rgba(30,88,150,.2);border-radius:5px;padding:24px;display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review{display:block}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content,.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-rating,.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button{width:100%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content{text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content span{font-weight:900;font-size:14px;color:#fff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content span{font-size:12px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content h3{font-weight:900;font-size:20px;line-height:31px;color:#fff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content h3{font-size:18px;line-height:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-rating .exactmetrics-yir-five-star{margin:0;padding:12px 0 0;text-align:center}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-rating .exactmetrics-yir-five-star li{list-style:none;display:inline-block;margin-right:7px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-rating .exactmetrics-yir-five-star li{margin-right:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button{text-align:center;padding-top:5px}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button a{background:#2469b3;border-radius:5px;text-align:center;height:38px;display:inline-block}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button a:active,.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button a:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button a:hover{background:#123c68}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-title{font-size:36px;line-height:44px;color:#393f4c;margin-bottom:20px;max-width:638px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-title{font-size:20px;line-height:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-summary{font-weight:500;font-size:20px;line-height:24px;color:#393f4c;max-width:450px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-summary{font-size:14px;line-height:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins{margin-top:20px;margin-left:-30px;margin-right:-30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins{margin-left:0;margin-right:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon{width:calc(50% - 60px);float:left;background:#f3f9ff;border:2px solid #e3f1ff;border-radius:5px;position:relative;min-height:260px;margin:30px 30px 0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon{width:100%;margin:30px 0;min-height:300px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top{padding-top:30px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-image{width:104px;float:left;padding-left:25px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-image .exactmetrics-addon-thumb{width:32px;height:32px;border:2px solid #e3f1ff;border-radius:5px;padding:10px;-webkit-box-sizing:content-box;box-sizing:content-box}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-text{width:calc(100% - 104px);float:left;padding-right:25px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-text .exactmetrics-addon-title{font-size:18px;line-height:24px;margin-top:0;font-family:Lato;margin-bottom:5px;color:#393f4c;font-weight:900}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-text .exactmetrics-addon-excerpt{font-weight:400;font-size:14px;line-height:18px;color:#393f4c;font-family:Lato;overflow:hidden;display:-webkit-box;-webkit-line-clamp:6;-webkit-box-orient:vertical;position:absolute;margin:0 25px 0 0}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message{border-top:2px solid #e3f1ff;clear:both;padding:13px 25px;position:absolute;bottom:0;left:0;width:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-addon-status{float:right;line-height:32px;font-weight:900;font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-addon-status span{color:#d4393d}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-button{line-height:32px;background:#338eef;border-radius:3px;display:inline-block;padding:0 30px;border:0;font-weight:700;font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-button:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-button:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-button:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-addon-status span{color:#64bfa5}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-button,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-button:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-button:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-button:hover{background:rgba(51,142,239,.5)}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities{background-color:#338eef;padding-top:160px;margin-top:-90px;color:#fff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities{padding-top:100px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities h2{font-size:36px;line-height:43px;color:#fff;margin-bottom:15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities h2{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities h3{font-weight:500;font-size:20px;line-height:24px;color:#fff;max-width:575px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities h3{font-size:18px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-30px;padding-top:60px;padding-bottom:90px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities{display:block;margin-left:0;padding-bottom:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community{width:100%;background-color:#2469b2;border-radius:5px;margin-left:30px;padding:24px;position:relative;min-height:340px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community{margin-left:0;margin-bottom:30px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community{min-height:350px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-title{font-weight:900;font-size:20px;line-height:24px;margin-bottom:10px;margin-top:5px}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link,.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links{position:absolute;bottom:15px;left:24px;width:80%;width:calc(100% - 48px)}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link{background-color:#123c68;display:block}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link{padding:8px 10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links{margin:0}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links li{float:left;margin-right:8px;margin-bottom:0}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links li a{background-color:#123c68;display:block;margin:0;width:40px;height:40px;padding:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links li a:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links li a:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-footer{height:84px;background:#2368b1;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-footer{display:block;text-align:center;padding:15px 0;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-footer div{width:100%;font-weight:500;font-size:16px;color:#fff;text-align:center}.exactmetrics-report-site-speed .exactmetrics-site-speed-blur{width:100%;padding-top:70%;background-image:url(../img/site-speed-blur.png);background-repeat:no-repeat;background-size:contain;background-position:50%}.exactmetrics-report-site-speed .exactmetrics-upsell-top{max-width:80%;margin:0 auto}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-report-top{display:-webkit-box;display:-ms-flexbox;display:flex}}.exactmetrics-report-site-speed .exactmetrics-report-top h2.exactmetrics-report-top-title{margin-top:10px}.exactmetrics-report-site-speed .exactmetrics-report-top .exactmetrics-export-pdf-report{margin-right:16px}.exactmetrics-report-site-speed .exactmetrics-report-top .exactmetrics-export-pdf-report button{background-color:#f5f5f5;color:#4c6577;border-color:#dcdcdc}.exactmetrics-report-site-speed .exactmetrics-report-top .exactmetrics-run-audit-btn .exactmetrics-run-audit{background-color:#3990ec;height:39px}.exactmetrics-report-site-speed .exactmetrics-report-top .exactmetrics-run-audit-btn .exactmetrics-run-audit:hover{background-color:rgba(57,144,236,.8)}.exactmetrics-report-site-speed .exactmetrics-choose-device-button{margin-left:15px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button{display:inline-block;text-align:center;background-color:#f5f5f5;color:#444;border-color:#dcdcdc;border-radius:5px;outline:none}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button:hover{background-color:#3990ec;border-color:#1c77db;outline:none}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button:hover .svg-icons{fill:#fff}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.active{background-color:#3990ec;border-color:#1c77db;color:#fff;outline:none}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.active .svg-icons{fill:#fff}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.mobile{border-top-right-radius:0;border-bottom-right-radius:0;border-right:0;width:45px;height:40px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.mobile svg{margin-left:-6px;margin-top:-1px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.desktop{border-top-left-radius:0;border-bottom-left-radius:0;border-left:0;width:54px;height:40px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.desktop svg{margin-left:-6px;margin-top:-1px}.exactmetrics-report-site-speed .exactmetrics-site-speed-container{max-width:1010px}.exactmetrics-report-site-speed .exactmetrics-site-speed-device,.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator{width:338px;margin-right:10px;max-height:304px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator{width:100%;margin-bottom:25px}}@media screen and (min-width:768px) and (max-width:1024px){.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator{width:100%;margin-bottom:25px}}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-indicator-device-icon{margin-bottom:40px;text-align:center}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-indicator-device-icon .desktop{width:80px}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-indicator-percent-text{font-size:5em;color:#f2994a;text-align:center;font-weight:700}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-indicator-overall-text{display:inline-block;padding-top:2rem;font-weight:600;font-size:16px;text-align:center}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-progress-circle{max-width:300px;max-height:255px;width:100%;-webkit-transform:scaleX(-1) rotate(-55deg);-ms-transform:scaleX(-1) rotate(-55deg);transform:scaleX(-1) rotate(-55deg);overflow:visible}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-progress-circle__percent{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-progress-circle__container{display:inline-block;position:relative}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-progress-circle__path{-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out;overflow:visible}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats{width:662px}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-site-speed-stats{width:100%}}@media screen and (min-width:768px) and (max-width:1024px){.exactmetrics-report-site-speed .exactmetrics-site-speed-stats{width:100%}}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-report-flex{text-align:center}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-report-flex.exactmetrics-report-2-columns{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-site-speed-stat{width:49%;background-color:#fff;border:1px solid #e0e0e0;min-height:135px;margin-bottom:15px;padding-top:1.2rem}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-site-speed-stat{width:100%;margin-top:15px;margin-right:0}}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-site-speed-stat h2{font-size:40px;margin:0;padding:20px 0 10px}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-site-speed-stat p{color:#828282}.exactmetrics-report-site-speed .exactmetrics-how-to-improve h2.title{font-size:22px;color:#393f4c}div.exactmetrics-pdf-score{position:relative;margin:80px;left:-1px;top:1px}.exactmetrics-admin-page{overflow:hidden}.exactmetrics-report{padding:30px 32px;position:relative}@media (max-width:991px){.exactmetrics-report{padding-left:24px;padding-right:24px}}.exactmetrics-reports-page{margin-bottom:100px}.exactmetrics-reports-page .exactmetrics-header{padding-top:21px;padding-bottom:21px}@media (max-width:782px){.exactmetrics-reports-page .exactmetrics-report-top{margin-bottom:25px}}.exactmetrics_page.exactmetrics-downloading-pdf-report #wpbody{-webkit-filter:blur(15px);filter:blur(15px)}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion-item-details,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-pdf-score{display:block!important}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion-item-title,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion .exactmetrics-accordion div:not(:last-child){border:none!important}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion-item-trigger-icon,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-notificationsv3-container,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-progress-circle{display:none}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-header{min-height:85px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report{width:1120px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation{border-bottom:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button.exactmetrics-active-tab-button{border:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button:first-child{border-right:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-row.exactmetrics-report-row-border-top{border-top:0;margin-bottom:25px}@media (max-width:782px){.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-title{padding-left:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-title.exactmetrics-has-pagination{margin-bottom:25px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-title:before{position:inherit;left:inherit}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button{font-size:18px;padding:23px 20px 25px;text-align:left}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-infobox-row{padding:24px 60px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:25%;border-left:1px solid #bcb7cd;border-top:0;padding:0 10px 0 80px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child{border-left:none;padding-left:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-reports-ecommerce-pie-chart{width:40%;padding-top:130px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart .exactmetrics-pie-chart{margin:inherit}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart .exactmetrics-reports-pie-chart-holder{-webkit-box-pack:inherit;-ms-flex-pack:inherit;justify-content:inherit;-webkit-box-align:inherit;-ms-flex-align:inherit;align-items:inherit;margin-left:20px;-webkit-box-orient:inherit;-webkit-box-direction:inherit;-ms-flex-flow:wrap;flex-flow:wrap}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-report-box{width:calc(50% - 12.5px);margin-top:0}}@media (max-width:991px){.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-row.exactmetrics-report-row-border-top{margin-left:-32px;margin-right:-32px;padding-left:32px;padding-right:32px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex{-ms-flex-flow:inherit;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:inherit}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart{width:50%;border:none;padding-left:32px;padding-right:20px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart:first-child{border-right:1px solid #e9e7ee}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-table-box{margin-left:20px;margin-top:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-table-box:first-child{margin-left:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-report-2-columns .exactmetrics-table-box{width:calc(50% - 12.5px)}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex.exactmetrics-interests-scroll-report .exactmetrics-table-box{width:100%}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-reports-pie-chart{width:calc(50% - 12.5px)}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-reports-pie-chart:first-child{margin:0 25px 0 0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-left:25px;margin-top:0}}body.exactmetrics-reporting-page #wpbody-content{padding-bottom:0}body.exactmetrics-reporting-page .exactmetrics-red{color:#d73638}body.exactmetrics-reporting-page .exactmetrics-green{color:#5cc0a5}body.exactmetrics-reporting-page .exactmetrics-report-top{margin-top:14px;margin-bottom:24px}@media (min-width:783px) and (max-width:1130px){body.exactmetrics-reporting-page .exactmetrics-report-top{margin-bottom:25px}}body.exactmetrics-reporting-page .exactmetrics-report-top h2{margin:12px 0;display:inline-block;color:#210f59;font-size:32px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-report-top h2{display:none}}@media (min-width:783px) and (max-width:1130px){body.exactmetrics-reporting-page .exactmetrics-report-top h2{display:block;margin:0 0 25px}}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report{float:right;margin-right:25px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-export-pdf-report{float:none;margin-right:0;margin-bottom:0;text-align:center;padding-top:20px}}@media (min-width:783px) and (max-width:1130px){body.exactmetrics-reporting-page .exactmetrics-export-pdf-report{float:none;margin-bottom:0}}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button{background:#e9e7ee;color:#210f59}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button:focus,body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button:hover{background:#bcb7cd}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button[disabled=disabled]{cursor:not-allowed}body.exactmetrics-reporting-page .exactmetrics-report-realtime .exactmetrics-export-pdf-report{margin-right:0}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{display:-webkit-box;display:-ms-flexbox;display:flex;float:right}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{float:none;width:100%;-ms-flex-flow:wrap;flex-flow:wrap}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker .exactmetrics-buttons-toggle{width:100%;margin-right:0}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker .exactmetrics-buttons-toggle .exactmetrics-button{width:50%}}@media (min-width:783px) and (max-width:1130px){body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{float:right}}body.exactmetrics-reporting-page .exactmetrics-datepicker,body.exactmetrics-reporting-page .exactmetrics-hide{display:none}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container{position:relative}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container{max-width:100%}}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container.exactmetrics-hide,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .exactmetrics-hide{display:none}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-wrapper{display:block}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-wrapper .flatpickr-calendar{width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-calendar.static.open{position:relative;-webkit-box-shadow:none;box-shadow:none;border:none;width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:after,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:before{display:none}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-rContainer{width:100%;display:block}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .dayContainer,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-days{width:100%;max-width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day{max-width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange.inRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange.nextMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange.prevMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange:focus,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange:hover,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected.inRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected.nextMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected.prevMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected:focus,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected:hover,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange.inRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange.nextMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange.prevMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange:focus,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange:hover{background-color:#6528f5;border-color:#6528f5}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-months{padding-bottom:10px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .dayContainer{padding:0 28px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-weekdays{height:40px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-weekdaycontainer{background:#f4f3f7;padding:14px 28px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-current-month{font-size:15px;color:#210f59}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper{width:55px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper input.cur-year{padding:0 10px 0 5px;min-height:25px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info{background:#e9e7ee;border-radius:3px;font-size:15px;color:#210f59;line-height:1.75;padding:8px 28px 8px 20px;border:none;position:relative;text-align:left}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info{max-width:100%;line-height:1.4}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info>span{overflow:hidden;white-space:pre;text-overflow:ellipsis;max-width:calc(100% - 40px);display:inline-block}}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info i{margin-left:38px;margin-right:12px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info i{margin-left:10px;margin-right:10px;vertical-align:super}}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info:after{width:0;height:0;border-color:#9087ac rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:5px 3.5px 0;content:"";position:absolute;top:50%;margin-top:-2px;right:20px}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown{position:absolute;z-index:100;background:#fff;border:1px solid #f4f3f7;border-radius:3px;margin-top:6px;-webkit-box-shadow:0 10px 20px rgba(48,44,62,.05);box-shadow:0 10px 20px rgba(48,44,62,.05);padding:7px 8px;width:100%;left:0;top:100%}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button{display:block;border:none;padding:8px 12px;font-size:15px;line-height:1.75;color:#210f59;width:100%;text-align:left;border-radius:2px;background:#fff}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button.exactmetrics-interval-active,body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button:focus,body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button:hover{background:#e9e7ee}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button i{margin-right:10px}body.exactmetrics-reporting-page .exactmetrics-mobile-details-toggle{width:100%;margin-bottom:0;margin-top:10px;margin-left:0;font-weight:700}@media (min-width:783px){body.exactmetrics-reporting-page .exactmetrics-mobile-details-toggle{display:none}}body.exactmetrics-reporting-page .exactmetrics-info{color:#9087ac;cursor:help;font-size:15px;position:relative;display:inline-block;vertical-align:top;margin-left:10px}body.exactmetrics-reporting-page .exactmetrics-report-row{margin-bottom:25px}body.exactmetrics-reporting-page .exactmetrics-report-row.exactmetrics-report-row-border-top{margin-bottom:0;margin-left:-32px;margin-right:-32px;padding:0 32px;border-top:1px solid #e9e7ee}@media (max-width:991px){body.exactmetrics-reporting-page .exactmetrics-report-row.exactmetrics-report-row-border-top{margin-left:-24px;margin-right:-24px;padding-left:24px;padding-right:24px}}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button{background:#eceff5;color:#464c57;border-bottom-width:1px;border-color:#d6e2ed;border-radius:0;line-height:18px;border-right:0;margin:0}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:hover{background:#fff}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:focus{z-index:10;position:relative}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;border-right:1px solid #d6e2ed}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button.exactmetrics-selected-interval{background:#fff;color:#6528f5;font-weight:700}.exactmetrics-reports-overview-datagraph-tooltip-container{padding:15px;background-color:#fff;border:1px solid #bcb7cd;-webkit-box-shadow:0 10px 20px rgba(57,15,157,.15);box-shadow:0 10px 20px rgba(57,15,157,.15);border-radius:5px;display:block}.exactmetrics-pie-chart-tooltip{left:20px;top:20px;padding:0}@media (max-width:782px){.exactmetrics-pie-chart-tooltip{left:50%;margin-left:-97px}}.exactmetrics-reports-doughnut-tooltip{-webkit-box-shadow:none;box-shadow:none;border:none;width:172px;border-radius:50%;height:172px;text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.exactmetrics-reports-doughnut-tooltip .exactmetrics-reports-overview-datagraph-tooltip-title{font-size:30px;color:#6528f5;margin-bottom:18px;font-weight:700}.exactmetrics-reports-doughnut-tooltip .exactmetrics-reports-overview-datagraph-tooltip-number{color:#6528f5;font-size:15px;font-weight:500}#exactmetrics-chartjs-line-overview-tooltip{min-width:100px}.exactmetrics-reports-overview-datagraph-tooltip-number{color:#210f59;font-size:24px;font-weight:400;margin-bottom:5px;display:inline-block;margin-right:5px}.exactmetrics-reports-overview-datagraph-tooltip-trend{color:#23282d;font-size:14px;font-weight:400;display:inline-block}.exactmetrics-reports-overview-datagraph-tooltip-descriptor{color:#9087ac;font-size:12px;font-weight:400;width:100%;clear:both}.exactmetrics-reports-overview-datagraph-tooltip-title{color:#210f59;font-size:12px;font-weight:400;width:100%}#exactmetrics-chartjs-bar-tooltip,.exactmetrics-line-chart-tooltip{opacity:1;position:absolute;-webkit-transform:translate(-50%,-100%);-ms-transform:translate(-50%,-100%);transform:translate(-50%,-100%);margin-top:-20px}#exactmetrics-chartjs-bar-tooltip:after,.exactmetrics-line-chart-tooltip:after{position:absolute;top:100%;width:0;height:0;border-color:#fff rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:10px 9.5px 0;content:"";left:50%;margin-left:-9px;margin-top:-7px}#exactmetrics-chartjs-bar-tooltip:before,.exactmetrics-line-chart-tooltip:before{position:absolute;top:100%;width:0;height:0;border-color:#bcb7cd rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:10px 10.5px 0;content:"";left:50%;margin-left:-10px;margin-top:-6px}#exactmetrics-chartjs-line-age-tooltip .exactmetrics-reports-overview-datagraph-tooltip-number:after{content:"%"}.exactmetrics-report-tabs-navigation{border-bottom:1px solid #e9e7ee}.exactmetrics-report-tabs-navigation button{color:#4d3f7a;font-weight:700;text-align:left;font-size:15px;padding:15px 24px 17px;cursor:pointer;margin:0 0 -1px;position:relative;line-height:1;border-radius:5px 5px 0 0;background:#fff;border:1px solid;border-color:#fff #fff #e9e7ee}@media (max-width:782px){.exactmetrics-report-tabs-navigation button{font-size:14px;padding:13px 20px 15px;text-align:center}}.exactmetrics-report-tabs-navigation button:focus{z-index:10}.exactmetrics-report-tabs-navigation button.exactmetrics-active-tab-button{background:#fff;color:#6528f5;border-color:#e9e7ee #e9e7ee #fff}.exactmetrics-report-tabs{background:#fff}.exactmetrics-report-tabs .exactmetrics-report-tabs-content{padding-top:20px}#mi-custom-line{max-height:330px}.exactmetrics-report-infobox-row{display:-webkit-box;display:-ms-flexbox;display:flex;background:#f4f3f7;border-radius:10px;padding:24px 60px}@media (max-width:782px){.exactmetrics-report-infobox-row{-ms-flex-flow:wrap;flex-flow:wrap;padding:20px}}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:25%;border-left:1px solid #bcb7cd;padding:0 10px 0 60px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-info{display:inline-block;font-size:12px;margin-left:6px;vertical-align:middle}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child{border-left:none;padding-left:0}@media (max-width:782px){.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:100%;border-left:none;border-top:1px solid #bcb7cd;padding:24px 0}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child{border-top:0;padding-top:0}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:last-child{padding-bottom:0}}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-report-title{text-overflow:ellipsis;overflow:hidden;white-space:pre;line-height:1.2;color:#4d3f7a;font-size:13px;display:inline-block;vertical-align:middle;padding-left:0}@media (max-width:991px){.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-report-title{padding-left:0}}.exactmetrics-report-title{font-size:24px;color:#210f59;font-weight:700;margin-top:0;line-height:1.4;display:inline-block}@media (max-width:762px){.exactmetrics-report-title{padding-left:60px}.exactmetrics-report-title.exactmetrics-has-pagination{margin-bottom:80px}}.exactmetrics-report-title:before{width:40px;height:40px;border-radius:50%;background:rgba(33,15,89,.1);right:100%;margin-right:30px;color:#210f59;text-align:center;line-height:40px;font-size:15px;-webkit-transition:background .2s ease 0ms,color .2s ease 0ms;transition:background .2s ease 0ms,color .2s ease 0ms;vertical-align:middle;margin-top:-2px}@media (max-width:762px){.exactmetrics-report-title:before{position:absolute;left:0}}.exactmetrics-reports-infobox-number{font-size:32px;font-weight:500;line-height:1;margin-top:4px;color:#210f59;width:100%;display:block}@media (max-width:782px){.exactmetrics-reports-infobox-number{font-size:36px;float:none}}.exactmetrics-reports-infobox-compare,.exactmetrics-reports-infobox-prev{display:inline-block}@media (max-width:1280px){.exactmetrics-reports-infobox-compare,.exactmetrics-reports-infobox-prev{float:none;clear:both}}.exactmetrics-reports-infobox-prev{font-size:14px;margin-top:4px;margin-right:5px}.exactmetrics-reports-infobox-prev .exactmetrics-arrow{vertical-align:middle}.exactmetrics-reports-infobox-compare{font-size:12px;color:#9087ac;display:inline-block}.exactmetrics-buttons-toggle{margin-right:25px}.exactmetrics-report-flex{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:991px){.exactmetrics-report-flex{-ms-flex-flow:wrap;flex-flow:wrap}}.exactmetrics-reports-pie-chart{width:50%;padding:32px 20px 32px 32px;background:#fff;position:relative}.exactmetrics-reports-pie-chart:first-child{border-right:1px solid #e9e7ee;padding-left:0}@media (max-width:991px){.exactmetrics-reports-pie-chart:first-child{border-right:0}}@media (max-width:991px){.exactmetrics-reports-pie-chart{width:100%;border:none;padding-left:0;padding-right:0}}.exactmetrics-reports-pie-chart .exactmetrics-reports-pie-chart-holder{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;margin-left:20px}@media (max-width:781px){.exactmetrics-reports-pie-chart .exactmetrics-reports-pie-chart-holder{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-left:0;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart{margin:0 12px 0 0}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart-legend{margin:24px 12px;-ms-flex-negative:0;flex-shrink:0;-ms-flex-item-align:center;align-self:center}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart-legend li{background:#f4f3f7;border-radius:10px;padding:10px 20px}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart-tooltip{position:absolute;pointer-events:none}.exactmetrics-pie-chart-legend-color{width:25px;height:25px;display:inline-block;border-radius:50%;margin:7px 17px 7px 0;float:left}.exactmetrics-pie-chart-legend-text{display:inline-block;font-size:15px;color:#9087ac;width:calc(100% - 50px)}.exactmetrics-pie-chart-legend-value{color:#210f59;font-size:18px;font-weight:500;display:inline-block;width:calc(100% - 50px)}.exactmetrics-table-box{background:#fff;width:100%;padding-top:32px;position:relative}.exactmetrics-table-box:first-child{margin-left:0;margin-top:0}@media (max-width:991px){.exactmetrics-table-box{margin-left:0;margin-top:20px}}.exactmetrics-table-box-footer{background:#fff;padding:20px 0 21px;text-align:right}.exactmetrics-report-row-border-top .exactmetrics-table-box-footer{padding-bottom:46px}.exactmetrics-table-box-footer:after{display:table;clear:both;content:""}.exactmetrics-table-box-footer .exactmetrics-button [class*=monstericon-]{margin-left:18px}@media (max-width:782px){.exactmetrics-table-box-footer>.exactmetrics-button{width:100%;text-align:center}}.exactmetrics-table-list-item{padding:12px 20px;min-height:42px;font-size:15px;display:-webkit-box;display:-ms-flexbox;display:flex;border-radius:3px}table .exactmetrics-table-list-item{display:table-row}.exactmetrics-table-list-item:nth-child(odd){background-color:#f4f3f7}.exactmetrics-table-list-item .exactmetrics-reports-list-text{color:#210f59;white-space:pre;text-overflow:ellipsis;overflow:hidden;vertical-align:middle;display:inline-block;width:100%;padding:1px;margin:-1px;font-weight:500}.exactmetrics-table-list-item .exactmetrics-reports-list-text a{display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis;color:#210f59}.exactmetrics-table-list-item .exactmetrics-reports-list-text img{display:inline-block;margin-right:10px;vertical-align:middle}.exactmetrics-table-list-item .exactmetrics-flag{-webkit-transform:scale(.5);-ms-transform:scale(.5);transform:scale(.5);display:inline-block;margin:-6px 0 -10px -8px}.exactmetrics-table-list-item a{text-decoration:none;color:#393f4c}.exactmetrics-table-list-item a:focus,.exactmetrics-table-list-item a:hover{color:#777}.exactmetrics-table-list-item .exactmetrics-reports-list-count{display:inline-block;min-width:30px;color:#657086;font-weight:400}.exactmetrics-table-list-item .exactmetrics-reports-list-number{color:#393f4c;font-size:15px;text-align:right;display:block;padding-left:5px}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:absolute;top:32px;right:0}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-table-box-pagination{float:none;width:100%;margin-top:20px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;top:65px}}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination span{color:#9087ac}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle{position:absolute;top:100%;background:#fff;border:1px solid #f4f3f7;border-radius:3px;margin-top:6px;-webkit-box-shadow:0 10px 20px rgba(48,44,62,.05);box-shadow:0 10px 20px rgba(48,44,62,.05);padding:7px 8px;width:100%;left:0}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle .exactmetrics-button{width:100%;border-radius:3px;border:none;background:#fff}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle .exactmetrics-button.exactmetrics-selected-interval,body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle .exactmetrics-button:focus,body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle .exactmetrics-button:hover{background:#f4f3f7}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-pagination-selector span{color:#37276a}.exactmetrics-pagination-selector{background:#f4f3f7;padding:8px 35px 8px 20px;border:none;border-radius:3px;font-size:15px;line-height:1.7;cursor:pointer}.exactmetrics-pagination-selector:after{width:0;height:0;border-color:#9087ac rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:5px 3.5px 0;content:"";position:absolute;top:50%;margin-top:-1px;right:20px}@media (max-width:792px){.exactmetrics-pagination-selector{width:100%;text-align:left;top:65px}}.exactmetrics-table-box-list{min-height:calc(100% - 147px);position:relative}.exactmetrics-table-box-list .exactmetrics-table-no-data{top:0;bottom:0;left:0;right:0}.exactmetrics-table-box-table .exactmetrics-table-item-content{display:-webkit-box;display:-ms-flexbox;display:flex;word-break:break-all}@media (max-width:782px){.exactmetrics-table-box-table .exactmetrics-table-item-content{-ms-flex-flow:wrap;flex-flow:wrap}}.exactmetrics-table-box-mobile .exactmetrics-table-box-table{overflow:auto}.exactmetrics-table-box-mobile .exactmetrics-table-box-table tr{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly;padding:0}.exactmetrics-table-box-mobile .exactmetrics-table-box-table tr.exactmetrics-table-list-item-active td{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;padding-left:0;margin-left:50px;border-top:1px solid #d6e2ed;font-size:13px;color:#657086;padding-top:8px;padding-bottom:8px}.exactmetrics-table-box-mobile .exactmetrics-table-box-table tr.exactmetrics-table-list-item-active td.exactmetrics-table-cell-1{margin-left:0;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;width:100%;padding-left:20px;font-size:15px;color:#210f59;padding-top:12px;padding-bottom:12px;border-top:none}.exactmetrics-table-box-mobile .exactmetrics-table-box-table tr.exactmetrics-table-list-item-active td.exactmetrics-table-cell-1 .exactmetrics-table-item-content:after{-webkit-transform:translateY(-50%) rotate(0);-ms-transform:translateY(-50%) rotate(0);transform:translateY(-50%) rotate(0)}.exactmetrics-table-box-mobile .exactmetrics-table-box-table td,.exactmetrics-table-box-mobile .exactmetrics-table-box-table th{display:none;width:100%}.exactmetrics-table-box-mobile .exactmetrics-table-box-table td.exactmetrics-table-cell-1,.exactmetrics-table-box-mobile .exactmetrics-table-box-table th.exactmetrics-table-cell-1{display:block;width:100%}.exactmetrics-table-box-mobile .exactmetrics-table-box-table td.exactmetrics-table-cell-1 .exactmetrics-table-item-content,.exactmetrics-table-box-mobile .exactmetrics-table-box-table th.exactmetrics-table-cell-1 .exactmetrics-table-item-content{padding-right:30px;position:relative;white-space:pre;text-overflow:ellipsis;overflow:hidden;width:100%}.exactmetrics-table-box-mobile .exactmetrics-table-box-table td.exactmetrics-table-cell-1 .exactmetrics-table-item-content:after,.exactmetrics-table-box-mobile .exactmetrics-table-box-table th.exactmetrics-table-cell-1 .exactmetrics-table-item-content:after{content:"\F01F";display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;position:absolute;right:10px;top:50%;-webkit-transform:translateY(-50%) rotate(180deg);-ms-transform:translateY(-50%) rotate(180deg);transform:translateY(-50%) rotate(180deg);color:#9087ac;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}.exactmetrics-table-box-mobile .exactmetrics-table-box-table .exactmetrics-table-mobile-heading{min-width:125px}.exactmetrics-table-box-mobile .exactmetrics-table-box-table .exactmetrics-table-list-item-empty td:first-child .exactmetrics-table-item-content:after{display:none}.exactmetrics-table-box-table table{width:100%;border-collapse:collapse}.exactmetrics-table-box-mobile .exactmetrics-table-box-table table{table-layout:fixed}.exactmetrics-table-box-table th{text-align:left;font-size:12px;color:#9087ac;text-transform:uppercase;letter-spacing:.08em}.exactmetrics-table-box-table td,.exactmetrics-table-box-table th{border:none;padding:12px 10px;line-height:19px}.exactmetrics-table-box-table td:first-child,.exactmetrics-table-box-table th:first-child{padding-left:20px}.exactmetrics-table-box-table td:last-child,.exactmetrics-table-box-table th:last-child{padding-right:20px}.exactmetrics-report-2-columns{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.exactmetrics-report-2-columns .exactmetrics-table-box{width:50%}@media (max-width:991px){.exactmetrics-report-2-columns .exactmetrics-table-box{width:100%}}.exactmetrics-report-2-columns.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:50%}@media (max-width:782px){.exactmetrics-report-2-columns.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:100%}}.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(odd){padding-right:32px;border-right:1px solid #e9e7ee}@media (max-width:991px){.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(odd){padding-right:0;border-right:none}}.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(2n){padding-left:32px}@media (max-width:991px){.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(2n){padding-left:0}}.exactmetrics-report-dimensions .exactmetrics-table-box{border-top:1px solid #e9e7ee;padding-left:32px;padding-right:32px}.exactmetrics-report-dimensions .exactmetrics-report-2-columns{margin-left:-32px;margin-right:-32px}.exactmetrics-report-flex .exactmetrics-report-box{width:50%}@media (max-width:782px){.exactmetrics-report-flex .exactmetrics-report-box{width:100%;margin-top:20px}.exactmetrics-report-flex .exactmetrics-report-box:first-child{margin-top:0}}.exactmetrics-reports-tooltip{font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.exactmetrics-arrow{width:10px;height:11px;display:inline-block;background-size:contain;background-repeat:no-repeat}.exactmetrics-arrow.exactmetrics-down{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAXVBMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjip09rAAAAHnRSTlMA8IciAeKVlnAwD/bp1ci5on1URtyyl2dhPzccFQOiNcZVAAAAg0lEQVQoz9XNWQ6DMAxFUUNCmwBl7Dx4/8tsjCAvQd4A98OWdT5MaOr74UtaLTOPqhRByuNL7fxefs9ZoOPmlYsdmB3RLdzFOxV759BMHQv5REqWJjKV7NZEGRc4WVqpMqu4CBtdP4s8IoAujQwACAFAAI3OABAgJ4BGgJzkuVrt0+sPB0gVjZ7FTpgAAAAASUVORK5CYII=)}.exactmetrics-arrow.exactmetrics-down.exactmetrics-green{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMADloG+qFg0bOrm1RNGJCAd3FoRe/Zyci8kjIuLCxb7jsAAACJSURBVCjP3cpbFsIgDEXRC8G29mVrfWvmP00DcREtHYHnI0A2sB7T5LEVnZh52RLHkv8DeblCnhTnnc/DSlquZXWQd+1+ZIwrwoWlqzORv7EBS4jnjbLMCUYAfaKGPlIlaIFMO5UuKGidUhp6BYwsAULOhxVYldFewagAowxFxwiNQkkKZf38DW9jKhaFyDomEwAAAABJRU5ErkJggg==)}.exactmetrics-arrow.exactmetrics-up{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMA8Icj45jrlzD20bqkfXJkV0sUD9zWxbaLcT43HO3asg8AAACASURBVCjP3clJFsIgEADRisRA5slZuf81ReQ1UZILpBa1+SyaDeup3OotsPa4AUIJCCUQKYVIERKKcC7dKqEIp1fmfugDRcgVXui+JFAogtB60nDxYBDh5mng6p49WQj6IyNTZcsHP0JjbQfMd8Of0I9IIqEdSOGkXZWhrpsJ6Q1+nBSNjDcDLgAAAABJRU5ErkJggg==)}.exactmetrics-arrow.exactmetrics-up.exactmetrics-red{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAZCAMAAAAc9R5vAAAAV1BMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjhHHlCMAAAAHHRSTlMALTzj+N0V79kkHNVD0U5IIBnqy8K3VTcSB704vhc5cQAAAJRJREFUKM/VjUkSwyAMBIeACRhsvC+J/v/ORErZcOADmYOm1F0lIccH51HJoIl0xbQNfaOHKhdT4ZKmLfnoiGrGOirixpsH3p8ySmM7+Zp4bvIrWOaH8MkrrofXlzlmOaHwE1ATd2fx4jZvXAK7/FmgmUdkgWj4hFSPUqA3ZBIQ1w2FELMm5GTB+XOxV8S5EM3nvX4AV4MVrf6KAvgAAAAASUVORK5CYII=)}.exactmetrics-reports-overview-datagraph-tooltip-trend{font-weight:700}.exactmetrics-report-box{background:#fff;padding:32px 0;position:relative}.exactmetrics-report-box-icon-heading{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:10px}.exactmetrics-report-box-icon-heading h3{color:#6528f5;margin-left:15px}.exactmetrics-realtime-large{font-size:120px;text-align:center;line-height:1.4;color:#32a27a}.exactmetrics-realtime-active{text-align:center;width:100%;font-size:17px;line-height:1;margin-top:-2px;color:#210f59;font-weight:500}.exactmetrics-realtime-box-content .exactmetrics-line-chart-tooltip{max-width:115px}.exactmetrics-realtime-count-box{width:357px;height:357px;margin:50px auto;border-radius:50%;border:15px solid #e9e7ee;text-align:center;padding-top:52px}@media (max-width:782px){.exactmetrics-realtime-count-box{width:300px;height:300px;padding-top:40px}}.exactmetrics-realtime-count-box h3{display:inline-block;font-size:24px;color:#210f59;line-height:1.4;margin:0}#exactmetrics-chartjs-pie-age-tooltip{margin-left:23px;min-width:95px}.exactmetrics-blur .exactmetrics-report-top{pointer-events:none}.exactmetrics-blur .exactmetrics-report-row{-webkit-filter:blur(5px);filter:blur(5px)}.exactmetrics-blur .exactmetrics-report{min-height:850px}.exactmetrics-reports-referral-icon{vertical-align:middle;margin-right:10px;margin-left:2px}.exactmetrics-upsell-inline{background-image:url(../img/reports-upsell-bg.png);background-repeat:no-repeat;background-position:100% 0;background-color:#fff;background-size:452px}@media (max-width:991px){.exactmetrics-upsell-inline .exactmetrics-upsell-inline-content{margin:-20px;padding:20px;background:hsla(0,0%,100%,.3)}}.exactmetrics-upsell-content{max-width:750px}.exactmetrics-upsell-content p{font-size:16px;color:#393f4c;line-height:1.8}.exactmetrics-upsell-content .exactmetrics-light{color:#657086}.exactmetrics-upsell-content .exactmetrics-button{font-size:17px;font-weight:700;padding:15px 25px;line-height:1}@media (max-width:782px){.exactmetrics-upsell-content .exactmetrics-button{font-size:15px}}.exactmetrics-upsell-overlay{position:absolute;top:125px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:750px;max-width:100%;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);background-color:#fff;border:1px solid #d6e2ed}.exactmetrics-upsell-overlay .exactmetrics-upsell-top{padding:0 40px}@media (max-width:782px){.exactmetrics-upsell-overlay .exactmetrics-upsell-top{padding:0 20px}}@media (max-width:782px){.exactmetrics-upsell-overlay{top:70px;width:calc(100% - 40px)}}.exactmetrics-upsell-overlay h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.exactmetrics-upsell-overlay h4{font-size:16px;line-height:140%;color:#444}.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:16px auto 24px;max-width:520px;display:grid;grid-gap:10px}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul.columns-1{grid-template-columns:1fr}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul.columns-2{grid-template-columns:1fr 1fr}.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:#6528f5;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:#fff;font-size:14px;text-align:center;line-height:20px;top:-1px}.exactmetrics-upsell-overlay .exactmetrics-upsell-content .exactmetrics-button{font-weight:400;font-size:16px;margin-top:10px}.exactmetrics-upsell-overlay a{color:#393f4c}.exactmetrics-upsell-overlay a:hover{text-decoration:none}.exactmetrics-center,.exactmetrics-mobile-upsell{text-align:center}.exactmetrics-mobile-upsell .exactmetrics-notice{border-top:1px solid #d6e2ed;border-right:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.exactmetrics-mobile-upsell .exactmetrics-notice-inner{margin-top:0}@media (min-width:783px){.exactmetrics-mobile-upsell{display:none}}.exactmetrics-mobile-upsell .exactmetrics-notice-success .exactmetrics-notice-button{margin-right:0}.exactmetrics-overview-upsell-desktop{margin:0 -32px}@media (max-width:782px){.exactmetrics-overview-upsell-desktop{display:none}}.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-left{width:55%}@media (max-width:969px){.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-left{width:100%}}.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-right{width:45%}.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-right .exactmetrics-em-upsell-screen{bottom:auto;height:490px;width:779px;left:0}.exactmetrics-overview-upsell-desktop .exactmetrics-em-logo-text{width:376px;margin-right:142px}.exactmetrics-overview-upsell-desktop .exactmetrics-em-logo-text:before{content:"";height:48px;width:127px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAP4AAABgCAMAAAAKJD9QAAAAV1BMVEUAAAAgD1ghD1kgC1ghD1khD1ogD1ggEFEgDlkgDlggDlghDlkgDlkiDlkgEFghD1kgDlggEF0gDlggD1ogD1chD1kgD1kgDVgiDlkgD1ggEFogEFUhD1k1ONBfAAAAHHRSTlMAv98g/u9AEHCAYI+vnyHPUBGggDDuvkF/vjExfxARwwAABb9JREFUeNrlnO3O2yAMhfkIhAJp0y7tuo37v85p0qRqC+XENm+Wbed3hXhiY4NNUf+ElpgmbUz5IXPRU5it2ia9VVMKfsugSW9Tnk6zl5OPPmlX1nI5LAqrkGRytOh7Fop08iL27FqzTQvEJ0tHgE+UmSwP3ieHB48jGR+PCfCp4nwAr3t83cKSmQE+/QOw4bGSBfh0pRHg8z0Ky956DV64MrYrfhmem+mD6zbbwpZbAD5Vj3ET/Fl3/LqlN78ubF228M+OO7rF+HJ+XQT8mP5U2DILxJevKF0ESgD+OhWBhoDw5ebSsgm26S8FiBoAikyf+uKXu20FPUDP4C9C2b745dGwvSlFzt8XX3fGHzzw/L78RSrfF7+Yd/hT6aIhAnyzFsH8esOADpifl/GM0VobB8PL0sQ39ZN1MO/MD/FtrT6Taat/bmegFO34mmo2W9M1wftifdCE8UnnlmGpBf0GkD6td4v+5kB4JeMrW13Xjoj/kjUwmeKIov2bwaPBuwuMj2fhMT7gh3up8NbrPWeDfLc8/NEA78f4mH8YN7v+iXk4fPDwlQexn4ivfCM1vXQDZxiyAwyRgA/o3EjCx2TpdyOCEyzjfHwfefixrLUI8O2Gxa8b1QGor3X+Tzz8sTJaJOFjtrv6RZ8BPYv/PjbwadM9SfBjLfZh4xtE/1Ksm5+Hn8pKkwT/XMG3qx+AQgsj/t15+KEzvnJg239DyQFL14aYWfgRZD4y/qWNf3UFfHCsc22MBwvf98bXbfzIc328axzGvwFfV8MWVaY2Sifnzx+If61XRLBw8nxw8E+9Q59p4s/A+ALzDyMDP3fO+9d24ruBvChIfkOs4pM/Y0D4RLccVnmBGfZBApno+As48GN8fOa5tH1jVhzpKinGxye0EeOTTvy57RsjACVsrqn4FgRiMv6z3ek6kRoh1BjjMT42fhbgW1DqBoEWCGWYQMR/lopi52KXQZuChmiWSxgfVxytpNQJNvROsPTx5DMFf0ygzUPF9wa2eUAtBAg1Si7b8e3TlaoiE99r3OQ716bM1Leykqngu9NaaTKgJUnCH5eY3JYW5Fka+Ntj3VWR6tNHdng/A3xp5hPjG9sXf4gAf1JcfQR+VH3xv6i/Cd90v9uDwlU+EL6zAJ/j+n9P6AuqL/4nPGXTN/ExhTvx8vHk2x6YRbrfwdRy+j02vXL8pBC+/EbnZY8jj9xWcnyzoDnje6/Udkpg4xuveuK7yvWk/csd8v+yKN31rzxztTXN0QyKXQTpxvrTQsvj/q/vtfSNYuC7ySvVDd8kT62rp16F7kzGdzkC39Mk+BEarZP3R9DmgOAmp7iw6unR/1AAyQ5Nu3+Ty4I6P0W43JHRDdaXdmlxXtSu+KPjuL8GPsM3ftgXX82cfy+Fwlr9eAkNdj/8hvt7GLLFwf9sRJdb5PgC90+Flfvx7agd8Vvu/wBRS3yxLVRHUDviN90/wBFFO/+vsmuNcnywku+Wbv4yiRZ+MXZP/Lb7X8CQgB/R142/J37b/UtimL9M4xbPN63d9v74V0eP5LkUZvwLrllR3h9fzfSzz9nxXrwYE2hP7IUvdP/AevIkvm2j2p3xsfvPYFTyB/AalCl3xMfuf7fY/evKc8Xtnwb0EXfDH1Zgmb6RmdtFmOBfwcPOSYOm9O742JZDkD3aYbSepklfHOonLOoP46uA5oXPLYJuyh/HB39PAs8XCPuSB8A/O3r2u5ou9EfAf+P+Hm3f5fTHwAfuD/yfT38U/Lr7Z1D5ysKodxh8FcAM+z9a5dWB8JUGmz/whAZVX6w6FH7d/R+9H6x73YM/Fv6bc1z6iOcKL4s6HL7SIPv1eqzyHpQ6IP7ZgewnXAGv+wOHxG+4P5TXBPiD4r9x/3nje604CegwKnVc/LNrZD+s2H6k+uTpT5TfZPhpNeCXlgGCrulEeapav6mAWPWfaJlP+ecD9c6YfNv8QP13jdUZgGL72MYAAAAASUVORK5CYII=);background-size:contain;position:absolute;left:100%;top:0;margin-left:15px}.exactmetrics-report-realtime .exactmetrics-table-box th:first-child{width:auto}.exactmetrics-reports-list-title{display:inline-block;word-break:break-all}@media (max-width:782px){.exactmetrics-reports-list-title{width:calc(100% - 30px);text-overflow:ellipsis;overflow:hidden}}.exactmetrics-report-scroll{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;padding-top:32px}.exactmetrics-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-left:25px}@media (max-width:991px){.exactmetrics-report-scroll:nth-child(2){width:100%;margin-left:0;margin-top:25px}}@media (max-width:782px){.exactmetrics-report-scroll{width:100%;margin-left:0}}.exactmetrics-report-scroll>h3{position:absolute;top:0}.exactmetrics-report-scroll .exactmetrics-realtime-active{margin:0 0 50px}.exactmetrics-report-scroll .exactmetrics-realtime-box-content{margin:25px 0}.exactmetrics-report-scroll .exactmetrics-realtime-large{line-height:1;margin:50px 0 0;font-size:80px}@media (max-width:782px){.exactmetrics-report-scroll .exactmetrics-realtime-large{margin-top:25px}}.exactmetrics-not-authenticated-notice{position:fixed;top:40%;left:50%;width:750px;max-width:100%;margin-left:-295px;background:#fff;padding:0 20px 20px;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);border:1px solid #d6e2ed;text-align:center}@media (min-width:783px){.folded .exactmetrics-not-authenticated-notice{margin-left:-357px}}@media (max-width:960px){.exactmetrics-not-authenticated-notice{margin-left:-357px}}@media (max-width:750px){.exactmetrics-not-authenticated-notice{left:0;margin-left:0}}@media (min-width:750px) and (max-width:782px){.exactmetrics-not-authenticated-notice{margin-left:-375px}}.exactmetrics-not-authenticated-notice .exactmetrics-auth-manual-connect-paragraph{display:none}.exactmetrics-not-authenticated-notice h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate{text-align:center}.exactmetrics-not-authenticated-notice .exactmetrics-license-button{line-height:1;margin-top:20px}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button{font-size:16px;padding:20px 40px;margin:20px 20px 10px;background:#e9e7ee;border-color:#e9e7ee;color:#37276a}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button:focus,.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button:hover{background-color:#f4f3f7;border-color:#f4f3f7;color:#37276a}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-alt{background:#6528f5;border-color:#6528f5;color:#fff}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-alt:focus,.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-alt:hover{background-color:#37276a;border-color:#37276a;color:#fff}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-disabled{background:#e9e7ee;border-color:#e9e7ee;color:#9087ac}.exactmetrics-reports-list-has-overflow{cursor:pointer}.exactmetrics-reports-ecommerce-pie-chart{padding:130px 0 0;width:40%;max-width:100%}@media (max-width:792px){.exactmetrics-reports-ecommerce-pie-chart{width:100%;padding-top:32px}}.exactmetrics-reports-ecommerce-pie-chart .exactmetrics-reports-pie-chart{position:relative;width:225px;text-align:center;padding:0;margin:0 auto;border:none}.exactmetrics-table-no-data{background:url(../img/loading-background.jpg) no-repeat bottom #f4f3f7;height:100%;min-height:300px;text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background-size:cover;border-radius:10px;padding:20px}.exactmetrics-table-no-data h3{font-size:17px;line-height:1.5;color:#210f59}.exactmetrics-product-color{display:inline-block;width:14px;height:14px;margin-right:11px;vertical-align:middle;border-radius:50%}.exactmetrics-report-row-icon-left{position:relative;padding-left:170px}.exactmetrics-report-row-icon-left:before{font-size:50px;position:absolute;left:50px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);color:#9087ac}@media (max-width:782px){.exactmetrics-report-row-icon-left{padding-left:20px}.exactmetrics-report-row-icon-left:before{display:none}}.exactmetrics-admin-page .exactmetrics-lite-datepicker{text-align:center;padding:12px 12px 27px}.exactmetrics-admin-page .exactmetrics-lite-datepicker p{color:#210f59;font-size:15px;line-height:1.5;font-weight:700}.exactmetrics-admin-page .exactmetrics-lite-datepicker .exactmetrics-button-text{color:#32a27a;display:inline-block;width:auto}.exactmetrics-admin-page .exactmetrics-lite-datepicker .exactmetrics-button-text:focus,.exactmetrics-admin-page .exactmetrics-lite-datepicker .exactmetrics-button-text:hover{color:#19865f}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-button{background:#e9e7ee;color:#210f59}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-button:focus,body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-button:hover{background:#bcb7cd}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-accordion-item-details,body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-pdf-score{display:block!important}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-progress-circle{display:none}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-reports-intervals-dropdown{min-width:250px}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-reports-intervals-dropdown .exactmetrics-button{background:rgba(0,0,0,0);color:#32a27a}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-reports-intervals-dropdown .exactmetrics-button:focus,body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-reports-intervals-dropdown .exactmetrics-button:hover{color:#19865f}body.exactmetrics-reporting-page .exactmetrics-notice-error.exactmetrics-license_expired{display:none!important}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .exactmetrics-swal-icons{display:none}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .swal2-popup{width:600px;padding:2em 3.25em}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .swal2-actions{display:none!important}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .swal2-footer{display:block!important;text-align:center;padding-top:20px}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .swal2-footer a{display:inline-block}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .swal2-footer a.swal2-styled{padding-top:16px;padding-bottom:20px;margin-bottom:15px;text-decoration:none}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .swal2-footer a:nth-child(3){color:#393f4c!important}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .exactmetrics-expired-license-alert{text-align:left;padding-right:39px}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .exactmetrics-expired-license-alert h3{font-size:40px;margin:0 0 8px;padding:0}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .exactmetrics-expired-license-alert h4{font-size:20px;margin:0 0 10px;padding:0}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .exactmetrics-expired-license-alert p{font-size:16px;margin:0 0 10px;padding:0}
lite/assets/vue/css/reports.rtl.css CHANGED
@@ -1,3 +1,3 @@
1
  /*!
2
  * Generated with CSS Flag Sprite generator (https://www.flag-sprites.com/)
3
- */.exactmetrics-flag{display:inline-block;width:32px;height:32px;background:url(../img/flags.png) no-repeat}.exactmetrics-flag.exactmetrics-flag-ad{background-position:-32px 0}.exactmetrics-flag.exactmetrics-flag-ae{background-position:-64px 0}.exactmetrics-flag.exactmetrics-flag-af{background-position:-96px 0}.exactmetrics-flag.exactmetrics-flag-ag{background-position:-128px 0}.exactmetrics-flag.exactmetrics-flag-ai{background-position:-160px 0}.exactmetrics-flag.exactmetrics-flag-al{background-position:-192px 0}.exactmetrics-flag.exactmetrics-flag-am{background-position:-224px 0}.exactmetrics-flag.exactmetrics-flag-an{background-position:-256px 0}.exactmetrics-flag.exactmetrics-flag-ao{background-position:-288px 0}.exactmetrics-flag.exactmetrics-flag-ar{background-position:-320px 0}.exactmetrics-flag.exactmetrics-flag-as{background-position:-352px 0}.exactmetrics-flag.exactmetrics-flag-at{background-position:-384px 0}.exactmetrics-flag.exactmetrics-flag-au{background-position:-416px 0}.exactmetrics-flag.exactmetrics-flag-aw{background-position:-448px 0}.exactmetrics-flag.exactmetrics-flag-ax{background-position:-480px 0}.exactmetrics-flag.exactmetrics-flag-az{background-position: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 a{color:#6528f5}.exactmetrics-upsell a:focus,.exactmetrics-upsell a:hover{color:#37276a}.exactmetrics-upsell .exactmetrics-upsell-title{border-bottom:1px solid #e9e7ee}.exactmetrics-upsell .exactmetrics-upsell-title h2{color:#210f59;font-size:32px;margin-right:100px;margin-top:45px;margin-bottom:35px}@media (max-width:782px){.exactmetrics-upsell .exactmetrics-upsell-title h2{margin-right:24px;line-height:1.4;margin-top:24px;margin-bottom:24px}}.exactmetrics-upsell .exactmetrics-upsell-half h3{font-size:24px;color:#210f59;font-weight:700}.exactmetrics-upsell-bottom{background:#f7f9fd;border-top:1px solid #d6e2ed;padding:36px 50px 30px;position:relative}@media (max-width:767px){.exactmetrics-upsell-bottom{padding-right:20px;padding-left:20px}}.exactmetrics-upsell-bottom .exactmetrics-button-top{position:absolute;top:0;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}@media (max-width:767px){.exactmetrics-upsell-bottom .exactmetrics-button-top{min-width:288px}}.exactmetrics-upsell-bottom img{max-width:100%}.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-upsell-screen,.exactmetrics-screen-image{width:848px;padding-top:0;height:566px}@media (max-width:1099px){.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-upsell-screen,.exactmetrics-screen-image{right:20px}}.exactmetrics-em-ecommerce-upsell-screen:after,.exactmetrics-em-upsell-screen:after,.exactmetrics-screen-image:after{background-position:0 100%;background-image:url(../img/upsell-screen.png)}.exactmetrics-em-logo-text{width:432px;height:56px;margin-bottom:28px;padding-top:0;max-width:100%}@media (max-width:1400px){.exactmetrics-em-logo-text{padding-top:13%;height:auto}}@media (max-width:959px){.exactmetrics-em-logo-text{padding-top:8%}}.exactmetrics-em-logo-text:after{background-image:url(../img/exactmetrics.png)}.exactmetrics-em-addons-upsell-screen,.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-publishers-upsell-screen{bottom:auto;top:-65px;width:648px;left:-13%}.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/one-click-integrations.png)}.exactmetrics-em-publishers-upsell-screen:after{background-image:url(../img/publishers-screen.png)}.exactmetrics-em-addons-upsell-screen{margin-bottom:-180px;top:-70px}.exactmetrics-em-addons-upsell-screen:after{background-image:url(../img/addons-help-screen.png)}.exactmetrics-em-search-console-upsell-screen:after{background-image:url(../img/search-console-screen.png)}.exactmetrics-em-real-time-upsell-screen:after{background-image:url(../img/real-time-screen.png)}.exactmetrics-em-site-speed-upsell-screen:after{background-image:url(../img/site-speed-screen.png)}.exactmetrics-em-forms-report-upsell-screen:after{background-image:url(../img/forms-report-screen.png)}.exactmetrics-em-dimensions-report-upsell-screen:after{background-image:url(../img/dimensions-report-screen.png)}.exactmetrics-em-media-report-upsell-screen:after{background-image:url(../img/media-report-upsell.png);background-size:80%;background-position:left 40px}.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-report-year-in-review{margin-right:auto;margin-left:auto;max-width:960px;background-color:#fff;background-image:url(../img/confetti-background.png);background-repeat:no-repeat;background-position:100% 0;margin-bottom:90px}.exactmetrics-report-year-in-review .exactmetrics-pie-chart-tooltip{right:22px;top:23px}.exactmetrics-report-year-in-review .exactmetrics-reports-doughnut-tooltip{width:120px;height:120px}.exactmetrics-report-year-in-review.exactmetrics-yir-report-calculating-row{width:610px;margin-top:50px}@media (max-width:767px){.exactmetrics-report-year-in-review.exactmetrics-yir-report-calculating-row{width:100%;margin-top:20px}}.exactmetrics-report-year-in-review a,.exactmetrics-report-year-in-review h1,.exactmetrics-report-year-in-review h2,.exactmetrics-report-year-in-review h3,.exactmetrics-report-year-in-review h4,.exactmetrics-report-year-in-review h5,.exactmetrics-report-year-in-review p,.exactmetrics-report-year-in-review span{font-family:Lato,sans-serif;margin:0}.exactmetrics-report-year-in-review h1,.exactmetrics-report-year-in-review h2,.exactmetrics-report-year-in-review h3,.exactmetrics-report-year-in-review h4,.exactmetrics-report-year-in-review h5{font-weight:900}.exactmetrics-report-year-in-review p{font-style:normal;font-weight:400;font-size:14px;line-height:24px}.exactmetrics-report-year-in-review a{text-decoration:none;padding:8px 30px;border-radius:5px;color:#fff;font-weight:700;font-size:14px;line-height:24px;text-align:center}.exactmetrics-report-year-in-review .exactmetrics-yir-separator{border-left-color:#e0e0e0;border-right-color:#e0e0e0;border-top:1px solid #e0e0e0;border-bottom:1px solid #e0e0e0}.exactmetrics-report-year-in-review .exactmetrics-yir-footer,.exactmetrics-report-year-in-review .exactmetrics-yir-header,.exactmetrics-report-year-in-review section{padding:0 90px;clear:both;overflow:hidden}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-footer,.exactmetrics-report-year-in-review .exactmetrics-yir-header,.exactmetrics-report-year-in-review section{padding:0 15px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-footer,.exactmetrics-report-year-in-review .exactmetrics-yir-header,.exactmetrics-report-year-in-review section{padding:0 30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-text-right{text-align:left}.exactmetrics-report-year-in-review .exactmetrics-yir-text-right h2{color:#fff}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header{padding:90px 90px 90px 0;background-image:url(../img/em-logo-lg.png);background-repeat:no-repeat;background-position:center left 26px;background-size:230px 200px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header{padding:50px 15px 40px;background-image:none}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header{padding-right:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating{padding:90px 60px 100px 0;background-image:url(../img/em-logo-lg.png);background-position:left top 83px;background-size:160px 150px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating{padding-right:15px;padding-left:15px;padding-top:50px;background-size:140px 180px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-title{font-size:32px;line-height:37px;color:#393f4c;margin-top:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-title{font-size:26px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-summary{font-weight:400;font-size:14px;line-height:20px;color:#393f4c;max-width:385px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-summary{font-size:12px;max-width:230px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link{background:#4e9ee7;border-radius:5px;font-weight:700;font-size:14px;line-height:16px;text-align:center;color:#fff;border:0;margin-left:0;padding:12px 20px;margin-top:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link{width:inherit}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link{width:inherit}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link:active,.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-subtitle{font-size:20px;font-weight:900;background:#338eef;border-radius:30px;color:#fff;padding:14px 90px 14px 25px;position:relative;display:inline-block}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-subtitle{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-subtitle svg{position:absolute;right:5px;bottom:-5px}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-title{font-style:normal;font-weight:900;font-size:48px;line-height:58px;color:#393f4c;margin-bottom:15px;margin-top:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-title{font-size:20px;line-height:20px;margin-bottom:10px;margin-top:30px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-title{font-size:32px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-summary{font-weight:500;font-size:24px;line-height:32px;color:#828282;max-width:480px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-summary{font-size:16px;line-height:18px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-summary{font-size:16px;line-height:20px;max-width:400px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart{background:#fff;-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);border-radius:4.85258px}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-header{display:-webkit-box;display:-ms-flexbox;display:flex;padding:20px 30px;border-bottom:2px solid #f2f2f2;margin-bottom:55px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-header{margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-header div{width:100%}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-title{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:left;color:#393f4c;margin:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-subtitle{font-size:10px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content{padding:0 30px 15px 50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content{padding:0 15px 15px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content .exactmetrics-reports-bar-chart-holder{position:relative}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content .exactmetrics-reports-bar-chart-holder .exactmetrics-chart-tooltip{position:absolute;pointer-events:none}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box{padding-top:0;position:relative;border:0;-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);background:hsla(0,0%,100%,.38)}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box.exactmetrics-year-in-review-table-box-blur-report .exactmetrics-year-in-review-table-box-list{-webkit-filter:blur(5px);filter:blur(5px)}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header{padding:20px 30px;border-bottom:2px solid #f2f2f2;margin-bottom:30px}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-title{display:inline-block}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-title .exactmetrics-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-title .exactmetrics-report-title{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-subtitle{display:inline-block;float:left}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-subtitle .exactmetrics-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:left;color:#393f4c;margin:0;text-transform:capitalize}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list{padding-bottom:30px}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item{padding:9px 30px}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a{padding:0;border-radius:0;line-height:37px;line-height:inherit}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a:active,.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a:focus,.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a:hover{-webkit-box-shadow:none;box-shadow:none;background:none}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer{position:absolute;bottom:-34px;width:100%;right:0;text-align:center}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer{bottom:-40px}}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer .exactmetrics-yir-tooltip{font-weight:400;font-size:12px;color:#828282}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer .exactmetrics-yir-tooltip span{font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer .exactmetrics-yir-tooltip .exactmetrics-yir-icon{background:#dadada;border-radius:50%;padding:0;margin-left:10px;color:#fff;width:15px;height:15px;display:inline-block;line-height:16px}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart{border:0;margin:0;padding:0;width:100%}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-reports-pie-chart-holder{display:inline-block;float:right}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-reports-pie-chart-holder{display:block;float:none}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-reports-pie-chart-holder .exactmetrics-pie-chart{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAFxSURBVHgB7dlPTsJAFAbwb6BxQVzgTThCXaCC3kEPoFBP0PYGVQ9gvUNFY2PSI3AUFhISgx1njAsjIfa1jA+S90u6aDOTzpf5s5gHCF4KNVyePPntthea7j1Ad9FcUWr9cDc5SkFEDjAavoZKlREc0BrR7aQfU/qQAgTDlwut1D0cUmp5mGSDomr7FgjM4M/hmNZ2aVZHCmD4cK9HaUwN8B9Ih4KHBm4e+7VOsd/Gp7lGTds4AyQSgJsE4CYBuEkAbhKAmwTgJgG4SQBuEoCbBOAmAbhJAG4SgFuju9Emd5qbIktoHaUQq/nbwdcDXMORRktoHTvgJOsnPz4lo2HeNaFI1Zcq3MzA3EtXfrTnJXCAGmCGLUMNMK3SqOy8Byvflh9VC4QFCEh7wG5MU8v1/27XCq8Gz7P2YpHa97KzP1ZaR6jAFrxBQK5xBWd5ZEJsfDNapoAeJ9lxROqDGr4L3nZJ+GjO7qupnV1zchUQO+YTOT9YisPBuEEAAAAASUVORK5CYII=);background-color:#fff;background-repeat:no-repeat;background-position:50%}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content{padding-right:50px;padding-top:35px;float:right}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content{padding-right:0;padding-top:20px;float:none}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin-bottom:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-title{font-size:16px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:18px;line-height:24px;color:#393f4c;margin-top:10px;margin-bottom:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-subtitle{font-size:14px;line-height:14px}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend{position:relative;right:inherit;top:inherit;-webkit-transform:inherit;-ms-transform:inherit;transform:inherit;margin:24px 0 0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend{margin:10px 0 0}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li{display:inline-block;margin-left:30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li{margin-left:10px}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-color{border-radius:0;width:16px;height:16px;margin-bottom:-3px;margin-left:5px}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-text,.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-value{font-family:Lato;font-style:normal;font-weight:700;font-size:14px;line-height:24px;color:#393f4c;min-width:inherit;margin-left:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-text,.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-value{font-size:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip{border:2px solid #e3f1ff;border-radius:5px;padding-top:45px;padding-bottom:45px;overflow:hidden;background:#f3f9ff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip{padding-top:15px;padding-bottom:15px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip a,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip h3,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip p{font-family:Lato,sans-serif;margin:0}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-icon{float:right;width:144px;text-align:center}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-icon{width:90px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-icon img{background:#338eef;padding:12px;border-radius:50%;margin-top:12px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content{float:right;width:calc(100% - 144px);padding-left:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content{padding-left:0;width:calc(100% - 90px)}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-title{font-weight:900;font-size:18px;line-height:27px;color:#333;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-title{font-size:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-summary{font-weight:400;font-size:18px;line-height:27px;color:#393f4c;margin-bottom:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-summary{font-size:12px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper{margin-top:15px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link{font-weight:900;font-size:18px;line-height:27px;-webkit-text-decoration-line:underline;text-decoration-line:underline;color:#338eef;margin-top:15px;padding:0;border-radius:0;text-align:right}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link:hover{color:#2469b2;-webkit-box-shadow:none;box-shadow:none}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay{position:absolute;top:0;right:0;width:calc(100% - 25px);height:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content{margin-top:66px;text-align:center;height:calc(100% - 66px);padding-top:80px;padding-left:25px;padding-right:25px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-details{font-size:14px;line-height:20px;font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay{display:inline-block;border-radius:5px;font-size:14px;line-height:20px;color:#fff;padding:10px 30px;text-decoration:none;font-family:Lato;background:#338eef;margin-top:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success{background:#1ec185}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success:hover{opacity:.8;background:#10ad73}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay:hover{border:0;background:#2469b2;outline:none}.exactmetrics-report-year-in-review .exactmetrics-yir-audience{padding-bottom:85px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience{padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:685px;margin-bottom:80px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-summary{font-size:18px;line-height:20px;margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors{width:100%;margin-bottom:70px;padding-right:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors{margin-bottom:20px;padding-right:0;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions img,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors img{margin-bottom:15px;max-height:28px}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions h4,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors h4{font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions h4,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors h4{font-size:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions .exactmetrics-yir-number,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors .exactmetrics-yir-number{font-weight:900;font-size:60px;line-height:72px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions .exactmetrics-yir-number,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors .exactmetrics-yir-number{font-size:40px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-visitor-by-chart{margin-bottom:60px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-visitor-by-chart{margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics{padding-top:85px;padding-bottom:85px;background-image:url(../img/map-background.png);background-repeat:no-repeat;background-position:top}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics{padding-top:30px;padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:656px;margin-bottom:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-summary{font-size:18px;line-height:20px;margin-bottom:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries{display:block}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country{width:50%;margin-top:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-number-one{font-size:24px;line-height:29px;color:#fff;background:#338eef;width:50px;height:50px;border-radius:50%;display:inline-block;text-align:center;line-height:50px;margin-bottom:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-flag{display:block}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-flag{margin:0 auto}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-flag.exactmetrics-flag-zz{display:none}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-name{font-size:32px;line-height:38px;color:#393f4c;margin-top:0;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-name{font-size:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-visitors{font-weight:400;font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-visitors{font-size:16px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-countries-graph{width:50%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-countries-graph{width:100%}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-know-visitors{font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-know-visitors{font-size:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info{margin-top:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info{width:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info span,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info span,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info span{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info h2,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info h2,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info h2{font-size:30px;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info p,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info p,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info p{font-size:10px;line-height:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior{padding-top:85px;padding-bottom:85px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior{padding-top:30px;padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:585px;margin-bottom:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data{display:block;margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary{width:50%;margin-top:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary img{width:32px;height:32px;margin-right:-3px;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary img{margin-right:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-time-spent{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent{font-size:32px;line-height:38px;color:#393f4c;margin-top:15px;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent{margin-top:5px;margin-bottom:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent .exactmetrics-yir-number{font-weight:900;font-size:48px;line-height:58px;color:#338eef;margin-left:10px;overflow-wrap:break-word}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent .exactmetrics-yir-number{font-size:30px;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent .exactmetrics-yir-type{font-weight:900;font-size:16px;line-height:103.8%;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-each-visitor-spent{font-weight:400;font-size:18px;line-height:24px;color:#393f4c;max-width:330px;margin-top:15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-each-visitor-spent{font-size:14px;max-width:100%;margin-top:5px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-top-pages-graph{width:50%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-top-pages-graph{width:100%}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-most-visitors-device{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-most-visitors-device{font-size:20px;line-height:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info{margin-top:20px;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info{width:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info span,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info h2,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info p,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-grow-traffic-tip{margin-top:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-grow-traffic-tip{margin-top:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from{margin-top:55px;margin-bottom:100px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from{margin-top:20px;margin-bottom:60px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-title{font-size:32px;line-height:44px;color:#393f4c;margin-bottom:30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-title{font-size:20px;line-height:20px;margin-bottom:15px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals{display:block}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-keywords,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-referrals{width:50%;position:relative}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-keywords,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-referrals{width:100%}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-keywords{padding-left:25px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-keywords{padding-left:0;margin-bottom:60px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-referrals{padding-right:25px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-referrals{padding-right:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce{padding-top:85px;padding-bottom:30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce{padding-top:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number{width:55%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number{width:30%}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-products-sold,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-revenue{padding:75px 0}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-title{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-title{font-size:14px;line-height:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-amount{font-size:54px;line-height:65px;color:#338eef;overflow-wrap:break-word}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-amount{font-size:24px;line-height:40px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products{width:45%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products{width:70%}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular{-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);border-radius:3.59813px;padding:30px;margin-bottom:30px}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning img,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular img{margin-bottom:5px}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning span,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning span,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular span{font-size:14px;line-height:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning .exactmetrics-yir-product-title,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular .exactmetrics-yir-product-title{font-weight:700;font-size:28px;line-height:32px;color:#338eef;margin-top:10px;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning .exactmetrics-yir-product-title,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular .exactmetrics-yir-product-title{font-size:16px;line-height:16px;margin-bottom:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning .exactmetrics-yir-count,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular .exactmetrics-yir-count{font-weight:400;font-size:16px;line-height:19px;color:#828282}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning .exactmetrics-yir-count,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular .exactmetrics-yir-count{font-size:12px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-revenue-by-month{margin-bottom:50px}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you{padding-top:90px;background-color:#fff;background-image:url(../img/confetti-background.png);background-position:100% 0;padding-bottom:85px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you{padding-top:0;padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-title{font-size:54px;line-height:65px;text-align:center;color:#393f4c;max-width:588px;margin:0 auto 10px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-title{font-size:30px;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-summary{font-weight:500;font-size:20px;line-height:28px;text-align:center;color:#393f4c;max-width:585px;margin:0 auto 15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-summary{font-size:14px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-amazing-year{font-weight:700;font-size:32px;line-height:37px;text-align:center;color:#393f4c;font-style:italic;margin-bottom:35px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-amazing-year{font-size:24px;line-height:24px;margin-bottom:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors{text-align:center;margin-bottom:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors{margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author{display:inline-block;padding:0 45px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author{padding:0 10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-thumbnail{width:96px;height:96px;background-repeat:no-repeat;margin:0 auto 10px}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-thumbnail.chris{background-image:url(../img/chris.png)}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-thumbnail.syed{background-image:url(../img/syed.png)}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-name{font-weight:900;font-size:18px;line-height:22px;text-align:center;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-name{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review{background:#338eef;-webkit-box-shadow:0 8px 8px rgba(30,88,150,.2);box-shadow:0 8px 8px rgba(30,88,150,.2);border-radius:5px;padding:24px;display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review{display:block}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content,.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-rating,.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button{width:100%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content{text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content span{font-weight:900;font-size:14px;color:#fff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content span{font-size:12px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content h3{font-weight:900;font-size:20px;line-height:31px;color:#fff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content h3{font-size:18px;line-height:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-rating .exactmetrics-yir-five-star{margin:0;padding:12px 0 0;text-align:center}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-rating .exactmetrics-yir-five-star li{list-style:none;display:inline-block;margin-left:7px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-rating .exactmetrics-yir-five-star li{margin-left:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button{text-align:center;padding-top:5px}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button a{background:#2469b3;border-radius:5px;text-align:center;height:38px;display:inline-block}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button a:active,.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button a:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button a:hover{background:#123c68}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-title{font-size:36px;line-height:44px;color:#393f4c;margin-bottom:20px;max-width:638px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-title{font-size:20px;line-height:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-summary{font-weight:500;font-size:20px;line-height:24px;color:#393f4c;max-width:450px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-summary{font-size:14px;line-height:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins{margin-top:20px;margin-right:-30px;margin-left:-30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins{margin-right:0;margin-left:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon{width:calc(50% - 60px);float:right;background:#f3f9ff;border:2px solid #e3f1ff;border-radius:5px;position:relative;min-height:260px;margin:30px 30px 0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon{width:100%;margin:30px 0;min-height:300px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top{padding-top:30px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-image{width:104px;float:right;padding-right:25px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-image .exactmetrics-addon-thumb{width:32px;height:32px;border:2px solid #e3f1ff;border-radius:5px;padding:10px;-webkit-box-sizing:content-box;box-sizing:content-box}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-text{width:calc(100% - 104px);float:right;padding-left:25px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-text .exactmetrics-addon-title{font-size:18px;line-height:24px;margin-top:0;font-family:Lato;margin-bottom:5px;color:#393f4c;font-weight:900}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-text .exactmetrics-addon-excerpt{font-weight:400;font-size:14px;line-height:18px;color:#393f4c;font-family:Lato;margin:0}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message{border-top:2px solid #e3f1ff;clear:both;padding:13px 25px;position:absolute;bottom:0;right:0;width:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-addon-status{float:left;line-height:32px;font-weight:900;font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-addon-status span{color:#d4393d}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-button{line-height:32px;background:#338eef;border-radius:3px;display:inline-block;padding:0 30px;border:0;font-weight:700;font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-button:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-button:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-button:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-addon-status span{color:#64bfa5}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-button,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-button:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-button:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-button:hover{background:rgba(51,142,239,.5)}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities{background-color:#338eef;padding-top:160px;margin-top:-90px;color:#fff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities{padding-top:100px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities h2{font-size:36px;line-height:43px;color:#fff;margin-bottom:15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities h2{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities h3{font-weight:500;font-size:20px;line-height:24px;color:#fff;max-width:575px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities h3{font-size:18px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities{display:-webkit-box;display:-ms-flexbox;display:flex;margin-right:-30px;padding-top:60px;padding-bottom:90px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities{display:block;margin-right:0;padding-bottom:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community{width:100%;background-color:#2469b2;border-radius:5px;margin-right:30px;padding:24px;position:relative;min-height:340px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community{margin-right:0;margin-bottom:30px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community{min-height:350px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-title{font-weight:900;font-size:20px;line-height:24px;margin-bottom:10px;margin-top:5px}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link,.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links{position:absolute;bottom:15px;right:24px;width:80%;width:calc(100% - 48px)}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link{background-color:#123c68;display:block}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link{padding:8px 10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links{margin:0}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links li{float:right;margin-left:8px;margin-bottom:0}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links li a{background-color:#123c68;display:block;margin:0;width:40px;height:40px;padding:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links li a:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links li a:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-footer{height:84px;background:#2368b1;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-footer{display:block;text-align:center;padding:15px 0;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-footer div{width:100%;font-weight:500;font-size:16px;color:#fff;text-align:center}.exactmetrics-report-site-speed .exactmetrics-site-speed-blur{width:100%;padding-top:70%;background-image:url(../img/site-speed-blur.png);background-repeat:no-repeat;background-size:contain;background-position:50%}.exactmetrics-report-site-speed .exactmetrics-upsell-top{max-width:80%;margin:0 auto}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-report-top{display:-webkit-box;display:-ms-flexbox;display:flex}}.exactmetrics-report-site-speed .exactmetrics-report-top h2.exactmetrics-report-top-title{margin-top:10px}.exactmetrics-report-site-speed .exactmetrics-report-top .exactmetrics-export-pdf-report{margin-left:16px}.exactmetrics-report-site-speed .exactmetrics-report-top .exactmetrics-export-pdf-report button{background-color:#f5f5f5;color:#4c6577;border-color:#dcdcdc}.exactmetrics-report-site-speed .exactmetrics-report-top .exactmetrics-run-audit-btn .exactmetrics-run-audit{background-color:#3990ec;height:39px}.exactmetrics-report-site-speed .exactmetrics-report-top .exactmetrics-run-audit-btn .exactmetrics-run-audit:hover{background-color:rgba(57,144,236,.8)}.exactmetrics-report-site-speed .exactmetrics-choose-device-button{margin-right:15px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button{display:inline-block;text-align:center;background-color:#f5f5f5;color:#444;border-color:#dcdcdc;border-radius:5px;outline:none}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button:hover{background-color:#3990ec;border-color:#1c77db;outline:none}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button:hover .svg-icons{fill:#fff}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.active{background-color:#3990ec;border-color:#1c77db;color:#fff;outline:none}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.active .svg-icons{fill:#fff}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.mobile{border-top-left-radius:0;border-bottom-left-radius:0;border-left:0;width:45px;height:40px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.mobile svg{margin-right:-6px;margin-top:-1px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.desktop{border-top-right-radius:0;border-bottom-right-radius:0;border-right:0;width:54px;height:40px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.desktop svg{margin-right:-6px;margin-top:-1px}.exactmetrics-report-site-speed .exactmetrics-site-speed-container{max-width:1010px}.exactmetrics-report-site-speed .exactmetrics-site-speed-device,.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator{width:338px;margin-left:10px;max-height:304px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator{width:100%;margin-bottom:25px}}@media screen and (min-width:768px) and (max-width:1024px){.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator{width:100%;margin-bottom:25px}}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-indicator-device-icon{margin-bottom:40px;text-align:center}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-indicator-device-icon .desktop{width:80px}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-indicator-percent-text{font-size:5em;color:#f2994a;text-align:center;font-weight:700}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-indicator-overall-text{display:inline-block;padding-top:2rem;font-weight:600;font-size:16px;text-align:center}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-progress-circle{max-width:300px;max-height:255px;width:100%;-webkit-transform:scaleX(-1) rotate(55deg);-ms-transform:scaleX(-1) rotate(55deg);transform:scaleX(-1) rotate(55deg);overflow:visible}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-progress-circle__percent{position:absolute;top:50%;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-progress-circle__container{display:inline-block;position:relative}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-progress-circle__path{-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out;overflow:visible}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats{width:662px}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-site-speed-stats{width:100%}}@media screen and (min-width:768px) and (max-width:1024px){.exactmetrics-report-site-speed .exactmetrics-site-speed-stats{width:100%}}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-report-flex{text-align:center}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-report-flex.exactmetrics-report-2-columns{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-site-speed-stat{width:49%;background-color:#fff;border:1px solid #e0e0e0;min-height:135px;margin-bottom:15px;padding-top:1.2rem}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-site-speed-stat{width:100%;margin-top:15px;margin-left:0}}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-site-speed-stat h2{font-size:40px;margin:0;padding:20px 0 10px}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-site-speed-stat p{color:#828282}.exactmetrics-report-site-speed .exactmetrics-how-to-improve h2.title{font-size:22px;color:#393f4c}div.exactmetrics-pdf-score{position:relative;margin:80px;right:-1px;top:1px}.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}@media (max-width:782px){.exactmetrics-reports-page .exactmetrics-report-top{margin-bottom:25px}}.exactmetrics_page.exactmetrics-downloading-pdf-report #wpbody{-webkit-filter:blur(15px);filter:blur(15px)}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion-item-details,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-pdf-score{display:block!important}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion-item-title,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion .exactmetrics-accordion div:not(:last-child){border:none!important}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion-item-trigger-icon,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-notificationsv3-container,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-progress-circle{display:none}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-header{min-height:85px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report{width:1120px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation{border-bottom:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button.exactmetrics-active-tab-button{border:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button:first-child{border-left:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-row.exactmetrics-report-row-border-top{border-top:0;margin-bottom:25px}@media (max-width:782px){.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-title{padding-right:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-title.exactmetrics-has-pagination{margin-bottom:25px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-title:before{position:inherit;right:inherit}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button{font-size:18px;padding:23px 20px 25px;text-align:right}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-infobox-row{padding:24px 60px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:25%;border-right:1px solid #bcb7cd;border-top:0;padding:0 80px 0 10px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child{border-right:none;padding-right:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-reports-ecommerce-pie-chart{width:40%;padding-top:130px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart .exactmetrics-pie-chart{margin:inherit}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart .exactmetrics-reports-pie-chart-holder{-webkit-box-pack:inherit;-ms-flex-pack:inherit;justify-content:inherit;-webkit-box-align:inherit;-ms-flex-align:inherit;align-items:inherit;margin-right:20px;-webkit-box-orient:inherit;-webkit-box-direction:inherit;-ms-flex-flow:wrap;flex-flow:wrap}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-report-box{width:calc(50% - 12.5px);margin-top:0}}@media (max-width:991px){.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-row.exactmetrics-report-row-border-top{margin-right:-32px;margin-left:-32px;padding-right:32px;padding-left:32px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex{-ms-flex-flow:inherit;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:inherit}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart{width:50%;border:none;padding-right:32px;padding-left:20px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart:first-child{border-left:1px solid #e9e7ee}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-table-box{margin-right:20px;margin-top:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-table-box:first-child{margin-right:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-report-2-columns .exactmetrics-table-box{width:calc(50% - 12.5px)}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex.exactmetrics-interests-scroll-report .exactmetrics-table-box{width:100%}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-reports-pie-chart{width:calc(50% - 12.5px)}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-reports-pie-chart:first-child{margin:0 0 0 25px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-right:25px;margin-top:0}}body.exactmetrics-reporting-page #wpbody-content{padding-bottom:0}body.exactmetrics-reporting-page .exactmetrics-red{color:#d73638}body.exactmetrics-reporting-page .exactmetrics-green{color:#5cc0a5}body.exactmetrics-reporting-page .exactmetrics-report-top{margin-top:14px;margin-bottom:24px}@media (min-width:783px) and (max-width:1130px){body.exactmetrics-reporting-page .exactmetrics-report-top{margin-bottom:25px}}body.exactmetrics-reporting-page .exactmetrics-report-top h2{margin:12px 0;display:inline-block;color:#210f59;font-size:32px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-report-top h2{display:none}}@media (min-width:783px) and (max-width:1130px){body.exactmetrics-reporting-page .exactmetrics-report-top h2{display:block;margin:0 0 25px}}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report{float:left;margin-left:25px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-export-pdf-report{float:none;margin-left:0;margin-bottom:0;text-align:center;padding-top:20px}}@media (min-width:783px) and (max-width:1130px){body.exactmetrics-reporting-page .exactmetrics-export-pdf-report{float:none;margin-bottom:0}}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button{background:#e9e7ee;color:#210f59}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button:focus,body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button:hover{background:#bcb7cd}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button[disabled=disabled]{cursor:not-allowed}body.exactmetrics-reporting-page .exactmetrics-report-realtime .exactmetrics-export-pdf-report{margin-left:0}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:1130px){body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{float:left}}body.exactmetrics-reporting-page .exactmetrics-datepicker,body.exactmetrics-reporting-page .exactmetrics-hide{display:none}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container{position:relative}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container{max-width:100%}}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container.exactmetrics-hide,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .exactmetrics-hide{display:none}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-wrapper{display:block}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-wrapper .flatpickr-calendar{width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-calendar.static.open{position:relative;-webkit-box-shadow:none;box-shadow:none;border:none;width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:after,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:before{display:none}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-rContainer{width:100%;display:block}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .dayContainer,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-days{width:100%;max-width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day{max-width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange.inRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange.nextMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange.prevMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange:focus,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange:hover,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected.inRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected.nextMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected.prevMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected:focus,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected:hover,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange.inRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange.nextMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange.prevMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange:focus,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange:hover{background-color:#6528f5;border-color:#6528f5}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-months{padding-bottom:10px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .dayContainer{padding:0 28px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-weekdays{height:40px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-weekdaycontainer{background:#f4f3f7;padding:14px 28px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-current-month{font-size:15px;color:#210f59}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper{width:55px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper input.cur-year{padding:0 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 60px 0 10px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-info{display:inline-block;font-size:12px;margin-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-report-box-icon-heading{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:10px}.exactmetrics-report-box-icon-heading h3{color:#6528f5;margin-right:15px}.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-top{pointer-events:none}.exactmetrics-blur .exactmetrics-report-row{-webkit-filter:blur(5px);filter:blur(5px)}.exactmetrics-blur .exactmetrics-report{min-height:850px}.exactmetrics-reports-referral-icon{vertical-align:middle;margin-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 h4{font-size:16px;line-height:140%;color:#444}.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:16px auto 24px;max-width:520px;display:grid;grid-gap:10px}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul.columns-1{grid-template-columns:1fr}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul.columns-2{grid-template-columns:1fr 1fr}.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:#6528f5;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:#fff;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}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-button{background:#e9e7ee;color:#210f59}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-button:focus,body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-button:hover{background:#bcb7cd}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-accordion-item-details,body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-pdf-score{display:block!important}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-progress-circle{display:none}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-reports-intervals-dropdown{min-width:250px}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-reports-intervals-dropdown .exactmetrics-button{background:rgba(0,0,0,0);color:#32a27a}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-reports-intervals-dropdown .exactmetrics-button:focus,body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-reports-intervals-dropdown .exactmetrics-button:hover{color:#19865f}body.exactmetrics-reporting-page .exactmetrics-notice-error.exactmetrics-license_expired{display:none!important}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .exactmetrics-swal-icons{display:none}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .swal2-popup{width:600px;padding:2em 3.25em}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .swal2-actions{display:none!important}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .swal2-footer{display:block!important;text-align:center;padding-top:20px}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .swal2-footer a{display:inline-block}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .swal2-footer a.swal2-styled{padding-top:16px;padding-bottom:20px;margin-bottom:15px;text-decoration:none}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .swal2-footer a:nth-child(3){color:#393f4c!important}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .exactmetrics-expired-license-alert{text-align:right;padding-left:39px}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .exactmetrics-expired-license-alert h3{font-size:40px;margin:0 0 8px;padding:0}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .exactmetrics-expired-license-alert h4{font-size:20px;margin:0 0 10px;padding:0}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .exactmetrics-expired-license-alert p{font-size:16px;margin:0 0 10px;padding:0}
1
  /*!
2
  * Generated with CSS Flag Sprite generator (https://www.flag-sprites.com/)
3
+ */.exactmetrics-flag{display:inline-block;width:32px;height:32px;background:url(../img/flags.png) no-repeat}.exactmetrics-flag.exactmetrics-flag-ad{background-position:-32px 0}.exactmetrics-flag.exactmetrics-flag-ae{background-position:-64px 0}.exactmetrics-flag.exactmetrics-flag-af{background-position:-96px 0}.exactmetrics-flag.exactmetrics-flag-ag{background-position:-128px 0}.exactmetrics-flag.exactmetrics-flag-ai{background-position:-160px 0}.exactmetrics-flag.exactmetrics-flag-al{background-position:-192px 0}.exactmetrics-flag.exactmetrics-flag-am{background-position:-224px 0}.exactmetrics-flag.exactmetrics-flag-an{background-position:-256px 0}.exactmetrics-flag.exactmetrics-flag-ao{background-position:-288px 0}.exactmetrics-flag.exactmetrics-flag-ar{background-position:-320px 0}.exactmetrics-flag.exactmetrics-flag-as{background-position:-352px 0}.exactmetrics-flag.exactmetrics-flag-at{background-position:-384px 0}.exactmetrics-flag.exactmetrics-flag-au{background-position:-416px 0}.exactmetrics-flag.exactmetrics-flag-aw{background-position:-448px 0}.exactmetrics-flag.exactmetrics-flag-ax{background-position:-480px 0}.exactmetrics-flag.exactmetrics-flag-az{background-position: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 a{color:#6528f5}.exactmetrics-upsell a:focus,.exactmetrics-upsell a:hover{color:#37276a}.exactmetrics-upsell .exactmetrics-upsell-title{border-bottom:1px solid #e9e7ee}.exactmetrics-upsell .exactmetrics-upsell-title h2{color:#210f59;font-size:32px;margin-right:100px;margin-top:45px;margin-bottom:35px}@media (max-width:782px){.exactmetrics-upsell .exactmetrics-upsell-title h2{margin-right:24px;line-height:1.4;margin-top:24px;margin-bottom:24px}}.exactmetrics-upsell .exactmetrics-upsell-half h3{font-size:24px;color:#210f59;font-weight:700}.exactmetrics-upsell-bottom{background:#f7f9fd;border-top:1px solid #d6e2ed;padding:36px 50px 30px;position:relative}@media (max-width:767px){.exactmetrics-upsell-bottom{padding-right:20px;padding-left:20px}}.exactmetrics-upsell-bottom .exactmetrics-button-top{position:absolute;top:0;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}@media (max-width:767px){.exactmetrics-upsell-bottom .exactmetrics-button-top{min-width:288px}}.exactmetrics-upsell-bottom img{max-width:100%}.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-upsell-screen,.exactmetrics-screen-image{width:848px;padding-top:0;height:566px}@media (max-width:1099px){.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-upsell-screen,.exactmetrics-screen-image{right:20px}}.exactmetrics-em-ecommerce-upsell-screen:after,.exactmetrics-em-upsell-screen:after,.exactmetrics-screen-image:after{background-position:0 100%;background-image:url(../img/upsell-screen.png)}.exactmetrics-em-logo-text{width:432px;height:56px;margin-bottom:28px;padding-top:0;max-width:100%}@media (max-width:1400px){.exactmetrics-em-logo-text{padding-top:13%;height:auto}}@media (max-width:959px){.exactmetrics-em-logo-text{padding-top:8%}}.exactmetrics-em-logo-text:after{background-image:url(../img/exactmetrics.png)}.exactmetrics-em-addons-upsell-screen,.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-publishers-upsell-screen{bottom:auto;top:-65px;width:648px;left:-13%}.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/one-click-integrations.png)}.exactmetrics-em-publishers-upsell-screen:after{background-image:url(../img/publishers-screen.png)}.exactmetrics-em-addons-upsell-screen{margin-bottom:-180px;top:-70px}.exactmetrics-em-addons-upsell-screen:after{background-image:url(../img/addons-help-screen.png)}.exactmetrics-em-search-console-upsell-screen:after{background-image:url(../img/search-console-screen.png)}.exactmetrics-em-real-time-upsell-screen:after{background-image:url(../img/real-time-screen.png)}.exactmetrics-em-site-speed-upsell-screen:after{background-image:url(../img/site-speed-screen.png)}.exactmetrics-em-forms-report-upsell-screen:after{background-image:url(../img/forms-report-screen.png)}.exactmetrics-em-dimensions-report-upsell-screen:after{background-image:url(../img/dimensions-report-screen.png)}.exactmetrics-em-media-report-upsell-screen:after{background-image:url(../img/media-report-upsell.png);background-size:80%;background-position:left 40px}.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-report-year-in-review{margin-right:auto;margin-left:auto;max-width:960px;background-color:#fff;background-image:url(../img/confetti-background.png);background-repeat:no-repeat;background-position:100% 0;margin-bottom:90px}.exactmetrics-report-year-in-review .exactmetrics-pie-chart-tooltip{right:22px;top:23px}.exactmetrics-report-year-in-review .exactmetrics-reports-doughnut-tooltip{width:120px;height:120px}.exactmetrics-report-year-in-review.exactmetrics-yir-report-calculating-row{width:610px;margin-top:50px}@media (max-width:767px){.exactmetrics-report-year-in-review.exactmetrics-yir-report-calculating-row{width:100%;margin-top:20px}}.exactmetrics-report-year-in-review a,.exactmetrics-report-year-in-review h1,.exactmetrics-report-year-in-review h2,.exactmetrics-report-year-in-review h3,.exactmetrics-report-year-in-review h4,.exactmetrics-report-year-in-review h5,.exactmetrics-report-year-in-review p,.exactmetrics-report-year-in-review span{font-family:Lato,sans-serif;margin:0}.exactmetrics-report-year-in-review h1,.exactmetrics-report-year-in-review h2,.exactmetrics-report-year-in-review h3,.exactmetrics-report-year-in-review h4,.exactmetrics-report-year-in-review h5{font-weight:900}.exactmetrics-report-year-in-review p{font-style:normal;font-weight:400;font-size:14px;line-height:24px}.exactmetrics-report-year-in-review a{text-decoration:none;padding:8px 30px;border-radius:5px;color:#fff;font-weight:700;font-size:14px;line-height:24px;text-align:center}.exactmetrics-report-year-in-review .exactmetrics-yir-separator{border-left-color:#e0e0e0;border-right-color:#e0e0e0;border-top:1px solid #e0e0e0;border-bottom:1px solid #e0e0e0}.exactmetrics-report-year-in-review .text-capitalize{text-transform:capitalize}.exactmetrics-report-year-in-review .exactmetrics-yir-footer,.exactmetrics-report-year-in-review .exactmetrics-yir-header,.exactmetrics-report-year-in-review section{padding:0 90px;clear:both;overflow:hidden}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-footer,.exactmetrics-report-year-in-review .exactmetrics-yir-header,.exactmetrics-report-year-in-review section{padding:0 15px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-footer,.exactmetrics-report-year-in-review .exactmetrics-yir-header,.exactmetrics-report-year-in-review section{padding:0 30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-text-right{text-align:left}.exactmetrics-report-year-in-review .exactmetrics-yir-text-right h2{color:#fff}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header{padding:90px 90px 90px 0;background-image:url(../img/em-logo-lg.png);background-repeat:no-repeat;background-position:0;background-size:222px 195px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header{padding:50px 15px 40px;background-image:none}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header{padding-right:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating{padding:90px 60px 100px 0;background-image:url(../img/em-logo-lg.png);background-position:left top 83px;background-size:160px 150px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating{padding-right:15px;padding-left:15px;padding-top:50px;background-size:140px 180px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-title{font-size:32px;line-height:37px;color:#393f4c;margin-top:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-title{font-size:26px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-summary{font-weight:400;font-size:14px;line-height:20px;color:#393f4c;max-width:385px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-summary{font-size:12px;max-width:230px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link{background:#4e9ee7;border-radius:5px;font-weight:700;font-size:14px;line-height:16px;text-align:center;color:#fff;border:0;margin-left:0;padding:12px 20px;margin-top:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link{width:inherit}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link{width:inherit}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link:active,.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-export-link{color:#338eef;cursor:pointer}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-subtitle{font-size:20px;font-weight:900;background:#338eef;border-radius:30px;color:#fff;padding:14px 90px 14px 25px;position:relative;display:inline-block}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-subtitle{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-subtitle svg{position:absolute;right:5px;bottom:-5px}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-title{font-style:normal;font-weight:900;font-size:48px;line-height:58px;color:#393f4c;margin-bottom:15px;margin-top:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-title{font-size:20px;line-height:20px;margin-bottom:10px;margin-top:30px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-title{font-size:32px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-summary{font-weight:500;font-size:24px;line-height:32px;color:#828282;max-width:480px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-summary{font-size:16px;line-height:18px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-summary{font-size:16px;line-height:20px;max-width:400px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart{background:#fff;-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);border-radius:4.85258px}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-header{display:-webkit-box;display:-ms-flexbox;display:flex;padding:20px 30px;border-bottom:2px solid #f2f2f2;margin-bottom:55px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-header{margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-header div{width:100%}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-title{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:left;color:#393f4c;margin:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-subtitle{font-size:10px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content{padding:0 30px 15px 50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content{padding:0 15px 15px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content .exactmetrics-reports-bar-chart-holder{position:relative}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content .exactmetrics-reports-bar-chart-holder .exactmetrics-chart-tooltip{position:absolute;pointer-events:none}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box{padding-top:0;position:relative;border:0;-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);background:hsla(0,0%,100%,.38)}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box.exactmetrics-year-in-review-table-box-blur-report .exactmetrics-year-in-review-table-box-list{-webkit-filter:blur(5px);filter:blur(5px)}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header{padding:20px 30px;border-bottom:2px solid #f2f2f2;margin-bottom:0}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-title{display:inline-block}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-title .exactmetrics-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-title .exactmetrics-report-title{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-subtitle{display:inline-block;float:left}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-subtitle .exactmetrics-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:left;color:#393f4c;margin:0;text-transform:capitalize}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list{min-height:245px;padding-bottom:30px}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item{padding:9px 30px}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a{padding:0;border-radius:0;line-height:37px;line-height:inherit}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a:active,.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a:focus,.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a:hover{-webkit-box-shadow:none;box-shadow:none;background:none}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer{position:absolute;bottom:-34px;width:100%;right:0;text-align:center}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer{bottom:-40px}}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer .exactmetrics-yir-tooltip{font-weight:400;font-size:12px;color:#828282}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer .exactmetrics-yir-tooltip span{font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer .exactmetrics-yir-tooltip .exactmetrics-yir-icon{background:#dadada;border-radius:50%;padding:0;margin-left:10px;color:#fff;width:15px;height:15px;display:inline-block;line-height:16px}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart{border:0;margin:0;padding:0;width:100%}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-reports-pie-chart-holder{display:inline-block;float:right}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-reports-pie-chart-holder{display:block;float:none}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-reports-pie-chart-holder .exactmetrics-pie-chart{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAFxSURBVHgB7dlPTsJAFAbwb6BxQVzgTThCXaCC3kEPoFBP0PYGVQ9gvUNFY2PSI3AUFhISgx1njAsjIfa1jA+S90u6aDOTzpf5s5gHCF4KNVyePPntthea7j1Ad9FcUWr9cDc5SkFEDjAavoZKlREc0BrR7aQfU/qQAgTDlwut1D0cUmp5mGSDomr7FgjM4M/hmNZ2aVZHCmD4cK9HaUwN8B9Ih4KHBm4e+7VOsd/Gp7lGTds4AyQSgJsE4CYBuEkAbhKAmwTgJgG4SQBuEoCbBOAmAbhJAG4SgFuju9Emd5qbIktoHaUQq/nbwdcDXMORRktoHTvgJOsnPz4lo2HeNaFI1Zcq3MzA3EtXfrTnJXCAGmCGLUMNMK3SqOy8Byvflh9VC4QFCEh7wG5MU8v1/27XCq8Gz7P2YpHa97KzP1ZaR6jAFrxBQK5xBWd5ZEJsfDNapoAeJ9lxROqDGr4L3nZJ+GjO7qupnV1zchUQO+YTOT9YisPBuEEAAAAASUVORK5CYII=);background-color:#fff;background-repeat:no-repeat;background-position:50%}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content{padding-right:50px;padding-top:35px;float:right}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content{padding-right:0;padding-top:20px;float:none}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin-bottom:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-title{font-size:16px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:18px;line-height:24px;color:#393f4c;margin-top:10px;margin-bottom:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-subtitle{font-size:14px;line-height:14px}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend{position:relative;right:inherit;top:inherit;-webkit-transform:inherit;-ms-transform:inherit;transform:inherit;margin:24px 0 0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend{margin:10px 0 0}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li{display:inline-block;margin-left:30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li{margin-left:10px}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-color{border-radius:0;width:16px;height:16px;margin-bottom:-3px;margin-left:5px}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-text,.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-value{font-family:Lato;font-style:normal;font-weight:700;font-size:14px;line-height:24px;color:#393f4c;min-width:inherit;margin-left:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-text,.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-value{font-size:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip{border:2px solid #e3f1ff;border-radius:5px;padding-top:45px;padding-bottom:45px;overflow:hidden;background:#f3f9ff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip{padding-top:15px;padding-bottom:15px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip a,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip h3,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip p{font-family:Lato,sans-serif;margin:0}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-icon{float:right;width:144px;text-align:center}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-icon{width:90px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-icon img{background:#338eef;padding:12px;border-radius:50%;margin-top:12px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content{float:right;width:calc(100% - 144px);padding-left:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content{padding-left:0;width:calc(100% - 90px)}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-title{font-weight:900;font-size:18px;line-height:27px;color:#333;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-title{font-size:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-summary{font-weight:400;font-size:18px;line-height:27px;color:#393f4c;margin-bottom:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-summary{font-size:12px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper{margin-top:15px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link{font-weight:900;font-size:18px;line-height:27px;-webkit-text-decoration-line:underline;text-decoration-line:underline;color:#338eef;margin-top:15px;padding:0;border-radius:0;text-align:right}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link:hover{color:#2469b2;-webkit-box-shadow:none;box-shadow:none}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay{position:absolute;top:0;right:0;width:calc(100% - 25px);height:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content{margin-top:66px;text-align:center;height:calc(100% - 66px);padding-top:80px;padding-left:25px;padding-right:25px;background-color:#fff}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-details{font-size:14px;line-height:20px;font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay{display:inline-block;border-radius:5px;font-size:14px;line-height:20px;color:#fff;padding:10px 30px;text-decoration:none;font-family:Lato;background:#338eef;margin-top:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success{background:#1ec185}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success:hover{opacity:.8;background:#10ad73}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay:hover{border:0;background:#2469b2;outline:none}.exactmetrics-report-year-in-review .exactmetrics-yir-audience{padding-bottom:85px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience{padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:685px;margin-bottom:80px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-summary{font-size:18px;line-height:20px;margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors{width:100%;margin-bottom:70px;padding-right:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors{margin-bottom:20px;padding-right:0;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions img,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors img{margin-bottom:15px;max-height:28px}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions h4,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors h4{font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions h4,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors h4{font-size:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions .exactmetrics-yir-number,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors .exactmetrics-yir-number{font-weight:900;font-size:60px;line-height:72px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions .exactmetrics-yir-number,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors .exactmetrics-yir-number{font-size:40px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-visitor-by-chart{margin-bottom:60px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-visitor-by-chart{margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics{padding-top:85px;padding-bottom:85px;background-image:url(../img/map-background.png);background-repeat:no-repeat;background-position:top}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics{padding-top:30px;padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:656px;margin-bottom:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-summary{font-size:18px;line-height:20px;margin-bottom:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries{display:block}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country{width:50%;margin-top:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-number-one{font-size:24px;line-height:29px;color:#fff;background:#338eef;width:50px;height:50px;border-radius:50%;display:inline-block;text-align:center;line-height:50px;margin-bottom:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-flag{display:block}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-flag{margin:0 auto}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-flag.exactmetrics-flag-zz{display:none}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-name{font-size:32px;line-height:38px;color:#393f4c;margin-top:0;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-name{font-size:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-visitors{font-weight:400;font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-visitors{font-size:16px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-countries-graph{width:50%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-countries-graph{width:100%}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-know-visitors{font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-know-visitors{font-size:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info{margin-top:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info{width:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info span,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info span,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info span{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info h2,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info h2,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info h2{font-size:30px;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info p,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info p,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info p{font-size:10px;line-height:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior{padding-top:85px;padding-bottom:85px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior{padding-top:30px;padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:585px;margin-bottom:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data{display:block;margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary{width:50%;margin-top:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary img{width:32px;height:32px;margin-right:-3px;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary img{margin-right:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-time-spent{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent{font-size:32px;line-height:38px;color:#393f4c;margin-top:15px;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent{margin-top:5px;margin-bottom:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent .exactmetrics-yir-number{font-weight:900;font-size:48px;line-height:58px;color:#338eef;margin-left:10px;overflow-wrap:break-word}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent .exactmetrics-yir-number{font-size:30px;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent .exactmetrics-yir-type{font-weight:900;font-size:16px;line-height:103.8%;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-each-visitor-spent{font-weight:400;font-size:18px;line-height:24px;color:#393f4c;max-width:330px;margin-top:15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-each-visitor-spent{font-size:14px;max-width:100%;margin-top:5px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-top-pages-graph{width:50%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-top-pages-graph{width:100%}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-most-visitors-device{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-most-visitors-device{font-size:20px;line-height:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info{margin-top:20px;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info{width:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info span,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info h2,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info p,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-grow-traffic-tip{margin-top:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-grow-traffic-tip{margin-top:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from{margin-top:55px;margin-bottom:100px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from{margin-top:20px;margin-bottom:60px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-title{font-size:32px;line-height:44px;color:#393f4c;margin-bottom:30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-title{font-size:20px;line-height:20px;margin-bottom:15px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals{display:block}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-keywords,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-referrals{width:50%;position:relative}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-keywords,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-referrals{width:100%}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-keywords{padding-left:25px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-keywords{padding-left:0;margin-bottom:60px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-referrals{padding-right:25px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-referrals{padding-right:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce{padding-top:85px;padding-bottom:30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce{padding-top:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number{width:55%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number{width:30%}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-products-sold,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-revenue{padding:75px 0}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-title{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-title{font-size:14px;line-height:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-amount{font-size:54px;line-height:65px;color:#338eef;overflow-wrap:break-word}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-amount{font-size:24px;line-height:40px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products{width:45%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products{width:70%}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular{-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);border-radius:3.59813px;padding:30px;margin-bottom:30px}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning img,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular img{margin-bottom:5px}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning span,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning span,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular span{font-size:14px;line-height:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning .exactmetrics-yir-product-title,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular .exactmetrics-yir-product-title{font-weight:700;font-size:28px;line-height:32px;color:#338eef;margin-top:10px;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning .exactmetrics-yir-product-title,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular .exactmetrics-yir-product-title{font-size:16px;line-height:16px;margin-bottom:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning .exactmetrics-yir-count,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular .exactmetrics-yir-count{font-weight:400;font-size:16px;line-height:19px;color:#828282}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning .exactmetrics-yir-count,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular .exactmetrics-yir-count{font-size:12px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-revenue-by-month{margin-bottom:50px}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you{padding-top:90px;background-color:#fff;background-image:url(../img/confetti-background.png);background-position:100% 0;padding-bottom:85px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you{padding-top:0;padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-title{font-size:54px;line-height:65px;text-align:center;color:#393f4c;max-width:588px;margin:0 auto 10px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-title{font-size:30px;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-summary{font-weight:500;font-size:20px;line-height:28px;text-align:center;color:#393f4c;max-width:585px;margin:0 auto 15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-summary{font-size:14px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-amazing-year{font-weight:700;font-size:32px;line-height:37px;text-align:center;color:#393f4c;font-style:italic;margin-bottom:35px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-amazing-year{font-size:24px;line-height:24px;margin-bottom:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors{text-align:center;margin-bottom:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors{margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author{display:inline-block;padding:0 45px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author{padding:0 10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-thumbnail{width:96px;height:96px;background-repeat:no-repeat;margin:0 auto 10px}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-thumbnail.chris{background-image:url(../img/chris.png)}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-thumbnail.syed{background-image:url(../img/syed.png)}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-name{font-weight:900;font-size:18px;line-height:22px;text-align:center;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-name{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review{background:#338eef;-webkit-box-shadow:0 8px 8px rgba(30,88,150,.2);box-shadow:0 8px 8px rgba(30,88,150,.2);border-radius:5px;padding:24px;display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review{display:block}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content,.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-rating,.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button{width:100%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content{text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content span{font-weight:900;font-size:14px;color:#fff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content span{font-size:12px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content h3{font-weight:900;font-size:20px;line-height:31px;color:#fff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content h3{font-size:18px;line-height:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-rating .exactmetrics-yir-five-star{margin:0;padding:12px 0 0;text-align:center}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-rating .exactmetrics-yir-five-star li{list-style:none;display:inline-block;margin-left:7px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-rating .exactmetrics-yir-five-star li{margin-left:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button{text-align:center;padding-top:5px}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button a{background:#2469b3;border-radius:5px;text-align:center;height:38px;display:inline-block}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button a:active,.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button a:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button a:hover{background:#123c68}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-title{font-size:36px;line-height:44px;color:#393f4c;margin-bottom:20px;max-width:638px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-title{font-size:20px;line-height:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-summary{font-weight:500;font-size:20px;line-height:24px;color:#393f4c;max-width:450px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-summary{font-size:14px;line-height:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins{margin-top:20px;margin-right:-30px;margin-left:-30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins{margin-right:0;margin-left:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon{width:calc(50% - 60px);float:right;background:#f3f9ff;border:2px solid #e3f1ff;border-radius:5px;position:relative;min-height:260px;margin:30px 30px 0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon{width:100%;margin:30px 0;min-height:300px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top{padding-top:30px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-image{width:104px;float:right;padding-right:25px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-image .exactmetrics-addon-thumb{width:32px;height:32px;border:2px solid #e3f1ff;border-radius:5px;padding:10px;-webkit-box-sizing:content-box;box-sizing:content-box}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-text{width:calc(100% - 104px);float:right;padding-left:25px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-text .exactmetrics-addon-title{font-size:18px;line-height:24px;margin-top:0;font-family:Lato;margin-bottom:5px;color:#393f4c;font-weight:900}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-text .exactmetrics-addon-excerpt{font-weight:400;font-size:14px;line-height:18px;color:#393f4c;font-family:Lato;overflow:hidden;display:-webkit-box;-webkit-line-clamp:6;-webkit-box-orient:vertical;position:absolute;margin:0 0 0 25px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message{border-top:2px solid #e3f1ff;clear:both;padding:13px 25px;position:absolute;bottom:0;right:0;width:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-addon-status{float:left;line-height:32px;font-weight:900;font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-addon-status span{color:#d4393d}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-button{line-height:32px;background:#338eef;border-radius:3px;display:inline-block;padding:0 30px;border:0;font-weight:700;font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-button:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-button:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-button:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-addon-status span{color:#64bfa5}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-button,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-button:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-button:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-button:hover{background:rgba(51,142,239,.5)}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities{background-color:#338eef;padding-top:160px;margin-top:-90px;color:#fff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities{padding-top:100px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities h2{font-size:36px;line-height:43px;color:#fff;margin-bottom:15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities h2{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities h3{font-weight:500;font-size:20px;line-height:24px;color:#fff;max-width:575px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities h3{font-size:18px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities{display:-webkit-box;display:-ms-flexbox;display:flex;margin-right:-30px;padding-top:60px;padding-bottom:90px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities{display:block;margin-right:0;padding-bottom:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community{width:100%;background-color:#2469b2;border-radius:5px;margin-right:30px;padding:24px;position:relative;min-height:340px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community{margin-right:0;margin-bottom:30px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community{min-height:350px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-title{font-weight:900;font-size:20px;line-height:24px;margin-bottom:10px;margin-top:5px}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link,.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links{position:absolute;bottom:15px;right:24px;width:80%;width:calc(100% - 48px)}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link{background-color:#123c68;display:block}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link{padding:8px 10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links{margin:0}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links li{float:right;margin-left:8px;margin-bottom:0}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links li a{background-color:#123c68;display:block;margin:0;width:40px;height:40px;padding:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links li a:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links li a:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-footer{height:84px;background:#2368b1;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-footer{display:block;text-align:center;padding:15px 0;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-footer div{width:100%;font-weight:500;font-size:16px;color:#fff;text-align:center}.exactmetrics-report-site-speed .exactmetrics-site-speed-blur{width:100%;padding-top:70%;background-image:url(../img/site-speed-blur.png);background-repeat:no-repeat;background-size:contain;background-position:50%}.exactmetrics-report-site-speed .exactmetrics-upsell-top{max-width:80%;margin:0 auto}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-report-top{display:-webkit-box;display:-ms-flexbox;display:flex}}.exactmetrics-report-site-speed .exactmetrics-report-top h2.exactmetrics-report-top-title{margin-top:10px}.exactmetrics-report-site-speed .exactmetrics-report-top .exactmetrics-export-pdf-report{margin-left:16px}.exactmetrics-report-site-speed .exactmetrics-report-top .exactmetrics-export-pdf-report button{background-color:#f5f5f5;color:#4c6577;border-color:#dcdcdc}.exactmetrics-report-site-speed .exactmetrics-report-top .exactmetrics-run-audit-btn .exactmetrics-run-audit{background-color:#3990ec;height:39px}.exactmetrics-report-site-speed .exactmetrics-report-top .exactmetrics-run-audit-btn .exactmetrics-run-audit:hover{background-color:rgba(57,144,236,.8)}.exactmetrics-report-site-speed .exactmetrics-choose-device-button{margin-right:15px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button{display:inline-block;text-align:center;background-color:#f5f5f5;color:#444;border-color:#dcdcdc;border-radius:5px;outline:none}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button:hover{background-color:#3990ec;border-color:#1c77db;outline:none}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button:hover .svg-icons{fill:#fff}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.active{background-color:#3990ec;border-color:#1c77db;color:#fff;outline:none}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.active .svg-icons{fill:#fff}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.mobile{border-top-left-radius:0;border-bottom-left-radius:0;border-left:0;width:45px;height:40px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.mobile svg{margin-right:-6px;margin-top:-1px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.desktop{border-top-right-radius:0;border-bottom-right-radius:0;border-right:0;width:54px;height:40px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.desktop svg{margin-right:-6px;margin-top:-1px}.exactmetrics-report-site-speed .exactmetrics-site-speed-container{max-width:1010px}.exactmetrics-report-site-speed .exactmetrics-site-speed-device,.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator{width:338px;margin-left:10px;max-height:304px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator{width:100%;margin-bottom:25px}}@media screen and (min-width:768px) and (max-width:1024px){.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator{width:100%;margin-bottom:25px}}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-indicator-device-icon{margin-bottom:40px;text-align:center}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-indicator-device-icon .desktop{width:80px}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-indicator-percent-text{font-size:5em;color:#f2994a;text-align:center;font-weight:700}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-indicator-overall-text{display:inline-block;padding-top:2rem;font-weight:600;font-size:16px;text-align:center}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-progress-circle{max-width:300px;max-height:255px;width:100%;-webkit-transform:scaleX(-1) rotate(55deg);-ms-transform:scaleX(-1) rotate(55deg);transform:scaleX(-1) rotate(55deg);overflow:visible}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-progress-circle__percent{position:absolute;top:50%;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-progress-circle__container{display:inline-block;position:relative}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-progress-circle__path{-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out;overflow:visible}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats{width:662px}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-site-speed-stats{width:100%}}@media screen and (min-width:768px) and (max-width:1024px){.exactmetrics-report-site-speed .exactmetrics-site-speed-stats{width:100%}}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-report-flex{text-align:center}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-report-flex.exactmetrics-report-2-columns{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-site-speed-stat{width:49%;background-color:#fff;border:1px solid #e0e0e0;min-height:135px;margin-bottom:15px;padding-top:1.2rem}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-site-speed-stat{width:100%;margin-top:15px;margin-left:0}}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-site-speed-stat h2{font-size:40px;margin:0;padding:20px 0 10px}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-site-speed-stat p{color:#828282}.exactmetrics-report-site-speed .exactmetrics-how-to-improve h2.title{font-size:22px;color:#393f4c}div.exactmetrics-pdf-score{position:relative;margin:80px;right:-1px;top:1px}.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}@media (max-width:782px){.exactmetrics-reports-page .exactmetrics-report-top{margin-bottom:25px}}.exactmetrics_page.exactmetrics-downloading-pdf-report #wpbody{-webkit-filter:blur(15px);filter:blur(15px)}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion-item-details,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-pdf-score{display:block!important}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion-item-title,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion .exactmetrics-accordion div:not(:last-child){border:none!important}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion-item-trigger-icon,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-notificationsv3-container,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-progress-circle{display:none}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-header{min-height:85px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report{width:1120px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation{border-bottom:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button.exactmetrics-active-tab-button{border:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button:first-child{border-left:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-row.exactmetrics-report-row-border-top{border-top:0;margin-bottom:25px}@media (max-width:782px){.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-title{padding-right:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-title.exactmetrics-has-pagination{margin-bottom:25px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-title:before{position:inherit;right:inherit}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button{font-size:18px;padding:23px 20px 25px;text-align:right}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-infobox-row{padding:24px 60px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:25%;border-right:1px solid #bcb7cd;border-top:0;padding:0 80px 0 10px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child{border-right:none;padding-right:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-reports-ecommerce-pie-chart{width:40%;padding-top:130px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart .exactmetrics-pie-chart{margin:inherit}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart .exactmetrics-reports-pie-chart-holder{-webkit-box-pack:inherit;-ms-flex-pack:inherit;justify-content:inherit;-webkit-box-align:inherit;-ms-flex-align:inherit;align-items:inherit;margin-right:20px;-webkit-box-orient:inherit;-webkit-box-direction:inherit;-ms-flex-flow:wrap;flex-flow:wrap}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-report-box{width:calc(50% - 12.5px);margin-top:0}}@media (max-width:991px){.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-row.exactmetrics-report-row-border-top{margin-right:-32px;margin-left:-32px;padding-right:32px;padding-left:32px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex{-ms-flex-flow:inherit;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:inherit}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart{width:50%;border:none;padding-right:32px;padding-left:20px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart:first-child{border-left:1px solid #e9e7ee}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-table-box{margin-right:20px;margin-top:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-table-box:first-child{margin-right:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-report-2-columns .exactmetrics-table-box{width:calc(50% - 12.5px)}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex.exactmetrics-interests-scroll-report .exactmetrics-table-box{width:100%}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-reports-pie-chart{width:calc(50% - 12.5px)}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-reports-pie-chart:first-child{margin:0 0 0 25px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-right:25px;margin-top:0}}body.exactmetrics-reporting-page #wpbody-content{padding-bottom:0}body.exactmetrics-reporting-page .exactmetrics-red{color:#d73638}body.exactmetrics-reporting-page .exactmetrics-green{color:#5cc0a5}body.exactmetrics-reporting-page .exactmetrics-report-top{margin-top:14px;margin-bottom:24px}@media (min-width:783px) and (max-width:1130px){body.exactmetrics-reporting-page .exactmetrics-report-top{margin-bottom:25px}}body.exactmetrics-reporting-page .exactmetrics-report-top h2{margin:12px 0;display:inline-block;color:#210f59;font-size:32px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-report-top h2{display:none}}@media (min-width:783px) and (max-width:1130px){body.exactmetrics-reporting-page .exactmetrics-report-top h2{display:block;margin:0 0 25px}}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report{float:left;margin-left:25px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-export-pdf-report{float:none;margin-left:0;margin-bottom:0;text-align:center;padding-top:20px}}@media (min-width:783px) and (max-width:1130px){body.exactmetrics-reporting-page .exactmetrics-export-pdf-report{float:none;margin-bottom:0}}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button{background:#e9e7ee;color:#210f59}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button:focus,body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button:hover{background:#bcb7cd}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button[disabled=disabled]{cursor:not-allowed}body.exactmetrics-reporting-page .exactmetrics-report-realtime .exactmetrics-export-pdf-report{margin-left:0}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:1130px){body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{float:left}}body.exactmetrics-reporting-page .exactmetrics-datepicker,body.exactmetrics-reporting-page .exactmetrics-hide{display:none}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container{position:relative}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container{max-width:100%}}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container.exactmetrics-hide,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .exactmetrics-hide{display:none}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-wrapper{display:block}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-wrapper .flatpickr-calendar{width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-calendar.static.open{position:relative;-webkit-box-shadow:none;box-shadow:none;border:none;width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:after,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:before{display:none}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-rContainer{width:100%;display:block}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .dayContainer,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-days{width:100%;max-width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day{max-width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange.inRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange.nextMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange.prevMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange:focus,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange:hover,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected.inRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected.nextMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected.prevMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected:focus,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected:hover,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange.inRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange.nextMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange.prevMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange:focus,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange:hover{background-color:#6528f5;border-color:#6528f5}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-months{padding-bottom:10px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .dayContainer{padding:0 28px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-weekdays{height:40px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-weekdaycontainer{background:#f4f3f7;padding:14px 28px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-current-month{font-size:15px;color:#210f59}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper{width:55px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper input.cur-year{padding:0 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 60px 0 10px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-info{display:inline-block;font-size:12px;margin-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-report-box-icon-heading{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:10px}.exactmetrics-report-box-icon-heading h3{color:#6528f5;margin-right:15px}.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-top{pointer-events:none}.exactmetrics-blur .exactmetrics-report-row{-webkit-filter:blur(5px);filter:blur(5px)}.exactmetrics-blur .exactmetrics-report{min-height:850px}.exactmetrics-reports-referral-icon{vertical-align:middle;margin-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 h4{font-size:16px;line-height:140%;color:#444}.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:16px auto 24px;max-width:520px;display:grid;grid-gap:10px}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul.columns-1{grid-template-columns:1fr}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul.columns-2{grid-template-columns:1fr 1fr}.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:#6528f5;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:#fff;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}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-button{background:#e9e7ee;color:#210f59}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-button:focus,body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-button:hover{background:#bcb7cd}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-accordion-item-details,body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-pdf-score{display:block!important}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-progress-circle{display:none}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-reports-intervals-dropdown{min-width:250px}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-reports-intervals-dropdown .exactmetrics-button{background:rgba(0,0,0,0);color:#32a27a}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-reports-intervals-dropdown .exactmetrics-button:focus,body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-reports-intervals-dropdown .exactmetrics-button:hover{color:#19865f}body.exactmetrics-reporting-page .exactmetrics-notice-error.exactmetrics-license_expired{display:none!important}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .exactmetrics-swal-icons{display:none}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .swal2-popup{width:600px;padding:2em 3.25em}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .swal2-actions{display:none!important}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .swal2-footer{display:block!important;text-align:center;padding-top:20px}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .swal2-footer a{display:inline-block}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .swal2-footer a.swal2-styled{padding-top:16px;padding-bottom:20px;margin-bottom:15px;text-decoration:none}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .swal2-footer a:nth-child(3){color:#393f4c!important}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .exactmetrics-expired-license-alert{text-align:right;padding-left:39px}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .exactmetrics-expired-license-alert h3{font-size:40px;margin:0 0 8px;padding:0}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .exactmetrics-expired-license-alert h4{font-size:20px;margin:0 0 10px;padding:0}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .exactmetrics-expired-license-alert p{font-size:16px;margin:0 0 10px;padding:0}
lite/assets/vue/css/widget.css CHANGED
@@ -1,3 +1,3 @@
1
  .exactmetrics-reminder-widget-container{position:fixed;right:0;bottom:0;max-height:350px;overflow:scroll}.exactmetrics-reminder-widget-container .exactmetrics-notice-closing-loader{width:100%;height:100%;position:fixed;background-color:hsla(0,0%,100%,.5)}.exactmetrics-tracking-notice{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:400px;max-width:calc(100% - 30px);border-radius:6px;z-index:10000;margin-bottom:15px}.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:12px;color:#7f7f7f;font-weight:400;margin:0;padding:0;line-height:1.2;border:none}.exactmetrics-tracking-notice p a{color:#6528f5;font-size:12px;line-height:1.2;margin:0 0 5px;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{width:67.77px;height:67.77px;padding:14px;background-color:#f2f6ff;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-icon svg{width:67.77px;height:67.77px}.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}.exactmetrics-tracking-notice .exactmetrics-reminder-notice-links{margin-right:10px}.exactmetrics-slide-up-enter-active,.exactmetrics-slide-up-leave-active{-webkit-transition:all .5s ease;transition:all .5s ease}.exactmetrics-slide-up-enter,.exactmetrics-slide-up-leave-to{opacity:0;-webkit-transform:translateX(30px);-ms-transform:translateX(30px);transform:translateX(30px)}@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-media:before{content:"\f072"}.monstericon-tag:before{content:"\f060"}.monstericon-check-circle-em:before{content:"\f061"}.monstericon-bullseye:before{content:"\f062"}.monstericon-rocket:before{content:"\f063"}.monstericon-exclamation-square:before{content:"\f064"}.monstericon-trash:before{content:"\f065"}.monstericon-user-em:before{content:"\f066"}.monstericon-unlock:before{content:"\f067"}.monstericon-exclamation-em-solid:before{content:"\f068"}.monstericon-key-em:before{content:"\f069"}.monstericon-long-arrow-right-light:before{content:"\f06a"}.monstericon-plug-light:before{content:"\f06b"}.monstericon-align-left-regular:before{content:"\f06c"}.monstericon-envelope-solid:before{content:"\f06f"}.monstericon-comment-alt-lines-solid:before{content:"\f06e"}.monstericon-arrow-circle-up-light:before{content:"\f071"}.monstericon-megaphone-solid:before{content:"\f070"}.monstericon-arrow-circle-up-light :before{content:"\f071"}.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 a{color:#6528f5}.exactmetrics-upsell a:focus,.exactmetrics-upsell a:hover{color:#37276a}.exactmetrics-upsell .exactmetrics-upsell-title{border-bottom:1px solid #e9e7ee}.exactmetrics-upsell .exactmetrics-upsell-title h2{color:#210f59;font-size:32px;margin-left:100px;margin-top:45px;margin-bottom:35px}@media (max-width:782px){.exactmetrics-upsell .exactmetrics-upsell-title h2{margin-left:24px;line-height:1.4;margin-top:24px;margin-bottom:24px}}.exactmetrics-upsell .exactmetrics-upsell-half h3{font-size:24px;color:#210f59;font-weight:700}.exactmetrics-upsell-bottom{background:#f7f9fd;border-top:1px solid #d6e2ed;padding:36px 50px 30px;position:relative}@media (max-width:767px){.exactmetrics-upsell-bottom{padding-left:20px;padding-right:20px}}.exactmetrics-upsell-bottom .exactmetrics-button-top{position:absolute;top:0;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}@media (max-width:767px){.exactmetrics-upsell-bottom .exactmetrics-button-top{min-width:288px}}.exactmetrics-upsell-bottom img{max-width:100%}.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-upsell-screen,.exactmetrics-screen-image{width:848px;padding-top:0;height:566px}@media (max-width:1099px){.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-upsell-screen,.exactmetrics-screen-image{left:20px}}.exactmetrics-em-ecommerce-upsell-screen:after,.exactmetrics-em-upsell-screen:after,.exactmetrics-screen-image:after{background-position:100% 100%;background-image:url(../img/upsell-screen.png)}.exactmetrics-em-logo-text{width:432px;height:56px;margin-bottom:28px;padding-top:0;max-width:100%}@media (max-width:1400px){.exactmetrics-em-logo-text{padding-top:13%;height:auto}}@media (max-width:959px){.exactmetrics-em-logo-text{padding-top:8%}}.exactmetrics-em-logo-text:after{background-image:url(../img/exactmetrics.png)}.exactmetrics-em-addons-upsell-screen,.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-publishers-upsell-screen{bottom:auto;top:-65px;width:648px;right:-13%}.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/one-click-integrations.png)}.exactmetrics-em-publishers-upsell-screen:after{background-image:url(../img/publishers-screen.png)}.exactmetrics-em-addons-upsell-screen{margin-bottom:-180px;top:-70px}.exactmetrics-em-addons-upsell-screen:after{background-image:url(../img/addons-help-screen.png)}.exactmetrics-em-search-console-upsell-screen:after{background-image:url(../img/search-console-screen.png)}.exactmetrics-em-real-time-upsell-screen:after{background-image:url(../img/real-time-screen.png)}.exactmetrics-em-site-speed-upsell-screen:after{background-image:url(../img/site-speed-screen.png)}.exactmetrics-em-forms-report-upsell-screen:after{background-image:url(../img/forms-report-screen.png)}.exactmetrics-em-dimensions-report-upsell-screen:after{background-image:url(../img/dimensions-report-screen.png)}.exactmetrics-em-media-report-upsell-screen:after{background-image:url(../img/media-report-upsell.png);background-size:80%;background-position:right 40px}.exactmetrics-em-forms-upsell-screen{width:758px;max-width:100%;margin-top:-75px}.exactmetrics-em-forms-upsell-screen:after{background-position:50%;background-image:url(../img/forms-screen.png)}.exactmetrics-em-optimize-upsell-screen{width:758px;max-width:100%;margin-left:-10%}.exactmetrics-em-optimize-upsell-screen:after{background-position:50%;background-image:url(../img/optimize-screen.png)}.exactmetrics-em-dimensions-upsell-screen{width:758px;max-width:100%}.exactmetrics-em-dimensions-upsell-screen:after{background-position:50%;background-image:url(../img/custom-dimensions-screen.png)}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-left:0}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half p{max-width:400px;margin-bottom:28px}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-left:96px}.exactmetrics-icon-background-large{position:absolute;font-size:130px;color:rgba(101,40,245,.05);left:25px;top:25px;line-height:1;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator{font-size:13px;color:#fff;background-color:#32a27a;border-radius:3px;font-weight:500;padding:4px 8px;vertical-align:top;margin-left:10px;display:inline-block;margin-top:-4px;cursor:pointer;text-decoration:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:hover,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:hover{color:#fff;background:#19865f}.exactmetrics-report .exactmetrics-upsell-dismissable{margin-left:-32px;margin-right:-32px;padding-left:32px;padding-right:32px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable{text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable h3{font-size:17px;color:#210f59;line-height:1.5;font-weight:700}.exactmetrics-report .exactmetrics-upsell-dismissable p{font-size:15px;margin-bottom:25px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{width:50%;padding-top:38px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{padding-left:32px;padding-right:32px;width:100%;text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half:first-child p{max-width:524px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-left:40px;color:#9087ac}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-left:0;margin-top:20px}}.exactmetrics-report .exactmetrics-upsell-dismiss{position:absolute;right:20px;top:20px;z-index:10}.exactmetrics-forms-image-wpf-upsell{margin-bottom:-140px;padding-top:85%}@media (max-width:782px){.exactmetrics-forms-image-wpf-upsell{margin-bottom:0}}.exactmetrics-forms-image-wpf-upsell:after{background-position:100% 100%;background-image:url(../img/forms-wpforms-upsell.png)}.exactmetrics-report-year-in-review{margin-left:auto;margin-right:auto;max-width:960px;background-color:#fff;background-image:url(../img/confetti-background.png);background-repeat:no-repeat;background-position:0 0;margin-bottom:90px}.exactmetrics-report-year-in-review .exactmetrics-pie-chart-tooltip{left:22px;top:23px}.exactmetrics-report-year-in-review .exactmetrics-reports-doughnut-tooltip{width:120px;height:120px}.exactmetrics-report-year-in-review.exactmetrics-yir-report-calculating-row{width:610px;margin-top:50px}@media (max-width:767px){.exactmetrics-report-year-in-review.exactmetrics-yir-report-calculating-row{width:100%;margin-top:20px}}.exactmetrics-report-year-in-review a,.exactmetrics-report-year-in-review h1,.exactmetrics-report-year-in-review h2,.exactmetrics-report-year-in-review h3,.exactmetrics-report-year-in-review h4,.exactmetrics-report-year-in-review h5,.exactmetrics-report-year-in-review p,.exactmetrics-report-year-in-review span{font-family:Lato,sans-serif;margin:0}.exactmetrics-report-year-in-review h1,.exactmetrics-report-year-in-review h2,.exactmetrics-report-year-in-review h3,.exactmetrics-report-year-in-review h4,.exactmetrics-report-year-in-review h5{font-weight:900}.exactmetrics-report-year-in-review p{font-style:normal;font-weight:400;font-size:14px;line-height:24px}.exactmetrics-report-year-in-review a{text-decoration:none;padding:8px 30px;border-radius:5px;color:#fff;font-weight:700;font-size:14px;line-height:24px;text-align:center}.exactmetrics-report-year-in-review .exactmetrics-yir-separator{border-left-color:#e0e0e0;border-right-color:#e0e0e0;border-top:1px solid #e0e0e0;border-bottom:1px solid #e0e0e0}.exactmetrics-report-year-in-review .exactmetrics-yir-footer,.exactmetrics-report-year-in-review .exactmetrics-yir-header,.exactmetrics-report-year-in-review section{padding:0 90px;clear:both;overflow:hidden}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-footer,.exactmetrics-report-year-in-review .exactmetrics-yir-header,.exactmetrics-report-year-in-review section{padding:0 15px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-footer,.exactmetrics-report-year-in-review .exactmetrics-yir-header,.exactmetrics-report-year-in-review section{padding:0 30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-text-right{text-align:right}.exactmetrics-report-year-in-review .exactmetrics-yir-text-right h2{color:#fff}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header{padding:90px 0 90px 90px;background-image:url(../img/em-logo-lg.png);background-repeat:no-repeat;background-position:center right 26px;background-size:230px 200px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header{padding:50px 15px 40px;background-image:none}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header{padding-left:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating{padding:90px 0 100px 60px;background-image:url(../img/em-logo-lg.png);background-position:right top 83px;background-size:160px 150px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating{padding-left:15px;padding-right:15px;padding-top:50px;background-size:140px 180px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-title{font-size:32px;line-height:37px;color:#393f4c;margin-top:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-title{font-size:26px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-summary{font-weight:400;font-size:14px;line-height:20px;color:#393f4c;max-width:385px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-summary{font-size:12px;max-width:230px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link{background:#4e9ee7;border-radius:5px;font-weight:700;font-size:14px;line-height:16px;text-align:center;color:#fff;border:0;margin-right:0;padding:12px 20px;margin-top:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link{width:inherit}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link{width:inherit}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link:active,.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-subtitle{font-size:20px;font-weight:900;background:#338eef;border-radius:30px;color:#fff;padding:14px 25px 14px 90px;position:relative;display:inline-block}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-subtitle{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-subtitle svg{position:absolute;left:5px;bottom:-5px}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-title{font-style:normal;font-weight:900;font-size:48px;line-height:58px;color:#393f4c;margin-bottom:15px;margin-top:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-title{font-size:20px;line-height:20px;margin-bottom:10px;margin-top:30px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-title{font-size:32px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-summary{font-weight:500;font-size:24px;line-height:32px;color:#828282;max-width:480px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-summary{font-size:16px;line-height:18px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-summary{font-size:16px;line-height:20px;max-width:400px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart{background:#fff;-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);border-radius:4.85258px}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-header{display:-webkit-box;display:-ms-flexbox;display:flex;padding:20px 30px;border-bottom:2px solid #f2f2f2;margin-bottom:55px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-header{margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-header div{width:100%}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-title{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:right;color:#393f4c;margin:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-subtitle{font-size:10px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content{padding:0 50px 15px 30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content{padding:0 15px 15px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content .exactmetrics-reports-bar-chart-holder{position:relative}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content .exactmetrics-reports-bar-chart-holder .exactmetrics-chart-tooltip{position:absolute;pointer-events:none}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box{padding-top:0;position:relative;border:0;-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);background:hsla(0,0%,100%,.38)}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box.exactmetrics-year-in-review-table-box-blur-report .exactmetrics-year-in-review-table-box-list{-webkit-filter:blur(5px);filter:blur(5px)}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header{padding:20px 30px;border-bottom:2px solid #f2f2f2;margin-bottom:30px}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-title{display:inline-block}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-title .exactmetrics-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-title .exactmetrics-report-title{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-subtitle{display:inline-block;float:right}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-subtitle .exactmetrics-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:right;color:#393f4c;margin:0;text-transform:capitalize}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list{padding-bottom:30px}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item{padding:9px 30px}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a{padding:0;border-radius:0;line-height:37px;line-height:inherit}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a:active,.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a:focus,.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a:hover{-webkit-box-shadow:none;box-shadow:none;background:none}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer{position:absolute;bottom:-34px;width:100%;left:0;text-align:center}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer{bottom:-40px}}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer .exactmetrics-yir-tooltip{font-weight:400;font-size:12px;color:#828282}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer .exactmetrics-yir-tooltip span{font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer .exactmetrics-yir-tooltip .exactmetrics-yir-icon{background:#dadada;border-radius:50%;padding:0;margin-right:10px;color:#fff;width:15px;height:15px;display:inline-block;line-height:16px}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart{border:0;margin:0;padding:0;width:100%}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-reports-pie-chart-holder{display:inline-block;float:left}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-reports-pie-chart-holder{display:block;float:none}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-reports-pie-chart-holder .exactmetrics-pie-chart{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAFxSURBVHgB7dlPTsJAFAbwb6BxQVzgTThCXaCC3kEPoFBP0PYGVQ9gvUNFY2PSI3AUFhISgx1njAsjIfa1jA+S90u6aDOTzpf5s5gHCF4KNVyePPntthea7j1Ad9FcUWr9cDc5SkFEDjAavoZKlREc0BrR7aQfU/qQAgTDlwut1D0cUmp5mGSDomr7FgjM4M/hmNZ2aVZHCmD4cK9HaUwN8B9Ih4KHBm4e+7VOsd/Gp7lGTds4AyQSgJsE4CYBuEkAbhKAmwTgJgG4SQBuEoCbBOAmAbhJAG4SgFuju9Emd5qbIktoHaUQq/nbwdcDXMORRktoHTvgJOsnPz4lo2HeNaFI1Zcq3MzA3EtXfrTnJXCAGmCGLUMNMK3SqOy8Byvflh9VC4QFCEh7wG5MU8v1/27XCq8Gz7P2YpHa97KzP1ZaR6jAFrxBQK5xBWd5ZEJsfDNapoAeJ9lxROqDGr4L3nZJ+GjO7qupnV1zchUQO+YTOT9YisPBuEEAAAAASUVORK5CYII=);background-color:#fff;background-repeat:no-repeat;background-position:50%}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content{padding-left:50px;padding-top:35px;float:left}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content{padding-left:0;padding-top:20px;float:none}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin-bottom:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-title{font-size:16px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:18px;line-height:24px;color:#393f4c;margin-top:10px;margin-bottom:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-subtitle{font-size:14px;line-height:14px}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend{position:relative;left:inherit;top:inherit;-webkit-transform:inherit;-ms-transform:inherit;transform:inherit;margin:24px 0 0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend{margin:10px 0 0}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li{display:inline-block;margin-right:30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li{margin-right:10px}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-color{border-radius:0;width:16px;height:16px;margin-bottom:-3px;margin-right:5px}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-text,.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-value{font-family:Lato;font-style:normal;font-weight:700;font-size:14px;line-height:24px;color:#393f4c;min-width:inherit;margin-right:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-text,.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-value{font-size:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip{border:2px solid #e3f1ff;border-radius:5px;padding-top:45px;padding-bottom:45px;overflow:hidden;background:#f3f9ff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip{padding-top:15px;padding-bottom:15px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip a,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip h3,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip p{font-family:Lato,sans-serif;margin:0}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-icon{float:left;width:144px;text-align:center}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-icon{width:90px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-icon img{background:#338eef;padding:12px;border-radius:50%;margin-top:12px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content{float:left;width:calc(100% - 144px);padding-right:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content{padding-right:0;width:calc(100% - 90px)}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-title{font-weight:900;font-size:18px;line-height:27px;color:#333;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-title{font-size:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-summary{font-weight:400;font-size:18px;line-height:27px;color:#393f4c;margin-bottom:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-summary{font-size:12px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper{margin-top:15px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link{font-weight:900;font-size:18px;line-height:27px;-webkit-text-decoration-line:underline;text-decoration-line:underline;color:#338eef;margin-top:15px;padding:0;border-radius:0;text-align:left}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link:hover{color:#2469b2;-webkit-box-shadow:none;box-shadow:none}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay{position:absolute;top:0;left:0;width:calc(100% - 25px);height:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content{margin-top:66px;text-align:center;height:calc(100% - 66px);padding-top:80px;padding-right:25px;padding-left:25px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-details{font-size:14px;line-height:20px;font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay{display:inline-block;border-radius:5px;font-size:14px;line-height:20px;color:#fff;padding:10px 30px;text-decoration:none;font-family:Lato;background:#338eef;margin-top:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success{background:#1ec185}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success:hover{opacity:.8;background:#10ad73}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay:hover{border:0;background:#2469b2;outline:none}.exactmetrics-report-year-in-review .exactmetrics-yir-audience{padding-bottom:85px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience{padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:685px;margin-bottom:80px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-summary{font-size:18px;line-height:20px;margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors{width:100%;margin-bottom:70px;padding-left:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors{margin-bottom:20px;padding-left:0;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions img,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors img{margin-bottom:15px;max-height:28px}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions h4,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors h4{font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions h4,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors h4{font-size:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions .exactmetrics-yir-number,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors .exactmetrics-yir-number{font-weight:900;font-size:60px;line-height:72px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions .exactmetrics-yir-number,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors .exactmetrics-yir-number{font-size:40px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-visitor-by-chart{margin-bottom:60px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-visitor-by-chart{margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics{padding-top:85px;padding-bottom:85px;background-image:url(../img/map-background.png);background-repeat:no-repeat;background-position:top}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics{padding-top:30px;padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:656px;margin-bottom:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-summary{font-size:18px;line-height:20px;margin-bottom:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries{display:block}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country{width:50%;margin-top:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-number-one{font-size:24px;line-height:29px;color:#fff;background:#338eef;width:50px;height:50px;border-radius:50%;display:inline-block;text-align:center;line-height:50px;margin-bottom:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-flag{display:block}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-flag{margin:0 auto}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-flag.exactmetrics-flag-zz{display:none}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-name{font-size:32px;line-height:38px;color:#393f4c;margin-top:0;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-name{font-size:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-visitors{font-weight:400;font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-visitors{font-size:16px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-countries-graph{width:50%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-countries-graph{width:100%}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-know-visitors{font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-know-visitors{font-size:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info{margin-top:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info{width:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info span,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info span,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info span{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info h2,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info h2,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info h2{font-size:30px;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info p,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info p,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info p{font-size:10px;line-height:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior{padding-top:85px;padding-bottom:85px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior{padding-top:30px;padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:585px;margin-bottom:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data{display:block;margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary{width:50%;margin-top:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary img{width:32px;height:32px;margin-left:-3px;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary img{margin-left:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-time-spent{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent{font-size:32px;line-height:38px;color:#393f4c;margin-top:15px;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent{margin-top:5px;margin-bottom:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent .exactmetrics-yir-number{font-weight:900;font-size:48px;line-height:58px;color:#338eef;margin-right:10px;overflow-wrap:break-word}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent .exactmetrics-yir-number{font-size:30px;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent .exactmetrics-yir-type{font-weight:900;font-size:16px;line-height:103.8%;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-each-visitor-spent{font-weight:400;font-size:18px;line-height:24px;color:#393f4c;max-width:330px;margin-top:15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-each-visitor-spent{font-size:14px;max-width:100%;margin-top:5px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-top-pages-graph{width:50%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-top-pages-graph{width:100%}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-most-visitors-device{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-most-visitors-device{font-size:20px;line-height:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info{margin-top:20px;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info{width:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info span,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info h2,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info p,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-grow-traffic-tip{margin-top:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-grow-traffic-tip{margin-top:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from{margin-top:55px;margin-bottom:100px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from{margin-top:20px;margin-bottom:60px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-title{font-size:32px;line-height:44px;color:#393f4c;margin-bottom:30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-title{font-size:20px;line-height:20px;margin-bottom:15px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals{display:block}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-keywords,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-referrals{width:50%;position:relative}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-keywords,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-referrals{width:100%}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-keywords{padding-right:25px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-keywords{padding-right:0;margin-bottom:60px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-referrals{padding-left:25px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-referrals{padding-left:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce{padding-top:85px;padding-bottom:30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce{padding-top:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number{width:55%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number{width:30%}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-products-sold,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-revenue{padding:75px 0}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-title{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-title{font-size:14px;line-height:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-amount{font-size:54px;line-height:65px;color:#338eef;overflow-wrap:break-word}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-amount{font-size:24px;line-height:40px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products{width:45%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products{width:70%}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular{-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);border-radius:3.59813px;padding:30px;margin-bottom:30px}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning img,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular img{margin-bottom:5px}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning span,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning span,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular span{font-size:14px;line-height:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning .exactmetrics-yir-product-title,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular .exactmetrics-yir-product-title{font-weight:700;font-size:28px;line-height:32px;color:#338eef;margin-top:10px;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning .exactmetrics-yir-product-title,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular .exactmetrics-yir-product-title{font-size:16px;line-height:16px;margin-bottom:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning .exactmetrics-yir-count,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular .exactmetrics-yir-count{font-weight:400;font-size:16px;line-height:19px;color:#828282}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning .exactmetrics-yir-count,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular .exactmetrics-yir-count{font-size:12px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-revenue-by-month{margin-bottom:50px}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you{padding-top:90px;background-color:#fff;background-image:url(../img/confetti-background.png);background-position:0 0;padding-bottom:85px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you{padding-top:0;padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-title{font-size:54px;line-height:65px;text-align:center;color:#393f4c;max-width:588px;margin:0 auto 10px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-title{font-size:30px;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-summary{font-weight:500;font-size:20px;line-height:28px;text-align:center;color:#393f4c;max-width:585px;margin:0 auto 15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-summary{font-size:14px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-amazing-year{font-weight:700;font-size:32px;line-height:37px;text-align:center;color:#393f4c;font-style:italic;margin-bottom:35px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-amazing-year{font-size:24px;line-height:24px;margin-bottom:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors{text-align:center;margin-bottom:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors{margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author{display:inline-block;padding:0 45px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author{padding:0 10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-thumbnail{width:96px;height:96px;background-repeat:no-repeat;margin:0 auto 10px}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-thumbnail.chris{background-image:url(../img/chris.png)}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-thumbnail.syed{background-image:url(../img/syed.png)}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-name{font-weight:900;font-size:18px;line-height:22px;text-align:center;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-name{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review{background:#338eef;-webkit-box-shadow:0 8px 8px rgba(30,88,150,.2);box-shadow:0 8px 8px rgba(30,88,150,.2);border-radius:5px;padding:24px;display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review{display:block}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content,.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-rating,.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button{width:100%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content{text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content span{font-weight:900;font-size:14px;color:#fff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content span{font-size:12px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content h3{font-weight:900;font-size:20px;line-height:31px;color:#fff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content h3{font-size:18px;line-height:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-rating .exactmetrics-yir-five-star{margin:0;padding:12px 0 0;text-align:center}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-rating .exactmetrics-yir-five-star li{list-style:none;display:inline-block;margin-right:7px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-rating .exactmetrics-yir-five-star li{margin-right:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button{text-align:center;padding-top:5px}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button a{background:#2469b3;border-radius:5px;text-align:center;height:38px;display:inline-block}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button a:active,.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button a:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button a:hover{background:#123c68}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-title{font-size:36px;line-height:44px;color:#393f4c;margin-bottom:20px;max-width:638px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-title{font-size:20px;line-height:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-summary{font-weight:500;font-size:20px;line-height:24px;color:#393f4c;max-width:450px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-summary{font-size:14px;line-height:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins{margin-top:20px;margin-left:-30px;margin-right:-30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins{margin-left:0;margin-right:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon{width:calc(50% - 60px);float:left;background:#f3f9ff;border:2px solid #e3f1ff;border-radius:5px;position:relative;min-height:260px;margin:30px 30px 0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon{width:100%;margin:30px 0;min-height:300px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top{padding-top:30px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-image{width:104px;float:left;padding-left:25px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-image .exactmetrics-addon-thumb{width:32px;height:32px;border:2px solid #e3f1ff;border-radius:5px;padding:10px;-webkit-box-sizing:content-box;box-sizing:content-box}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-text{width:calc(100% - 104px);float:left;padding-right:25px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-text .exactmetrics-addon-title{font-size:18px;line-height:24px;margin-top:0;font-family:Lato;margin-bottom:5px;color:#393f4c;font-weight:900}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-text .exactmetrics-addon-excerpt{font-weight:400;font-size:14px;line-height:18px;color:#393f4c;font-family:Lato;margin:0}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message{border-top:2px solid #e3f1ff;clear:both;padding:13px 25px;position:absolute;bottom:0;left:0;width:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-addon-status{float:right;line-height:32px;font-weight:900;font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-addon-status span{color:#d4393d}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-button{line-height:32px;background:#338eef;border-radius:3px;display:inline-block;padding:0 30px;border:0;font-weight:700;font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-button:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-button:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-button:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-addon-status span{color:#64bfa5}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-button,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-button:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-button:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-button:hover{background:rgba(51,142,239,.5)}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities{background-color:#338eef;padding-top:160px;margin-top:-90px;color:#fff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities{padding-top:100px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities h2{font-size:36px;line-height:43px;color:#fff;margin-bottom:15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities h2{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities h3{font-weight:500;font-size:20px;line-height:24px;color:#fff;max-width:575px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities h3{font-size:18px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-30px;padding-top:60px;padding-bottom:90px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities{display:block;margin-left:0;padding-bottom:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community{width:100%;background-color:#2469b2;border-radius:5px;margin-left:30px;padding:24px;position:relative;min-height:340px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community{margin-left:0;margin-bottom:30px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community{min-height:350px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-title{font-weight:900;font-size:20px;line-height:24px;margin-bottom:10px;margin-top:5px}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link,.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links{position:absolute;bottom:15px;left:24px;width:80%;width:calc(100% - 48px)}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link{background-color:#123c68;display:block}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link{padding:8px 10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links{margin:0}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links li{float:left;margin-right:8px;margin-bottom:0}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links li a{background-color:#123c68;display:block;margin:0;width:40px;height:40px;padding:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links li a:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links li a:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-footer{height:84px;background:#2368b1;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-footer{display:block;text-align:center;padding:15px 0;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-footer div{width:100%;font-weight:500;font-size:16px;color:#fff;text-align:center}.exactmetrics-report-site-speed .exactmetrics-site-speed-blur{width:100%;padding-top:70%;background-image:url(../img/site-speed-blur.png);background-repeat:no-repeat;background-size:contain;background-position:50%}.exactmetrics-report-site-speed .exactmetrics-upsell-top{max-width:80%;margin:0 auto}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-report-top{display:-webkit-box;display:-ms-flexbox;display:flex}}.exactmetrics-report-site-speed .exactmetrics-report-top h2.exactmetrics-report-top-title{margin-top:10px}.exactmetrics-report-site-speed .exactmetrics-report-top .exactmetrics-export-pdf-report{margin-right:16px}.exactmetrics-report-site-speed .exactmetrics-report-top .exactmetrics-export-pdf-report button{background-color:#f5f5f5;color:#4c6577;border-color:#dcdcdc}.exactmetrics-report-site-speed .exactmetrics-report-top .exactmetrics-run-audit-btn .exactmetrics-run-audit{background-color:#3990ec;height:39px}.exactmetrics-report-site-speed .exactmetrics-report-top .exactmetrics-run-audit-btn .exactmetrics-run-audit:hover{background-color:rgba(57,144,236,.8)}.exactmetrics-report-site-speed .exactmetrics-choose-device-button{margin-left:15px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button{display:inline-block;text-align:center;background-color:#f5f5f5;color:#444;border-color:#dcdcdc;border-radius:5px;outline:none}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button:hover{background-color:#3990ec;border-color:#1c77db;outline:none}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button:hover .svg-icons{fill:#fff}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.active{background-color:#3990ec;border-color:#1c77db;color:#fff;outline:none}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.active .svg-icons{fill:#fff}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.mobile{border-top-right-radius:0;border-bottom-right-radius:0;border-right:0;width:45px;height:40px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.mobile svg{margin-left:-6px;margin-top:-1px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.desktop{border-top-left-radius:0;border-bottom-left-radius:0;border-left:0;width:54px;height:40px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.desktop svg{margin-left:-6px;margin-top:-1px}.exactmetrics-report-site-speed .exactmetrics-site-speed-container{max-width:1010px}.exactmetrics-report-site-speed .exactmetrics-site-speed-device,.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator{width:338px;margin-right:10px;max-height:304px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator{width:100%;margin-bottom:25px}}@media screen and (min-width:768px) and (max-width:1024px){.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator{width:100%;margin-bottom:25px}}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-indicator-device-icon{margin-bottom:40px;text-align:center}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-indicator-device-icon .desktop{width:80px}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-indicator-percent-text{font-size:5em;color:#f2994a;text-align:center;font-weight:700}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-indicator-overall-text{display:inline-block;padding-top:2rem;font-weight:600;font-size:16px;text-align:center}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-progress-circle{max-width:300px;max-height:255px;width:100%;-webkit-transform:scaleX(-1) rotate(-55deg);-ms-transform:scaleX(-1) rotate(-55deg);transform:scaleX(-1) rotate(-55deg);overflow:visible}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-progress-circle__percent{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-progress-circle__container{display:inline-block;position:relative}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-progress-circle__path{-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out;overflow:visible}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats{width:662px}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-site-speed-stats{width:100%}}@media screen and (min-width:768px) and (max-width:1024px){.exactmetrics-report-site-speed .exactmetrics-site-speed-stats{width:100%}}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-report-flex{text-align:center}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-report-flex.exactmetrics-report-2-columns{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-site-speed-stat{width:49%;background-color:#fff;border:1px solid #e0e0e0;min-height:135px;margin-bottom:15px;padding-top:1.2rem}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-site-speed-stat{width:100%;margin-top:15px;margin-right:0}}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-site-speed-stat h2{font-size:40px;margin:0;padding:20px 0 10px}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-site-speed-stat p{color:#828282}.exactmetrics-report-site-speed .exactmetrics-how-to-improve h2.title{font-size:22px;color:#393f4c}div.exactmetrics-pdf-score{position:relative;margin:80px;left:-1px;top:1px}.exactmetrics-admin-page{overflow:hidden}.exactmetrics-report{padding:30px 32px;position:relative}@media (max-width:991px){.exactmetrics-report{padding-left:24px;padding-right:24px}}.exactmetrics-reports-page{margin-bottom:100px}.exactmetrics-reports-page .exactmetrics-header{padding-top:21px;padding-bottom:21px}@media (max-width:782px){.exactmetrics-reports-page .exactmetrics-report-top{margin-bottom:25px}}.exactmetrics_page.exactmetrics-downloading-pdf-report #wpbody{-webkit-filter:blur(15px);filter:blur(15px)}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion-item-details,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-pdf-score{display:block!important}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion-item-title,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion .exactmetrics-accordion div:not(:last-child){border:none!important}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion-item-trigger-icon,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-notificationsv3-container,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-progress-circle{display:none}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-header{min-height:85px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report{width:1120px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation{border-bottom:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button.exactmetrics-active-tab-button{border:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button:first-child{border-right:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-row.exactmetrics-report-row-border-top{border-top:0;margin-bottom:25px}@media (max-width:782px){.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-title{padding-left:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-title.exactmetrics-has-pagination{margin-bottom:25px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-title:before{position:inherit;left:inherit}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button{font-size:18px;padding:23px 20px 25px;text-align:left}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-infobox-row{padding:24px 60px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:25%;border-left:1px solid #bcb7cd;border-top:0;padding:0 10px 0 80px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child{border-left:none;padding-left:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-reports-ecommerce-pie-chart{width:40%;padding-top:130px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart .exactmetrics-pie-chart{margin:inherit}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart .exactmetrics-reports-pie-chart-holder{-webkit-box-pack:inherit;-ms-flex-pack:inherit;justify-content:inherit;-webkit-box-align:inherit;-ms-flex-align:inherit;align-items:inherit;margin-left:20px;-webkit-box-orient:inherit;-webkit-box-direction:inherit;-ms-flex-flow:wrap;flex-flow:wrap}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-report-box{width:calc(50% - 12.5px);margin-top:0}}@media (max-width:991px){.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-row.exactmetrics-report-row-border-top{margin-left:-32px;margin-right:-32px;padding-left:32px;padding-right:32px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex{-ms-flex-flow:inherit;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:inherit}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart{width:50%;border:none;padding-left:32px;padding-right:20px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart:first-child{border-right:1px solid #e9e7ee}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-table-box{margin-left:20px;margin-top:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-table-box:first-child{margin-left:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-report-2-columns .exactmetrics-table-box{width:calc(50% - 12.5px)}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex.exactmetrics-interests-scroll-report .exactmetrics-table-box{width:100%}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-reports-pie-chart{width:calc(50% - 12.5px)}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-reports-pie-chart:first-child{margin:0 25px 0 0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-left:25px;margin-top:0}}body.exactmetrics-reporting-page #wpbody-content{padding-bottom:0}body.exactmetrics-reporting-page .exactmetrics-red{color:#d73638}body.exactmetrics-reporting-page .exactmetrics-green{color:#5cc0a5}body.exactmetrics-reporting-page .exactmetrics-report-top{margin-top:14px;margin-bottom:24px}@media (min-width:783px) and (max-width:1130px){body.exactmetrics-reporting-page .exactmetrics-report-top{margin-bottom:25px}}body.exactmetrics-reporting-page .exactmetrics-report-top h2{margin:12px 0;display:inline-block;color:#210f59;font-size:32px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-report-top h2{display:none}}@media (min-width:783px) and (max-width:1130px){body.exactmetrics-reporting-page .exactmetrics-report-top h2{display:block;margin:0 0 25px}}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report{float:right;margin-right:25px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-export-pdf-report{float:none;margin-right:0;margin-bottom:0;text-align:center;padding-top:20px}}@media (min-width:783px) and (max-width:1130px){body.exactmetrics-reporting-page .exactmetrics-export-pdf-report{float:none;margin-bottom:0}}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button{background:#e9e7ee;color:#210f59}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button:focus,body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button:hover{background:#bcb7cd}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button[disabled=disabled]{cursor:not-allowed}body.exactmetrics-reporting-page .exactmetrics-report-realtime .exactmetrics-export-pdf-report{margin-right:0}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{display:-webkit-box;display:-ms-flexbox;display:flex;float:right}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{float:none;width:100%;-ms-flex-flow:wrap;flex-flow:wrap}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker .exactmetrics-buttons-toggle{width:100%;margin-right:0}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker .exactmetrics-buttons-toggle .exactmetrics-button{width:50%}}@media (min-width:783px) and (max-width:1130px){body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{float:right}}body.exactmetrics-reporting-page .exactmetrics-datepicker,body.exactmetrics-reporting-page .exactmetrics-hide{display:none}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container{position:relative}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container{max-width:100%}}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container.exactmetrics-hide,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .exactmetrics-hide{display:none}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-wrapper{display:block}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-wrapper .flatpickr-calendar{width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-calendar.static.open{position:relative;-webkit-box-shadow:none;box-shadow:none;border:none;width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:after,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:before{display:none}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-rContainer{width:100%;display:block}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .dayContainer,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-days{width:100%;max-width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day{max-width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange.inRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange.nextMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange.prevMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange:focus,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange:hover,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected.inRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected.nextMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected.prevMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected:focus,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected:hover,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange.inRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange.nextMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange.prevMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange:focus,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange:hover{background-color:#6528f5;border-color:#6528f5}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-months{padding-bottom:10px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .dayContainer{padding:0 28px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-weekdays{height:40px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-weekdaycontainer{background:#f4f3f7;padding:14px 28px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-current-month{font-size:15px;color:#210f59}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper{width:55px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper input.cur-year{padding:0 10px 0 5px;min-height:25px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info{background:#e9e7ee;border-radius:3px;font-size:15px;color:#210f59;line-height:1.75;padding:8px 28px 8px 20px;border:none;position:relative;text-align:left}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info{max-width:100%;line-height:1.4}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info>span{overflow:hidden;white-space:pre;text-overflow:ellipsis;max-width:calc(100% - 40px);display:inline-block}}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info i{margin-left:38px;margin-right:12px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info i{margin-left:10px;margin-right:10px;vertical-align:super}}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info:after{width:0;height:0;border-color:#9087ac rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:5px 3.5px 0;content:"";position:absolute;top:50%;margin-top:-2px;right:20px}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown{position:absolute;z-index:100;background:#fff;border:1px solid #f4f3f7;border-radius:3px;margin-top:6px;-webkit-box-shadow:0 10px 20px rgba(48,44,62,.05);box-shadow:0 10px 20px rgba(48,44,62,.05);padding:7px 8px;width:100%;left:0;top:100%}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button{display:block;border:none;padding:8px 12px;font-size:15px;line-height:1.75;color:#210f59;width:100%;text-align:left;border-radius:2px;background:#fff}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button.exactmetrics-interval-active,body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button:focus,body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button:hover{background:#e9e7ee}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button i{margin-right:10px}body.exactmetrics-reporting-page .exactmetrics-mobile-details-toggle{width:100%;margin-bottom:0;margin-top:10px;margin-left:0;font-weight:700}@media (min-width:783px){body.exactmetrics-reporting-page .exactmetrics-mobile-details-toggle{display:none}}body.exactmetrics-reporting-page .exactmetrics-info{color:#9087ac;cursor:help;font-size:15px;position:relative;display:inline-block;vertical-align:top;margin-left:10px}body.exactmetrics-reporting-page .exactmetrics-report-row{margin-bottom:25px}body.exactmetrics-reporting-page .exactmetrics-report-row.exactmetrics-report-row-border-top{margin-bottom:0;margin-left:-32px;margin-right:-32px;padding:0 32px;border-top:1px solid #e9e7ee}@media (max-width:991px){body.exactmetrics-reporting-page .exactmetrics-report-row.exactmetrics-report-row-border-top{margin-left:-24px;margin-right:-24px;padding-left:24px;padding-right:24px}}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button{background:#eceff5;color:#464c57;border-bottom-width:1px;border-color:#d6e2ed;border-radius:0;line-height:18px;border-right:0;margin:0}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:hover{background:#fff}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:focus{z-index:10;position:relative}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;border-right:1px solid #d6e2ed}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button.exactmetrics-selected-interval{background:#fff;color:#6528f5;font-weight:700}.exactmetrics-reports-overview-datagraph-tooltip-container{padding:15px;background-color:#fff;border:1px solid #bcb7cd;-webkit-box-shadow:0 10px 20px rgba(57,15,157,.15);box-shadow:0 10px 20px rgba(57,15,157,.15);border-radius:5px;display:block}.exactmetrics-pie-chart-tooltip{left:20px;top:20px;padding:0}@media (max-width:782px){.exactmetrics-pie-chart-tooltip{left:50%;margin-left:-97px}}.exactmetrics-reports-doughnut-tooltip{-webkit-box-shadow:none;box-shadow:none;border:none;width:172px;border-radius:50%;height:172px;text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.exactmetrics-reports-doughnut-tooltip .exactmetrics-reports-overview-datagraph-tooltip-title{font-size:30px;color:#6528f5;margin-bottom:18px;font-weight:700}.exactmetrics-reports-doughnut-tooltip .exactmetrics-reports-overview-datagraph-tooltip-number{color:#6528f5;font-size:15px;font-weight:500}#exactmetrics-chartjs-line-overview-tooltip{min-width:100px}.exactmetrics-reports-overview-datagraph-tooltip-number{color:#210f59;font-size:24px;font-weight:400;margin-bottom:5px;display:inline-block;margin-right:5px}.exactmetrics-reports-overview-datagraph-tooltip-trend{color:#23282d;font-size:14px;font-weight:400;display:inline-block}.exactmetrics-reports-overview-datagraph-tooltip-descriptor{color:#9087ac;font-size:12px;font-weight:400;width:100%;clear:both}.exactmetrics-reports-overview-datagraph-tooltip-title{color:#210f59;font-size:12px;font-weight:400;width:100%}#exactmetrics-chartjs-bar-tooltip,.exactmetrics-line-chart-tooltip{opacity:1;position:absolute;-webkit-transform:translate(-50%,-100%);-ms-transform:translate(-50%,-100%);transform:translate(-50%,-100%);margin-top:-20px}#exactmetrics-chartjs-bar-tooltip:after,.exactmetrics-line-chart-tooltip:after{position:absolute;top:100%;width:0;height:0;border-color:#fff rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:10px 9.5px 0;content:"";left:50%;margin-left:-9px;margin-top:-7px}#exactmetrics-chartjs-bar-tooltip:before,.exactmetrics-line-chart-tooltip:before{position:absolute;top:100%;width:0;height:0;border-color:#bcb7cd rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:10px 10.5px 0;content:"";left:50%;margin-left:-10px;margin-top:-6px}#exactmetrics-chartjs-line-age-tooltip .exactmetrics-reports-overview-datagraph-tooltip-number:after{content:"%"}.exactmetrics-report-tabs-navigation{border-bottom:1px solid #e9e7ee}.exactmetrics-report-tabs-navigation button{color:#4d3f7a;font-weight:700;text-align:left;font-size:15px;padding:15px 24px 17px;cursor:pointer;margin:0 0 -1px;position:relative;line-height:1;border-radius:5px 5px 0 0;background:#fff;border:1px solid;border-color:#fff #fff #e9e7ee}@media (max-width:782px){.exactmetrics-report-tabs-navigation button{font-size:14px;padding:13px 20px 15px;text-align:center}}.exactmetrics-report-tabs-navigation button:focus{z-index:10}.exactmetrics-report-tabs-navigation button.exactmetrics-active-tab-button{background:#fff;color:#6528f5;border-color:#e9e7ee #e9e7ee #fff}.exactmetrics-report-tabs{background:#fff}.exactmetrics-report-tabs .exactmetrics-report-tabs-content{padding-top:20px}#mi-custom-line{max-height:330px}.exactmetrics-report-infobox-row{display:-webkit-box;display:-ms-flexbox;display:flex;background:#f4f3f7;border-radius:10px;padding:24px 60px}@media (max-width:782px){.exactmetrics-report-infobox-row{-ms-flex-flow:wrap;flex-flow:wrap;padding:20px}}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:25%;border-left:1px solid #bcb7cd;padding:0 10px 0 60px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-info{display:inline-block;font-size:12px;margin-left:6px;vertical-align:middle}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child{border-left:none;padding-left:0}@media (max-width:782px){.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:100%;border-left:none;border-top:1px solid #bcb7cd;padding:24px 0}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child{border-top:0;padding-top:0}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:last-child{padding-bottom:0}}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-report-title{text-overflow:ellipsis;overflow:hidden;white-space:pre;line-height:1.2;color:#4d3f7a;font-size:13px;display:inline-block;vertical-align:middle;padding-left:0}@media (max-width:991px){.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-report-title{padding-left:0}}.exactmetrics-report-title{font-size:24px;color:#210f59;font-weight:700;margin-top:0;line-height:1.4;display:inline-block}@media (max-width:762px){.exactmetrics-report-title{padding-left:60px}.exactmetrics-report-ti
1
  .exactmetrics-reminder-widget-container{position:fixed;right:0;bottom:0;max-height:350px;overflow:scroll}.exactmetrics-reminder-widget-container .exactmetrics-notice-closing-loader{width:100%;height:100%;position:fixed;background-color:hsla(0,0%,100%,.5)}.exactmetrics-tracking-notice{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:400px;max-width:calc(100% - 30px);border-radius:6px;z-index:10000;margin-bottom:15px}.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:12px;color:#7f7f7f;font-weight:400;margin:0;padding:0;line-height:1.2;border:none}.exactmetrics-tracking-notice p a{color:#6528f5;font-size:12px;line-height:1.2;margin:0 0 5px;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{width:67.77px;height:67.77px;padding:14px;background-color:#f2f6ff;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-icon svg{width:67.77px;height:67.77px}.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}.exactmetrics-tracking-notice .exactmetrics-reminder-notice-links{margin-right:10px}.exactmetrics-slide-up-enter-active,.exactmetrics-slide-up-leave-active{-webkit-transition:all .5s ease;transition:all .5s ease}.exactmetrics-slide-up-enter,.exactmetrics-slide-up-leave-to{opacity:0;-webkit-transform:translateX(30px);-ms-transform:translateX(30px);transform:translateX(30px)}@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-media:before{content:"\f072"}.monstericon-tag:before{content:"\f060"}.monstericon-check-circle-em:before{content:"\f061"}.monstericon-bullseye:before{content:"\f062"}.monstericon-rocket:before{content:"\f063"}.monstericon-exclamation-square:before{content:"\f064"}.monstericon-trash:before{content:"\f065"}.monstericon-user-em:before{content:"\f066"}.monstericon-unlock:before{content:"\f067"}.monstericon-exclamation-em-solid:before{content:"\f068"}.monstericon-key-em:before{content:"\f069"}.monstericon-long-arrow-right-light:before{content:"\f06a"}.monstericon-plug-light:before{content:"\f06b"}.monstericon-align-left-regular:before{content:"\f06c"}.monstericon-envelope-solid:before{content:"\f06f"}.monstericon-comment-alt-lines-solid:before{content:"\f06e"}.monstericon-arrow-circle-up-light:before{content:"\f071"}.monstericon-megaphone-solid:before{content:"\f070"}.monstericon-arrow-circle-up-light :before{content:"\f071"}.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/)