Google Analytics for WordPress by MonsterInsights - Version 8.11.0

Version Description

Download this release

Release Info

Developer manejaam
Plugin Icon 128x128 Google Analytics for WordPress by MonsterInsights
Version 8.11.0
Comparing to
See all releases

Code changes from version 8.10.1 to 8.11.0

assets/images/plugin-seedprod.png CHANGED
Binary file
googleanalytics.php CHANGED
@@ -6,7 +6,7 @@
6
  * Author: MonsterInsights
7
  * Author URI: https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=pluginheader&utm_campaign=authoruri&utm_content=7%2E0%2E0
8
  *
9
- * Version: 8.10.1
10
  * Requires at least: 4.8.0
11
  * Requires PHP: 5.6
12
  *
@@ -69,7 +69,7 @@ final class MonsterInsights_Lite {
69
  * @access public
70
  * @var string $version Plugin version.
71
  */
72
- public $version = '8.10.1';
73
 
74
  /**
75
  * Plugin file.
6
  * Author: MonsterInsights
7
  * Author URI: https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=pluginheader&utm_campaign=authoruri&utm_content=7%2E0%2E0
8
  *
9
+ * Version: 8.11.0
10
  * Requires at least: 4.8.0
11
  * Requires PHP: 5.6
12
  *
69
  * @access public
70
  * @var string $version Plugin version.
71
  */
72
+ public $version = '8.11.0';
73
 
74
  /**
75
  * 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 monsterinsights_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['monsterinsights_settings'] ) && $current_screen->id === $admin_page_hooks['monsterinsights_settings'] ) {
27
  $settings_page = true;
28
  }
29
 
30
- if ( $current_screen->id === 'toplevel_page_monsterinsights_settings' ) {
31
  $settings_page = true;
32
  }
33
 
34
- if ( $current_screen->id === 'insights_page_monsterinsights_settings' ) {
35
  $settings_page = true;
36
  }
37
 
38
- if ( strpos( $current_screen->id, 'monsterinsights_settings' ) !== false ) {
39
  $settings_page = true;
40
  }
41
 
42
- if ( ! empty( $current_screen->base ) && strpos( $current_screen->base, 'monsterinsights_network' ) !== false ) {
43
  $settings_page = true;
44
  }
45
 
@@ -51,24 +53,25 @@ function monsterinsights_is_settings_page() {
51
  *
52
  * @return bool
53
  */
54
- function monsterinsights_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['monsterinsights_reports'] ) && $current_screen->id === $admin_page_hooks['monsterinsights_reports'] ) {
64
  $reports_page = true;
65
  }
66
 
67
- if ( 'toplevel_page_monsterinsights_reports' === $current_screen->id ) {
68
  $reports_page = true;
69
  }
70
 
71
- if ( strpos( $current_screen->id, 'monsterinsights_reports' ) !== false ) {
72
  $reports_page = true;
73
  }
74
 
@@ -83,19 +86,20 @@ function monsterinsights_is_reports_page() {
83
  * @access public
84
  *
85
  */
86
- function monsterinsights_admin_styles() {
 
87
 
88
- $suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
89
 
90
  // Load Common admin styles.
91
- wp_register_style( 'monsterinsights-admin-common-style', plugins_url( 'assets/css/admin-common' . $suffix . '.css', MONSTERINSIGHTS_PLUGIN_FILE ), array(), monsterinsights_get_asset_version() );
92
- wp_enqueue_style( 'monsterinsights-admin-common-style' );
93
 
94
  // Get current screen.
95
  $screen = get_current_screen();
96
 
97
  // Bail if we're not on a MonsterInsights screen.
98
- if ( empty( $screen->id ) || strpos( $screen->id, 'monsterinsights' ) === false ) {
99
  return;
100
  }
101
 
@@ -103,32 +107,32 @@ function monsterinsights_admin_styles() {
103
  $rtl = is_rtl() ? '.rtl' : '';
104
 
105
  // For the settings page, load the Vue app styles.
106
- if ( monsterinsights_is_settings_page() ) {
107
- if ( ! defined( 'MONSTERINSIGHTS_LOCAL_JS_URL' ) ) {
108
- wp_enqueue_style( 'monsterinsights-vue-style-vendors', plugins_url( $version_path . '/assets/vue/css/chunk-vendors' . $rtl . '.css', MONSTERINSIGHTS_PLUGIN_FILE ), array(), monsterinsights_get_asset_version() );
109
- wp_enqueue_style( 'monsterinsights-vue-style-common', plugins_url( $version_path . '/assets/vue/css/chunk-common' . $rtl . '.css', MONSTERINSIGHTS_PLUGIN_FILE ), array(), monsterinsights_get_asset_version() );
110
- wp_enqueue_style( 'monsterinsights-vue-style', plugins_url( $version_path . '/assets/vue/css/settings' . $rtl . '.css', MONSTERINSIGHTS_PLUGIN_FILE ), array(), monsterinsights_get_asset_version() );
111
  }
112
 
113
  // Don't load other styles on the settings page.
114
  return;
115
  }
116
 
117
- if ( monsterinsights_is_reports_page() ) {
118
- if ( ! defined( 'MONSTERINSIGHTS_LOCAL_REPORTS_JS_URL' ) ) {
119
- wp_enqueue_style( 'monsterinsights-vue-style-vendors', plugins_url( $version_path . '/assets/vue/css/chunk-vendors' . $rtl . '.css', MONSTERINSIGHTS_PLUGIN_FILE ), array(), monsterinsights_get_asset_version() );
120
- wp_enqueue_style( 'monsterinsights-vue-style-common', plugins_url( $version_path . '/assets/vue/css/chunk-common' . $rtl . '.css', MONSTERINSIGHTS_PLUGIN_FILE ), array(), monsterinsights_get_asset_version() );
121
- wp_enqueue_style( 'monsterinsights-vue-style', plugins_url( $version_path . '/assets/vue/css/reports' . $rtl . '.css', MONSTERINSIGHTS_PLUGIN_FILE ), array(), monsterinsights_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', 'monsterinsights_admin_styles' );
132
 
133
  /**
134
  * Loads scripts for all MonsterInsights-based Administration Screens.
@@ -138,21 +142,22 @@ add_action( 'admin_enqueue_scripts', 'monsterinsights_admin_styles' );
138
  * @access public
139
  *
140
  */
141
- function monsterinsights_admin_scripts() {
 
142
 
143
  // Our Common Admin JS.
144
- $suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
145
 
146
- wp_register_script( 'monsterinsights-admin-common-script', plugins_url( 'assets/js/admin-common' . $suffix . '.js', MONSTERINSIGHTS_PLUGIN_FILE ), array( 'jquery' ), monsterinsights_get_asset_version(), true );
147
 
148
- wp_enqueue_script( 'monsterinsights-admin-common-script' );
149
 
150
  wp_localize_script(
151
  'monsterinsights-admin-common-script',
152
  'monsterinsights_admin_common',
153
  array(
154
- 'ajax' => admin_url( 'admin-ajax.php' ),
155
- 'dismiss_notice_nonce' => wp_create_nonce( 'monsterinsights-dismiss-notice' ),
156
  )
157
  );
158
 
@@ -160,109 +165,109 @@ function monsterinsights_admin_scripts() {
160
  $screen = get_current_screen();
161
 
162
  // Bail if we're not on a MonsterInsights screen.
163
- if ( empty( $screen->id ) || strpos( $screen->id, 'monsterinsights' ) === false ) {
164
  return;
165
  }
166
 
167
  $version_path = monsterinsights_is_pro_version() ? 'pro' : 'lite';
168
 
169
  // For the settings page, load the Vue app.
170
- if ( monsterinsights_is_settings_page() ) {
171
- if ( ! defined( 'MONSTERINSIGHTS_LOCAL_VENDORS_JS_URL' ) ) {
172
- wp_enqueue_script( 'monsterinsights-vue-vendors', plugins_url( $version_path . '/assets/vue/js/chunk-vendors.js', MONSTERINSIGHTS_PLUGIN_FILE ), array(), monsterinsights_get_asset_version(), true );
173
- wp_enqueue_script( 'monsterinsights-vue-common', plugins_url( $version_path . '/assets/vue/js/chunk-common.js', MONSTERINSIGHTS_PLUGIN_FILE ), array(), monsterinsights_get_asset_version(), true );
174
  } else {
175
- wp_enqueue_script( 'monsterinsights-vue-vendors', MONSTERINSIGHTS_LOCAL_VENDORS_JS_URL, array(), monsterinsights_get_asset_version(), true );
176
- wp_enqueue_script( 'monsterinsights-vue-common', MONSTERINSIGHTS_LOCAL_COMMON_JS_URL, array(), monsterinsights_get_asset_version(), true );
177
  }
178
- $app_js_url = defined( 'MONSTERINSIGHTS_LOCAL_JS_URL' ) && MONSTERINSIGHTS_LOCAL_JS_URL ? MONSTERINSIGHTS_LOCAL_JS_URL : plugins_url( $version_path . '/assets/vue/js/settings.js', MONSTERINSIGHTS_PLUGIN_FILE );
179
- wp_register_script( 'monsterinsights-vue-script', $app_js_url, array(), monsterinsights_get_asset_version(), true );
180
- wp_enqueue_script( 'monsterinsights-vue-script' );
181
  $plugins = get_plugins();
182
  $install_amp_url = false;
183
- if ( monsterinsights_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 ( monsterinsights_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 ( monsterinsights_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( 'MonsterInsights_Admin_Custom_Dimensions' ) ) {
212
  $dimensions = new MonsterInsights_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 = ( MonsterInsights()->auth->is_authed() || MonsterInsights()->auth->is_network_authed() );
221
 
222
  wp_localize_script(
223
  'monsterinsights-vue-script',
224
  'monsterinsights',
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( monsterinsights_is_pro_version() ? 'ga-premium' : 'google-analytics-for-wordpress' ),
230
- 'assets' => plugins_url( $version_path . '/assets/vue', MONSTERINSIGHTS_PLUGIN_FILE ),
231
  'roles' => monsterinsights_get_roles(),
232
  'roles_manage_options' => monsterinsights_get_manage_options_roles(),
233
  'shareasale_id' => monsterinsights_get_shareasale_id(),
234
- 'shareasale_url' => monsterinsights_get_shareasale_url( monsterinsights_get_shareasale_id(), '' ),
235
- 'addons_url' => is_multisite() ? network_admin_url( 'admin.php?page=monsterinsights_network#/addons' ) : admin_url( 'admin.php?page=monsterinsights_settings#/addons' ),
236
- 'seo_settings_page_url' => is_multisite() ? network_admin_url( 'admin.php?page=monsterinsights_network#/seo' ) : admin_url( 'admin.php?page=monsterinsights_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?monsterinsights_email_preview&monsterinsights_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=monsterinsights-onboarding' ) : admin_url( 'index.php?page=monsterinsights-onboarding' ),
245
  'install_plugins' => monsterinsights_can_install_plugins(),
246
- 'unfiltered_html' => current_user_can( 'unfiltered_html' ),
247
- 'activate_nonce' => wp_create_nonce( 'monsterinsights-activate' ),
248
- 'deactivate_nonce' => wp_create_nonce( 'monsterinsights-deactivate' ),
249
- 'install_nonce' => wp_create_nonce( 'monsterinsights-install' ),
250
  // Used to add notices for future deprecations.
251
  'versions' => monsterinsights_get_php_wp_version_warning_data(),
252
  'plugin_version' => MONSTERINSIGHTS_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', 'monsterinsights_reports', admin_url( 'admin.php' ) ),
257
- 'ecommerce_report_url' => add_query_arg( 'page', 'monsterinsights_reports#/ecommerce', admin_url( 'admin.php' ) ),
258
- 'ecommerce_settings_tab_url' => add_query_arg( 'page', 'monsterinsights_settings#/ecommerce', admin_url( 'admin.php' ) ),
259
- 'first_run_notice' => apply_filters( 'monsterinsights_settings_first_time_notice_hide', monsterinsights_get_option( 'monsterinsights_first_run_notice' ) ),
260
- 'getting_started_url' => is_network_admin() ? network_admin_url( 'admin.php?page=monsterinsights_network#/about' ) : admin_url( 'admin.php?page=monsterinsights_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' => monsterinsights_load_gutenberg_app() ? 'true' : 'false',
265
- 'exit_url' => add_query_arg( 'page', 'monsterinsights_settings', admin_url( 'admin.php' ) ),
266
  )
267
  );
268
 
@@ -270,18 +275,18 @@ function monsterinsights_admin_scripts() {
270
  return;
271
  }
272
 
273
- if ( monsterinsights_is_reports_page() ) {
274
  global $wp_version;
275
- if ( ! defined( 'MONSTERINSIGHTS_LOCAL_VENDORS_JS_URL' ) ) {
276
- wp_enqueue_script( 'monsterinsights-vue-vendors', plugins_url( $version_path . '/assets/vue/js/chunk-vendors.js', MONSTERINSIGHTS_PLUGIN_FILE ), array(), monsterinsights_get_asset_version(), true );
277
- wp_enqueue_script( 'monsterinsights-vue-common', plugins_url( $version_path . '/assets/vue/js/chunk-common.js', MONSTERINSIGHTS_PLUGIN_FILE ), array(), monsterinsights_get_asset_version(), true );
278
  } else {
279
- wp_enqueue_script( 'monsterinsights-vue-vendors', MONSTERINSIGHTS_LOCAL_VENDORS_JS_URL, array(), monsterinsights_get_asset_version(), true );
280
- wp_enqueue_script( 'monsterinsights-vue-common', MONSTERINSIGHTS_LOCAL_COMMON_JS_URL, array(), monsterinsights_get_asset_version(), true );
281
  }
282
- $app_js_url = defined( 'MONSTERINSIGHTS_LOCAL_REPORTS_JS_URL' ) && MONSTERINSIGHTS_LOCAL_REPORTS_JS_URL ? MONSTERINSIGHTS_LOCAL_REPORTS_JS_URL : plugins_url( $version_path . '/assets/vue/js/reports.js', MONSTERINSIGHTS_PLUGIN_FILE );
283
- wp_register_script( 'monsterinsights-vue-reports', $app_js_url, array(), monsterinsights_get_asset_version(), true );
284
- wp_enqueue_script( 'monsterinsights-vue-reports' );
285
 
286
  // We do not have a current auth.
287
  $auth = MonsterInsights()->auth;
@@ -292,30 +297,31 @@ function monsterinsights_admin_scripts() {
292
  'monsterinsights-vue-reports',
293
  'monsterinsights',
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( monsterinsights_is_pro_version() ? 'ga-premium' : 'google-analytics-for-wordpress' ),
299
- 'assets' => plugins_url( $version_path . '/assets/vue', MONSTERINSIGHTS_PLUGIN_FILE ),
300
  'shareasale_id' => monsterinsights_get_shareasale_id(),
301
- 'shareasale_url' => monsterinsights_get_shareasale_url( monsterinsights_get_shareasale_id(), '' ),
302
- 'addons_url' => is_multisite() ? network_admin_url( 'admin.php?page=monsterinsights_network#/addons' ) : admin_url( 'admin.php?page=monsterinsights_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', 'monsterinsights_settings', admin_url( 'admin.php' ) ),
307
  // Used to add notices for future deprecations.
308
  'versions' => monsterinsights_get_php_wp_version_warning_data(),
309
  'plugin_version' => MONSTERINSIGHTS_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=monsterinsights-onboarding' ) : admin_url( 'index.php?page=monsterinsights-onboarding' ),
314
- 'install_nonce' => wp_create_nonce( 'monsterinsights-install' ),
315
- 'activate_nonce' => wp_create_nonce( 'monsterinsights-activate' ),
316
- 'deactivate_nonce' => wp_create_nonce( 'monsterinsights-deactivate' ),
317
- 'update_settings' => current_user_can( 'monsterinsights_save_settings' ),
318
- 'migrated' => monsterinsights_get_option( 'gadwp_migrated', 0 ),
 
319
  )
320
  );
321
 
@@ -323,10 +329,10 @@ function monsterinsights_admin_scripts() {
323
  }
324
 
325
  // ublock notice
326
- add_action( 'admin_print_footer_scripts', 'monsterinsights_settings_ublock_error_js', 9999999 );
327
  }
328
 
329
- add_action( 'admin_enqueue_scripts', 'monsterinsights_admin_scripts' );
330
 
331
  /**
332
  * Remove Assets that conflict with ours from our screens.
@@ -336,13 +342,14 @@ add_action( 'admin_enqueue_scripts', 'monsterinsights_admin_scripts' );
336
  * @access public
337
  *
338
  */
339
- function monsterinsights_remove_conflicting_asset_files() {
 
340
 
341
  // Get current screen.
342
  $screen = get_current_screen();
343
 
344
  // Bail if we're not on a MonsterInsights screen.
345
- if ( empty( $screen->id ) || strpos( $screen->id, 'monsterinsights' ) === false ) {
346
  return;
347
  }
348
 
@@ -479,16 +486,16 @@ function monsterinsights_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 monsterinsights_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, 'monsterinsights' ) !== 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, 'monsterinsights' ) !== 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 monsterinsights_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', 'monsterinsights_remove_conflicting_asset_files', 9999 );
601
 
602
  /**
603
  * Remove non-MI notices from MI page.
@@ -607,67 +614,68 @@ add_action( 'admin_enqueue_scripts', 'monsterinsights_remove_conflicting_asset_f
607
  * @access public
608
  *
609
  */
610
- function hide_non_monsterinsights_warnings() {
 
611
  // Bail if we're not on a MonsterInsights screen.
612
- if ( empty( $_REQUEST['page'] ) || strpos( $_REQUEST['page'], 'monsterinsights' ) === 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] ) ), 'monsterinsights' ) !== false ) {
625
  continue;
626
  }
627
- if ( ! empty( $name ) && strpos( $name, 'monsterinsights' ) === 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] ) ), 'monsterinsights' ) !== false ) {
642
  continue;
643
  }
644
- if ( ! empty( $name ) && strpos( $name, 'monsterinsights' ) === 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] ) ), 'monsterinsights' ) !== false ) {
659
  continue;
660
  }
661
- if ( ! empty( $name ) && strpos( $name, 'monsterinsights' ) === 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_monsterinsights_warnings' );
670
- add_action( 'admin_head', 'hide_non_monsterinsights_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_monsterinsights_warnings', PHP_INT_MAX );
688
  * @access public
689
  *
690
  */
691
- function monsterinsights_get_upgrade_link( $medium = '', $campaign = '', $url = '' ) {
692
- $url = monsterinsights_get_url( $medium, $campaign, $url, false );
 
693
 
694
- if ( monsterinsights_is_pro_version() ) {
695
- return esc_url( $url );
696
  }
697
 
698
  // Get the ShareASale ID
699
  $shareasale_id = monsterinsights_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( monsterinsights_get_shareasale_url( $shareasale_id, $url ) );
706
  } else {
707
- return esc_url( $url );
708
  }
709
  }
710
 
711
- function monsterinsights_get_url( $medium = '', $campaign = '', $url = '', $escape = true ) {
 
712
  // Setup Campaign variables
713
  $source = monsterinsights_is_pro_version() ? 'proplugin' : 'liteplugin';
714
- $medium = ! empty( $medium ) ? $medium : 'defaultmedium';
715
- $campaign = ! empty( $campaign ) ? $campaign : 'defaultcampaign';
716
  $content = MONSTERINSIGHTS_VERSION;
717
  $default_url = monsterinsights_is_pro_version() ? '' : 'lite/';
718
- $url = ! empty( $url ) ? $url : 'https://www.monsterinsights.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 MonsterInsights (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 monsterinsights_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 monsterinsights_settings_ublock_error_js() {
750
  echo "\n</script>";
751
  }
752
 
753
- function monsterinsights_ublock_notice() {
 
754
  ob_start(); ?>
755
  <div id="monsterinsights-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__( 'MonsterInsights 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 MonsterInsights. To solve this, ensure MonsterInsights 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-for-wordpress' ), '<a href="https://monsterinsights.com/docs/monsterinsights-asset-files-blocked/" target="_blank" rel="noopener noreferrer" referrer="no-referrer">', '</a>', '<a href="https://monsterinsights.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 monsterinsights_remove_unnecessary_footer_hooks() {
 
769
 
770
  $screen = get_current_screen();
771
  // Bail if we're not on a MonsterInsights screen.
772
- if ( empty( $screen->id ) || strpos( $screen->id, 'monsterinsights' ) === 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', 'monsterinsights_remove_unnecessary_footer_hooks', 15 );
816
 
817
 
818
  /**
@@ -824,112 +837,114 @@ add_action( 'admin_head', 'monsterinsights_remove_unnecessary_footer_hooks', 15
824
  *
825
  * @return string
826
  */
827
- function monsterinsights_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, 'monsterinsights' ) || false !== strpos( $src, 'google-analytics-for-wordpress' ) || false !== strpos( $src, 'google-analytics-premium' ) ) && false === strpos( $src, '?ver' ) ) {
835
- $src = add_query_arg( 'ver', monsterinsights_get_asset_version(), $src );
836
  }
837
 
838
  return $src;
839
  }
840
 
841
- add_filter( 'script_loader_src', 'monsterinsights_prevent_version_number_removal', 9999, 1 );
842
- add_filter( 'style_loader_src', 'monsterinsights_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 monsterinsights_get_php_wp_version_warning_data() {
 
848
  global $wp_version;
849
 
850
- $compatible_php_version = apply_filters( 'monsterinsights_compatible_php_version', false );
851
- $compatible_wp_version = apply_filters( 'monsterinsights_compatible_wp_version', false );
852
 
853
  return array(
854
  'php_version' => phpversion(),
855
- 'php_version_below_54' => apply_filters( 'monsterinsights_temporarily_hide_php_under_56_upgrade_warnings', version_compare( phpversion(), $compatible_php_version['warning'], '<' ) ),
856
- 'php_version_below_56' => apply_filters( 'monsterinsights_temporarily_hide_php_56_upgrade_warnings', version_compare( phpversion(), $compatible_php_version['warning'], '>=' ) && version_compare( phpversion(), $compatible_php_version['recommended'], '<' ) ),
857
- 'php_update_link' => monsterinsights_get_url( 'settings-notice', 'settings-page', 'https://www.monsterinsights.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' => monsterinsights_get_url( 'settings-notice', 'settings-page', 'https://www.monsterinsights.com/docs/update-wordpress/' ),
862
  );
863
  }
864
 
865
  /**
866
  * Check WP and PHP version and add contextual notifications for upgrades.
867
  */
868
- function monsterinsights_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-for-wordpress' );
878
- if ( $needs_wp_warning ) {
879
- $notification['title'] = __( 'ACTION REQUIRED: Speed your website up 400% with a single email!', 'google-analytics-for-wordpress' );
880
  }
881
 
882
- $php_url = monsterinsights_get_url( 'notifications', 'upgrade-php', 'https://www.monsterinsights.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 MonsterInsights 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-for-wordpress' ), phpversion() ) . "\n\n";
887
 
888
  // Translators: Placeholders add a link to an article.
889
- $notification['content'] .= sprintf( esc_html__( 'To ensure MonsterInsights 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-for-wordpress' ), '<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-for-wordpress' );
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-for-wordpress' ),
897
  ),
898
  );
899
 
900
  // Add the notification.
901
- MonsterInsights()->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=monsterinsights&utm_medium=notifications&utm_campaign=upgradewp';
906
- $wpbeginner_url = monsterinsights_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-for-wordpress' );
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 MonsterInsights 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-for-wordpress' ), $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-for-wordpress' );
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-for-wordpress' ), '<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-for-wordpress' ),
923
  ),
924
  );
925
 
926
  // Add the notification.
927
- MonsterInsights()->notifications->add( $notification );
928
  }
929
-
930
  }
931
 
932
- add_action( 'admin_init', 'monsterinsights_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', 'monsterinsights_maybe_add_wp_php_version_notification
938
  * @since 7.13.2
939
  *
940
  */
941
- function monsterinsights_year_in_review_notification() {
 
942
 
943
  // Check if dates are between Jan 1st 2022 & 13th Jan 2022.
944
- if ( monsterinsights_date_is_between( '2022-01-01', '2022-01-14' ) ) {
945
 
946
  $notification['id'] = 'monsterinsights_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-for-wordpress' );
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-for-wordpress' );
952
  $notification['btns'] = array(
953
  'learn_more' => array(
954
- 'url' => esc_url( admin_url( 'admin.php?page=monsterinsights_reports#/year-in-review' ) ),
955
- 'text' => esc_html__( 'Learn More', 'google-analytics-for-wordpress' ),
956
  ),
957
  );
958
 
959
  // Add the notification.
960
- MonsterInsights()->notifications->add( $notification );
961
  }
962
  }
963
 
964
- add_action( 'admin_init', 'monsterinsights_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 monsterinsights_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['monsterinsights_settings']) && $current_screen->id === $admin_page_hooks['monsterinsights_settings']) {
29
  $settings_page = true;
30
  }
31
 
32
+ if ($current_screen->id === 'toplevel_page_monsterinsights_settings') {
33
  $settings_page = true;
34
  }
35
 
36
+ if ($current_screen->id === 'insights_page_monsterinsights_settings') {
37
  $settings_page = true;
38
  }
39
 
40
+ if (strpos($current_screen->id, 'monsterinsights_settings') !== false) {
41
  $settings_page = true;
42
  }
43
 
44
+ if (!empty($current_screen->base) && strpos($current_screen->base, 'monsterinsights_network') !== false) {
45
  $settings_page = true;
46
  }
47
 
53
  *
54
  * @return bool
55
  */
56
+ function monsterinsights_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['monsterinsights_reports']) && $current_screen->id === $admin_page_hooks['monsterinsights_reports']) {
67
  $reports_page = true;
68
  }
69
 
70
+ if ('toplevel_page_monsterinsights_reports' === $current_screen->id) {
71
  $reports_page = true;
72
  }
73
 
74
+ if (strpos($current_screen->id, 'monsterinsights_reports') !== false) {
75
  $reports_page = true;
76
  }
77
 
86
  * @access public
87
  *
88
  */
89
+ function monsterinsights_admin_styles()
90
+ {
91
 
92
+ $suffix = (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG) ? '' : '.min';
93
 
94
  // Load Common admin styles.
95
+ wp_register_style('monsterinsights-admin-common-style', plugins_url('assets/css/admin-common' . $suffix . '.css', MONSTERINSIGHTS_PLUGIN_FILE), array(), monsterinsights_get_asset_version());
96
+ wp_enqueue_style('monsterinsights-admin-common-style');
97
 
98
  // Get current screen.
99
  $screen = get_current_screen();
100
 
101
  // Bail if we're not on a MonsterInsights screen.
102
+ if (empty($screen->id) || strpos($screen->id, 'monsterinsights') === false) {
103
  return;
104
  }
105
 
107
  $rtl = is_rtl() ? '.rtl' : '';
108
 
109
  // For the settings page, load the Vue app styles.
110
+ if (monsterinsights_is_settings_page()) {
111
+ if (!defined('MONSTERINSIGHTS_LOCAL_JS_URL')) {
112
+ wp_enqueue_style('monsterinsights-vue-style-vendors', plugins_url($version_path . '/assets/vue/css/chunk-vendors' . $rtl . '.css', MONSTERINSIGHTS_PLUGIN_FILE), array(), monsterinsights_get_asset_version());
113
+ wp_enqueue_style('monsterinsights-vue-style-common', plugins_url($version_path . '/assets/vue/css/chunk-common' . $rtl . '.css', MONSTERINSIGHTS_PLUGIN_FILE), array(), monsterinsights_get_asset_version());
114
+ wp_enqueue_style('monsterinsights-vue-style', plugins_url($version_path . '/assets/vue/css/settings' . $rtl . '.css', MONSTERINSIGHTS_PLUGIN_FILE), array(), monsterinsights_get_asset_version());
115
  }
116
 
117
  // Don't load other styles on the settings page.
118
  return;
119
  }
120
 
121
+ if (monsterinsights_is_reports_page()) {
122
+ if (!defined('MONSTERINSIGHTS_LOCAL_REPORTS_JS_URL')) {
123
+ wp_enqueue_style('monsterinsights-vue-style-vendors', plugins_url($version_path . '/assets/vue/css/chunk-vendors' . $rtl . '.css', MONSTERINSIGHTS_PLUGIN_FILE), array(), monsterinsights_get_asset_version());
124
+ wp_enqueue_style('monsterinsights-vue-style-common', plugins_url($version_path . '/assets/vue/css/chunk-common' . $rtl . '.css', MONSTERINSIGHTS_PLUGIN_FILE), array(), monsterinsights_get_asset_version());
125
+ wp_enqueue_style('monsterinsights-vue-style', plugins_url($version_path . '/assets/vue/css/reports' . $rtl . '.css', MONSTERINSIGHTS_PLUGIN_FILE), array(), monsterinsights_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', 'monsterinsights_admin_styles');
136
 
137
  /**
138
  * Loads scripts for all MonsterInsights-based Administration Screens.
142
  * @access public
143
  *
144
  */
145
+ function monsterinsights_admin_scripts()
146
+ {
147
 
148
  // Our Common Admin JS.
149
+ $suffix = (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG) ? '' : '.min';
150
 
151
+ wp_register_script('monsterinsights-admin-common-script', plugins_url('assets/js/admin-common' . $suffix . '.js', MONSTERINSIGHTS_PLUGIN_FILE), array('jquery'), monsterinsights_get_asset_version(), true);
152
 
153
+ wp_enqueue_script('monsterinsights-admin-common-script');
154
 
155
  wp_localize_script(
156
  'monsterinsights-admin-common-script',
157
  'monsterinsights_admin_common',
158
  array(
159
+ 'ajax' => admin_url('admin-ajax.php'),
160
+ 'dismiss_notice_nonce' => wp_create_nonce('monsterinsights-dismiss-notice'),
161
  )
162
  );
163
 
165
  $screen = get_current_screen();
166
 
167
  // Bail if we're not on a MonsterInsights screen.
168
+ if (empty($screen->id) || strpos($screen->id, 'monsterinsights') === false) {
169
  return;
170
  }
171
 
172
  $version_path = monsterinsights_is_pro_version() ? 'pro' : 'lite';
173
 
174
  // For the settings page, load the Vue app.
175
+ if (monsterinsights_is_settings_page()) {
176
+ if (!defined('MONSTERINSIGHTS_LOCAL_VENDORS_JS_URL')) {
177
+ wp_enqueue_script('monsterinsights-vue-vendors', plugins_url($version_path . '/assets/vue/js/chunk-vendors.js', MONSTERINSIGHTS_PLUGIN_FILE), array(), monsterinsights_get_asset_version(), true);
178
+ wp_enqueue_script('monsterinsights-vue-common', plugins_url($version_path . '/assets/vue/js/chunk-common.js', MONSTERINSIGHTS_PLUGIN_FILE), array(), monsterinsights_get_asset_version(), true);
179
  } else {
180
+ wp_enqueue_script('monsterinsights-vue-vendors', MONSTERINSIGHTS_LOCAL_VENDORS_JS_URL, array(), monsterinsights_get_asset_version(), true);
181
+ wp_enqueue_script('monsterinsights-vue-common', MONSTERINSIGHTS_LOCAL_COMMON_JS_URL, array(), monsterinsights_get_asset_version(), true);
182
  }
183
+ $app_js_url = defined('MONSTERINSIGHTS_LOCAL_JS_URL') && MONSTERINSIGHTS_LOCAL_JS_URL ? MONSTERINSIGHTS_LOCAL_JS_URL : plugins_url($version_path . '/assets/vue/js/settings.js', MONSTERINSIGHTS_PLUGIN_FILE);
184
+ wp_register_script('monsterinsights-vue-script', $app_js_url, array(), monsterinsights_get_asset_version(), true);
185
+ wp_enqueue_script('monsterinsights-vue-script');
186
  $plugins = get_plugins();
187
  $install_amp_url = false;
188
+ if (monsterinsights_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 (monsterinsights_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 (monsterinsights_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('MonsterInsights_Admin_Custom_Dimensions')) {
217
  $dimensions = new MonsterInsights_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 = (MonsterInsights()->auth->is_authed() || MonsterInsights()->auth->is_network_authed());
226
 
227
  wp_localize_script(
228
  'monsterinsights-vue-script',
229
  'monsterinsights',
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(monsterinsights_is_pro_version() ? 'ga-premium' : 'google-analytics-for-wordpress'),
235
+ 'assets' => plugins_url($version_path . '/assets/vue', MONSTERINSIGHTS_PLUGIN_FILE),
236
  'roles' => monsterinsights_get_roles(),
237
  'roles_manage_options' => monsterinsights_get_manage_options_roles(),
238
  'shareasale_id' => monsterinsights_get_shareasale_id(),
239
+ 'shareasale_url' => monsterinsights_get_shareasale_url(monsterinsights_get_shareasale_id(), ''),
240
+ 'addons_url' => is_multisite() ? network_admin_url('admin.php?page=monsterinsights_network#/addons') : admin_url('admin.php?page=monsterinsights_settings#/addons'),
241
+ 'seo_settings_page_url' => is_multisite() ? network_admin_url('admin.php?page=monsterinsights_network#/seo') : admin_url('admin.php?page=monsterinsights_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?monsterinsights_email_preview&monsterinsights_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=monsterinsights-onboarding') : admin_url('index.php?page=monsterinsights-onboarding'),
250
  'install_plugins' => monsterinsights_can_install_plugins(),
251
+ 'unfiltered_html' => current_user_can('unfiltered_html'),
252
+ 'activate_nonce' => wp_create_nonce('monsterinsights-activate'),
253
+ 'deactivate_nonce' => wp_create_nonce('monsterinsights-deactivate'),
254
+ 'install_nonce' => wp_create_nonce('monsterinsights-install'),
255
  // Used to add notices for future deprecations.
256
  'versions' => monsterinsights_get_php_wp_version_warning_data(),
257
  'plugin_version' => MONSTERINSIGHTS_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', 'monsterinsights_reports', admin_url('admin.php')),
262
+ 'ecommerce_report_url' => add_query_arg('page', 'monsterinsights_reports#/ecommerce', admin_url('admin.php')),
263
+ 'ecommerce_settings_tab_url' => add_query_arg('page', 'monsterinsights_settings#/ecommerce', admin_url('admin.php')),
264
+ 'first_run_notice' => apply_filters('monsterinsights_settings_first_time_notice_hide', monsterinsights_get_option('monsterinsights_first_run_notice')),
265
+ 'getting_started_url' => is_network_admin() ? network_admin_url('admin.php?page=monsterinsights_network#/about') : admin_url('admin.php?page=monsterinsights_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' => monsterinsights_load_gutenberg_app() ? 'true' : 'false',
270
+ 'exit_url' => add_query_arg('page', 'monsterinsights_settings', admin_url('admin.php')),
271
  )
272
  );
273
 
275
  return;
276
  }
277
 
278
+ if (monsterinsights_is_reports_page()) {
279
  global $wp_version;
280
+ if (!defined('MONSTERINSIGHTS_LOCAL_VENDORS_JS_URL')) {
281
+ wp_enqueue_script('monsterinsights-vue-vendors', plugins_url($version_path . '/assets/vue/js/chunk-vendors.js', MONSTERINSIGHTS_PLUGIN_FILE), array(), monsterinsights_get_asset_version(), true);
282
+ wp_enqueue_script('monsterinsights-vue-common', plugins_url($version_path . '/assets/vue/js/chunk-common.js', MONSTERINSIGHTS_PLUGIN_FILE), array(), monsterinsights_get_asset_version(), true);
283
  } else {
284
+ wp_enqueue_script('monsterinsights-vue-vendors', MONSTERINSIGHTS_LOCAL_VENDORS_JS_URL, array(), monsterinsights_get_asset_version(), true);
285
+ wp_enqueue_script('monsterinsights-vue-common', MONSTERINSIGHTS_LOCAL_COMMON_JS_URL, array(), monsterinsights_get_asset_version(), true);
286
  }
287
+ $app_js_url = defined('MONSTERINSIGHTS_LOCAL_REPORTS_JS_URL') && MONSTERINSIGHTS_LOCAL_REPORTS_JS_URL ? MONSTERINSIGHTS_LOCAL_REPORTS_JS_URL : plugins_url($version_path . '/assets/vue/js/reports.js', MONSTERINSIGHTS_PLUGIN_FILE);
288
+ wp_register_script('monsterinsights-vue-reports', $app_js_url, array(), monsterinsights_get_asset_version(), true);
289
+ wp_enqueue_script('monsterinsights-vue-reports');
290
 
291
  // We do not have a current auth.
292
  $auth = MonsterInsights()->auth;
297
  'monsterinsights-vue-reports',
298
  'monsterinsights',
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(monsterinsights_is_pro_version() ? 'ga-premium' : 'google-analytics-for-wordpress'),
304
+ 'assets' => plugins_url($version_path . '/assets/vue', MONSTERINSIGHTS_PLUGIN_FILE),
305
  'shareasale_id' => monsterinsights_get_shareasale_id(),
306
+ 'shareasale_url' => monsterinsights_get_shareasale_url(monsterinsights_get_shareasale_id(), ''),
307
+ 'addons_url' => is_multisite() ? network_admin_url('admin.php?page=monsterinsights_network#/addons') : admin_url('admin.php?page=monsterinsights_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', 'monsterinsights_settings', admin_url('admin.php')),
312
  // Used to add notices for future deprecations.
313
  'versions' => monsterinsights_get_php_wp_version_warning_data(),
314
  'plugin_version' => MONSTERINSIGHTS_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=monsterinsights-onboarding') : admin_url('index.php?page=monsterinsights-onboarding'),
319
+ 'install_nonce' => wp_create_nonce('monsterinsights-install'),
320
+ 'activate_nonce' => wp_create_nonce('monsterinsights-activate'),
321
+ 'deactivate_nonce' => wp_create_nonce('monsterinsights-deactivate'),
322
+ 'update_settings' => current_user_can('monsterinsights_save_settings'),
323
+ 'migrated' => monsterinsights_get_option('gadwp_migrated', 0),
324
+ 'yearinreview' => monsterinsights_yearinreview_dates(),
325
  )
326
  );
327
 
329
  }
330
 
331
  // ublock notice
332
+ add_action('admin_print_footer_scripts', 'monsterinsights_settings_ublock_error_js', 9999999);
333
  }
334
 
335
+ add_action('admin_enqueue_scripts', 'monsterinsights_admin_scripts');
336
 
337
  /**
338
  * Remove Assets that conflict with ours from our screens.
342
  * @access public
343
  *
344
  */
345
+ function monsterinsights_remove_conflicting_asset_files()
346
+ {
347
 
348
  // Get current screen.
349
  $screen = get_current_screen();
350
 
351
  // Bail if we're not on a MonsterInsights screen.
352
+ if (empty($screen->id) || strpos($screen->id, 'monsterinsights') === 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, 'monsterinsights') !== 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, 'monsterinsights') !== 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', 'monsterinsights_remove_conflicting_asset_files', 9999);
608
 
609
  /**
610
  * Remove non-MI notices from MI page.
614
  * @access public
615
  *
616
  */
617
+ function hide_non_monsterinsights_warnings()
618
+ {
619
  // Bail if we're not on a MonsterInsights screen.
620
+ if (empty($_REQUEST['page']) || strpos($_REQUEST['page'], 'monsterinsights') === 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])), 'monsterinsights') !== false) {
633
  continue;
634
  }
635
+ if (!empty($name) && strpos($name, 'monsterinsights') === 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])), 'monsterinsights') !== false) {
650
  continue;
651
  }
652
+ if (!empty($name) && strpos($name, 'monsterinsights') === 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])), 'monsterinsights') !== false) {
667
  continue;
668
  }
669
+ if (!empty($name) && strpos($name, 'monsterinsights') === 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_monsterinsights_warnings');
678
+ add_action('admin_head', 'hide_non_monsterinsights_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 monsterinsights_get_upgrade_link($medium = '', $campaign = '', $url = '')
700
+ {
701
+ $url = monsterinsights_get_url($medium, $campaign, $url, false);
702
 
703
+ if (monsterinsights_is_pro_version()) {
704
+ return esc_url($url);
705
  }
706
 
707
  // Get the ShareASale ID
708
  $shareasale_id = monsterinsights_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(monsterinsights_get_shareasale_url($shareasale_id, $url));
715
  } else {
716
+ return esc_url($url);
717
  }
718
  }
719
 
720
+ function monsterinsights_get_url($medium = '', $campaign = '', $url = '', $escape = true)
721
+ {
722
  // Setup Campaign variables
723
  $source = monsterinsights_is_pro_version() ? 'proplugin' : 'liteplugin';
724
+ $medium = !empty($medium) ? $medium : 'defaultmedium';
725
+ $campaign = !empty($campaign) ? $campaign : 'defaultcampaign';
726
  $content = MONSTERINSIGHTS_VERSION;
727
  $default_url = monsterinsights_is_pro_version() ? '' : 'lite/';
728
+ $url = !empty($url) ? $url : 'https://www.monsterinsights.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 MonsterInsights (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 monsterinsights_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 monsterinsights_ublock_notice()
765
+ {
766
  ob_start(); ?>
767
  <div id="monsterinsights-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__('MonsterInsights 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 MonsterInsights. To solve this, ensure MonsterInsights 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-for-wordpress'), '<a href="https://monsterinsights.com/docs/monsterinsights-asset-files-blocked/" target="_blank" rel="noopener noreferrer" referrer="no-referrer">', '</a>', '<a href="https://monsterinsights.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 monsterinsights_remove_unnecessary_footer_hooks()
781
+ {
782
 
783
  $screen = get_current_screen();
784
  // Bail if we're not on a MonsterInsights screen.
785
+ if (empty($screen->id) || strpos($screen->id, 'monsterinsights') === 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', 'monsterinsights_remove_unnecessary_footer_hooks', 15);
829
 
830
 
831
  /**
837
  *
838
  * @return string
839
  */
840
+ function monsterinsights_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, 'monsterinsights') || false !== strpos($src, 'google-analytics-for-wordpress') || false !== strpos($src, 'google-analytics-premium')) && false === strpos($src, '?ver')) {
849
+ $src = add_query_arg('ver', monsterinsights_get_asset_version(), $src);
850
  }
851
 
852
  return $src;
853
  }
854
 
855
+ add_filter('script_loader_src', 'monsterinsights_prevent_version_number_removal', 9999, 1);
856
+ add_filter('style_loader_src', 'monsterinsights_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 monsterinsights_get_php_wp_version_warning_data()
862
+ {
863
  global $wp_version;
864
 
865
+ $compatible_php_version = apply_filters('monsterinsights_compatible_php_version', false);
866
+ $compatible_wp_version = apply_filters('monsterinsights_compatible_wp_version', false);
867
 
868
  return array(
869
  'php_version' => phpversion(),
870
+ 'php_version_below_54' => apply_filters('monsterinsights_temporarily_hide_php_under_56_upgrade_warnings', version_compare(phpversion(), $compatible_php_version['warning'], '<')),
871
+ 'php_version_below_56' => apply_filters('monsterinsights_temporarily_hide_php_56_upgrade_warnings', version_compare(phpversion(), $compatible_php_version['warning'], '>=') && version_compare(phpversion(), $compatible_php_version['recommended'], '<')),
872
+ 'php_update_link' => monsterinsights_get_url('settings-notice', 'settings-page', 'https://www.monsterinsights.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' => monsterinsights_get_url('settings-notice', 'settings-page', 'https://www.monsterinsights.com/docs/update-wordpress/'),
877
  );
878
  }
879
 
880
  /**
881
  * Check WP and PHP version and add contextual notifications for upgrades.
882
  */
883
+ function monsterinsights_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-for-wordpress');
894
+ if ($needs_wp_warning) {
895
+ $notification['title'] = __('ACTION REQUIRED: Speed your website up 400% with a single email!', 'google-analytics-for-wordpress');
896
  }
897
 
898
+ $php_url = monsterinsights_get_url('notifications', 'upgrade-php', 'https://www.monsterinsights.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 MonsterInsights 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-for-wordpress'), phpversion()) . "\n\n";
903
 
904
  // Translators: Placeholders add a link to an article.
905
+ $notification['content'] .= sprintf(esc_html__('To ensure MonsterInsights 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-for-wordpress'), '<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-for-wordpress');
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-for-wordpress'),
913
  ),
914
  );
915
 
916
  // Add the notification.
917
+ MonsterInsights()->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=monsterinsights&utm_medium=notifications&utm_campaign=upgradewp';
922
+ $wpbeginner_url = monsterinsights_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-for-wordpress');
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 MonsterInsights 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-for-wordpress'), $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-for-wordpress');
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-for-wordpress'), '<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-for-wordpress'),
939
  ),
940
  );
941
 
942
  // Add the notification.
943
+ MonsterInsights()->notifications->add($notification);
944
  }
 
945
  }
946
 
947
+ add_action('admin_init', 'monsterinsights_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 monsterinsights_year_in_review_notification()
957
+ {
958
 
959
  // Check if dates are between Jan 1st 2022 & 13th Jan 2022.
960
+ if (monsterinsights_date_is_between('2022-01-01', '2022-01-14')) {
961
 
962
  $notification['id'] = 'monsterinsights_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-for-wordpress');
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-for-wordpress');
968
  $notification['btns'] = array(
969
  'learn_more' => array(
970
+ 'url' => esc_url(admin_url('admin.php?page=monsterinsights_reports#/year-in-review')),
971
+ 'text' => esc_html__('Learn More', 'google-analytics-for-wordpress'),
972
  ),
973
  );
974
 
975
  // Add the notification.
976
+ MonsterInsights()->notifications->add($notification);
977
  }
978
  }
979
 
980
+ add_action('admin_init', 'monsterinsights_year_in_review_notification');
981
+
982
+
983
+ /**
984
+ * Dynamic dates for Year In Review report
985
+ */
986
+ function monsterinsights_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 monsterinsights_automatic_updates( $update, $item ) {
150
  $current_major = monsterinsights_get_major_version( $current_version );
151
  $new_major = monsterinsights_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 monsterinsights_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 monsterinsights_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 = monsterinsights_get_major_version( $current_version );
151
  $new_major = monsterinsights_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 MonsterInsights_Report {
177
  }
178
 
179
  if ( ( $start !== $this->default_start_date() || $end !== $this->default_end_date() ) && ! monsterinsights_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 MonsterInsights Pro to use custom date ranges.', 'google-analytics-for-wordpress' ),
177
  }
178
 
179
  if ( ( $start !== $this->default_start_date() || $end !== $this->default_end_date() ) && ! monsterinsights_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 MonsterInsights Pro to use custom date ranges.', 'google-analytics-for-wordpress' ),
includes/frontend/frontend.php CHANGED
@@ -117,7 +117,7 @@ add_filter( 'the_permalink_rss', 'monsterinsights_rss_link_tagger', 99 );
117
  * Checks used for loading the frontend scripts/admin bar button.
118
  */
119
  function monsterinsights_prevent_loading_frontend_reports() {
120
- return ! current_user_can( 'monsterinsights_view_dashboard' ) || monsterinsights_get_option( 'hide_admin_bar_reports' ) || function_exists( 'monsterinsights_is_reports_page' ) && monsterinsights_is_reports_page() || function_exists( 'monsterinsights_is_settings_page' ) && monsterinsights_is_settings_page();
121
  }
122
 
123
  /**
117
  * Checks used for loading the frontend scripts/admin bar button.
118
  */
119
  function monsterinsights_prevent_loading_frontend_reports() {
120
+ return ! current_user_can( 'monsterinsights_view_dashboard' ) || monsterinsights_get_option( 'hide_admin_bar_reports' );
121
  }
122
 
123
  /**
includes/helpers.php CHANGED
@@ -1257,7 +1257,7 @@ function monsterinsights_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-for-wordpress.pot CHANGED
@@ -2,16 +2,16 @@
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:09:11+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-for-wordpress\n"
16
 
17
  #. Plugin Name of the plugin
@@ -120,14 +120,14 @@ msgstr ""
120
  #: includes/admin/admin.php:127
121
  #: includes/admin/em-admin.php:19
122
  #: includes/admin/em-admin.php:22
123
- #: languages/vue.php:246
124
  msgid "Insights"
125
  msgstr ""
126
 
127
  #: includes/admin/admin.php:34
128
  #: includes/admin/admin.php:42
129
  #: includes/admin/admin.php:230
130
- #: languages/vue.php:523
131
  msgid "Settings"
132
  msgstr ""
133
 
@@ -153,7 +153,7 @@ msgstr ""
153
 
154
  #: includes/admin/admin.php:51
155
  #: languages/gutenberg.php:83
156
- #: languages/vue.php:883
157
  msgid "Popular Posts"
158
  msgstr ""
159
 
@@ -187,7 +187,7 @@ msgstr ""
187
 
188
  #: includes/admin/admin.php:71
189
  #: includes/admin/admin.php:147
190
- #: languages/vue.php:503
191
  msgid "About Us"
192
  msgstr ""
193
 
@@ -206,7 +206,7 @@ msgstr ""
206
  #: includes/admin/admin.php:76
207
  #: includes/admin/notifications/notification-upgrade-to-pro-high-traffic.php:41
208
  #: includes/admin/notifications/notification-upgrade-to-pro.php:33
209
- #: languages/vue.php:1413
210
  msgid "Upgrade to Pro"
211
  msgstr ""
212
 
@@ -234,7 +234,7 @@ msgstr ""
234
 
235
  #: includes/admin/admin.php:220
236
  #: includes/admin/admin.php:223
237
- #: languages/vue.php:908
238
  msgid "Support"
239
  msgstr ""
240
 
@@ -245,8 +245,8 @@ msgstr ""
245
  #: includes/admin/notifications/notification-upgrade-for-events-reporting.php:31
246
  #: includes/admin/notifications/notification-upgrade-for-google-optimize.php:32
247
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:31
248
- #: includes/admin/reports/abstract-report.php:458
249
- #: languages/vue.php:1410
250
  msgid "Get MonsterInsights Pro"
251
  msgstr ""
252
 
@@ -256,31 +256,31 @@ msgid "Please rate %1$sMonsterInsights%2$s on %3$s %4$sWordPress.org%5$s to help
256
  msgstr ""
257
 
258
  #: includes/admin/admin.php:335
259
- #: languages/vue.php:487
260
  msgid "Please Setup Website Analytics to See Audience Insights"
261
  msgstr ""
262
 
263
  #: includes/admin/admin.php:336
264
- #: languages/vue.php:493
265
  msgid "Connect MonsterInsights and Setup Website Analytics"
266
  msgstr ""
267
 
268
  #: includes/admin/admin.php:338
269
- #: includes/admin/common.php:896
270
- #: includes/admin/common.php:922
271
- #: includes/admin/common.php:955
272
  #: includes/admin/notifications/notification-audience.php:45
273
  #: includes/admin/notifications/notification-bounce-rate.php:47
274
  #: includes/admin/notifications/notification-headline-analyzer.php:39
275
  #: includes/admin/notifications/notification-mobile-device-low-traffic.php:41
276
  #: includes/admin/notifications/notification-returning-visitors.php:43
277
  #: includes/admin/notifications/notification-traffic-dropping.php:43
278
- #: languages/vue.php:440
279
  msgid "Learn More"
280
  msgstr ""
281
 
282
  #: includes/admin/admin.php:340
283
- #: languages/vue.php:490
284
  msgid "MonsterInsights, 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 MonsterInsights to see the stats that matter and grow their business."
285
  msgstr ""
286
 
@@ -291,18 +291,18 @@ msgstr ""
291
 
292
  #. Translators: Adds a link to the license renewal.
293
  #: includes/admin/admin.php:363
294
- #: languages/vue.php:712
295
  msgid "Your license key for MonsterInsights has expired. %1$sPlease click here to renew your license key.%2$s"
296
  msgstr ""
297
 
298
  #: includes/admin/admin.php:365
299
- #: languages/vue.php:715
300
  msgid "Your license key for MonsterInsights has been disabled. Please use a different key."
301
  msgstr ""
302
 
303
  #: includes/admin/admin.php:367
304
  #: includes/admin/api-auth.php:303
305
- #: languages/vue.php:718
306
  msgid "Your license key for MonsterInsights is invalid. The key no longer exists or the user associated with the key has been deleted. Please use a different key."
307
  msgstr ""
308
 
@@ -449,57 +449,57 @@ msgid "Oops! There has been an error while trying to deauthenticate. Please try
449
  msgstr ""
450
 
451
  #. Translators: Placeholders are for links to fix the issue.
452
- #: includes/admin/common.php:758
453
  msgid "MonsterInsights 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 MonsterInsights. To solve this, ensure MonsterInsights 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."
454
  msgstr ""
455
 
456
- #: includes/admin/common.php:877
457
  msgid "ACTION REQUIRED: Your PHP version is putting your site at risk!"
458
  msgstr ""
459
 
460
- #: includes/admin/common.php:879
461
  msgid "ACTION REQUIRED: Speed your website up 400% with a single email!"
462
  msgstr ""
463
 
464
  #. Translators: Placeholder is for the current PHP version.
465
- #: includes/admin/common.php:886
466
  msgid "In the next major release of MonsterInsights 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)."
467
  msgstr ""
468
 
469
  #. Translators: Placeholders add a link to an article.
470
- #: includes/admin/common.php:889
471
  msgid "To ensure MonsterInsights 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."
472
  msgstr ""
473
 
474
  #. Translators: Placeholders add a link to an article.
475
- #: includes/admin/common.php:890
476
  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!"
477
  msgstr ""
478
 
479
- #: includes/admin/common.php:909
480
  msgid "ACTION REQUIRED: Your WordPress version is putting your site at risk!"
481
  msgstr ""
482
 
483
  #. Translators: Placeholder is for the current WordPress version.
484
- #: includes/admin/common.php:912
485
  msgid "In the next major release of MonsterInsights 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!"
486
  msgstr ""
487
 
488
- #: includes/admin/common.php:914
489
  msgid "The good news: updating WordPress has never been easier and only takes a few moments."
490
  msgstr ""
491
 
492
  #. Translators: Placeholders add links to articles.
493
- #: includes/admin/common.php:916
494
  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."
495
  msgstr ""
496
 
497
- #: includes/admin/common.php:950
498
  msgid "View 2021 Year in Review report!"
499
  msgstr ""
500
 
501
- #: includes/admin/common.php:951
502
- #: languages/vue.php:3483
503
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2022!"
504
  msgstr ""
505
 
@@ -520,7 +520,7 @@ msgstr ""
520
 
521
  #: includes/admin/exclude-page-metabox.php:144
522
  #: languages/gutenberg.php:179
523
- #: languages/vue.php:2393
524
  msgid "Upgrade"
525
  msgstr ""
526
 
@@ -717,7 +717,7 @@ msgstr ""
717
  #: includes/admin/notifications/notification-upgrade-for-custom-dimensions.php:25
718
  #: includes/admin/notifications/notification-upgrade-for-events-reporting.php:25
719
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:25
720
- #: languages/vue.php:1265
721
  #: lite/includes/admin/helpers.php:85
722
  msgid "Upgrade to MonsterInsights Pro"
723
  msgstr ""
@@ -752,8 +752,8 @@ msgstr ""
752
 
753
  #: includes/admin/notifications/notification-upgrade-for-form-conversion.php:31
754
  #: includes/admin/notifications/notification-upgrade-for-search-console.php:32
755
- #: includes/admin/reports/abstract-report.php:455
756
- #: languages/vue.php:284
757
  msgid "Upgrade Now"
758
  msgstr ""
759
 
@@ -874,64 +874,64 @@ msgstr ""
874
  msgid "Invalid date range."
875
  msgstr ""
876
 
877
- #: includes/admin/reports/abstract-report.php:299
878
  msgid "You must be properly authenticated with MonsterInsights to use our reports. Please use our %1$ssetup wizard%2$s to get started."
879
  msgstr ""
880
 
881
  #. Translators: Placeholders add the license level and the report title.
882
- #: includes/admin/reports/abstract-report.php:386
883
  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."
884
  msgstr ""
885
 
886
- #: includes/admin/reports/abstract-report.php:400
887
  msgid "Ready to Get Analytics Super-Powers?"
888
  msgstr ""
889
 
890
- #: includes/admin/reports/abstract-report.php:402
891
  msgid "(And Crush Your Competition?)"
892
  msgstr ""
893
 
894
  #. Translators: License level and smiley.
895
- #: includes/admin/reports/abstract-report.php:408
896
  msgid "Hey there! It looks like you've got the %1$s license installed on your site. That's awesome! %s"
897
  msgstr ""
898
 
899
  #. Translators: Placeholders add the report title and license level.
900
- #: includes/admin/reports/abstract-report.php:415
901
  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."
902
  msgstr ""
903
 
904
  #. Translators: Placeholdes add links to the account area and a guide.
905
- #: includes/admin/reports/abstract-report.php:422
906
  msgid "It's easy! To upgrade, navigate to %1$sMy Account%2$s on MonsterInsights.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."
907
  msgstr ""
908
 
909
- #: includes/admin/reports/abstract-report.php:426
910
- #: includes/admin/reports/abstract-report.php:449
911
  msgid "If you have any questions, don't hesitate to reach out. We're here to help."
912
  msgstr ""
913
 
914
  #. Translators: Placeholder adds a smiley face.
915
- #: includes/admin/reports/abstract-report.php:431
916
  msgid "Hey there! %s It looks like you've got the free version of MonsterInsights installed on your site. That's awesome!"
917
  msgstr ""
918
 
919
  #. Translators: Placeholders make the text bold, add the license level and add a link to upgrade.
920
- #: includes/admin/reports/abstract-report.php:438
921
  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 MonsterInsights 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."
922
  msgstr ""
923
 
924
  #. Translators: Placeholders make the text bold, add the license level and add a link to upgrade.
925
- #: includes/admin/reports/abstract-report.php:445
926
  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."
927
  msgstr ""
928
 
929
- #: includes/admin/reports/abstract-report.php:492
930
  msgid "Please ask your webmaster to enable this addon."
931
  msgstr ""
932
 
933
  #: includes/admin/reports/overview.php:34
934
- #: languages/vue.php:571
935
  msgid "Overview"
936
  msgstr ""
937
 
@@ -1032,7 +1032,7 @@ msgid "ThirstyAffiliates is a revolution in affiliate link management. Collect,
1032
  msgstr ""
1033
 
1034
  #: includes/admin/routes.php:535
1035
- #: languages/vue.php:3787
1036
  msgid "Start accepting one-time and recurring payments on your WordPress site without setting up a shopping cart. No code required."
1037
  msgstr ""
1038
 
@@ -1488,7 +1488,7 @@ msgid "Question"
1488
  msgstr ""
1489
 
1490
  #: includes/gutenberg/headline-tool/headline-tool.php:318
1491
- #: languages/vue.php:529
1492
  msgid "General"
1493
  msgstr ""
1494
 
@@ -4888,7 +4888,7 @@ msgid "Theme"
4888
  msgstr ""
4889
 
4890
  #: languages/gutenberg.php:77
4891
- #: languages/vue.php:514
4892
  msgid "Inline Popular Posts"
4893
  msgstr ""
4894
 
@@ -4925,7 +4925,7 @@ msgid "Comment Color"
4925
  msgstr ""
4926
 
4927
  #: languages/gutenberg.php:107
4928
- #: languages/vue.php:2987
4929
  msgid "Wide-Layout Options"
4930
  msgstr ""
4931
 
@@ -4934,12 +4934,12 @@ msgid "Choose Layout"
4934
  msgstr ""
4935
 
4936
  #: languages/gutenberg.php:113
4937
- #: languages/vue.php:2990
4938
  msgid "Adjust the number of columns displayed when the widget is placed in a wide container."
4939
  msgstr ""
4940
 
4941
  #: languages/gutenberg.php:116
4942
- #: languages/vue.php:3011
4943
  msgid "Post Count"
4944
  msgstr ""
4945
 
@@ -4948,7 +4948,7 @@ msgid "Number of posts displayed."
4948
  msgstr ""
4949
 
4950
  #: languages/gutenberg.php:122
4951
- #: languages/vue.php:2993
4952
  msgid "Display Options"
4953
  msgstr ""
4954
 
@@ -4961,7 +4961,7 @@ msgid "Display Widget Title"
4961
  msgstr ""
4962
 
4963
  #: languages/gutenberg.php:131
4964
- #: languages/vue.php:2809
4965
  msgid "Widget Title"
4966
  msgstr ""
4967
 
@@ -4970,34 +4970,34 @@ msgid "Only Show Posts From These Categories"
4970
  msgstr ""
4971
 
4972
  #: languages/gutenberg.php:137
4973
- #: languages/vue.php:2999
4974
  msgid "Display Author"
4975
  msgstr ""
4976
 
4977
  #: languages/gutenberg.php:140
4978
- #: languages/vue.php:3002
4979
  msgid "Display Date"
4980
  msgstr ""
4981
 
4982
  #: languages/gutenberg.php:143
4983
- #: languages/vue.php:3005
4984
  msgid "Display Comments"
4985
  msgstr ""
4986
 
4987
  #: languages/gutenberg.php:146
4988
- #: languages/vue.php:35
4989
  #: lite/includes/admin/metaboxes.php:47
4990
  msgid "Last 30 days"
4991
  msgstr ""
4992
 
4993
  #: languages/gutenberg.php:149
4994
- #: languages/vue.php:23
4995
  #: lite/includes/admin/metaboxes.php:51
4996
  msgid "Yesterday"
4997
  msgstr ""
4998
 
4999
  #: languages/gutenberg.php:152
5000
- #: languages/vue.php:1346
5001
  #: lite/includes/admin/metaboxes.php:65
5002
  #: lite/includes/admin/metaboxes.php:127
5003
  msgid "Bounce Rate"
@@ -5258,7 +5258,7 @@ msgid "Goal: "
5258
  msgstr ""
5259
 
5260
  #: languages/gutenberg.php:354
5261
- #: languages/vue.php:862
5262
  msgid "Headline Analyzer"
5263
  msgstr ""
5264
 
@@ -5278,445 +5278,445 @@ msgstr ""
5278
  msgid "2"
5279
  msgstr ""
5280
 
5281
- #: languages/vue.php:14
5282
  msgid "Error"
5283
  msgstr ""
5284
 
5285
- #: languages/vue.php:17
5286
  msgid "Please try again."
5287
  msgstr ""
5288
 
5289
- #: languages/vue.php:20
5290
  msgid "Today"
5291
  msgstr ""
5292
 
5293
- #: languages/vue.php:26
5294
  msgid "Last Week"
5295
  msgstr ""
5296
 
5297
- #: languages/vue.php:29
5298
  msgid "Last Month"
5299
  msgstr ""
5300
 
5301
- #: languages/vue.php:32
5302
  msgid "Last 7 days"
5303
  msgstr ""
5304
 
5305
- #: languages/vue.php:38
5306
  msgid "Loading settings"
5307
  msgstr ""
5308
 
5309
- #: languages/vue.php:41
5310
  msgid "Loading new report data"
5311
  msgstr ""
5312
 
5313
- #: languages/vue.php:44
5314
  msgid "Please wait..."
5315
  msgstr ""
5316
 
5317
  #. Translators: Adds an arrow icon.
5318
- #: languages/vue.php:48
5319
  msgid "Continue %s"
5320
  msgstr ""
5321
 
5322
- #: languages/vue.php:51
5323
  msgid "Unlock the Publishers Report and Focus on the Content that Matters"
5324
  msgstr ""
5325
 
5326
- #: languages/vue.php:54
5327
  msgid "Stop guessing about what content your visitors are interested in. MonsterInsights Publisher Report shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions."
5328
  msgstr ""
5329
 
5330
- #: languages/vue.php:57
5331
  msgid "Unlock the Publishers Report and Focus on the Content That Matters"
5332
  msgstr ""
5333
 
5334
- #: languages/vue.php:60
5335
  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."
5336
  msgstr ""
5337
 
5338
- #: languages/vue.php:63
5339
  msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
5340
  msgstr ""
5341
 
5342
- #: languages/vue.php:66
5343
  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."
5344
  msgstr ""
5345
 
5346
- #: languages/vue.php:69
5347
  msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
5348
  msgstr ""
5349
 
5350
- #: languages/vue.php:72
5351
  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."
5352
  msgstr ""
5353
 
5354
- #: languages/vue.php:75
5355
  msgid "Unlock the Forms Report and Improve Conversions"
5356
  msgstr ""
5357
 
5358
- #: languages/vue.php:78
5359
  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."
5360
  msgstr ""
5361
 
5362
- #: languages/vue.php:81
5363
  msgid "Unlock the Search Console Report and See How People Find Your Website"
5364
  msgstr ""
5365
 
5366
- #: languages/vue.php:84
5367
  msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
5368
  msgstr ""
5369
 
5370
- #: languages/vue.php:87
5371
  msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
5372
  msgstr ""
5373
 
5374
- #: languages/vue.php:90
5375
  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."
5376
  msgstr ""
5377
 
5378
- #: languages/vue.php:93
5379
  msgid "Unlock the Site Speed Report and Improve the Performance of Your Site"
5380
  msgstr ""
5381
 
5382
- #: languages/vue.php:96
5383
  msgid "See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking"
5384
  msgstr ""
5385
 
5386
- #: languages/vue.php:99
5387
  msgid "Loading Settings"
5388
  msgstr ""
5389
 
5390
- #: languages/vue.php:102
5391
  msgid "Saving Changes..."
5392
  msgstr ""
5393
 
5394
- #: languages/vue.php:105
5395
  msgid "Settings Updated"
5396
  msgstr ""
5397
 
5398
  #. Translators: Adds a link to the settings panel.
5399
- #: languages/vue.php:109
5400
  msgid "You need to %1$sconnect MonsterInsights%2$s first"
5401
  msgstr ""
5402
 
5403
- #: languages/vue.php:112
5404
  msgid "Could Not Save Changes"
5405
  msgstr ""
5406
 
5407
- #: languages/vue.php:115
5408
  msgid "Refreshing Report"
5409
  msgstr ""
5410
 
5411
- #: languages/vue.php:118
5412
  msgid "Loading new report data..."
5413
  msgstr ""
5414
 
5415
- #: languages/vue.php:121
5416
  msgid "See Your Top Landing Pages to Improve Engagement"
5417
  msgstr ""
5418
 
5419
- #: languages/vue.php:124
5420
  msgid "See Your Top Exit Pages to Reduce Abandonment"
5421
  msgstr ""
5422
 
5423
- #: languages/vue.php:127
5424
  msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
5425
  msgstr ""
5426
 
5427
- #: languages/vue.php:130
5428
  msgid "See Your Top Affiliate Links and Focus on What's Working"
5429
  msgstr ""
5430
 
5431
- #: languages/vue.php:133
5432
  msgid "See Your Top Downloads and Improve Conversions"
5433
  msgstr ""
5434
 
5435
- #: languages/vue.php:136
5436
  msgid "See Audience Demographic Report ( Age / Gender / Interests )"
5437
  msgstr ""
5438
 
5439
- #: languages/vue.php:139
5440
  msgid "Increase your sales & revenue with insights. MonsterInsights answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value, top products, top referral sources and more."
5441
  msgstr ""
5442
 
5443
- #: languages/vue.php:142
5444
  msgid "See Your Conversion Rate to Improve Your Funnel"
5445
  msgstr ""
5446
 
5447
- #: languages/vue.php:145
5448
  msgid "See The Number of Transactions and Make Data-Driven Decisions"
5449
  msgstr ""
5450
 
5451
- #: languages/vue.php:148
5452
  msgid "See The Total Revenue to Track Growth"
5453
  msgstr ""
5454
 
5455
- #: languages/vue.php:151
5456
  msgid "See Average Order Value to Find Offer Opportunities"
5457
  msgstr ""
5458
 
5459
- #: languages/vue.php:154
5460
  msgid "See Your Top Products to See Individual Performance"
5461
  msgstr ""
5462
 
5463
- #: languages/vue.php:157
5464
  msgid "See Your Top Conversion Sources and Focus on What's Working"
5465
  msgstr ""
5466
 
5467
- #: languages/vue.php:160
5468
  msgid "See The Time it Takes for Customers to Purchase"
5469
  msgstr ""
5470
 
5471
- #: languages/vue.php:163
5472
  msgid "See How Many Sessions are Needed for a Purchase"
5473
  msgstr ""
5474
 
5475
- #: languages/vue.php:166
5476
  msgid "See Which Authors Generate the Most Traffic"
5477
  msgstr ""
5478
 
5479
- #: languages/vue.php:169
5480
  msgid "See Which Post Types Perform Better"
5481
  msgstr ""
5482
 
5483
- #: languages/vue.php:172
5484
  msgid "See Which Categories are the Most Popular"
5485
  msgstr ""
5486
 
5487
- #: languages/vue.php:175
5488
  msgid "See Your Blog's Most Popular SEO Scores"
5489
  msgstr ""
5490
 
5491
- #: languages/vue.php:178
5492
  msgid "See Which Focus Keyword is Performing Better in Search Engines"
5493
  msgstr ""
5494
 
5495
- #: languages/vue.php:181
5496
  msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
5497
  msgstr ""
5498
 
5499
- #: languages/vue.php:184
5500
  msgid "See Your Top Converting Forms and Optimize"
5501
  msgstr ""
5502
 
5503
- #: languages/vue.php:187
5504
  msgid "See Your Forms Impressions Count to Find the Best Placement"
5505
  msgstr ""
5506
 
5507
- #: languages/vue.php:190
5508
  msgid "See Your Top Google Search Terms and Optimize Content"
5509
  msgstr ""
5510
 
5511
- #: languages/vue.php:193
5512
  msgid "See The Number of Clicks and Track Interests"
5513
  msgstr ""
5514
 
5515
- #: languages/vue.php:196
5516
  msgid "See The Click-Through-Ratio and Improve SEO"
5517
  msgstr ""
5518
 
5519
- #: languages/vue.php:199
5520
  msgid "See The Average Results Position and Focus on what works"
5521
  msgstr ""
5522
 
5523
- #: languages/vue.php:202
5524
  msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
5525
  msgstr ""
5526
 
5527
- #: languages/vue.php:205
5528
  msgid "See Your Top Pages Immediately After Making Changes"
5529
  msgstr ""
5530
 
5531
- #: languages/vue.php:208
5532
  msgid "See Your Top Referral Sources and Adapt Faster"
5533
  msgstr ""
5534
 
5535
- #: languages/vue.php:211
5536
  msgid "See Your Traffic Demographics"
5537
  msgstr ""
5538
 
5539
- #: languages/vue.php:214
5540
  msgid "Get Fresh Report Data Every 60 Seconds"
5541
  msgstr ""
5542
 
5543
- #: languages/vue.php:217
5544
  msgid "See Your Homepage's Overall Performance Score"
5545
  msgstr ""
5546
 
5547
- #: languages/vue.php:220
5548
  msgid "Run an Audit on Your Homepage and See Your Server Response Time"
5549
  msgstr ""
5550
 
5551
- #: languages/vue.php:223
5552
  msgid "Learn How Long It Takes for Your Viewers to Interact With Your Site"
5553
  msgstr ""
5554
 
5555
- #: languages/vue.php:226
5556
  msgid "Learn How to Improve the Core Metrics that Google Uses to Rank Your Site"
5557
  msgstr ""
5558
 
5559
  #. Translators: Number of visitors.
5560
- #: languages/vue.php:230
5561
  msgid "See how %s visitors found your site!"
5562
  msgstr ""
5563
 
5564
  #. Translators: Number of visitors.
5565
- #: languages/vue.php:234
5566
  msgid "Your website was visited by %s users in the last 30 days."
5567
  msgstr ""
5568
 
5569
- #: languages/vue.php:237
5570
  msgid "See the full analytics report!"
5571
  msgstr ""
5572
 
5573
- #: languages/vue.php:240
5574
  msgid "Congratulations! "
5575
  msgstr ""
5576
 
5577
- #: languages/vue.php:243
5578
  msgid "You Successfully Unlocked the most powerful Analytics plugin"
5579
  msgstr ""
5580
 
5581
- #: languages/vue.php:249
5582
  msgid "Overview Report"
5583
  msgstr ""
5584
 
5585
- #: languages/vue.php:252
5586
  #: lite/includes/admin/welcome.php:56
5587
  #: lite/includes/admin/welcome.php:57
5588
  msgid "Welcome to MonsterInsights"
5589
  msgstr ""
5590
 
5591
- #: languages/vue.php:255
5592
  msgid "Thank you for choosing MonsterInsights - The Most Powerful WordPress Analytics Plugin"
5593
  msgstr ""
5594
 
5595
- #: languages/vue.php:258
5596
  msgid "MonsterInsights 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."
5597
  msgstr ""
5598
 
5599
- #: languages/vue.php:261
5600
  msgid "Launch the Wizard!"
5601
  msgstr ""
5602
 
5603
- #: languages/vue.php:264
5604
  msgid "Read the Full Guide"
5605
  msgstr ""
5606
 
5607
- #: languages/vue.php:267
5608
  msgid "MonsterInsights Features & Addons"
5609
  msgstr ""
5610
 
5611
- #: languages/vue.php:270
5612
  msgid "Here are the features that make MonsterInsights the most powerful and user-friendly WordPress analytics plugin in the market."
5613
  msgstr ""
5614
 
5615
- #: languages/vue.php:273
5616
  msgid "See All Features"
5617
  msgstr ""
5618
 
5619
- #: languages/vue.php:277
5620
  msgid "Upgrade to PRO"
5621
  msgstr ""
5622
 
5623
- #: languages/vue.php:280
5624
  msgid "per year"
5625
  msgstr ""
5626
 
5627
- #: languages/vue.php:287
5628
  msgid "Testimonials"
5629
  msgstr ""
5630
 
5631
- #: languages/vue.php:290
5632
  msgid "Universal Tracking"
5633
  msgstr ""
5634
 
5635
- #: languages/vue.php:293
5636
  msgid "Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
5637
  msgstr ""
5638
 
5639
- #: languages/vue.php:296
5640
  msgid "Google Analytics Dashboard"
5641
  msgstr ""
5642
 
5643
- #: languages/vue.php:299
5644
  msgid "See your website analytics report right inside your WordPress dashboard with actionable insights."
5645
  msgstr ""
5646
 
5647
- #: languages/vue.php:302
5648
  msgid "Real-time Stats"
5649
  msgstr ""
5650
 
5651
- #: languages/vue.php:305
5652
  msgid "Get real-time stats right inside WordPress to see who is online, what are they doing, and more."
5653
  msgstr ""
5654
 
5655
- #: languages/vue.php:308
5656
  msgid "Enhanced Ecommerce Tracking"
5657
  msgstr ""
5658
 
5659
- #: languages/vue.php:311
5660
  msgid "1-click Google Analytics Enhanced Ecommerce tracking for WooCommerce, Easy Digital Downloads & MemberPress."
5661
  msgstr ""
5662
 
5663
- #: languages/vue.php:314
5664
  msgid "Page Level Analytics"
5665
  msgstr ""
5666
 
5667
- #: languages/vue.php:317
5668
  msgid "Get detailed stats for each post and page, so you can see the most popular posts, pages, and sections of your site."
5669
  msgstr ""
5670
 
5671
- #: languages/vue.php:320
5672
  msgid "Affiliate Link & Ads Tracking"
5673
  msgstr ""
5674
 
5675
- #: languages/vue.php:323
5676
  msgid "Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking."
5677
  msgstr ""
5678
 
5679
- #: languages/vue.php:326
5680
  msgid "EU Compliance (GDPR Friendly)"
5681
  msgstr ""
5682
 
5683
- #: languages/vue.php:329
5684
  msgid "Make Google Analytics compliant with GDPR and other privacy regulations automatically."
5685
  msgstr ""
5686
 
5687
- #: languages/vue.php:332
5688
  msgid "Setup tracking for authors, categories, tags, searches, custom post types, users, and other events with 1-click."
5689
  msgstr ""
5690
 
5691
- #: languages/vue.php:335
5692
  msgid "Ecommerce Report"
5693
  msgstr ""
5694
 
5695
- #: languages/vue.php:338
5696
  msgid "Form Conversions"
5697
  msgstr ""
5698
 
5699
- #: languages/vue.php:341
5700
  msgid "Custom Dimensions"
5701
  msgstr ""
5702
 
5703
- #: languages/vue.php:344
5704
  msgid "Author Tracking"
5705
  msgstr ""
5706
 
5707
- #: languages/vue.php:347
5708
  msgid "Google Optimize"
5709
  msgstr ""
5710
 
5711
- #: languages/vue.php:350
5712
  msgid "Category / Tags Tracking"
5713
  msgstr ""
5714
 
5715
- #: languages/vue.php:353
5716
  msgid "WooCommerce"
5717
  msgstr ""
5718
 
5719
- #: languages/vue.php:356
5720
  msgid "Easy Digital Downloads"
5721
  msgstr ""
5722
 
@@ -5780,233 +5780,233 @@ msgstr ""
5780
  msgid "Re-Authenticating"
5781
  msgstr ""
5782
 
5783
- #: languages/vue.php:410
5784
  msgid "Ok"
5785
  msgstr ""
5786
 
5787
- #: languages/vue.php:413
5788
  msgid "See Quick Links"
5789
  msgstr ""
5790
 
5791
- #: languages/vue.php:416
5792
  msgid "Suggest a Feature"
5793
  msgstr ""
5794
 
5795
- #: languages/vue.php:419
5796
  msgid "Join Our Community"
5797
  msgstr ""
5798
 
5799
- #: languages/vue.php:422
5800
  msgid "Support & Docs"
5801
  msgstr ""
5802
 
5803
- #: languages/vue.php:425
5804
  msgid "Upgrade to Pro &#187;"
5805
  msgstr ""
5806
 
5807
  #. Translators: Placeholder is replaced with WPForms.
5808
- #: languages/vue.php:429
5809
  msgid "Recommended Plugin: %s"
5810
  msgstr ""
5811
 
5812
- #: languages/vue.php:433
5813
  msgid "Install"
5814
  msgstr ""
5815
 
5816
- #: languages/vue.php:437
5817
  msgid "Activate"
5818
  msgstr ""
5819
 
5820
- #: languages/vue.php:443
5821
  msgid "Powered by MonsterInsights"
5822
  msgstr ""
5823
 
5824
- #: languages/vue.php:446
5825
  #: lite/includes/admin/wp-site-health.php:256
5826
  msgid "View Reports"
5827
  msgstr ""
5828
 
5829
- #: languages/vue.php:449
5830
  msgid "Congratulations!"
5831
  msgstr ""
5832
 
5833
  #. Translators: Add link to YouTube video and Onboarding Wizard.
5834
- #: languages/vue.php:453
5835
  msgid "MonsterInsights makes it easy to connect your website with Google Analytics and see all important website stats right inside your WordPress dashboard. In order to setup website analytics, please take a look at our %1$sGetting started video%2$s or use our %3$s to get you quickly set up."
5836
  msgstr ""
5837
 
5838
  #. Translators: Add link to YouTube video and Onboarding Wizard.
5839
- #: languages/vue.php:457
5840
  msgid "Onboarding Wizard"
5841
  msgstr ""
5842
 
5843
- #: languages/vue.php:460
5844
  msgid "You are now connected with MonsterInsights. We make it effortless for you to implement Google Analytics tracking and see the stats that matter, right inside the WordPress dashboard."
5845
  msgstr ""
5846
 
5847
- #: languages/vue.php:463
5848
  msgid "Save Changes"
5849
  msgstr ""
5850
 
5851
- #: languages/vue.php:466
5852
  msgid "Inbox"
5853
  msgstr ""
5854
 
5855
- #: languages/vue.php:469
5856
  msgid "Back to Inbox"
5857
  msgstr ""
5858
 
5859
- #: languages/vue.php:472
5860
  msgid "View Dismissed"
5861
  msgstr ""
5862
 
5863
- #: languages/vue.php:475
5864
  msgid "Notifications"
5865
  msgstr ""
5866
 
5867
- #: languages/vue.php:478
5868
  msgid "Dismiss All"
5869
  msgstr ""
5870
 
5871
- #: languages/vue.php:481
5872
  msgid "Dismissed"
5873
  msgstr ""
5874
 
5875
- #: languages/vue.php:484
5876
  msgid "No Notifications"
5877
  msgstr ""
5878
 
5879
- #: languages/vue.php:496
5880
  msgid "Import Export"
5881
  msgstr ""
5882
 
5883
- #: languages/vue.php:499
5884
  msgid "PrettyLinks Integration"
5885
  msgstr ""
5886
 
5887
- #: languages/vue.php:507
5888
  msgid "Getting Started"
5889
  msgstr ""
5890
 
5891
- #: languages/vue.php:511
5892
  msgid "Lite vs Pro"
5893
  msgstr ""
5894
 
5895
- #: languages/vue.php:517
5896
  msgid "Popular Posts Widget"
5897
  msgstr ""
5898
 
5899
- #: languages/vue.php:520
5900
  msgid "Popular Products"
5901
  msgstr ""
5902
 
5903
- #: languages/vue.php:526
5904
  msgid "Sub menu item for WooCommerce Analytics"
5905
  msgstr ""
5906
 
5907
- #: languages/vue.php:532
5908
  msgid "Engagement"
5909
  msgstr ""
5910
 
5911
- #: languages/vue.php:535
5912
  #: lite/includes/admin/reports/report-ecommerce.php:22
5913
  msgid "eCommerce"
5914
  msgstr ""
5915
 
5916
- #: languages/vue.php:538
5917
  msgid "Publisher"
5918
  msgstr ""
5919
 
5920
- #: languages/vue.php:541
5921
  msgid "Conversions"
5922
  msgstr ""
5923
 
5924
- #: languages/vue.php:544
5925
  msgid "Advanced"
5926
  msgstr ""
5927
 
5928
- #: languages/vue.php:547
5929
  msgid "URL Builder"
5930
  msgstr ""
5931
 
5932
- #: languages/vue.php:550
5933
  msgid "MonsterInsights Addons"
5934
  msgstr ""
5935
 
5936
- #: languages/vue.php:553
5937
  msgid "Search Addons"
5938
  msgstr ""
5939
 
5940
- #: languages/vue.php:556
5941
  msgid "Exit Setup"
5942
  msgstr ""
5943
 
5944
- #: languages/vue.php:559
5945
  msgid "You must connect with MonsterInsights before you can view reports."
5946
  msgstr ""
5947
 
5948
- #: languages/vue.php:562
5949
  msgid "MonsterInsights makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
5950
  msgstr ""
5951
 
5952
- #: languages/vue.php:565
5953
  msgid "Launch Setup Wizard"
5954
  msgstr ""
5955
 
5956
- #: languages/vue.php:568
5957
  msgid "Please ask your webmaster to connect MonsterInsights to Google Analytics."
5958
  msgstr ""
5959
 
5960
- #: languages/vue.php:574
5961
  #: lite/includes/admin/reports/report-publisher.php:22
5962
  msgid "Publishers"
5963
  msgstr ""
5964
 
5965
- #: languages/vue.php:577
5966
  #: lite/includes/admin/reports/report-queries.php:22
5967
  msgid "Search Console"
5968
  msgstr ""
5969
 
5970
- #: languages/vue.php:580
5971
  #: lite/includes/admin/reports/report-dimensions.php:22
5972
  msgid "Dimensions"
5973
  msgstr ""
5974
 
5975
- #: languages/vue.php:583
5976
  #: lite/includes/admin/reports/report-forms.php:22
5977
  msgid "Forms"
5978
  msgstr ""
5979
 
5980
- #: languages/vue.php:586
5981
  msgid "Real-Time"
5982
  msgstr ""
5983
 
5984
- #: languages/vue.php:589
5985
  msgid "Site Speed"
5986
  msgstr ""
5987
 
5988
- #: languages/vue.php:592
5989
  msgid "2020 Year in Review"
5990
  msgstr ""
5991
 
5992
  #. Translators: Error status and error text.
5993
- #: languages/vue.php:596
5994
  msgid "Can't load report data. Error: %1$s, %2$s"
5995
  msgstr ""
5996
 
5997
- #: languages/vue.php:599
5998
  msgid "Error loading report data"
5999
  msgstr ""
6000
 
6001
- #: languages/vue.php:602
6002
  msgid "Publishers Report"
6003
  msgstr ""
6004
 
6005
- #: languages/vue.php:606
6006
  msgid "eCommerce Report"
6007
  msgstr ""
6008
 
6009
- #: languages/vue.php:609
6010
  msgid "Search Console Report"
6011
  msgstr ""
6012
 
@@ -6014,823 +6014,823 @@ msgstr ""
6014
  msgid "Dimensions Report"
6015
  msgstr ""
6016
 
6017
- #: languages/vue.php:615
6018
  msgid "Forms Report"
6019
  msgstr ""
6020
 
6021
- #: languages/vue.php:618
6022
  msgid "Real-Time Report"
6023
  msgstr ""
6024
 
6025
- #: languages/vue.php:621
6026
  msgid "Site Speed Report"
6027
  msgstr ""
6028
 
6029
- #: languages/vue.php:624
6030
  msgid "Time to Purchase"
6031
  msgstr ""
6032
 
6033
- #: languages/vue.php:627
6034
  msgid "This list shows how many days from first visit it took users to purchase products from your site."
6035
  msgstr ""
6036
 
6037
- #: languages/vue.php:630
6038
  msgid "Sessions to Purchase"
6039
  msgstr ""
6040
 
6041
- #: languages/vue.php:633
6042
  msgid "This list shows the number of sessions it took users before they purchased a product from your website."
6043
  msgstr ""
6044
 
6045
- #: languages/vue.php:636
6046
  msgid "New Customers"
6047
  msgstr ""
6048
 
6049
- #: languages/vue.php:639
6050
  msgid "This list shows the percentage of new customers who purchased a product from your website."
6051
  msgstr ""
6052
 
6053
- #: languages/vue.php:642
6054
  msgid "Abandoned Checkouts"
6055
  msgstr ""
6056
 
6057
- #: languages/vue.php:645
6058
  msgid "This list shows the percentage of carts that never went through the checkout process."
6059
  msgstr ""
6060
 
6061
- #: languages/vue.php:648
6062
  msgid "Top Posts/Pages"
6063
  msgstr ""
6064
 
6065
- #: languages/vue.php:651
6066
  msgid "This list shows the most viewed posts and pages on your website."
6067
  msgstr ""
6068
 
6069
- #: languages/vue.php:654
6070
  msgid "New vs. Returning Visitors"
6071
  msgstr ""
6072
 
6073
- #: languages/vue.php:657
6074
  msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
6075
  msgstr ""
6076
 
6077
- #: languages/vue.php:660
6078
  msgid "Device Breakdown"
6079
  msgstr ""
6080
 
6081
- #: languages/vue.php:663
6082
  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."
6083
  msgstr ""
6084
 
6085
- #: languages/vue.php:666
6086
  msgid "Top Landing Pages"
6087
  msgstr ""
6088
 
6089
- #: languages/vue.php:669
6090
  msgid "This list shows the top pages users first land on when visiting your website."
6091
  msgstr ""
6092
 
6093
- #: languages/vue.php:672
6094
  msgid "Top Exit Pages"
6095
  msgstr ""
6096
 
6097
- #: languages/vue.php:675
6098
  msgid "This list shows the top pages users exit your website from."
6099
  msgstr ""
6100
 
6101
- #: languages/vue.php:678
6102
  msgid "Top Outbound Links"
6103
  msgstr ""
6104
 
6105
- #: languages/vue.php:681
6106
  msgid "This list shows the top links clicked on your website that go to another website."
6107
  msgstr ""
6108
 
6109
- #: languages/vue.php:684
6110
  msgid "Top Affiliate Links"
6111
  msgstr ""
6112
 
6113
- #: languages/vue.php:687
6114
  msgid "This list shows the top affiliate links your visitors clicked on."
6115
  msgstr ""
6116
 
6117
- #: languages/vue.php:690
6118
  msgid "Top Download Links"
6119
  msgstr ""
6120
 
6121
- #: languages/vue.php:693
6122
  msgid "This list shows the download links your visitors clicked the most."
6123
  msgstr ""
6124
 
6125
- #: languages/vue.php:696
6126
  msgid "Top Products"
6127
  msgstr ""
6128
 
6129
- #: languages/vue.php:699
6130
  msgid "This list shows the top selling products on your website."
6131
  msgstr ""
6132
 
6133
- #: languages/vue.php:702
6134
  msgid "Top Conversion Sources"
6135
  msgstr ""
6136
 
6137
- #: languages/vue.php:705
6138
  msgid "This list shows the top referral websites in terms of product revenue."
6139
  msgstr ""
6140
 
6141
- #: languages/vue.php:708
6142
  msgid "Total Add/Remove"
6143
  msgstr ""
6144
 
6145
  #. Translators: Adds a link to documentation.
6146
- #: languages/vue.php:722
6147
  msgid "In order for the MonsterInsights Google AMP addon to work properly, please ask your webmaster to install the WordPress AMP plugin by Automattic. %1$sLearn More%2$s"
6148
  msgstr ""
6149
 
6150
  #. Translators: Adds link to activate/install plugin and documentation.
6151
- #: languages/vue.php:726
6152
  msgid "In order for the MonsterInsights 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"
6153
  msgstr ""
6154
 
6155
  #. Translators: Adds a link to documentation.
6156
- #: languages/vue.php:730
6157
  msgid "In order for the MonsterInsights 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"
6158
  msgstr ""
6159
 
6160
  #. Translators: Adds link to activate/install plugin and documentation.
6161
- #: languages/vue.php:734
6162
  msgid "In order for the MonsterInsights 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"
6163
  msgstr ""
6164
 
6165
- #: languages/vue.php:737
6166
  msgid "GDPR Guide"
6167
  msgstr ""
6168
 
6169
- #: languages/vue.php:740
6170
  msgid "Compliance with European data laws including GDPR can be confusing and time-consuming. In order to help MonsterInsights users comply with these laws, we’ve created an addon that automates a lot of the necessary configuration changes for you. "
6171
  msgstr ""
6172
 
6173
- #: languages/vue.php:743
6174
  msgid "How to Install and Activate MonsterInsights Addons"
6175
  msgstr ""
6176
 
6177
- #: languages/vue.php:746
6178
  msgid "The process for installing and activating addons is quick and easy after you install the MonsterInsights plugin. In this guide we’ll walk you through the process, step by step."
6179
  msgstr ""
6180
 
6181
- #: languages/vue.php:749
6182
  msgid "Enabling eCommerce Tracking and Reports"
6183
  msgstr ""
6184
 
6185
- #: languages/vue.php:752
6186
  msgid "Want to track your eCommerce sales data for your WooCommerce, MemberPress, or Easy Digital Downloads store with MonsterInsights? In this guide, we’ll show you how to enable eCommerce tracking in Google Analytics in just a few clicks."
6187
  msgstr ""
6188
 
6189
- #: languages/vue.php:755
6190
  msgid "Read Documentation"
6191
  msgstr ""
6192
 
6193
- #: languages/vue.php:758
6194
  msgid "Getting Started with MonsterInsights"
6195
  msgstr ""
6196
 
6197
- #: languages/vue.php:761
6198
  msgid "MonsterInsights 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."
6199
  msgstr ""
6200
 
6201
- #: languages/vue.php:764
6202
  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."
6203
  msgstr ""
6204
 
6205
- #: languages/vue.php:767
6206
  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!."
6207
  msgstr ""
6208
 
6209
- #: languages/vue.php:770
6210
  msgid "Launch the wizard!"
6211
  msgstr ""
6212
 
6213
- #: languages/vue.php:773
6214
  msgid "Get MonsterInsights Pro and Unlock all the Powerful Features"
6215
  msgstr ""
6216
 
6217
  #. Translators: Makes text bold.
6218
- #: languages/vue.php:777
6219
  msgid "Thanks for being a loyal MonsterInsights Lite user. %1$sUpgrade to MonsterInsights Pro%2$s to unlock all the awesome features and experience why MonsterInsights is consistently rated the best Google Analytics solution for WordPress."
6220
  msgstr ""
6221
 
6222
- #: languages/vue.php:780
6223
  msgid "Universal Tracking across devices and campaigns with just a few clicks."
6224
  msgstr ""
6225
 
6226
- #: languages/vue.php:783
6227
  msgid "See your website analytics reports inside the WordPress dashboard"
6228
  msgstr ""
6229
 
6230
- #: languages/vue.php:786
6231
  msgid "Get real-time stats right inside WordPress"
6232
  msgstr ""
6233
 
6234
- #: languages/vue.php:789
6235
  msgid "1-click Google Analytics Enhanced eCommerce tracking"
6236
  msgstr ""
6237
 
6238
- #: languages/vue.php:792
6239
  msgid "Get detailed stats for each post and page."
6240
  msgstr ""
6241
 
6242
- #: languages/vue.php:795
6243
  msgid "Automatically track clicks on your affiliate links and ads."
6244
  msgstr ""
6245
 
6246
- #: languages/vue.php:798
6247
  msgid "Make Google Analytics GDPR compliant automatically"
6248
  msgstr ""
6249
 
6250
- #: languages/vue.php:801
6251
  msgid "Setup tracking for authors, categories, tags, custom post types, users and more"
6252
  msgstr ""
6253
 
6254
- #: languages/vue.php:804
6255
  msgid "Enable Google Optimize for A/B testing, adjust sample speed & sample rate."
6256
  msgstr ""
6257
 
6258
- #: languages/vue.php:807
6259
  msgid "More advanced features"
6260
  msgstr ""
6261
 
6262
- #: languages/vue.php:810
6263
  msgid "Get MonsterInsights Pro Today and Unlock all the Powerful Features"
6264
  msgstr ""
6265
 
6266
  #. Translators: Makes text green.
6267
- #: languages/vue.php:814
6268
  msgid "Bonus: MonsterInsights Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
6269
  msgstr ""
6270
 
6271
- #: languages/vue.php:817
6272
  msgid "How to Connect to Google Analytics"
6273
  msgstr ""
6274
 
6275
- #: languages/vue.php:820
6276
  msgid "After you install MonsterInsights, you’ll need to connect your WordPress site with your Google Analytics account. MonsterInsights makes the process easy, with no coding required."
6277
  msgstr ""
6278
 
6279
- #: languages/vue.php:823
6280
  msgid "Guide and Checklist for Advanced Insights"
6281
  msgstr ""
6282
 
6283
- #: languages/vue.php:826
6284
  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 MonsterInsights’ advanced tracking."
6285
  msgstr ""
6286
 
6287
- #: languages/vue.php:829
6288
  msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
6289
  msgstr ""
6290
 
6291
- #: languages/vue.php:832
6292
  msgid "WordPress Admin Area Reports"
6293
  msgstr ""
6294
 
6295
- #: languages/vue.php:835
6296
  msgid "Standard Reports"
6297
  msgstr ""
6298
 
6299
- #: languages/vue.php:838
6300
  msgid "Overview Reports for the last 30 days."
6301
  msgstr ""
6302
 
6303
- #: languages/vue.php:841
6304
  msgid "Advanced Reports"
6305
  msgstr ""
6306
 
6307
- #: languages/vue.php:844
6308
  msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
6309
  msgstr ""
6310
 
6311
- #: languages/vue.php:847
6312
  msgid "Dashboard Widget"
6313
  msgstr ""
6314
 
6315
- #: languages/vue.php:850
6316
  msgid "Basic Widget"
6317
  msgstr ""
6318
 
6319
- #: languages/vue.php:853
6320
  msgid "Overview Report Synopsis"
6321
  msgstr ""
6322
 
6323
- #: languages/vue.php:856
6324
  msgid "Advanced Dashboard Widget"
6325
  msgstr ""
6326
 
6327
- #: languages/vue.php:859
6328
  msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
6329
  msgstr ""
6330
 
6331
- #: languages/vue.php:865
6332
  msgid "Email Summaries"
6333
  msgstr ""
6334
 
6335
- #: languages/vue.php:868
6336
  msgid "Included"
6337
  msgstr ""
6338
 
6339
- #: languages/vue.php:871
6340
  msgid "Get weekly traffic reports directly in your inbox."
6341
  msgstr ""
6342
 
6343
- #: languages/vue.php:874
6344
  msgid "Publisher Reports"
6345
  msgstr ""
6346
 
6347
- #: languages/vue.php:877
6348
  msgid "Advanced Publisher Reports & Tracking"
6349
  msgstr ""
6350
 
6351
- #: languages/vue.php:880
6352
  msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
6353
  msgstr ""
6354
 
6355
- #: languages/vue.php:886
6356
  msgid "Basic Options"
6357
  msgstr ""
6358
 
6359
- #: languages/vue.php:889
6360
  msgid "Order Popular Posts by comments or shares with 3 simple theme choices."
6361
  msgstr ""
6362
 
6363
- #: languages/vue.php:892
6364
  msgid "Dynamic Popular Posts & Popular Products"
6365
  msgstr ""
6366
 
6367
- #: languages/vue.php:895
6368
  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."
6369
  msgstr ""
6370
 
6371
- #: languages/vue.php:899
6372
  msgid "Not Available"
6373
  msgstr ""
6374
 
6375
- #: languages/vue.php:902
6376
  msgid "Complete Custom Dimensions Tracking"
6377
  msgstr ""
6378
 
6379
- #: languages/vue.php:905
6380
  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"
6381
  msgstr ""
6382
 
6383
- #: languages/vue.php:911
6384
  msgid "Limited Support"
6385
  msgstr ""
6386
 
6387
- #: languages/vue.php:914
6388
  msgid "Priority Support"
6389
  msgstr ""
6390
 
6391
- #: languages/vue.php:917
6392
  msgid "Get the most out of MonsterInsights by upgrading to Pro and unlocking all of the powerful features."
6393
  msgstr ""
6394
 
6395
- #: languages/vue.php:920
6396
  msgid "Feature"
6397
  msgstr ""
6398
 
6399
- #: languages/vue.php:923
6400
  msgid "Lite"
6401
  msgstr ""
6402
 
6403
- #: languages/vue.php:926
6404
  msgid "Pro"
6405
  msgstr ""
6406
 
6407
- #: languages/vue.php:929
6408
  msgid "Custom Google Analytics Link Tracking"
6409
  msgstr ""
6410
 
6411
- #: languages/vue.php:932
6412
  msgid "Standard Tracking"
6413
  msgstr ""
6414
 
6415
- #: languages/vue.php:935
6416
  msgid "Advanced Tracking"
6417
  msgstr ""
6418
 
6419
- #: languages/vue.php:938
6420
  msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
6421
  msgstr ""
6422
 
6423
- #: languages/vue.php:941
6424
  msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
6425
  msgstr ""
6426
 
6427
- #: languages/vue.php:944
6428
  msgid "No-Code-Needed Tracking Features"
6429
  msgstr ""
6430
 
6431
- #: languages/vue.php:947
6432
  msgid "Basic Tracking Options"
6433
  msgstr ""
6434
 
6435
- #: languages/vue.php:950
6436
  msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
6437
  msgstr ""
6438
 
6439
- #: languages/vue.php:953
6440
  msgid "Advanced Tracking Options"
6441
  msgstr ""
6442
 
6443
- #: languages/vue.php:956
6444
  msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
6445
  msgstr ""
6446
 
6447
- #: languages/vue.php:959
6448
  msgid "eCommerce Tracking"
6449
  msgstr ""
6450
 
6451
- #: languages/vue.php:962
6452
  msgid "One-click Complete eCommerce tracking"
6453
  msgstr ""
6454
 
6455
- #: languages/vue.php:965
6456
  msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
6457
  msgstr ""
6458
 
6459
- #: languages/vue.php:968
6460
  msgid "Forms Tracking"
6461
  msgstr ""
6462
 
6463
- #: languages/vue.php:971
6464
  msgid "One-click Form Events Tracking"
6465
  msgstr ""
6466
 
6467
- #: languages/vue.php:974
6468
  msgid "License Key"
6469
  msgstr ""
6470
 
6471
  #. Translators: Add link to retrieve license key from account.
6472
- #: languages/vue.php:978
6473
  msgid "Add your MonsterInsights license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
6474
  msgstr ""
6475
 
6476
- #: languages/vue.php:981
6477
  msgid "Google Authentication"
6478
  msgstr ""
6479
 
6480
- #: languages/vue.php:984
6481
  msgid "Connect Google Analytics + WordPress"
6482
  msgstr ""
6483
 
6484
- #: languages/vue.php:987
6485
  msgid "You will be taken to the MonsterInsights website where you'll need to connect your Analytics account."
6486
  msgstr ""
6487
 
6488
- #: languages/vue.php:990
6489
  msgid "Miscellaneous"
6490
  msgstr ""
6491
 
6492
- #: languages/vue.php:993
6493
  msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
6494
  msgstr ""
6495
 
6496
- #: languages/vue.php:996
6497
  msgid "Hide Announcements"
6498
  msgstr ""
6499
 
6500
- #: languages/vue.php:999
6501
  msgid "Setup Wizard"
6502
  msgstr ""
6503
 
6504
- #: languages/vue.php:1002
6505
  msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
6506
  msgstr ""
6507
 
6508
- #: languages/vue.php:1005
6509
  msgid "Hello and welcome to MonsterInsights, the best Google Analytics plugin for WordPress. MonsterInsights shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions."
6510
  msgstr ""
6511
 
6512
- #: languages/vue.php:1008
6513
  msgid "Over the years, we found that in order to get the most out of Google Analytics, you needed a full time developer who could implement custom tracking, so that Google Analytics would integrate with things like WooCommerce, and track things which Google doesn't by default, like outbound links."
6514
  msgstr ""
6515
 
6516
- #: languages/vue.php:1011
6517
  msgid "Our goal is to take the pain out of analytics, making it simple and easy, by eliminating the need to have to worry about code, putting the best reports directly into the area you already go to (your WordPress dashboard), and adding the most advanced insights and features without complicating our plugin with tons of settings. Quite simply, it should \"just work\"."
6518
  msgstr ""
6519
 
6520
- #: languages/vue.php:1014
6521
  msgid "MonsterInsights is brought to you by the same team that's behind the largest WordPress resource site, WPBeginner, the most popular lead-generation software, OptinMonster, and the best WordPress forms plugin, WPForms."
6522
  msgstr ""
6523
 
6524
- #: languages/vue.php:1017
6525
  msgid "Yup, we know a thing or two about building awesome products that customers love."
6526
  msgstr ""
6527
 
6528
- #: languages/vue.php:1020
6529
  msgid "The MonsterInsights Team"
6530
  msgstr ""
6531
 
6532
- #: languages/vue.php:1023
6533
  msgid "Make your MonsterInsights campaign links prettier with Pretty Links!"
6534
  msgstr ""
6535
 
6536
- #: languages/vue.php:1026
6537
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links."
6538
  msgstr ""
6539
 
6540
- #: languages/vue.php:1029
6541
  msgid "Take your MonsterInsights campaign links from our URL Builder and shorten them with Pretty Links!"
6542
  msgstr ""
6543
 
6544
- #: languages/vue.php:1032
6545
  msgid "Over 200,000 websites use Pretty Links!"
6546
  msgstr ""
6547
 
6548
- #: languages/vue.php:1035
6549
  msgid "Install Pretty Links"
6550
  msgstr ""
6551
 
6552
- #: languages/vue.php:1038
6553
  msgid "Pretty Links Installed & Activated"
6554
  msgstr ""
6555
 
6556
- #: languages/vue.php:1041
6557
  msgid "Download Pretty Links"
6558
  msgstr ""
6559
 
6560
- #: languages/vue.php:1044
6561
  msgid "Install Pretty Links from the WordPress.org plugin repository."
6562
  msgstr ""
6563
 
6564
- #: languages/vue.php:1047
6565
  msgid "Activate Pretty Links"
6566
  msgstr ""
6567
 
6568
- #: languages/vue.php:1050
6569
  msgid "Activating Pretty Links..."
6570
  msgstr ""
6571
 
6572
- #: languages/vue.php:1053
6573
  msgid "Create New Pretty Link"
6574
  msgstr ""
6575
 
6576
- #: languages/vue.php:1056
6577
  msgid "Create a New Pretty Link"
6578
  msgstr ""
6579
 
6580
- #: languages/vue.php:1059
6581
  msgid "Grab your campaign link and paste it into the Target URL field."
6582
  msgstr ""
6583
 
6584
- #: languages/vue.php:1062
6585
  msgid "Custom Campaign Parameters"
6586
  msgstr ""
6587
 
6588
- #: languages/vue.php:1065
6589
  msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
6590
  msgstr ""
6591
 
6592
- #: languages/vue.php:1068
6593
  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."
6594
  msgstr ""
6595
 
6596
  #. Translators: Marks the field as required.
6597
- #: languages/vue.php:1072
6598
  msgid "Website URL %s"
6599
  msgstr ""
6600
 
6601
  #. Translators: Display the current website url in italic.
6602
- #: languages/vue.php:1076
6603
  msgid "The full website URL (e.g. %1$s %2$s%3$s)"
6604
  msgstr ""
6605
 
6606
  #. Translators: Marks the field as required.
6607
- #: languages/vue.php:1080
6608
  msgid "Campaign Source %s"
6609
  msgstr ""
6610
 
6611
  #. Translators: Make the text italic.
6612
- #: languages/vue.php:1084
6613
  msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
6614
  msgstr ""
6615
 
6616
  #. Translators: Make the text italic.
6617
- #: languages/vue.php:1088
6618
  msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
6619
  msgstr ""
6620
 
6621
  #. Translators: Make the text italic.
6622
- #: languages/vue.php:1092
6623
  msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
6624
  msgstr ""
6625
 
6626
- #: languages/vue.php:1095
6627
  msgid "Enter the paid keyword"
6628
  msgstr ""
6629
 
6630
- #: languages/vue.php:1098
6631
  msgid "Enter something to differentiate ads"
6632
  msgstr ""
6633
 
6634
- #: languages/vue.php:1101
6635
  msgid "Use Fragment"
6636
  msgstr ""
6637
 
6638
  #. Translators: Make the text bold.
6639
- #: languages/vue.php:1105
6640
  msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
6641
  msgstr ""
6642
 
6643
- #: languages/vue.php:1108
6644
  msgid "URL to use"
6645
  msgstr ""
6646
 
6647
- #: languages/vue.php:1111
6648
  msgid "(Updates automatically)"
6649
  msgstr ""
6650
 
6651
- #: languages/vue.php:1114
6652
  msgid "Copy to Clipboard"
6653
  msgstr ""
6654
 
6655
- #: languages/vue.php:1117
6656
  msgid "Copy to Pretty Links"
6657
  msgstr ""
6658
 
6659
- #: languages/vue.php:1120
6660
  msgid "Make your campaign links prettier!"
6661
  msgstr ""
6662
 
6663
- #: languages/vue.php:1123
6664
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links."
6665
  msgstr ""
6666
 
6667
- #: languages/vue.php:1126
6668
  msgid "More Information & Examples"
6669
  msgstr ""
6670
 
6671
- #: languages/vue.php:1129
6672
  msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
6673
  msgstr ""
6674
 
6675
- #: languages/vue.php:1132
6676
  msgid "Campaign Source"
6677
  msgstr ""
6678
 
6679
- #: languages/vue.php:1135
6680
  msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
6681
  msgstr ""
6682
 
6683
- #: languages/vue.php:1138
6684
  msgid "Campaign Medium"
6685
  msgstr ""
6686
 
6687
- #: languages/vue.php:1141
6688
  msgid "Use utm_medium to identify a medium such as email or cost-per-click."
6689
  msgstr ""
6690
 
6691
- #: languages/vue.php:1144
6692
  msgid "Campaign Name"
6693
  msgstr ""
6694
 
6695
- #: languages/vue.php:1147
6696
  msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
6697
  msgstr ""
6698
 
6699
- #: languages/vue.php:1150
6700
  msgid "Campaign Term"
6701
  msgstr ""
6702
 
6703
- #: languages/vue.php:1153
6704
  msgid "Used for paid search. Use utm_term to note the keywords for this ad."
6705
  msgstr ""
6706
 
6707
- #: languages/vue.php:1156
6708
  msgid "Campaign Content"
6709
  msgstr ""
6710
 
6711
- #: languages/vue.php:1159
6712
  msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
6713
  msgstr ""
6714
 
6715
  #. Translators: Example.
6716
- #: languages/vue.php:1163
6717
  msgid "Example: %s"
6718
  msgstr ""
6719
 
6720
  #. Translators: Examples.
6721
- #: languages/vue.php:1167
6722
  msgid "Examples: %s"
6723
  msgstr ""
6724
 
6725
- #: languages/vue.php:1170
6726
  msgid "About Campaigns"
6727
  msgstr ""
6728
 
6729
- #: languages/vue.php:1173
6730
  msgid "About Custom Campaigns"
6731
  msgstr ""
6732
 
6733
- #: languages/vue.php:1176
6734
  msgid "Best Practices for Creating Custom Campaigns"
6735
  msgstr ""
6736
 
6737
- #: languages/vue.php:1179
6738
  msgid "About the Referral Traffic Report"
6739
  msgstr ""
6740
 
6741
- #: languages/vue.php:1182
6742
  msgid "About Traffic Source Dimensions"
6743
  msgstr ""
6744
 
6745
- #: languages/vue.php:1185
6746
  msgid "AdWords Auto-Tagging"
6747
  msgstr ""
6748
 
6749
- #: languages/vue.php:1188
6750
  msgid "Additional Information"
6751
  msgstr ""
6752
 
6753
- #: languages/vue.php:1191
6754
  msgid "Import/Export"
6755
  msgstr ""
6756
 
6757
- #: languages/vue.php:1194
6758
  msgid "Import"
6759
  msgstr ""
6760
 
6761
- #: languages/vue.php:1197
6762
  msgid "Import settings from another MonsterInsights website."
6763
  msgstr ""
6764
 
6765
- #: languages/vue.php:1200
6766
  msgid "Export"
6767
  msgstr ""
6768
 
6769
- #: languages/vue.php:1203
6770
  msgid "Export settings to import into another MonsterInsights install."
6771
  msgstr ""
6772
 
6773
- #: languages/vue.php:1206
6774
  msgid "Import Settings"
6775
  msgstr ""
6776
 
6777
- #: languages/vue.php:1209
6778
  msgid "Export Settings"
6779
  msgstr ""
6780
 
6781
- #: languages/vue.php:1212
6782
  msgid "Please choose a file to import"
6783
  msgstr ""
6784
 
6785
- #: languages/vue.php:1215
6786
  msgid "Click Choose file below to select the settings export file from another site."
6787
  msgstr ""
6788
 
6789
- #: languages/vue.php:1218
6790
  msgid "Use the button below to export a file with your MonsterInsights settings."
6791
  msgstr ""
6792
 
6793
- #: languages/vue.php:1221
6794
  msgid "Uploading file..."
6795
  msgstr ""
6796
 
6797
- #: languages/vue.php:1224
6798
  msgid "File imported"
6799
  msgstr ""
6800
 
6801
- #: languages/vue.php:1227
6802
  msgid "Settings successfully updated!"
6803
  msgstr ""
6804
 
6805
- #: languages/vue.php:1230
6806
  msgid "Error importing settings"
6807
  msgstr ""
6808
 
6809
- #: languages/vue.php:1233
6810
  msgid "Please choose a .json file generated by a MonsterInsights settings export."
6811
  msgstr ""
6812
 
6813
- #: languages/vue.php:1236
6814
  msgid "MonsterInsights Recommends WPForms"
6815
  msgstr ""
6816
 
6817
- #: languages/vue.php:1239
6818
  msgid "Built by the folks behind MonsterInsights, WPForms is the most beginner friendly form plugin in the market."
6819
  msgstr ""
6820
 
6821
- #: languages/vue.php:1242
6822
  msgid "Used on over 4,000,000 websites!"
6823
  msgstr ""
6824
 
6825
- #: languages/vue.php:1245
6826
  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!"
6827
  msgstr ""
6828
 
6829
- #: languages/vue.php:1248
6830
  msgid "Skip this Step"
6831
  msgstr ""
6832
 
6833
- #: languages/vue.php:1251
6834
  msgid "Continue & Install WPForms"
6835
  msgstr ""
6836
 
@@ -6846,93 +6846,93 @@ msgstr ""
6846
  msgid "Show in full-width mode"
6847
  msgstr ""
6848
 
6849
- #: languages/vue.php:1268
6850
  msgid "Installing Addon"
6851
  msgstr ""
6852
 
6853
- #: languages/vue.php:1271
6854
  msgid "Activating Addon"
6855
  msgstr ""
6856
 
6857
- #: languages/vue.php:1274
6858
  msgid "Addon Activated"
6859
  msgstr ""
6860
 
6861
- #: languages/vue.php:1277
6862
  msgid "Loading report data"
6863
  msgstr ""
6864
 
6865
- #: languages/vue.php:1280
6866
  msgid "Please activate manually"
6867
  msgstr ""
6868
 
6869
  #. Translators: Adds the error status and status text.
6870
- #: languages/vue.php:1284
6871
  msgid "Error: %1$s, %2$s"
6872
  msgstr ""
6873
 
6874
- #: languages/vue.php:1287
6875
  msgid "Error Activating Addon"
6876
  msgstr ""
6877
 
6878
- #: languages/vue.php:1290
6879
  #: lite/includes/admin/wp-site-health.php:375
6880
  #: lite/includes/admin/wp-site-health.php:401
6881
  #: lite/includes/admin/wp-site-health.php:428
6882
  msgid "View Addons"
6883
  msgstr ""
6884
 
6885
- #: languages/vue.php:1293
6886
  msgid "Dismiss"
6887
  msgstr ""
6888
 
6889
- #: languages/vue.php:1296
6890
  msgid "Redirecting"
6891
  msgstr ""
6892
 
6893
- #: languages/vue.php:1299
6894
  msgid "Please wait"
6895
  msgstr ""
6896
 
6897
- #: languages/vue.php:1303
6898
  msgid "activate"
6899
  msgstr ""
6900
 
6901
- #: languages/vue.php:1307
6902
  msgid "install"
6903
  msgstr ""
6904
 
6905
- #: languages/vue.php:1311
6906
  msgid "Visit addons page"
6907
  msgstr ""
6908
 
6909
- #: languages/vue.php:1314
6910
  msgid "Report Unavailable"
6911
  msgstr ""
6912
 
6913
  #. Translators: Install/Activate the addon.
6914
- #: languages/vue.php:1318
6915
  msgid "%s Addon"
6916
  msgstr ""
6917
 
6918
- #: languages/vue.php:1321
6919
  msgid "Go Back To Reports"
6920
  msgstr ""
6921
 
6922
- #: languages/vue.php:1324
6923
  msgid "Enable Enhanced eCommerce"
6924
  msgstr ""
6925
 
6926
  #. Translators: Placeholders are used for making text bold and adding a link.
6927
- #: languages/vue.php:1328
6928
  msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
6929
  msgstr ""
6930
 
6931
- #: languages/vue.php:1331
6932
  msgid "Last 30 Days Insights for:"
6933
  msgstr ""
6934
 
6935
- #: languages/vue.php:1334
6936
  msgid "Your Website"
6937
  msgstr ""
6938
 
@@ -6940,753 +6940,753 @@ msgstr ""
6940
  msgid "Sessions"
6941
  msgstr ""
6942
 
6943
- #: languages/vue.php:1340
6944
  msgid "Pageviews"
6945
  msgstr ""
6946
 
6947
- #: languages/vue.php:1343
6948
  msgid "Avg. Duration"
6949
  msgstr ""
6950
 
6951
- #: languages/vue.php:1349
6952
  msgid "Total Users"
6953
  msgstr ""
6954
 
6955
- #: languages/vue.php:1352
6956
  msgid "More data is available"
6957
  msgstr ""
6958
 
6959
- #: languages/vue.php:1355
6960
  msgid "Want to see page-specific stats?"
6961
  msgstr ""
6962
 
6963
- #: languages/vue.php:1358
6964
  msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
6965
  msgstr ""
6966
 
6967
- #: languages/vue.php:1361
6968
  msgid "No addons found."
6969
  msgstr ""
6970
 
6971
- #: languages/vue.php:1364
6972
  msgid "Refresh Addons"
6973
  msgstr ""
6974
 
6975
- #: languages/vue.php:1367
6976
  msgid "Refreshing Addons"
6977
  msgstr ""
6978
 
6979
  #. Translators: Make text green.
6980
- #: languages/vue.php:1371
6981
  msgid "Upgrade to Pro to unlock addons and other great features. As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
6982
  msgstr ""
6983
 
6984
- #: languages/vue.php:1374
6985
  msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
6986
  msgstr ""
6987
 
6988
- #: languages/vue.php:1377
6989
  msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
6990
  msgstr ""
6991
 
6992
- #: languages/vue.php:1380
6993
  msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
6994
  msgstr ""
6995
 
6996
- #: languages/vue.php:1383
6997
  msgid "See All Your Important Store Metrics in One Place"
6998
  msgstr ""
6999
 
7000
- #: languages/vue.php:1386
7001
  msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
7002
  msgstr ""
7003
 
7004
- #: languages/vue.php:1389
7005
  msgid "ONE-CLICK INTEGRATIONS"
7006
  msgstr ""
7007
 
7008
- #: languages/vue.php:1392
7009
  msgid "Enable Ecommerce Tracking and Grow Your Business with Confidence"
7010
  msgstr ""
7011
 
7012
- #: languages/vue.php:1395
7013
  msgid "MonsterInsights Ecommerce Addon makes it easy to setup enhanced eCommerce tracking, so you can see all your important eCommerce metrics like total revenue, conversion rate, average order value, top products, top referral sources, and more in a single report right inside your WordPress dashboard."
7014
  msgstr ""
7015
 
7016
- #: languages/vue.php:1398
7017
  msgid "Affiliate Tracking"
7018
  msgstr ""
7019
 
7020
- #: languages/vue.php:1401
7021
  msgid "Automatically Track Affiliate Sales"
7022
  msgstr ""
7023
 
7024
- #: languages/vue.php:1404
7025
  msgid "The MonsterInsights eCommerce addon works with EasyAffiliate to automatically attribute orders originating from an EasyAffiliate link in Google Analytics. Gain valuable insights into your top affiliates with no coding required."
7026
  msgstr ""
7027
 
7028
- #: languages/vue.php:1407
7029
  msgid "Works with WooCommerce, MemberPress and Easy Digital Downloads."
7030
  msgstr ""
7031
 
7032
- #: languages/vue.php:1416
7033
  msgid "Cart Funnel"
7034
  msgstr ""
7035
 
7036
- #: languages/vue.php:1419
7037
  msgid "Customer Insights"
7038
  msgstr ""
7039
 
7040
- #: languages/vue.php:1422
7041
  msgid "Campaign Measurement"
7042
  msgstr ""
7043
 
7044
- #: languages/vue.php:1425
7045
  msgid "Customer Profiles"
7046
  msgstr ""
7047
 
7048
- #: languages/vue.php:1428
7049
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, revenue, and average order value, and more."
7050
  msgstr ""
7051
 
7052
- #: languages/vue.php:1431
7053
  msgid "Truly Understand Your%1$s Customers With %2$sMonsterInsights%3$s"
7054
  msgstr ""
7055
 
7056
- #: languages/vue.php:1434
7057
  msgid "You never truly understand your customers until you used Enhanced %1$s eCommerce from MonsterInsights!"
7058
  msgstr ""
7059
 
7060
- #: languages/vue.php:1437
7061
  msgid "Track all-new metrics!"
7062
  msgstr ""
7063
 
7064
- #: languages/vue.php:1440
7065
  msgid "Get stats WooCommerce doesn’t give you like: Conversion Sources, Avg. Order Value, Revenue per Source, Total Add to Carts & More!"
7066
  msgstr ""
7067
 
7068
- #: languages/vue.php:1443
7069
  msgid "FEATURES"
7070
  msgstr ""
7071
 
7072
- #: languages/vue.php:1446
7073
  msgid "Get The Unique Metrics Neccessary for Growth"
7074
  msgstr ""
7075
 
7076
- #: languages/vue.php:1449
7077
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, %1$srevenue, and average order value, and more."
7078
  msgstr ""
7079
 
7080
- #: languages/vue.php:1452
7081
  msgid "Get Answers to the important questions %1$syou should know."
7082
  msgstr ""
7083
 
7084
- #: languages/vue.php:1455
7085
  msgid "Did the login/registration step of the checkout put users off?"
7086
  msgstr ""
7087
 
7088
- #: languages/vue.php:1458
7089
  msgid "Which ad campaign is driving the most revenue?"
7090
  msgstr ""
7091
 
7092
- #: languages/vue.php:1461
7093
  msgid "Who is my typical customer?"
7094
  msgstr ""
7095
 
7096
- #: languages/vue.php:1464
7097
  msgid "Level-up Your eCommerce store with %1$sMonsterInsights + WooCommerce!%1$s"
7098
  msgstr ""
7099
 
7100
  #. Translators: placeholders make text small.
7101
- #: languages/vue.php:1469
7102
  msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
7103
  msgstr ""
7104
 
7105
  #. Translators: placeholders make text small.
7106
- #: languages/vue.php:1474
7107
  msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
7108
  msgstr ""
7109
 
7110
  #. Translators: placeholders make text small.
7111
- #: languages/vue.php:1479
7112
  msgid "None %1$s- Manually update everything.%2$s"
7113
  msgstr ""
7114
 
7115
- #: languages/vue.php:1483
7116
  msgid "Automatic Updates"
7117
  msgstr ""
7118
 
7119
- #: languages/vue.php:1486
7120
  msgid "Awesome, You're All Set!"
7121
  msgstr ""
7122
 
7123
- #: languages/vue.php:1489
7124
  msgid "MonsterInsights is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
7125
  msgstr ""
7126
 
7127
  #. Translators: Make text bold.
7128
- #: languages/vue.php:1493
7129
  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."
7130
  msgstr ""
7131
 
7132
  #. Translators: Link to our blog.
7133
- #: languages/vue.php:1497
7134
  msgid "%1$sSubscribe to the MonsterInsights blog%2$s for tips on how to get more traffic and grow your business."
7135
  msgstr ""
7136
 
7137
- #: languages/vue.php:1500
7138
  msgid "Finish Setup & Exit Wizard"
7139
  msgstr ""
7140
 
7141
- #: languages/vue.php:1503
7142
  msgid "Checking your website..."
7143
  msgstr ""
7144
 
7145
- #: languages/vue.php:1506
7146
  msgid "See All Reports"
7147
  msgstr ""
7148
 
7149
- #: languages/vue.php:1509
7150
  msgid "Go to the Analytics Dashboard"
7151
  msgstr ""
7152
 
7153
  #. Translators: Line break.
7154
- #: languages/vue.php:1513
7155
  msgid "Unique %s Sessions"
7156
  msgstr ""
7157
 
7158
  #. Translators: Line break.
7159
- #: languages/vue.php:1518
7160
  msgid "Unique %s Pageviews"
7161
  msgstr ""
7162
 
7163
- #: languages/vue.php:1521
7164
  msgid "A session is the browsing session of a single user to your site."
7165
  msgstr ""
7166
 
7167
- #: languages/vue.php:1524
7168
  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."
7169
  msgstr ""
7170
 
7171
- #: languages/vue.php:1527
7172
  msgid "Total duration of all sessions (in seconds) / number of sessions."
7173
  msgstr ""
7174
 
7175
- #: languages/vue.php:1530
7176
  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."
7177
  msgstr ""
7178
 
7179
- #: languages/vue.php:1533
7180
  msgid "The number of distinct tracked users"
7181
  msgstr ""
7182
 
7183
- #: languages/vue.php:1536
7184
  msgid "Avg. Session Duration"
7185
  msgstr ""
7186
 
7187
- #: languages/vue.php:1539
7188
  msgid "Still Calculating..."
7189
  msgstr ""
7190
 
7191
- #: languages/vue.php:1542
7192
  msgid "Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year."
7193
  msgstr ""
7194
 
7195
- #: languages/vue.php:1545
7196
  msgid "Back to Overview Report"
7197
  msgstr ""
7198
 
7199
- #: languages/vue.php:1548
7200
  msgid "Your 2020 Analytics Report"
7201
  msgstr ""
7202
 
7203
- #: languages/vue.php:1551
7204
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2021!"
7205
  msgstr ""
7206
 
7207
- #: languages/vue.php:1554
7208
  msgid "Audience"
7209
  msgstr ""
7210
 
7211
- #: languages/vue.php:1557
7212
  msgid "Congrats"
7213
  msgstr ""
7214
 
7215
- #: languages/vue.php:1560
7216
  msgid "Your website was quite popular this year! "
7217
  msgstr ""
7218
 
7219
- #: languages/vue.php:1563
7220
  msgid "You had "
7221
  msgstr ""
7222
 
7223
- #: languages/vue.php:1566
7224
  msgid " visitors!"
7225
  msgstr ""
7226
 
7227
- #: languages/vue.php:1569
7228
  msgid " visitors"
7229
  msgstr ""
7230
 
7231
- #: languages/vue.php:1572
7232
  msgid "Total Visitors"
7233
  msgstr ""
7234
 
7235
- #: languages/vue.php:1575
7236
  msgid "Total Sessions"
7237
  msgstr ""
7238
 
7239
- #: languages/vue.php:1578
7240
  msgid "Visitors by Month"
7241
  msgstr ""
7242
 
7243
- #: languages/vue.php:1581
7244
  msgid "January 1, 2020 - December 31, 2020"
7245
  msgstr ""
7246
 
7247
- #: languages/vue.php:1584
7248
  msgid "A Tip for 2021"
7249
  msgstr ""
7250
 
7251
- #: languages/vue.php:1587
7252
  msgid "Demographics"
7253
  msgstr ""
7254
 
7255
- #: languages/vue.php:1590
7256
  msgid "#1"
7257
  msgstr ""
7258
 
7259
- #: languages/vue.php:1593
7260
  msgid "You Top 5 Countries"
7261
  msgstr ""
7262
 
7263
- #: languages/vue.php:1596
7264
  msgid "Let’s get to know your visitors a little better, shall we?"
7265
  msgstr ""
7266
 
7267
- #: languages/vue.php:1599
7268
  msgid "Gender"
7269
  msgstr ""
7270
 
7271
- #: languages/vue.php:1602
7272
  msgid "Female"
7273
  msgstr ""
7274
 
7275
- #: languages/vue.php:1605
7276
  msgid "Women"
7277
  msgstr ""
7278
 
7279
- #: languages/vue.php:1608
7280
  msgid "Male"
7281
  msgstr ""
7282
 
7283
- #: languages/vue.php:1611
7284
  msgid "Average Age"
7285
  msgstr ""
7286
 
7287
- #: languages/vue.php:1615
7288
  msgid "Behavior"
7289
  msgstr ""
7290
 
7291
- #: languages/vue.php:1618
7292
  msgid "Your Top 5 Pages"
7293
  msgstr ""
7294
 
7295
- #: languages/vue.php:1621
7296
  msgid "Time Spent on Site"
7297
  msgstr ""
7298
 
7299
- #: languages/vue.php:1624
7300
  msgid "minutes"
7301
  msgstr ""
7302
 
7303
- #: languages/vue.php:1627
7304
  msgid "Device Type"
7305
  msgstr ""
7306
 
7307
- #: languages/vue.php:1630
7308
  msgid "A Tip For 2021"
7309
  msgstr ""
7310
 
7311
- #: languages/vue.php:1633
7312
  msgid "Take advantage of what you’ve already built. See how to get more traffic from existing content in our 32 Marketing Hacks to Grow Your Traffic."
7313
  msgstr ""
7314
 
7315
- #: languages/vue.php:1636
7316
  msgid "Read - 32 Marketing Hacks to Grow Your Traffic"
7317
  msgstr ""
7318
 
7319
- #: languages/vue.php:1639
7320
  msgid "So, where did all of these visitors come from?"
7321
  msgstr ""
7322
 
7323
- #: languages/vue.php:1642
7324
  msgid "Clicks"
7325
  msgstr ""
7326
 
7327
- #: languages/vue.php:1645
7328
  msgid "Your Top 5 Keywords"
7329
  msgstr ""
7330
 
7331
- #: languages/vue.php:1648
7332
  msgid "What keywords visitors searched for to find your site"
7333
  msgstr ""
7334
 
7335
- #: languages/vue.php:1651
7336
  msgid "Your Top 5 Referrals"
7337
  msgstr ""
7338
 
7339
- #: languages/vue.php:1654
7340
  msgid "The websites that link back to your website"
7341
  msgstr ""
7342
 
7343
- #: languages/vue.php:1657
7344
  msgid "Opportunity"
7345
  msgstr ""
7346
 
7347
- #: languages/vue.php:1660
7348
  msgid "Use referral sources to create new partnerships or expand existing ones. See our guide on how to spy on your competitors and ethically steal their traffic."
7349
  msgstr ""
7350
 
7351
- #: languages/vue.php:1663
7352
  msgid "Read - How to Ethically Steal Your Competitor’s Traffic"
7353
  msgstr ""
7354
 
7355
- #: languages/vue.php:1666
7356
  msgid "Thank you for using MonsterInsights!"
7357
  msgstr ""
7358
 
7359
- #: languages/vue.php:1669
7360
  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."
7361
  msgstr ""
7362
 
7363
- #: languages/vue.php:1672
7364
  msgid "Here's to an amazing 2021!"
7365
  msgstr ""
7366
 
7367
- #: languages/vue.php:1675
7368
  msgid "Enjoying MonsterInsights"
7369
  msgstr ""
7370
 
7371
- #: languages/vue.php:1678
7372
  msgid "Leave a five star review!"
7373
  msgstr ""
7374
 
7375
- #: languages/vue.php:1681
7376
  msgid "Syed Balkhi"
7377
  msgstr ""
7378
 
7379
- #: languages/vue.php:1684
7380
  msgid "Chris Christoff"
7381
  msgstr ""
7382
 
7383
- #: languages/vue.php:1687
7384
  msgid "Write Review"
7385
  msgstr ""
7386
 
7387
- #: languages/vue.php:1690
7388
  msgid "Did you know over 10 million websites use our plugins?"
7389
  msgstr ""
7390
 
7391
- #: languages/vue.php:1693
7392
  msgid "Try our other popular WordPress plugins to grow your website in 2021."
7393
  msgstr ""
7394
 
7395
- #: languages/vue.php:1696
7396
  msgid "Join our Communities!"
7397
  msgstr ""
7398
 
7399
- #: languages/vue.php:1699
7400
  msgid "Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level."
7401
  msgstr ""
7402
 
7403
- #: languages/vue.php:1702
7404
  msgid "Facebook Group"
7405
  msgstr ""
7406
 
7407
- #: languages/vue.php:1705
7408
  msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
7409
  msgstr ""
7410
 
7411
- #: languages/vue.php:1708
7412
  msgid "Join Now...It’s Free!"
7413
  msgstr ""
7414
 
7415
- #: languages/vue.php:1711
7416
  msgid "WordPress Tutorials by WPBeginner"
7417
  msgstr ""
7418
 
7419
- #: languages/vue.php:1714
7420
  msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
7421
  msgstr ""
7422
 
7423
- #: languages/vue.php:1717
7424
  msgid "Visit WPBeginner"
7425
  msgstr ""
7426
 
7427
- #: languages/vue.php:1720
7428
  msgid "Follow Us!"
7429
  msgstr ""
7430
 
7431
- #: languages/vue.php:1723
7432
  msgid "Follow MonsterInsights on social media to stay up to date with latest updates, trends, and tutorials on how to make the most out of analytics."
7433
  msgstr ""
7434
 
7435
- #: languages/vue.php:1726
7436
  msgid "Copyright MonsterInsights, 2021"
7437
  msgstr ""
7438
 
7439
- #: languages/vue.php:1729
7440
  msgid "Upgrade to MonsterInsights Pro to Unlock Additional Actionable Insights"
7441
  msgstr ""
7442
 
7443
- #: languages/vue.php:1732
7444
  msgid "January"
7445
  msgstr ""
7446
 
7447
- #: languages/vue.php:1735
7448
  msgid "February"
7449
  msgstr ""
7450
 
7451
- #: languages/vue.php:1738
7452
  msgid "March"
7453
  msgstr ""
7454
 
7455
- #: languages/vue.php:1741
7456
  msgid "April"
7457
  msgstr ""
7458
 
7459
- #: languages/vue.php:1744
7460
  msgid "May"
7461
  msgstr ""
7462
 
7463
- #: languages/vue.php:1747
7464
  msgid "June"
7465
  msgstr ""
7466
 
7467
- #: languages/vue.php:1750
7468
  msgid "July"
7469
  msgstr ""
7470
 
7471
- #: languages/vue.php:1753
7472
  msgid "August"
7473
  msgstr ""
7474
 
7475
- #: languages/vue.php:1756
7476
  msgid "September"
7477
  msgstr ""
7478
 
7479
- #: languages/vue.php:1759
7480
  msgid "October"
7481
  msgstr ""
7482
 
7483
- #: languages/vue.php:1762
7484
  msgid "November"
7485
  msgstr ""
7486
 
7487
- #: languages/vue.php:1765
7488
  msgid "December"
7489
  msgstr ""
7490
 
7491
  #. Translators: Number of visitors.
7492
- #: languages/vue.php:1769
7493
  msgid "Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>"
7494
  msgstr ""
7495
 
7496
- #: languages/vue.php:1772
7497
  msgid "See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success."
7498
  msgstr ""
7499
 
7500
  #. Translators: Number of visitors.
7501
- #: languages/vue.php:1776
7502
  msgid "Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries."
7503
  msgstr ""
7504
 
7505
  #. Translators: Number of visitors.
7506
- #: languages/vue.php:1780
7507
  msgid "%s Visitors"
7508
  msgstr ""
7509
 
7510
  #. Translators: Percent and Number of visitors.
7511
- #: languages/vue.php:1784
7512
  msgid "%1$s&#37 of your visitors were %2$s"
7513
  msgstr ""
7514
 
7515
  #. Translators: Number of visitors and their age.
7516
- #: languages/vue.php:1788
7517
  msgid "%1$s&#37 of your visitors were between the ages of %2$s"
7518
  msgstr ""
7519
 
7520
- #: languages/vue.php:1791
7521
  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>"
7522
  msgstr ""
7523
 
7524
  #. Translators: Number of minutes spent on site.
7525
- #: languages/vue.php:1795
7526
  msgid "Each visitor spent an average of %s minutes on your website in 2020."
7527
  msgstr ""
7528
 
7529
  #. Translators: Name of device type.
7530
- #: languages/vue.php:1799
7531
  msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
7532
  msgstr ""
7533
 
7534
  #. Translators: Number of visitors and device percentage.
7535
- #: languages/vue.php:1803
7536
  msgid "%1$s&#37 of your visitors were on a %2$s device."
7537
  msgstr ""
7538
 
7539
- #: languages/vue.php:1806
7540
  msgid "Desktop"
7541
  msgstr ""
7542
 
7543
- #: languages/vue.php:1809
7544
  msgid "Tablet"
7545
  msgstr ""
7546
 
7547
- #: languages/vue.php:1812
7548
  msgid "Mobile"
7549
  msgstr ""
7550
 
7551
- #: languages/vue.php:1815
7552
  msgid "Right Now"
7553
  msgstr ""
7554
 
7555
- #: languages/vue.php:1818
7556
  msgid "Active users on site"
7557
  msgstr ""
7558
 
7559
- #: languages/vue.php:1821
7560
  msgid "The real-time graph of visitors over time is not currently available for this site. Please try again later."
7561
  msgstr ""
7562
 
7563
- #: languages/vue.php:1824
7564
  msgid "Important: this only includes users who are tracked in real-time. Not all users are tracked in real-time including (but not limited to) logged-in site administrators, certain mobile users, and users who match a Google Analytics filter."
7565
  msgstr ""
7566
 
7567
- #: languages/vue.php:1827
7568
  msgid "The real-time report automatically updates approximately every 60 seconds."
7569
  msgstr ""
7570
 
7571
  #. Translators: Number of seconds that have passed since the report was refreshed.
7572
- #: languages/vue.php:1831
7573
  msgid "The real-time report was last updated %s seconds ago."
7574
  msgstr ""
7575
 
7576
- #: languages/vue.php:1834
7577
  msgid "The latest data will be automatically shown on this page when it becomes available."
7578
  msgstr ""
7579
 
7580
- #: languages/vue.php:1837
7581
  msgid "There is no need to refresh the browser (doing so won't have any effect)."
7582
  msgstr ""
7583
 
7584
- #: languages/vue.php:1840
7585
  msgid "Pageviews Per Minute"
7586
  msgstr ""
7587
 
7588
- #: languages/vue.php:1843
7589
  msgid "Top Pages"
7590
  msgstr ""
7591
 
7592
- #: languages/vue.php:1846
7593
  msgid "No pageviews currently."
7594
  msgstr ""
7595
 
7596
- #: languages/vue.php:1849
7597
  msgid "Page"
7598
  msgstr ""
7599
 
7600
- #: languages/vue.php:1852
7601
  msgid "Pageview Count"
7602
  msgstr ""
7603
 
7604
- #: languages/vue.php:1855
7605
  msgid "Percent of Total"
7606
  msgstr ""
7607
 
7608
- #: languages/vue.php:1858
7609
  msgid "This is the number of active users currently on your site."
7610
  msgstr ""
7611
 
7612
- #: languages/vue.php:1861
7613
  msgid "This graph shows the number of pageviews for each of the last 30 minutes."
7614
  msgstr ""
7615
 
7616
- #: languages/vue.php:1864
7617
  msgid "This list shows the top pages users are currently viewing on your site."
7618
  msgstr ""
7619
 
7620
- #: languages/vue.php:1867
7621
  msgid "View All Real-Time Pageviews"
7622
  msgstr ""
7623
 
7624
- #: languages/vue.php:1870
7625
  msgid "View All Real-Time Traffic Sources"
7626
  msgstr ""
7627
 
7628
- #: languages/vue.php:1873
7629
  msgid "View All Real-Time Traffic by Country"
7630
  msgstr ""
7631
 
7632
- #: languages/vue.php:1876
7633
  msgid "View All Real-Time Traffic by City"
7634
  msgstr ""
7635
 
7636
- #: languages/vue.php:1879
7637
  msgid "Show Overview Reports"
7638
  msgstr ""
7639
 
7640
- #: languages/vue.php:1882
7641
  msgid "Show Publishers Reports"
7642
  msgstr ""
7643
 
7644
- #: languages/vue.php:1885
7645
  msgid "Show eCommerce Reports"
7646
  msgstr ""
7647
 
7648
- #: languages/vue.php:1888
7649
  msgid "Settings Menu"
7650
  msgstr ""
7651
 
7652
- #: languages/vue.php:1891
7653
  msgid "Available in PRO version"
7654
  msgstr ""
7655
 
7656
- #: languages/vue.php:1894
7657
  msgid "Thank you for being a loyal MonsterInsights Lite user."
7658
  msgstr ""
7659
 
7660
- #: languages/vue.php:1897
7661
  msgid "Upgrade to MonsterInsights Pro and unlock all the awesome features."
7662
  msgstr ""
7663
 
7664
  #. Translators: Gets replaced with the coupon code.
7665
- #: languages/vue.php:1901
7666
  msgid "Use coupon code %s to get 50%% off."
7667
  msgstr ""
7668
 
7669
- #: languages/vue.php:1904
7670
  msgid "Dashboard widget"
7671
  msgstr ""
7672
 
7673
- #: languages/vue.php:1907
7674
  msgid "Affiliate Links"
7675
  msgstr ""
7676
 
7677
- #: languages/vue.php:1910
7678
  msgid "Enhanced Ecommerce"
7679
  msgstr ""
7680
 
7681
- #: languages/vue.php:1913
7682
  msgid "Banner Ads"
7683
  msgstr ""
7684
 
7685
- #: languages/vue.php:1916
7686
  msgid "Google AMP"
7687
  msgstr ""
7688
 
7689
- #: languages/vue.php:1919
7690
  msgid "SEO Score Tracking"
7691
  msgstr ""
7692
 
@@ -7966,65 +7966,65 @@ msgid "Can't install WPForms. Error: %1$s, %2$s"
7966
  msgstr ""
7967
 
7968
  #. Translators: Example path (/go/).
7969
- #: languages/vue.php:2140
7970
  msgid "Path (example: %s)"
7971
  msgstr ""
7972
 
7973
- #: languages/vue.php:2143
7974
  msgid "Path has to start with a / and have no spaces"
7975
  msgstr ""
7976
 
7977
  #. Translators: Example label (aff).
7978
- #: languages/vue.php:2147
7979
  msgid "Label (example: %s)"
7980
  msgstr ""
7981
 
7982
- #: languages/vue.php:2150
7983
  msgid "Label can't contain any spaces"
7984
  msgstr ""
7985
 
7986
  #. Translators: Add links to documentation.
7987
- #: languages/vue.php:2154
7988
  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."
7989
  msgstr ""
7990
 
7991
- #: languages/vue.php:2157
7992
  msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
7993
  msgstr ""
7994
 
7995
- #: languages/vue.php:2160
7996
  msgid "The MonsterInsights 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."
7997
  msgstr ""
7998
 
7999
- #: languages/vue.php:2163
8000
  msgid "Disable the Headline Analyzer"
8001
  msgstr ""
8002
 
8003
- #: languages/vue.php:2166
8004
  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 Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
8005
  msgstr ""
8006
 
8007
- #: languages/vue.php:2169
8008
  msgid "Or manually enter UA code (limited functionality)"
8009
  msgstr ""
8010
 
8011
- #: languages/vue.php:2173
8012
  msgid "Dual Tracking Profile"
8013
  msgstr ""
8014
 
8015
- #: languages/vue.php:2177
8016
  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."
8017
  msgstr ""
8018
 
8019
- #: languages/vue.php:2180
8020
  msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers."
8021
  msgstr ""
8022
 
8023
- #: languages/vue.php:2184
8024
  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."
8025
  msgstr ""
8026
 
8027
- #: languages/vue.php:2187
8028
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
8029
  msgstr ""
8030
 
@@ -8032,2450 +8032,2535 @@ msgstr ""
8032
  msgid "Measurement Protocol API Secret"
8033
  msgstr ""
8034
 
8035
- #: languages/vue.php:2195
8036
  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."
8037
  msgstr ""
8038
 
8039
- #: languages/vue.php:2198
8040
  msgid "Force Deauthenticate"
8041
  msgstr ""
8042
 
8043
- #: languages/vue.php:2201
8044
  msgid "Disconnect MonsterInsights"
8045
  msgstr ""
8046
 
8047
- #: languages/vue.php:2205
8048
  msgid "Authenticating"
8049
  msgstr ""
8050
 
8051
- #: languages/vue.php:2208
8052
  msgid "Verifying Credentials"
8053
  msgstr ""
8054
 
8055
- #: languages/vue.php:2211
8056
  msgid "Your site is connected to MonsterInsights!"
8057
  msgstr ""
8058
 
8059
- #: languages/vue.php:2214
8060
  msgid "Deauthenticating"
8061
  msgstr ""
8062
 
8063
- #: languages/vue.php:2217
8064
  msgid "You've disconnected your site from MonsterInsights. Your site is no longer being tracked by Google Analytics and you won't see reports anymore."
8065
  msgstr ""
8066
 
8067
- #: languages/vue.php:2221
8068
  msgid "Connect MonsterInsights"
8069
  msgstr ""
8070
 
8071
- #: languages/vue.php:2224
8072
  msgid "Verify Credentials"
8073
  msgstr ""
8074
 
8075
- #: languages/vue.php:2227
8076
  msgid "Website Profile"
8077
  msgstr ""
8078
 
8079
- #: languages/vue.php:2230
8080
  msgid "Active Profile"
8081
  msgstr ""
8082
 
8083
- #: languages/vue.php:2234
8084
  msgid "Your website profile has been set at the network level of your WordPress Multisite."
8085
  msgstr ""
8086
 
8087
- #: languages/vue.php:2238
8088
  msgid "If you would like to use a different profile for this subsite, you can authenticate below."
8089
  msgstr ""
8090
 
8091
- #: languages/vue.php:2241
8092
  msgid "Manually enter your UA code"
8093
  msgstr ""
8094
 
8095
- #: languages/vue.php:2244
8096
  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."
8097
  msgstr ""
8098
 
8099
- #: languages/vue.php:2248
8100
  msgid "Manually enter your GA4 Measurement ID"
8101
  msgstr ""
8102
 
8103
- #: languages/vue.php:2251
8104
  msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
8105
  msgstr ""
8106
 
8107
- #: languages/vue.php:2254
8108
  msgid "Anonymize IP Addresses"
8109
  msgstr ""
8110
 
8111
- #: languages/vue.php:2257
8112
  msgid "Link Attribution"
8113
  msgstr ""
8114
 
8115
- #: languages/vue.php:2260
8116
  msgid "Enable Enhanced Link Attribution"
8117
  msgstr ""
8118
 
8119
- #: languages/vue.php:2263
8120
  msgid "Enable Anchor Tracking"
8121
  msgstr ""
8122
 
8123
- #: languages/vue.php:2266
8124
  msgid "Enable allowAnchor"
8125
  msgstr ""
8126
 
8127
- #: languages/vue.php:2269
8128
  msgid "Enable allowLinker"
8129
  msgstr ""
8130
 
8131
- #: languages/vue.php:2272
8132
  msgid "Enable Tag Links in RSS"
8133
  msgstr ""
8134
 
8135
- #: languages/vue.php:2275
8136
  msgid "File Downloads"
8137
  msgstr ""
8138
 
8139
- #: languages/vue.php:2278
8140
  msgid "Extensions of Files to Track as Downloads"
8141
  msgstr ""
8142
 
8143
- #: languages/vue.php:2281
8144
  msgid "MonsterInsights will send an event to Google Analytics if a link to a file has one of the above extensions."
8145
  msgstr ""
8146
 
8147
  #. Translators: Add links to the documentation.
8148
- #: languages/vue.php:2285
8149
  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."
8150
  msgstr ""
8151
 
8152
  #. Translators: Adds a link to the documentation.
8153
- #: languages/vue.php:2289
8154
  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."
8155
  msgstr ""
8156
 
8157
  #. Translators: Adds a link to the documentation.
8158
- #: languages/vue.php:2293
8159
  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."
8160
  msgstr ""
8161
 
8162
- #: languages/vue.php:2296
8163
  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."
8164
  msgstr ""
8165
 
8166
  #. Translators: Adds a link to the documentation.
8167
- #: languages/vue.php:2300
8168
  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."
8169
  msgstr ""
8170
 
8171
  #. Translators: Adds a link to the documentation.
8172
- #: languages/vue.php:2304
8173
  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."
8174
  msgstr ""
8175
 
8176
  #. Translators: Adds a link to the documentation.
8177
- #: languages/vue.php:2308
8178
  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."
8179
  msgstr ""
8180
 
8181
- #: languages/vue.php:2311
8182
  msgid "Add domain"
8183
  msgstr ""
8184
 
8185
  #. Translators: Example domain.
8186
- #: languages/vue.php:2315
8187
  msgid "Domain (example: %s)"
8188
  msgstr ""
8189
 
8190
  #. Translators: Current site domain to be avoided.
8191
- #: languages/vue.php:2319
8192
  msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
8193
  msgstr ""
8194
 
8195
- #: languages/vue.php:2322
8196
  msgid "Cross Domain Tracking"
8197
  msgstr ""
8198
 
8199
  #. Translators: Adds a link to the documentation.
8200
- #: languages/vue.php:2326
8201
  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."
8202
  msgstr ""
8203
 
8204
  #. Translators: Number of days.
8205
- #: languages/vue.php:2330
8206
  msgid "vs. Previous Day"
8207
  msgstr ""
8208
 
8209
- #: languages/vue.php:2333
8210
  msgid "No change"
8211
  msgstr ""
8212
 
8213
- #: languages/vue.php:2336
8214
  msgid "Forms Tracking help you see who’s viewing your forms, so you can increase conversions."
8215
  msgstr ""
8216
 
8217
- #: languages/vue.php:2339
8218
  msgid "Custom Dimensions show you popular categories, best time to publish, focus keywords, etc."
8219
  msgstr ""
8220
 
8221
- #: languages/vue.php:2342
8222
  msgid "Make Google Analytics GDPR compliant with our EU Compliance addon."
8223
  msgstr ""
8224
 
8225
- #: languages/vue.php:2345
8226
  msgid "Get real-time Google Analytics report right inside your WordPress dashboard."
8227
  msgstr ""
8228
 
8229
- #: languages/vue.php:2348
8230
  msgid "Use Google Optimize to easily perform A/B split tests on your site."
8231
  msgstr ""
8232
 
8233
- #: languages/vue.php:2351
8234
  msgid "See all your important store metrics in one place with Enhanced Ecommerce Tracking."
8235
  msgstr ""
8236
 
8237
- #: languages/vue.php:2354
8238
  msgid "Unlock search console report to see your top performing keywords in Google."
8239
  msgstr ""
8240
 
8241
- #: languages/vue.php:2357
8242
  msgid "Get Page Insights to see important metrics for individual posts / pages in WordPress."
8243
  msgstr ""
8244
 
8245
- #: languages/vue.php:2360
8246
  msgid "Publishers Report shows your top performing pages, audience demographics, and more."
8247
  msgstr ""
8248
 
8249
- #: languages/vue.php:2363
8250
  msgid "Get Scroll-Depth tracking to see how far users scroll on your pages before leaving."
8251
  msgstr ""
8252
 
8253
- #: languages/vue.php:2366
8254
  msgid "Upgrade to Pro »"
8255
  msgstr ""
8256
 
8257
- #: languages/vue.php:2369
8258
  msgid "Pro Tip:"
8259
  msgstr ""
8260
 
8261
- #: languages/vue.php:2372
8262
  msgid "Show"
8263
  msgstr ""
8264
 
8265
- #: languages/vue.php:2375
8266
  msgid "Hide dashboard widget"
8267
  msgstr ""
8268
 
8269
- #: languages/vue.php:2378
8270
  msgid "Are you sure you want to hide the MonsterInsights Dashboard Widget? "
8271
  msgstr ""
8272
 
8273
- #: languages/vue.php:2381
8274
  msgid "Yes, hide it!"
8275
  msgstr ""
8276
 
8277
- #: languages/vue.php:2384
8278
  msgid "No, cancel!"
8279
  msgstr ""
8280
 
8281
- #: languages/vue.php:2387
8282
  msgid "MonsterInsights Widget Hidden"
8283
  msgstr ""
8284
 
8285
- #: languages/vue.php:2390
8286
  msgid "You can re-enable the MonsterInsights widget at any time using the \"Screen Options\" menu on the top right of this page"
8287
  msgstr ""
8288
 
8289
- #: languages/vue.php:2397
8290
  msgid "Usage Tracking"
8291
  msgstr ""
8292
 
8293
- #: languages/vue.php:2400
8294
  msgid "Allow Usage Tracking"
8295
  msgstr ""
8296
 
8297
- #: languages/vue.php:2404
8298
  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."
8299
  msgstr ""
8300
 
8301
  #. Translators: Add links to documentation.
8302
- #: languages/vue.php:2409
8303
  msgid "Complete documentation on usage tracking is available %1$shere%2$s."
8304
  msgstr ""
8305
 
8306
  #. Translators: Make text green and add smiley face.
8307
- #: languages/vue.php:2413
8308
  msgid "You're using %1$sMonsterInsights Lite%2$s - no license needed. Enjoy! %3$s"
8309
  msgstr ""
8310
 
8311
  #. Translators: Add link to upgrade.
8312
- #: languages/vue.php:2417
8313
  msgid "To unlock more features consider %1$supgrading to PRO%2$s."
8314
  msgstr ""
8315
 
8316
  #. Translators: Make text green.
8317
- #: languages/vue.php:2421
8318
  msgid "As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
8319
  msgstr ""
8320
 
8321
- #: languages/vue.php:2424
8322
  msgid "Unlock PRO Features Now"
8323
  msgstr ""
8324
 
8325
- #: languages/vue.php:2427
8326
  msgid "Paste your license key here"
8327
  msgstr ""
8328
 
8329
- #: languages/vue.php:2430
8330
  msgid "Verify"
8331
  msgstr ""
8332
 
8333
  #. Translators: Add link to retrieve license from account area.
8334
- #: languages/vue.php:2434
8335
  msgid "Already purchased? Simply enter your license key below to connect with MonsterInsights PRO! %1$sRetrieve your license key%2$s."
8336
  msgstr ""
8337
 
8338
- #: languages/vue.php:2437
8339
  msgid "There was an error unlocking MonsterInsights PRO please try again or install manually."
8340
  msgstr ""
8341
 
8342
  #. Translators: Error status and error text.
8343
- #: languages/vue.php:2441
8344
  msgid "Can't load errors. Error: %1$s, %2$s"
8345
  msgstr ""
8346
 
8347
- #: languages/vue.php:2444
8348
  msgid "No options available"
8349
  msgstr ""
8350
 
8351
- #: languages/vue.php:2447
8352
  msgid "%1$sAll-in-One SEO%2$s Makes SEO Simple. Gain Valuable Organic Traffic."
8353
  msgstr ""
8354
 
8355
- #: languages/vue.php:2450
8356
  msgid "Automatically migrate all of your SEO settings with just 1 click!"
8357
  msgstr ""
8358
 
8359
- #: languages/vue.php:2453
8360
  msgid "1,938"
8361
  msgstr ""
8362
 
8363
- #: languages/vue.php:2456
8364
  msgid "2+ Million Active Installs"
8365
  msgstr ""
8366
 
8367
- #: languages/vue.php:2459
8368
  msgid "AIOSEO is the DIY Solution for Managing your SEO"
8369
  msgstr ""
8370
 
8371
- #: languages/vue.php:2462
8372
  msgid "Set up the proper SEO foundations in less than 10 minutes."
8373
  msgstr ""
8374
 
8375
- #: languages/vue.php:2465
8376
  msgid "SEO Audit Checklist"
8377
  msgstr ""
8378
 
8379
- #: languages/vue.php:2468
8380
  msgid "Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic."
8381
  msgstr ""
8382
 
8383
- #: languages/vue.php:2471
8384
  msgid "Optimize Your Pages For Higher Rankings With TruSEO Score."
8385
  msgstr ""
8386
 
8387
- #: languages/vue.php:2474
8388
  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."
8389
  msgstr ""
8390
 
8391
- #: languages/vue.php:2477
8392
  msgid "Get AIOSEO for WordPress"
8393
  msgstr ""
8394
 
8395
- #: languages/vue.php:2480
8396
  msgid "Get the #1 Most Powerful WordPress SEO Plugin Today"
8397
  msgstr ""
8398
 
8399
- #: languages/vue.php:2483
8400
  msgid "Try it out today, for free."
8401
  msgstr ""
8402
 
8403
- #: languages/vue.php:2486
8404
  msgid "Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings."
8405
  msgstr ""
8406
 
8407
- #: languages/vue.php:2489
8408
  msgid "Activate and Install the Plugin with just one click!"
8409
  msgstr ""
8410
 
8411
- #: languages/vue.php:2492
8412
  msgid "Installing AIOSEO..."
8413
  msgstr ""
8414
 
8415
- #: languages/vue.php:2495
8416
  msgid "Congrats! All-in-One SEO Installed."
8417
  msgstr ""
8418
 
8419
- #: languages/vue.php:2498
8420
  msgid "Switch to AIOSEO"
8421
  msgstr ""
8422
 
8423
- #: languages/vue.php:2501
8424
  msgid "Installation Failed. Please refresh and try again."
8425
  msgstr ""
8426
 
8427
- #: languages/vue.php:2504
8428
  msgid "Activating AIOSEO..."
8429
  msgstr ""
8430
 
8431
- #: languages/vue.php:2507
8432
  msgid "Activate AIOSEO"
8433
  msgstr ""
8434
 
8435
- #: languages/vue.php:2510
8436
  msgid "Activation Failed. Please refresh and try again."
8437
  msgstr ""
8438
 
8439
  #. Translators: The name of the field that is throwing a validation error.
8440
- #: languages/vue.php:2514
8441
  msgid "%s can't be empty."
8442
  msgstr ""
8443
 
8444
- #: languages/vue.php:2517
8445
  msgid "Duplicate values are not allowed."
8446
  msgstr ""
8447
 
8448
- #: languages/vue.php:2520
8449
  msgid "You can add maximum 5 items."
8450
  msgstr ""
8451
 
8452
- #: languages/vue.php:2523
8453
  msgid "At least 0 item required."
8454
  msgstr ""
8455
 
8456
- #: languages/vue.php:2526
8457
  msgid "Add Another Link Path"
8458
  msgstr ""
8459
 
8460
- #: languages/vue.php:2529
8461
  msgid "Remove row"
8462
  msgstr ""
8463
 
8464
- #: languages/vue.php:2532
8465
  msgid "New"
8466
  msgstr ""
8467
 
8468
- #: languages/vue.php:2535
8469
  msgid "Returning"
8470
  msgstr ""
8471
 
8472
- #: languages/vue.php:2538
8473
  msgid "Top 10 Countries"
8474
  msgstr ""
8475
 
8476
- #: languages/vue.php:2541
8477
  msgid "View Countries Report"
8478
  msgstr ""
8479
 
8480
- #: languages/vue.php:2544
8481
  msgid "Top 10 Referrals"
8482
  msgstr ""
8483
 
8484
- #: languages/vue.php:2547
8485
  msgid "View All Referral Sources"
8486
  msgstr ""
8487
 
8488
- #: languages/vue.php:2550
8489
  msgid "View Full Posts/Pages Report"
8490
  msgstr ""
8491
 
8492
- #: languages/vue.php:2553
8493
  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."
8494
  msgstr ""
8495
 
8496
- #: languages/vue.php:2556
8497
  msgid "This list shows the top countries your website visitors are from."
8498
  msgstr ""
8499
 
8500
- #: languages/vue.php:2559
8501
  msgid "This list shows the top websites that send your website traffic, known as referral traffic."
8502
  msgstr ""
8503
 
8504
- #: languages/vue.php:2562
8505
  msgid "Export PDF Overview Report"
8506
  msgstr ""
8507
 
8508
- #: languages/vue.php:2565
8509
  msgid "Reset to default"
8510
  msgstr ""
8511
 
8512
- #: languages/vue.php:2568
8513
  msgid "The value entered does not match the required format"
8514
  msgstr ""
8515
 
8516
- #: languages/vue.php:2571
8517
  msgid "Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone."
8518
  msgstr ""
8519
 
8520
- #: languages/vue.php:2574
8521
  msgid "Our email summaries feature sends a weekly summary of the most important site analytics information."
8522
  msgstr ""
8523
 
8524
- #: languages/vue.php:2577
8525
  msgid "Recommended Settings"
8526
  msgstr ""
8527
 
8528
- #: languages/vue.php:2580
8529
  msgid "MonsterInsights recommends the following settings based on your configuration."
8530
  msgstr ""
8531
 
8532
- #: languages/vue.php:2583
8533
  msgid "Events Tracking"
8534
  msgstr ""
8535
 
8536
- #: languages/vue.php:2586
8537
  msgid "Must have for all click tracking on site."
8538
  msgstr ""
8539
 
8540
- #: languages/vue.php:2589
8541
  msgid "MonsterInsights 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."
8542
  msgstr ""
8543
 
8544
- #: languages/vue.php:2592
8545
  msgid "Enhanced Link Attribution"
8546
  msgstr ""
8547
 
8548
- #: languages/vue.php:2595
8549
  msgid "Improves the accuracy of your In-Page Analytics."
8550
  msgstr ""
8551
 
8552
- #: languages/vue.php:2598
8553
  msgid "MonsterInsights 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."
8554
  msgstr ""
8555
 
8556
- #: languages/vue.php:2601
8557
  msgid "Install Updates Automatically"
8558
  msgstr ""
8559
 
8560
- #: languages/vue.php:2604
8561
  msgid "Get the latest features, bug fixes, and security updates as they are released."
8562
  msgstr ""
8563
 
8564
- #: languages/vue.php:2607
8565
  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 MonsterInsights, we offer the ability to automatically have MonsterInsights update itself."
8566
  msgstr ""
8567
 
8568
- #: languages/vue.php:2610
8569
  msgid "File Download Tracking"
8570
  msgstr ""
8571
 
8572
- #: languages/vue.php:2613
8573
  msgid "Helps you see file downloads data."
8574
  msgstr ""
8575
 
8576
- #: languages/vue.php:2616
8577
  msgid "MonsterInsights 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? MonsterInsights makes this both easy, and code-free! You can customize the file types to track at any time from our settings panel."
8578
  msgstr ""
8579
 
8580
- #: languages/vue.php:2619
8581
  msgid "Helps you increase affiliate revenue."
8582
  msgstr ""
8583
 
8584
- #: languages/vue.php:2622
8585
  msgid "MonsterInsights 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."
8586
  msgstr ""
8587
 
8588
- #: languages/vue.php:2625
8589
  msgid "Affiliate Link Tracking"
8590
  msgstr ""
8591
 
8592
- #: languages/vue.php:2628
8593
  msgid "Who Can See Reports"
8594
  msgstr ""
8595
 
8596
- #: languages/vue.php:2631
8597
  msgid "These user roles will be able to access MonsterInsights' reports in the WordPress admin area."
8598
  msgstr ""
8599
 
8600
- #: languages/vue.php:2634
8601
  msgid "Save and continue"
8602
  msgstr ""
8603
 
8604
- #: languages/vue.php:2637
8605
  msgid "Events Tracking is enabled the moment you set up MonsterInsights"
8606
  msgstr ""
8607
 
8608
- #: languages/vue.php:2640
8609
  msgid "Enhanced Link Attribution is enabled the moment you set up MonsterInsights"
8610
  msgstr ""
8611
 
8612
- #: languages/vue.php:2643
8613
  msgid "+ Add Role"
8614
  msgstr ""
8615
 
8616
- #: languages/vue.php:2646
8617
  msgid "Connect MonsterInsights to Your Website"
8618
  msgstr ""
8619
 
8620
- #: languages/vue.php:2649
8621
  msgid "MonsterInsights connects Google Analytics to WordPress and shows you stats that matter."
8622
  msgstr ""
8623
 
8624
- #: languages/vue.php:2652
8625
  msgid "Whoops, something went wrong and we weren't able to connect to MonsterInsights. Please enter your Google UA code manually."
8626
  msgstr ""
8627
 
8628
- #: languages/vue.php:2655
8629
  msgid "Save and Continue"
8630
  msgstr ""
8631
 
8632
- #: languages/vue.php:2658
8633
  msgid "UA code can't be empty"
8634
  msgstr ""
8635
 
8636
- #: languages/vue.php:2661
8637
  msgid "Saving UA code..."
8638
  msgstr ""
8639
 
8640
- #: languages/vue.php:2664
8641
  msgid "Allow usage tracking"
8642
  msgstr ""
8643
 
8644
- #: languages/vue.php:2667
8645
  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."
8646
  msgstr ""
8647
 
8648
- #: languages/vue.php:2670
8649
  msgid "Install All-in-One SEO"
8650
  msgstr ""
8651
 
8652
- #: languages/vue.php:2673
8653
  msgid "Improve Your Website Search Rankings With All-In-One SEO"
8654
  msgstr ""
8655
 
8656
- #: languages/vue.php:2676
8657
  msgid "If you’re not using a plugin to optimize your website’s SEO you’re missing out on valuable organic traffic!"
8658
  msgstr ""
8659
 
8660
- #: languages/vue.php:2679
8661
  msgid "Finally, a WordPress SEO Plugin that’s Easy and Powerful!"
8662
  msgstr ""
8663
 
8664
- #: languages/vue.php:2682
8665
  msgid "AIOSEO makes it easy to set up the proper SEO foundations in less than 10 minutes."
8666
  msgstr ""
8667
 
8668
- #: languages/vue.php:2685
8669
  msgid "Local SEO"
8670
  msgstr ""
8671
 
8672
- #: languages/vue.php:2688
8673
  msgid "All in One SEO gives you all the tools you need to improve your local SEO and rank higher on Google Maps."
8674
  msgstr ""
8675
 
8676
- #: languages/vue.php:2691
8677
  msgid "WooCommerce SEO"
8678
  msgstr ""
8679
 
8680
- #: languages/vue.php:2694
8681
  msgid "Advanced eCommerce SEO support for WooCommerce to optimize product pages, product categories, and more."
8682
  msgstr ""
8683
 
8684
- #: languages/vue.php:2697
8685
  msgid "SEO Custom User Roles"
8686
  msgstr ""
8687
 
8688
- #: languages/vue.php:2700
8689
  msgid "SEO user roles allow you to manage access to important SEO features without handing over control of your website."
8690
  msgstr ""
8691
 
8692
- #: languages/vue.php:2703
8693
  msgid "Google News Sitemap"
8694
  msgstr ""
8695
 
8696
- #: languages/vue.php:2706
8697
  msgid "Get higher rankings and unlock more traffic by submitting your latest news articles to Google News."
8698
  msgstr ""
8699
 
8700
- #: languages/vue.php:2709
8701
  msgid "Smart XML Sitemaps"
8702
  msgstr ""
8703
 
8704
- #: languages/vue.php:2712
8705
  msgid "Automatically generate a WordPress XML sitemap and notify all search engines of any updates."
8706
  msgstr ""
8707
 
8708
- #: languages/vue.php:2715
8709
  msgid "Social Media Integration"
8710
  msgstr ""
8711
 
8712
- #: languages/vue.php:2718
8713
  msgid "Easily control how your content and thumbnails look on Facebook, Twitter, and other social media networks."
8714
  msgstr ""
8715
 
8716
- #: languages/vue.php:2721
8717
  msgid "TruSEO On-Page Analysis"
8718
  msgstr ""
8719
 
8720
- #: languages/vue.php:2724
8721
  msgid "Easily add title tags, meta descriptions, keywords, and everything else you need for proper on-page SEO optimization."
8722
  msgstr ""
8723
 
8724
- #: languages/vue.php:2727
8725
  msgid "& Many More!"
8726
  msgstr ""
8727
 
8728
- #: languages/vue.php:2730
8729
  msgid "Installing. Please wait.."
8730
  msgstr ""
8731
 
8732
- #: languages/vue.php:2733
8733
  msgid "Install All-in-One-SEO"
8734
  msgstr ""
8735
 
8736
- #: languages/vue.php:2736
8737
  msgid "Welcome to MonsterInsights!"
8738
  msgstr ""
8739
 
8740
- #: languages/vue.php:2739
8741
  msgid "Let's get you set up."
8742
  msgstr ""
8743
 
8744
- #: languages/vue.php:2742
8745
  msgid "Which category best describes your website?"
8746
  msgstr ""
8747
 
8748
- #: languages/vue.php:2745
8749
  msgid "We will recommend the optimal settings for MonsterInsights based on your choice."
8750
  msgstr ""
8751
 
8752
- #: languages/vue.php:2748
8753
  msgid "Business Website"
8754
  msgstr ""
8755
 
8756
  #. Translators: Make text bold.
8757
- #: languages/vue.php:2752
8758
  msgid "Publisher %1$s(Blog)%2$s"
8759
  msgstr ""
8760
 
8761
- #: languages/vue.php:2755
8762
  msgid "Ecommerce"
8763
  msgstr ""
8764
 
8765
- #: languages/vue.php:2758
8766
  msgid "Caching"
8767
  msgstr ""
8768
 
8769
- #: languages/vue.php:2761
8770
  msgid "Enable Data Caching"
8771
  msgstr ""
8772
 
8773
- #: languages/vue.php:2764
8774
  msgid "Refresh Cache Every"
8775
  msgstr ""
8776
 
8777
- #: languages/vue.php:2767
8778
  msgid "Choose how often to refresh the cache."
8779
  msgstr ""
8780
 
8781
- #: languages/vue.php:2770
8782
  msgid "Enable Ajaxify"
8783
  msgstr ""
8784
 
8785
- #: languages/vue.php:2773
8786
  msgid "Ajaxify Widget"
8787
  msgstr ""
8788
 
8789
- #: languages/vue.php:2776
8790
  msgid "Use to bypass page caching."
8791
  msgstr ""
8792
 
8793
- #: languages/vue.php:2779
8794
  msgid "Empty Cache"
8795
  msgstr ""
8796
 
8797
- #: languages/vue.php:2782
8798
  msgid "Click to manually wipe the cache right now."
8799
  msgstr ""
8800
 
8801
- #: languages/vue.php:2785
8802
  msgid "Popular posts cache emptied"
8803
  msgstr ""
8804
 
8805
- #: languages/vue.php:2788
8806
  msgid "Error emptying the popular posts cache. Please try again."
8807
  msgstr ""
8808
 
8809
- #: languages/vue.php:2791
8810
  msgid "Choose Theme"
8811
  msgstr ""
8812
 
8813
- #: languages/vue.php:2794
8814
  msgid "Widget Styling"
8815
  msgstr ""
8816
 
8817
- #: languages/vue.php:2797
8818
  msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
8819
  msgstr ""
8820
 
8821
- #: languages/vue.php:2800
8822
  msgid "Sort By"
8823
  msgstr ""
8824
 
8825
- #: languages/vue.php:2803
8826
  msgid "Choose how you'd like the widget to determine your popular posts."
8827
  msgstr ""
8828
 
8829
- #: languages/vue.php:2806
8830
  msgid "Display Title"
8831
  msgstr ""
8832
 
8833
- #: languages/vue.php:2812
8834
  msgid "Title your widget and set its display preferences."
8835
  msgstr ""
8836
 
8837
- #: languages/vue.php:2815
8838
  msgid "Include in Post Types"
8839
  msgstr ""
8840
 
8841
- #: languages/vue.php:2818
8842
  msgid "Exclude from specific posts"
8843
  msgstr ""
8844
 
8845
  #. Translators: Placeholders make the text bold.
8846
- #: languages/vue.php:2822
8847
  msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
8848
  msgstr ""
8849
 
8850
  #. Translators: Placeholders make the text bold.
8851
- #: languages/vue.php:2826
8852
  msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
8853
  msgstr ""
8854
 
8855
- #: languages/vue.php:2829
8856
  msgid "Loading Themes"
8857
  msgstr ""
8858
 
8859
  #. Translators: placeholders make text small.
8860
- #: languages/vue.php:2833
8861
  msgid "Default Styles %1$s- As seen above.%2$s"
8862
  msgstr ""
8863
 
8864
  #. Translators: placeholders make text small.
8865
- #: languages/vue.php:2837
8866
  msgid "No Styles %1$s- Use your own CSS.%2$s"
8867
  msgstr ""
8868
 
8869
  #. Translators: placeholders make text small.
8870
- #: languages/vue.php:2841
8871
  msgid "Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s"
8872
  msgstr ""
8873
 
8874
  #. Translators: placeholders make text small.
8875
- #: languages/vue.php:2845
8876
  msgid "SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s"
8877
  msgstr ""
8878
 
8879
  #. Translators: placeholders make text small.
8880
- #: languages/vue.php:2849
8881
  msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
8882
  msgstr ""
8883
 
8884
- #: languages/vue.php:2852
8885
  msgid "Placement"
8886
  msgstr ""
8887
 
8888
- #: languages/vue.php:2855
8889
  msgid "Choose how you'd like to place the widget."
8890
  msgstr ""
8891
 
8892
- #: languages/vue.php:2858
8893
  msgid "Insert After"
8894
  msgstr ""
8895
 
8896
- #: languages/vue.php:2861
8897
  msgid "Choose where in the post body the widget will be placed."
8898
  msgstr ""
8899
 
8900
- #: languages/vue.php:2865
8901
  msgid "Customize Design"
8902
  msgstr ""
8903
 
8904
- #: languages/vue.php:2868
8905
  msgid "words"
8906
  msgstr ""
8907
 
8908
- #: languages/vue.php:2871
8909
  msgid "Please select at least one post to display."
8910
  msgstr ""
8911
 
8912
  #. Translators: placeholders make text small.
8913
- #: languages/vue.php:2875
8914
  msgid "Automatic %1$s- The widget is automatically placed inside the post body.%2$s"
8915
  msgstr ""
8916
 
8917
  #. Translators: placeholders make text small.
8918
- #: languages/vue.php:2879
8919
  msgid "Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s"
8920
  msgstr ""
8921
 
8922
- #: languages/vue.php:2882
8923
  msgid "Facebook Instant Articles"
8924
  msgstr ""
8925
 
8926
- #: languages/vue.php:2885
8927
  msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to MonsterInsights Pro."
8928
  msgstr ""
8929
 
8930
- #: languages/vue.php:2888
8931
  msgid "Want to use track users visiting your AMP pages? By upgrading to MonsterInsights Pro, you can enable AMP page tracking."
8932
  msgstr ""
8933
 
8934
- #: languages/vue.php:2891
8935
  msgid "Ads Tracking"
8936
  msgstr ""
8937
 
8938
- #: languages/vue.php:2894
8939
  msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
8940
  msgstr ""
8941
 
8942
- #: languages/vue.php:2897
8943
  msgid "2,000,000+ use AIOSEO to Improve Their Website Search Rankings"
8944
  msgstr ""
8945
 
8946
- #: languages/vue.php:2900
8947
  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."
8948
  msgstr ""
8949
 
8950
- #: languages/vue.php:2903
8951
  msgid "Jack Brown"
8952
  msgstr ""
8953
 
8954
- #: languages/vue.php:2906
8955
  msgid "PJB Internet Marketing"
8956
  msgstr ""
8957
 
8958
- #: languages/vue.php:2909
8959
  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."
8960
  msgstr ""
8961
 
8962
- #: languages/vue.php:2912
8963
  msgid "Joel Steinmann"
8964
  msgstr ""
8965
 
8966
- #: languages/vue.php:2915
8967
  msgid "CEO, Solergo"
8968
  msgstr ""
8969
 
8970
- #: languages/vue.php:2918
8971
  msgid "Recommended Addons"
8972
  msgstr ""
8973
 
8974
- #: languages/vue.php:2921
8975
  msgid "To unlock more features consider upgrading to PRO. As a valued MonsterInsights Lite user you receive 50% off, automatically applied at checkout!"
8976
  msgstr ""
8977
 
8978
- #: languages/vue.php:2924
8979
  msgid "Other Addons"
8980
  msgstr ""
8981
 
8982
- #: languages/vue.php:2927
8983
  msgid "View all MonsterInsights addons"
8984
  msgstr ""
8985
 
8986
- #: languages/vue.php:2930
8987
  msgid "Scroll Tracking"
8988
  msgstr ""
8989
 
8990
- #: languages/vue.php:2933
8991
  msgid "Scroll depth tracking allows you to see how far your users scroll before they leave a page. This is great for publishers (bloggers), and eCommerce websites to boost conversions."
8992
  msgstr ""
8993
 
8994
- #: languages/vue.php:2936
8995
  msgid ""
8996
  "The EU Compliance addon allows you to improve compliance with GDPR\n"
8997
  " and other privacy regulations."
8998
  msgstr ""
8999
 
9000
- #: languages/vue.php:2940
9001
  msgid "EU Compliance"
9002
  msgstr ""
9003
 
9004
- #: languages/vue.php:2943
9005
  msgid "Compatibility mode"
9006
  msgstr ""
9007
 
9008
- #: languages/vue.php:2946
9009
  msgid "Enable _gtagTracker Compatibility"
9010
  msgstr ""
9011
 
9012
  #. Translators: Placeholder gets replaced with default GA js function.
9013
- #: languages/vue.php:2950
9014
  msgid "This enables MonsterInsights to work with plugins that use %1$s and don't support %2$s"
9015
  msgstr ""
9016
 
9017
  #. Translators: Page number of total pages. 1 & 2 make the first part of the text bold.
9018
- #: languages/vue.php:2954
9019
  msgid "%1$sPage %3$s%2$s of %4$s"
9020
  msgstr ""
9021
 
9022
- #: languages/vue.php:2957
9023
  #: lite/includes/popular-posts/class-popular-posts-widget-sidebar.php:257
9024
  msgid "Theme Preview"
9025
  msgstr ""
9026
 
9027
- #: languages/vue.php:2960
9028
  msgid "Wide"
9029
  msgstr ""
9030
 
9031
- #: languages/vue.php:2963
9032
  msgid "Narrow"
9033
  msgstr ""
9034
 
9035
- #: languages/vue.php:2966
9036
  msgid "Title"
9037
  msgstr ""
9038
 
9039
- #: languages/vue.php:2969
9040
  msgid "Color"
9041
  msgstr ""
9042
 
9043
- #: languages/vue.php:2972
9044
  msgid "Size"
9045
  msgstr ""
9046
 
9047
- #: languages/vue.php:2975
9048
  msgid "Border"
9049
  msgstr ""
9050
 
9051
- #: languages/vue.php:2978
9052
  msgid "Author/Date"
9053
  msgstr ""
9054
 
9055
- #: languages/vue.php:2981
9056
  msgid "Label"
9057
  msgstr ""
9058
 
9059
- #: languages/vue.php:2984
9060
  msgid "Background"
9061
  msgstr ""
9062
 
9063
- #: languages/vue.php:2996
9064
  msgid "Choose which content you would like displayed in the widget."
9065
  msgstr ""
9066
 
9067
- #: languages/vue.php:3008
9068
  msgid "Comments"
9069
  msgstr ""
9070
 
9071
- #: languages/vue.php:3014
9072
  msgid "Choose how many posts you’d like displayed in the widget."
9073
  msgstr ""
9074
 
9075
- #: languages/vue.php:3017
9076
  msgid "Popular Posts data can be fetched correctly"
9077
  msgstr ""
9078
 
9079
- #: languages/vue.php:3020
9080
  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."
9081
  msgstr ""
9082
 
9083
- #: languages/vue.php:3023
9084
  msgid "Close"
9085
  msgstr ""
9086
 
9087
- #: languages/vue.php:3026
9088
  msgid "Add Top 5 Posts from Google Analytics"
9089
  msgstr ""
9090
 
9091
- #: languages/vue.php:3029
9092
  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 MonsterInsights and Google Analytics settings."
9093
  msgstr ""
9094
 
9095
- #: languages/vue.php:3032
9096
  msgid "Test Automated Posts"
9097
  msgstr ""
9098
 
9099
  #. Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc.
9100
- #: languages/vue.php:3036
9101
  msgid "Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics."
9102
  msgstr ""
9103
 
9104
- #: languages/vue.php:3039
9105
  msgid "Automated + Curated"
9106
  msgstr ""
9107
 
9108
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
9109
- #: languages/vue.php:3043
9110
  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."
9111
  msgstr ""
9112
 
9113
  #. Translators: Placeholder gets replaced with current license version.
9114
- #: languages/vue.php:3047
9115
  msgid "Pro version is required."
9116
  msgstr ""
9117
 
9118
- #: languages/vue.php:3050
9119
  msgid "Verifying Popular Posts data"
9120
  msgstr ""
9121
 
9122
- #: languages/vue.php:3053
9123
  msgid "Select posts/search"
9124
  msgstr ""
9125
 
9126
- #: languages/vue.php:3056
9127
  msgid "Oops! No posts found."
9128
  msgstr ""
9129
 
9130
- #: languages/vue.php:3059
9131
  msgid "Search by post title"
9132
  msgstr ""
9133
 
9134
- #: languages/vue.php:3062
9135
  msgid "Can't load posts."
9136
  msgstr ""
9137
 
9138
- #: languages/vue.php:3065
9139
  msgid "SharedCount API Key"
9140
  msgstr ""
9141
 
9142
- #: languages/vue.php:3068
9143
  msgid "Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing."
9144
  msgstr ""
9145
 
9146
- #: languages/vue.php:3071
9147
  msgid "Start Indexing"
9148
  msgstr ""
9149
 
9150
- #: languages/vue.php:3074
9151
  msgid "%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing."
9152
  msgstr ""
9153
 
9154
- #: languages/vue.php:3077
9155
  msgid "Indexing completed, counts will update automatically every day."
9156
  msgstr ""
9157
 
9158
- #: languages/vue.php:3080
9159
  msgid "Sartorial taxidermy venmo you probably haven't heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu."
9160
  msgstr ""
9161
 
9162
- #: languages/vue.php:3083
9163
  msgid "Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan"
9164
  msgstr ""
9165
 
9166
- #: languages/vue.php:3086
9167
  msgid "Icon"
9168
  msgstr ""
9169
 
9170
  #. Translators: Minimum and maximum number that can be used.
9171
- #: languages/vue.php:3090
9172
  msgid "Please enter a value between %1$s and %2$s"
9173
  msgstr ""
9174
 
9175
  #. Translators: The minimum set value.
9176
- #: languages/vue.php:3094
9177
  msgid "Please enter a value higher than %s"
9178
  msgstr ""
9179
 
9180
  #. Translators: The maximum set value.
9181
- #: languages/vue.php:3098
9182
  msgid "Please enter a value lower than %s"
9183
  msgstr ""
9184
 
9185
- #: languages/vue.php:3101
9186
  msgid "Please enter a number"
9187
  msgstr ""
9188
 
9189
- #: languages/vue.php:3104
9190
  msgid "Value has to be a round number"
9191
  msgstr ""
9192
 
9193
- #: languages/vue.php:3107
9194
  msgid "Export PDF Report"
9195
  msgstr ""
9196
 
9197
- #: languages/vue.php:3110
9198
  msgid "You can export PDF reports only in the PRO version."
9199
  msgstr ""
9200
 
9201
- #: languages/vue.php:3113
9202
  msgid "Upgrade to MonsterInsights Pro to Unlock More Actionable Insights"
9203
  msgstr ""
9204
 
9205
- #: languages/vue.php:3116
9206
  msgid "It's easy to double your traffic and sales when you know exactly how people find and use your website. MonsterInsights Pro shows you the stats that matter!"
9207
  msgstr ""
9208
 
9209
- #: languages/vue.php:3119
9210
  msgid "Upgrade to MonsterInsights Pro and Save 50% OFF!"
9211
  msgstr ""
9212
 
9213
  #. Translators: Makes text bold.
9214
- #: languages/vue.php:3123
9215
  msgid "Use coupon code %1$sLITEUPGRADE%2$s"
9216
  msgstr ""
9217
 
9218
  #. Translators: Make text green.
9219
- #: languages/vue.php:3127
9220
  msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
9221
  msgstr ""
9222
 
9223
  #. Translators: Placeholder adds a line break.
9224
- #: languages/vue.php:3131
9225
  msgid "You can customize your %sdate range only in the PRO version."
9226
  msgstr ""
9227
 
9228
- #: languages/vue.php:3134
9229
  msgid "Help Us Improve"
9230
  msgstr ""
9231
 
9232
- #: languages/vue.php:3137
9233
  msgid "Help us better understand our users and their website needs."
9234
  msgstr ""
9235
 
9236
  #. Translators: Adds a link to the documentation.
9237
- #: languages/vue.php:3141
9238
  msgid "If enabled MonsterInsights will send some information about your WordPress site like what plugins and themes you use and which MonsterInsights 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"
9239
  msgstr ""
9240
 
9241
- #: languages/vue.php:3144
9242
  msgid "Website profile"
9243
  msgstr ""
9244
 
9245
- #: languages/vue.php:3147
9246
  msgid "Active profile"
9247
  msgstr ""
9248
 
9249
- #: languages/vue.php:3150
9250
  msgid "Skip and Keep Connection"
9251
  msgstr ""
9252
 
9253
- #: languages/vue.php:3153
9254
  msgid "This feature requires MonsterInsights Pro"
9255
  msgstr ""
9256
 
9257
- #: languages/vue.php:3156
9258
  msgid "By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more."
9259
  msgstr ""
9260
 
9261
- #: languages/vue.php:3159
9262
  msgid "Upgrade to Pro and Unlock Popular Products"
9263
  msgstr ""
9264
 
9265
- #: languages/vue.php:3162
9266
  msgid "View all Pro features"
9267
  msgstr ""
9268
 
9269
- #: languages/vue.php:3165
9270
  msgid "Days"
9271
  msgstr ""
9272
 
9273
  #. Translators: placeholders make text small.
9274
- #: languages/vue.php:3169
9275
  msgid "7 days"
9276
  msgstr ""
9277
 
9278
- #: languages/vue.php:3172
9279
  msgid "30 days"
9280
  msgstr ""
9281
 
9282
- #: languages/vue.php:3175
9283
  msgid "Custom"
9284
  msgstr ""
9285
 
9286
- #: languages/vue.php:3178
9287
  msgid "Only Show Posts from These Categories"
9288
  msgstr ""
9289
 
9290
- #: languages/vue.php:3181
9291
  msgid "Choose from which categories posts will be displayed in the widget. All categories will be used if left empty."
9292
  msgstr ""
9293
 
9294
- #: languages/vue.php:3184
9295
  msgid "Multiple Entries"
9296
  msgstr ""
9297
 
9298
- #: languages/vue.php:3187
9299
  msgid "Total Number of Widgets to Show"
9300
  msgstr ""
9301
 
9302
- #: languages/vue.php:3190
9303
  msgid "Choose how many widgets will be placed in a single Post."
9304
  msgstr ""
9305
 
9306
- #: languages/vue.php:3193
9307
  msgid "Minimum Distance Between Widgets"
9308
  msgstr ""
9309
 
9310
- #: languages/vue.php:3196
9311
  msgid "Choose the distance between widgets."
9312
  msgstr ""
9313
 
9314
- #: languages/vue.php:3199
9315
  msgid "Minimum Word Count to Display Multiple Widgets"
9316
  msgstr ""
9317
 
9318
- #: languages/vue.php:3202
9319
  msgid "Choose the minimum word count for a Post to have multiple entries."
9320
  msgstr ""
9321
 
9322
- #: languages/vue.php:3205
9323
  msgid "Pro version is required"
9324
  msgstr ""
9325
 
9326
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
9327
- #: languages/vue.php:3209
9328
  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)."
9329
  msgstr ""
9330
 
9331
- #: languages/vue.php:3212
9332
  msgid "Unlock with %s"
9333
  msgstr ""
9334
 
9335
- #: languages/vue.php:3215
9336
  msgid "Automatic Placement"
9337
  msgstr ""
9338
 
9339
- #: languages/vue.php:3218
9340
  msgid "Display using Gutenberg Blocks"
9341
  msgstr ""
9342
 
9343
- #: languages/vue.php:3221
9344
  msgid "Embed Options"
9345
  msgstr ""
9346
 
9347
- #: languages/vue.php:3224
9348
  msgid "All Embed Options can be used in conjunction with one another."
9349
  msgstr ""
9350
 
9351
- #: languages/vue.php:3227
9352
  msgid "Using the Gutenberg Block"
9353
  msgstr ""
9354
 
9355
- #: languages/vue.php:3230
9356
  msgid "Using Automatic Embed"
9357
  msgstr ""
9358
 
9359
- #: languages/vue.php:3233
9360
  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."
9361
  msgstr ""
9362
 
9363
- #: languages/vue.php:3236
9364
  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."
9365
  msgstr ""
9366
 
9367
- #: languages/vue.php:3239
9368
  msgid "Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above."
9369
  msgstr ""
9370
 
9371
- #: languages/vue.php:3242
9372
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg"
9373
  msgstr ""
9374
 
9375
- #: languages/vue.php:3245
9376
  msgid "%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page."
9377
  msgstr ""
9378
 
9379
- #: languages/vue.php:3248
9380
  msgid "%1$sStep 2%2$s - Search for “Popular Posts”."
9381
  msgstr ""
9382
 
9383
- #: languages/vue.php:3251
9384
  msgid "%1$sStep 3%2$s - Style the widget using the Block Settings sidebar."
9385
  msgstr ""
9386
 
9387
- #: languages/vue.php:3254
9388
  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."
9389
  msgstr ""
9390
 
9391
- #: languages/vue.php:3257
9392
  msgid "%1$sStep 2%2$s - On the left, under Available Widgets, look for the Popular Posts - MonsterInsights widget and drag it into the desired Sidebar on the right."
9393
  msgstr ""
9394
 
9395
- #: languages/vue.php:3260
9396
  msgid "%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design."
9397
  msgstr ""
9398
 
9399
- #: languages/vue.php:3263
9400
  msgid "Display using a Shortcode"
9401
  msgstr ""
9402
 
9403
- #: languages/vue.php:3266
9404
  msgid "Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin."
9405
  msgstr ""
9406
 
9407
- #: languages/vue.php:3269
9408
  msgid "Copy Shortcode"
9409
  msgstr ""
9410
 
9411
- #: languages/vue.php:3272
9412
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode"
9413
  msgstr ""
9414
 
9415
- #: languages/vue.php:3275
9416
  msgid "Enable Automatic Placement"
9417
  msgstr ""
9418
 
9419
- #: languages/vue.php:3278
9420
  msgid "Display in a Sidebar"
9421
  msgstr ""
9422
 
9423
- #: languages/vue.php:3281
9424
  msgid "Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above."
9425
  msgstr ""
9426
 
9427
- #: languages/vue.php:3284
9428
  msgid "Watch Video - How to Add the Popular Posts widget using Widgets"
9429
  msgstr ""
9430
 
9431
- #: languages/vue.php:3287
9432
  msgid "Display Method"
9433
  msgstr ""
9434
 
9435
- #: languages/vue.php:3290
9436
  msgid "There are two ways to manual include the widget in your posts."
9437
  msgstr ""
9438
 
9439
- #: languages/vue.php:3293
9440
  msgid "Using the Shortcode"
9441
  msgstr ""
9442
 
9443
- #: languages/vue.php:3296
9444
  msgid "Learn how to insert the widget using Gutenberg blocks."
9445
  msgstr ""
9446
 
9447
- #: languages/vue.php:3299
9448
  msgid "Learn how to insert the widget using out Shortcode."
9449
  msgstr ""
9450
 
9451
- #: languages/vue.php:3302
9452
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg"
9453
  msgstr ""
9454
 
9455
- #: languages/vue.php:3305
9456
  msgid "%1$sStep 2%2$s - Search for “Inline Popular Posts by MonsterInsights”."
9457
  msgstr ""
9458
 
9459
- #: languages/vue.php:3308
9460
  msgid "Shortcode"
9461
  msgstr ""
9462
 
9463
- #: languages/vue.php:3311
9464
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode"
9465
  msgstr ""
9466
 
9467
- #: languages/vue.php:3314
9468
  msgid "Facebook Instant Articleasdasdasds"
9469
  msgstr ""
9470
 
9471
- #: languages/vue.php:3317
9472
  msgid "Media"
9473
  msgstr ""
9474
 
9475
- #: languages/vue.php:3320
9476
  msgid "Track how your users interact with videos on your website. Upgrade to MonsterInsights Pro."
9477
  msgstr ""
9478
 
9479
- #: languages/vue.php:3323
9480
  msgid "Improve Your Conversion Rate With Insights Into Which Content Works Best."
9481
  msgstr ""
9482
 
9483
- #: languages/vue.php:3326
9484
  msgid "Top Affilliate Links"
9485
  msgstr ""
9486
 
9487
- #: languages/vue.php:3329
9488
  msgid "Scroll Depth"
9489
  msgstr ""
9490
 
9491
- #: languages/vue.php:3332
9492
  msgid "Increase Sales and Make More Money With Enhanced eCommerce Insights."
9493
  msgstr ""
9494
 
9495
- #: languages/vue.php:3335
9496
  msgid "10+ eCommerce Integrations"
9497
  msgstr ""
9498
 
9499
- #: languages/vue.php:3338
9500
  msgid "Average Order Value"
9501
  msgstr ""
9502
 
9503
- #: languages/vue.php:3341
9504
  msgid "Total Revenue"
9505
  msgstr ""
9506
 
9507
- #: languages/vue.php:3344
9508
  msgid "Number of Transactions"
9509
  msgstr ""
9510
 
9511
- #: languages/vue.php:3347
9512
  msgid "Increase Engagement and Unlock New Insights About Your Site."
9513
  msgstr ""
9514
 
9515
- #: languages/vue.php:3350
9516
  msgid "User ID Tracking"
9517
  msgstr ""
9518
 
9519
- #: languages/vue.php:3353
9520
  msgid "Post Types"
9521
  msgstr ""
9522
 
9523
- #: languages/vue.php:3356
9524
  msgid "Tag Tracking"
9525
  msgstr ""
9526
 
9527
- #: languages/vue.php:3359
9528
  msgid "Categories"
9529
  msgstr ""
9530
 
9531
- #: languages/vue.php:3362
9532
  msgid "SEO Scores"
9533
  msgstr ""
9534
 
9535
- #: languages/vue.php:3365
9536
  msgid "Publish Times"
9537
  msgstr ""
9538
 
9539
- #: languages/vue.php:3368
9540
  msgid "Focus Keywords"
9541
  msgstr ""
9542
 
9543
- #: languages/vue.php:3371
9544
  msgid "Track Every Type of Web Form and Gain Visibility Into Your Customer Journey."
9545
  msgstr ""
9546
 
9547
- #: languages/vue.php:3374
9548
  msgid "Conversion Counts"
9549
  msgstr ""
9550
 
9551
- #: languages/vue.php:3377
9552
  msgid "Impression Counts"
9553
  msgstr ""
9554
 
9555
- #: languages/vue.php:3380
9556
  msgid "Conversion Rates"
9557
  msgstr ""
9558
 
9559
- #: languages/vue.php:3383
9560
  msgid "See Exactly How Visitors Find Your Website From Google."
9561
  msgstr ""
9562
 
9563
- #: languages/vue.php:3386
9564
  msgid "Top Google Search Terms"
9565
  msgstr ""
9566
 
9567
- #: languages/vue.php:3389
9568
  msgid "Number of Clicks"
9569
  msgstr ""
9570
 
9571
- #: languages/vue.php:3392
9572
  msgid "Click-through Ratio"
9573
  msgstr ""
9574
 
9575
- #: languages/vue.php:3395
9576
  msgid "Average Results Position"
9577
  msgstr ""
9578
 
9579
- #: languages/vue.php:3398
9580
  msgid "Realtime Report"
9581
  msgstr ""
9582
 
9583
- #: languages/vue.php:3401
9584
  msgid "See Who And What is Happening on Your Website in Realtime."
9585
  msgstr ""
9586
 
9587
- #: languages/vue.php:3404
9588
  msgid "Top Page Views"
9589
  msgstr ""
9590
 
9591
- #: languages/vue.php:3407
9592
  msgid "Current Active Users"
9593
  msgstr ""
9594
 
9595
- #: languages/vue.php:3410
9596
  msgid "Top Referral Sources"
9597
  msgstr ""
9598
 
9599
- #: languages/vue.php:3413
9600
  msgid "Top Countries"
9601
  msgstr ""
9602
 
9603
- #: languages/vue.php:3416
9604
  msgid "Top Cities"
9605
  msgstr ""
9606
 
9607
- #: languages/vue.php:3419
9608
  msgid "Improve Your User Experience and Improve Search Engine Rankings."
9609
  msgstr ""
9610
 
9611
- #: languages/vue.php:3422
9612
  msgid "Overall Site Speed Score"
9613
  msgstr ""
9614
 
9615
- #: languages/vue.php:3425
9616
  msgid "Server Response Times"
9617
  msgstr ""
9618
 
9619
- #: languages/vue.php:3428
9620
  msgid "Mobile and Desktop Scores"
9621
  msgstr ""
9622
 
9623
- #: languages/vue.php:3431
9624
  msgid "First Contentful Paint"
9625
  msgstr ""
9626
 
9627
- #: languages/vue.php:3434
9628
  msgid "Automatic Recommendations"
9629
  msgstr ""
9630
 
9631
- #: languages/vue.php:3437
9632
  msgid "Total Blocking Time"
9633
  msgstr ""
9634
 
9635
- #: languages/vue.php:3440
9636
  msgid "On-Demand Audits"
9637
  msgstr ""
9638
 
9639
- #: languages/vue.php:3443
9640
  msgid "Time to Interactive"
9641
  msgstr ""
9642
 
9643
- #: languages/vue.php:3446
9644
  msgid "2021 Year in Review"
9645
  msgstr ""
9646
 
9647
- #: languages/vue.php:3449
9648
  msgid "Realtime"
9649
  msgstr ""
9650
 
9651
  #. Translators: Placeholders are used for making text bold and adding a link.
9652
- #: languages/vue.php:3453
9653
  msgid "%1$sYou're using %2$s Lite%3$s. To unlock all reports, consider %4$supgrading to Pro%5$s."
9654
  msgstr ""
9655
 
9656
- #: languages/vue.php:3456
9657
  msgid "Featured"
9658
  msgstr ""
9659
 
9660
- #: languages/vue.php:3459
9661
  msgid "Traffic"
9662
  msgstr ""
9663
 
9664
- #: languages/vue.php:3462
9665
  msgid "Revenue"
9666
  msgstr ""
9667
 
9668
- #: languages/vue.php:3465
9669
  msgid "Guides & Resources"
9670
  msgstr ""
9671
 
9672
- #: languages/vue.php:3468
9673
  msgid "Upgrade and Unlock"
9674
  msgstr ""
9675
 
9676
- #: languages/vue.php:3471
9677
  msgid "What’s in the %1$s?"
9678
  msgstr ""
9679
 
9680
- #: languages/vue.php:3474
9681
  msgid "%1$sPlus%2$s, upgrading to Pro will unlock %1$sall%2$s advanced reports, tracking, and integrations. %3$sLearn more about Pro%4$s"
9682
  msgstr ""
9683
 
9684
- #: languages/vue.php:3477
9685
  msgid "Your 2021 Year in Review is still calculating. Please check back later to see how your website performed last year."
9686
  msgstr ""
9687
 
9688
- #: languages/vue.php:3480
9689
  msgid "Your 2021 Analytics Report"
9690
  msgstr ""
9691
 
9692
- #: languages/vue.php:3486
9693
  msgid "January 1, 2021 - December 31, 2021"
9694
  msgstr ""
9695
 
9696
- #: languages/vue.php:3489
9697
  msgid "A Tip for 2022"
9698
  msgstr ""
9699
 
9700
- #: languages/vue.php:3492
9701
  msgid "A Tip For 2022"
9702
  msgstr ""
9703
 
9704
- #: languages/vue.php:3495
9705
  msgid "Here's to an amazing 2022!"
9706
  msgstr ""
9707
 
9708
- #: languages/vue.php:3498
9709
  msgid "Try our other popular WordPress plugins to grow your website in 2022."
9710
  msgstr ""
9711
 
9712
- #: languages/vue.php:3501
9713
  msgid "Become a WordPress expert in 2022. Join our amazing communities and take your website to the next level."
9714
  msgstr ""
9715
 
9716
- #: languages/vue.php:3504
9717
  msgid "Copyright MonsterInsights, 2022"
9718
  msgstr ""
9719
 
9720
  #. Translators: Number of minutes spent on site.
9721
- #: languages/vue.php:3508
9722
  msgid "Each visitor spent an average of %s minutes on your website in 2021."
9723
  msgstr ""
9724
 
9725
- #: languages/vue.php:3511
9726
  msgid "RafflePress"
9727
  msgstr ""
9728
 
9729
- #: languages/vue.php:3514
9730
  msgid "Launch giveaways and raffle campaigns to grow your email lists, increase traffic, and get more social media followers."
9731
  msgstr ""
9732
 
9733
- #: languages/vue.php:3517
9734
  msgid "Constant Contact"
9735
  msgstr ""
9736
 
9737
- #: languages/vue.php:3520
9738
  msgid "Create amazing email marketing campaigns with drag and drop simplicity. Exclusive Offer: Save 20%."
9739
  msgstr ""
9740
 
9741
- #: languages/vue.php:3523
9742
  msgid "SEMRUSH"
9743
  msgstr ""
9744
 
9745
- #: languages/vue.php:3526
9746
  msgid "Perform SEO and content marketing research, track keywords, and much more. Special Offer: First 30 Days Free."
9747
  msgstr ""
9748
 
9749
- #: languages/vue.php:3529
9750
  msgid "Engagement Tools"
9751
  msgstr ""
9752
 
9753
- #: languages/vue.php:3532
9754
  msgid "WPForms"
9755
  msgstr ""
9756
 
9757
- #: languages/vue.php:3535
9758
  msgid "The world’s most popular WordPress form builder, trusted by over 5 million websites. Easily build contact forms, payment forms, and more."
9759
  msgstr ""
9760
 
9761
- #: languages/vue.php:3539
9762
  msgid "OptinMonster"
9763
  msgstr ""
9764
 
9765
- #: languages/vue.php:3542
9766
  msgid "Convert and monetize more of your website traffic with engaging pop-up and gamified tools. Great for all types of websites."
9767
  msgstr ""
9768
 
9769
- #: languages/vue.php:3545
9770
  msgid "Smash Balloon - Facebook"
9771
  msgstr ""
9772
 
9773
- #: languages/vue.php:3548
9774
  msgid "Smash Balloon - Instagram"
9775
  msgstr ""
9776
 
9777
- #: languages/vue.php:3551
9778
  msgid "Quickly add social media feeds from Facebook, Instagram, Twitter, and others to your website, with no coding needed."
9779
  msgstr ""
9780
 
9781
- #: languages/vue.php:3554
9782
  msgid "Popular Posts by MonsterInsights"
9783
  msgstr ""
9784
 
9785
- #: languages/vue.php:3557
9786
  msgid "Increase your visitor engagement by automatically embedding popular and related content from your website."
9787
  msgstr ""
9788
 
9789
- #: languages/vue.php:3560
9790
  msgid "Popular Products by MonsterInsights"
9791
  msgstr ""
9792
 
9793
- #: languages/vue.php:3563
9794
  msgid "Automatically show related products to increase conversion rates and increase cart sizes on your eCommerce website."
9795
  msgstr ""
9796
 
9797
- #: languages/vue.php:3566
9798
  msgid "Revenue Tools"
9799
  msgstr ""
9800
 
9801
- #: languages/vue.php:3569
9802
  msgid "SeedProd"
9803
  msgstr ""
9804
 
9805
- #: languages/vue.php:3572
9806
  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."
9807
  msgstr ""
9808
 
9809
- #: languages/vue.php:3575
9810
  msgid "Featured Tools"
9811
  msgstr ""
9812
 
9813
- #: languages/vue.php:3578
9814
  msgid "Easy Affiliate"
9815
  msgstr ""
9816
 
9817
- #: languages/vue.php:3581
9818
  msgid "Launch, grow, and manage an affiliate program, all right from your WordPress dashboard. Works automatically with MonsterInsights."
9819
  msgstr ""
9820
 
9821
- #: languages/vue.php:3584
9822
  msgid "SearchWP"
9823
  msgstr ""
9824
 
9825
- #: languages/vue.php:3587
9826
  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."
9827
  msgstr ""
9828
 
9829
- #: languages/vue.php:3590
9830
  msgid "Easily sell digital products like ebooks, plugins, and courses with WordPress. Built-in payment processing, coupons, shopping cart, detailed reporting, and more."
9831
  msgstr ""
9832
 
9833
- #: languages/vue.php:3593
9834
  msgid "Create a membership website. Works automatically with MonsterInsights, no coding needed."
9835
  msgstr ""
9836
 
9837
- #: languages/vue.php:3596
9838
  msgid "Thirsty Affiliates"
9839
  msgstr ""
9840
 
9841
- #: languages/vue.php:3599
9842
  msgid "Manage all your affiliate links with features designed to help make bloggers more money."
9843
  msgstr ""
9844
 
9845
- #: languages/vue.php:3602
9846
  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."
9847
  msgstr ""
9848
 
9849
- #: languages/vue.php:3605
9850
  msgid "Advanced Coupons"
9851
  msgstr ""
9852
 
9853
- #: languages/vue.php:3608
9854
  msgid "Create coupons, reward loyal customers, and schedule promotions for your eCommerce store."
9855
  msgstr ""
9856
 
9857
- #: languages/vue.php:3611
9858
  msgid "PrettyLinks"
9859
  msgstr ""
9860
 
9861
- #: languages/vue.php:3614
9862
  msgid "Automatically monetize your website content with affiliate links added automatically to your content."
9863
  msgstr ""
9864
 
9865
- #: languages/vue.php:3617
9866
  msgid "Install Now"
9867
  msgstr ""
9868
 
9869
- #: languages/vue.php:3620
9870
  msgid "Online Marketing Guides & Resources"
9871
  msgstr ""
9872
 
9873
- #: languages/vue.php:3623
9874
  msgid "MonsterInsights Pro"
9875
  msgstr ""
9876
 
9877
- #: languages/vue.php:3626
9878
  msgid "Upgrade to unlock eCommerce tracking, Custom Dimensions, Form Tracking, and much more. Special Offer: Save 50% today."
9879
  msgstr ""
9880
 
9881
- #: languages/vue.php:3629
9882
  msgid "Traffic Tools"
9883
  msgstr ""
9884
 
9885
- #: languages/vue.php:3632
9886
  msgid "All in One SEO (AIOSEO)"
9887
  msgstr ""
9888
 
9889
- #: languages/vue.php:3635
9890
  msgid "The best WordPress SEO plugin that works automatically with MonsterInsights."
9891
  msgstr ""
9892
 
9893
- #: languages/vue.php:3638
9894
  msgid "PushEngage"
9895
  msgstr ""
9896
 
9897
- #: languages/vue.php:3641
9898
  msgid "Send push notifications to your visitors to drive more traffic and boost sales."
9899
  msgstr ""
9900
 
9901
- #: languages/vue.php:3644
9902
  msgid "With MonsterInsights Pro, you can easily measure individual affiliate performance inside Google Analytics, no coding needed. Track clicks, revenue, and more."
9903
  msgstr ""
9904
 
9905
- #: languages/vue.php:3647
9906
  msgid "Works automatically with WooCommerce, MemberPress, and EasyDigitalDownloads."
9907
  msgstr ""
9908
 
9909
- #: languages/vue.php:3651
9910
  msgid "Media Tracking"
9911
  msgstr ""
9912
 
9913
- #: languages/vue.php:3654
9914
  msgid "Get Started"
9915
  msgstr ""
9916
 
9917
- #: languages/vue.php:3657
9918
  msgid "Awesome! Tracking and Analytics are All Setup!"
9919
  msgstr ""
9920
 
9921
- #: languages/vue.php:3660
9922
  msgid "MonsterInsights is connected to Google Analytics and data is being collected."
9923
  msgstr ""
9924
 
9925
- #: languages/vue.php:3663
9926
  msgid "Complete Setup without Upgrading"
9927
  msgstr ""
9928
 
9929
- #: languages/vue.php:3666
9930
  msgid "Success"
9931
  msgstr ""
9932
 
9933
- #: languages/vue.php:3669
9934
  msgid "Connected to Google Analytics"
9935
  msgstr ""
9936
 
9937
- #: languages/vue.php:3672
9938
  msgid "Tracking Code Installed"
9939
  msgstr ""
9940
 
9941
- #: languages/vue.php:3675
9942
  msgid "Data Being Collected"
9943
  msgstr ""
9944
 
9945
  #. Translators: Add link to retrieve license from account area.
9946
- #: languages/vue.php:3679
9947
  msgid "Already purchased? Simply enter your license key below to connect with MonsterInsights PRO!"
9948
  msgstr ""
9949
 
9950
- #: languages/vue.php:3682
9951
  msgid "Verify License Key"
9952
  msgstr ""
9953
 
9954
- #: languages/vue.php:3685
9955
  msgid "Upgrade to Unlock These Features"
9956
  msgstr ""
9957
 
9958
- #: languages/vue.php:3688
9959
  msgid "To unlock the selected features, please upgrade to Pro and enter your license key below."
9960
  msgstr ""
9961
 
9962
- #: languages/vue.php:3691
9963
  msgid "%1$sBonus:%2$s Upgrade today and save %3$s50%% on a Pro License!%4$s (auto-applied at checkout)"
9964
  msgstr ""
9965
 
9966
- #: languages/vue.php:3694
9967
  msgid "Verifying License..."
9968
  msgstr ""
9969
 
9970
- #: languages/vue.php:3697
9971
  msgid "Privacy Compliance Addon"
9972
  msgstr ""
9973
 
9974
- #: languages/vue.php:3700
9975
  msgid "Help Google Analytics become compliant with internet privacy laws like GDPR, PECR, and CCPA."
9976
  msgstr ""
9977
 
9978
- #: languages/vue.php:3703
9979
  msgid "Get access to advanced reports inside WordPress including search keywords report, real-time analytics dashboard, publishers / eCommerce report, custom dimensions, and more."
9980
  msgstr ""
9981
 
9982
- #: languages/vue.php:3706
9983
  msgid "Instantly enable enhanced eCommerce tracking, so you can measure conversions, sales, and revenue stats. Works with WooCommerce, Easy Digital Downloads, MemberPress, and more."
9984
  msgstr ""
9985
 
9986
- #: languages/vue.php:3709
9987
  msgid "20+ Advanced Tracking"
9988
  msgstr ""
9989
 
9990
- #: languages/vue.php:3712
9991
  msgid "Get access to advanced tracking features like form conversion tracking, author tracking, custom dimensions, scroll tracking, and more."
9992
  msgstr ""
9993
 
9994
- #: languages/vue.php:3715
9995
  msgid "Advanced Growth Tools"
9996
  msgstr ""
9997
 
9998
- #: languages/vue.php:3718
9999
  msgid "Get access to advanced growth tools such as popular posts addon, A/B testing tool, smart URL builder, and more."
10000
  msgstr ""
10001
 
10002
- #: languages/vue.php:3721
10003
  msgid "Track how your users interact with videos on your website."
10004
  msgstr ""
10005
 
10006
- #: languages/vue.php:3724
10007
  msgid "Error Processing"
10008
  msgstr ""
10009
 
10010
- #: languages/vue.php:3727
10011
  msgid "There was an error while processing some features. Please try again or you can skip this process for now"
10012
  msgstr ""
10013
 
10014
- #: languages/vue.php:3730
10015
  msgid "Which website features would you like to enable?"
10016
  msgstr ""
10017
 
10018
- #: languages/vue.php:3733
10019
  msgid "We’ve already selected our recommended features based on your site. "
10020
  msgstr ""
10021
 
10022
- #: languages/vue.php:3736
10023
  msgid "Continue"
10024
  msgstr ""
10025
 
10026
- #: languages/vue.php:3739
10027
  msgid "Standard Analytics & Reports"
10028
  msgstr ""
10029
 
10030
- #: languages/vue.php:3742
10031
  msgid "Get the reports and stats that matter right inside your WordPress Dashboard."
10032
  msgstr ""
10033
 
10034
- #: languages/vue.php:3745
10035
  msgid "Helps you see what links your users are clicking on your site."
10036
  msgstr ""
10037
 
10038
- #: languages/vue.php:3748
10039
  msgid "All In One SEO Toolkit"
10040
  msgstr ""
10041
 
10042
- #: languages/vue.php:3751
10043
  msgid "The best WordPress SEO plugin that works with MonsterInsights to boost your rankings."
10044
  msgstr ""
10045
 
10046
- #: languages/vue.php:3754
10047
  msgid "Smart Form Builder by WPForms"
10048
  msgstr ""
10049
 
10050
- #: languages/vue.php:3757
10051
  msgid "The most popular WordPress form plugin, trusted by over 5 million websites. Easily create contact forms, payment forms, surveys and more."
10052
  msgstr ""
10053
 
10054
- #: languages/vue.php:3760
10055
  msgid "The following plugins will be installed: "
10056
  msgstr ""
10057
 
10058
- #: languages/vue.php:3763
10059
  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 Measurement ID should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
10060
  msgstr ""
10061
 
10062
- #: languages/vue.php:3766
10063
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
10064
  msgstr ""
10065
 
10066
- #: languages/vue.php:3769
10067
  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."
10068
  msgstr ""
10069
 
10070
- #: languages/vue.php:3772
10071
  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 Measurement ID should look like G-XXXXXXXXXX where the X's are a combination of numbers and letters."
10072
  msgstr ""
10073
 
10074
- #: languages/vue.php:3775
10075
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are a combination of numbers and letters."
10076
  msgstr ""
10077
 
10078
- #: languages/vue.php:3778
10079
  msgid "MonsterInsights makes it effortless for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
10080
  msgstr ""
10081
 
10082
- #: languages/vue.php:3781
10083
  msgid "Expired"
10084
  msgstr ""
10085
 
10086
- #: languages/vue.php:3784
10087
  msgid "WP Simple Pay"
10088
  msgstr ""
10089
 
10090
- #: languages/vue.php:3790
10091
  msgid "License Expired"
10092
  msgstr ""
10093
 
10094
- #: languages/vue.php:3793
10095
  msgid "Your MonsterInsights license key has expired."
10096
  msgstr ""
10097
 
10098
- #: languages/vue.php:3796
10099
  msgid "Renew today to ensure Google Analytics continues to track properly."
10100
  msgstr ""
10101
 
10102
- #: languages/vue.php:3799
10103
  msgid "Click here."
10104
  msgstr ""
10105
 
10106
  #. Translators: Adds a link to the license renewal.
10107
- #: languages/vue.php:3803
10108
  msgid "To ensure tracking works properly, reactivate your license"
10109
  msgstr ""
10110
 
10111
- #: languages/vue.php:3806
10112
  msgid "Reactivate License"
10113
  msgstr ""
10114
 
10115
- #: languages/vue.php:3809
10116
  msgid "View All Reports"
10117
  msgstr ""
10118
 
10119
- #: languages/vue.php:3812
10120
  msgid "Oops! There was an error processing request. Please try again later."
10121
  msgstr ""
10122
 
10123
  #. Translators: tag to make text italic starts, tag end.
10124
- #: languages/vue.php:3816
10125
  msgid "See What Your Website Visitors Are %1$sReally%2$s Thinking!"
10126
  msgstr ""
10127
 
10128
- #: languages/vue.php:3819
10129
  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."
10130
  msgstr ""
10131
 
10132
- #: languages/vue.php:3822
10133
  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"
10134
  msgstr ""
10135
 
10136
- #: languages/vue.php:3825
10137
  msgid "Ask open ended questions, run polls or surveys, gather ratings, and more with an easy survey builder"
10138
  msgstr ""
10139
 
10140
- #: languages/vue.php:3828
10141
  msgid "Customize targeting rules to get specific feedback on certain pages or products"
10142
  msgstr ""
10143
 
10144
- #: languages/vue.php:3831
10145
  msgid "Easily analyze your responses and export data"
10146
  msgstr ""
10147
 
10148
- #: languages/vue.php:3834
10149
  msgid "Install & Activate UserFeedback"
10150
  msgstr ""
10151
 
10152
- #: languages/vue.php:3837
10153
  msgid "Install UserFeedback by clicking the button below."
10154
  msgstr ""
10155
 
10156
- #: languages/vue.php:3840
10157
  msgid "Install UserFeedback"
10158
  msgstr ""
10159
 
10160
- #: languages/vue.php:3843
10161
  msgid "Set Up UserFeedback"
10162
  msgstr ""
10163
 
10164
- #: languages/vue.php:3846
10165
  msgid "Run the UserFeedback setup wizard to launch your first UserFeedback survey."
10166
  msgstr ""
10167
 
10168
- #: languages/vue.php:3849
10169
  msgid "Start Setup"
10170
  msgstr ""
10171
 
10172
- #: languages/vue.php:3852
10173
  msgid "Installing UserFeedback"
10174
  msgstr ""
10175
 
10176
- #: languages/vue.php:3855
10177
  msgid "Activating UserFeedback"
10178
  msgstr ""
10179
 
10180
- #: languages/vue.php:3858
10181
  msgid "Installed & Active"
10182
  msgstr ""
10183
 
10184
- #: languages/vue.php:3861
10185
  msgid "Oops! Something went wrong and we weren't able to connect to MonsterInsights. Please enter your Google UA code manually."
10186
  msgstr ""
10187
 
10188
- #. Translators: Error status and error text, Support link tag starts with url and support link tag ends.
10189
- #: languages/vue.php:3866
10190
  msgid "Can't save settings. Error: %1$s, %2$s. Please %3$scontact our support%4$s team for assistance."
10191
  msgstr ""
10192
 
10193
  #. Translators: Support link tag starts with url and support link tag ends.
10194
- #: languages/vue.php:3871
10195
  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."
10196
  msgstr ""
10197
 
10198
  #. Translators: Error status, error text, Support link tag starts with url and support link tag ends.
10199
- #: languages/vue.php:3875
10200
  msgid "Can't load settings. Error: %1$s, %2$s. Please %3$scontact our support%4$s team for assistance. "
10201
  msgstr ""
10202
 
10203
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10204
- #: languages/vue.php:3879
10205
  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."
10206
  msgstr ""
10207
 
10208
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10209
- #: languages/vue.php:3883
10210
  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. "
10211
  msgstr ""
10212
 
10213
  #. Translators: Support page link tag starts and support page link tag ends.
10214
- #: languages/vue.php:3887
10215
  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."
10216
  msgstr ""
10217
 
10218
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10219
- #: languages/vue.php:3891
10220
  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."
10221
  msgstr ""
10222
 
10223
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10224
- #: languages/vue.php:3895
10225
  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. "
10226
  msgstr ""
10227
 
10228
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10229
- #: languages/vue.php:3899
10230
  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"
10231
  msgstr ""
10232
 
10233
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10234
- #: languages/vue.php:3903
10235
  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."
10236
  msgstr ""
10237
 
10238
  #. Translators: Error status and error text.
10239
- #: languages/vue.php:3907
10240
  msgid "Oops! Can't install WPForms. Error: %1$s, %2$s"
10241
  msgstr ""
10242
 
10243
  #. Translators: Error status and error text.
10244
- #: languages/vue.php:3911
10245
  msgid "Oops! Can't activate addon. Error: %1$s, %2$s"
10246
  msgstr ""
10247
 
10248
- #: languages/vue.php:3914
10249
  msgid "Oops! There was an error activating the addon. Please try again. If the issue persists, please %1$scontact our support%2$s team."
10250
  msgstr ""
10251
 
10252
  #. Translators: Error status and error text.
10253
- #: languages/vue.php:3918
10254
  msgid "Oops! Can't deactivate addon. Error: %1$s, %2$s"
10255
  msgstr ""
10256
 
10257
  #. Translators: Error status and error text.
10258
- #: languages/vue.php:3922
10259
  msgid "Oops! Can't install plugin. Error: %1$s, %2$s"
10260
  msgstr ""
10261
 
10262
  #. Translators: Error status and error text.
10263
- #: languages/vue.php:3926
10264
  msgid "Oops! Can't install addon. Error: %1$s, %2$s"
10265
  msgstr ""
10266
 
10267
  #. Translators: Support Link tag starts with URL, Support link tag ends, Error status and error text.
10268
- #: languages/vue.php:3930
10269
  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"
10270
  msgstr ""
10271
 
10272
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10273
- #: languages/vue.php:3934
10274
  msgid "Oops! There was an issue deactivating your license, please try again. If the issue persists, please %1$scontact our support team%2$s."
10275
  msgstr ""
10276
 
10277
  #. Translators: Support Link tag starts with URL, Support link tag ends, Error status and error text.
10278
- #: languages/vue.php:3938
10279
  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"
10280
  msgstr ""
10281
 
10282
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10283
- #: languages/vue.php:3942
10284
  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."
10285
  msgstr ""
10286
 
10287
  #. Translators: Support Link tag start with URL, Support link tag ends, Error status and error text.
10288
- #: languages/vue.php:3946
10289
  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"
10290
  msgstr ""
10291
 
10292
- #: languages/vue.php:3949
10293
  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."
10294
  msgstr ""
10295
 
10296
  #. Translators: Support Link tag start with URL, Support link tag ends, Error status and error text.
10297
- #: languages/vue.php:3953
10298
  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"
10299
  msgstr ""
10300
 
10301
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10302
- #: languages/vue.php:3957
10303
  msgid "Oops! There was an issue verifying your license, please try again. If the issue persists, please %1$scontact our support team%2$s."
10304
  msgstr ""
10305
 
10306
  #. Translators: Support Link tag start with URL, Support link tag ends, Error status and error text.
10307
- #: languages/vue.php:3961
10308
  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"
10309
  msgstr ""
10310
 
10311
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10312
- #: languages/vue.php:3965
10313
  msgid "Oops! There was an issue validating your license, please try again. If the issue persists, please %1$scontact our support team%2$s."
10314
  msgstr ""
10315
 
10316
  #. Translators: Error status, error text, Support link tag starts with url and support link tag ends.
10317
- #: languages/vue.php:3969
10318
  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."
10319
  msgstr ""
10320
 
10321
  #. Translators: Support link tag starts with url and support link tag ends.
10322
- #: languages/vue.php:3973
10323
  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."
10324
  msgstr ""
10325
 
10326
- #: languages/vue.php:3976
10327
  msgid "Website Badge"
10328
  msgstr ""
10329
 
10330
- #: languages/vue.php:3979
10331
  msgid "Automatic Display"
10332
  msgstr ""
10333
 
10334
- #: languages/vue.php:3982
10335
  msgid "Automatically Display Website Badge in Website Footer"
10336
  msgstr ""
10337
 
10338
- #: languages/vue.php:3985
10339
  msgid "Enabling will add the chosen badge in your website’s footer."
10340
  msgstr ""
10341
 
10342
- #: languages/vue.php:3988
10343
  msgid "Enable Automatic Display"
10344
  msgstr ""
10345
 
10346
- #: languages/vue.php:3991
10347
  msgid "Appearance"
10348
  msgstr ""
10349
 
10350
- #: languages/vue.php:3994
10351
  msgid "Choose your badge style."
10352
  msgstr ""
10353
 
10354
- #: languages/vue.php:3997
10355
  msgid "Position"
10356
  msgstr ""
10357
 
10358
- #: languages/vue.php:4000
10359
  msgid "Select the position of the badge in your website’s footer."
10360
  msgstr ""
10361
 
10362
- #: languages/vue.php:4003
10363
  msgid "Manual Display"
10364
  msgstr ""
10365
 
10366
- #: languages/vue.php:4006
10367
  msgid "Copy"
10368
  msgstr ""
10369
 
10370
- #: languages/vue.php:4009
10371
  msgid "Light"
10372
  msgstr ""
10373
 
10374
- #: languages/vue.php:4012
10375
  msgid "Dark"
10376
  msgstr ""
10377
 
10378
- #: languages/vue.php:4015
10379
  msgid "Left"
10380
  msgstr ""
10381
 
10382
- #: languages/vue.php:4018
10383
  msgid "Center"
10384
  msgstr ""
10385
 
10386
- #: languages/vue.php:4021
10387
  msgid "Right"
10388
  msgstr ""
10389
 
10390
- #: languages/vue.php:4024
10391
  msgid "Show MonsterInsights Badge"
10392
  msgstr ""
10393
 
10394
- #: languages/vue.php:4027
10395
  msgid "Build trust with website visitors by automatically placing a MonsterInsights badge in your website’s footer."
10396
  msgstr ""
10397
 
10398
- #: languages/vue.php:4030
10399
  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."
10400
  msgstr ""
10401
 
10402
- #: languages/vue.php:4033
10403
  msgid "Conversion Tools"
10404
  msgstr ""
10405
 
10406
- #: languages/vue.php:4036
10407
  msgid "Get the #1 conversion optimization plugin to convert your growing website traffic into subscribers, leads and sales."
10408
  msgstr ""
10409
 
10410
- #: languages/vue.php:4039
10411
  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 or GT-YYYYY where the Y's are combination of numbers and letters."
10412
  msgstr ""
10413
 
10414
- #: languages/vue.php:4042
10415
  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 Measurement ID should look like G-XXXXXXXXXX or GT-XXXXX where the X's are combination of numbers and letters."
10416
  msgstr ""
10417
 
10418
- #: languages/vue.php:4045
10419
  msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers or GT-YYYYY where the Y's are combination of numbers and letters."
10420
  msgstr ""
10421
 
10422
- #: languages/vue.php:4048
10423
  msgid "Your Measurement ID should look like G-XXXXXXXXXX or GT-XXXXX where the X's are combination of numbers and letters."
10424
  msgstr ""
10425
 
10426
- #: languages/vue.php:4052
10427
  msgid "Media Report"
10428
  msgstr ""
10429
 
10430
- #: languages/vue.php:4055
10431
  msgid "Easily See Which Videos Are Most Popular."
10432
  msgstr ""
10433
 
10434
- #: languages/vue.php:4058
10435
  msgid "Videos Plays, Average Duration, and Completions"
10436
  msgstr ""
10437
 
10438
- #: languages/vue.php:4061
10439
  msgid "Works with YouTube, Vimeo, and HTML 5 Videos"
10440
  msgstr ""
10441
 
10442
- #: languages/vue.php:4064
10443
  msgid "Compare stats over time"
10444
  msgstr ""
10445
 
10446
- #: languages/vue.php:4067
10447
  msgid "Video Plays"
10448
  msgstr ""
10449
 
10450
- #: languages/vue.php:4070
10451
  msgid "Video %s Plays"
10452
  msgstr ""
10453
 
10454
- #: languages/vue.php:4073
10455
  msgid "No video plays tracked during this time period."
10456
  msgstr ""
10457
 
10458
  #. Translators: Make the text bold and add the start and end dates.
10459
- #: languages/vue.php:4077
10460
  msgid "%1$sCustom dates:%2$s %3$s - %4$s"
10461
  msgstr ""
10462
 
10463
- #: languages/vue.php:4080
10464
  msgid "Custom Date Range"
10465
  msgstr ""
10466
 
10467
- #: languages/vue.php:4083
10468
  msgid "Set Custom Date Range"
10469
  msgstr ""
10470
 
10471
- #: languages/vue.php:4086
10472
  msgid "Hide Details"
10473
  msgstr ""
10474
 
10475
- #: languages/vue.php:4089
10476
  msgid "Show Details"
10477
  msgstr ""
10478
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10479
  #: lite/includes/admin/connect.php:42
10480
  msgid "Oops! You are not allowed to install plugins. Please contact your site administrator."
10481
  msgstr ""
@@ -10566,10 +10651,6 @@ msgstr ""
10566
  msgid "Real Time"
10567
  msgstr ""
10568
 
10569
- #: lite/includes/admin/reports/report-year-in-review.php:22
10570
- msgid "Year in Review"
10571
- msgstr ""
10572
-
10573
  #: lite/includes/admin/tools.php:10
10574
  msgid "Want even more fine tuned control over your website analytics?"
10575
  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:53:33+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-for-wordpress\n"
16
 
17
  #. Plugin Name of the plugin
120
  #: includes/admin/admin.php:127
121
  #: includes/admin/em-admin.php:19
122
  #: includes/admin/em-admin.php:22
123
+ #: languages/vue.php:244
124
  msgid "Insights"
125
  msgstr ""
126
 
127
  #: includes/admin/admin.php:34
128
  #: includes/admin/admin.php:42
129
  #: includes/admin/admin.php:230
130
+ #: languages/vue.php:520
131
  msgid "Settings"
132
  msgstr ""
133
 
153
 
154
  #: includes/admin/admin.php:51
155
  #: languages/gutenberg.php:83
156
+ #: languages/vue.php:885
157
  msgid "Popular Posts"
158
  msgstr ""
159
 
187
 
188
  #: includes/admin/admin.php:71
189
  #: includes/admin/admin.php:147
190
+ #: languages/vue.php:499
191
  msgid "About Us"
192
  msgstr ""
193
 
206
  #: includes/admin/admin.php:76
207
  #: includes/admin/notifications/notification-upgrade-to-pro-high-traffic.php:41
208
  #: includes/admin/notifications/notification-upgrade-to-pro.php:33
209
+ #: languages/vue.php:1416
210
  msgid "Upgrade to Pro"
211
  msgstr ""
212
 
234
 
235
  #: includes/admin/admin.php:220
236
  #: includes/admin/admin.php:223
237
+ #: languages/vue.php:909
238
  msgid "Support"
239
  msgstr ""
240
 
245
  #: includes/admin/notifications/notification-upgrade-for-events-reporting.php:31
246
  #: includes/admin/notifications/notification-upgrade-for-google-optimize.php:32
247
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:31
248
+ #: includes/admin/reports/abstract-report.php:460
249
+ #: languages/vue.php:1413
250
  msgid "Get MonsterInsights Pro"
251
  msgstr ""
252
 
256
  msgstr ""
257
 
258
  #: includes/admin/admin.php:335
259
+ #: languages/vue.php:483
260
  msgid "Please Setup Website Analytics to See Audience Insights"
261
  msgstr ""
262
 
263
  #: includes/admin/admin.php:336
264
+ #: languages/vue.php:489
265
  msgid "Connect MonsterInsights and Setup Website Analytics"
266
  msgstr ""
267
 
268
  #: includes/admin/admin.php:338
269
+ #: includes/admin/common.php:912
270
+ #: includes/admin/common.php:938
271
+ #: includes/admin/common.php:971
272
  #: includes/admin/notifications/notification-audience.php:45
273
  #: includes/admin/notifications/notification-bounce-rate.php:47
274
  #: includes/admin/notifications/notification-headline-analyzer.php:39
275
  #: includes/admin/notifications/notification-mobile-device-low-traffic.php:41
276
  #: includes/admin/notifications/notification-returning-visitors.php:43
277
  #: includes/admin/notifications/notification-traffic-dropping.php:43
278
+ #: languages/vue.php:436
279
  msgid "Learn More"
280
  msgstr ""
281
 
282
  #: includes/admin/admin.php:340
283
+ #: languages/vue.php:486
284
  msgid "MonsterInsights, 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 MonsterInsights to see the stats that matter and grow their business."
285
  msgstr ""
286
 
291
 
292
  #. Translators: Adds a link to the license renewal.
293
  #: includes/admin/admin.php:363
294
+ #: languages/vue.php:714
295
  msgid "Your license key for MonsterInsights has expired. %1$sPlease click here to renew your license key.%2$s"
296
  msgstr ""
297
 
298
  #: includes/admin/admin.php:365
299
+ #: languages/vue.php:717
300
  msgid "Your license key for MonsterInsights has been disabled. Please use a different key."
301
  msgstr ""
302
 
303
  #: includes/admin/admin.php:367
304
  #: includes/admin/api-auth.php:303
305
+ #: languages/vue.php:720
306
  msgid "Your license key for MonsterInsights is invalid. The key no longer exists or the user associated with the key has been deleted. Please use a different key."
307
  msgstr ""
308
 
449
  msgstr ""
450
 
451
  #. Translators: Placeholders are for links to fix the issue.
452
+ #: includes/admin/common.php:770
453
  msgid "MonsterInsights 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 MonsterInsights. To solve this, ensure MonsterInsights 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."
454
  msgstr ""
455
 
456
+ #: includes/admin/common.php:893
457
  msgid "ACTION REQUIRED: Your PHP version is putting your site at risk!"
458
  msgstr ""
459
 
460
+ #: includes/admin/common.php:895
461
  msgid "ACTION REQUIRED: Speed your website up 400% with a single email!"
462
  msgstr ""
463
 
464
  #. Translators: Placeholder is for the current PHP version.
465
+ #: includes/admin/common.php:902
466
  msgid "In the next major release of MonsterInsights 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)."
467
  msgstr ""
468
 
469
  #. Translators: Placeholders add a link to an article.
470
+ #: includes/admin/common.php:905
471
  msgid "To ensure MonsterInsights 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."
472
  msgstr ""
473
 
474
  #. Translators: Placeholders add a link to an article.
475
+ #: includes/admin/common.php:906
476
  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!"
477
  msgstr ""
478
 
479
+ #: includes/admin/common.php:925
480
  msgid "ACTION REQUIRED: Your WordPress version is putting your site at risk!"
481
  msgstr ""
482
 
483
  #. Translators: Placeholder is for the current WordPress version.
484
+ #: includes/admin/common.php:928
485
  msgid "In the next major release of MonsterInsights 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!"
486
  msgstr ""
487
 
488
+ #: includes/admin/common.php:930
489
  msgid "The good news: updating WordPress has never been easier and only takes a few moments."
490
  msgstr ""
491
 
492
  #. Translators: Placeholders add links to articles.
493
+ #: includes/admin/common.php:932
494
  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."
495
  msgstr ""
496
 
497
+ #: includes/admin/common.php:966
498
  msgid "View 2021 Year in Review report!"
499
  msgstr ""
500
 
501
+ #: includes/admin/common.php:967
502
+ #: languages/vue.php:3473
503
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2022!"
504
  msgstr ""
505
 
520
 
521
  #: includes/admin/exclude-page-metabox.php:144
522
  #: languages/gutenberg.php:179
523
+ #: languages/vue.php:2387
524
  msgid "Upgrade"
525
  msgstr ""
526
 
717
  #: includes/admin/notifications/notification-upgrade-for-custom-dimensions.php:25
718
  #: includes/admin/notifications/notification-upgrade-for-events-reporting.php:25
719
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:25
720
+ #: languages/vue.php:1264
721
  #: lite/includes/admin/helpers.php:85
722
  msgid "Upgrade to MonsterInsights Pro"
723
  msgstr ""
752
 
753
  #: includes/admin/notifications/notification-upgrade-for-form-conversion.php:31
754
  #: includes/admin/notifications/notification-upgrade-for-search-console.php:32
755
+ #: includes/admin/reports/abstract-report.php:457
756
+ #: languages/vue.php:280
757
  msgid "Upgrade Now"
758
  msgstr ""
759
 
874
  msgid "Invalid date range."
875
  msgstr ""
876
 
877
+ #: includes/admin/reports/abstract-report.php:301
878
  msgid "You must be properly authenticated with MonsterInsights to use our reports. Please use our %1$ssetup wizard%2$s to get started."
879
  msgstr ""
880
 
881
  #. Translators: Placeholders add the license level and the report title.
882
+ #: includes/admin/reports/abstract-report.php:388
883
  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."
884
  msgstr ""
885
 
886
+ #: includes/admin/reports/abstract-report.php:402
887
  msgid "Ready to Get Analytics Super-Powers?"
888
  msgstr ""
889
 
890
+ #: includes/admin/reports/abstract-report.php:404
891
  msgid "(And Crush Your Competition?)"
892
  msgstr ""
893
 
894
  #. Translators: License level and smiley.
895
+ #: includes/admin/reports/abstract-report.php:410
896
  msgid "Hey there! It looks like you've got the %1$s license installed on your site. That's awesome! %s"
897
  msgstr ""
898
 
899
  #. Translators: Placeholders add the report title and license level.
900
+ #: includes/admin/reports/abstract-report.php:417
901
  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."
902
  msgstr ""
903
 
904
  #. Translators: Placeholdes add links to the account area and a guide.
905
+ #: includes/admin/reports/abstract-report.php:424
906
  msgid "It's easy! To upgrade, navigate to %1$sMy Account%2$s on MonsterInsights.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."
907
  msgstr ""
908
 
909
+ #: includes/admin/reports/abstract-report.php:428
910
+ #: includes/admin/reports/abstract-report.php:451
911
  msgid "If you have any questions, don't hesitate to reach out. We're here to help."
912
  msgstr ""
913
 
914
  #. Translators: Placeholder adds a smiley face.
915
+ #: includes/admin/reports/abstract-report.php:433
916
  msgid "Hey there! %s It looks like you've got the free version of MonsterInsights installed on your site. That's awesome!"
917
  msgstr ""
918
 
919
  #. Translators: Placeholders make the text bold, add the license level and add a link to upgrade.
920
+ #: includes/admin/reports/abstract-report.php:440
921
  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 MonsterInsights 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."
922
  msgstr ""
923
 
924
  #. Translators: Placeholders make the text bold, add the license level and add a link to upgrade.
925
+ #: includes/admin/reports/abstract-report.php:447
926
  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."
927
  msgstr ""
928
 
929
+ #: includes/admin/reports/abstract-report.php:494
930
  msgid "Please ask your webmaster to enable this addon."
931
  msgstr ""
932
 
933
  #: includes/admin/reports/overview.php:34
934
+ #: languages/vue.php:569
935
  msgid "Overview"
936
  msgstr ""
937
 
1032
  msgstr ""
1033
 
1034
  #: includes/admin/routes.php:535
1035
+ #: languages/vue.php:3775
1036
  msgid "Start accepting one-time and recurring payments on your WordPress site without setting up a shopping cart. No code required."
1037
  msgstr ""
1038
 
1488
  msgstr ""
1489
 
1490
  #: includes/gutenberg/headline-tool/headline-tool.php:318
1491
+ #: languages/vue.php:526
1492
  msgid "General"
1493
  msgstr ""
1494
 
4888
  msgstr ""
4889
 
4890
  #: languages/gutenberg.php:77
4891
+ #: languages/vue.php:511
4892
  msgid "Inline Popular Posts"
4893
  msgstr ""
4894
 
4925
  msgstr ""
4926
 
4927
  #: languages/gutenberg.php:107
4928
+ #: languages/vue.php:2977
4929
  msgid "Wide-Layout Options"
4930
  msgstr ""
4931
 
4934
  msgstr ""
4935
 
4936
  #: languages/gutenberg.php:113
4937
+ #: languages/vue.php:2980
4938
  msgid "Adjust the number of columns displayed when the widget is placed in a wide container."
4939
  msgstr ""
4940
 
4941
  #: languages/gutenberg.php:116
4942
+ #: languages/vue.php:3001
4943
  msgid "Post Count"
4944
  msgstr ""
4945
 
4948
  msgstr ""
4949
 
4950
  #: languages/gutenberg.php:122
4951
+ #: languages/vue.php:2983
4952
  msgid "Display Options"
4953
  msgstr ""
4954
 
4961
  msgstr ""
4962
 
4963
  #: languages/gutenberg.php:131
4964
+ #: languages/vue.php:2800
4965
  msgid "Widget Title"
4966
  msgstr ""
4967
 
4970
  msgstr ""
4971
 
4972
  #: languages/gutenberg.php:137
4973
+ #: languages/vue.php:2989
4974
  msgid "Display Author"
4975
  msgstr ""
4976
 
4977
  #: languages/gutenberg.php:140
4978
+ #: languages/vue.php:2992
4979
  msgid "Display Date"
4980
  msgstr ""
4981
 
4982
  #: languages/gutenberg.php:143
4983
+ #: languages/vue.php:2995
4984
  msgid "Display Comments"
4985
  msgstr ""
4986
 
4987
  #: languages/gutenberg.php:146
4988
+ #: languages/vue.php:33
4989
  #: lite/includes/admin/metaboxes.php:47
4990
  msgid "Last 30 days"
4991
  msgstr ""
4992
 
4993
  #: languages/gutenberg.php:149
4994
+ #: languages/vue.php:21
4995
  #: lite/includes/admin/metaboxes.php:51
4996
  msgid "Yesterday"
4997
  msgstr ""
4998
 
4999
  #: languages/gutenberg.php:152
5000
+ #: languages/vue.php:1348
5001
  #: lite/includes/admin/metaboxes.php:65
5002
  #: lite/includes/admin/metaboxes.php:127
5003
  msgid "Bounce Rate"
5258
  msgstr ""
5259
 
5260
  #: languages/gutenberg.php:354
5261
+ #: languages/vue.php:864
5262
  msgid "Headline Analyzer"
5263
  msgstr ""
5264
 
5278
  msgid "2"
5279
  msgstr ""
5280
 
5281
+ #: languages/vue.php:12
5282
  msgid "Error"
5283
  msgstr ""
5284
 
5285
+ #: languages/vue.php:15
5286
  msgid "Please try again."
5287
  msgstr ""
5288
 
5289
+ #: languages/vue.php:18
5290
  msgid "Today"
5291
  msgstr ""
5292
 
5293
+ #: languages/vue.php:24
5294
  msgid "Last Week"
5295
  msgstr ""
5296
 
5297
+ #: languages/vue.php:27
5298
  msgid "Last Month"
5299
  msgstr ""
5300
 
5301
+ #: languages/vue.php:30
5302
  msgid "Last 7 days"
5303
  msgstr ""
5304
 
5305
+ #: languages/vue.php:36
5306
  msgid "Loading settings"
5307
  msgstr ""
5308
 
5309
+ #: languages/vue.php:39
5310
  msgid "Loading new report data"
5311
  msgstr ""
5312
 
5313
+ #: languages/vue.php:42
5314
  msgid "Please wait..."
5315
  msgstr ""
5316
 
5317
  #. Translators: Adds an arrow icon.
5318
+ #: languages/vue.php:46
5319
  msgid "Continue %s"
5320
  msgstr ""
5321
 
5322
+ #: languages/vue.php:49
5323
  msgid "Unlock the Publishers Report and Focus on the Content that Matters"
5324
  msgstr ""
5325
 
5326
+ #: languages/vue.php:52
5327
  msgid "Stop guessing about what content your visitors are interested in. MonsterInsights Publisher Report shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions."
5328
  msgstr ""
5329
 
5330
+ #: languages/vue.php:55
5331
  msgid "Unlock the Publishers Report and Focus on the Content That Matters"
5332
  msgstr ""
5333
 
5334
+ #: languages/vue.php:58
5335
  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."
5336
  msgstr ""
5337
 
5338
+ #: languages/vue.php:61
5339
  msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
5340
  msgstr ""
5341
 
5342
+ #: languages/vue.php:64
5343
  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."
5344
  msgstr ""
5345
 
5346
+ #: languages/vue.php:67
5347
  msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
5348
  msgstr ""
5349
 
5350
+ #: languages/vue.php:70
5351
  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."
5352
  msgstr ""
5353
 
5354
+ #: languages/vue.php:73
5355
  msgid "Unlock the Forms Report and Improve Conversions"
5356
  msgstr ""
5357
 
5358
+ #: languages/vue.php:76
5359
  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."
5360
  msgstr ""
5361
 
5362
+ #: languages/vue.php:79
5363
  msgid "Unlock the Search Console Report and See How People Find Your Website"
5364
  msgstr ""
5365
 
5366
+ #: languages/vue.php:82
5367
  msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
5368
  msgstr ""
5369
 
5370
+ #: languages/vue.php:85
5371
  msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
5372
  msgstr ""
5373
 
5374
+ #: languages/vue.php:88
5375
  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."
5376
  msgstr ""
5377
 
5378
+ #: languages/vue.php:91
5379
  msgid "Unlock the Site Speed Report and Improve the Performance of Your Site"
5380
  msgstr ""
5381
 
5382
+ #: languages/vue.php:94
5383
  msgid "See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking"
5384
  msgstr ""
5385
 
5386
+ #: languages/vue.php:97
5387
  msgid "Loading Settings"
5388
  msgstr ""
5389
 
5390
+ #: languages/vue.php:100
5391
  msgid "Saving Changes..."
5392
  msgstr ""
5393
 
5394
+ #: languages/vue.php:103
5395
  msgid "Settings Updated"
5396
  msgstr ""
5397
 
5398
  #. Translators: Adds a link to the settings panel.
5399
+ #: languages/vue.php:107
5400
  msgid "You need to %1$sconnect MonsterInsights%2$s first"
5401
  msgstr ""
5402
 
5403
+ #: languages/vue.php:110
5404
  msgid "Could Not Save Changes"
5405
  msgstr ""
5406
 
5407
+ #: languages/vue.php:113
5408
  msgid "Refreshing Report"
5409
  msgstr ""
5410
 
5411
+ #: languages/vue.php:116
5412
  msgid "Loading new report data..."
5413
  msgstr ""
5414
 
5415
+ #: languages/vue.php:119
5416
  msgid "See Your Top Landing Pages to Improve Engagement"
5417
  msgstr ""
5418
 
5419
+ #: languages/vue.php:122
5420
  msgid "See Your Top Exit Pages to Reduce Abandonment"
5421
  msgstr ""
5422
 
5423
+ #: languages/vue.php:125
5424
  msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
5425
  msgstr ""
5426
 
5427
+ #: languages/vue.php:128
5428
  msgid "See Your Top Affiliate Links and Focus on What's Working"
5429
  msgstr ""
5430
 
5431
+ #: languages/vue.php:131
5432
  msgid "See Your Top Downloads and Improve Conversions"
5433
  msgstr ""
5434
 
5435
+ #: languages/vue.php:134
5436
  msgid "See Audience Demographic Report ( Age / Gender / Interests )"
5437
  msgstr ""
5438
 
5439
+ #: languages/vue.php:137
5440
  msgid "Increase your sales & revenue with insights. MonsterInsights answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value, top products, top referral sources and more."
5441
  msgstr ""
5442
 
5443
+ #: languages/vue.php:140
5444
  msgid "See Your Conversion Rate to Improve Your Funnel"
5445
  msgstr ""
5446
 
5447
+ #: languages/vue.php:143
5448
  msgid "See The Number of Transactions and Make Data-Driven Decisions"
5449
  msgstr ""
5450
 
5451
+ #: languages/vue.php:146
5452
  msgid "See The Total Revenue to Track Growth"
5453
  msgstr ""
5454
 
5455
+ #: languages/vue.php:149
5456
  msgid "See Average Order Value to Find Offer Opportunities"
5457
  msgstr ""
5458
 
5459
+ #: languages/vue.php:152
5460
  msgid "See Your Top Products to See Individual Performance"
5461
  msgstr ""
5462
 
5463
+ #: languages/vue.php:155
5464
  msgid "See Your Top Conversion Sources and Focus on What's Working"
5465
  msgstr ""
5466
 
5467
+ #: languages/vue.php:158
5468
  msgid "See The Time it Takes for Customers to Purchase"
5469
  msgstr ""
5470
 
5471
+ #: languages/vue.php:161
5472
  msgid "See How Many Sessions are Needed for a Purchase"
5473
  msgstr ""
5474
 
5475
+ #: languages/vue.php:164
5476
  msgid "See Which Authors Generate the Most Traffic"
5477
  msgstr ""
5478
 
5479
+ #: languages/vue.php:167
5480
  msgid "See Which Post Types Perform Better"
5481
  msgstr ""
5482
 
5483
+ #: languages/vue.php:170
5484
  msgid "See Which Categories are the Most Popular"
5485
  msgstr ""
5486
 
5487
+ #: languages/vue.php:173
5488
  msgid "See Your Blog's Most Popular SEO Scores"
5489
  msgstr ""
5490
 
5491
+ #: languages/vue.php:176
5492
  msgid "See Which Focus Keyword is Performing Better in Search Engines"
5493
  msgstr ""
5494
 
5495
+ #: languages/vue.php:179
5496
  msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
5497
  msgstr ""
5498
 
5499
+ #: languages/vue.php:182
5500
  msgid "See Your Top Converting Forms and Optimize"
5501
  msgstr ""
5502
 
5503
+ #: languages/vue.php:185
5504
  msgid "See Your Forms Impressions Count to Find the Best Placement"
5505
  msgstr ""
5506
 
5507
+ #: languages/vue.php:188
5508
  msgid "See Your Top Google Search Terms and Optimize Content"
5509
  msgstr ""
5510
 
5511
+ #: languages/vue.php:191
5512
  msgid "See The Number of Clicks and Track Interests"
5513
  msgstr ""
5514
 
5515
+ #: languages/vue.php:194
5516
  msgid "See The Click-Through-Ratio and Improve SEO"
5517
  msgstr ""
5518
 
5519
+ #: languages/vue.php:197
5520
  msgid "See The Average Results Position and Focus on what works"
5521
  msgstr ""
5522
 
5523
+ #: languages/vue.php:200
5524
  msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
5525
  msgstr ""
5526
 
5527
+ #: languages/vue.php:203
5528
  msgid "See Your Top Pages Immediately After Making Changes"
5529
  msgstr ""
5530
 
5531
+ #: languages/vue.php:206
5532
  msgid "See Your Top Referral Sources and Adapt Faster"
5533
  msgstr ""
5534
 
5535
+ #: languages/vue.php:209
5536
  msgid "See Your Traffic Demographics"
5537
  msgstr ""
5538
 
5539
+ #: languages/vue.php:212
5540
  msgid "Get Fresh Report Data Every 60 Seconds"
5541
  msgstr ""
5542
 
5543
+ #: languages/vue.php:215
5544
  msgid "See Your Homepage's Overall Performance Score"
5545
  msgstr ""
5546
 
5547
+ #: languages/vue.php:218
5548
  msgid "Run an Audit on Your Homepage and See Your Server Response Time"
5549
  msgstr ""
5550
 
5551
+ #: languages/vue.php:221
5552
  msgid "Learn How Long It Takes for Your Viewers to Interact With Your Site"
5553
  msgstr ""
5554
 
5555
+ #: languages/vue.php:224
5556
  msgid "Learn How to Improve the Core Metrics that Google Uses to Rank Your Site"
5557
  msgstr ""
5558
 
5559
  #. Translators: Number of visitors.
5560
+ #: languages/vue.php:228
5561
  msgid "See how %s visitors found your site!"
5562
  msgstr ""
5563
 
5564
  #. Translators: Number of visitors.
5565
+ #: languages/vue.php:232
5566
  msgid "Your website was visited by %s users in the last 30 days."
5567
  msgstr ""
5568
 
5569
+ #: languages/vue.php:235
5570
  msgid "See the full analytics report!"
5571
  msgstr ""
5572
 
5573
+ #: languages/vue.php:238
5574
  msgid "Congratulations! "
5575
  msgstr ""
5576
 
5577
+ #: languages/vue.php:241
5578
  msgid "You Successfully Unlocked the most powerful Analytics plugin"
5579
  msgstr ""
5580
 
5581
+ #: languages/vue.php:247
5582
  msgid "Overview Report"
5583
  msgstr ""
5584
 
5585
+ #: languages/vue.php:250
5586
  #: lite/includes/admin/welcome.php:56
5587
  #: lite/includes/admin/welcome.php:57
5588
  msgid "Welcome to MonsterInsights"
5589
  msgstr ""
5590
 
5591
+ #: languages/vue.php:253
5592
  msgid "Thank you for choosing MonsterInsights - The Most Powerful WordPress Analytics Plugin"
5593
  msgstr ""
5594
 
5595
+ #: languages/vue.php:256
5596
  msgid "MonsterInsights 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."
5597
  msgstr ""
5598
 
5599
+ #: languages/vue.php:259
5600
  msgid "Launch the Wizard!"
5601
  msgstr ""
5602
 
5603
+ #: languages/vue.php:262
5604
  msgid "Read the Full Guide"
5605
  msgstr ""
5606
 
5607
+ #: languages/vue.php:265
5608
  msgid "MonsterInsights Features & Addons"
5609
  msgstr ""
5610
 
5611
+ #: languages/vue.php:268
5612
  msgid "Here are the features that make MonsterInsights the most powerful and user-friendly WordPress analytics plugin in the market."
5613
  msgstr ""
5614
 
5615
+ #: languages/vue.php:271
5616
  msgid "See All Features"
5617
  msgstr ""
5618
 
5619
+ #: languages/vue.php:274
5620
  msgid "Upgrade to PRO"
5621
  msgstr ""
5622
 
5623
+ #: languages/vue.php:277
5624
  msgid "per year"
5625
  msgstr ""
5626
 
5627
+ #: languages/vue.php:283
5628
  msgid "Testimonials"
5629
  msgstr ""
5630
 
5631
+ #: languages/vue.php:286
5632
  msgid "Universal Tracking"
5633
  msgstr ""
5634
 
5635
+ #: languages/vue.php:289
5636
  msgid "Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
5637
  msgstr ""
5638
 
5639
+ #: languages/vue.php:292
5640
  msgid "Google Analytics Dashboard"
5641
  msgstr ""
5642
 
5643
+ #: languages/vue.php:295
5644
  msgid "See your website analytics report right inside your WordPress dashboard with actionable insights."
5645
  msgstr ""
5646
 
5647
+ #: languages/vue.php:298
5648
  msgid "Real-time Stats"
5649
  msgstr ""
5650
 
5651
+ #: languages/vue.php:301
5652
  msgid "Get real-time stats right inside WordPress to see who is online, what are they doing, and more."
5653
  msgstr ""
5654
 
5655
+ #: languages/vue.php:304
5656
  msgid "Enhanced Ecommerce Tracking"
5657
  msgstr ""
5658
 
5659
+ #: languages/vue.php:307
5660
  msgid "1-click Google Analytics Enhanced Ecommerce tracking for WooCommerce, Easy Digital Downloads & MemberPress."
5661
  msgstr ""
5662
 
5663
+ #: languages/vue.php:310
5664
  msgid "Page Level Analytics"
5665
  msgstr ""
5666
 
5667
+ #: languages/vue.php:313
5668
  msgid "Get detailed stats for each post and page, so you can see the most popular posts, pages, and sections of your site."
5669
  msgstr ""
5670
 
5671
+ #: languages/vue.php:316
5672
  msgid "Affiliate Link & Ads Tracking"
5673
  msgstr ""
5674
 
5675
+ #: languages/vue.php:319
5676
  msgid "Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking."
5677
  msgstr ""
5678
 
5679
+ #: languages/vue.php:322
5680
  msgid "EU Compliance (GDPR Friendly)"
5681
  msgstr ""
5682
 
5683
+ #: languages/vue.php:325
5684
  msgid "Make Google Analytics compliant with GDPR and other privacy regulations automatically."
5685
  msgstr ""
5686
 
5687
+ #: languages/vue.php:328
5688
  msgid "Setup tracking for authors, categories, tags, searches, custom post types, users, and other events with 1-click."
5689
  msgstr ""
5690
 
5691
+ #: languages/vue.php:331
5692
  msgid "Ecommerce Report"
5693
  msgstr ""
5694
 
5695
+ #: languages/vue.php:334
5696
  msgid "Form Conversions"
5697
  msgstr ""
5698
 
5699
+ #: languages/vue.php:337
5700
  msgid "Custom Dimensions"
5701
  msgstr ""
5702
 
5703
+ #: languages/vue.php:341
5704
  msgid "Author Tracking"
5705
  msgstr ""
5706
 
5707
+ #: languages/vue.php:345
5708
  msgid "Google Optimize"
5709
  msgstr ""
5710
 
5711
+ #: languages/vue.php:348
5712
  msgid "Category / Tags Tracking"
5713
  msgstr ""
5714
 
5715
+ #: languages/vue.php:351
5716
  msgid "WooCommerce"
5717
  msgstr ""
5718
 
5719
+ #: languages/vue.php:355
5720
  msgid "Easy Digital Downloads"
5721
  msgstr ""
5722
 
5780
  msgid "Re-Authenticating"
5781
  msgstr ""
5782
 
5783
+ #: languages/vue.php:407
5784
  msgid "Ok"
5785
  msgstr ""
5786
 
5787
+ #: languages/vue.php:410
5788
  msgid "See Quick Links"
5789
  msgstr ""
5790
 
5791
+ #: languages/vue.php:413
5792
  msgid "Suggest a Feature"
5793
  msgstr ""
5794
 
5795
+ #: languages/vue.php:416
5796
  msgid "Join Our Community"
5797
  msgstr ""
5798
 
5799
+ #: languages/vue.php:419
5800
  msgid "Support & Docs"
5801
  msgstr ""
5802
 
5803
+ #: languages/vue.php:422
5804
  msgid "Upgrade to Pro &#187;"
5805
  msgstr ""
5806
 
5807
  #. Translators: Placeholder is replaced with WPForms.
5808
+ #: languages/vue.php:426
5809
  msgid "Recommended Plugin: %s"
5810
  msgstr ""
5811
 
5812
+ #: languages/vue.php:429
5813
  msgid "Install"
5814
  msgstr ""
5815
 
5816
+ #: languages/vue.php:432
5817
  msgid "Activate"
5818
  msgstr ""
5819
 
5820
+ #: languages/vue.php:439
5821
  msgid "Powered by MonsterInsights"
5822
  msgstr ""
5823
 
5824
+ #: languages/vue.php:442
5825
  #: lite/includes/admin/wp-site-health.php:256
5826
  msgid "View Reports"
5827
  msgstr ""
5828
 
5829
+ #: languages/vue.php:445
5830
  msgid "Congratulations!"
5831
  msgstr ""
5832
 
5833
  #. Translators: Add link to YouTube video and Onboarding Wizard.
5834
+ #: languages/vue.php:449
5835
  msgid "MonsterInsights makes it easy to connect your website with Google Analytics and see all important website stats right inside your WordPress dashboard. In order to setup website analytics, please take a look at our %1$sGetting started video%2$s or use our %3$s to get you quickly set up."
5836
  msgstr ""
5837
 
5838
  #. Translators: Add link to YouTube video and Onboarding Wizard.
5839
+ #: languages/vue.php:453
5840
  msgid "Onboarding Wizard"
5841
  msgstr ""
5842
 
5843
+ #: languages/vue.php:456
5844
  msgid "You are now connected with MonsterInsights. We make it effortless for you to implement Google Analytics tracking and see the stats that matter, right inside the WordPress dashboard."
5845
  msgstr ""
5846
 
5847
+ #: languages/vue.php:459
5848
  msgid "Save Changes"
5849
  msgstr ""
5850
 
5851
+ #: languages/vue.php:462
5852
  msgid "Inbox"
5853
  msgstr ""
5854
 
5855
+ #: languages/vue.php:465
5856
  msgid "Back to Inbox"
5857
  msgstr ""
5858
 
5859
+ #: languages/vue.php:468
5860
  msgid "View Dismissed"
5861
  msgstr ""
5862
 
5863
+ #: languages/vue.php:471
5864
  msgid "Notifications"
5865
  msgstr ""
5866
 
5867
+ #: languages/vue.php:474
5868
  msgid "Dismiss All"
5869
  msgstr ""
5870
 
5871
+ #: languages/vue.php:477
5872
  msgid "Dismissed"
5873
  msgstr ""
5874
 
5875
+ #: languages/vue.php:480
5876
  msgid "No Notifications"
5877
  msgstr ""
5878
 
5879
+ #: languages/vue.php:492
5880
  msgid "Import Export"
5881
  msgstr ""
5882
 
5883
+ #: languages/vue.php:495
5884
  msgid "PrettyLinks Integration"
5885
  msgstr ""
5886
 
5887
+ #: languages/vue.php:503
5888
  msgid "Getting Started"
5889
  msgstr ""
5890
 
5891
+ #: languages/vue.php:508
5892
  msgid "Lite vs Pro"
5893
  msgstr ""
5894
 
5895
+ #: languages/vue.php:514
5896
  msgid "Popular Posts Widget"
5897
  msgstr ""
5898
 
5899
+ #: languages/vue.php:517
5900
  msgid "Popular Products"
5901
  msgstr ""
5902
 
5903
+ #: languages/vue.php:523
5904
  msgid "Sub menu item for WooCommerce Analytics"
5905
  msgstr ""
5906
 
5907
+ #: languages/vue.php:529
5908
  msgid "Engagement"
5909
  msgstr ""
5910
 
5911
+ #: languages/vue.php:532
5912
  #: lite/includes/admin/reports/report-ecommerce.php:22
5913
  msgid "eCommerce"
5914
  msgstr ""
5915
 
5916
+ #: languages/vue.php:535
5917
  msgid "Publisher"
5918
  msgstr ""
5919
 
5920
+ #: languages/vue.php:538
5921
  msgid "Conversions"
5922
  msgstr ""
5923
 
5924
+ #: languages/vue.php:541
5925
  msgid "Advanced"
5926
  msgstr ""
5927
 
5928
+ #: languages/vue.php:544
5929
  msgid "URL Builder"
5930
  msgstr ""
5931
 
5932
+ #: languages/vue.php:547
5933
  msgid "MonsterInsights Addons"
5934
  msgstr ""
5935
 
5936
+ #: languages/vue.php:550
5937
  msgid "Search Addons"
5938
  msgstr ""
5939
 
5940
+ #: languages/vue.php:553
5941
  msgid "Exit Setup"
5942
  msgstr ""
5943
 
5944
+ #: languages/vue.php:556
5945
  msgid "You must connect with MonsterInsights before you can view reports."
5946
  msgstr ""
5947
 
5948
+ #: languages/vue.php:559
5949
  msgid "MonsterInsights makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
5950
  msgstr ""
5951
 
5952
+ #: languages/vue.php:562
5953
  msgid "Launch Setup Wizard"
5954
  msgstr ""
5955
 
5956
+ #: languages/vue.php:565
5957
  msgid "Please ask your webmaster to connect MonsterInsights to Google Analytics."
5958
  msgstr ""
5959
 
5960
+ #: languages/vue.php:572
5961
  #: lite/includes/admin/reports/report-publisher.php:22
5962
  msgid "Publishers"
5963
  msgstr ""
5964
 
5965
+ #: languages/vue.php:575
5966
  #: lite/includes/admin/reports/report-queries.php:22
5967
  msgid "Search Console"
5968
  msgstr ""
5969
 
5970
+ #: languages/vue.php:578
5971
  #: lite/includes/admin/reports/report-dimensions.php:22
5972
  msgid "Dimensions"
5973
  msgstr ""
5974
 
5975
+ #: languages/vue.php:581
5976
  #: lite/includes/admin/reports/report-forms.php:22
5977
  msgid "Forms"
5978
  msgstr ""
5979
 
5980
+ #: languages/vue.php:584
5981
  msgid "Real-Time"
5982
  msgstr ""
5983
 
5984
+ #: languages/vue.php:587
5985
  msgid "Site Speed"
5986
  msgstr ""
5987
 
5988
+ #: languages/vue.php:590
5989
  msgid "2020 Year in Review"
5990
  msgstr ""
5991
 
5992
  #. Translators: Error status and error text.
5993
+ #: languages/vue.php:594
5994
  msgid "Can't load report data. Error: %1$s, %2$s"
5995
  msgstr ""
5996
 
5997
+ #: languages/vue.php:597
5998
  msgid "Error loading report data"
5999
  msgstr ""
6000
 
6001
+ #: languages/vue.php:601
6002
  msgid "Publishers Report"
6003
  msgstr ""
6004
 
6005
+ #: languages/vue.php:605
6006
  msgid "eCommerce Report"
6007
  msgstr ""
6008
 
6009
+ #: languages/vue.php:608
6010
  msgid "Search Console Report"
6011
  msgstr ""
6012
 
6014
  msgid "Dimensions Report"
6015
  msgstr ""
6016
 
6017
+ #: languages/vue.php:616
6018
  msgid "Forms Report"
6019
  msgstr ""
6020
 
6021
+ #: languages/vue.php:619
6022
  msgid "Real-Time Report"
6023
  msgstr ""
6024
 
6025
+ #: languages/vue.php:623
6026
  msgid "Site Speed Report"
6027
  msgstr ""
6028
 
6029
+ #: languages/vue.php:626
6030
  msgid "Time to Purchase"
6031
  msgstr ""
6032
 
6033
+ #: languages/vue.php:629
6034
  msgid "This list shows how many days from first visit it took users to purchase products from your site."
6035
  msgstr ""
6036
 
6037
+ #: languages/vue.php:632
6038
  msgid "Sessions to Purchase"
6039
  msgstr ""
6040
 
6041
+ #: languages/vue.php:635
6042
  msgid "This list shows the number of sessions it took users before they purchased a product from your website."
6043
  msgstr ""
6044
 
6045
+ #: languages/vue.php:638
6046
  msgid "New Customers"
6047
  msgstr ""
6048
 
6049
+ #: languages/vue.php:641
6050
  msgid "This list shows the percentage of new customers who purchased a product from your website."
6051
  msgstr ""
6052
 
6053
+ #: languages/vue.php:644
6054
  msgid "Abandoned Checkouts"
6055
  msgstr ""
6056
 
6057
+ #: languages/vue.php:647
6058
  msgid "This list shows the percentage of carts that never went through the checkout process."
6059
  msgstr ""
6060
 
6061
+ #: languages/vue.php:650
6062
  msgid "Top Posts/Pages"
6063
  msgstr ""
6064
 
6065
+ #: languages/vue.php:653
6066
  msgid "This list shows the most viewed posts and pages on your website."
6067
  msgstr ""
6068
 
6069
+ #: languages/vue.php:656
6070
  msgid "New vs. Returning Visitors"
6071
  msgstr ""
6072
 
6073
+ #: languages/vue.php:659
6074
  msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
6075
  msgstr ""
6076
 
6077
+ #: languages/vue.php:662
6078
  msgid "Device Breakdown"
6079
  msgstr ""
6080
 
6081
+ #: languages/vue.php:665
6082
  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."
6083
  msgstr ""
6084
 
6085
+ #: languages/vue.php:668
6086
  msgid "Top Landing Pages"
6087
  msgstr ""
6088
 
6089
+ #: languages/vue.php:671
6090
  msgid "This list shows the top pages users first land on when visiting your website."
6091
  msgstr ""
6092
 
6093
+ #: languages/vue.php:674
6094
  msgid "Top Exit Pages"
6095
  msgstr ""
6096
 
6097
+ #: languages/vue.php:677
6098
  msgid "This list shows the top pages users exit your website from."
6099
  msgstr ""
6100
 
6101
+ #: languages/vue.php:680
6102
  msgid "Top Outbound Links"
6103
  msgstr ""
6104
 
6105
+ #: languages/vue.php:683
6106
  msgid "This list shows the top links clicked on your website that go to another website."
6107
  msgstr ""
6108
 
6109
+ #: languages/vue.php:686
6110
  msgid "Top Affiliate Links"
6111
  msgstr ""
6112
 
6113
+ #: languages/vue.php:689
6114
  msgid "This list shows the top affiliate links your visitors clicked on."
6115
  msgstr ""
6116
 
6117
+ #: languages/vue.php:692
6118
  msgid "Top Download Links"
6119
  msgstr ""
6120
 
6121
+ #: languages/vue.php:695
6122
  msgid "This list shows the download links your visitors clicked the most."
6123
  msgstr ""
6124
 
6125
+ #: languages/vue.php:698
6126
  msgid "Top Products"
6127
  msgstr ""
6128
 
6129
+ #: languages/vue.php:701
6130
  msgid "This list shows the top selling products on your website."
6131
  msgstr ""
6132
 
6133
+ #: languages/vue.php:704
6134
  msgid "Top Conversion Sources"
6135
  msgstr ""
6136
 
6137
+ #: languages/vue.php:707
6138
  msgid "This list shows the top referral websites in terms of product revenue."
6139
  msgstr ""
6140
 
6141
+ #: languages/vue.php:710
6142
  msgid "Total Add/Remove"
6143
  msgstr ""
6144
 
6145
  #. Translators: Adds a link to documentation.
6146
+ #: languages/vue.php:724
6147
  msgid "In order for the MonsterInsights Google AMP addon to work properly, please ask your webmaster to install the WordPress AMP plugin by Automattic. %1$sLearn More%2$s"
6148
  msgstr ""
6149
 
6150
  #. Translators: Adds link to activate/install plugin and documentation.
6151
+ #: languages/vue.php:728
6152
  msgid "In order for the MonsterInsights 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"
6153
  msgstr ""
6154
 
6155
  #. Translators: Adds a link to documentation.
6156
+ #: languages/vue.php:732
6157
  msgid "In order for the MonsterInsights 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"
6158
  msgstr ""
6159
 
6160
  #. Translators: Adds link to activate/install plugin and documentation.
6161
+ #: languages/vue.php:736
6162
  msgid "In order for the MonsterInsights 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"
6163
  msgstr ""
6164
 
6165
+ #: languages/vue.php:739
6166
  msgid "GDPR Guide"
6167
  msgstr ""
6168
 
6169
+ #: languages/vue.php:742
6170
  msgid "Compliance with European data laws including GDPR can be confusing and time-consuming. In order to help MonsterInsights users comply with these laws, we’ve created an addon that automates a lot of the necessary configuration changes for you. "
6171
  msgstr ""
6172
 
6173
+ #: languages/vue.php:745
6174
  msgid "How to Install and Activate MonsterInsights Addons"
6175
  msgstr ""
6176
 
6177
+ #: languages/vue.php:748
6178
  msgid "The process for installing and activating addons is quick and easy after you install the MonsterInsights plugin. In this guide we’ll walk you through the process, step by step."
6179
  msgstr ""
6180
 
6181
+ #: languages/vue.php:751
6182
  msgid "Enabling eCommerce Tracking and Reports"
6183
  msgstr ""
6184
 
6185
+ #: languages/vue.php:754
6186
  msgid "Want to track your eCommerce sales data for your WooCommerce, MemberPress, or Easy Digital Downloads store with MonsterInsights? In this guide, we’ll show you how to enable eCommerce tracking in Google Analytics in just a few clicks."
6187
  msgstr ""
6188
 
6189
+ #: languages/vue.php:757
6190
  msgid "Read Documentation"
6191
  msgstr ""
6192
 
6193
+ #: languages/vue.php:760
6194
  msgid "Getting Started with MonsterInsights"
6195
  msgstr ""
6196
 
6197
+ #: languages/vue.php:763
6198
  msgid "MonsterInsights 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."
6199
  msgstr ""
6200
 
6201
+ #: languages/vue.php:766
6202
  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."
6203
  msgstr ""
6204
 
6205
+ #: languages/vue.php:769
6206
  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!."
6207
  msgstr ""
6208
 
6209
+ #: languages/vue.php:772
6210
  msgid "Launch the wizard!"
6211
  msgstr ""
6212
 
6213
+ #: languages/vue.php:775
6214
  msgid "Get MonsterInsights Pro and Unlock all the Powerful Features"
6215
  msgstr ""
6216
 
6217
  #. Translators: Makes text bold.
6218
+ #: languages/vue.php:779
6219
  msgid "Thanks for being a loyal MonsterInsights Lite user. %1$sUpgrade to MonsterInsights Pro%2$s to unlock all the awesome features and experience why MonsterInsights is consistently rated the best Google Analytics solution for WordPress."
6220
  msgstr ""
6221
 
6222
+ #: languages/vue.php:782
6223
  msgid "Universal Tracking across devices and campaigns with just a few clicks."
6224
  msgstr ""
6225
 
6226
+ #: languages/vue.php:785
6227
  msgid "See your website analytics reports inside the WordPress dashboard"
6228
  msgstr ""
6229
 
6230
+ #: languages/vue.php:788
6231
  msgid "Get real-time stats right inside WordPress"
6232
  msgstr ""
6233
 
6234
+ #: languages/vue.php:791
6235
  msgid "1-click Google Analytics Enhanced eCommerce tracking"
6236
  msgstr ""
6237
 
6238
+ #: languages/vue.php:794
6239
  msgid "Get detailed stats for each post and page."
6240
  msgstr ""
6241
 
6242
+ #: languages/vue.php:797
6243
  msgid "Automatically track clicks on your affiliate links and ads."
6244
  msgstr ""
6245
 
6246
+ #: languages/vue.php:800
6247
  msgid "Make Google Analytics GDPR compliant automatically"
6248
  msgstr ""
6249
 
6250
+ #: languages/vue.php:803
6251
  msgid "Setup tracking for authors, categories, tags, custom post types, users and more"
6252
  msgstr ""
6253
 
6254
+ #: languages/vue.php:806
6255
  msgid "Enable Google Optimize for A/B testing, adjust sample speed & sample rate."
6256
  msgstr ""
6257
 
6258
+ #: languages/vue.php:809
6259
  msgid "More advanced features"
6260
  msgstr ""
6261
 
6262
+ #: languages/vue.php:812
6263
  msgid "Get MonsterInsights Pro Today and Unlock all the Powerful Features"
6264
  msgstr ""
6265
 
6266
  #. Translators: Makes text green.
6267
+ #: languages/vue.php:816
6268
  msgid "Bonus: MonsterInsights Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
6269
  msgstr ""
6270
 
6271
+ #: languages/vue.php:819
6272
  msgid "How to Connect to Google Analytics"
6273
  msgstr ""
6274
 
6275
+ #: languages/vue.php:822
6276
  msgid "After you install MonsterInsights, you’ll need to connect your WordPress site with your Google Analytics account. MonsterInsights makes the process easy, with no coding required."
6277
  msgstr ""
6278
 
6279
+ #: languages/vue.php:825
6280
  msgid "Guide and Checklist for Advanced Insights"
6281
  msgstr ""
6282
 
6283
+ #: languages/vue.php:828
6284
  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 MonsterInsights’ advanced tracking."
6285
  msgstr ""
6286
 
6287
+ #: languages/vue.php:831
6288
  msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
6289
  msgstr ""
6290
 
6291
+ #: languages/vue.php:834
6292
  msgid "WordPress Admin Area Reports"
6293
  msgstr ""
6294
 
6295
+ #: languages/vue.php:837
6296
  msgid "Standard Reports"
6297
  msgstr ""
6298
 
6299
+ #: languages/vue.php:840
6300
  msgid "Overview Reports for the last 30 days."
6301
  msgstr ""
6302
 
6303
+ #: languages/vue.php:843
6304
  msgid "Advanced Reports"
6305
  msgstr ""
6306
 
6307
+ #: languages/vue.php:846
6308
  msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
6309
  msgstr ""
6310
 
6311
+ #: languages/vue.php:849
6312
  msgid "Dashboard Widget"
6313
  msgstr ""
6314
 
6315
+ #: languages/vue.php:852
6316
  msgid "Basic Widget"
6317
  msgstr ""
6318
 
6319
+ #: languages/vue.php:855
6320
  msgid "Overview Report Synopsis"
6321
  msgstr ""
6322
 
6323
+ #: languages/vue.php:858
6324
  msgid "Advanced Dashboard Widget"
6325
  msgstr ""
6326
 
6327
+ #: languages/vue.php:861
6328
  msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
6329
  msgstr ""
6330
 
6331
+ #: languages/vue.php:867
6332
  msgid "Email Summaries"
6333
  msgstr ""
6334
 
6335
+ #: languages/vue.php:870
6336
  msgid "Included"
6337
  msgstr ""
6338
 
6339
+ #: languages/vue.php:873
6340
  msgid "Get weekly traffic reports directly in your inbox."
6341
  msgstr ""
6342
 
6343
+ #: languages/vue.php:876
6344
  msgid "Publisher Reports"
6345
  msgstr ""
6346
 
6347
+ #: languages/vue.php:879
6348
  msgid "Advanced Publisher Reports & Tracking"
6349
  msgstr ""
6350
 
6351
+ #: languages/vue.php:882
6352
  msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
6353
  msgstr ""
6354
 
6355
+ #: languages/vue.php:888
6356
  msgid "Basic Options"
6357
  msgstr ""
6358
 
6359
+ #: languages/vue.php:891
6360
  msgid "Order Popular Posts by comments or shares with 3 simple theme choices."
6361
  msgstr ""
6362
 
6363
+ #: languages/vue.php:894
6364
  msgid "Dynamic Popular Posts & Popular Products"
6365
  msgstr ""
6366
 
6367
+ #: languages/vue.php:897
6368
  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."
6369
  msgstr ""
6370
 
6371
+ #: languages/vue.php:900
6372
  msgid "Not Available"
6373
  msgstr ""
6374
 
6375
+ #: languages/vue.php:903
6376
  msgid "Complete Custom Dimensions Tracking"
6377
  msgstr ""
6378
 
6379
+ #: languages/vue.php:906
6380
  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"
6381
  msgstr ""
6382
 
6383
+ #: languages/vue.php:912
6384
  msgid "Limited Support"
6385
  msgstr ""
6386
 
6387
+ #: languages/vue.php:915
6388
  msgid "Priority Support"
6389
  msgstr ""
6390
 
6391
+ #: languages/vue.php:918
6392
  msgid "Get the most out of MonsterInsights by upgrading to Pro and unlocking all of the powerful features."
6393
  msgstr ""
6394
 
6395
+ #: languages/vue.php:921
6396
  msgid "Feature"
6397
  msgstr ""
6398
 
6399
+ #: languages/vue.php:924
6400
  msgid "Lite"
6401
  msgstr ""
6402
 
6403
+ #: languages/vue.php:927
6404
  msgid "Pro"
6405
  msgstr ""
6406
 
6407
+ #: languages/vue.php:930
6408
  msgid "Custom Google Analytics Link Tracking"
6409
  msgstr ""
6410
 
6411
+ #: languages/vue.php:933
6412
  msgid "Standard Tracking"
6413
  msgstr ""
6414
 
6415
+ #: languages/vue.php:936
6416
  msgid "Advanced Tracking"
6417
  msgstr ""
6418
 
6419
+ #: languages/vue.php:939
6420
  msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
6421
  msgstr ""
6422
 
6423
+ #: languages/vue.php:942
6424
  msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
6425
  msgstr ""
6426
 
6427
+ #: languages/vue.php:945
6428
  msgid "No-Code-Needed Tracking Features"
6429
  msgstr ""
6430
 
6431
+ #: languages/vue.php:948
6432
  msgid "Basic Tracking Options"
6433
  msgstr ""
6434
 
6435
+ #: languages/vue.php:951
6436
  msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
6437
  msgstr ""
6438
 
6439
+ #: languages/vue.php:954
6440
  msgid "Advanced Tracking Options"
6441
  msgstr ""
6442
 
6443
+ #: languages/vue.php:957
6444
  msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
6445
  msgstr ""
6446
 
6447
+ #: languages/vue.php:960
6448
  msgid "eCommerce Tracking"
6449
  msgstr ""
6450
 
6451
+ #: languages/vue.php:963
6452
  msgid "One-click Complete eCommerce tracking"
6453
  msgstr ""
6454
 
6455
+ #: languages/vue.php:966
6456
  msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
6457
  msgstr ""
6458
 
6459
+ #: languages/vue.php:969
6460
  msgid "Forms Tracking"
6461
  msgstr ""
6462
 
6463
+ #: languages/vue.php:972
6464
  msgid "One-click Form Events Tracking"
6465
  msgstr ""
6466
 
6467
+ #: languages/vue.php:975
6468
  msgid "License Key"
6469
  msgstr ""
6470
 
6471
  #. Translators: Add link to retrieve license key from account.
6472
+ #: languages/vue.php:979
6473
  msgid "Add your MonsterInsights license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
6474
  msgstr ""
6475
 
6476
+ #: languages/vue.php:982
6477
  msgid "Google Authentication"
6478
  msgstr ""
6479
 
6480
+ #: languages/vue.php:985
6481
  msgid "Connect Google Analytics + WordPress"
6482
  msgstr ""
6483
 
6484
+ #: languages/vue.php:988
6485
  msgid "You will be taken to the MonsterInsights website where you'll need to connect your Analytics account."
6486
  msgstr ""
6487
 
6488
+ #: languages/vue.php:991
6489
  msgid "Miscellaneous"
6490
  msgstr ""
6491
 
6492
+ #: languages/vue.php:994
6493
  msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
6494
  msgstr ""
6495
 
6496
+ #: languages/vue.php:997
6497
  msgid "Hide Announcements"
6498
  msgstr ""
6499
 
6500
+ #: languages/vue.php:1000
6501
  msgid "Setup Wizard"
6502
  msgstr ""
6503
 
6504
+ #: languages/vue.php:1003
6505
  msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
6506
  msgstr ""
6507
 
6508
+ #: languages/vue.php:1006
6509
  msgid "Hello and welcome to MonsterInsights, the best Google Analytics plugin for WordPress. MonsterInsights shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions."
6510
  msgstr ""
6511
 
6512
+ #: languages/vue.php:1009
6513
  msgid "Over the years, we found that in order to get the most out of Google Analytics, you needed a full time developer who could implement custom tracking, so that Google Analytics would integrate with things like WooCommerce, and track things which Google doesn't by default, like outbound links."
6514
  msgstr ""
6515
 
6516
+ #: languages/vue.php:1012
6517
  msgid "Our goal is to take the pain out of analytics, making it simple and easy, by eliminating the need to have to worry about code, putting the best reports directly into the area you already go to (your WordPress dashboard), and adding the most advanced insights and features without complicating our plugin with tons of settings. Quite simply, it should \"just work\"."
6518
  msgstr ""
6519
 
6520
+ #: languages/vue.php:1015
6521
  msgid "MonsterInsights is brought to you by the same team that's behind the largest WordPress resource site, WPBeginner, the most popular lead-generation software, OptinMonster, and the best WordPress forms plugin, WPForms."
6522
  msgstr ""
6523
 
6524
+ #: languages/vue.php:1018
6525
  msgid "Yup, we know a thing or two about building awesome products that customers love."
6526
  msgstr ""
6527
 
6528
+ #: languages/vue.php:1021
6529
  msgid "The MonsterInsights Team"
6530
  msgstr ""
6531
 
6532
+ #: languages/vue.php:1024
6533
  msgid "Make your MonsterInsights campaign links prettier with Pretty Links!"
6534
  msgstr ""
6535
 
6536
+ #: languages/vue.php:1027
6537
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links."
6538
  msgstr ""
6539
 
6540
+ #: languages/vue.php:1030
6541
  msgid "Take your MonsterInsights campaign links from our URL Builder and shorten them with Pretty Links!"
6542
  msgstr ""
6543
 
6544
+ #: languages/vue.php:1033
6545
  msgid "Over 200,000 websites use Pretty Links!"
6546
  msgstr ""
6547
 
6548
+ #: languages/vue.php:1036
6549
  msgid "Install Pretty Links"
6550
  msgstr ""
6551
 
6552
+ #: languages/vue.php:1039
6553
  msgid "Pretty Links Installed & Activated"
6554
  msgstr ""
6555
 
6556
+ #: languages/vue.php:1042
6557
  msgid "Download Pretty Links"
6558
  msgstr ""
6559
 
6560
+ #: languages/vue.php:1045
6561
  msgid "Install Pretty Links from the WordPress.org plugin repository."
6562
  msgstr ""
6563
 
6564
+ #: languages/vue.php:1048
6565
  msgid "Activate Pretty Links"
6566
  msgstr ""
6567
 
6568
+ #: languages/vue.php:1051
6569
  msgid "Activating Pretty Links..."
6570
  msgstr ""
6571
 
6572
+ #: languages/vue.php:1054
6573
  msgid "Create New Pretty Link"
6574
  msgstr ""
6575
 
6576
+ #: languages/vue.php:1057
6577
  msgid "Create a New Pretty Link"
6578
  msgstr ""
6579
 
6580
+ #: languages/vue.php:1060
6581
  msgid "Grab your campaign link and paste it into the Target URL field."
6582
  msgstr ""
6583
 
6584
+ #: languages/vue.php:1063
6585
  msgid "Custom Campaign Parameters"
6586
  msgstr ""
6587
 
6588
+ #: languages/vue.php:1066
6589
  msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
6590
  msgstr ""
6591
 
6592
+ #: languages/vue.php:1069
6593
  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."
6594
  msgstr ""
6595
 
6596
  #. Translators: Marks the field as required.
6597
+ #: languages/vue.php:1073
6598
  msgid "Website URL %s"
6599
  msgstr ""
6600
 
6601
  #. Translators: Display the current website url in italic.
6602
+ #: languages/vue.php:1077
6603
  msgid "The full website URL (e.g. %1$s %2$s%3$s)"
6604
  msgstr ""
6605
 
6606
  #. Translators: Marks the field as required.
6607
+ #: languages/vue.php:1081
6608
  msgid "Campaign Source %s"
6609
  msgstr ""
6610
 
6611
  #. Translators: Make the text italic.
6612
+ #: languages/vue.php:1085
6613
  msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
6614
  msgstr ""
6615
 
6616
  #. Translators: Make the text italic.
6617
+ #: languages/vue.php:1089
6618
  msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
6619
  msgstr ""
6620
 
6621
  #. Translators: Make the text italic.
6622
+ #: languages/vue.php:1093
6623
  msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
6624
  msgstr ""
6625
 
6626
+ #: languages/vue.php:1096
6627
  msgid "Enter the paid keyword"
6628
  msgstr ""
6629
 
6630
+ #: languages/vue.php:1099
6631
  msgid "Enter something to differentiate ads"
6632
  msgstr ""
6633
 
6634
+ #: languages/vue.php:1102
6635
  msgid "Use Fragment"
6636
  msgstr ""
6637
 
6638
  #. Translators: Make the text bold.
6639
+ #: languages/vue.php:1106
6640
  msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
6641
  msgstr ""
6642
 
6643
+ #: languages/vue.php:1109
6644
  msgid "URL to use"
6645
  msgstr ""
6646
 
6647
+ #: languages/vue.php:1112
6648
  msgid "(Updates automatically)"
6649
  msgstr ""
6650
 
6651
+ #: languages/vue.php:1115
6652
  msgid "Copy to Clipboard"
6653
  msgstr ""
6654
 
6655
+ #: languages/vue.php:1118
6656
  msgid "Copy to Pretty Links"
6657
  msgstr ""
6658
 
6659
+ #: languages/vue.php:1121
6660
  msgid "Make your campaign links prettier!"
6661
  msgstr ""
6662
 
6663
+ #: languages/vue.php:1124
6664
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links."
6665
  msgstr ""
6666
 
6667
+ #: languages/vue.php:1127
6668
  msgid "More Information & Examples"
6669
  msgstr ""
6670
 
6671
+ #: languages/vue.php:1130
6672
  msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
6673
  msgstr ""
6674
 
6675
+ #: languages/vue.php:1133
6676
  msgid "Campaign Source"
6677
  msgstr ""
6678
 
6679
+ #: languages/vue.php:1136
6680
  msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
6681
  msgstr ""
6682
 
6683
+ #: languages/vue.php:1139
6684
  msgid "Campaign Medium"
6685
  msgstr ""
6686
 
6687
+ #: languages/vue.php:1142
6688
  msgid "Use utm_medium to identify a medium such as email or cost-per-click."
6689
  msgstr ""
6690
 
6691
+ #: languages/vue.php:1145
6692
  msgid "Campaign Name"
6693
  msgstr ""
6694
 
6695
+ #: languages/vue.php:1148
6696
  msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
6697
  msgstr ""
6698
 
6699
+ #: languages/vue.php:1151
6700
  msgid "Campaign Term"
6701
  msgstr ""
6702
 
6703
+ #: languages/vue.php:1154
6704
  msgid "Used for paid search. Use utm_term to note the keywords for this ad."
6705
  msgstr ""
6706
 
6707
+ #: languages/vue.php:1157
6708
  msgid "Campaign Content"
6709
  msgstr ""
6710
 
6711
+ #: languages/vue.php:1160
6712
  msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
6713
  msgstr ""
6714
 
6715
  #. Translators: Example.
6716
+ #: languages/vue.php:1164
6717
  msgid "Example: %s"
6718
  msgstr ""
6719
 
6720
  #. Translators: Examples.
6721
+ #: languages/vue.php:1168
6722
  msgid "Examples: %s"
6723
  msgstr ""
6724
 
6725
+ #: languages/vue.php:1171
6726
  msgid "About Campaigns"
6727
  msgstr ""
6728
 
6729
+ #: languages/vue.php:1174
6730
  msgid "About Custom Campaigns"
6731
  msgstr ""
6732
 
6733
+ #: languages/vue.php:1177
6734
  msgid "Best Practices for Creating Custom Campaigns"
6735
  msgstr ""
6736
 
6737
+ #: languages/vue.php:1180
6738
  msgid "About the Referral Traffic Report"
6739
  msgstr ""
6740
 
6741
+ #: languages/vue.php:1183
6742
  msgid "About Traffic Source Dimensions"
6743
  msgstr ""
6744
 
6745
+ #: languages/vue.php:1186
6746
  msgid "AdWords Auto-Tagging"
6747
  msgstr ""
6748
 
6749
+ #: languages/vue.php:1189
6750
  msgid "Additional Information"
6751
  msgstr ""
6752
 
6753
+ #: languages/vue.php:1192
6754
  msgid "Import/Export"
6755
  msgstr ""
6756
 
6757
+ #: languages/vue.php:1195
6758
  msgid "Import"
6759
  msgstr ""
6760
 
6761
+ #: languages/vue.php:1198
6762
  msgid "Import settings from another MonsterInsights website."
6763
  msgstr ""
6764
 
6765
+ #: languages/vue.php:1201
6766
  msgid "Export"
6767
  msgstr ""
6768
 
6769
+ #: languages/vue.php:1204
6770
  msgid "Export settings to import into another MonsterInsights install."
6771
  msgstr ""
6772
 
6773
+ #: languages/vue.php:1207
6774
  msgid "Import Settings"
6775
  msgstr ""
6776
 
6777
+ #: languages/vue.php:1210
6778
  msgid "Export Settings"
6779
  msgstr ""
6780
 
6781
+ #: languages/vue.php:1213
6782
  msgid "Please choose a file to import"
6783
  msgstr ""
6784
 
6785
+ #: languages/vue.php:1216
6786
  msgid "Click Choose file below to select the settings export file from another site."
6787
  msgstr ""
6788
 
6789
+ #: languages/vue.php:1219
6790
  msgid "Use the button below to export a file with your MonsterInsights settings."
6791
  msgstr ""
6792
 
6793
+ #: languages/vue.php:1222
6794
  msgid "Uploading file..."
6795
  msgstr ""
6796
 
6797
+ #: languages/vue.php:1225
6798
  msgid "File imported"
6799
  msgstr ""
6800
 
6801
+ #: languages/vue.php:1228
6802
  msgid "Settings successfully updated!"
6803
  msgstr ""
6804
 
6805
+ #: languages/vue.php:1231
6806
  msgid "Error importing settings"
6807
  msgstr ""
6808
 
6809
+ #: languages/vue.php:1234
6810
  msgid "Please choose a .json file generated by a MonsterInsights settings export."
6811
  msgstr ""
6812
 
6813
+ #: languages/vue.php:1237
6814
  msgid "MonsterInsights Recommends WPForms"
6815
  msgstr ""
6816
 
6817
+ #: languages/vue.php:1240
6818
  msgid "Built by the folks behind MonsterInsights, WPForms is the most beginner friendly form plugin in the market."
6819
  msgstr ""
6820
 
6821
+ #: languages/vue.php:1243
6822
  msgid "Used on over 4,000,000 websites!"
6823
  msgstr ""
6824
 
6825
+ #: languages/vue.php:1246
6826
  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!"
6827
  msgstr ""
6828
 
6829
+ #: languages/vue.php:1249
6830
  msgid "Skip this Step"
6831
  msgstr ""
6832
 
6833
+ #: languages/vue.php:1252
6834
  msgid "Continue & Install WPForms"
6835
  msgstr ""
6836
 
6846
  msgid "Show in full-width mode"
6847
  msgstr ""
6848
 
6849
+ #: languages/vue.php:1267
6850
  msgid "Installing Addon"
6851
  msgstr ""
6852
 
6853
+ #: languages/vue.php:1270
6854
  msgid "Activating Addon"
6855
  msgstr ""
6856
 
6857
+ #: languages/vue.php:1273
6858
  msgid "Addon Activated"
6859
  msgstr ""
6860
 
6861
+ #: languages/vue.php:1276
6862
  msgid "Loading report data"
6863
  msgstr ""
6864
 
6865
+ #: languages/vue.php:1279
6866
  msgid "Please activate manually"
6867
  msgstr ""
6868
 
6869
  #. Translators: Adds the error status and status text.
6870
+ #: languages/vue.php:1283
6871
  msgid "Error: %1$s, %2$s"
6872
  msgstr ""
6873
 
6874
+ #: languages/vue.php:1286
6875
  msgid "Error Activating Addon"
6876
  msgstr ""
6877
 
6878
+ #: languages/vue.php:1289
6879
  #: lite/includes/admin/wp-site-health.php:375
6880
  #: lite/includes/admin/wp-site-health.php:401
6881
  #: lite/includes/admin/wp-site-health.php:428
6882
  msgid "View Addons"
6883
  msgstr ""
6884
 
6885
+ #: languages/vue.php:1292
6886
  msgid "Dismiss"
6887
  msgstr ""
6888
 
6889
+ #: languages/vue.php:1295
6890
  msgid "Redirecting"
6891
  msgstr ""
6892
 
6893
+ #: languages/vue.php:1298
6894
  msgid "Please wait"
6895
  msgstr ""
6896
 
6897
+ #: languages/vue.php:1302
6898
  msgid "activate"
6899
  msgstr ""
6900
 
6901
+ #: languages/vue.php:1306
6902
  msgid "install"
6903
  msgstr ""
6904
 
6905
+ #: languages/vue.php:1310
6906
  msgid "Visit addons page"
6907
  msgstr ""
6908
 
6909
+ #: languages/vue.php:1313
6910
  msgid "Report Unavailable"
6911
  msgstr ""
6912
 
6913
  #. Translators: Install/Activate the addon.
6914
+ #: languages/vue.php:1317
6915
  msgid "%s Addon"
6916
  msgstr ""
6917
 
6918
+ #: languages/vue.php:1320
6919
  msgid "Go Back To Reports"
6920
  msgstr ""
6921
 
6922
+ #: languages/vue.php:1323
6923
  msgid "Enable Enhanced eCommerce"
6924
  msgstr ""
6925
 
6926
  #. Translators: Placeholders are used for making text bold and adding a link.
6927
+ #: languages/vue.php:1327
6928
  msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
6929
  msgstr ""
6930
 
6931
+ #: languages/vue.php:1330
6932
  msgid "Last 30 Days Insights for:"
6933
  msgstr ""
6934
 
6935
+ #: languages/vue.php:1333
6936
  msgid "Your Website"
6937
  msgstr ""
6938
 
6940
  msgid "Sessions"
6941
  msgstr ""
6942
 
6943
+ #: languages/vue.php:1341
6944
  msgid "Pageviews"
6945
  msgstr ""
6946
 
6947
+ #: languages/vue.php:1344
6948
  msgid "Avg. Duration"
6949
  msgstr ""
6950
 
6951
+ #: languages/vue.php:1352
6952
  msgid "Total Users"
6953
  msgstr ""
6954
 
6955
+ #: languages/vue.php:1355
6956
  msgid "More data is available"
6957
  msgstr ""
6958
 
6959
+ #: languages/vue.php:1358
6960
  msgid "Want to see page-specific stats?"
6961
  msgstr ""
6962
 
6963
+ #: languages/vue.php:1361
6964
  msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
6965
  msgstr ""
6966
 
6967
+ #: languages/vue.php:1364
6968
  msgid "No addons found."
6969
  msgstr ""
6970
 
6971
+ #: languages/vue.php:1367
6972
  msgid "Refresh Addons"
6973
  msgstr ""
6974
 
6975
+ #: languages/vue.php:1370
6976
  msgid "Refreshing Addons"
6977
  msgstr ""
6978
 
6979
  #. Translators: Make text green.
6980
+ #: languages/vue.php:1374
6981
  msgid "Upgrade to Pro to unlock addons and other great features. As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
6982
  msgstr ""
6983
 
6984
+ #: languages/vue.php:1377
6985
  msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
6986
  msgstr ""
6987
 
6988
+ #: languages/vue.php:1380
6989
  msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
6990
  msgstr ""
6991
 
6992
+ #: languages/vue.php:1383
6993
  msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
6994
  msgstr ""
6995
 
6996
+ #: languages/vue.php:1386
6997
  msgid "See All Your Important Store Metrics in One Place"
6998
  msgstr ""
6999
 
7000
+ #: languages/vue.php:1389
7001
  msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
7002
  msgstr ""
7003
 
7004
+ #: languages/vue.php:1392
7005
  msgid "ONE-CLICK INTEGRATIONS"
7006
  msgstr ""
7007
 
7008
+ #: languages/vue.php:1395
7009
  msgid "Enable Ecommerce Tracking and Grow Your Business with Confidence"
7010
  msgstr ""
7011
 
7012
+ #: languages/vue.php:1398
7013
  msgid "MonsterInsights Ecommerce Addon makes it easy to setup enhanced eCommerce tracking, so you can see all your important eCommerce metrics like total revenue, conversion rate, average order value, top products, top referral sources, and more in a single report right inside your WordPress dashboard."
7014
  msgstr ""
7015
 
7016
+ #: languages/vue.php:1401
7017
  msgid "Affiliate Tracking"
7018
  msgstr ""
7019
 
7020
+ #: languages/vue.php:1404
7021
  msgid "Automatically Track Affiliate Sales"
7022
  msgstr ""
7023
 
7024
+ #: languages/vue.php:1407
7025
  msgid "The MonsterInsights eCommerce addon works with EasyAffiliate to automatically attribute orders originating from an EasyAffiliate link in Google Analytics. Gain valuable insights into your top affiliates with no coding required."
7026
  msgstr ""
7027
 
7028
+ #: languages/vue.php:1410
7029
  msgid "Works with WooCommerce, MemberPress and Easy Digital Downloads."
7030
  msgstr ""
7031
 
7032
+ #: languages/vue.php:1419
7033
  msgid "Cart Funnel"
7034
  msgstr ""
7035
 
7036
+ #: languages/vue.php:1422
7037
  msgid "Customer Insights"
7038
  msgstr ""
7039
 
7040
+ #: languages/vue.php:1425
7041
  msgid "Campaign Measurement"
7042
  msgstr ""
7043
 
7044
+ #: languages/vue.php:1428
7045
  msgid "Customer Profiles"
7046
  msgstr ""
7047
 
7048
+ #: languages/vue.php:1431
7049
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, revenue, and average order value, and more."
7050
  msgstr ""
7051
 
7052
+ #: languages/vue.php:1434
7053
  msgid "Truly Understand Your%1$s Customers With %2$sMonsterInsights%3$s"
7054
  msgstr ""
7055
 
7056
+ #: languages/vue.php:1437
7057
  msgid "You never truly understand your customers until you used Enhanced %1$s eCommerce from MonsterInsights!"
7058
  msgstr ""
7059
 
7060
+ #: languages/vue.php:1440
7061
  msgid "Track all-new metrics!"
7062
  msgstr ""
7063
 
7064
+ #: languages/vue.php:1443
7065
  msgid "Get stats WooCommerce doesn’t give you like: Conversion Sources, Avg. Order Value, Revenue per Source, Total Add to Carts & More!"
7066
  msgstr ""
7067
 
7068
+ #: languages/vue.php:1446
7069
  msgid "FEATURES"
7070
  msgstr ""
7071
 
7072
+ #: languages/vue.php:1449
7073
  msgid "Get The Unique Metrics Neccessary for Growth"
7074
  msgstr ""
7075
 
7076
+ #: languages/vue.php:1452
7077
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, %1$srevenue, and average order value, and more."
7078
  msgstr ""
7079
 
7080
+ #: languages/vue.php:1455
7081
  msgid "Get Answers to the important questions %1$syou should know."
7082
  msgstr ""
7083
 
7084
+ #: languages/vue.php:1458
7085
  msgid "Did the login/registration step of the checkout put users off?"
7086
  msgstr ""
7087
 
7088
+ #: languages/vue.php:1461
7089
  msgid "Which ad campaign is driving the most revenue?"
7090
  msgstr ""
7091
 
7092
+ #: languages/vue.php:1464
7093
  msgid "Who is my typical customer?"
7094
  msgstr ""
7095
 
7096
+ #: languages/vue.php:1467
7097
  msgid "Level-up Your eCommerce store with %1$sMonsterInsights + WooCommerce!%1$s"
7098
  msgstr ""
7099
 
7100
  #. Translators: placeholders make text small.
7101
+ #: languages/vue.php:1472
7102
  msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
7103
  msgstr ""
7104
 
7105
  #. Translators: placeholders make text small.
7106
+ #: languages/vue.php:1477
7107
  msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
7108
  msgstr ""
7109
 
7110
  #. Translators: placeholders make text small.
7111
+ #: languages/vue.php:1482
7112
  msgid "None %1$s- Manually update everything.%2$s"
7113
  msgstr ""
7114
 
7115
+ #: languages/vue.php:1486
7116
  msgid "Automatic Updates"
7117
  msgstr ""
7118
 
7119
+ #: languages/vue.php:1489
7120
  msgid "Awesome, You're All Set!"
7121
  msgstr ""
7122
 
7123
+ #: languages/vue.php:1492
7124
  msgid "MonsterInsights is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
7125
  msgstr ""
7126
 
7127
  #. Translators: Make text bold.
7128
+ #: languages/vue.php:1496
7129
  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."
7130
  msgstr ""
7131
 
7132
  #. Translators: Link to our blog.
7133
+ #: languages/vue.php:1500
7134
  msgid "%1$sSubscribe to the MonsterInsights blog%2$s for tips on how to get more traffic and grow your business."
7135
  msgstr ""
7136
 
7137
+ #: languages/vue.php:1503
7138
  msgid "Finish Setup & Exit Wizard"
7139
  msgstr ""
7140
 
7141
+ #: languages/vue.php:1506
7142
  msgid "Checking your website..."
7143
  msgstr ""
7144
 
7145
+ #: languages/vue.php:1509
7146
  msgid "See All Reports"
7147
  msgstr ""
7148
 
7149
+ #: languages/vue.php:1512
7150
  msgid "Go to the Analytics Dashboard"
7151
  msgstr ""
7152
 
7153
  #. Translators: Line break.
7154
+ #: languages/vue.php:1516
7155
  msgid "Unique %s Sessions"
7156
  msgstr ""
7157
 
7158
  #. Translators: Line break.
7159
+ #: languages/vue.php:1520
7160
  msgid "Unique %s Pageviews"
7161
  msgstr ""
7162
 
7163
+ #: languages/vue.php:1523
7164
  msgid "A session is the browsing session of a single user to your site."
7165
  msgstr ""
7166
 
7167
+ #: languages/vue.php:1526
7168
  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."
7169
  msgstr ""
7170
 
7171
+ #: languages/vue.php:1529
7172
  msgid "Total duration of all sessions (in seconds) / number of sessions."
7173
  msgstr ""
7174
 
7175
+ #: languages/vue.php:1532
7176
  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."
7177
  msgstr ""
7178
 
7179
+ #: languages/vue.php:1535
7180
  msgid "The number of distinct tracked users"
7181
  msgstr ""
7182
 
7183
+ #: languages/vue.php:1538
7184
  msgid "Avg. Session Duration"
7185
  msgstr ""
7186
 
7187
+ #: languages/vue.php:1541
7188
  msgid "Still Calculating..."
7189
  msgstr ""
7190
 
7191
+ #: languages/vue.php:1544
7192
  msgid "Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year."
7193
  msgstr ""
7194
 
7195
+ #: languages/vue.php:1547
7196
  msgid "Back to Overview Report"
7197
  msgstr ""
7198
 
7199
+ #: languages/vue.php:1550
7200
  msgid "Your 2020 Analytics Report"
7201
  msgstr ""
7202
 
7203
+ #: languages/vue.php:1553
7204
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2021!"
7205
  msgstr ""
7206
 
7207
+ #: languages/vue.php:1556
7208
  msgid "Audience"
7209
  msgstr ""
7210
 
7211
+ #: languages/vue.php:1559
7212
  msgid "Congrats"
7213
  msgstr ""
7214
 
7215
+ #: languages/vue.php:1562
7216
  msgid "Your website was quite popular this year! "
7217
  msgstr ""
7218
 
7219
+ #: languages/vue.php:1565
7220
  msgid "You had "
7221
  msgstr ""
7222
 
7223
+ #: languages/vue.php:1568
7224
  msgid " visitors!"
7225
  msgstr ""
7226
 
7227
+ #: languages/vue.php:1571
7228
  msgid " visitors"
7229
  msgstr ""
7230
 
7231
+ #: languages/vue.php:1574
7232
  msgid "Total Visitors"
7233
  msgstr ""
7234
 
7235
+ #: languages/vue.php:1577
7236
  msgid "Total Sessions"
7237
  msgstr ""
7238
 
7239
+ #: languages/vue.php:1580
7240
  msgid "Visitors by Month"
7241
  msgstr ""
7242
 
7243
+ #: languages/vue.php:1583
7244
  msgid "January 1, 2020 - December 31, 2020"
7245
  msgstr ""
7246
 
7247
+ #: languages/vue.php:1586
7248
  msgid "A Tip for 2021"
7249
  msgstr ""
7250
 
7251
+ #: languages/vue.php:1589
7252
  msgid "Demographics"
7253
  msgstr ""
7254
 
7255
+ #: languages/vue.php:1592
7256
  msgid "#1"
7257
  msgstr ""
7258
 
7259
+ #: languages/vue.php:1595
7260
  msgid "You Top 5 Countries"
7261
  msgstr ""
7262
 
7263
+ #: languages/vue.php:1598
7264
  msgid "Let’s get to know your visitors a little better, shall we?"
7265
  msgstr ""
7266
 
7267
+ #: languages/vue.php:1601
7268
  msgid "Gender"
7269
  msgstr ""
7270
 
7271
+ #: languages/vue.php:1604
7272
  msgid "Female"
7273
  msgstr ""
7274
 
7275
+ #: languages/vue.php:1607
7276
  msgid "Women"
7277
  msgstr ""
7278
 
7279
+ #: languages/vue.php:1610
7280
  msgid "Male"
7281
  msgstr ""
7282
 
7283
+ #: languages/vue.php:1613
7284
  msgid "Average Age"
7285
  msgstr ""
7286
 
7287
+ #: languages/vue.php:1616
7288
  msgid "Behavior"
7289
  msgstr ""
7290
 
7291
+ #: languages/vue.php:1619
7292
  msgid "Your Top 5 Pages"
7293
  msgstr ""
7294
 
7295
+ #: languages/vue.php:1622
7296
  msgid "Time Spent on Site"
7297
  msgstr ""
7298
 
7299
+ #: languages/vue.php:1625
7300
  msgid "minutes"
7301
  msgstr ""
7302
 
7303
+ #: languages/vue.php:1628
7304
  msgid "Device Type"
7305
  msgstr ""
7306
 
7307
+ #: languages/vue.php:1631
7308
  msgid "A Tip For 2021"
7309
  msgstr ""
7310
 
7311
+ #: languages/vue.php:1634
7312
  msgid "Take advantage of what you’ve already built. See how to get more traffic from existing content in our 32 Marketing Hacks to Grow Your Traffic."
7313
  msgstr ""
7314
 
7315
+ #: languages/vue.php:1637
7316
  msgid "Read - 32 Marketing Hacks to Grow Your Traffic"
7317
  msgstr ""
7318
 
7319
+ #: languages/vue.php:1640
7320
  msgid "So, where did all of these visitors come from?"
7321
  msgstr ""
7322
 
7323
+ #: languages/vue.php:1643
7324
  msgid "Clicks"
7325
  msgstr ""
7326
 
7327
+ #: languages/vue.php:1646
7328
  msgid "Your Top 5 Keywords"
7329
  msgstr ""
7330
 
7331
+ #: languages/vue.php:1649
7332
  msgid "What keywords visitors searched for to find your site"
7333
  msgstr ""
7334
 
7335
+ #: languages/vue.php:1652
7336
  msgid "Your Top 5 Referrals"
7337
  msgstr ""
7338
 
7339
+ #: languages/vue.php:1655
7340
  msgid "The websites that link back to your website"
7341
  msgstr ""
7342
 
7343
+ #: languages/vue.php:1658
7344
  msgid "Opportunity"
7345
  msgstr ""
7346
 
7347
+ #: languages/vue.php:1661
7348
  msgid "Use referral sources to create new partnerships or expand existing ones. See our guide on how to spy on your competitors and ethically steal their traffic."
7349
  msgstr ""
7350
 
7351
+ #: languages/vue.php:1664
7352
  msgid "Read - How to Ethically Steal Your Competitor’s Traffic"
7353
  msgstr ""
7354
 
7355
+ #: languages/vue.php:1667
7356
  msgid "Thank you for using MonsterInsights!"
7357
  msgstr ""
7358
 
7359
+ #: languages/vue.php:1670
7360
  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."
7361
  msgstr ""
7362
 
7363
+ #: languages/vue.php:1673
7364
  msgid "Here's to an amazing 2021!"
7365
  msgstr ""
7366
 
7367
+ #: languages/vue.php:1676
7368
  msgid "Enjoying MonsterInsights"
7369
  msgstr ""
7370
 
7371
+ #: languages/vue.php:1679
7372
  msgid "Leave a five star review!"
7373
  msgstr ""
7374
 
7375
+ #: languages/vue.php:1682
7376
  msgid "Syed Balkhi"
7377
  msgstr ""
7378
 
7379
+ #: languages/vue.php:1685
7380
  msgid "Chris Christoff"
7381
  msgstr ""
7382
 
7383
+ #: languages/vue.php:1688
7384
  msgid "Write Review"
7385
  msgstr ""
7386
 
7387
+ #: languages/vue.php:1691
7388
  msgid "Did you know over 10 million websites use our plugins?"
7389
  msgstr ""
7390
 
7391
+ #: languages/vue.php:1694
7392
  msgid "Try our other popular WordPress plugins to grow your website in 2021."
7393
  msgstr ""
7394
 
7395
+ #: languages/vue.php:1697
7396
  msgid "Join our Communities!"
7397
  msgstr ""
7398
 
7399
+ #: languages/vue.php:1700
7400
  msgid "Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level."
7401
  msgstr ""
7402
 
7403
+ #: languages/vue.php:1703
7404
  msgid "Facebook Group"
7405
  msgstr ""
7406
 
7407
+ #: languages/vue.php:1706
7408
  msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
7409
  msgstr ""
7410
 
7411
+ #: languages/vue.php:1709
7412
  msgid "Join Now...It’s Free!"
7413
  msgstr ""
7414
 
7415
+ #: languages/vue.php:1712
7416
  msgid "WordPress Tutorials by WPBeginner"
7417
  msgstr ""
7418
 
7419
+ #: languages/vue.php:1715
7420
  msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
7421
  msgstr ""
7422
 
7423
+ #: languages/vue.php:1718
7424
  msgid "Visit WPBeginner"
7425
  msgstr ""
7426
 
7427
+ #: languages/vue.php:1721
7428
  msgid "Follow Us!"
7429
  msgstr ""
7430
 
7431
+ #: languages/vue.php:1724
7432
  msgid "Follow MonsterInsights on social media to stay up to date with latest updates, trends, and tutorials on how to make the most out of analytics."
7433
  msgstr ""
7434
 
7435
+ #: languages/vue.php:1727
7436
  msgid "Copyright MonsterInsights, 2021"
7437
  msgstr ""
7438
 
7439
+ #: languages/vue.php:1730
7440
  msgid "Upgrade to MonsterInsights Pro to Unlock Additional Actionable Insights"
7441
  msgstr ""
7442
 
7443
+ #: languages/vue.php:1733
7444
  msgid "January"
7445
  msgstr ""
7446
 
7447
+ #: languages/vue.php:1736
7448
  msgid "February"
7449
  msgstr ""
7450
 
7451
+ #: languages/vue.php:1739
7452
  msgid "March"
7453
  msgstr ""
7454
 
7455
+ #: languages/vue.php:1742
7456
  msgid "April"
7457
  msgstr ""
7458
 
7459
+ #: languages/vue.php:1745
7460
  msgid "May"
7461
  msgstr ""
7462
 
7463
+ #: languages/vue.php:1748
7464
  msgid "June"
7465
  msgstr ""
7466
 
7467
+ #: languages/vue.php:1751
7468
  msgid "July"
7469
  msgstr ""
7470
 
7471
+ #: languages/vue.php:1754
7472
  msgid "August"
7473
  msgstr ""
7474
 
7475
+ #: languages/vue.php:1757
7476
  msgid "September"
7477
  msgstr ""
7478
 
7479
+ #: languages/vue.php:1760
7480
  msgid "October"
7481
  msgstr ""
7482
 
7483
+ #: languages/vue.php:1763
7484
  msgid "November"
7485
  msgstr ""
7486
 
7487
+ #: languages/vue.php:1766
7488
  msgid "December"
7489
  msgstr ""
7490
 
7491
  #. Translators: Number of visitors.
7492
+ #: languages/vue.php:1770
7493
  msgid "Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>"
7494
  msgstr ""
7495
 
7496
+ #: languages/vue.php:1773
7497
  msgid "See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success."
7498
  msgstr ""
7499
 
7500
  #. Translators: Number of visitors.
7501
+ #: languages/vue.php:1777
7502
  msgid "Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries."
7503
  msgstr ""
7504
 
7505
  #. Translators: Number of visitors.
7506
+ #: languages/vue.php:1781
7507
  msgid "%s Visitors"
7508
  msgstr ""
7509
 
7510
  #. Translators: Percent and Number of visitors.
7511
+ #: languages/vue.php:1785
7512
  msgid "%1$s&#37 of your visitors were %2$s"
7513
  msgstr ""
7514
 
7515
  #. Translators: Number of visitors and their age.
7516
+ #: languages/vue.php:1789
7517
  msgid "%1$s&#37 of your visitors were between the ages of %2$s"
7518
  msgstr ""
7519
 
7520
+ #: languages/vue.php:1792
7521
  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>"
7522
  msgstr ""
7523
 
7524
  #. Translators: Number of minutes spent on site.
7525
+ #: languages/vue.php:1796
7526
  msgid "Each visitor spent an average of %s minutes on your website in 2020."
7527
  msgstr ""
7528
 
7529
  #. Translators: Name of device type.
7530
+ #: languages/vue.php:1800
7531
  msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
7532
  msgstr ""
7533
 
7534
  #. Translators: Number of visitors and device percentage.
7535
+ #: languages/vue.php:1804
7536
  msgid "%1$s&#37 of your visitors were on a %2$s device."
7537
  msgstr ""
7538
 
7539
+ #: languages/vue.php:1807
7540
  msgid "Desktop"
7541
  msgstr ""
7542
 
7543
+ #: languages/vue.php:1810
7544
  msgid "Tablet"
7545
  msgstr ""
7546
 
7547
+ #: languages/vue.php:1813
7548
  msgid "Mobile"
7549
  msgstr ""
7550
 
7551
+ #: languages/vue.php:1816
7552
  msgid "Right Now"
7553
  msgstr ""
7554
 
7555
+ #: languages/vue.php:1819
7556
  msgid "Active users on site"
7557
  msgstr ""
7558
 
7559
+ #: languages/vue.php:1822
7560
  msgid "The real-time graph of visitors over time is not currently available for this site. Please try again later."
7561
  msgstr ""
7562
 
7563
+ #: languages/vue.php:1825
7564
  msgid "Important: this only includes users who are tracked in real-time. Not all users are tracked in real-time including (but not limited to) logged-in site administrators, certain mobile users, and users who match a Google Analytics filter."
7565
  msgstr ""
7566
 
7567
+ #: languages/vue.php:1828
7568
  msgid "The real-time report automatically updates approximately every 60 seconds."
7569
  msgstr ""
7570
 
7571
  #. Translators: Number of seconds that have passed since the report was refreshed.
7572
+ #: languages/vue.php:1832
7573
  msgid "The real-time report was last updated %s seconds ago."
7574
  msgstr ""
7575
 
7576
+ #: languages/vue.php:1835
7577
  msgid "The latest data will be automatically shown on this page when it becomes available."
7578
  msgstr ""
7579
 
7580
+ #: languages/vue.php:1838
7581
  msgid "There is no need to refresh the browser (doing so won't have any effect)."
7582
  msgstr ""
7583
 
7584
+ #: languages/vue.php:1841
7585
  msgid "Pageviews Per Minute"
7586
  msgstr ""
7587
 
7588
+ #: languages/vue.php:1844
7589
  msgid "Top Pages"
7590
  msgstr ""
7591
 
7592
+ #: languages/vue.php:1847
7593
  msgid "No pageviews currently."
7594
  msgstr ""
7595
 
7596
+ #: languages/vue.php:1850
7597
  msgid "Page"
7598
  msgstr ""
7599
 
7600
+ #: languages/vue.php:1853
7601
  msgid "Pageview Count"
7602
  msgstr ""
7603
 
7604
+ #: languages/vue.php:1856
7605
  msgid "Percent of Total"
7606
  msgstr ""
7607
 
7608
+ #: languages/vue.php:1859
7609
  msgid "This is the number of active users currently on your site."
7610
  msgstr ""
7611
 
7612
+ #: languages/vue.php:1862
7613
  msgid "This graph shows the number of pageviews for each of the last 30 minutes."
7614
  msgstr ""
7615
 
7616
+ #: languages/vue.php:1865
7617
  msgid "This list shows the top pages users are currently viewing on your site."
7618
  msgstr ""
7619
 
7620
+ #: languages/vue.php:1868
7621
  msgid "View All Real-Time Pageviews"
7622
  msgstr ""
7623
 
7624
+ #: languages/vue.php:1871
7625
  msgid "View All Real-Time Traffic Sources"
7626
  msgstr ""
7627
 
7628
+ #: languages/vue.php:1874
7629
  msgid "View All Real-Time Traffic by Country"
7630
  msgstr ""
7631
 
7632
+ #: languages/vue.php:1877
7633
  msgid "View All Real-Time Traffic by City"
7634
  msgstr ""
7635
 
7636
+ #: languages/vue.php:1880
7637
  msgid "Show Overview Reports"
7638
  msgstr ""
7639
 
7640
+ #: languages/vue.php:1883
7641
  msgid "Show Publishers Reports"
7642
  msgstr ""
7643
 
7644
+ #: languages/vue.php:1886
7645
  msgid "Show eCommerce Reports"
7646
  msgstr ""
7647
 
7648
+ #: languages/vue.php:1889
7649
  msgid "Settings Menu"
7650
  msgstr ""
7651
 
7652
+ #: languages/vue.php:1892
7653
  msgid "Available in PRO version"
7654
  msgstr ""
7655
 
7656
+ #: languages/vue.php:1895
7657
  msgid "Thank you for being a loyal MonsterInsights Lite user."
7658
  msgstr ""
7659
 
7660
+ #: languages/vue.php:1898
7661
  msgid "Upgrade to MonsterInsights Pro and unlock all the awesome features."
7662
  msgstr ""
7663
 
7664
  #. Translators: Gets replaced with the coupon code.
7665
+ #: languages/vue.php:1902
7666
  msgid "Use coupon code %s to get 50%% off."
7667
  msgstr ""
7668
 
7669
+ #: languages/vue.php:1905
7670
  msgid "Dashboard widget"
7671
  msgstr ""
7672
 
7673
+ #: languages/vue.php:1908
7674
  msgid "Affiliate Links"
7675
  msgstr ""
7676
 
7677
+ #: languages/vue.php:1911
7678
  msgid "Enhanced Ecommerce"
7679
  msgstr ""
7680
 
7681
+ #: languages/vue.php:1914
7682
  msgid "Banner Ads"
7683
  msgstr ""
7684
 
7685
+ #: languages/vue.php:1917
7686
  msgid "Google AMP"
7687
  msgstr ""
7688
 
7689
+ #: languages/vue.php:1920
7690
  msgid "SEO Score Tracking"
7691
  msgstr ""
7692
 
7966
  msgstr ""
7967
 
7968
  #. Translators: Example path (/go/).
7969
+ #: languages/vue.php:2141
7970
  msgid "Path (example: %s)"
7971
  msgstr ""
7972
 
7973
+ #: languages/vue.php:2145
7974
  msgid "Path has to start with a / and have no spaces"
7975
  msgstr ""
7976
 
7977
  #. Translators: Example label (aff).
7978
+ #: languages/vue.php:2150
7979
  msgid "Label (example: %s)"
7980
  msgstr ""
7981
 
7982
+ #: languages/vue.php:2154
7983
  msgid "Label can't contain any spaces"
7984
  msgstr ""
7985
 
7986
  #. Translators: Add links to documentation.
7987
+ #: languages/vue.php:2158
7988
  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."
7989
  msgstr ""
7990
 
7991
+ #: languages/vue.php:2161
7992
  msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
7993
  msgstr ""
7994
 
7995
+ #: languages/vue.php:2164
7996
  msgid "The MonsterInsights 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."
7997
  msgstr ""
7998
 
7999
+ #: languages/vue.php:2167
8000
  msgid "Disable the Headline Analyzer"
8001
  msgstr ""
8002
 
8003
+ #: languages/vue.php:2170
8004
  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 Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
8005
  msgstr ""
8006
 
8007
+ #: languages/vue.php:2173
8008
  msgid "Or manually enter UA code (limited functionality)"
8009
  msgstr ""
8010
 
8011
+ #: languages/vue.php:2176
8012
  msgid "Dual Tracking Profile"
8013
  msgstr ""
8014
 
8015
+ #: languages/vue.php:2179
8016
  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."
8017
  msgstr ""
8018
 
8019
+ #: languages/vue.php:2182
8020
  msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers."
8021
  msgstr ""
8022
 
8023
+ #: languages/vue.php:2185
8024
  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."
8025
  msgstr ""
8026
 
8027
+ #: languages/vue.php:2188
8028
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
8029
  msgstr ""
8030
 
8032
  msgid "Measurement Protocol API Secret"
8033
  msgstr ""
8034
 
8035
+ #: languages/vue.php:2194
8036
  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."
8037
  msgstr ""
8038
 
8039
+ #: languages/vue.php:2197
8040
  msgid "Force Deauthenticate"
8041
  msgstr ""
8042
 
8043
+ #: languages/vue.php:2200
8044
  msgid "Disconnect MonsterInsights"
8045
  msgstr ""
8046
 
8047
+ #: languages/vue.php:2203
8048
  msgid "Authenticating"
8049
  msgstr ""
8050
 
8051
+ #: languages/vue.php:2206
8052
  msgid "Verifying Credentials"
8053
  msgstr ""
8054
 
8055
+ #: languages/vue.php:2209
8056
  msgid "Your site is connected to MonsterInsights!"
8057
  msgstr ""
8058
 
8059
+ #: languages/vue.php:2212
8060
  msgid "Deauthenticating"
8061
  msgstr ""
8062
 
8063
+ #: languages/vue.php:2215
8064
  msgid "You've disconnected your site from MonsterInsights. Your site is no longer being tracked by Google Analytics and you won't see reports anymore."
8065
  msgstr ""
8066
 
8067
+ #: languages/vue.php:2218
8068
  msgid "Connect MonsterInsights"
8069
  msgstr ""
8070
 
8071
+ #: languages/vue.php:2221
8072
  msgid "Verify Credentials"
8073
  msgstr ""
8074
 
8075
+ #: languages/vue.php:2224
8076
  msgid "Website Profile"
8077
  msgstr ""
8078
 
8079
+ #: languages/vue.php:2227
8080
  msgid "Active Profile"
8081
  msgstr ""
8082
 
8083
+ #: languages/vue.php:2230
8084
  msgid "Your website profile has been set at the network level of your WordPress Multisite."
8085
  msgstr ""
8086
 
8087
+ #: languages/vue.php:2233
8088
  msgid "If you would like to use a different profile for this subsite, you can authenticate below."
8089
  msgstr ""
8090
 
8091
+ #: languages/vue.php:2236
8092
  msgid "Manually enter your UA code"
8093
  msgstr ""
8094
 
8095
+ #: languages/vue.php:2239
8096
  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."
8097
  msgstr ""
8098
 
8099
+ #: languages/vue.php:2242
8100
  msgid "Manually enter your GA4 Measurement ID"
8101
  msgstr ""
8102
 
8103
+ #: languages/vue.php:2245
8104
  msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
8105
  msgstr ""
8106
 
8107
+ #: languages/vue.php:2248
8108
  msgid "Anonymize IP Addresses"
8109
  msgstr ""
8110
 
8111
+ #: languages/vue.php:2251
8112
  msgid "Link Attribution"
8113
  msgstr ""
8114
 
8115
+ #: languages/vue.php:2254
8116
  msgid "Enable Enhanced Link Attribution"
8117
  msgstr ""
8118
 
8119
+ #: languages/vue.php:2257
8120
  msgid "Enable Anchor Tracking"
8121
  msgstr ""
8122
 
8123
+ #: languages/vue.php:2260
8124
  msgid "Enable allowAnchor"
8125
  msgstr ""
8126
 
8127
+ #: languages/vue.php:2263
8128
  msgid "Enable allowLinker"
8129
  msgstr ""
8130
 
8131
+ #: languages/vue.php:2266
8132
  msgid "Enable Tag Links in RSS"
8133
  msgstr ""
8134
 
8135
+ #: languages/vue.php:2269
8136
  msgid "File Downloads"
8137
  msgstr ""
8138
 
8139
+ #: languages/vue.php:2272
8140
  msgid "Extensions of Files to Track as Downloads"
8141
  msgstr ""
8142
 
8143
+ #: languages/vue.php:2275
8144
  msgid "MonsterInsights will send an event to Google Analytics if a link to a file has one of the above extensions."
8145
  msgstr ""
8146
 
8147
  #. Translators: Add links to the documentation.
8148
+ #: languages/vue.php:2279
8149
  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."
8150
  msgstr ""
8151
 
8152
  #. Translators: Adds a link to the documentation.
8153
+ #: languages/vue.php:2283
8154
  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."
8155
  msgstr ""
8156
 
8157
  #. Translators: Adds a link to the documentation.
8158
+ #: languages/vue.php:2287
8159
  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."
8160
  msgstr ""
8161
 
8162
+ #: languages/vue.php:2290
8163
  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."
8164
  msgstr ""
8165
 
8166
  #. Translators: Adds a link to the documentation.
8167
+ #: languages/vue.php:2294
8168
  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."
8169
  msgstr ""
8170
 
8171
  #. Translators: Adds a link to the documentation.
8172
+ #: languages/vue.php:2298
8173
  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."
8174
  msgstr ""
8175
 
8176
  #. Translators: Adds a link to the documentation.
8177
+ #: languages/vue.php:2302
8178
  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."
8179
  msgstr ""
8180
 
8181
+ #: languages/vue.php:2305
8182
  msgid "Add domain"
8183
  msgstr ""
8184
 
8185
  #. Translators: Example domain.
8186
+ #: languages/vue.php:2309
8187
  msgid "Domain (example: %s)"
8188
  msgstr ""
8189
 
8190
  #. Translators: Current site domain to be avoided.
8191
+ #: languages/vue.php:2313
8192
  msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
8193
  msgstr ""
8194
 
8195
+ #: languages/vue.php:2316
8196
  msgid "Cross Domain Tracking"
8197
  msgstr ""
8198
 
8199
  #. Translators: Adds a link to the documentation.
8200
+ #: languages/vue.php:2320
8201
  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."
8202
  msgstr ""
8203
 
8204
  #. Translators: Number of days.
8205
+ #: languages/vue.php:2324
8206
  msgid "vs. Previous Day"
8207
  msgstr ""
8208
 
8209
+ #: languages/vue.php:2327
8210
  msgid "No change"
8211
  msgstr ""
8212
 
8213
+ #: languages/vue.php:2330
8214
  msgid "Forms Tracking help you see who’s viewing your forms, so you can increase conversions."
8215
  msgstr ""
8216
 
8217
+ #: languages/vue.php:2333
8218
  msgid "Custom Dimensions show you popular categories, best time to publish, focus keywords, etc."
8219
  msgstr ""
8220
 
8221
+ #: languages/vue.php:2336
8222
  msgid "Make Google Analytics GDPR compliant with our EU Compliance addon."
8223
  msgstr ""
8224
 
8225
+ #: languages/vue.php:2339
8226
  msgid "Get real-time Google Analytics report right inside your WordPress dashboard."
8227
  msgstr ""
8228
 
8229
+ #: languages/vue.php:2342
8230
  msgid "Use Google Optimize to easily perform A/B split tests on your site."
8231
  msgstr ""
8232
 
8233
+ #: languages/vue.php:2345
8234
  msgid "See all your important store metrics in one place with Enhanced Ecommerce Tracking."
8235
  msgstr ""
8236
 
8237
+ #: languages/vue.php:2348
8238
  msgid "Unlock search console report to see your top performing keywords in Google."
8239
  msgstr ""
8240
 
8241
+ #: languages/vue.php:2351
8242
  msgid "Get Page Insights to see important metrics for individual posts / pages in WordPress."
8243
  msgstr ""
8244
 
8245
+ #: languages/vue.php:2354
8246
  msgid "Publishers Report shows your top performing pages, audience demographics, and more."
8247
  msgstr ""
8248
 
8249
+ #: languages/vue.php:2357
8250
  msgid "Get Scroll-Depth tracking to see how far users scroll on your pages before leaving."
8251
  msgstr ""
8252
 
8253
+ #: languages/vue.php:2360
8254
  msgid "Upgrade to Pro »"
8255
  msgstr ""
8256
 
8257
+ #: languages/vue.php:2363
8258
  msgid "Pro Tip:"
8259
  msgstr ""
8260
 
8261
+ #: languages/vue.php:2366
8262
  msgid "Show"
8263
  msgstr ""
8264
 
8265
+ #: languages/vue.php:2369
8266
  msgid "Hide dashboard widget"
8267
  msgstr ""
8268
 
8269
+ #: languages/vue.php:2372
8270
  msgid "Are you sure you want to hide the MonsterInsights Dashboard Widget? "
8271
  msgstr ""
8272
 
8273
+ #: languages/vue.php:2375
8274
  msgid "Yes, hide it!"
8275
  msgstr ""
8276
 
8277
+ #: languages/vue.php:2378
8278
  msgid "No, cancel!"
8279
  msgstr ""
8280
 
8281
+ #: languages/vue.php:2381
8282
  msgid "MonsterInsights Widget Hidden"
8283
  msgstr ""
8284
 
8285
+ #: languages/vue.php:2384
8286
  msgid "You can re-enable the MonsterInsights widget at any time using the \"Screen Options\" menu on the top right of this page"
8287
  msgstr ""
8288
 
8289
+ #: languages/vue.php:2390
8290
  msgid "Usage Tracking"
8291
  msgstr ""
8292
 
8293
+ #: languages/vue.php:2393
8294
  msgid "Allow Usage Tracking"
8295
  msgstr ""
8296
 
8297
+ #: languages/vue.php:2396
8298
  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."
8299
  msgstr ""
8300
 
8301
  #. Translators: Add links to documentation.
8302
+ #: languages/vue.php:2400
8303
  msgid "Complete documentation on usage tracking is available %1$shere%2$s."
8304
  msgstr ""
8305
 
8306
  #. Translators: Make text green and add smiley face.
8307
+ #: languages/vue.php:2404
8308
  msgid "You're using %1$sMonsterInsights Lite%2$s - no license needed. Enjoy! %3$s"
8309
  msgstr ""
8310
 
8311
  #. Translators: Add link to upgrade.
8312
+ #: languages/vue.php:2408
8313
  msgid "To unlock more features consider %1$supgrading to PRO%2$s."
8314
  msgstr ""
8315
 
8316
  #. Translators: Make text green.
8317
+ #: languages/vue.php:2412
8318
  msgid "As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
8319
  msgstr ""
8320
 
8321
+ #: languages/vue.php:2415
8322
  msgid "Unlock PRO Features Now"
8323
  msgstr ""
8324
 
8325
+ #: languages/vue.php:2418
8326
  msgid "Paste your license key here"
8327
  msgstr ""
8328
 
8329
+ #: languages/vue.php:2421
8330
  msgid "Verify"
8331
  msgstr ""
8332
 
8333
  #. Translators: Add link to retrieve license from account area.
8334
+ #: languages/vue.php:2425
8335
  msgid "Already purchased? Simply enter your license key below to connect with MonsterInsights PRO! %1$sRetrieve your license key%2$s."
8336
  msgstr ""
8337
 
8338
+ #: languages/vue.php:2428
8339
  msgid "There was an error unlocking MonsterInsights PRO please try again or install manually."
8340
  msgstr ""
8341
 
8342
  #. Translators: Error status and error text.
8343
+ #: languages/vue.php:2432
8344
  msgid "Can't load errors. Error: %1$s, %2$s"
8345
  msgstr ""
8346
 
8347
+ #: languages/vue.php:2435
8348
  msgid "No options available"
8349
  msgstr ""
8350
 
8351
+ #: languages/vue.php:2438
8352
  msgid "%1$sAll-in-One SEO%2$s Makes SEO Simple. Gain Valuable Organic Traffic."
8353
  msgstr ""
8354
 
8355
+ #: languages/vue.php:2441
8356
  msgid "Automatically migrate all of your SEO settings with just 1 click!"
8357
  msgstr ""
8358
 
8359
+ #: languages/vue.php:2444
8360
  msgid "1,938"
8361
  msgstr ""
8362
 
8363
+ #: languages/vue.php:2447
8364
  msgid "2+ Million Active Installs"
8365
  msgstr ""
8366
 
8367
+ #: languages/vue.php:2450
8368
  msgid "AIOSEO is the DIY Solution for Managing your SEO"
8369
  msgstr ""
8370
 
8371
+ #: languages/vue.php:2453
8372
  msgid "Set up the proper SEO foundations in less than 10 minutes."
8373
  msgstr ""
8374
 
8375
+ #: languages/vue.php:2456
8376
  msgid "SEO Audit Checklist"
8377
  msgstr ""
8378
 
8379
+ #: languages/vue.php:2459
8380
  msgid "Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic."
8381
  msgstr ""
8382
 
8383
+ #: languages/vue.php:2462
8384
  msgid "Optimize Your Pages For Higher Rankings With TruSEO Score."
8385
  msgstr ""
8386
 
8387
+ #: languages/vue.php:2465
8388
  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."
8389
  msgstr ""
8390
 
8391
+ #: languages/vue.php:2468
8392
  msgid "Get AIOSEO for WordPress"
8393
  msgstr ""
8394
 
8395
+ #: languages/vue.php:2471
8396
  msgid "Get the #1 Most Powerful WordPress SEO Plugin Today"
8397
  msgstr ""
8398
 
8399
+ #: languages/vue.php:2474
8400
  msgid "Try it out today, for free."
8401
  msgstr ""
8402
 
8403
+ #: languages/vue.php:2477
8404
  msgid "Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings."
8405
  msgstr ""
8406
 
8407
+ #: languages/vue.php:2480
8408
  msgid "Activate and Install the Plugin with just one click!"
8409
  msgstr ""
8410
 
8411
+ #: languages/vue.php:2483
8412
  msgid "Installing AIOSEO..."
8413
  msgstr ""
8414
 
8415
+ #: languages/vue.php:2486
8416
  msgid "Congrats! All-in-One SEO Installed."
8417
  msgstr ""
8418
 
8419
+ #: languages/vue.php:2489
8420
  msgid "Switch to AIOSEO"
8421
  msgstr ""
8422
 
8423
+ #: languages/vue.php:2492
8424
  msgid "Installation Failed. Please refresh and try again."
8425
  msgstr ""
8426
 
8427
+ #: languages/vue.php:2495
8428
  msgid "Activating AIOSEO..."
8429
  msgstr ""
8430
 
8431
+ #: languages/vue.php:2498
8432
  msgid "Activate AIOSEO"
8433
  msgstr ""
8434
 
8435
+ #: languages/vue.php:2501
8436
  msgid "Activation Failed. Please refresh and try again."
8437
  msgstr ""
8438
 
8439
  #. Translators: The name of the field that is throwing a validation error.
8440
+ #: languages/vue.php:2505
8441
  msgid "%s can't be empty."
8442
  msgstr ""
8443
 
8444
+ #: languages/vue.php:2508
8445
  msgid "Duplicate values are not allowed."
8446
  msgstr ""
8447
 
8448
+ #: languages/vue.php:2511
8449
  msgid "You can add maximum 5 items."
8450
  msgstr ""
8451
 
8452
+ #: languages/vue.php:2514
8453
  msgid "At least 0 item required."
8454
  msgstr ""
8455
 
8456
+ #: languages/vue.php:2517
8457
  msgid "Add Another Link Path"
8458
  msgstr ""
8459
 
8460
+ #: languages/vue.php:2520
8461
  msgid "Remove row"
8462
  msgstr ""
8463
 
8464
+ #: languages/vue.php:2523
8465
  msgid "New"
8466
  msgstr ""
8467
 
8468
+ #: languages/vue.php:2526
8469
  msgid "Returning"
8470
  msgstr ""
8471
 
8472
+ #: languages/vue.php:2529
8473
  msgid "Top 10 Countries"
8474
  msgstr ""
8475
 
8476
+ #: languages/vue.php:2532
8477
  msgid "View Countries Report"
8478
  msgstr ""
8479
 
8480
+ #: languages/vue.php:2535
8481
  msgid "Top 10 Referrals"
8482
  msgstr ""
8483
 
8484
+ #: languages/vue.php:2538
8485
  msgid "View All Referral Sources"
8486
  msgstr ""
8487
 
8488
+ #: languages/vue.php:2541
8489
  msgid "View Full Posts/Pages Report"
8490
  msgstr ""
8491
 
8492
+ #: languages/vue.php:2544
8493
  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."
8494
  msgstr ""
8495
 
8496
+ #: languages/vue.php:2547
8497
  msgid "This list shows the top countries your website visitors are from."
8498
  msgstr ""
8499
 
8500
+ #: languages/vue.php:2550
8501
  msgid "This list shows the top websites that send your website traffic, known as referral traffic."
8502
  msgstr ""
8503
 
8504
+ #: languages/vue.php:2553
8505
  msgid "Export PDF Overview Report"
8506
  msgstr ""
8507
 
8508
+ #: languages/vue.php:2556
8509
  msgid "Reset to default"
8510
  msgstr ""
8511
 
8512
+ #: languages/vue.php:2559
8513
  msgid "The value entered does not match the required format"
8514
  msgstr ""
8515
 
8516
+ #: languages/vue.php:2562
8517
  msgid "Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone."
8518
  msgstr ""
8519
 
8520
+ #: languages/vue.php:2565
8521
  msgid "Our email summaries feature sends a weekly summary of the most important site analytics information."
8522
  msgstr ""
8523
 
8524
+ #: languages/vue.php:2568
8525
  msgid "Recommended Settings"
8526
  msgstr ""
8527
 
8528
+ #: languages/vue.php:2571
8529
  msgid "MonsterInsights recommends the following settings based on your configuration."
8530
  msgstr ""
8531
 
8532
+ #: languages/vue.php:2574
8533
  msgid "Events Tracking"
8534
  msgstr ""
8535
 
8536
+ #: languages/vue.php:2577
8537
  msgid "Must have for all click tracking on site."
8538
  msgstr ""
8539
 
8540
+ #: languages/vue.php:2580
8541
  msgid "MonsterInsights 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."
8542
  msgstr ""
8543
 
8544
+ #: languages/vue.php:2583
8545
  msgid "Enhanced Link Attribution"
8546
  msgstr ""
8547
 
8548
+ #: languages/vue.php:2586
8549
  msgid "Improves the accuracy of your In-Page Analytics."
8550
  msgstr ""
8551
 
8552
+ #: languages/vue.php:2589
8553
  msgid "MonsterInsights 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."
8554
  msgstr ""
8555
 
8556
+ #: languages/vue.php:2592
8557
  msgid "Install Updates Automatically"
8558
  msgstr ""
8559
 
8560
+ #: languages/vue.php:2595
8561
  msgid "Get the latest features, bug fixes, and security updates as they are released."
8562
  msgstr ""
8563
 
8564
+ #: languages/vue.php:2598
8565
  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 MonsterInsights, we offer the ability to automatically have MonsterInsights update itself."
8566
  msgstr ""
8567
 
8568
+ #: languages/vue.php:2601
8569
  msgid "File Download Tracking"
8570
  msgstr ""
8571
 
8572
+ #: languages/vue.php:2604
8573
  msgid "Helps you see file downloads data."
8574
  msgstr ""
8575
 
8576
+ #: languages/vue.php:2607
8577
  msgid "MonsterInsights 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? MonsterInsights makes this both easy, and code-free! You can customize the file types to track at any time from our settings panel."
8578
  msgstr ""
8579
 
8580
+ #: languages/vue.php:2610
8581
  msgid "Helps you increase affiliate revenue."
8582
  msgstr ""
8583
 
8584
+ #: languages/vue.php:2613
8585
  msgid "MonsterInsights 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."
8586
  msgstr ""
8587
 
8588
+ #: languages/vue.php:2616
8589
  msgid "Affiliate Link Tracking"
8590
  msgstr ""
8591
 
8592
+ #: languages/vue.php:2619
8593
  msgid "Who Can See Reports"
8594
  msgstr ""
8595
 
8596
+ #: languages/vue.php:2622
8597
  msgid "These user roles will be able to access MonsterInsights' reports in the WordPress admin area."
8598
  msgstr ""
8599
 
8600
+ #: languages/vue.php:2625
8601
  msgid "Save and continue"
8602
  msgstr ""
8603
 
8604
+ #: languages/vue.php:2628
8605
  msgid "Events Tracking is enabled the moment you set up MonsterInsights"
8606
  msgstr ""
8607
 
8608
+ #: languages/vue.php:2631
8609
  msgid "Enhanced Link Attribution is enabled the moment you set up MonsterInsights"
8610
  msgstr ""
8611
 
8612
+ #: languages/vue.php:2634
8613
  msgid "+ Add Role"
8614
  msgstr ""
8615
 
8616
+ #: languages/vue.php:2637
8617
  msgid "Connect MonsterInsights to Your Website"
8618
  msgstr ""
8619
 
8620
+ #: languages/vue.php:2640
8621
  msgid "MonsterInsights connects Google Analytics to WordPress and shows you stats that matter."
8622
  msgstr ""
8623
 
8624
+ #: languages/vue.php:2643
8625
  msgid "Whoops, something went wrong and we weren't able to connect to MonsterInsights. Please enter your Google UA code manually."
8626
  msgstr ""
8627
 
8628
+ #: languages/vue.php:2646
8629
  msgid "Save and Continue"
8630
  msgstr ""
8631
 
8632
+ #: languages/vue.php:2649
8633
  msgid "UA code can't be empty"
8634
  msgstr ""
8635
 
8636
+ #: languages/vue.php:2652
8637
  msgid "Saving UA code..."
8638
  msgstr ""
8639
 
8640
+ #: languages/vue.php:2655
8641
  msgid "Allow usage tracking"
8642
  msgstr ""
8643
 
8644
+ #: languages/vue.php:2658
8645
  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."
8646
  msgstr ""
8647
 
8648
+ #: languages/vue.php:2661
8649
  msgid "Install All-in-One SEO"
8650
  msgstr ""
8651
 
8652
+ #: languages/vue.php:2664
8653
  msgid "Improve Your Website Search Rankings With All-In-One SEO"
8654
  msgstr ""
8655
 
8656
+ #: languages/vue.php:2667
8657
  msgid "If you’re not using a plugin to optimize your website’s SEO you’re missing out on valuable organic traffic!"
8658
  msgstr ""
8659
 
8660
+ #: languages/vue.php:2670
8661
  msgid "Finally, a WordPress SEO Plugin that’s Easy and Powerful!"
8662
  msgstr ""
8663
 
8664
+ #: languages/vue.php:2673
8665
  msgid "AIOSEO makes it easy to set up the proper SEO foundations in less than 10 minutes."
8666
  msgstr ""
8667
 
8668
+ #: languages/vue.php:2676
8669
  msgid "Local SEO"
8670
  msgstr ""
8671
 
8672
+ #: languages/vue.php:2679
8673
  msgid "All in One SEO gives you all the tools you need to improve your local SEO and rank higher on Google Maps."
8674
  msgstr ""
8675
 
8676
+ #: languages/vue.php:2682
8677
  msgid "WooCommerce SEO"
8678
  msgstr ""
8679
 
8680
+ #: languages/vue.php:2685
8681
  msgid "Advanced eCommerce SEO support for WooCommerce to optimize product pages, product categories, and more."
8682
  msgstr ""
8683
 
8684
+ #: languages/vue.php:2688
8685
  msgid "SEO Custom User Roles"
8686
  msgstr ""
8687
 
8688
+ #: languages/vue.php:2691
8689
  msgid "SEO user roles allow you to manage access to important SEO features without handing over control of your website."
8690
  msgstr ""
8691
 
8692
+ #: languages/vue.php:2694
8693
  msgid "Google News Sitemap"
8694
  msgstr ""
8695
 
8696
+ #: languages/vue.php:2697
8697
  msgid "Get higher rankings and unlock more traffic by submitting your latest news articles to Google News."
8698
  msgstr ""
8699
 
8700
+ #: languages/vue.php:2700
8701
  msgid "Smart XML Sitemaps"
8702
  msgstr ""
8703
 
8704
+ #: languages/vue.php:2703
8705
  msgid "Automatically generate a WordPress XML sitemap and notify all search engines of any updates."
8706
  msgstr ""
8707
 
8708
+ #: languages/vue.php:2706
8709
  msgid "Social Media Integration"
8710
  msgstr ""
8711
 
8712
+ #: languages/vue.php:2709
8713
  msgid "Easily control how your content and thumbnails look on Facebook, Twitter, and other social media networks."
8714
  msgstr ""
8715
 
8716
+ #: languages/vue.php:2712
8717
  msgid "TruSEO On-Page Analysis"
8718
  msgstr ""
8719
 
8720
+ #: languages/vue.php:2715
8721
  msgid "Easily add title tags, meta descriptions, keywords, and everything else you need for proper on-page SEO optimization."
8722
  msgstr ""
8723
 
8724
+ #: languages/vue.php:2718
8725
  msgid "& Many More!"
8726
  msgstr ""
8727
 
8728
+ #: languages/vue.php:2721
8729
  msgid "Installing. Please wait.."
8730
  msgstr ""
8731
 
8732
+ #: languages/vue.php:2724
8733
  msgid "Install All-in-One-SEO"
8734
  msgstr ""
8735
 
8736
+ #: languages/vue.php:2727
8737
  msgid "Welcome to MonsterInsights!"
8738
  msgstr ""
8739
 
8740
+ #: languages/vue.php:2730
8741
  msgid "Let's get you set up."
8742
  msgstr ""
8743
 
8744
+ #: languages/vue.php:2733
8745
  msgid "Which category best describes your website?"
8746
  msgstr ""
8747
 
8748
+ #: languages/vue.php:2736
8749
  msgid "We will recommend the optimal settings for MonsterInsights based on your choice."
8750
  msgstr ""
8751
 
8752
+ #: languages/vue.php:2739
8753
  msgid "Business Website"
8754
  msgstr ""
8755
 
8756
  #. Translators: Make text bold.
8757
+ #: languages/vue.php:2743
8758
  msgid "Publisher %1$s(Blog)%2$s"
8759
  msgstr ""
8760
 
8761
+ #: languages/vue.php:2746
8762
  msgid "Ecommerce"
8763
  msgstr ""
8764
 
8765
+ #: languages/vue.php:2749
8766
  msgid "Caching"
8767
  msgstr ""
8768
 
8769
+ #: languages/vue.php:2752
8770
  msgid "Enable Data Caching"
8771
  msgstr ""
8772
 
8773
+ #: languages/vue.php:2755
8774
  msgid "Refresh Cache Every"
8775
  msgstr ""
8776
 
8777
+ #: languages/vue.php:2758
8778
  msgid "Choose how often to refresh the cache."
8779
  msgstr ""
8780
 
8781
+ #: languages/vue.php:2761
8782
  msgid "Enable Ajaxify"
8783
  msgstr ""
8784
 
8785
+ #: languages/vue.php:2764
8786
  msgid "Ajaxify Widget"
8787
  msgstr ""
8788
 
8789
+ #: languages/vue.php:2767
8790
  msgid "Use to bypass page caching."
8791
  msgstr ""
8792
 
8793
+ #: languages/vue.php:2770
8794
  msgid "Empty Cache"
8795
  msgstr ""
8796
 
8797
+ #: languages/vue.php:2773
8798
  msgid "Click to manually wipe the cache right now."
8799
  msgstr ""
8800
 
8801
+ #: languages/vue.php:2776
8802
  msgid "Popular posts cache emptied"
8803
  msgstr ""
8804
 
8805
+ #: languages/vue.php:2779
8806
  msgid "Error emptying the popular posts cache. Please try again."
8807
  msgstr ""
8808
 
8809
+ #: languages/vue.php:2782
8810
  msgid "Choose Theme"
8811
  msgstr ""
8812
 
8813
+ #: languages/vue.php:2785
8814
  msgid "Widget Styling"
8815
  msgstr ""
8816
 
8817
+ #: languages/vue.php:2788
8818
  msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
8819
  msgstr ""
8820
 
8821
+ #: languages/vue.php:2791
8822
  msgid "Sort By"
8823
  msgstr ""
8824
 
8825
+ #: languages/vue.php:2794
8826
  msgid "Choose how you'd like the widget to determine your popular posts."
8827
  msgstr ""
8828
 
8829
+ #: languages/vue.php:2797
8830
  msgid "Display Title"
8831
  msgstr ""
8832
 
8833
+ #: languages/vue.php:2803
8834
  msgid "Title your widget and set its display preferences."
8835
  msgstr ""
8836
 
8837
+ #: languages/vue.php:2806
8838
  msgid "Include in Post Types"
8839
  msgstr ""
8840
 
8841
+ #: languages/vue.php:2809
8842
  msgid "Exclude from specific posts"
8843
  msgstr ""
8844
 
8845
  #. Translators: Placeholders make the text bold.
8846
+ #: languages/vue.php:2813
8847
  msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
8848
  msgstr ""
8849
 
8850
  #. Translators: Placeholders make the text bold.
8851
+ #: languages/vue.php:2817
8852
  msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
8853
  msgstr ""
8854
 
8855
+ #: languages/vue.php:2820
8856
  msgid "Loading Themes"
8857
  msgstr ""
8858
 
8859
  #. Translators: placeholders make text small.
8860
+ #: languages/vue.php:2824
8861
  msgid "Default Styles %1$s- As seen above.%2$s"
8862
  msgstr ""
8863
 
8864
  #. Translators: placeholders make text small.
8865
+ #: languages/vue.php:2828
8866
  msgid "No Styles %1$s- Use your own CSS.%2$s"
8867
  msgstr ""
8868
 
8869
  #. Translators: placeholders make text small.
8870
+ #: languages/vue.php:2832
8871
  msgid "Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s"
8872
  msgstr ""
8873
 
8874
  #. Translators: placeholders make text small.
8875
+ #: languages/vue.php:2836
8876
  msgid "SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s"
8877
  msgstr ""
8878
 
8879
  #. Translators: placeholders make text small.
8880
+ #: languages/vue.php:2840
8881
  msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
8882
  msgstr ""
8883
 
8884
+ #: languages/vue.php:2843
8885
  msgid "Placement"
8886
  msgstr ""
8887
 
8888
+ #: languages/vue.php:2846
8889
  msgid "Choose how you'd like to place the widget."
8890
  msgstr ""
8891
 
8892
+ #: languages/vue.php:2849
8893
  msgid "Insert After"
8894
  msgstr ""
8895
 
8896
+ #: languages/vue.php:2852
8897
  msgid "Choose where in the post body the widget will be placed."
8898
  msgstr ""
8899
 
8900
+ #: languages/vue.php:2855
8901
  msgid "Customize Design"
8902
  msgstr ""
8903
 
8904
+ #: languages/vue.php:2858
8905
  msgid "words"
8906
  msgstr ""
8907
 
8908
+ #: languages/vue.php:2861
8909
  msgid "Please select at least one post to display."
8910
  msgstr ""
8911
 
8912
  #. Translators: placeholders make text small.
8913
+ #: languages/vue.php:2865
8914
  msgid "Automatic %1$s- The widget is automatically placed inside the post body.%2$s"
8915
  msgstr ""
8916
 
8917
  #. Translators: placeholders make text small.
8918
+ #: languages/vue.php:2869
8919
  msgid "Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s"
8920
  msgstr ""
8921
 
8922
+ #: languages/vue.php:2872
8923
  msgid "Facebook Instant Articles"
8924
  msgstr ""
8925
 
8926
+ #: languages/vue.php:2875
8927
  msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to MonsterInsights Pro."
8928
  msgstr ""
8929
 
8930
+ #: languages/vue.php:2878
8931
  msgid "Want to use track users visiting your AMP pages? By upgrading to MonsterInsights Pro, you can enable AMP page tracking."
8932
  msgstr ""
8933
 
8934
+ #: languages/vue.php:2881
8935
  msgid "Ads Tracking"
8936
  msgstr ""
8937
 
8938
+ #: languages/vue.php:2884
8939
  msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
8940
  msgstr ""
8941
 
8942
+ #: languages/vue.php:2887
8943
  msgid "2,000,000+ use AIOSEO to Improve Their Website Search Rankings"
8944
  msgstr ""
8945
 
8946
+ #: languages/vue.php:2890
8947
  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."
8948
  msgstr ""
8949
 
8950
+ #: languages/vue.php:2893
8951
  msgid "Jack Brown"
8952
  msgstr ""
8953
 
8954
+ #: languages/vue.php:2896
8955
  msgid "PJB Internet Marketing"
8956
  msgstr ""
8957
 
8958
+ #: languages/vue.php:2899
8959
  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."
8960
  msgstr ""
8961
 
8962
+ #: languages/vue.php:2902
8963
  msgid "Joel Steinmann"
8964
  msgstr ""
8965
 
8966
+ #: languages/vue.php:2905
8967
  msgid "CEO, Solergo"
8968
  msgstr ""
8969
 
8970
+ #: languages/vue.php:2908
8971
  msgid "Recommended Addons"
8972
  msgstr ""
8973
 
8974
+ #: languages/vue.php:2911
8975
  msgid "To unlock more features consider upgrading to PRO. As a valued MonsterInsights Lite user you receive 50% off, automatically applied at checkout!"
8976
  msgstr ""
8977
 
8978
+ #: languages/vue.php:2914
8979
  msgid "Other Addons"
8980
  msgstr ""
8981
 
8982
+ #: languages/vue.php:2917
8983
  msgid "View all MonsterInsights addons"
8984
  msgstr ""
8985
 
8986
+ #: languages/vue.php:2920
8987
  msgid "Scroll Tracking"
8988
  msgstr ""
8989
 
8990
+ #: languages/vue.php:2923
8991
  msgid "Scroll depth tracking allows you to see how far your users scroll before they leave a page. This is great for publishers (bloggers), and eCommerce websites to boost conversions."
8992
  msgstr ""
8993
 
8994
+ #: languages/vue.php:2926
8995
  msgid ""
8996
  "The EU Compliance addon allows you to improve compliance with GDPR\n"
8997
  " and other privacy regulations."
8998
  msgstr ""
8999
 
9000
+ #: languages/vue.php:2930
9001
  msgid "EU Compliance"
9002
  msgstr ""
9003
 
9004
+ #: languages/vue.php:2933
9005
  msgid "Compatibility mode"
9006
  msgstr ""
9007
 
9008
+ #: languages/vue.php:2936
9009
  msgid "Enable _gtagTracker Compatibility"
9010
  msgstr ""
9011
 
9012
  #. Translators: Placeholder gets replaced with default GA js function.
9013
+ #: languages/vue.php:2940
9014
  msgid "This enables MonsterInsights to work with plugins that use %1$s and don't support %2$s"
9015
  msgstr ""
9016
 
9017
  #. Translators: Page number of total pages. 1 & 2 make the first part of the text bold.
9018
+ #: languages/vue.php:2944
9019
  msgid "%1$sPage %3$s%2$s of %4$s"
9020
  msgstr ""
9021
 
9022
+ #: languages/vue.php:2947
9023
  #: lite/includes/popular-posts/class-popular-posts-widget-sidebar.php:257
9024
  msgid "Theme Preview"
9025
  msgstr ""
9026
 
9027
+ #: languages/vue.php:2950
9028
  msgid "Wide"
9029
  msgstr ""
9030
 
9031
+ #: languages/vue.php:2953
9032
  msgid "Narrow"
9033
  msgstr ""
9034
 
9035
+ #: languages/vue.php:2956
9036
  msgid "Title"
9037
  msgstr ""
9038
 
9039
+ #: languages/vue.php:2959
9040
  msgid "Color"
9041
  msgstr ""
9042
 
9043
+ #: languages/vue.php:2962
9044
  msgid "Size"
9045
  msgstr ""
9046
 
9047
+ #: languages/vue.php:2965
9048
  msgid "Border"
9049
  msgstr ""
9050
 
9051
+ #: languages/vue.php:2968
9052
  msgid "Author/Date"
9053
  msgstr ""
9054
 
9055
+ #: languages/vue.php:2971
9056
  msgid "Label"
9057
  msgstr ""
9058
 
9059
+ #: languages/vue.php:2974
9060
  msgid "Background"
9061
  msgstr ""
9062
 
9063
+ #: languages/vue.php:2986
9064
  msgid "Choose which content you would like displayed in the widget."
9065
  msgstr ""
9066
 
9067
+ #: languages/vue.php:2998
9068
  msgid "Comments"
9069
  msgstr ""
9070
 
9071
+ #: languages/vue.php:3004
9072
  msgid "Choose how many posts you’d like displayed in the widget."
9073
  msgstr ""
9074
 
9075
+ #: languages/vue.php:3007
9076
  msgid "Popular Posts data can be fetched correctly"
9077
  msgstr ""
9078
 
9079
+ #: languages/vue.php:3010
9080
  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."
9081
  msgstr ""
9082
 
9083
+ #: languages/vue.php:3013
9084
  msgid "Close"
9085
  msgstr ""
9086
 
9087
+ #: languages/vue.php:3016
9088
  msgid "Add Top 5 Posts from Google Analytics"
9089
  msgstr ""
9090
 
9091
+ #: languages/vue.php:3019
9092
  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 MonsterInsights and Google Analytics settings."
9093
  msgstr ""
9094
 
9095
+ #: languages/vue.php:3022
9096
  msgid "Test Automated Posts"
9097
  msgstr ""
9098
 
9099
  #. Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc.
9100
+ #: languages/vue.php:3026
9101
  msgid "Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics."
9102
  msgstr ""
9103
 
9104
+ #: languages/vue.php:3029
9105
  msgid "Automated + Curated"
9106
  msgstr ""
9107
 
9108
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
9109
+ #: languages/vue.php:3033
9110
  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."
9111
  msgstr ""
9112
 
9113
  #. Translators: Placeholder gets replaced with current license version.
9114
+ #: languages/vue.php:3037
9115
  msgid "Pro version is required."
9116
  msgstr ""
9117
 
9118
+ #: languages/vue.php:3040
9119
  msgid "Verifying Popular Posts data"
9120
  msgstr ""
9121
 
9122
+ #: languages/vue.php:3043
9123
  msgid "Select posts/search"
9124
  msgstr ""
9125
 
9126
+ #: languages/vue.php:3046
9127
  msgid "Oops! No posts found."
9128
  msgstr ""
9129
 
9130
+ #: languages/vue.php:3049
9131
  msgid "Search by post title"
9132
  msgstr ""
9133
 
9134
+ #: languages/vue.php:3052
9135
  msgid "Can't load posts."
9136
  msgstr ""
9137
 
9138
+ #: languages/vue.php:3055
9139
  msgid "SharedCount API Key"
9140
  msgstr ""
9141
 
9142
+ #: languages/vue.php:3058
9143
  msgid "Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing."
9144
  msgstr ""
9145
 
9146
+ #: languages/vue.php:3061
9147
  msgid "Start Indexing"
9148
  msgstr ""
9149
 
9150
+ #: languages/vue.php:3064
9151
  msgid "%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing."
9152
  msgstr ""
9153
 
9154
+ #: languages/vue.php:3067
9155
  msgid "Indexing completed, counts will update automatically every day."
9156
  msgstr ""
9157
 
9158
+ #: languages/vue.php:3070
9159
  msgid "Sartorial taxidermy venmo you probably haven't heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu."
9160
  msgstr ""
9161
 
9162
+ #: languages/vue.php:3073
9163
  msgid "Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan"
9164
  msgstr ""
9165
 
9166
+ #: languages/vue.php:3076
9167
  msgid "Icon"
9168
  msgstr ""
9169
 
9170
  #. Translators: Minimum and maximum number that can be used.
9171
+ #: languages/vue.php:3080
9172
  msgid "Please enter a value between %1$s and %2$s"
9173
  msgstr ""
9174
 
9175
  #. Translators: The minimum set value.
9176
+ #: languages/vue.php:3084
9177
  msgid "Please enter a value higher than %s"
9178
  msgstr ""
9179
 
9180
  #. Translators: The maximum set value.
9181
+ #: languages/vue.php:3088
9182
  msgid "Please enter a value lower than %s"
9183
  msgstr ""
9184
 
9185
+ #: languages/vue.php:3091
9186
  msgid "Please enter a number"
9187
  msgstr ""
9188
 
9189
+ #: languages/vue.php:3094
9190
  msgid "Value has to be a round number"
9191
  msgstr ""
9192
 
9193
+ #: languages/vue.php:3097
9194
  msgid "Export PDF Report"
9195
  msgstr ""
9196
 
9197
+ #: languages/vue.php:3100
9198
  msgid "You can export PDF reports only in the PRO version."
9199
  msgstr ""
9200
 
9201
+ #: languages/vue.php:3103
9202
  msgid "Upgrade to MonsterInsights Pro to Unlock More Actionable Insights"
9203
  msgstr ""
9204
 
9205
+ #: languages/vue.php:3106
9206
  msgid "It's easy to double your traffic and sales when you know exactly how people find and use your website. MonsterInsights Pro shows you the stats that matter!"
9207
  msgstr ""
9208
 
9209
+ #: languages/vue.php:3109
9210
  msgid "Upgrade to MonsterInsights Pro and Save 50% OFF!"
9211
  msgstr ""
9212
 
9213
  #. Translators: Makes text bold.
9214
+ #: languages/vue.php:3113
9215
  msgid "Use coupon code %1$sLITEUPGRADE%2$s"
9216
  msgstr ""
9217
 
9218
  #. Translators: Make text green.
9219
+ #: languages/vue.php:3117
9220
  msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
9221
  msgstr ""
9222
 
9223
  #. Translators: Placeholder adds a line break.
9224
+ #: languages/vue.php:3121
9225
  msgid "You can customize your %sdate range only in the PRO version."
9226
  msgstr ""
9227
 
9228
+ #: languages/vue.php:3124
9229
  msgid "Help Us Improve"
9230
  msgstr ""
9231
 
9232
+ #: languages/vue.php:3127
9233
  msgid "Help us better understand our users and their website needs."
9234
  msgstr ""
9235
 
9236
  #. Translators: Adds a link to the documentation.
9237
+ #: languages/vue.php:3131
9238
  msgid "If enabled MonsterInsights will send some information about your WordPress site like what plugins and themes you use and which MonsterInsights 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"
9239
  msgstr ""
9240
 
9241
+ #: languages/vue.php:3134
9242
  msgid "Website profile"
9243
  msgstr ""
9244
 
9245
+ #: languages/vue.php:3137
9246
  msgid "Active profile"
9247
  msgstr ""
9248
 
9249
+ #: languages/vue.php:3140
9250
  msgid "Skip and Keep Connection"
9251
  msgstr ""
9252
 
9253
+ #: languages/vue.php:3143
9254
  msgid "This feature requires MonsterInsights Pro"
9255
  msgstr ""
9256
 
9257
+ #: languages/vue.php:3146
9258
  msgid "By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more."
9259
  msgstr ""
9260
 
9261
+ #: languages/vue.php:3149
9262
  msgid "Upgrade to Pro and Unlock Popular Products"
9263
  msgstr ""
9264
 
9265
+ #: languages/vue.php:3152
9266
  msgid "View all Pro features"
9267
  msgstr ""
9268
 
9269
+ #: languages/vue.php:3155
9270
  msgid "Days"
9271
  msgstr ""
9272
 
9273
  #. Translators: placeholders make text small.
9274
+ #: languages/vue.php:3159
9275
  msgid "7 days"
9276
  msgstr ""
9277
 
9278
+ #: languages/vue.php:3162
9279
  msgid "30 days"
9280
  msgstr ""
9281
 
9282
+ #: languages/vue.php:3165
9283
  msgid "Custom"
9284
  msgstr ""
9285
 
9286
+ #: languages/vue.php:3168
9287
  msgid "Only Show Posts from These Categories"
9288
  msgstr ""
9289
 
9290
+ #: languages/vue.php:3171
9291
  msgid "Choose from which categories posts will be displayed in the widget. All categories will be used if left empty."
9292
  msgstr ""
9293
 
9294
+ #: languages/vue.php:3174
9295
  msgid "Multiple Entries"
9296
  msgstr ""
9297
 
9298
+ #: languages/vue.php:3177
9299
  msgid "Total Number of Widgets to Show"
9300
  msgstr ""
9301
 
9302
+ #: languages/vue.php:3180
9303
  msgid "Choose how many widgets will be placed in a single Post."
9304
  msgstr ""
9305
 
9306
+ #: languages/vue.php:3183
9307
  msgid "Minimum Distance Between Widgets"
9308
  msgstr ""
9309
 
9310
+ #: languages/vue.php:3186
9311
  msgid "Choose the distance between widgets."
9312
  msgstr ""
9313
 
9314
+ #: languages/vue.php:3189
9315
  msgid "Minimum Word Count to Display Multiple Widgets"
9316
  msgstr ""
9317
 
9318
+ #: languages/vue.php:3192
9319
  msgid "Choose the minimum word count for a Post to have multiple entries."
9320
  msgstr ""
9321
 
9322
+ #: languages/vue.php:3195
9323
  msgid "Pro version is required"
9324
  msgstr ""
9325
 
9326
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
9327
+ #: languages/vue.php:3199
9328
  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)."
9329
  msgstr ""
9330
 
9331
+ #: languages/vue.php:3202
9332
  msgid "Unlock with %s"
9333
  msgstr ""
9334
 
9335
+ #: languages/vue.php:3205
9336
  msgid "Automatic Placement"
9337
  msgstr ""
9338
 
9339
+ #: languages/vue.php:3208
9340
  msgid "Display using Gutenberg Blocks"
9341
  msgstr ""
9342
 
9343
+ #: languages/vue.php:3211
9344
  msgid "Embed Options"
9345
  msgstr ""
9346
 
9347
+ #: languages/vue.php:3214
9348
  msgid "All Embed Options can be used in conjunction with one another."
9349
  msgstr ""
9350
 
9351
+ #: languages/vue.php:3217
9352
  msgid "Using the Gutenberg Block"
9353
  msgstr ""
9354
 
9355
+ #: languages/vue.php:3220
9356
  msgid "Using Automatic Embed"
9357
  msgstr ""
9358
 
9359
+ #: languages/vue.php:3223
9360
  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."
9361
  msgstr ""
9362
 
9363
+ #: languages/vue.php:3226
9364
  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."
9365
  msgstr ""
9366
 
9367
+ #: languages/vue.php:3229
9368
  msgid "Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above."
9369
  msgstr ""
9370
 
9371
+ #: languages/vue.php:3232
9372
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg"
9373
  msgstr ""
9374
 
9375
+ #: languages/vue.php:3235
9376
  msgid "%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page."
9377
  msgstr ""
9378
 
9379
+ #: languages/vue.php:3238
9380
  msgid "%1$sStep 2%2$s - Search for “Popular Posts”."
9381
  msgstr ""
9382
 
9383
+ #: languages/vue.php:3241
9384
  msgid "%1$sStep 3%2$s - Style the widget using the Block Settings sidebar."
9385
  msgstr ""
9386
 
9387
+ #: languages/vue.php:3244
9388
  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."
9389
  msgstr ""
9390
 
9391
+ #: languages/vue.php:3247
9392
  msgid "%1$sStep 2%2$s - On the left, under Available Widgets, look for the Popular Posts - MonsterInsights widget and drag it into the desired Sidebar on the right."
9393
  msgstr ""
9394
 
9395
+ #: languages/vue.php:3250
9396
  msgid "%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design."
9397
  msgstr ""
9398
 
9399
+ #: languages/vue.php:3253
9400
  msgid "Display using a Shortcode"
9401
  msgstr ""
9402
 
9403
+ #: languages/vue.php:3256
9404
  msgid "Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin."
9405
  msgstr ""
9406
 
9407
+ #: languages/vue.php:3259
9408
  msgid "Copy Shortcode"
9409
  msgstr ""
9410
 
9411
+ #: languages/vue.php:3262
9412
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode"
9413
  msgstr ""
9414
 
9415
+ #: languages/vue.php:3265
9416
  msgid "Enable Automatic Placement"
9417
  msgstr ""
9418
 
9419
+ #: languages/vue.php:3268
9420
  msgid "Display in a Sidebar"
9421
  msgstr ""
9422
 
9423
+ #: languages/vue.php:3271
9424
  msgid "Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above."
9425
  msgstr ""
9426
 
9427
+ #: languages/vue.php:3274
9428
  msgid "Watch Video - How to Add the Popular Posts widget using Widgets"
9429
  msgstr ""
9430
 
9431
+ #: languages/vue.php:3277
9432
  msgid "Display Method"
9433
  msgstr ""
9434
 
9435
+ #: languages/vue.php:3280
9436
  msgid "There are two ways to manual include the widget in your posts."
9437
  msgstr ""
9438
 
9439
+ #: languages/vue.php:3283
9440
  msgid "Using the Shortcode"
9441
  msgstr ""
9442
 
9443
+ #: languages/vue.php:3286
9444
  msgid "Learn how to insert the widget using Gutenberg blocks."
9445
  msgstr ""
9446
 
9447
+ #: languages/vue.php:3289
9448
  msgid "Learn how to insert the widget using out Shortcode."
9449
  msgstr ""
9450
 
9451
+ #: languages/vue.php:3292
9452
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg"
9453
  msgstr ""
9454
 
9455
+ #: languages/vue.php:3295
9456
  msgid "%1$sStep 2%2$s - Search for “Inline Popular Posts by MonsterInsights”."
9457
  msgstr ""
9458
 
9459
+ #: languages/vue.php:3298
9460
  msgid "Shortcode"
9461
  msgstr ""
9462
 
9463
+ #: languages/vue.php:3301
9464
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode"
9465
  msgstr ""
9466
 
9467
+ #: languages/vue.php:3304
9468
  msgid "Facebook Instant Articleasdasdasds"
9469
  msgstr ""
9470
 
9471
+ #: languages/vue.php:3307
9472
  msgid "Media"
9473
  msgstr ""
9474
 
9475
+ #: languages/vue.php:3310
9476
  msgid "Track how your users interact with videos on your website. Upgrade to MonsterInsights Pro."
9477
  msgstr ""
9478
 
9479
+ #: languages/vue.php:3313
9480
  msgid "Improve Your Conversion Rate With Insights Into Which Content Works Best."
9481
  msgstr ""
9482
 
9483
+ #: languages/vue.php:3316
9484
  msgid "Top Affilliate Links"
9485
  msgstr ""
9486
 
9487
+ #: languages/vue.php:3319
9488
  msgid "Scroll Depth"
9489
  msgstr ""
9490
 
9491
+ #: languages/vue.php:3322
9492
  msgid "Increase Sales and Make More Money With Enhanced eCommerce Insights."
9493
  msgstr ""
9494
 
9495
+ #: languages/vue.php:3325
9496
  msgid "10+ eCommerce Integrations"
9497
  msgstr ""
9498
 
9499
+ #: languages/vue.php:3328
9500
  msgid "Average Order Value"
9501
  msgstr ""
9502
 
9503
+ #: languages/vue.php:3331
9504
  msgid "Total Revenue"
9505
  msgstr ""
9506
 
9507
+ #: languages/vue.php:3334
9508
  msgid "Number of Transactions"
9509
  msgstr ""
9510
 
9511
+ #: languages/vue.php:3337
9512
  msgid "Increase Engagement and Unlock New Insights About Your Site."
9513
  msgstr ""
9514
 
9515
+ #: languages/vue.php:3340
9516
  msgid "User ID Tracking"
9517
  msgstr ""
9518
 
9519
+ #: languages/vue.php:3343
9520
  msgid "Post Types"
9521
  msgstr ""
9522
 
9523
+ #: languages/vue.php:3346
9524
  msgid "Tag Tracking"
9525
  msgstr ""
9526
 
9527
+ #: languages/vue.php:3349
9528
  msgid "Categories"
9529
  msgstr ""
9530
 
9531
+ #: languages/vue.php:3352
9532
  msgid "SEO Scores"
9533
  msgstr ""
9534
 
9535
+ #: languages/vue.php:3355
9536
  msgid "Publish Times"
9537
  msgstr ""
9538
 
9539
+ #: languages/vue.php:3358
9540
  msgid "Focus Keywords"
9541
  msgstr ""
9542
 
9543
+ #: languages/vue.php:3361
9544
  msgid "Track Every Type of Web Form and Gain Visibility Into Your Customer Journey."
9545
  msgstr ""
9546
 
9547
+ #: languages/vue.php:3364
9548
  msgid "Conversion Counts"
9549
  msgstr ""
9550
 
9551
+ #: languages/vue.php:3367
9552
  msgid "Impression Counts"
9553
  msgstr ""
9554
 
9555
+ #: languages/vue.php:3370
9556
  msgid "Conversion Rates"
9557
  msgstr ""
9558
 
9559
+ #: languages/vue.php:3373
9560
  msgid "See Exactly How Visitors Find Your Website From Google."
9561
  msgstr ""
9562
 
9563
+ #: languages/vue.php:3376
9564
  msgid "Top Google Search Terms"
9565
  msgstr ""
9566
 
9567
+ #: languages/vue.php:3379
9568
  msgid "Number of Clicks"
9569
  msgstr ""
9570
 
9571
+ #: languages/vue.php:3382
9572
  msgid "Click-through Ratio"
9573
  msgstr ""
9574
 
9575
+ #: languages/vue.php:3385
9576
  msgid "Average Results Position"
9577
  msgstr ""
9578
 
9579
+ #: languages/vue.php:3388
9580
  msgid "Realtime Report"
9581
  msgstr ""
9582
 
9583
+ #: languages/vue.php:3391
9584
  msgid "See Who And What is Happening on Your Website in Realtime."
9585
  msgstr ""
9586
 
9587
+ #: languages/vue.php:3394
9588
  msgid "Top Page Views"
9589
  msgstr ""
9590
 
9591
+ #: languages/vue.php:3397
9592
  msgid "Current Active Users"
9593
  msgstr ""
9594
 
9595
+ #: languages/vue.php:3400
9596
  msgid "Top Referral Sources"
9597
  msgstr ""
9598
 
9599
+ #: languages/vue.php:3403
9600
  msgid "Top Countries"
9601
  msgstr ""
9602
 
9603
+ #: languages/vue.php:3406
9604
  msgid "Top Cities"
9605
  msgstr ""
9606
 
9607
+ #: languages/vue.php:3409
9608
  msgid "Improve Your User Experience and Improve Search Engine Rankings."
9609
  msgstr ""
9610
 
9611
+ #: languages/vue.php:3412
9612
  msgid "Overall Site Speed Score"
9613
  msgstr ""
9614
 
9615
+ #: languages/vue.php:3415
9616
  msgid "Server Response Times"
9617
  msgstr ""
9618
 
9619
+ #: languages/vue.php:3418
9620
  msgid "Mobile and Desktop Scores"
9621
  msgstr ""
9622
 
9623
+ #: languages/vue.php:3421
9624
  msgid "First Contentful Paint"
9625
  msgstr ""
9626
 
9627
+ #: languages/vue.php:3424
9628
  msgid "Automatic Recommendations"
9629
  msgstr ""
9630
 
9631
+ #: languages/vue.php:3427
9632
  msgid "Total Blocking Time"
9633
  msgstr ""
9634
 
9635
+ #: languages/vue.php:3430
9636
  msgid "On-Demand Audits"
9637
  msgstr ""
9638
 
9639
+ #: languages/vue.php:3433
9640
  msgid "Time to Interactive"
9641
  msgstr ""
9642
 
9643
+ #: languages/vue.php:3436
9644
  msgid "2021 Year in Review"
9645
  msgstr ""
9646
 
9647
+ #: languages/vue.php:3439
9648
  msgid "Realtime"
9649
  msgstr ""
9650
 
9651
  #. Translators: Placeholders are used for making text bold and adding a link.
9652
+ #: languages/vue.php:3443
9653
  msgid "%1$sYou're using %2$s Lite%3$s. To unlock all reports, consider %4$supgrading to Pro%5$s."
9654
  msgstr ""
9655
 
9656
+ #: languages/vue.php:3446
9657
  msgid "Featured"
9658
  msgstr ""
9659
 
9660
+ #: languages/vue.php:3449
9661
  msgid "Traffic"
9662
  msgstr ""
9663
 
9664
+ #: languages/vue.php:3452
9665
  msgid "Revenue"
9666
  msgstr ""
9667
 
9668
+ #: languages/vue.php:3455
9669
  msgid "Guides & Resources"
9670
  msgstr ""
9671
 
9672
+ #: languages/vue.php:3458
9673
  msgid "Upgrade and Unlock"
9674
  msgstr ""
9675
 
9676
+ #: languages/vue.php:3461
9677
  msgid "What’s in the %1$s?"
9678
  msgstr ""
9679
 
9680
+ #: languages/vue.php:3464
9681
  msgid "%1$sPlus%2$s, upgrading to Pro will unlock %1$sall%2$s advanced reports, tracking, and integrations. %3$sLearn more about Pro%4$s"
9682
  msgstr ""
9683
 
9684
+ #: languages/vue.php:3467
9685
  msgid "Your 2021 Year in Review is still calculating. Please check back later to see how your website performed last year."
9686
  msgstr ""
9687
 
9688
+ #: languages/vue.php:3470
9689
  msgid "Your 2021 Analytics Report"
9690
  msgstr ""
9691
 
9692
+ #: languages/vue.php:3476
9693
  msgid "January 1, 2021 - December 31, 2021"
9694
  msgstr ""
9695
 
9696
+ #: languages/vue.php:3479
9697
  msgid "A Tip for 2022"
9698
  msgstr ""
9699
 
9700
+ #: languages/vue.php:3482
9701
  msgid "A Tip For 2022"
9702
  msgstr ""
9703
 
9704
+ #: languages/vue.php:3485
9705
  msgid "Here's to an amazing 2022!"
9706
  msgstr ""
9707
 
9708
+ #: languages/vue.php:3488
9709
  msgid "Try our other popular WordPress plugins to grow your website in 2022."
9710
  msgstr ""
9711
 
9712
+ #: languages/vue.php:3491
9713
  msgid "Become a WordPress expert in 2022. Join our amazing communities and take your website to the next level."
9714
  msgstr ""
9715
 
9716
+ #: languages/vue.php:3494
9717
  msgid "Copyright MonsterInsights, 2022"
9718
  msgstr ""
9719
 
9720
  #. Translators: Number of minutes spent on site.
9721
+ #: languages/vue.php:3498
9722
  msgid "Each visitor spent an average of %s minutes on your website in 2021."
9723
  msgstr ""
9724
 
9725
+ #: languages/vue.php:3501
9726
  msgid "RafflePress"
9727
  msgstr ""
9728
 
9729
+ #: languages/vue.php:3504
9730
  msgid "Launch giveaways and raffle campaigns to grow your email lists, increase traffic, and get more social media followers."
9731
  msgstr ""
9732
 
9733
+ #: languages/vue.php:3507
9734
  msgid "Constant Contact"
9735
  msgstr ""
9736
 
9737
+ #: languages/vue.php:3510
9738
  msgid "Create amazing email marketing campaigns with drag and drop simplicity. Exclusive Offer: Save 20%."
9739
  msgstr ""
9740
 
9741
+ #: languages/vue.php:3513
9742
  msgid "SEMRUSH"
9743
  msgstr ""
9744
 
9745
+ #: languages/vue.php:3516
9746
  msgid "Perform SEO and content marketing research, track keywords, and much more. Special Offer: First 30 Days Free."
9747
  msgstr ""
9748
 
9749
+ #: languages/vue.php:3519
9750
  msgid "Engagement Tools"
9751
  msgstr ""
9752
 
9753
+ #: languages/vue.php:3522
9754
  msgid "WPForms"
9755
  msgstr ""
9756
 
9757
+ #: languages/vue.php:3525
9758
  msgid "The world’s most popular WordPress form builder, trusted by over 5 million websites. Easily build contact forms, payment forms, and more."
9759
  msgstr ""
9760
 
9761
+ #: languages/vue.php:3528
9762
  msgid "OptinMonster"
9763
  msgstr ""
9764
 
9765
+ #: languages/vue.php:3531
9766
  msgid "Convert and monetize more of your website traffic with engaging pop-up and gamified tools. Great for all types of websites."
9767
  msgstr ""
9768
 
9769
+ #: languages/vue.php:3534
9770
  msgid "Smash Balloon - Facebook"
9771
  msgstr ""
9772
 
9773
+ #: languages/vue.php:3537
9774
  msgid "Smash Balloon - Instagram"
9775
  msgstr ""
9776
 
9777
+ #: languages/vue.php:3540
9778
  msgid "Quickly add social media feeds from Facebook, Instagram, Twitter, and others to your website, with no coding needed."
9779
  msgstr ""
9780
 
9781
+ #: languages/vue.php:3543
9782
  msgid "Popular Posts by MonsterInsights"
9783
  msgstr ""
9784
 
9785
+ #: languages/vue.php:3546
9786
  msgid "Increase your visitor engagement by automatically embedding popular and related content from your website."
9787
  msgstr ""
9788
 
9789
+ #: languages/vue.php:3549
9790
  msgid "Popular Products by MonsterInsights"
9791
  msgstr ""
9792
 
9793
+ #: languages/vue.php:3552
9794
  msgid "Automatically show related products to increase conversion rates and increase cart sizes on your eCommerce website."
9795
  msgstr ""
9796
 
9797
+ #: languages/vue.php:3555
9798
  msgid "Revenue Tools"
9799
  msgstr ""
9800
 
9801
+ #: languages/vue.php:3558
9802
  msgid "SeedProd"
9803
  msgstr ""
9804
 
9805
+ #: languages/vue.php:3561
9806
  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."
9807
  msgstr ""
9808
 
9809
+ #: languages/vue.php:3564
9810
  msgid "Featured Tools"
9811
  msgstr ""
9812
 
9813
+ #: languages/vue.php:3567
9814
  msgid "Easy Affiliate"
9815
  msgstr ""
9816
 
9817
+ #: languages/vue.php:3570
9818
  msgid "Launch, grow, and manage an affiliate program, all right from your WordPress dashboard. Works automatically with MonsterInsights."
9819
  msgstr ""
9820
 
9821
+ #: languages/vue.php:3573
9822
  msgid "SearchWP"
9823
  msgstr ""
9824
 
9825
+ #: languages/vue.php:3576
9826
  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."
9827
  msgstr ""
9828
 
9829
+ #: languages/vue.php:3579
9830
  msgid "Easily sell digital products like ebooks, plugins, and courses with WordPress. Built-in payment processing, coupons, shopping cart, detailed reporting, and more."
9831
  msgstr ""
9832
 
9833
+ #: languages/vue.php:3582
9834
  msgid "Create a membership website. Works automatically with MonsterInsights, no coding needed."
9835
  msgstr ""
9836
 
9837
+ #: languages/vue.php:3585
9838
  msgid "Thirsty Affiliates"
9839
  msgstr ""
9840
 
9841
+ #: languages/vue.php:3588
9842
  msgid "Manage all your affiliate links with features designed to help make bloggers more money."
9843
  msgstr ""
9844
 
9845
+ #: languages/vue.php:3591
9846
  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."
9847
  msgstr ""
9848
 
9849
+ #: languages/vue.php:3594
9850
  msgid "Advanced Coupons"
9851
  msgstr ""
9852
 
9853
+ #: languages/vue.php:3597
9854
  msgid "Create coupons, reward loyal customers, and schedule promotions for your eCommerce store."
9855
  msgstr ""
9856
 
9857
+ #: languages/vue.php:3600
9858
  msgid "PrettyLinks"
9859
  msgstr ""
9860
 
9861
+ #: languages/vue.php:3603
9862
  msgid "Automatically monetize your website content with affiliate links added automatically to your content."
9863
  msgstr ""
9864
 
9865
+ #: languages/vue.php:3606
9866
  msgid "Install Now"
9867
  msgstr ""
9868
 
9869
+ #: languages/vue.php:3609
9870
  msgid "Online Marketing Guides & Resources"
9871
  msgstr ""
9872
 
9873
+ #: languages/vue.php:3612
9874
  msgid "MonsterInsights Pro"
9875
  msgstr ""
9876
 
9877
+ #: languages/vue.php:3615
9878
  msgid "Upgrade to unlock eCommerce tracking, Custom Dimensions, Form Tracking, and much more. Special Offer: Save 50% today."
9879
  msgstr ""
9880
 
9881
+ #: languages/vue.php:3618
9882
  msgid "Traffic Tools"
9883
  msgstr ""
9884
 
9885
+ #: languages/vue.php:3621
9886
  msgid "All in One SEO (AIOSEO)"
9887
  msgstr ""
9888
 
9889
+ #: languages/vue.php:3624
9890
  msgid "The best WordPress SEO plugin that works automatically with MonsterInsights."
9891
  msgstr ""
9892
 
9893
+ #: languages/vue.php:3627
9894
  msgid "PushEngage"
9895
  msgstr ""
9896
 
9897
+ #: languages/vue.php:3630
9898
  msgid "Send push notifications to your visitors to drive more traffic and boost sales."
9899
  msgstr ""
9900
 
9901
+ #: languages/vue.php:3633
9902
  msgid "With MonsterInsights Pro, you can easily measure individual affiliate performance inside Google Analytics, no coding needed. Track clicks, revenue, and more."
9903
  msgstr ""
9904
 
9905
+ #: languages/vue.php:3636
9906
  msgid "Works automatically with WooCommerce, MemberPress, and EasyDigitalDownloads."
9907
  msgstr ""
9908
 
9909
+ #: languages/vue.php:3639
9910
  msgid "Media Tracking"
9911
  msgstr ""
9912
 
9913
+ #: languages/vue.php:3642
9914
  msgid "Get Started"
9915
  msgstr ""
9916
 
9917
+ #: languages/vue.php:3645
9918
  msgid "Awesome! Tracking and Analytics are All Setup!"
9919
  msgstr ""
9920
 
9921
+ #: languages/vue.php:3648
9922
  msgid "MonsterInsights is connected to Google Analytics and data is being collected."
9923
  msgstr ""
9924
 
9925
+ #: languages/vue.php:3651
9926
  msgid "Complete Setup without Upgrading"
9927
  msgstr ""
9928
 
9929
+ #: languages/vue.php:3654
9930
  msgid "Success"
9931
  msgstr ""
9932
 
9933
+ #: languages/vue.php:3657
9934
  msgid "Connected to Google Analytics"
9935
  msgstr ""
9936
 
9937
+ #: languages/vue.php:3660
9938
  msgid "Tracking Code Installed"
9939
  msgstr ""
9940
 
9941
+ #: languages/vue.php:3663
9942
  msgid "Data Being Collected"
9943
  msgstr ""
9944
 
9945
  #. Translators: Add link to retrieve license from account area.
9946
+ #: languages/vue.php:3667
9947
  msgid "Already purchased? Simply enter your license key below to connect with MonsterInsights PRO!"
9948
  msgstr ""
9949
 
9950
+ #: languages/vue.php:3670
9951
  msgid "Verify License Key"
9952
  msgstr ""
9953
 
9954
+ #: languages/vue.php:3673
9955
  msgid "Upgrade to Unlock These Features"
9956
  msgstr ""
9957
 
9958
+ #: languages/vue.php:3676
9959
  msgid "To unlock the selected features, please upgrade to Pro and enter your license key below."
9960
  msgstr ""
9961
 
9962
+ #: languages/vue.php:3679
9963
  msgid "%1$sBonus:%2$s Upgrade today and save %3$s50%% on a Pro License!%4$s (auto-applied at checkout)"
9964
  msgstr ""
9965
 
9966
+ #: languages/vue.php:3682
9967
  msgid "Verifying License..."
9968
  msgstr ""
9969
 
9970
+ #: languages/vue.php:3685
9971
  msgid "Privacy Compliance Addon"
9972
  msgstr ""
9973
 
9974
+ #: languages/vue.php:3688
9975
  msgid "Help Google Analytics become compliant with internet privacy laws like GDPR, PECR, and CCPA."
9976
  msgstr ""
9977
 
9978
+ #: languages/vue.php:3691
9979
  msgid "Get access to advanced reports inside WordPress including search keywords report, real-time analytics dashboard, publishers / eCommerce report, custom dimensions, and more."
9980
  msgstr ""
9981
 
9982
+ #: languages/vue.php:3694
9983
  msgid "Instantly enable enhanced eCommerce tracking, so you can measure conversions, sales, and revenue stats. Works with WooCommerce, Easy Digital Downloads, MemberPress, and more."
9984
  msgstr ""
9985
 
9986
+ #: languages/vue.php:3697
9987
  msgid "20+ Advanced Tracking"
9988
  msgstr ""
9989
 
9990
+ #: languages/vue.php:3700
9991
  msgid "Get access to advanced tracking features like form conversion tracking, author tracking, custom dimensions, scroll tracking, and more."
9992
  msgstr ""
9993
 
9994
+ #: languages/vue.php:3703
9995
  msgid "Advanced Growth Tools"
9996
  msgstr ""
9997
 
9998
+ #: languages/vue.php:3706
9999
  msgid "Get access to advanced growth tools such as popular posts addon, A/B testing tool, smart URL builder, and more."
10000
  msgstr ""
10001
 
10002
+ #: languages/vue.php:3709
10003
  msgid "Track how your users interact with videos on your website."
10004
  msgstr ""
10005
 
10006
+ #: languages/vue.php:3712
10007
  msgid "Error Processing"
10008
  msgstr ""
10009
 
10010
+ #: languages/vue.php:3715
10011
  msgid "There was an error while processing some features. Please try again or you can skip this process for now"
10012
  msgstr ""
10013
 
10014
+ #: languages/vue.php:3718
10015
  msgid "Which website features would you like to enable?"
10016
  msgstr ""
10017
 
10018
+ #: languages/vue.php:3721
10019
  msgid "We’ve already selected our recommended features based on your site. "
10020
  msgstr ""
10021
 
10022
+ #: languages/vue.php:3724
10023
  msgid "Continue"
10024
  msgstr ""
10025
 
10026
+ #: languages/vue.php:3727
10027
  msgid "Standard Analytics & Reports"
10028
  msgstr ""
10029
 
10030
+ #: languages/vue.php:3730
10031
  msgid "Get the reports and stats that matter right inside your WordPress Dashboard."
10032
  msgstr ""
10033
 
10034
+ #: languages/vue.php:3733
10035
  msgid "Helps you see what links your users are clicking on your site."
10036
  msgstr ""
10037
 
10038
+ #: languages/vue.php:3736
10039
  msgid "All In One SEO Toolkit"
10040
  msgstr ""
10041
 
10042
+ #: languages/vue.php:3739
10043
  msgid "The best WordPress SEO plugin that works with MonsterInsights to boost your rankings."
10044
  msgstr ""
10045
 
10046
+ #: languages/vue.php:3742
10047
  msgid "Smart Form Builder by WPForms"
10048
  msgstr ""
10049
 
10050
+ #: languages/vue.php:3745
10051
  msgid "The most popular WordPress form plugin, trusted by over 5 million websites. Easily create contact forms, payment forms, surveys and more."
10052
  msgstr ""
10053
 
10054
+ #: languages/vue.php:3748
10055
  msgid "The following plugins will be installed: "
10056
  msgstr ""
10057
 
10058
+ #: languages/vue.php:3751
10059
  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 Measurement ID should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
10060
  msgstr ""
10061
 
10062
+ #: languages/vue.php:3754
10063
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
10064
  msgstr ""
10065
 
10066
+ #: languages/vue.php:3757
10067
  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."
10068
  msgstr ""
10069
 
10070
+ #: languages/vue.php:3760
10071
  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 Measurement ID should look like G-XXXXXXXXXX where the X's are a combination of numbers and letters."
10072
  msgstr ""
10073
 
10074
+ #: languages/vue.php:3763
10075
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are a combination of numbers and letters."
10076
  msgstr ""
10077
 
10078
+ #: languages/vue.php:3766
10079
  msgid "MonsterInsights makes it effortless for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
10080
  msgstr ""
10081
 
10082
+ #: languages/vue.php:3769
10083
  msgid "Expired"
10084
  msgstr ""
10085
 
10086
+ #: languages/vue.php:3772
10087
  msgid "WP Simple Pay"
10088
  msgstr ""
10089
 
10090
+ #: languages/vue.php:3778
10091
  msgid "License Expired"
10092
  msgstr ""
10093
 
10094
+ #: languages/vue.php:3781
10095
  msgid "Your MonsterInsights license key has expired."
10096
  msgstr ""
10097
 
10098
+ #: languages/vue.php:3784
10099
  msgid "Renew today to ensure Google Analytics continues to track properly."
10100
  msgstr ""
10101
 
10102
+ #: languages/vue.php:3787
10103
  msgid "Click here."
10104
  msgstr ""
10105
 
10106
  #. Translators: Adds a link to the license renewal.
10107
+ #: languages/vue.php:3791
10108
  msgid "To ensure tracking works properly, reactivate your license"
10109
  msgstr ""
10110
 
10111
+ #: languages/vue.php:3794
10112
  msgid "Reactivate License"
10113
  msgstr ""
10114
 
10115
+ #: languages/vue.php:3797
10116
  msgid "View All Reports"
10117
  msgstr ""
10118
 
10119
+ #: languages/vue.php:3800
10120
  msgid "Oops! There was an error processing request. Please try again later."
10121
  msgstr ""
10122
 
10123
  #. Translators: tag to make text italic starts, tag end.
10124
+ #: languages/vue.php:3804
10125
  msgid "See What Your Website Visitors Are %1$sReally%2$s Thinking!"
10126
  msgstr ""
10127
 
10128
+ #: languages/vue.php:3807
10129
  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."
10130
  msgstr ""
10131
 
10132
+ #: languages/vue.php:3810
10133
  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"
10134
  msgstr ""
10135
 
10136
+ #: languages/vue.php:3813
10137
  msgid "Ask open ended questions, run polls or surveys, gather ratings, and more with an easy survey builder"
10138
  msgstr ""
10139
 
10140
+ #: languages/vue.php:3816
10141
  msgid "Customize targeting rules to get specific feedback on certain pages or products"
10142
  msgstr ""
10143
 
10144
+ #: languages/vue.php:3819
10145
  msgid "Easily analyze your responses and export data"
10146
  msgstr ""
10147
 
10148
+ #: languages/vue.php:3822
10149
  msgid "Install & Activate UserFeedback"
10150
  msgstr ""
10151
 
10152
+ #: languages/vue.php:3825
10153
  msgid "Install UserFeedback by clicking the button below."
10154
  msgstr ""
10155
 
10156
+ #: languages/vue.php:3828
10157
  msgid "Install UserFeedback"
10158
  msgstr ""
10159
 
10160
+ #: languages/vue.php:3831
10161
  msgid "Set Up UserFeedback"
10162
  msgstr ""
10163
 
10164
+ #: languages/vue.php:3834
10165
  msgid "Run the UserFeedback setup wizard to launch your first UserFeedback survey."
10166
  msgstr ""
10167
 
10168
+ #: languages/vue.php:3837
10169
  msgid "Start Setup"
10170
  msgstr ""
10171
 
10172
+ #: languages/vue.php:3840
10173
  msgid "Installing UserFeedback"
10174
  msgstr ""
10175
 
10176
+ #: languages/vue.php:3843
10177
  msgid "Activating UserFeedback"
10178
  msgstr ""
10179
 
10180
+ #: languages/vue.php:3846
10181
  msgid "Installed & Active"
10182
  msgstr ""
10183
 
10184
+ #: languages/vue.php:3849
10185
  msgid "Oops! Something went wrong and we weren't able to connect to MonsterInsights. Please enter your Google UA code manually."
10186
  msgstr ""
10187
 
10188
+ #. Translators: Error status, error text, Support link tag starts with url and support link tag ends.
10189
+ #: languages/vue.php:3853
10190
  msgid "Can't save settings. Error: %1$s, %2$s. Please %3$scontact our support%4$s team for assistance."
10191
  msgstr ""
10192
 
10193
  #. Translators: Support link tag starts with url and support link tag ends.
10194
+ #: languages/vue.php:3857
10195
  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."
10196
  msgstr ""
10197
 
10198
  #. Translators: Error status, error text, Support link tag starts with url and support link tag ends.
10199
+ #: languages/vue.php:3861
10200
  msgid "Can't load settings. Error: %1$s, %2$s. Please %3$scontact our support%4$s team for assistance. "
10201
  msgstr ""
10202
 
10203
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10204
+ #: languages/vue.php:3865
10205
  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."
10206
  msgstr ""
10207
 
10208
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10209
+ #: languages/vue.php:3869
10210
  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. "
10211
  msgstr ""
10212
 
10213
  #. Translators: Support page link tag starts and support page link tag ends.
10214
+ #: languages/vue.php:3873
10215
  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."
10216
  msgstr ""
10217
 
10218
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10219
+ #: languages/vue.php:3877
10220
  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."
10221
  msgstr ""
10222
 
10223
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10224
+ #: languages/vue.php:3881
10225
  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. "
10226
  msgstr ""
10227
 
10228
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10229
+ #: languages/vue.php:3885
10230
  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"
10231
  msgstr ""
10232
 
10233
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10234
+ #: languages/vue.php:3889
10235
  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."
10236
  msgstr ""
10237
 
10238
  #. Translators: Error status and error text.
10239
+ #: languages/vue.php:3893
10240
  msgid "Oops! Can't install WPForms. Error: %1$s, %2$s"
10241
  msgstr ""
10242
 
10243
  #. Translators: Error status and error text.
10244
+ #: languages/vue.php:3897
10245
  msgid "Oops! Can't activate addon. Error: %1$s, %2$s"
10246
  msgstr ""
10247
 
10248
+ #: languages/vue.php:3900
10249
  msgid "Oops! There was an error activating the addon. Please try again. If the issue persists, please %1$scontact our support%2$s team."
10250
  msgstr ""
10251
 
10252
  #. Translators: Error status and error text.
10253
+ #: languages/vue.php:3904
10254
  msgid "Oops! Can't deactivate addon. Error: %1$s, %2$s"
10255
  msgstr ""
10256
 
10257
  #. Translators: Error status and error text.
10258
+ #: languages/vue.php:3908
10259
  msgid "Oops! Can't install plugin. Error: %1$s, %2$s"
10260
  msgstr ""
10261
 
10262
  #. Translators: Error status and error text.
10263
+ #: languages/vue.php:3912
10264
  msgid "Oops! Can't install addon. Error: %1$s, %2$s"
10265
  msgstr ""
10266
 
10267
  #. Translators: Support Link tag starts with URL, Support link tag ends, Error status and error text.
10268
+ #: languages/vue.php:3916
10269
  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"
10270
  msgstr ""
10271
 
10272
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10273
+ #: languages/vue.php:3920
10274
  msgid "Oops! There was an issue deactivating your license, please try again. If the issue persists, please %1$scontact our support team%2$s."
10275
  msgstr ""
10276
 
10277
  #. Translators: Support Link tag starts with URL, Support link tag ends, Error status and error text.
10278
+ #: languages/vue.php:3924
10279
  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"
10280
  msgstr ""
10281
 
10282
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10283
+ #: languages/vue.php:3928
10284
  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."
10285
  msgstr ""
10286
 
10287
  #. Translators: Support Link tag start with URL, Support link tag ends, Error status and error text.
10288
+ #: languages/vue.php:3932
10289
  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"
10290
  msgstr ""
10291
 
10292
+ #: languages/vue.php:3935
10293
  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."
10294
  msgstr ""
10295
 
10296
  #. Translators: Support Link tag start with URL, Support link tag ends, Error status and error text.
10297
+ #: languages/vue.php:3939
10298
  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"
10299
  msgstr ""
10300
 
10301
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10302
+ #: languages/vue.php:3943
10303
  msgid "Oops! There was an issue verifying your license, please try again. If the issue persists, please %1$scontact our support team%2$s."
10304
  msgstr ""
10305
 
10306
  #. Translators: Support Link tag start with URL, Support link tag ends, Error status and error text.
10307
+ #: languages/vue.php:3947
10308
  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"
10309
  msgstr ""
10310
 
10311
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10312
+ #: languages/vue.php:3951
10313
  msgid "Oops! There was an issue validating your license, please try again. If the issue persists, please %1$scontact our support team%2$s."
10314
  msgstr ""
10315
 
10316
  #. Translators: Error status, error text, Support link tag starts with url and support link tag ends.
10317
+ #: languages/vue.php:3955
10318
  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."
10319
  msgstr ""
10320
 
10321
  #. Translators: Support link tag starts with url and support link tag ends.
10322
+ #: languages/vue.php:3959
10323
  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."
10324
  msgstr ""
10325
 
10326
+ #: languages/vue.php:3962
10327
  msgid "Website Badge"
10328
  msgstr ""
10329
 
10330
+ #: languages/vue.php:3965
10331
  msgid "Automatic Display"
10332
  msgstr ""
10333
 
10334
+ #: languages/vue.php:3968
10335
  msgid "Automatically Display Website Badge in Website Footer"
10336
  msgstr ""
10337
 
10338
+ #: languages/vue.php:3971
10339
  msgid "Enabling will add the chosen badge in your website’s footer."
10340
  msgstr ""
10341
 
10342
+ #: languages/vue.php:3974
10343
  msgid "Enable Automatic Display"
10344
  msgstr ""
10345
 
10346
+ #: languages/vue.php:3977
10347
  msgid "Appearance"
10348
  msgstr ""
10349
 
10350
+ #: languages/vue.php:3980
10351
  msgid "Choose your badge style."
10352
  msgstr ""
10353
 
10354
+ #: languages/vue.php:3983
10355
  msgid "Position"
10356
  msgstr ""
10357
 
10358
+ #: languages/vue.php:3986
10359
  msgid "Select the position of the badge in your website’s footer."
10360
  msgstr ""
10361
 
10362
+ #: languages/vue.php:3989
10363
  msgid "Manual Display"
10364
  msgstr ""
10365
 
10366
+ #: languages/vue.php:3992
10367
  msgid "Copy"
10368
  msgstr ""
10369
 
10370
+ #: languages/vue.php:3995
10371
  msgid "Light"
10372
  msgstr ""
10373
 
10374
+ #: languages/vue.php:3998
10375
  msgid "Dark"
10376
  msgstr ""
10377
 
10378
+ #: languages/vue.php:4001
10379
  msgid "Left"
10380
  msgstr ""
10381
 
10382
+ #: languages/vue.php:4004
10383
  msgid "Center"
10384
  msgstr ""
10385
 
10386
+ #: languages/vue.php:4007
10387
  msgid "Right"
10388
  msgstr ""
10389
 
10390
+ #: languages/vue.php:4010
10391
  msgid "Show MonsterInsights Badge"
10392
  msgstr ""
10393
 
10394
+ #: languages/vue.php:4013
10395
  msgid "Build trust with website visitors by automatically placing a MonsterInsights badge in your website’s footer."
10396
  msgstr ""
10397
 
10398
+ #: languages/vue.php:4016
10399
  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."
10400
  msgstr ""
10401
 
10402
+ #: languages/vue.php:4019
10403
  msgid "Conversion Tools"
10404
  msgstr ""
10405
 
10406
+ #: languages/vue.php:4022
10407
  msgid "Get the #1 conversion optimization plugin to convert your growing website traffic into subscribers, leads and sales."
10408
  msgstr ""
10409
 
10410
+ #: languages/vue.php:4025
10411
  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 or GT-YYYYY where the Y's are combination of numbers and letters."
10412
  msgstr ""
10413
 
10414
+ #: languages/vue.php:4028
10415
  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 Measurement ID should look like G-XXXXXXXXXX or GT-XXXXX where the X's are combination of numbers and letters."
10416
  msgstr ""
10417
 
10418
+ #: languages/vue.php:4031
10419
  msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers or GT-YYYYY where the Y's are combination of numbers and letters."
10420
  msgstr ""
10421
 
10422
+ #: languages/vue.php:4034
10423
  msgid "Your Measurement ID should look like G-XXXXXXXXXX or GT-XXXXX where the X's are combination of numbers and letters."
10424
  msgstr ""
10425
 
10426
+ #: languages/vue.php:4037
10427
  msgid "Media Report"
10428
  msgstr ""
10429
 
10430
+ #: languages/vue.php:4040
10431
  msgid "Easily See Which Videos Are Most Popular."
10432
  msgstr ""
10433
 
10434
+ #: languages/vue.php:4043
10435
  msgid "Videos Plays, Average Duration, and Completions"
10436
  msgstr ""
10437
 
10438
+ #: languages/vue.php:4046
10439
  msgid "Works with YouTube, Vimeo, and HTML 5 Videos"
10440
  msgstr ""
10441
 
10442
+ #: languages/vue.php:4049
10443
  msgid "Compare stats over time"
10444
  msgstr ""
10445
 
10446
+ #: languages/vue.php:4052
10447
  msgid "Video Plays"
10448
  msgstr ""
10449
 
10450
+ #: languages/vue.php:4055
10451
  msgid "Video %s Plays"
10452
  msgstr ""
10453
 
10454
+ #: languages/vue.php:4058
10455
  msgid "No video plays tracked during this time period."
10456
  msgstr ""
10457
 
10458
  #. Translators: Make the text bold and add the start and end dates.
10459
+ #: languages/vue.php:4062
10460
  msgid "%1$sCustom dates:%2$s %3$s - %4$s"
10461
  msgstr ""
10462
 
10463
+ #: languages/vue.php:4065
10464
  msgid "Custom Date Range"
10465
  msgstr ""
10466
 
10467
+ #: languages/vue.php:4068
10468
  msgid "Set Custom Date Range"
10469
  msgstr ""
10470
 
10471
+ #: languages/vue.php:4071
10472
  msgid "Hide Details"
10473
  msgstr ""
10474
 
10475
+ #: languages/vue.php:4074
10476
  msgid "Show Details"
10477
  msgstr ""
10478
 
10479
+ #: languages/vue.php:4077
10480
+ #: lite/includes/admin/reports/report-year-in-review.php:22
10481
+ msgid "Year in Review"
10482
+ msgstr ""
10483
+
10484
+ #: languages/vue.php:4080
10485
+ msgid "%s Year in Review"
10486
+ msgstr ""
10487
+
10488
+ #: languages/vue.php:4083
10489
+ msgid "Your %s Year in Review is still calculating. Please check back later to see how your website performed last year."
10490
+ msgstr ""
10491
+
10492
+ #: languages/vue.php:4086
10493
+ msgid "Your %s Analytics Report"
10494
+ msgstr ""
10495
+
10496
+ #: languages/vue.php:4089
10497
+ msgid "January 1, %s - December 31, %s"
10498
+ msgstr ""
10499
+
10500
+ #: languages/vue.php:4092
10501
+ msgid "Here's to an amazing %s!"
10502
+ msgstr ""
10503
+
10504
+ #: languages/vue.php:4095
10505
+ msgid "See how your website performed this year and find tips along the way to help grow even more in %s!"
10506
+ msgstr ""
10507
+
10508
+ #: languages/vue.php:4098
10509
+ msgid "A Tip for %s"
10510
+ msgstr ""
10511
+
10512
+ #: languages/vue.php:4101
10513
+ msgid "A Tip For %s"
10514
+ msgstr ""
10515
+
10516
+ #: languages/vue.php:4104
10517
+ msgid "Try our other popular WordPress plugins to grow your website in %s."
10518
+ msgstr ""
10519
+
10520
+ #: languages/vue.php:4107
10521
+ msgid "Become a WordPress expert in %s. Join our amazing communities and take your website to the next level."
10522
+ msgstr ""
10523
+
10524
+ #: languages/vue.php:4110
10525
+ msgid "Copyright MonsterInsights, %s"
10526
+ msgstr ""
10527
+
10528
+ #: languages/vue.php:4113
10529
+ msgid "Generating PDF Report"
10530
+ msgstr ""
10531
+
10532
+ #: languages/vue.php:4116
10533
+ msgid "Download Failed"
10534
+ msgstr ""
10535
+
10536
+ #: languages/vue.php:4119
10537
+ msgid "Downloaded PDF report successfully!"
10538
+ msgstr ""
10539
+
10540
+ #: languages/vue.php:4122
10541
+ msgid "Download as PDF"
10542
+ msgstr ""
10543
+
10544
+ #: languages/vue.php:4125
10545
+ msgid "Download Failed, no report found!"
10546
+ msgstr ""
10547
+
10548
+ #: languages/vue.php:4128
10549
+ msgid "Year In Review %s!"
10550
+ msgstr ""
10551
+
10552
+ #: languages/vue.php:4131
10553
+ msgid "Unknown"
10554
+ msgstr ""
10555
+
10556
+ #: languages/vue.php:4134
10557
+ msgid "No records found."
10558
+ msgstr ""
10559
+
10560
+ #: languages/vue.php:4137
10561
+ msgid "Take advantage of what you’ve already built. See how to get more traffic from existing content in our 32 Marketing Hacks to Grow Your Traffic guide."
10562
+ msgstr ""
10563
+
10564
  #: lite/includes/admin/connect.php:42
10565
  msgid "Oops! You are not allowed to install plugins. Please contact your site administrator."
10566
  msgstr ""
10651
  msgid "Real Time"
10652
  msgstr ""
10653
 
 
 
 
 
10654
  #: lite/includes/admin/tools.php:10
10655
  msgid "Want even more fine tuned control over your website analytics?"
10656
  msgstr ""
languages/vue.php CHANGED
@@ -7,8 +7,6 @@ $generated_i18n_strings = array(
7
  // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:130
8
  __( '2', 'google-analytics-for-wordpress' ),
9
 
10
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:336
11
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:194
12
  // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:225
13
  // Reference: src/plugins/monsterinsights-wizard-helper-plugin.js:17
14
  __( 'Error', 'google-analytics-for-wordpress' ),
@@ -16,22 +14,22 @@ $generated_i18n_strings = array(
16
  // Reference: src/plugins/monsterinsights-wizard-helper-plugin.js:18
17
  __( 'Please try again.', 'google-analytics-for-wordpress' ),
18
 
19
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:355
20
  __( 'Today', 'google-analytics-for-wordpress' ),
21
 
22
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:99
23
  __( 'Yesterday', 'google-analytics-for-wordpress' ),
24
 
25
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:367
26
  __( 'Last Week', 'google-analytics-for-wordpress' ),
27
 
28
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:373
29
  __( 'Last Month', 'google-analytics-for-wordpress' ),
30
 
31
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:379
32
  __( 'Last 7 days', 'google-analytics-for-wordpress' ),
33
 
34
- // Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewDatePicker-Lite.vue:50
35
  __( 'Last 30 days', 'google-analytics-for-wordpress' ),
36
 
37
  // Reference: src/plugins/monsterinsights-wizard-helper-plugin.js:46
@@ -50,7 +48,7 @@ $generated_i18n_strings = array(
50
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:181
51
  __( 'Unlock the Publishers Report and Focus on the Content that Matters', 'google-analytics-for-wordpress' ),
52
 
53
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:238
54
  __( 'Stop guessing about what content your visitors are interested in. MonsterInsights Publisher Report shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions.', 'google-analytics-for-wordpress' ),
55
 
56
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:185
@@ -245,10 +243,10 @@ $generated_i18n_strings = array(
245
  // Reference: src/modules/frontend/monsterinsights-frontend.vue:38
246
  __( 'Insights', 'google-analytics-for-wordpress' ),
247
 
248
- // Reference: src/modules/widget/store/index.js:14
249
  __( 'Overview Report', 'google-analytics-for-wordpress' ),
250
 
251
- // Reference: src/modules/settings/components/SettingsFirstTImeNotice.vue:43
252
  __( 'Welcome to MonsterInsights', 'google-analytics-for-wordpress' ),
253
 
254
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:134
@@ -272,7 +270,6 @@ $generated_i18n_strings = array(
272
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:140
273
  __( 'See All Features', 'google-analytics-for-wordpress' ),
274
 
275
- // Reference: src/modules/frontend/components/FrontendUpsell-Lite.vue:11
276
  // Reference: src/modules/reports/components/monsterinsights-ReportsPdfExport-Lite.vue:50
277
  __( 'Upgrade to PRO', 'google-analytics-for-wordpress' ),
278
 
@@ -280,7 +277,6 @@ $generated_i18n_strings = array(
280
  __( 'per year', 'google-analytics-for-wordpress' ),
281
 
282
  // Reference: src/modules/addons/components/AddonButton.vue:30
283
- // Reference: src/modules/addons/monsterinsights-addons-Lite.vue:80
284
  __( 'Upgrade Now', 'google-analytics-for-wordpress' ),
285
 
286
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:144
@@ -334,16 +330,18 @@ $generated_i18n_strings = array(
334
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:189
335
  __( 'Ecommerce Report', 'google-analytics-for-wordpress' ),
336
 
337
- // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:34
338
  __( 'Form Conversions', 'google-analytics-for-wordpress' ),
339
 
340
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:153
341
  __( 'Custom Dimensions', 'google-analytics-for-wordpress' ),
342
 
343
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:278
 
344
  __( 'Author Tracking', 'google-analytics-for-wordpress' ),
345
 
346
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabConversions-Lite.vue:33
 
347
  __( 'Google Optimize', 'google-analytics-for-wordpress' ),
348
 
349
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:194
@@ -353,9 +351,11 @@ $generated_i18n_strings = array(
353
  __( 'WooCommerce', 'google-analytics-for-wordpress' ),
354
 
355
  // Reference: src/modules/growth-tools/monsterinsights-growth-tools.vue:265
 
356
  __( 'Easy Digital Downloads', 'google-analytics-for-wordpress' ),
357
 
358
  // Reference: src/modules/growth-tools/monsterinsights-growth-tools.vue:276
 
359
  __( 'MemberPress', 'google-analytics-for-wordpress' ),
360
 
361
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:198
@@ -395,17 +395,14 @@ $generated_i18n_strings = array(
395
  // Reference: src/modules/reports/components/ReportReAuth.vue:20
396
  __( 'There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating.', 'google-analytics-for-wordpress' ),
397
 
398
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:132
399
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:80
400
  __( 'Reconnect MonsterInsights', 'google-analytics-for-wordpress' ),
401
 
402
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:252
403
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:178
404
  __( 'Re-Authenticating', 'google-analytics-for-wordpress' ),
405
 
406
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:338
407
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:196
408
- // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:345
409
  // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:232
410
  __( 'Ok', 'google-analytics-for-wordpress' ),
411
 
@@ -428,14 +425,13 @@ $generated_i18n_strings = array(
428
  /* Translators: Placeholder is replaced with WPForms. */
429
  __( 'Recommended Plugin: %s', 'google-analytics-for-wordpress' ),
430
 
431
- // Reference: src/modules/addons/components/AddonButton.vue:54
432
- // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:42
433
  __( 'Install', 'google-analytics-for-wordpress' ),
434
 
435
- // Reference: src/modules/addons/components/AddonButton.vue:50
436
- // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:38
437
  __( 'Activate', 'google-analytics-for-wordpress' ),
438
 
 
439
  // Reference: src/modules/widget/components/WidgetFooter.vue:22
440
  __( 'Learn More', 'google-analytics-for-wordpress' ),
441
 
@@ -498,15 +494,16 @@ $generated_i18n_strings = array(
498
  // Reference: src/modules/settings/routes/site.js:112
499
  __( 'PrettyLinks Integration', 'google-analytics-for-wordpress' ),
500
 
501
- // Reference: src/modules/settings/routes/network.js:35
502
  // Reference: src/modules/settings/routes/site.js:134
503
  __( 'About Us', 'google-analytics-for-wordpress' ),
504
 
505
- // Reference: src/modules/settings/routes/network.js:43
506
  // Reference: src/modules/settings/routes/site.js:142
507
  __( 'Getting Started', 'google-analytics-for-wordpress' ),
508
 
509
- // Reference: src/modules/settings/routes/network.js:52
 
510
  // Reference: src/modules/settings/routes/site.js:151
511
  __( 'Lite vs Pro', 'google-analytics-for-wordpress' ),
512
 
@@ -561,12 +558,13 @@ $generated_i18n_strings = array(
561
  // Reference: src/modules/reports/components/ReportNoAuth.vue:26
562
  __( 'MonsterInsights makes it "effortless" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard.', 'google-analytics-for-wordpress' ),
563
 
564
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:107
565
  __( 'Launch Setup Wizard', 'google-analytics-for-wordpress' ),
566
 
567
  // Reference: src/modules/reports/components/ReportNoAuth.vue:30
568
  __( 'Please ask your webmaster to connect MonsterInsights to Google Analytics.', 'google-analytics-for-wordpress' ),
569
 
 
570
  // Reference: src/modules/widget/store/index.js:77
571
  __( 'Overview', 'google-analytics-for-wordpress' ),
572
 
@@ -598,35 +596,39 @@ $generated_i18n_strings = array(
598
  // Reference: src/modules/reports/api/index.js:29
599
  __( 'Error loading report data', 'google-analytics-for-wordpress' ),
600
 
601
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:249
 
602
  __( 'Publishers Report', 'google-analytics-for-wordpress' ),
603
 
604
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportEcommerce-Lite.vue:23
605
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:261
606
  __( 'eCommerce Report', 'google-analytics-for-wordpress' ),
607
 
608
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:299
609
  __( 'Search Console Report', 'google-analytics-for-wordpress' ),
610
 
611
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:275
 
612
  __( 'Dimensions Report', 'google-analytics-for-wordpress' ),
613
 
614
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:289
 
615
  __( 'Forms Report', 'google-analytics-for-wordpress' ),
616
 
617
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:51
618
  __( 'Real-Time Report', 'google-analytics-for-wordpress' ),
619
 
620
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:322
 
621
  __( 'Site Speed Report', 'google-analytics-for-wordpress' ),
622
 
623
- // Reference: src/modules/widget/store/index.js:103
624
  __( 'Time to Purchase', 'google-analytics-for-wordpress' ),
625
 
626
  // Reference: src/modules/widget/store/index.js:104
627
  __( 'This list shows how many days from first visit it took users to purchase products from your site.', 'google-analytics-for-wordpress' ),
628
 
629
- // Reference: src/modules/widget/store/index.js:111
630
  __( 'Sessions to Purchase', 'google-analytics-for-wordpress' ),
631
 
632
  // Reference: src/modules/widget/store/index.js:112
@@ -644,37 +646,37 @@ $generated_i18n_strings = array(
644
  // Reference: src/modules/widget/store/index.js:128
645
  __( 'This list shows the percentage of carts that never went through the checkout process.', 'google-analytics-for-wordpress' ),
646
 
647
- // Reference: src/modules/widget/store/index.js:20
648
  __( 'Top Posts/Pages', 'google-analytics-for-wordpress' ),
649
 
650
- // Reference: src/modules/widget/store/index.js:21
651
  __( 'This list shows the most viewed posts and pages on your website.', 'google-analytics-for-wordpress' ),
652
 
653
- // Reference: src/modules/widget/store/index.js:27
654
  __( 'New vs. Returning Visitors', 'google-analytics-for-wordpress' ),
655
 
656
- // Reference: src/modules/widget/store/index.js:28
657
  __( 'This graph shows what percent of your user sessions come from new versus repeat visitors.', 'google-analytics-for-wordpress' ),
658
 
659
- // Reference: src/modules/widget/store/index.js:34
660
  __( 'Device Breakdown', 'google-analytics-for-wordpress' ),
661
 
662
- // Reference: src/modules/widget/store/index.js:35
663
  __( '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-for-wordpress' ),
664
 
665
- // Reference: src/modules/widget/store/index.js:41
666
  __( 'Top Landing Pages', 'google-analytics-for-wordpress' ),
667
 
668
  // Reference: src/modules/widget/store/index.js:42
669
  __( 'This list shows the top pages users first land on when visiting your website.', 'google-analytics-for-wordpress' ),
670
 
671
- // Reference: src/modules/widget/store/index.js:48
672
  __( 'Top Exit Pages', 'google-analytics-for-wordpress' ),
673
 
674
  // Reference: src/modules/widget/store/index.js:49
675
  __( 'This list shows the top pages users exit your website from.', 'google-analytics-for-wordpress' ),
676
 
677
- // Reference: src/modules/widget/store/index.js:56
678
  __( 'Top Outbound Links', 'google-analytics-for-wordpress' ),
679
 
680
  // Reference: src/modules/widget/store/index.js:57
@@ -686,19 +688,19 @@ $generated_i18n_strings = array(
686
  // Reference: src/modules/widget/store/index.js:64
687
  __( 'This list shows the top affiliate links your visitors clicked on.', 'google-analytics-for-wordpress' ),
688
 
689
- // Reference: src/modules/widget/store/index.js:70
690
  __( 'Top Download Links', 'google-analytics-for-wordpress' ),
691
 
692
  // Reference: src/modules/widget/store/index.js:71
693
  __( 'This list shows the download links your visitors clicked the most.', 'google-analytics-for-wordpress' ),
694
 
695
- // Reference: src/modules/widget/store/index.js:83
696
  __( 'Top Products', 'google-analytics-for-wordpress' ),
697
 
698
  // Reference: src/modules/widget/store/index.js:84
699
  __( 'This list shows the top selling products on your website.', 'google-analytics-for-wordpress' ),
700
 
701
- // Reference: src/modules/widget/store/index.js:90
702
  __( 'Top Conversion Sources', 'google-analytics-for-wordpress' ),
703
 
704
  // Reference: src/modules/widget/store/index.js:91
@@ -837,7 +839,7 @@ $generated_i18n_strings = array(
837
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:107
838
  __( 'Overview Reports for the last 30 days.', 'google-analytics-for-wordpress' ),
839
 
840
- // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:153
841
  __( 'Advanced Reports', 'google-analytics-for-wordpress' ),
842
 
843
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:109
@@ -861,7 +863,7 @@ $generated_i18n_strings = array(
861
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:121
862
  __( 'Headline Analyzer', 'google-analytics-for-wordpress' ),
863
 
864
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:71
865
  __( 'Email Summaries', 'google-analytics-for-wordpress' ),
866
 
867
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:130
@@ -895,7 +897,6 @@ $generated_i18n_strings = array(
895
  __( '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-for-wordpress' ),
896
 
897
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:156
898
- // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:116
899
  __( 'Not Available', 'google-analytics-for-wordpress' ),
900
 
901
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:157
@@ -955,7 +956,7 @@ $generated_i18n_strings = array(
955
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:84
956
  __( 'Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors', 'google-analytics-for-wordpress' ),
957
 
958
- // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:164
959
  __( 'eCommerce Tracking', 'google-analytics-for-wordpress' ),
960
 
961
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:91
@@ -970,35 +971,35 @@ $generated_i18n_strings = array(
970
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:99
971
  __( 'One-click Form Events Tracking', 'google-analytics-for-wordpress' ),
972
 
973
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:100
974
  __( 'License Key', 'google-analytics-for-wordpress' ),
975
 
976
  // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:56
977
  /* Translators: Add link to retrieve license key from account. */
978
  __( 'Add your MonsterInsights license key from the email receipt or account area. %1$sRetrieve your license key%2$s.', 'google-analytics-for-wordpress' ),
979
 
980
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:101
981
  __( 'Google Authentication', 'google-analytics-for-wordpress' ),
982
 
983
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:102
984
  __( 'Connect Google Analytics + WordPress', 'google-analytics-for-wordpress' ),
985
 
986
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:103
987
  __( 'You will be taken to the MonsterInsights website where you\'ll need to connect your Analytics account.', 'google-analytics-for-wordpress' ),
988
 
989
- // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:37
990
  __( 'Miscellaneous', 'google-analytics-for-wordpress' ),
991
 
992
- // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:39
993
  __( 'Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes.', 'google-analytics-for-wordpress' ),
994
 
995
- // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:40
996
  __( 'Hide Announcements', 'google-analytics-for-wordpress' ),
997
 
998
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:105
999
  __( 'Setup Wizard', 'google-analytics-for-wordpress' ),
1000
 
1001
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:106
1002
  __( 'Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks).', 'google-analytics-for-wordpress' ),
1003
 
1004
  // Reference: src/modules/about/components/monsterinsights-AboutTabAboutUs.vue:31
@@ -1251,7 +1252,6 @@ $generated_i18n_strings = array(
1251
  __( 'Continue & Install WPForms', 'google-analytics-for-wordpress' ),
1252
 
1253
  // Reference: src/modules/addons/components/AddonButton.vue:42
1254
- // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:30
1255
  __( 'Installing...', 'google-analytics-for-wordpress' ),
1256
 
1257
  // Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:42
@@ -1260,7 +1260,6 @@ $generated_i18n_strings = array(
1260
  // Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:42
1261
  __( 'Show in full-width mode', 'google-analytics-for-wordpress' ),
1262
 
1263
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:56
1264
  // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:143
1265
  __( 'Upgrade to MonsterInsights Pro', 'google-analytics-for-wordpress' ),
1266
 
@@ -1289,7 +1288,7 @@ $generated_i18n_strings = array(
1289
  // Reference: src/modules/reports/store/actions.js:220
1290
  __( 'View Addons', 'google-analytics-for-wordpress' ),
1291
 
1292
- // Reference: src/modules/seo/components/yoast.vue:266
1293
  __( 'Dismiss', 'google-analytics-for-wordpress' ),
1294
 
1295
  // Reference: src/modules/reports/store/actions.js:228
@@ -1333,18 +1332,22 @@ $generated_i18n_strings = array(
1333
  // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:32
1334
  __( 'Your Website', 'google-analytics-for-wordpress' ),
1335
 
 
1336
  // Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:80
1337
  __( 'Sessions', 'google-analytics-for-wordpress' ),
1338
 
 
1339
  // Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:83
1340
  __( 'Pageviews', 'google-analytics-for-wordpress' ),
1341
 
1342
  // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:35
1343
  __( 'Avg. Duration', 'google-analytics-for-wordpress' ),
1344
 
 
1345
  // Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:92
1346
  __( 'Bounce Rate', 'google-analytics-for-wordpress' ),
1347
 
 
1348
  // Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:93
1349
  __( 'Total Users', 'google-analytics-for-wordpress' ),
1350
 
@@ -1512,7 +1515,6 @@ $generated_i18n_strings = array(
1512
  /* Translators: Line break. */
1513
  __( 'Unique %s Sessions', 'google-analytics-for-wordpress' ),
1514
 
1515
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:63
1516
  // Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:85
1517
  /* Translators: Line break. */
1518
  __( 'Unique %s Pageviews', 'google-analytics-for-wordpress' ),
@@ -1535,13 +1537,13 @@ $generated_i18n_strings = array(
1535
  // Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:91
1536
  __( 'Avg. Session Duration', 'google-analytics-for-wordpress' ),
1537
 
1538
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:314
1539
  __( 'Still Calculating...', 'google-analytics-for-wordpress' ),
1540
 
1541
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:260
1542
  __( 'Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year.', 'google-analytics-for-wordpress' ),
1543
 
1544
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:316
1545
  __( 'Back to Overview Report', 'google-analytics-for-wordpress' ),
1546
 
1547
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:262
@@ -1550,31 +1552,31 @@ $generated_i18n_strings = array(
1550
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:264
1551
  __( 'See how your website performed this year and find tips along the way to help grow even more in 2021!', 'google-analytics-for-wordpress' ),
1552
 
1553
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:320
1554
  __( 'Audience', 'google-analytics-for-wordpress' ),
1555
 
1556
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:321
1557
  __( 'Congrats', 'google-analytics-for-wordpress' ),
1558
 
1559
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:322
1560
  __( 'Your website was quite popular this year! ', 'google-analytics-for-wordpress' ),
1561
 
1562
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:323
1563
  __( 'You had ', 'google-analytics-for-wordpress' ),
1564
 
1565
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:324
1566
  __( ' visitors!', 'google-analytics-for-wordpress' ),
1567
 
1568
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:325
1569
  __( ' visitors', 'google-analytics-for-wordpress' ),
1570
 
1571
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:326
1572
  __( 'Total Visitors', 'google-analytics-for-wordpress' ),
1573
 
1574
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:327
1575
  __( 'Total Sessions', 'google-analytics-for-wordpress' ),
1576
 
1577
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:328
1578
  __( 'Visitors by Month', 'google-analytics-for-wordpress' ),
1579
 
1580
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:274
@@ -1583,7 +1585,7 @@ $generated_i18n_strings = array(
1583
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:275
1584
  __( 'A Tip for 2021', 'google-analytics-for-wordpress' ),
1585
 
1586
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:331
1587
  __( 'Demographics', 'google-analytics-for-wordpress' ),
1588
 
1589
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:332
@@ -1607,29 +1609,28 @@ $generated_i18n_strings = array(
1607
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:338
1608
  __( 'Male', 'google-analytics-for-wordpress' ),
1609
 
1610
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:339
1611
  __( 'Average Age', 'google-analytics-for-wordpress' ),
1612
 
1613
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:113
1614
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:340
1615
  __( 'Behavior', 'google-analytics-for-wordpress' ),
1616
 
1617
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:341
1618
  __( 'Your Top 5 Pages', 'google-analytics-for-wordpress' ),
1619
 
1620
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:343
1621
  __( 'Time Spent on Site', 'google-analytics-for-wordpress' ),
1622
 
1623
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:344
1624
  __( 'minutes', 'google-analytics-for-wordpress' ),
1625
 
1626
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:345
1627
  __( 'Device Type', 'google-analytics-for-wordpress' ),
1628
 
1629
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:291
1630
  __( 'A Tip For 2021', 'google-analytics-for-wordpress' ),
1631
 
1632
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:347
1633
  __( 'Take advantage of what you’ve already built. See how to get more traffic from existing content in our 32 Marketing Hacks to Grow Your Traffic.', 'google-analytics-for-wordpress' ),
1634
 
1635
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:348
@@ -1671,144 +1672,144 @@ $generated_i18n_strings = array(
1671
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:308
1672
  __( 'Here\'s to an amazing 2021!', 'google-analytics-for-wordpress' ),
1673
 
1674
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:364
1675
  __( 'Enjoying MonsterInsights', 'google-analytics-for-wordpress' ),
1676
 
1677
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:365
1678
  __( 'Leave a five star review!', 'google-analytics-for-wordpress' ),
1679
 
1680
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:366
1681
  __( 'Syed Balkhi', 'google-analytics-for-wordpress' ),
1682
 
1683
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:367
1684
  __( 'Chris Christoff', 'google-analytics-for-wordpress' ),
1685
 
1686
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:368
1687
  __( 'Write Review', 'google-analytics-for-wordpress' ),
1688
 
1689
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:369
1690
  __( 'Did you know over 10 million websites use our plugins?', 'google-analytics-for-wordpress' ),
1691
 
1692
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:315
1693
  __( 'Try our other popular WordPress plugins to grow your website in 2021.', 'google-analytics-for-wordpress' ),
1694
 
1695
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:371
1696
  __( 'Join our Communities!', 'google-analytics-for-wordpress' ),
1697
 
1698
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:317
1699
  __( 'Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level.', 'google-analytics-for-wordpress' ),
1700
 
1701
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:373
1702
  __( 'Facebook Group', 'google-analytics-for-wordpress' ),
1703
 
1704
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:374
1705
  __( 'Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group.', 'google-analytics-for-wordpress' ),
1706
 
1707
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:375
1708
  __( 'Join Now...It’s Free!', 'google-analytics-for-wordpress' ),
1709
 
1710
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:376
1711
  __( 'WordPress Tutorials by WPBeginner', 'google-analytics-for-wordpress' ),
1712
 
1713
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:377
1714
  __( 'WPBeginner is the largest free WordPress resource site for beginners and non-techy users.', 'google-analytics-for-wordpress' ),
1715
 
1716
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:378
1717
  __( 'Visit WPBeginner', 'google-analytics-for-wordpress' ),
1718
 
1719
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:379
1720
  __( 'Follow Us!', 'google-analytics-for-wordpress' ),
1721
 
1722
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:380
1723
  __( 'Follow MonsterInsights 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-for-wordpress' ),
1724
 
1725
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:326
1726
  __( 'Copyright MonsterInsights, 2021', 'google-analytics-for-wordpress' ),
1727
 
1728
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:382
1729
  __( 'Upgrade to MonsterInsights Pro to Unlock Additional Actionable Insights', 'google-analytics-for-wordpress' ),
1730
 
1731
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:386
1732
  __( 'January', 'google-analytics-for-wordpress' ),
1733
 
1734
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:387
1735
  __( 'February', 'google-analytics-for-wordpress' ),
1736
 
1737
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:388
1738
  __( 'March', 'google-analytics-for-wordpress' ),
1739
 
1740
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:389
1741
  __( 'April', 'google-analytics-for-wordpress' ),
1742
 
1743
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:390
1744
  __( 'May', 'google-analytics-for-wordpress' ),
1745
 
1746
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:391
1747
  __( 'June', 'google-analytics-for-wordpress' ),
1748
 
1749
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:392
1750
  __( 'July', 'google-analytics-for-wordpress' ),
1751
 
1752
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:393
1753
  __( 'August', 'google-analytics-for-wordpress' ),
1754
 
1755
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:394
1756
  __( 'September', 'google-analytics-for-wordpress' ),
1757
 
1758
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:395
1759
  __( 'October', 'google-analytics-for-wordpress' ),
1760
 
1761
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:396
1762
  __( 'November', 'google-analytics-for-wordpress' ),
1763
 
1764
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:397
1765
  __( 'December', 'google-analytics-for-wordpress' ),
1766
 
1767
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:425
1768
  /* Translators: Number of visitors. */
1769
  __( 'Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>', 'google-analytics-for-wordpress' ),
1770
 
1771
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:428
1772
  __( 'See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success.', 'google-analytics-for-wordpress' ),
1773
 
1774
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:447
1775
  /* Translators: Number of visitors. */
1776
  __( 'Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries.', 'google-analytics-for-wordpress' ),
1777
 
1778
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:454
1779
  /* Translators: Number of visitors. */
1780
  __( '%s Visitors', 'google-analytics-for-wordpress' ),
1781
 
1782
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:469
1783
  /* Translators: Percent and Number of visitors. */
1784
  __( '%1$s&#37 of your visitors were %2$s', 'google-analytics-for-wordpress' ),
1785
 
1786
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:476
1787
  /* Translators: Number of visitors and their age. */
1788
  __( '%1$s&#37 of your visitors were between the ages of %2$s', 'google-analytics-for-wordpress' ),
1789
 
1790
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:485
1791
  __( '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-for-wordpress' ),
1792
 
1793
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:459
1794
  /* Translators: Number of minutes spent on site. */
1795
  __( 'Each visitor spent an average of %s minutes on your website in 2020.', 'google-analytics-for-wordpress' ),
1796
 
1797
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:531
1798
  /* Translators: Name of device type. */
1799
  __( 'Most of your visitors viewed your website from their <strong>%s</strong> device.', 'google-analytics-for-wordpress' ),
1800
 
1801
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:535
1802
  /* Translators: Number of visitors and device percentage. */
1803
  __( '%1$s&#37 of your visitors were on a %2$s device.', 'google-analytics-for-wordpress' ),
1804
 
1805
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:560
1806
  __( 'Desktop', 'google-analytics-for-wordpress' ),
1807
 
1808
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:561
1809
  __( 'Tablet', 'google-analytics-for-wordpress' ),
1810
 
1811
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:562
1812
  __( 'Mobile', 'google-analytics-for-wordpress' ),
1813
 
1814
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:52
@@ -1836,7 +1837,7 @@ $generated_i18n_strings = array(
1836
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:60
1837
  __( 'There is no need to refresh the browser (doing so won\'t have any effect).', 'google-analytics-for-wordpress' ),
1838
 
1839
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:61
1840
  __( 'Pageviews Per Minute', 'google-analytics-for-wordpress' ),
1841
 
1842
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:64
@@ -1903,7 +1904,7 @@ $generated_i18n_strings = array(
1903
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:28
1904
  __( 'Dashboard widget', 'google-analytics-for-wordpress' ),
1905
 
1906
- // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:29
1907
  __( 'Affiliate Links', 'google-analytics-for-wordpress' ),
1908
 
1909
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:31
@@ -1919,7 +1920,6 @@ $generated_i18n_strings = array(
1919
  __( 'SEO Score Tracking', 'google-analytics-for-wordpress' ),
1920
 
1921
  // Reference: src/modules/addons/components/AddonButton.vue:34
1922
- // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:26
1923
  __( 'Activating...', 'google-analytics-for-wordpress' ),
1924
 
1925
  // Reference: src/modules/addons/components/AddonButton.vue:38
@@ -2135,17 +2135,21 @@ $generated_i18n_strings = array(
2135
  /* Translators: Error status and error text. */
2136
  __( 'Can\'t install WPForms. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2137
 
 
2138
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:102
2139
  /* Translators: Example path (/go/). */
2140
  __( 'Path (example: %s)', 'google-analytics-for-wordpress' ),
2141
 
 
2142
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:104
2143
  __( 'Path has to start with a / and have no spaces', 'google-analytics-for-wordpress' ),
2144
 
 
2145
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:109
2146
  /* Translators: Example label (aff). */
2147
  __( 'Label (example: %s)', 'google-analytics-for-wordpress' ),
2148
 
 
2149
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:111
2150
  __( 'Label can\'t contain any spaces', 'google-analytics-for-wordpress' ),
2151
 
@@ -2168,29 +2172,24 @@ $generated_i18n_strings = array(
2168
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:141
2169
  __( 'Or manually enter UA code (limited functionality)', 'google-analytics-for-wordpress' ),
2170
 
2171
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:142
2172
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:88
2173
  __( 'Dual Tracking Profile', 'google-analytics-for-wordpress' ),
2174
 
2175
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:144
2176
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:90
2177
  __( '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-for-wordpress' ),
2178
 
2179
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:94
2180
  __( 'Your Universal Analytics code should look like UA-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-for-wordpress' ),
2181
 
2182
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:150
2183
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:96
2184
  __( '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-for-wordpress' ),
2185
 
2186
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:120
2187
  __( 'Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-for-wordpress' ),
2188
 
2189
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:155
2190
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:101
2191
  __( 'Measurement Protocol API Secret', 'google-analytics-for-wordpress' ),
2192
 
2193
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:157
2194
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:103
2195
  __( '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-for-wordpress' ),
2196
 
@@ -2200,7 +2199,6 @@ $generated_i18n_strings = array(
2200
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:169
2201
  __( 'Disconnect MonsterInsights', 'google-analytics-for-wordpress' ),
2202
 
2203
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:225
2204
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:149
2205
  __( 'Authenticating', 'google-analytics-for-wordpress' ),
2206
 
@@ -2216,7 +2214,6 @@ $generated_i18n_strings = array(
2216
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:330
2217
  __( 'You\'ve disconnected your site from MonsterInsights. Your site is no longer being tracked by Google Analytics and you won\'t see reports anymore.', 'google-analytics-for-wordpress' ),
2218
 
2219
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:130
2220
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:79
2221
  __( 'Connect MonsterInsights', 'google-analytics-for-wordpress' ),
2222
 
@@ -2229,21 +2226,18 @@ $generated_i18n_strings = array(
2229
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:134
2230
  __( 'Active Profile', 'google-analytics-for-wordpress' ),
2231
 
2232
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:135
2233
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:83
2234
  __( 'Your website profile has been set at the network level of your WordPress Multisite.', 'google-analytics-for-wordpress' ),
2235
 
2236
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:136
2237
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:84
2238
  __( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-for-wordpress' ),
2239
 
2240
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:137
2241
  __( 'Manually enter your UA code', 'google-analytics-for-wordpress' ),
2242
 
2243
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:87
2244
  __( 'Warning: If you use a manual UA code, you won\'t be able to use any of the reporting and some of the tracking features. Your UA code should look like UA-XXXXXX-XX where the X\'s are numbers.', 'google-analytics-for-wordpress' ),
2245
 
2246
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:139
2247
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:86
2248
  __( 'Manually enter your GA4 Measurement ID', 'google-analytics-for-wordpress' ),
2249
 
@@ -2389,21 +2383,18 @@ $generated_i18n_strings = array(
2389
  // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:41
2390
  __( 'You can re-enable the MonsterInsights widget at any time using the "Screen Options" menu on the top right of this page', 'google-analytics-for-wordpress' ),
2391
 
2392
- // Reference: src/modules/settings/components/SettingsAddonUpgrade.vue:39
2393
  __( 'Upgrade', 'google-analytics-for-wordpress' ),
2394
 
2395
- // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:41
2396
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:29
2397
  __( 'Usage Tracking', 'google-analytics-for-wordpress' ),
2398
 
2399
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:30
2400
  __( 'Allow Usage Tracking', 'google-analytics-for-wordpress' ),
2401
 
2402
- // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:42
2403
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:31
2404
  __( '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.', 'google-analytics-for-wordpress' ),
2405
 
2406
- // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:45
2407
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:33
2408
  /* Translators: Add links to documentation. */
2409
  __( 'Complete documentation on usage tracking is available %1$shere%2$s.', 'google-analytics-for-wordpress' ),
@@ -2449,10 +2440,10 @@ $generated_i18n_strings = array(
2449
  // Reference: src/modules/seo/components/yoast.vue:167
2450
  __( 'Automatically migrate all of your SEO settings with just 1 click!', 'google-analytics-for-wordpress' ),
2451
 
2452
- // Reference: src/modules/seo/components/yoast.vue:168
2453
  __( '1,938', 'google-analytics-for-wordpress' ),
2454
 
2455
- // Reference: src/modules/seo/components/yoast.vue:169
2456
  __( '2+ Million Active Installs', 'google-analytics-for-wordpress' ),
2457
 
2458
  // Reference: src/modules/seo/components/yoast.vue:172
@@ -2461,10 +2452,10 @@ $generated_i18n_strings = array(
2461
  // Reference: src/modules/seo/components/yoast.vue:173
2462
  __( 'Set up the proper SEO foundations in less than 10 minutes.', 'google-analytics-for-wordpress' ),
2463
 
2464
- // Reference: src/modules/seo/components/yoast.vue:174
2465
  __( 'SEO Audit Checklist', 'google-analytics-for-wordpress' ),
2466
 
2467
- // Reference: src/modules/seo/components/yoast.vue:175
2468
  __( 'Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic.', 'google-analytics-for-wordpress' ),
2469
 
2470
  // Reference: src/modules/seo/components/yoast.vue:176
@@ -2476,37 +2467,37 @@ $generated_i18n_strings = array(
2476
  // Reference: src/modules/seo/components/yoast.vue:178
2477
  __( 'Get AIOSEO for WordPress', 'google-analytics-for-wordpress' ),
2478
 
2479
- // Reference: src/modules/seo/components/yoast.vue:181
2480
  __( 'Get the #1 Most Powerful WordPress SEO Plugin Today', 'google-analytics-for-wordpress' ),
2481
 
2482
- // Reference: src/modules/seo/components/yoast.vue:182
2483
  __( 'Try it out today, for free.', 'google-analytics-for-wordpress' ),
2484
 
2485
- // Reference: src/modules/seo/components/yoast.vue:185
2486
  __( 'Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings.', 'google-analytics-for-wordpress' ),
2487
 
2488
- // Reference: src/modules/seo/components/yoast.vue:186
2489
  __( 'Activate and Install the Plugin with just one click!', 'google-analytics-for-wordpress' ),
2490
 
2491
  // Reference: src/modules/seo/components/yoast.vue:251
2492
  __( 'Installing AIOSEO...', 'google-analytics-for-wordpress' ),
2493
 
2494
- // Reference: src/modules/seo/components/yoast.vue:260
2495
  __( 'Congrats! All-in-One SEO Installed.', 'google-analytics-for-wordpress' ),
2496
 
2497
  // Reference: src/modules/seo/components/yoast.vue:277
2498
  __( 'Switch to AIOSEO', 'google-analytics-for-wordpress' ),
2499
 
2500
- // Reference: src/modules/seo/components/yoast.vue:281
2501
  __( 'Installation Failed. Please refresh and try again.', 'google-analytics-for-wordpress' ),
2502
 
2503
- // Reference: src/modules/seo/components/yoast.vue:288
2504
  __( 'Activating AIOSEO...', 'google-analytics-for-wordpress' ),
2505
 
2506
- // Reference: src/modules/seo/components/yoast.vue:295
2507
  __( 'Activate AIOSEO', 'google-analytics-for-wordpress' ),
2508
 
2509
- // Reference: src/modules/seo/components/yoast.vue:299
2510
  __( 'Activation Failed. Please refresh and try again.', 'google-analytics-for-wordpress' ),
2511
 
2512
  // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:177
@@ -2588,7 +2579,7 @@ $generated_i18n_strings = array(
2588
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:86
2589
  __( 'MonsterInsights 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-for-wordpress' ),
2590
 
2591
- // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:94
2592
  __( 'Enhanced Link Attribution', 'google-analytics-for-wordpress' ),
2593
 
2594
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:88
@@ -2651,7 +2642,7 @@ $generated_i18n_strings = array(
2651
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:85
2652
  __( 'Whoops, something went wrong and we weren\'t able to connect to MonsterInsights. Please enter your Google UA code manually.', 'google-analytics-for-wordpress' ),
2653
 
2654
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:41
2655
  __( 'Save and Continue', 'google-analytics-for-wordpress' ),
2656
 
2657
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:140
@@ -2787,19 +2778,19 @@ $generated_i18n_strings = array(
2787
  // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:95
2788
  __( 'Error emptying the popular posts cache. Please try again.', 'google-analytics-for-wordpress' ),
2789
 
2790
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:112
2791
  __( 'Choose Theme', 'google-analytics-for-wordpress' ),
2792
 
2793
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:114
2794
  __( 'Widget Styling', 'google-analytics-for-wordpress' ),
2795
 
2796
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:115
2797
  __( 'Choose how you want to determine the colors, font sizes and spacing of the widget.', 'google-analytics-for-wordpress' ),
2798
 
2799
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:116
2800
  __( 'Sort By', 'google-analytics-for-wordpress' ),
2801
 
2802
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:117
2803
  __( 'Choose how you\'d like the widget to determine your popular posts.', 'google-analytics-for-wordpress' ),
2804
 
2805
  // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:118
@@ -2811,40 +2802,40 @@ $generated_i18n_strings = array(
2811
  // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:120
2812
  __( 'Title your widget and set its display preferences.', 'google-analytics-for-wordpress' ),
2813
 
2814
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:121
2815
  __( 'Include in Post Types', 'google-analytics-for-wordpress' ),
2816
 
2817
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:122
2818
  __( 'Exclude from specific posts', 'google-analytics-for-wordpress' ),
2819
 
2820
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:124
2821
  /* Translators: Placeholders make the text bold. */
2822
  __( 'Choose which Post Types the widget %1$sWILL%2$s be placed.', 'google-analytics-for-wordpress' ),
2823
 
2824
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:126
2825
  /* Translators: Placeholders make the text bold. */
2826
  __( 'Choose from which Posts the widget %1$sWILL NOT%2$s be placed.', 'google-analytics-for-wordpress' ),
2827
 
2828
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:127
2829
  __( 'Loading Themes', 'google-analytics-for-wordpress' ),
2830
 
2831
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:132
2832
  /* Translators: placeholders make text small. */
2833
  __( 'Default Styles %1$s- As seen above.%2$s', 'google-analytics-for-wordpress' ),
2834
 
2835
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:137
2836
  /* Translators: placeholders make text small. */
2837
  __( 'No Styles %1$s- Use your own CSS.%2$s', 'google-analytics-for-wordpress' ),
2838
 
2839
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:144
2840
  /* Translators: placeholders make text small. */
2841
  __( 'Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s', 'google-analytics-for-wordpress' ),
2842
 
2843
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:149
2844
  /* Translators: placeholders make text small. */
2845
  __( 'SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s', 'google-analytics-for-wordpress' ),
2846
 
2847
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:154
2848
  /* Translators: placeholders make text small. */
2849
  __( 'Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s', 'google-analytics-for-wordpress' ),
2850
 
@@ -2861,7 +2852,6 @@ $generated_i18n_strings = array(
2861
  __( 'Choose where in the post body the widget will be placed.', 'google-analytics-for-wordpress' ),
2862
 
2863
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:135
2864
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:137
2865
  __( 'Customize Design', 'google-analytics-for-wordpress' ),
2866
 
2867
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:137
@@ -3223,7 +3213,7 @@ $generated_i18n_strings = array(
3223
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:128
3224
  __( 'All Embed Options can be used in conjunction with one another.', 'google-analytics-for-wordpress' ),
3225
 
3226
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:129
3227
  __( 'Using the Gutenberg Block', 'google-analytics-for-wordpress' ),
3228
 
3229
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:130
@@ -3241,13 +3231,13 @@ $generated_i18n_strings = array(
3241
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:135
3242
  __( '%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg', 'google-analytics-for-wordpress' ),
3243
 
3244
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:137
3245
  __( '%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page.', 'google-analytics-for-wordpress' ),
3246
 
3247
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:138
3248
  __( '%1$sStep 2%2$s - Search for “Popular Posts”.', 'google-analytics-for-wordpress' ),
3249
 
3250
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:139
3251
  __( '%1$sStep 3%2$s - Style the widget using the Block Settings sidebar.', 'google-analytics-for-wordpress' ),
3252
 
3253
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:142
@@ -3262,10 +3252,10 @@ $generated_i18n_strings = array(
3262
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:146
3263
  __( 'Display using a Shortcode', 'google-analytics-for-wordpress' ),
3264
 
3265
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:147
3266
  __( 'Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin.', 'google-analytics-for-wordpress' ),
3267
 
3268
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:148
3269
  __( 'Copy Shortcode', 'google-analytics-for-wordpress' ),
3270
 
3271
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:149
@@ -3319,130 +3309,130 @@ $generated_i18n_strings = array(
3319
  // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputMedia-Lite.vue:23
3320
  __( 'Track how your users interact with videos on your website. Upgrade to MonsterInsights Pro.', 'google-analytics-for-wordpress' ),
3321
 
3322
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:250
3323
  __( 'Improve Your Conversion Rate With Insights Into Which Content Works Best.', 'google-analytics-for-wordpress' ),
3324
 
3325
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:253
3326
  __( 'Top Affilliate Links', 'google-analytics-for-wordpress' ),
3327
 
3328
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:257
3329
  __( 'Scroll Depth', 'google-analytics-for-wordpress' ),
3330
 
3331
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:262
3332
  __( 'Increase Sales and Make More Money With Enhanced eCommerce Insights.', 'google-analytics-for-wordpress' ),
3333
 
3334
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:264
3335
  __( '10+ eCommerce Integrations', 'google-analytics-for-wordpress' ),
3336
 
3337
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:265
3338
  __( 'Average Order Value', 'google-analytics-for-wordpress' ),
3339
 
3340
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:266
3341
  __( 'Total Revenue', 'google-analytics-for-wordpress' ),
3342
 
3343
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:270
3344
  __( 'Number of Transactions', 'google-analytics-for-wordpress' ),
3345
 
3346
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:276
3347
  __( 'Increase Engagement and Unlock New Insights About Your Site.', 'google-analytics-for-wordpress' ),
3348
 
3349
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:279
3350
  __( 'User ID Tracking', 'google-analytics-for-wordpress' ),
3351
 
3352
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:280
3353
  __( 'Post Types', 'google-analytics-for-wordpress' ),
3354
 
3355
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:281
3356
  __( 'Tag Tracking', 'google-analytics-for-wordpress' ),
3357
 
3358
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:282
3359
  __( 'Categories', 'google-analytics-for-wordpress' ),
3360
 
3361
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:283
3362
  __( 'SEO Scores', 'google-analytics-for-wordpress' ),
3363
 
3364
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:284
3365
  __( 'Publish Times', 'google-analytics-for-wordpress' ),
3366
 
3367
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:285
3368
  __( 'Focus Keywords', 'google-analytics-for-wordpress' ),
3369
 
3370
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:290
3371
  __( 'Track Every Type of Web Form and Gain Visibility Into Your Customer Journey.', 'google-analytics-for-wordpress' ),
3372
 
3373
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:293
3374
  __( 'Conversion Counts', 'google-analytics-for-wordpress' ),
3375
 
3376
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:294
3377
  __( 'Impression Counts', 'google-analytics-for-wordpress' ),
3378
 
3379
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:295
3380
  __( 'Conversion Rates', 'google-analytics-for-wordpress' ),
3381
 
3382
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:300
3383
  __( 'See Exactly How Visitors Find Your Website From Google.', 'google-analytics-for-wordpress' ),
3384
 
3385
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:303
3386
  __( 'Top Google Search Terms', 'google-analytics-for-wordpress' ),
3387
 
3388
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:304
3389
  __( 'Number of Clicks', 'google-analytics-for-wordpress' ),
3390
 
3391
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:305
3392
  __( 'Click-through Ratio', 'google-analytics-for-wordpress' ),
3393
 
3394
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:306
3395
  __( 'Average Results Position', 'google-analytics-for-wordpress' ),
3396
 
3397
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:310
3398
  __( 'Realtime Report', 'google-analytics-for-wordpress' ),
3399
 
3400
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:311
3401
  __( 'See Who And What is Happening on Your Website in Realtime.', 'google-analytics-for-wordpress' ),
3402
 
3403
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:313
3404
  __( 'Top Page Views', 'google-analytics-for-wordpress' ),
3405
 
3406
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:314
3407
  __( 'Current Active Users', 'google-analytics-for-wordpress' ),
3408
 
3409
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:315
3410
  __( 'Top Referral Sources', 'google-analytics-for-wordpress' ),
3411
 
3412
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:317
3413
  __( 'Top Countries', 'google-analytics-for-wordpress' ),
3414
 
3415
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:318
3416
  __( 'Top Cities', 'google-analytics-for-wordpress' ),
3417
 
3418
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:323
3419
  __( 'Improve Your User Experience and Improve Search Engine Rankings.', 'google-analytics-for-wordpress' ),
3420
 
3421
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:325
3422
  __( 'Overall Site Speed Score', 'google-analytics-for-wordpress' ),
3423
 
3424
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:326
3425
  __( 'Server Response Times', 'google-analytics-for-wordpress' ),
3426
 
3427
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:327
3428
  __( 'Mobile and Desktop Scores', 'google-analytics-for-wordpress' ),
3429
 
3430
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:328
3431
  __( 'First Contentful Paint', 'google-analytics-for-wordpress' ),
3432
 
3433
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:329
3434
  __( 'Automatic Recommendations', 'google-analytics-for-wordpress' ),
3435
 
3436
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:330
3437
  __( 'Total Blocking Time', 'google-analytics-for-wordpress' ),
3438
 
3439
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:331
3440
  __( 'On-Demand Audits', 'google-analytics-for-wordpress' ),
3441
 
3442
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:332
3443
  __( 'Time to Interactive', 'google-analytics-for-wordpress' ),
3444
 
3445
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:318
3446
  __( '2021 Year in Review', 'google-analytics-for-wordpress' ),
3447
 
3448
  // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:53
@@ -3473,37 +3463,37 @@ $generated_i18n_strings = array(
3473
  // Reference: src/modules/reports/components/upsells/ReportUpsellOverlay.vue:54
3474
  __( '%1$sPlus%2$s, upgrading to Pro will unlock %1$sall%2$s advanced reports, tracking, and integrations. %3$sLearn more about Pro%4$s', 'google-analytics-for-wordpress' ),
3475
 
3476
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:315
3477
  __( 'Your 2021 Year in Review is still calculating. Please check back later to see how your website performed last year.', 'google-analytics-for-wordpress' ),
3478
 
3479
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:317
3480
  __( 'Your 2021 Analytics Report', 'google-analytics-for-wordpress' ),
3481
 
3482
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:319
3483
  __( 'See how your website performed this year and find tips along the way to help grow even more in 2022!', 'google-analytics-for-wordpress' ),
3484
 
3485
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:329
3486
  __( 'January 1, 2021 - December 31, 2021', 'google-analytics-for-wordpress' ),
3487
 
3488
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:330
3489
  __( 'A Tip for 2022', 'google-analytics-for-wordpress' ),
3490
 
3491
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:346
3492
  __( 'A Tip For 2022', 'google-analytics-for-wordpress' ),
3493
 
3494
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:363
3495
  __( 'Here\'s to an amazing 2022!', 'google-analytics-for-wordpress' ),
3496
 
3497
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:370
3498
  __( 'Try our other popular WordPress plugins to grow your website in 2022.', 'google-analytics-for-wordpress' ),
3499
 
3500
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:372
3501
  __( 'Become a WordPress expert in 2022. Join our amazing communities and take your website to the next level.', 'google-analytics-for-wordpress' ),
3502
 
3503
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:381
3504
  __( 'Copyright MonsterInsights, 2022', 'google-analytics-for-wordpress' ),
3505
 
3506
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:509
3507
  /* Translators: Number of minutes spent on site. */
3508
  __( 'Each visitor spent an average of %s minutes on your website in 2021.', 'google-analytics-for-wordpress' ),
3509
 
@@ -3534,7 +3524,6 @@ $generated_i18n_strings = array(
3534
  // Reference: src/modules/growth-tools/monsterinsights-growth-tools.vue:146
3535
  __( 'The world’s most popular WordPress form builder, trusted by over 5 million websites. Easily build contact forms, payment forms, and more.', 'google-analytics-for-wordpress' ),
3536
 
3537
- // Reference: src/modules/growth-tools/monsterinsights-growth-tools.vue:157
3538
  // Reference: src/modules/wizard-onboarding/components/OnboardingAddon-Lite.vue:42
3539
  __( 'OptinMonster', 'google-analytics-for-wordpress' ),
3540
 
@@ -3647,7 +3636,6 @@ $generated_i18n_strings = array(
3647
  __( 'Works automatically with WooCommerce, MemberPress, and EasyDigitalDownloads.', 'google-analytics-for-wordpress' ),
3648
 
3649
  // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputMedia-Lite.vue:22
3650
- // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:197
3651
  __( 'Media Tracking', 'google-analytics-for-wordpress' ),
3652
 
3653
  // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:34
@@ -3861,12 +3849,10 @@ $generated_i18n_strings = array(
3861
  __( 'Oops! Something went wrong and we weren\'t able to connect to MonsterInsights. Please enter your Google UA code manually.', 'google-analytics-for-wordpress' ),
3862
 
3863
  // Reference: src/modules/popular-posts/api/index.js:44
3864
- // Reference: src/modules/settings/api/index.js:81
3865
- /* Translators: Error status and error text, Support link tag starts with url and support link tag ends. */
3866
  __( 'Can\'t save settings. Error: %1$s, %2$s. Please %3$scontact our support%4$s team for assistance.', 'google-analytics-for-wordpress' ),
3867
 
3868
  // Reference: src/modules/popular-posts/api/index.js:49
3869
- // Reference: src/modules/settings/api/index.js:86
3870
  /* Translators: Support link tag starts with url and support link tag ends. */
3871
  __( '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.', 'google-analytics-for-wordpress' ),
3872
 
@@ -4047,8 +4033,7 @@ $generated_i18n_strings = array(
4047
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:154
4048
  __( 'Your Measurement ID should look like G-XXXXXXXXXX or GT-XXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-for-wordpress' ),
4049
 
4050
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportMedia-Lite.vue:47
4051
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:336
4052
  __( 'Media Report', 'google-analytics-for-wordpress' ),
4053
 
4054
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:337
@@ -4086,6 +4071,69 @@ $generated_i18n_strings = array(
4086
  __( 'Hide Details', 'google-analytics-for-wordpress' ),
4087
 
4088
  // Reference: src/modules/reports/components/monsterinsights-ReportsDatePicker.vue:120
4089
- __( 'Show Details', 'google-analytics-for-wordpress' )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4090
  );
4091
  /* THIS IS THE END OF THE GENERATED FILE */
7
  // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:130
8
  __( '2', 'google-analytics-for-wordpress' ),
9
 
 
 
10
  // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:225
11
  // Reference: src/plugins/monsterinsights-wizard-helper-plugin.js:17
12
  __( 'Error', 'google-analytics-for-wordpress' ),
14
  // Reference: src/plugins/monsterinsights-wizard-helper-plugin.js:18
15
  __( 'Please try again.', 'google-analytics-for-wordpress' ),
16
 
17
+ // Reference: src/plugins/monsterinsights-widget-helper-plugin.js:42
18
  __( 'Today', 'google-analytics-for-wordpress' ),
19
 
20
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:99
21
  __( 'Yesterday', 'google-analytics-for-wordpress' ),
22
 
23
+ // Reference: src/plugins/monsterinsights-widget-helper-plugin.js:54
24
  __( 'Last Week', 'google-analytics-for-wordpress' ),
25
 
26
+ // Reference: src/plugins/monsterinsights-widget-helper-plugin.js:60
27
  __( 'Last Month', 'google-analytics-for-wordpress' ),
28
 
29
+ // Reference: src/plugins/monsterinsights-widget-helper-plugin.js:66
30
  __( 'Last 7 days', 'google-analytics-for-wordpress' ),
31
 
32
+ // Reference: src/plugins/monsterinsights-widget-helper-plugin.js:72
33
  __( 'Last 30 days', 'google-analytics-for-wordpress' ),
34
 
35
  // Reference: src/plugins/monsterinsights-wizard-helper-plugin.js:46
48
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:181
49
  __( 'Unlock the Publishers Report and Focus on the Content that Matters', 'google-analytics-for-wordpress' ),
50
 
51
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:183
52
  __( 'Stop guessing about what content your visitors are interested in. MonsterInsights Publisher Report shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions.', 'google-analytics-for-wordpress' ),
53
 
54
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:185
243
  // Reference: src/modules/frontend/monsterinsights-frontend.vue:38
244
  __( 'Insights', 'google-analytics-for-wordpress' ),
245
 
246
+ // Reference: src/modules/reports/routes/index.js:25
247
  __( 'Overview Report', 'google-analytics-for-wordpress' ),
248
 
249
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:133
250
  __( 'Welcome to MonsterInsights', 'google-analytics-for-wordpress' ),
251
 
252
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:134
270
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:140
271
  __( 'See All Features', 'google-analytics-for-wordpress' ),
272
 
 
273
  // Reference: src/modules/reports/components/monsterinsights-ReportsPdfExport-Lite.vue:50
274
  __( 'Upgrade to PRO', 'google-analytics-for-wordpress' ),
275
 
277
  __( 'per year', 'google-analytics-for-wordpress' ),
278
 
279
  // Reference: src/modules/addons/components/AddonButton.vue:30
 
280
  __( 'Upgrade Now', 'google-analytics-for-wordpress' ),
281
 
282
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:144
330
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:189
331
  __( 'Ecommerce Report', 'google-analytics-for-wordpress' ),
332
 
333
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:190
334
  __( 'Form Conversions', 'google-analytics-for-wordpress' ),
335
 
336
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:153
337
  __( 'Custom Dimensions', 'google-analytics-for-wordpress' ),
338
 
339
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:192
340
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:223
341
  __( 'Author Tracking', 'google-analytics-for-wordpress' ),
342
 
343
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabConversions-Lite.vue:33
344
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:193
345
  __( 'Google Optimize', 'google-analytics-for-wordpress' ),
346
 
347
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:194
351
  __( 'WooCommerce', 'google-analytics-for-wordpress' ),
352
 
353
  // Reference: src/modules/growth-tools/monsterinsights-growth-tools.vue:265
354
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:196
355
  __( 'Easy Digital Downloads', 'google-analytics-for-wordpress' ),
356
 
357
  // Reference: src/modules/growth-tools/monsterinsights-growth-tools.vue:276
358
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:197
359
  __( 'MemberPress', 'google-analytics-for-wordpress' ),
360
 
361
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:198
395
  // Reference: src/modules/reports/components/ReportReAuth.vue:20
396
  __( 'There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating.', 'google-analytics-for-wordpress' ),
397
 
398
+ // Reference: src/modules/reports/components/ReportReAuth.vue:21
399
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:80
400
  __( 'Reconnect MonsterInsights', 'google-analytics-for-wordpress' ),
401
 
402
+ // Reference: src/modules/reports/components/ReportReAuth.vue:30
403
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:178
404
  __( 'Re-Authenticating', 'google-analytics-for-wordpress' ),
405
 
 
 
 
406
  // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:232
407
  __( 'Ok', 'google-analytics-for-wordpress' ),
408
 
425
  /* Translators: Placeholder is replaced with WPForms. */
426
  __( 'Recommended Plugin: %s', 'google-analytics-for-wordpress' ),
427
 
428
+ // Reference: src/modules/addons/store/actions.js:49
 
429
  __( 'Install', 'google-analytics-for-wordpress' ),
430
 
431
+ // Reference: src/modules/addons/store/actions.js:49
 
432
  __( 'Activate', 'google-analytics-for-wordpress' ),
433
 
434
+ // Reference: src/modules/growth-tools/monsterinsights-growth-tools.vue:257
435
  // Reference: src/modules/widget/components/WidgetFooter.vue:22
436
  __( 'Learn More', 'google-analytics-for-wordpress' ),
437
 
494
  // Reference: src/modules/settings/routes/site.js:112
495
  __( 'PrettyLinks Integration', 'google-analytics-for-wordpress' ),
496
 
497
+ // Reference: src/modules/about/components/AboutNavigation-Lite.vue:17
498
  // Reference: src/modules/settings/routes/site.js:134
499
  __( 'About Us', 'google-analytics-for-wordpress' ),
500
 
501
+ // Reference: src/modules/about/components/AboutNavigation-Lite.vue:18
502
  // Reference: src/modules/settings/routes/site.js:142
503
  __( 'Getting Started', 'google-analytics-for-wordpress' ),
504
 
505
+ // Reference: src/modules/about/components/AboutNavigation-Lite.vue:19
506
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:52
507
  // Reference: src/modules/settings/routes/site.js:151
508
  __( 'Lite vs Pro', 'google-analytics-for-wordpress' ),
509
 
558
  // Reference: src/modules/reports/components/ReportNoAuth.vue:26
559
  __( 'MonsterInsights makes it "effortless" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard.', 'google-analytics-for-wordpress' ),
560
 
561
+ // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:66
562
  __( 'Launch Setup Wizard', 'google-analytics-for-wordpress' ),
563
 
564
  // Reference: src/modules/reports/components/ReportNoAuth.vue:30
565
  __( 'Please ask your webmaster to connect MonsterInsights to Google Analytics.', 'google-analytics-for-wordpress' ),
566
 
567
+ // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:47
568
  // Reference: src/modules/widget/store/index.js:77
569
  __( 'Overview', 'google-analytics-for-wordpress' ),
570
 
596
  // Reference: src/modules/reports/api/index.js:29
597
  __( 'Error loading report data', 'google-analytics-for-wordpress' ),
598
 
599
+ // Reference: src/modules/reports/routes/index.js:33
600
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:194
601
  __( 'Publishers Report', 'google-analytics-for-wordpress' ),
602
 
603
+ // Reference: src/modules/reports/routes/index.js:41
604
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:206
605
  __( 'eCommerce Report', 'google-analytics-for-wordpress' ),
606
 
607
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportSearchConsole-Lite.vue:26
608
  __( 'Search Console Report', 'google-analytics-for-wordpress' ),
609
 
610
+ // Reference: src/modules/reports/routes/index.js:57
611
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:220
612
  __( 'Dimensions Report', 'google-analytics-for-wordpress' ),
613
 
614
+ // Reference: src/modules/reports/routes/index.js:65
615
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:234
616
  __( 'Forms Report', 'google-analytics-for-wordpress' ),
617
 
618
+ // Reference: src/modules/reports/routes/index.js:73
619
  __( 'Real-Time Report', 'google-analytics-for-wordpress' ),
620
 
621
+ // Reference: src/modules/reports/routes/index.js:81
622
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:267
623
  __( 'Site Speed Report', 'google-analytics-for-wordpress' ),
624
 
625
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:216
626
  __( 'Time to Purchase', 'google-analytics-for-wordpress' ),
627
 
628
  // Reference: src/modules/widget/store/index.js:104
629
  __( 'This list shows how many days from first visit it took users to purchase products from your site.', 'google-analytics-for-wordpress' ),
630
 
631
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:212
632
  __( 'Sessions to Purchase', 'google-analytics-for-wordpress' ),
633
 
634
  // Reference: src/modules/widget/store/index.js:112
646
  // Reference: src/modules/widget/store/index.js:128
647
  __( 'This list shows the percentage of carts that never went through the checkout process.', 'google-analytics-for-wordpress' ),
648
 
649
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:279
650
  __( 'Top Posts/Pages', 'google-analytics-for-wordpress' ),
651
 
652
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:291
653
  __( 'This list shows the most viewed posts and pages on your website.', 'google-analytics-for-wordpress' ),
654
 
655
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:273
656
  __( 'New vs. Returning Visitors', 'google-analytics-for-wordpress' ),
657
 
658
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:287
659
  __( 'This graph shows what percent of your user sessions come from new versus repeat visitors.', 'google-analytics-for-wordpress' ),
660
 
661
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:274
662
  __( 'Device Breakdown', 'google-analytics-for-wordpress' ),
663
 
664
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:288
665
  __( '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-for-wordpress' ),
666
 
667
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:197
668
  __( 'Top Landing Pages', 'google-analytics-for-wordpress' ),
669
 
670
  // Reference: src/modules/widget/store/index.js:42
671
  __( 'This list shows the top pages users first land on when visiting your website.', 'google-analytics-for-wordpress' ),
672
 
673
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:199
674
  __( 'Top Exit Pages', 'google-analytics-for-wordpress' ),
675
 
676
  // Reference: src/modules/widget/store/index.js:49
677
  __( 'This list shows the top pages users exit your website from.', 'google-analytics-for-wordpress' ),
678
 
679
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:201
680
  __( 'Top Outbound Links', 'google-analytics-for-wordpress' ),
681
 
682
  // Reference: src/modules/widget/store/index.js:57
688
  // Reference: src/modules/widget/store/index.js:64
689
  __( 'This list shows the top affiliate links your visitors clicked on.', 'google-analytics-for-wordpress' ),
690
 
691
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:200
692
  __( 'Top Download Links', 'google-analytics-for-wordpress' ),
693
 
694
  // Reference: src/modules/widget/store/index.js:71
695
  __( 'This list shows the download links your visitors clicked the most.', 'google-analytics-for-wordpress' ),
696
 
697
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:214
698
  __( 'Top Products', 'google-analytics-for-wordpress' ),
699
 
700
  // Reference: src/modules/widget/store/index.js:84
701
  __( 'This list shows the top selling products on your website.', 'google-analytics-for-wordpress' ),
702
 
703
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:213
704
  __( 'Top Conversion Sources', 'google-analytics-for-wordpress' ),
705
 
706
  // Reference: src/modules/widget/store/index.js:91
839
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:107
840
  __( 'Overview Reports for the last 30 days.', 'google-analytics-for-wordpress' ),
841
 
842
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:108
843
  __( 'Advanced Reports', 'google-analytics-for-wordpress' ),
844
 
845
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:109
863
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:121
864
  __( 'Headline Analyzer', 'google-analytics-for-wordpress' ),
865
 
866
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:128
867
  __( 'Email Summaries', 'google-analytics-for-wordpress' ),
868
 
869
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:130
897
  __( '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-for-wordpress' ),
898
 
899
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:156
 
900
  __( 'Not Available', 'google-analytics-for-wordpress' ),
901
 
902
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:157
956
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:84
957
  __( 'Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors', 'google-analytics-for-wordpress' ),
958
 
959
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:87
960
  __( 'eCommerce Tracking', 'google-analytics-for-wordpress' ),
961
 
962
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:91
971
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:99
972
  __( 'One-click Form Events Tracking', 'google-analytics-for-wordpress' ),
973
 
974
+ // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:54
975
  __( 'License Key', 'google-analytics-for-wordpress' ),
976
 
977
  // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:56
978
  /* Translators: Add link to retrieve license key from account. */
979
  __( 'Add your MonsterInsights license key from the email receipt or account area. %1$sRetrieve your license key%2$s.', 'google-analytics-for-wordpress' ),
980
 
981
+ // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:57
982
  __( 'Google Authentication', 'google-analytics-for-wordpress' ),
983
 
984
+ // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:58
985
  __( 'Connect Google Analytics + WordPress', 'google-analytics-for-wordpress' ),
986
 
987
+ // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:59
988
  __( 'You will be taken to the MonsterInsights website where you\'ll need to connect your Analytics account.', 'google-analytics-for-wordpress' ),
989
 
990
+ // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:60
991
  __( 'Miscellaneous', 'google-analytics-for-wordpress' ),
992
 
993
+ // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:62
994
  __( 'Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes.', 'google-analytics-for-wordpress' ),
995
 
996
+ // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:63
997
  __( 'Hide Announcements', 'google-analytics-for-wordpress' ),
998
 
999
+ // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:64
1000
  __( 'Setup Wizard', 'google-analytics-for-wordpress' ),
1001
 
1002
+ // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:65
1003
  __( 'Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks).', 'google-analytics-for-wordpress' ),
1004
 
1005
  // Reference: src/modules/about/components/monsterinsights-AboutTabAboutUs.vue:31
1252
  __( 'Continue & Install WPForms', 'google-analytics-for-wordpress' ),
1253
 
1254
  // Reference: src/modules/addons/components/AddonButton.vue:42
 
1255
  __( 'Installing...', 'google-analytics-for-wordpress' ),
1256
 
1257
  // Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:42
1260
  // Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:42
1261
  __( 'Show in full-width mode', 'google-analytics-for-wordpress' ),
1262
 
 
1263
  // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:143
1264
  __( 'Upgrade to MonsterInsights Pro', 'google-analytics-for-wordpress' ),
1265
 
1288
  // Reference: src/modules/reports/store/actions.js:220
1289
  __( 'View Addons', 'google-analytics-for-wordpress' ),
1290
 
1291
+ // Reference: src/modules/seo/components/aioseo.vue:256
1292
  __( 'Dismiss', 'google-analytics-for-wordpress' ),
1293
 
1294
  // Reference: src/modules/reports/store/actions.js:228
1332
  // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:32
1333
  __( 'Your Website', 'google-analytics-for-wordpress' ),
1334
 
1335
+ // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:33
1336
  // Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:80
1337
  __( 'Sessions', 'google-analytics-for-wordpress' ),
1338
 
1339
+ // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:34
1340
  // Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:83
1341
  __( 'Pageviews', 'google-analytics-for-wordpress' ),
1342
 
1343
  // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:35
1344
  __( 'Avg. Duration', 'google-analytics-for-wordpress' ),
1345
 
1346
+ // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:36
1347
  // Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:92
1348
  __( 'Bounce Rate', 'google-analytics-for-wordpress' ),
1349
 
1350
+ // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:37
1351
  // Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:93
1352
  __( 'Total Users', 'google-analytics-for-wordpress' ),
1353
 
1515
  /* Translators: Line break. */
1516
  __( 'Unique %s Sessions', 'google-analytics-for-wordpress' ),
1517
 
 
1518
  // Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:85
1519
  /* Translators: Line break. */
1520
  __( 'Unique %s Pageviews', 'google-analytics-for-wordpress' ),
1537
  // Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:91
1538
  __( 'Avg. Session Duration', 'google-analytics-for-wordpress' ),
1539
 
1540
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:320
1541
  __( 'Still Calculating...', 'google-analytics-for-wordpress' ),
1542
 
1543
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:260
1544
  __( 'Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year.', 'google-analytics-for-wordpress' ),
1545
 
1546
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:321
1547
  __( 'Back to Overview Report', 'google-analytics-for-wordpress' ),
1548
 
1549
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:262
1552
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:264
1553
  __( 'See how your website performed this year and find tips along the way to help grow even more in 2021!', 'google-analytics-for-wordpress' ),
1554
 
1555
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:322
1556
  __( 'Audience', 'google-analytics-for-wordpress' ),
1557
 
1558
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:323
1559
  __( 'Congrats', 'google-analytics-for-wordpress' ),
1560
 
1561
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:324
1562
  __( 'Your website was quite popular this year! ', 'google-analytics-for-wordpress' ),
1563
 
1564
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:325
1565
  __( 'You had ', 'google-analytics-for-wordpress' ),
1566
 
1567
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:326
1568
  __( ' visitors!', 'google-analytics-for-wordpress' ),
1569
 
1570
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:327
1571
  __( ' visitors', 'google-analytics-for-wordpress' ),
1572
 
1573
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:328
1574
  __( 'Total Visitors', 'google-analytics-for-wordpress' ),
1575
 
1576
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:329
1577
  __( 'Total Sessions', 'google-analytics-for-wordpress' ),
1578
 
1579
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:330
1580
  __( 'Visitors by Month', 'google-analytics-for-wordpress' ),
1581
 
1582
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:274
1585
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:275
1586
  __( 'A Tip for 2021', 'google-analytics-for-wordpress' ),
1587
 
1588
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:76
1589
  __( 'Demographics', 'google-analytics-for-wordpress' ),
1590
 
1591
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:332
1609
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:338
1610
  __( 'Male', 'google-analytics-for-wordpress' ),
1611
 
1612
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:340
1613
  __( 'Average Age', 'google-analytics-for-wordpress' ),
1614
 
1615
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:120
 
1616
  __( 'Behavior', 'google-analytics-for-wordpress' ),
1617
 
1618
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:342
1619
  __( 'Your Top 5 Pages', 'google-analytics-for-wordpress' ),
1620
 
1621
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:344
1622
  __( 'Time Spent on Site', 'google-analytics-for-wordpress' ),
1623
 
1624
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:345
1625
  __( 'minutes', 'google-analytics-for-wordpress' ),
1626
 
1627
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:346
1628
  __( 'Device Type', 'google-analytics-for-wordpress' ),
1629
 
1630
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:291
1631
  __( 'A Tip For 2021', 'google-analytics-for-wordpress' ),
1632
 
1633
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:53
1634
  __( 'Take advantage of what you’ve already built. See how to get more traffic from existing content in our 32 Marketing Hacks to Grow Your Traffic.', 'google-analytics-for-wordpress' ),
1635
 
1636
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:348
1672
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:308
1673
  __( 'Here\'s to an amazing 2021!', 'google-analytics-for-wordpress' ),
1674
 
1675
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:363
1676
  __( 'Enjoying MonsterInsights', 'google-analytics-for-wordpress' ),
1677
 
1678
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:364
1679
  __( 'Leave a five star review!', 'google-analytics-for-wordpress' ),
1680
 
1681
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:365
1682
  __( 'Syed Balkhi', 'google-analytics-for-wordpress' ),
1683
 
1684
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:366
1685
  __( 'Chris Christoff', 'google-analytics-for-wordpress' ),
1686
 
1687
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:367
1688
  __( 'Write Review', 'google-analytics-for-wordpress' ),
1689
 
1690
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:368
1691
  __( 'Did you know over 10 million websites use our plugins?', 'google-analytics-for-wordpress' ),
1692
 
1693
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:315
1694
  __( 'Try our other popular WordPress plugins to grow your website in 2021.', 'google-analytics-for-wordpress' ),
1695
 
1696
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:369
1697
  __( 'Join our Communities!', 'google-analytics-for-wordpress' ),
1698
 
1699
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:317
1700
  __( 'Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level.', 'google-analytics-for-wordpress' ),
1701
 
1702
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:370
1703
  __( 'Facebook Group', 'google-analytics-for-wordpress' ),
1704
 
1705
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:371
1706
  __( 'Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group.', 'google-analytics-for-wordpress' ),
1707
 
1708
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:372
1709
  __( 'Join Now...It’s Free!', 'google-analytics-for-wordpress' ),
1710
 
1711
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:373
1712
  __( 'WordPress Tutorials by WPBeginner', 'google-analytics-for-wordpress' ),
1713
 
1714
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:374
1715
  __( 'WPBeginner is the largest free WordPress resource site for beginners and non-techy users.', 'google-analytics-for-wordpress' ),
1716
 
1717
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:375
1718
  __( 'Visit WPBeginner', 'google-analytics-for-wordpress' ),
1719
 
1720
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:376
1721
  __( 'Follow Us!', 'google-analytics-for-wordpress' ),
1722
 
1723
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:377
1724
  __( 'Follow MonsterInsights 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-for-wordpress' ),
1725
 
1726
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:326
1727
  __( 'Copyright MonsterInsights, 2021', 'google-analytics-for-wordpress' ),
1728
 
1729
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:378
1730
  __( 'Upgrade to MonsterInsights Pro to Unlock Additional Actionable Insights', 'google-analytics-for-wordpress' ),
1731
 
1732
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:382
1733
  __( 'January', 'google-analytics-for-wordpress' ),
1734
 
1735
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:383
1736
  __( 'February', 'google-analytics-for-wordpress' ),
1737
 
1738
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:384
1739
  __( 'March', 'google-analytics-for-wordpress' ),
1740
 
1741
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:385
1742
  __( 'April', 'google-analytics-for-wordpress' ),
1743
 
1744
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:386
1745
  __( 'May', 'google-analytics-for-wordpress' ),
1746
 
1747
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:387
1748
  __( 'June', 'google-analytics-for-wordpress' ),
1749
 
1750
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:388
1751
  __( 'July', 'google-analytics-for-wordpress' ),
1752
 
1753
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:389
1754
  __( 'August', 'google-analytics-for-wordpress' ),
1755
 
1756
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:390
1757
  __( 'September', 'google-analytics-for-wordpress' ),
1758
 
1759
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:391
1760
  __( 'October', 'google-analytics-for-wordpress' ),
1761
 
1762
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:392
1763
  __( 'November', 'google-analytics-for-wordpress' ),
1764
 
1765
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:393
1766
  __( 'December', 'google-analytics-for-wordpress' ),
1767
 
1768
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:441
1769
  /* Translators: Number of visitors. */
1770
  __( 'Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>', 'google-analytics-for-wordpress' ),
1771
 
1772
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:444
1773
  __( 'See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success.', 'google-analytics-for-wordpress' ),
1774
 
1775
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:463
1776
  /* Translators: Number of visitors. */
1777
  __( 'Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries.', 'google-analytics-for-wordpress' ),
1778
 
1779
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:470
1780
  /* Translators: Number of visitors. */
1781
  __( '%s Visitors', 'google-analytics-for-wordpress' ),
1782
 
1783
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:488
1784
  /* Translators: Percent and Number of visitors. */
1785
  __( '%1$s&#37 of your visitors were %2$s', 'google-analytics-for-wordpress' ),
1786
 
1787
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:495
1788
  /* Translators: Number of visitors and their age. */
1789
  __( '%1$s&#37 of your visitors were between the ages of %2$s', 'google-analytics-for-wordpress' ),
1790
 
1791
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:504
1792
  __( '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-for-wordpress' ),
1793
 
1794
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:459
1795
  /* Translators: Number of minutes spent on site. */
1796
  __( 'Each visitor spent an average of %s minutes on your website in 2020.', 'google-analytics-for-wordpress' ),
1797
 
1798
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:550
1799
  /* Translators: Name of device type. */
1800
  __( 'Most of your visitors viewed your website from their <strong>%s</strong> device.', 'google-analytics-for-wordpress' ),
1801
 
1802
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:554
1803
  /* Translators: Number of visitors and device percentage. */
1804
  __( '%1$s&#37 of your visitors were on a %2$s device.', 'google-analytics-for-wordpress' ),
1805
 
1806
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:579
1807
  __( 'Desktop', 'google-analytics-for-wordpress' ),
1808
 
1809
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:580
1810
  __( 'Tablet', 'google-analytics-for-wordpress' ),
1811
 
1812
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:581
1813
  __( 'Mobile', 'google-analytics-for-wordpress' ),
1814
 
1815
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:52
1837
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:60
1838
  __( 'There is no need to refresh the browser (doing so won\'t have any effect).', 'google-analytics-for-wordpress' ),
1839
 
1840
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:261
1841
  __( 'Pageviews Per Minute', 'google-analytics-for-wordpress' ),
1842
 
1843
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:64
1904
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:28
1905
  __( 'Dashboard widget', 'google-analytics-for-wordpress' ),
1906
 
1907
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:67
1908
  __( 'Affiliate Links', 'google-analytics-for-wordpress' ),
1909
 
1910
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:31
1920
  __( 'SEO Score Tracking', 'google-analytics-for-wordpress' ),
1921
 
1922
  // Reference: src/modules/addons/components/AddonButton.vue:34
 
1923
  __( 'Activating...', 'google-analytics-for-wordpress' ),
1924
 
1925
  // Reference: src/modules/addons/components/AddonButton.vue:38
2135
  /* Translators: Error status and error text. */
2136
  __( 'Can\'t install WPForms. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2137
 
2138
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:55
2139
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:102
2140
  /* Translators: Example path (/go/). */
2141
  __( 'Path (example: %s)', 'google-analytics-for-wordpress' ),
2142
 
2143
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:57
2144
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:104
2145
  __( 'Path has to start with a / and have no spaces', 'google-analytics-for-wordpress' ),
2146
 
2147
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:62
2148
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:109
2149
  /* Translators: Example label (aff). */
2150
  __( 'Label (example: %s)', 'google-analytics-for-wordpress' ),
2151
 
2152
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:64
2153
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:111
2154
  __( 'Label can\'t contain any spaces', 'google-analytics-for-wordpress' ),
2155
 
2172
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:141
2173
  __( 'Or manually enter UA code (limited functionality)', 'google-analytics-for-wordpress' ),
2174
 
 
2175
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:88
2176
  __( 'Dual Tracking Profile', 'google-analytics-for-wordpress' ),
2177
 
 
2178
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:90
2179
  __( '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-for-wordpress' ),
2180
 
2181
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:94
2182
  __( 'Your Universal Analytics code should look like UA-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-for-wordpress' ),
2183
 
 
2184
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:96
2185
  __( '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-for-wordpress' ),
2186
 
2187
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:120
2188
  __( 'Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-for-wordpress' ),
2189
 
 
2190
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:101
2191
  __( 'Measurement Protocol API Secret', 'google-analytics-for-wordpress' ),
2192
 
 
2193
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:103
2194
  __( '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-for-wordpress' ),
2195
 
2199
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:169
2200
  __( 'Disconnect MonsterInsights', 'google-analytics-for-wordpress' ),
2201
 
 
2202
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:149
2203
  __( 'Authenticating', 'google-analytics-for-wordpress' ),
2204
 
2214
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:330
2215
  __( 'You\'ve disconnected your site from MonsterInsights. Your site is no longer being tracked by Google Analytics and you won\'t see reports anymore.', 'google-analytics-for-wordpress' ),
2216
 
 
2217
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:79
2218
  __( 'Connect MonsterInsights', 'google-analytics-for-wordpress' ),
2219
 
2226
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:134
2227
  __( 'Active Profile', 'google-analytics-for-wordpress' ),
2228
 
 
2229
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:83
2230
  __( 'Your website profile has been set at the network level of your WordPress Multisite.', 'google-analytics-for-wordpress' ),
2231
 
 
2232
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:84
2233
  __( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-for-wordpress' ),
2234
 
2235
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:86
2236
  __( 'Manually enter your UA code', 'google-analytics-for-wordpress' ),
2237
 
2238
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:87
2239
  __( 'Warning: If you use a manual UA code, you won\'t be able to use any of the reporting and some of the tracking features. Your UA code should look like UA-XXXXXX-XX where the X\'s are numbers.', 'google-analytics-for-wordpress' ),
2240
 
 
2241
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:86
2242
  __( 'Manually enter your GA4 Measurement ID', 'google-analytics-for-wordpress' ),
2243
 
2383
  // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:41
2384
  __( 'You can re-enable the MonsterInsights widget at any time using the "Screen Options" menu on the top right of this page', 'google-analytics-for-wordpress' ),
2385
 
2386
+ // Reference: src/modules/popular-posts/components/PopularPostsUpgradeOverlay.vue:30
2387
  __( 'Upgrade', 'google-analytics-for-wordpress' ),
2388
 
 
2389
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:29
2390
  __( 'Usage Tracking', 'google-analytics-for-wordpress' ),
2391
 
2392
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:30
2393
  __( 'Allow Usage Tracking', 'google-analytics-for-wordpress' ),
2394
 
 
2395
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:31
2396
  __( '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.', 'google-analytics-for-wordpress' ),
2397
 
 
2398
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:33
2399
  /* Translators: Add links to documentation. */
2400
  __( 'Complete documentation on usage tracking is available %1$shere%2$s.', 'google-analytics-for-wordpress' ),
2440
  // Reference: src/modules/seo/components/yoast.vue:167
2441
  __( 'Automatically migrate all of your SEO settings with just 1 click!', 'google-analytics-for-wordpress' ),
2442
 
2443
+ // Reference: src/modules/seo/components/aioseo.vue:165
2444
  __( '1,938', 'google-analytics-for-wordpress' ),
2445
 
2446
+ // Reference: src/modules/seo/components/aioseo.vue:166
2447
  __( '2+ Million Active Installs', 'google-analytics-for-wordpress' ),
2448
 
2449
  // Reference: src/modules/seo/components/yoast.vue:172
2452
  // Reference: src/modules/seo/components/yoast.vue:173
2453
  __( 'Set up the proper SEO foundations in less than 10 minutes.', 'google-analytics-for-wordpress' ),
2454
 
2455
+ // Reference: src/modules/seo/components/aioseo.vue:175
2456
  __( 'SEO Audit Checklist', 'google-analytics-for-wordpress' ),
2457
 
2458
+ // Reference: src/modules/seo/components/aioseo.vue:176
2459
  __( 'Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic.', 'google-analytics-for-wordpress' ),
2460
 
2461
  // Reference: src/modules/seo/components/yoast.vue:176
2467
  // Reference: src/modules/seo/components/yoast.vue:178
2468
  __( 'Get AIOSEO for WordPress', 'google-analytics-for-wordpress' ),
2469
 
2470
+ // Reference: src/modules/seo/components/aioseo.vue:190
2471
  __( 'Get the #1 Most Powerful WordPress SEO Plugin Today', 'google-analytics-for-wordpress' ),
2472
 
2473
+ // Reference: src/modules/seo/components/aioseo.vue:191
2474
  __( 'Try it out today, for free.', 'google-analytics-for-wordpress' ),
2475
 
2476
+ // Reference: src/modules/seo/components/aioseo.vue:194
2477
  __( 'Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings.', 'google-analytics-for-wordpress' ),
2478
 
2479
+ // Reference: src/modules/seo/components/aioseo.vue:195
2480
  __( 'Activate and Install the Plugin with just one click!', 'google-analytics-for-wordpress' ),
2481
 
2482
  // Reference: src/modules/seo/components/yoast.vue:251
2483
  __( 'Installing AIOSEO...', 'google-analytics-for-wordpress' ),
2484
 
2485
+ // Reference: src/modules/seo/components/aioseo.vue:250
2486
  __( 'Congrats! All-in-One SEO Installed.', 'google-analytics-for-wordpress' ),
2487
 
2488
  // Reference: src/modules/seo/components/yoast.vue:277
2489
  __( 'Switch to AIOSEO', 'google-analytics-for-wordpress' ),
2490
 
2491
+ // Reference: src/modules/seo/components/aioseo.vue:271
2492
  __( 'Installation Failed. Please refresh and try again.', 'google-analytics-for-wordpress' ),
2493
 
2494
+ // Reference: src/modules/seo/components/aioseo.vue:278
2495
  __( 'Activating AIOSEO...', 'google-analytics-for-wordpress' ),
2496
 
2497
+ // Reference: src/modules/seo/components/aioseo.vue:285
2498
  __( 'Activate AIOSEO', 'google-analytics-for-wordpress' ),
2499
 
2500
+ // Reference: src/modules/seo/components/aioseo.vue:289
2501
  __( 'Activation Failed. Please refresh and try again.', 'google-analytics-for-wordpress' ),
2502
 
2503
  // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:177
2579
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:86
2580
  __( 'MonsterInsights 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-for-wordpress' ),
2581
 
2582
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:87
2583
  __( 'Enhanced Link Attribution', 'google-analytics-for-wordpress' ),
2584
 
2585
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:88
2642
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:85
2643
  __( 'Whoops, something went wrong and we weren\'t able to connect to MonsterInsights. Please enter your Google UA code manually.', 'google-analytics-for-wordpress' ),
2644
 
2645
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:88
2646
  __( 'Save and Continue', 'google-analytics-for-wordpress' ),
2647
 
2648
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:140
2778
  // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:95
2779
  __( 'Error emptying the popular posts cache. Please try again.', 'google-analytics-for-wordpress' ),
2780
 
2781
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:119
2782
  __( 'Choose Theme', 'google-analytics-for-wordpress' ),
2783
 
2784
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:121
2785
  __( 'Widget Styling', 'google-analytics-for-wordpress' ),
2786
 
2787
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:122
2788
  __( 'Choose how you want to determine the colors, font sizes and spacing of the widget.', 'google-analytics-for-wordpress' ),
2789
 
2790
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:123
2791
  __( 'Sort By', 'google-analytics-for-wordpress' ),
2792
 
2793
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:124
2794
  __( 'Choose how you\'d like the widget to determine your popular posts.', 'google-analytics-for-wordpress' ),
2795
 
2796
  // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:118
2802
  // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:120
2803
  __( 'Title your widget and set its display preferences.', 'google-analytics-for-wordpress' ),
2804
 
2805
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:129
2806
  __( 'Include in Post Types', 'google-analytics-for-wordpress' ),
2807
 
2808
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:130
2809
  __( 'Exclude from specific posts', 'google-analytics-for-wordpress' ),
2810
 
2811
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:132
2812
  /* Translators: Placeholders make the text bold. */
2813
  __( 'Choose which Post Types the widget %1$sWILL%2$s be placed.', 'google-analytics-for-wordpress' ),
2814
 
2815
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:134
2816
  /* Translators: Placeholders make the text bold. */
2817
  __( 'Choose from which Posts the widget %1$sWILL NOT%2$s be placed.', 'google-analytics-for-wordpress' ),
2818
 
2819
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:136
2820
  __( 'Loading Themes', 'google-analytics-for-wordpress' ),
2821
 
2822
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:143
2823
  /* Translators: placeholders make text small. */
2824
  __( 'Default Styles %1$s- As seen above.%2$s', 'google-analytics-for-wordpress' ),
2825
 
2826
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:148
2827
  /* Translators: placeholders make text small. */
2828
  __( 'No Styles %1$s- Use your own CSS.%2$s', 'google-analytics-for-wordpress' ),
2829
 
2830
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:155
2831
  /* Translators: placeholders make text small. */
2832
  __( 'Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s', 'google-analytics-for-wordpress' ),
2833
 
2834
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:160
2835
  /* Translators: placeholders make text small. */
2836
  __( 'SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s', 'google-analytics-for-wordpress' ),
2837
 
2838
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:165
2839
  /* Translators: placeholders make text small. */
2840
  __( 'Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s', 'google-analytics-for-wordpress' ),
2841
 
2852
  __( 'Choose where in the post body the widget will be placed.', 'google-analytics-for-wordpress' ),
2853
 
2854
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:135
 
2855
  __( 'Customize Design', 'google-analytics-for-wordpress' ),
2856
 
2857
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:137
3213
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:128
3214
  __( 'All Embed Options can be used in conjunction with one another.', 'google-analytics-for-wordpress' ),
3215
 
3216
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:83
3217
  __( 'Using the Gutenberg Block', 'google-analytics-for-wordpress' ),
3218
 
3219
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:130
3231
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:135
3232
  __( '%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg', 'google-analytics-for-wordpress' ),
3233
 
3234
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:89
3235
  __( '%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page.', 'google-analytics-for-wordpress' ),
3236
 
3237
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:138
3238
  __( '%1$sStep 2%2$s - Search for “Popular Posts”.', 'google-analytics-for-wordpress' ),
3239
 
3240
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:91
3241
  __( '%1$sStep 3%2$s - Style the widget using the Block Settings sidebar.', 'google-analytics-for-wordpress' ),
3242
 
3243
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:142
3252
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:146
3253
  __( 'Display using a Shortcode', 'google-analytics-for-wordpress' ),
3254
 
3255
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:94
3256
  __( 'Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin.', 'google-analytics-for-wordpress' ),
3257
 
3258
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:95
3259
  __( 'Copy Shortcode', 'google-analytics-for-wordpress' ),
3260
 
3261
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:149
3309
  // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputMedia-Lite.vue:23
3310
  __( 'Track how your users interact with videos on your website. Upgrade to MonsterInsights Pro.', 'google-analytics-for-wordpress' ),
3311
 
3312
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:195
3313
  __( 'Improve Your Conversion Rate With Insights Into Which Content Works Best.', 'google-analytics-for-wordpress' ),
3314
 
3315
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:198
3316
  __( 'Top Affilliate Links', 'google-analytics-for-wordpress' ),
3317
 
3318
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:202
3319
  __( 'Scroll Depth', 'google-analytics-for-wordpress' ),
3320
 
3321
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:207
3322
  __( 'Increase Sales and Make More Money With Enhanced eCommerce Insights.', 'google-analytics-for-wordpress' ),
3323
 
3324
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:209
3325
  __( '10+ eCommerce Integrations', 'google-analytics-for-wordpress' ),
3326
 
3327
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:210
3328
  __( 'Average Order Value', 'google-analytics-for-wordpress' ),
3329
 
3330
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:211
3331
  __( 'Total Revenue', 'google-analytics-for-wordpress' ),
3332
 
3333
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:215
3334
  __( 'Number of Transactions', 'google-analytics-for-wordpress' ),
3335
 
3336
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:221
3337
  __( 'Increase Engagement and Unlock New Insights About Your Site.', 'google-analytics-for-wordpress' ),
3338
 
3339
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:224
3340
  __( 'User ID Tracking', 'google-analytics-for-wordpress' ),
3341
 
3342
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:225
3343
  __( 'Post Types', 'google-analytics-for-wordpress' ),
3344
 
3345
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:226
3346
  __( 'Tag Tracking', 'google-analytics-for-wordpress' ),
3347
 
3348
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:227
3349
  __( 'Categories', 'google-analytics-for-wordpress' ),
3350
 
3351
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:228
3352
  __( 'SEO Scores', 'google-analytics-for-wordpress' ),
3353
 
3354
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:229
3355
  __( 'Publish Times', 'google-analytics-for-wordpress' ),
3356
 
3357
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:230
3358
  __( 'Focus Keywords', 'google-analytics-for-wordpress' ),
3359
 
3360
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:235
3361
  __( 'Track Every Type of Web Form and Gain Visibility Into Your Customer Journey.', 'google-analytics-for-wordpress' ),
3362
 
3363
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:238
3364
  __( 'Conversion Counts', 'google-analytics-for-wordpress' ),
3365
 
3366
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:239
3367
  __( 'Impression Counts', 'google-analytics-for-wordpress' ),
3368
 
3369
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:240
3370
  __( 'Conversion Rates', 'google-analytics-for-wordpress' ),
3371
 
3372
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:245
3373
  __( 'See Exactly How Visitors Find Your Website From Google.', 'google-analytics-for-wordpress' ),
3374
 
3375
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:248
3376
  __( 'Top Google Search Terms', 'google-analytics-for-wordpress' ),
3377
 
3378
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:249
3379
  __( 'Number of Clicks', 'google-analytics-for-wordpress' ),
3380
 
3381
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:250
3382
  __( 'Click-through Ratio', 'google-analytics-for-wordpress' ),
3383
 
3384
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:251
3385
  __( 'Average Results Position', 'google-analytics-for-wordpress' ),
3386
 
3387
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:255
3388
  __( 'Realtime Report', 'google-analytics-for-wordpress' ),
3389
 
3390
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:256
3391
  __( 'See Who And What is Happening on Your Website in Realtime.', 'google-analytics-for-wordpress' ),
3392
 
3393
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:258
3394
  __( 'Top Page Views', 'google-analytics-for-wordpress' ),
3395
 
3396
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:259
3397
  __( 'Current Active Users', 'google-analytics-for-wordpress' ),
3398
 
3399
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:260
3400
  __( 'Top Referral Sources', 'google-analytics-for-wordpress' ),
3401
 
3402
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:262
3403
  __( 'Top Countries', 'google-analytics-for-wordpress' ),
3404
 
3405
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:263
3406
  __( 'Top Cities', 'google-analytics-for-wordpress' ),
3407
 
3408
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:268
3409
  __( 'Improve Your User Experience and Improve Search Engine Rankings.', 'google-analytics-for-wordpress' ),
3410
 
3411
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:270
3412
  __( 'Overall Site Speed Score', 'google-analytics-for-wordpress' ),
3413
 
3414
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:271
3415
  __( 'Server Response Times', 'google-analytics-for-wordpress' ),
3416
 
3417
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:272
3418
  __( 'Mobile and Desktop Scores', 'google-analytics-for-wordpress' ),
3419
 
3420
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:273
3421
  __( 'First Contentful Paint', 'google-analytics-for-wordpress' ),
3422
 
3423
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:274
3424
  __( 'Automatic Recommendations', 'google-analytics-for-wordpress' ),
3425
 
3426
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:275
3427
  __( 'Total Blocking Time', 'google-analytics-for-wordpress' ),
3428
 
3429
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:276
3430
  __( 'On-Demand Audits', 'google-analytics-for-wordpress' ),
3431
 
3432
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:277
3433
  __( 'Time to Interactive', 'google-analytics-for-wordpress' ),
3434
 
3435
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:121
3436
  __( '2021 Year in Review', 'google-analytics-for-wordpress' ),
3437
 
3438
  // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:53
3463
  // Reference: src/modules/reports/components/upsells/ReportUpsellOverlay.vue:54
3464
  __( '%1$sPlus%2$s, upgrading to Pro will unlock %1$sall%2$s advanced reports, tracking, and integrations. %3$sLearn more about Pro%4$s', 'google-analytics-for-wordpress' ),
3465
 
3466
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:119
3467
  __( 'Your 2021 Year in Review is still calculating. Please check back later to see how your website performed last year.', 'google-analytics-for-wordpress' ),
3468
 
3469
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:120
3470
  __( 'Your 2021 Analytics Report', 'google-analytics-for-wordpress' ),
3471
 
3472
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:124
3473
  __( 'See how your website performed this year and find tips along the way to help grow even more in 2022!', 'google-analytics-for-wordpress' ),
3474
 
3475
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:122
3476
  __( 'January 1, 2021 - December 31, 2021', 'google-analytics-for-wordpress' ),
3477
 
3478
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:125
3479
  __( 'A Tip for 2022', 'google-analytics-for-wordpress' ),
3480
 
3481
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:126
3482
  __( 'A Tip For 2022', 'google-analytics-for-wordpress' ),
3483
 
3484
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:127
3485
  __( 'Here\'s to an amazing 2022!', 'google-analytics-for-wordpress' ),
3486
 
3487
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:128
3488
  __( 'Try our other popular WordPress plugins to grow your website in 2022.', 'google-analytics-for-wordpress' ),
3489
 
3490
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:129
3491
  __( 'Become a WordPress expert in 2022. Join our amazing communities and take your website to the next level.', 'google-analytics-for-wordpress' ),
3492
 
3493
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:130
3494
  __( 'Copyright MonsterInsights, 2022', 'google-analytics-for-wordpress' ),
3495
 
3496
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:528
3497
  /* Translators: Number of minutes spent on site. */
3498
  __( 'Each visitor spent an average of %s minutes on your website in 2021.', 'google-analytics-for-wordpress' ),
3499
 
3524
  // Reference: src/modules/growth-tools/monsterinsights-growth-tools.vue:146
3525
  __( 'The world’s most popular WordPress form builder, trusted by over 5 million websites. Easily build contact forms, payment forms, and more.', 'google-analytics-for-wordpress' ),
3526
 
 
3527
  // Reference: src/modules/wizard-onboarding/components/OnboardingAddon-Lite.vue:42
3528
  __( 'OptinMonster', 'google-analytics-for-wordpress' ),
3529
 
3636
  __( 'Works automatically with WooCommerce, MemberPress, and EasyDigitalDownloads.', 'google-analytics-for-wordpress' ),
3637
 
3638
  // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputMedia-Lite.vue:22
 
3639
  __( 'Media Tracking', 'google-analytics-for-wordpress' ),
3640
 
3641
  // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:34
3849
  __( 'Oops! Something went wrong and we weren\'t able to connect to MonsterInsights. Please enter your Google UA code manually.', 'google-analytics-for-wordpress' ),
3850
 
3851
  // Reference: src/modules/popular-posts/api/index.js:44
3852
+ /* Translators: Error status, error text, Support link tag starts with url and support link tag ends. */
 
3853
  __( 'Can\'t save settings. Error: %1$s, %2$s. Please %3$scontact our support%4$s team for assistance.', 'google-analytics-for-wordpress' ),
3854
 
3855
  // Reference: src/modules/popular-posts/api/index.js:49
 
3856
  /* Translators: Support link tag starts with url and support link tag ends. */
3857
  __( '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.', 'google-analytics-for-wordpress' ),
3858
 
4033
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:154
4034
  __( 'Your Measurement ID should look like G-XXXXXXXXXX or GT-XXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-for-wordpress' ),
4035
 
4036
+ // Reference: src/modules/reports/routes/index.js:89
 
4037
  __( 'Media Report', 'google-analytics-for-wordpress' ),
4038
 
4039
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:337
4071
  __( 'Hide Details', 'google-analytics-for-wordpress' ),
4072
 
4073
  // Reference: src/modules/reports/components/monsterinsights-ReportsDatePicker.vue:120
4074
+ __( 'Show Details', 'google-analytics-for-wordpress' ),
4075
+
4076
+ // Reference: src/modules/reports/routes/index.js:102
4077
+ __( 'Year in Review', 'google-analytics-for-wordpress' ),
4078
+
4079
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:414
4080
+ __( '%s Year in Review', 'google-analytics-for-wordpress' ),
4081
+
4082
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:412
4083
+ __( 'Your %s Year in Review is still calculating. Please check back later to see how your website performed last year.', 'google-analytics-for-wordpress' ),
4084
+
4085
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:413
4086
+ __( 'Your %s Analytics Report', 'google-analytics-for-wordpress' ),
4087
+
4088
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:415
4089
+ __( 'January 1, %s - December 31, %s', 'google-analytics-for-wordpress' ),
4090
+
4091
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:423
4092
+ __( 'Here\'s to an amazing %s!', 'google-analytics-for-wordpress' ),
4093
+
4094
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:417
4095
+ __( 'See how your website performed this year and find tips along the way to help grow even more in %s!', 'google-analytics-for-wordpress' ),
4096
+
4097
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:418
4098
+ __( 'A Tip for %s', 'google-analytics-for-wordpress' ),
4099
+
4100
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:419
4101
+ __( 'A Tip For %s', 'google-analytics-for-wordpress' ),
4102
+
4103
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:420
4104
+ __( 'Try our other popular WordPress plugins to grow your website in %s.', 'google-analytics-for-wordpress' ),
4105
+
4106
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:421
4107
+ __( 'Become a WordPress expert in %s. Join our amazing communities and take your website to the next level.', 'google-analytics-for-wordpress' ),
4108
+
4109
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:422
4110
+ __( 'Copyright MonsterInsights, %s', 'google-analytics-for-wordpress' ),
4111
+
4112
+ // Reference: src/modules/reports/components/monsterinsights-YearInReviewReportsPdfExport.vue:115
4113
+ __( 'Generating PDF Report', 'google-analytics-for-wordpress' ),
4114
+
4115
+ // Reference: src/modules/reports/components/monsterinsights-YearInReviewReportsPdfExport.vue:159
4116
+ __( 'Download Failed', 'google-analytics-for-wordpress' ),
4117
+
4118
+ // Reference: src/modules/reports/components/monsterinsights-YearInReviewReportsPdfExport.vue:181
4119
+ __( 'Downloaded PDF report successfully!', 'google-analytics-for-wordpress' ),
4120
+
4121
+ // Reference: src/modules/reports/components/monsterinsights-YearInReviewReportsPdfExport.vue:23
4122
+ __( 'Download as PDF', 'google-analytics-for-wordpress' ),
4123
+
4124
+ // Reference: src/modules/reports/components/monsterinsights-YearInReviewReportsPdfExport.vue:104
4125
+ __( 'Download Failed, no report found!', 'google-analytics-for-wordpress' ),
4126
+
4127
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:425
4128
+ __( 'Year In Review %s!', 'google-analytics-for-wordpress' ),
4129
+
4130
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:339
4131
+ __( 'Unknown', 'google-analytics-for-wordpress' ),
4132
+
4133
+ // Reference: src/modules/reports/components/reports-year-in-review/ReportYearInReviewListBox.vue:48
4134
+ __( 'No records found.', 'google-analytics-for-wordpress' ),
4135
+
4136
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:347
4137
+ __( 'Take advantage of what you’ve already built. See how to get more traffic from existing content in our 32 Marketing Hacks to Grow Your Traffic guide.', 'google-analytics-for-wordpress' )
4138
  );
4139
  /* THIS IS THE END OF THE GENERATED FILE */
lite/assets/vue/css/reports.css CHANGED
@@ -2,4 +2,4 @@
2
 
3
  /*!
4
  * Generated with CSS Flag Sprite generator (https://www.flag-sprites.com/)
5
- */.monsterinsights-flag{display:inline-block;width:32px;height:32px;background:url(../img/flags.png) no-repeat}.monsterinsights-flag.monsterinsights-flag-ad{background-position:-32px 0}.monsterinsights-flag.monsterinsights-flag-ae{background-position:-64px 0}.monsterinsights-flag.monsterinsights-flag-af{background-position:-96px 0}.monsterinsights-flag.monsterinsights-flag-ag{background-position:-128px 0}.monsterinsights-flag.monsterinsights-flag-ai{background-position:-160px 0}.monsterinsights-flag.monsterinsights-flag-al{background-position:-192px 0}.monsterinsights-flag.monsterinsights-flag-am{background-position:-224px 0}.monsterinsights-flag.monsterinsights-flag-an{background-position:-256px 0}.monsterinsights-flag.monsterinsights-flag-ao{background-position:-288px 0}.monsterinsights-flag.monsterinsights-flag-ar{background-position:-320px 0}.monsterinsights-flag.monsterinsights-flag-as{background-position:-352px 0}.monsterinsights-flag.monsterinsights-flag-at{background-position:-384px 0}.monsterinsights-flag.monsterinsights-flag-au{background-position:-416px 0}.monsterinsights-flag.monsterinsights-flag-aw{background-position:-448px 0}.monsterinsights-flag.monsterinsights-flag-ax{background-position:-480px 0}.monsterinsights-flag.monsterinsights-flag-az{background-position:0 -32px}.monsterinsights-flag.monsterinsights-flag-ba{background-position:-32px -32px}.monsterinsights-flag.monsterinsights-flag-bb{background-position:-64px -32px}.monsterinsights-flag.monsterinsights-flag-bd{background-position:-96px -32px}.monsterinsights-flag.monsterinsights-flag-be{background-position:-128px -32px}.monsterinsights-flag.monsterinsights-flag-bf{background-position:-160px -32px}.monsterinsights-flag.monsterinsights-flag-bg{background-position:-192px -32px}.monsterinsights-flag.monsterinsights-flag-bh{background-position:-224px -32px}.monsterinsights-flag.monsterinsights-flag-bi{background-position:-256px -32px}.monsterinsights-flag.monsterinsights-flag-bj{background-position:-288px -32px}.monsterinsights-flag.monsterinsights-flag-bl{background-position:-320px -32px}.monsterinsights-flag.monsterinsights-flag-bm{background-position:-352px -32px}.monsterinsights-flag.monsterinsights-flag-bn{background-position:-384px -32px}.monsterinsights-flag.monsterinsights-flag-bo{background-position:-416px -32px}.monsterinsights-flag.monsterinsights-flag-br{background-position:-448px -32px}.monsterinsights-flag.monsterinsights-flag-bs{background-position:-480px -32px}.monsterinsights-flag.monsterinsights-flag-bt{background-position:0 -64px}.monsterinsights-flag.monsterinsights-flag-bw{background-position:-32px -64px}.monsterinsights-flag.monsterinsights-flag-by{background-position:-64px -64px}.monsterinsights-flag.monsterinsights-flag-bz{background-position:-96px -64px}.monsterinsights-flag.monsterinsights-flag-ca{background-position:-128px -64px}.monsterinsights-flag.monsterinsights-flag-cd{background-position:-160px -64px}.monsterinsights-flag.monsterinsights-flag-cf{background-position:-192px -64px}.monsterinsights-flag.monsterinsights-flag-cg{background-position:-224px -64px}.monsterinsights-flag.monsterinsights-flag-ch{background-position:-256px -64px}.monsterinsights-flag.monsterinsights-flag-ci{background-position:-288px -64px}.monsterinsights-flag.monsterinsights-flag-ck{background-position:-320px -64px}.monsterinsights-flag.monsterinsights-flag-cl{background-position:-352px -64px}.monsterinsights-flag.monsterinsights-flag-cm{background-position:-384px -64px}.monsterinsights-flag.monsterinsights-flag-cn{background-position:-416px -64px}.monsterinsights-flag.monsterinsights-flag-co{background-position:-448px -64px}.monsterinsights-flag.monsterinsights-flag-cr{background-position:-480px -64px}.monsterinsights-flag.monsterinsights-flag-cu{background-position:0 -96px}.monsterinsights-flag.monsterinsights-flag-cv{background-position:-32px -96px}.monsterinsights-flag.monsterinsights-flag-cw{background-position:-64px -96px}.monsterinsights-flag.monsterinsights-flag-cy{background-position:-96px -96px}.monsterinsights-flag.monsterinsights-flag-cz{background-position:-128px -96px}.monsterinsights-flag.monsterinsights-flag-de{background-position:-160px -96px}.monsterinsights-flag.monsterinsights-flag-dj{background-position:-192px -96px}.monsterinsights-flag.monsterinsights-flag-dk{background-position:-224px -96px}.monsterinsights-flag.monsterinsights-flag-dm{background-position:-256px -96px}.monsterinsights-flag.monsterinsights-flag-do{background-position:-288px -96px}.monsterinsights-flag.monsterinsights-flag-dz{background-position:-320px -96px}.monsterinsights-flag.monsterinsights-flag-ec{background-position:-352px -96px}.monsterinsights-flag.monsterinsights-flag-ee{background-position:-384px -96px}.monsterinsights-flag.monsterinsights-flag-eg{background-position:-416px -96px}.monsterinsights-flag.monsterinsights-flag-eh{background-position:-448px -96px}.monsterinsights-flag.monsterinsights-flag-er{background-position:-480px -96px}.monsterinsights-flag.monsterinsights-flag-es{background-position:0 -128px}.monsterinsights-flag.monsterinsights-flag-et{background-position:-32px -128px}.monsterinsights-flag.monsterinsights-flag-eu{background-position:-64px -128px}.monsterinsights-flag.monsterinsights-flag-fi{background-position:-96px -128px}.monsterinsights-flag.monsterinsights-flag-fj{background-position:-128px -128px}.monsterinsights-flag.monsterinsights-flag-fk{background-position:-160px -128px}.monsterinsights-flag.monsterinsights-flag-fm{background-position:-192px -128px}.monsterinsights-flag.monsterinsights-flag-fo{background-position:-224px -128px}.monsterinsights-flag.monsterinsights-flag-fr{background-position:-256px -128px}.monsterinsights-flag.monsterinsights-flag-ga{background-position:-288px -128px}.monsterinsights-flag.monsterinsights-flag-gb{background-position:-320px -128px}.monsterinsights-flag.monsterinsights-flag-gd{background-position:-352px -128px}.monsterinsights-flag.monsterinsights-flag-ge{background-position:-384px -128px}.monsterinsights-flag.monsterinsights-flag-gg{background-position:-416px -128px}.monsterinsights-flag.monsterinsights-flag-gh{background-position:-448px -128px}.monsterinsights-flag.monsterinsights-flag-gi{background-position:-480px -128px}.monsterinsights-flag.monsterinsights-flag-gl{background-position:0 -160px}.monsterinsights-flag.monsterinsights-flag-gm{background-position:-32px -160px}.monsterinsights-flag.monsterinsights-flag-gn{background-position:-64px -160px}.monsterinsights-flag.monsterinsights-flag-gp{background-position:-96px -160px}.monsterinsights-flag.monsterinsights-flag-gq{background-position:-128px -160px}.monsterinsights-flag.monsterinsights-flag-gr{background-position:-160px -160px}.monsterinsights-flag.monsterinsights-flag-gs{background-position:-192px -160px}.monsterinsights-flag.monsterinsights-flag-gt{background-position:-224px -160px}.monsterinsights-flag.monsterinsights-flag-gu{background-position:-256px -160px}.monsterinsights-flag.monsterinsights-flag-gw{background-position:-288px -160px}.monsterinsights-flag.monsterinsights-flag-gy{background-position:-320px -160px}.monsterinsights-flag.monsterinsights-flag-hk{background-position:-352px -160px}.monsterinsights-flag.monsterinsights-flag-hn{background-position:-384px -160px}.monsterinsights-flag.monsterinsights-flag-hr{background-position:-416px -160px}.monsterinsights-flag.monsterinsights-flag-ht{background-position:-448px -160px}.monsterinsights-flag.monsterinsights-flag-hu{background-position:-480px -160px}.monsterinsights-flag.monsterinsights-flag-ic{background-position:0 -192px}.monsterinsights-flag.monsterinsights-flag-id{background-position:-32px -192px}.monsterinsights-flag.monsterinsights-flag-ie{background-position:-64px -192px}.monsterinsights-flag.monsterinsights-flag-il{background-position:-96px -192px}.monsterinsights-flag.monsterinsights-flag-im{background-position:-128px -192px}.monsterinsights-flag.monsterinsights-flag-in{background-position:-160px -192px}.monsterinsights-flag.monsterinsights-flag-iq{background-position:-192px -192px}.monsterinsights-flag.monsterinsights-flag-ir{background-position:-224px -192px}.monsterinsights-flag.monsterinsights-flag-is{background-position:-256px -192px}.monsterinsights-flag.monsterinsights-flag-it{background-position:-288px -192px}.monsterinsights-flag.monsterinsights-flag-je{background-position:-320px -192px}.monsterinsights-flag.monsterinsights-flag-jm{background-position:-352px -192px}.monsterinsights-flag.monsterinsights-flag-jo{background-position:-384px -192px}.monsterinsights-flag.monsterinsights-flag-jp{background-position:-416px -192px}.monsterinsights-flag.monsterinsights-flag-ke{background-position:-448px -192px}.monsterinsights-flag.monsterinsights-flag-kg{background-position:-480px -192px}.monsterinsights-flag.monsterinsights-flag-kh{background-position:0 -224px}.monsterinsights-flag.monsterinsights-flag-ki{background-position:-32px -224px}.monsterinsights-flag.monsterinsights-flag-km{background-position:-64px -224px}.monsterinsights-flag.monsterinsights-flag-kn{background-position:-96px -224px}.monsterinsights-flag.monsterinsights-flag-kp{background-position:-128px -224px}.monsterinsights-flag.monsterinsights-flag-kr{background-position:-160px -224px}.monsterinsights-flag.monsterinsights-flag-kw{background-position:-192px -224px}.monsterinsights-flag.monsterinsights-flag-ky{background-position:-224px -224px}.monsterinsights-flag.monsterinsights-flag-kz{background-position:-256px -224px}.monsterinsights-flag.monsterinsights-flag-la{background-position:-288px -224px}.monsterinsights-flag.monsterinsights-flag-lb{background-position:-320px -224px}.monsterinsights-flag.monsterinsights-flag-lc{background-position:-352px -224px}.monsterinsights-flag.monsterinsights-flag-li{background-position:-384px -224px}.monsterinsights-flag.monsterinsights-flag-lk{background-position:-416px -224px}.monsterinsights-flag.monsterinsights-flag-lr{background-position:-448px -224px}.monsterinsights-flag.monsterinsights-flag-ls{background-position:-480px -224px}.monsterinsights-flag.monsterinsights-flag-lt{background-position:0 -256px}.monsterinsights-flag.monsterinsights-flag-lu{background-position:-32px -256px}.monsterinsights-flag.monsterinsights-flag-lv{background-position:-64px -256px}.monsterinsights-flag.monsterinsights-flag-ly{background-position:-96px -256px}.monsterinsights-flag.monsterinsights-flag-ma{background-position:-128px -256px}.monsterinsights-flag.monsterinsights-flag-mc{background-position:-160px -256px}.monsterinsights-flag.monsterinsights-flag-md{background-position:-192px -256px}.monsterinsights-flag.monsterinsights-flag-me{background-position:-224px -256px}.monsterinsights-flag.monsterinsights-flag-mf{background-position:-256px -256px}.monsterinsights-flag.monsterinsights-flag-mg{background-position:-288px -256px}.monsterinsights-flag.monsterinsights-flag-mh{background-position:-320px -256px}.monsterinsights-flag.monsterinsights-flag-mk{background-position:-352px -256px}.monsterinsights-flag.monsterinsights-flag-ml{background-position:-384px -256px}.monsterinsights-flag.monsterinsights-flag-mm{background-position:-416px -256px}.monsterinsights-flag.monsterinsights-flag-mn{background-position:-448px -256px}.monsterinsights-flag.monsterinsights-flag-mo{background-position:-480px -256px}.monsterinsights-flag.monsterinsights-flag-mp{background-position:0 -288px}.monsterinsights-flag.monsterinsights-flag-mq{background-position:-32px -288px}.monsterinsights-flag.monsterinsights-flag-mr{background-position:-64px -288px}.monsterinsights-flag.monsterinsights-flag-ms{background-position:-96px -288px}.monsterinsights-flag.monsterinsights-flag-mt{background-position:-128px -288px}.monsterinsights-flag.monsterinsights-flag-mu{background-position:-160px -288px}.monsterinsights-flag.monsterinsights-flag-mv{background-position:-192px -288px}.monsterinsights-flag.monsterinsights-flag-mw{background-position:-224px -288px}.monsterinsights-flag.monsterinsights-flag-mx{background-position:-256px -288px}.monsterinsights-flag.monsterinsights-flag-my{background-position:-288px -288px}.monsterinsights-flag.monsterinsights-flag-mz{background-position:-320px -288px}.monsterinsights-flag.monsterinsights-flag-na{background-position:-352px -288px}.monsterinsights-flag.monsterinsights-flag-nc{background-position:-384px -288px}.monsterinsights-flag.monsterinsights-flag-ne{background-position:-416px -288px}.monsterinsights-flag.monsterinsights-flag-nf{background-position:-448px -288px}.monsterinsights-flag.monsterinsights-flag-ng{background-position:-480px -288px}.monsterinsights-flag.monsterinsights-flag-ni{background-position:0 -320px}.monsterinsights-flag.monsterinsights-flag-nl{background-position:-32px -320px}.monsterinsights-flag.monsterinsights-flag-no{background-position:-64px -320px}.monsterinsights-flag.monsterinsights-flag-np{background-position:-96px -320px}.monsterinsights-flag.monsterinsights-flag-nr{background-position:-128px -320px}.monsterinsights-flag.monsterinsights-flag-nu{background-position:-160px -320px}.monsterinsights-flag.monsterinsights-flag-nz{background-position:-192px -320px}.monsterinsights-flag.monsterinsights-flag-om{background-position:-224px -320px}.monsterinsights-flag.monsterinsights-flag-pa{background-position:-256px -320px}.monsterinsights-flag.monsterinsights-flag-pe{background-position:-288px -320px}.monsterinsights-flag.monsterinsights-flag-pf{background-position:-320px -320px}.monsterinsights-flag.monsterinsights-flag-pg{background-position:-352px -320px}.monsterinsights-flag.monsterinsights-flag-ph{background-position:-384px -320px}.monsterinsights-flag.monsterinsights-flag-pk{background-position:-416px -320px}.monsterinsights-flag.monsterinsights-flag-pl{background-position:-448px -320px}.monsterinsights-flag.monsterinsights-flag-pn{background-position:-480px -320px}.monsterinsights-flag.monsterinsights-flag-pr{background-position:0 -352px}.monsterinsights-flag.monsterinsights-flag-ps{background-position:-32px -352px}.monsterinsights-flag.monsterinsights-flag-pt{background-position:-64px -352px}.monsterinsights-flag.monsterinsights-flag-pw{background-position:-96px -352px}.monsterinsights-flag.monsterinsights-flag-py{background-position:-128px -352px}.monsterinsights-flag.monsterinsights-flag-qa{background-position:-160px -352px}.monsterinsights-flag.monsterinsights-flag-re{background-position:-192px -352px}.monsterinsights-flag.monsterinsights-flag-ro{background-position:-224px -352px}.monsterinsights-flag.monsterinsights-flag-rs{background-position:-256px -352px}.monsterinsights-flag.monsterinsights-flag-ru{background-position:-288px -352px}.monsterinsights-flag.monsterinsights-flag-rw{background-position:-320px -352px}.monsterinsights-flag.monsterinsights-flag-sa{background-position:-352px -352px}.monsterinsights-flag.monsterinsights-flag-sb{background-position:-384px -352px}.monsterinsights-flag.monsterinsights-flag-sc{background-position:-416px -352px}.monsterinsights-flag.monsterinsights-flag-sd{background-position:-448px -352px}.monsterinsights-flag.monsterinsights-flag-se{background-position:-480px -352px}.monsterinsights-flag.monsterinsights-flag-sg{background-position:0 -384px}.monsterinsights-flag.monsterinsights-flag-sh{background-position:-32px -384px}.monsterinsights-flag.monsterinsights-flag-si{background-position:-64px -384px}.monsterinsights-flag.monsterinsights-flag-sk{background-position:-96px -384px}.monsterinsights-flag.monsterinsights-flag-sl{background-position:-128px -384px}.monsterinsights-flag.monsterinsights-flag-sm{background-position:-160px -384px}.monsterinsights-flag.monsterinsights-flag-sn{background-position:-192px -384px}.monsterinsights-flag.monsterinsights-flag-so{background-position:-224px -384px}.monsterinsights-flag.monsterinsights-flag-sr{background-position:-256px -384px}.monsterinsights-flag.monsterinsights-flag-ss{background-position:-288px -384px}.monsterinsights-flag.monsterinsights-flag-st{background-position:-320px -384px}.monsterinsights-flag.monsterinsights-flag-sv{background-position:-352px -384px}.monsterinsights-flag.monsterinsights-flag-sy{background-position:-384px -384px}.monsterinsights-flag.monsterinsights-flag-sz{background-position:-416px -384px}.monsterinsights-flag.monsterinsights-flag-tc{background-position:-448px -384px}.monsterinsights-flag.monsterinsights-flag-td{background-position:-480px -384px}.monsterinsights-flag.monsterinsights-flag-tf{background-position:0 -416px}.monsterinsights-flag.monsterinsights-flag-tg{background-position:-32px -416px}.monsterinsights-flag.monsterinsights-flag-th{background-position:-64px -416px}.monsterinsights-flag.monsterinsights-flag-tj{background-position:-96px -416px}.monsterinsights-flag.monsterinsights-flag-tk{background-position:-128px -416px}.monsterinsights-flag.monsterinsights-flag-tl{background-position:-160px -416px}.monsterinsights-flag.monsterinsights-flag-tm{background-position:-192px -416px}.monsterinsights-flag.monsterinsights-flag-tn{background-position:-224px -416px}.monsterinsights-flag.monsterinsights-flag-to{background-position:-256px -416px}.monsterinsights-flag.monsterinsights-flag-tr{background-position:-288px -416px}.monsterinsights-flag.monsterinsights-flag-tt{background-position:-320px -416px}.monsterinsights-flag.monsterinsights-flag-tv{background-position:-352px -416px}.monsterinsights-flag.monsterinsights-flag-tw{background-position:-384px -416px}.monsterinsights-flag.monsterinsights-flag-tz{background-position:-416px -416px}.monsterinsights-flag.monsterinsights-flag-ua{background-position:-448px -416px}.monsterinsights-flag.monsterinsights-flag-ug{background-position:-480px -416px}.monsterinsights-flag.monsterinsights-flag-us{background-position:0 -448px}.monsterinsights-flag.monsterinsights-flag-uy{background-position:-32px -448px}.monsterinsights-flag.monsterinsights-flag-uz{background-position:-64px -448px}.monsterinsights-flag.monsterinsights-flag-va{background-position:-96px -448px}.monsterinsights-flag.monsterinsights-flag-vc{background-position:-128px -448px}.monsterinsights-flag.monsterinsights-flag-ve{background-position:-160px -448px}.monsterinsights-flag.monsterinsights-flag-vg{background-position:-192px -448px}.monsterinsights-flag.monsterinsights-flag-vi{background-position:-224px -448px}.monsterinsights-flag.monsterinsights-flag-vn{background-position:-256px -448px}.monsterinsights-flag.monsterinsights-flag-vu{background-position:-288px -448px}.monsterinsights-flag.monsterinsights-flag-wf{background-position:-320px -448px}.monsterinsights-flag.monsterinsights-flag-ws{background-position:-352px -448px}.monsterinsights-flag.monsterinsights-flag-ye{background-position:-384px -448px}.monsterinsights-flag.monsterinsights-flag-yt{background-position:-416px -448px}.monsterinsights-flag.monsterinsights-flag-za{background-position:-448px -448px}.monsterinsights-flag.monsterinsights-flag-zm{background-position:-480px -448px}.monsterinsights-flag.monsterinsights-flag-zw{background-position:0 -480px}.monsterinsights-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}.monsterinsights-report-year-in-review.monsterinsights-yir-report-calculating-row{width:610px;margin-top:50px}@media (max-width:767px){.monsterinsights-report-year-in-review.monsterinsights-yir-report-calculating-row{width:100%;margin-top:20px}}.monsterinsights-report-year-in-review a,.monsterinsights-report-year-in-review h1,.monsterinsights-report-year-in-review h2,.monsterinsights-report-year-in-review h3,.monsterinsights-report-year-in-review h4,.monsterinsights-report-year-in-review h5,.monsterinsights-report-year-in-review p,.monsterinsights-report-year-in-review span{font-family:Lato,sans-serif;margin:0}.monsterinsights-report-year-in-review h1,.monsterinsights-report-year-in-review h2,.monsterinsights-report-year-in-review h3,.monsterinsights-report-year-in-review h4,.monsterinsights-report-year-in-review h5{font-weight:900}.monsterinsights-report-year-in-review p{font-style:normal;font-weight:400;font-size:14px;line-height:24px}.monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-yir-separator{border-left-color:#e0e0e0;border-right-color:#e0e0e0;border-top:1px solid #e0e0e0;border-bottom:1px solid #e0e0e0}.monsterinsights-report-year-in-review .monsterinsights-yir-footer,.monsterinsights-report-year-in-review .monsterinsights-yir-header,.monsterinsights-report-year-in-review section{padding:0 90px;clear:both;overflow:hidden}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-footer,.monsterinsights-report-year-in-review .monsterinsights-yir-header,.monsterinsights-report-year-in-review section{padding:0 15px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-footer,.monsterinsights-report-year-in-review .monsterinsights-yir-header,.monsterinsights-report-year-in-review section{padding:0 30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-text-right{text-align:right}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header{padding:90px 0 90px 90px;background-image:url(../img/charlie.png);background-repeat:no-repeat;background-position:100% 100%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header{padding:50px 15px 40px;background-image:none}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header{padding-left:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating{padding:90px 0 100px 60px;background-image:url(../img/charlie2x.png);background-position:right top 60px;background-size:173px 207px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating{padding-left:15px;padding-right:15px;padding-top:50px;background-size:140px 180px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-yir-title{font-size:32px;line-height:37px;color:#393f4c;margin-top:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-yir-title{font-size:26px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-yir-summary{font-weight:400;font-size:14px;line-height:20px;color:#393f4c;max-width:385px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-yir-summary{font-size:12px;max-width:230px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link{width:inherit}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link{width:inherit}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link:active,.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-subtitle{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-subtitle svg{position:absolute;left:5px;bottom:-5px}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-title{font-size:20px;line-height:20px;margin-bottom:10px;margin-top:30px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-title{font-size:32px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-summary{font-weight:500;font-size:24px;line-height:32px;color:#828282;max-width:480px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-summary{font-size:16px;line-height:18px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-summary{font-size:16px;line-height:20px;max-width:400px}}.monsterinsights-report-year-in-review .monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-header{margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-header div{width:100%}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-report-title{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-report-subtitle{font-size:10px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-chart-content{padding:0 50px 15px 30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-chart-content{padding:0 15px 15px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-chart-content .monsterinsights-reports-bar-chart-holder{position:relative}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-chart-content .monsterinsights-reports-bar-chart-holder .monsterinsights-chart-tooltip{position:absolute;pointer-events:none}.monsterinsights-report-year-in-review .monsterinsights-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)}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box.monsterinsights-year-in-review-table-box-blur-report .monsterinsights-year-in-review-table-box-list{-webkit-filter:blur(5px);filter:blur(5px)}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header{padding:20px 30px;border-bottom:2px solid #f2f2f2;margin-bottom:30px}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-title{display:inline-block}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-title .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-title .monsterinsights-report-title{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-subtitle{display:inline-block;float:right}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-subtitle .monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list{padding-bottom:30px}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item{padding:9px 30px}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a{padding:0;border-radius:0;line-height:37px;line-height:inherit}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a:active,.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a:focus,.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a:hover{-webkit-box-shadow:none;box-shadow:none;background:none}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer{position:absolute;bottom:-34px;width:100%;left:0;text-align:center}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer{bottom:-40px}}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer .monsterinsights-yir-tooltip{font-weight:400;font-size:12px;color:#828282}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer .monsterinsights-yir-tooltip span{font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer .monsterinsights-yir-tooltip .monsterinsights-yir-icon{background:#dadada;border-radius:50%;padding:0;margin-right:10px;color:#fff;width:15px;height:15px;display:inline-block;line-height:16px}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart{border:0;margin:0;padding:0;width:100%}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-reports-pie-chart-holder{display:inline-block;float:left}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-reports-pie-chart-holder{display:block;float:none}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-reports-pie-chart-holder .monsterinsights-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%}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content{padding-left:50px;padding-top:35px;float:left}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content{padding-left:0;padding-top:20px;float:none}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-report-title{font-size:16px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-report-subtitle{font-size:14px;line-height:14px}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend{margin:10px 0 0}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li{display:inline-block;margin-right:30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li{margin-right:10px}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-color{border-radius:0;width:16px;height:16px;margin-bottom:-3px;margin-right:5px}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-text,.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-text,.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-value{font-size:10px}}.monsterinsights-report-year-in-review .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip{padding-top:15px;padding-bottom:15px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip a,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip h3,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip p{font-family:Lato,sans-serif;margin:0}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-icon{float:left;width:144px;text-align:center}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-icon{width:90px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-icon img{background:#338eef;padding:12px;border-radius:50%;margin-top:12px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content{float:left;width:calc(100% - 144px);padding-right:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content{padding-right:0;width:calc(100% - 90px)}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-title{font-weight:900;font-size:18px;line-height:27px;color:#333;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-title{font-size:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-summary{font-weight:400;font-size:18px;line-height:27px;color:#393f4c;margin-bottom:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-summary{font-size:12px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper{margin-top:15px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link:hover{color:#2469b2;-webkit-box-shadow:none;box-shadow:none}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay{position:absolute;top:0;left:0;width:calc(100% - 25px);height:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content{margin-top:66px;text-align:center;height:calc(100% - 66px);padding-top:80px;padding-right:25px;padding-left:25px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-details{font-size:14px;line-height:20px;font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success{background:#1ec185}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success:hover{opacity:.8;background:#10ad73}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay:hover{border:0;background:#2469b2;outline:none}.monsterinsights-report-year-in-review .monsterinsights-yir-audience{padding-bottom:85px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience{padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:685px;margin-bottom:80px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-summary{font-size:18px;line-height:20px;margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors{width:100%;margin-bottom:70px;padding-left:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors{margin-bottom:20px;padding-left:0;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions img,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors img{margin-bottom:15px;max-height:28px}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions h4,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors h4{font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions h4,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors h4{font-size:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions .monsterinsights-yir-number,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors .monsterinsights-yir-number{font-weight:900;font-size:60px;line-height:72px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions .monsterinsights-yir-number,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors .monsterinsights-yir-number{font-size:40px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-visitor-by-chart{margin-bottom:60px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-visitor-by-chart{margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics{padding-top:30px;padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:656px;margin-bottom:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-summary{font-size:18px;line-height:20px;margin-bottom:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries{display:block}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country{width:50%;margin-top:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-flag{display:block}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-flag{margin:0 auto}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-flag.monsterinsights-flag-zz{display:none}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-name{font-size:32px;line-height:38px;color:#393f4c;margin-top:0;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-name{font-size:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-visitors{font-weight:400;font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-visitors{font-size:16px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-countries-graph{width:50%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-countries-graph{width:100%}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-know-visitors{font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-know-visitors{font-size:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info{margin-top:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info{width:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info span,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info span,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info span{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info h2,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info h2,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info h2{font-size:30px;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info p,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info p,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info p{font-size:10px;line-height:10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior{padding-top:85px;padding-bottom:85px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior{padding-top:30px;padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:585px;margin-bottom:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data{display:block;margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary{width:50%;margin-top:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary img{width:32px;height:32px;margin-left:-3px;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary img{margin-left:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-time-spent{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent{font-size:32px;line-height:38px;color:#393f4c;margin-top:15px;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent{margin-top:5px;margin-bottom:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent .monsterinsights-yir-number{font-weight:900;font-size:48px;line-height:58px;color:#338eef;margin-right:10px;overflow-wrap:break-word}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent .monsterinsights-yir-number{font-size:30px;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent .monsterinsights-yir-type{font-weight:900;font-size:16px;line-height:103.8%;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-each-visitor-spent{font-size:14px;max-width:100%;margin-top:5px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-top-pages-graph{width:50%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-top-pages-graph{width:100%}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-most-visitors-device{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-most-visitors-device{font-size:20px;line-height:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info{margin-top:20px;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info{width:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info span,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info h2,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info p,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-grow-traffic-tip{margin-top:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-grow-traffic-tip{margin-top:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from{margin-top:55px;margin-bottom:100px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from{margin-top:20px;margin-bottom:60px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-title{font-size:32px;line-height:44px;color:#393f4c;margin-bottom:30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-title{font-size:20px;line-height:20px;margin-bottom:15px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals{display:block}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{width:50%;position:relative}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{width:100%}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords{padding-right:25px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords{padding-right:0;margin-bottom:60px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{padding-left:25px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{padding-left:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce{padding-top:85px;padding-bottom:30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce{padding-top:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:15px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number{width:55%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number{width:30%}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-products-sold,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-revenue{padding:75px 0}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-title{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-title{font-size:14px;line-height:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-amount{font-size:54px;line-height:65px;color:#338eef;overflow-wrap:break-word}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-amount{font-size:24px;line-height:40px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products{width:45%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products{width:70%}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning img,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular img{margin-bottom:5px}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning span,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning span,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular span{font-size:14px;line-height:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-product-title,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-product-title{font-weight:700;font-size:28px;line-height:32px;color:#338eef;margin-top:10px;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-product-title,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-product-title{font-size:16px;line-height:16px;margin-bottom:10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-count,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-count{font-weight:400;font-size:16px;line-height:19px;color:#828282}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-count,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-count{font-size:12px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-revenue-by-month{margin-bottom:50px}.monsterinsights-report-year-in-review .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you{padding-top:0;padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-title{font-size:54px;line-height:65px;text-align:center;color:#393f4c;max-width:588px;margin:0 auto 10px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-title{font-size:30px;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-summary{font-size:14px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-amazing-year{font-size:24px;line-height:24px;margin-bottom:10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors{text-align:center;margin-bottom:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors{margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author{display:inline-block;padding:0 45px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author{padding:0 10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-thumbnail{width:96px;height:96px;background-repeat:no-repeat;margin:0 auto 10px}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-thumbnail.chris{background-image:url(../img/chris.png)}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-thumbnail.syed{background-image:url(../img/syed.png)}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-name{font-weight:900;font-size:18px;line-height:22px;text-align:center;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-name{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review{display:block}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button{width:100%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content{text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content span{font-weight:900;font-size:14px;color:#fff}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content span{font-size:12px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content h3{font-weight:900;font-size:20px;line-height:31px;color:#fff}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content h3{font-size:18px;line-height:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating .monsterinsights-yir-five-star{margin:0;padding:12px 0 0;text-align:center}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating .monsterinsights-yir-five-star li{list-style:none;display:inline-block;margin-right:7px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating .monsterinsights-yir-five-star li{margin-right:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button{text-align:center;padding-top:5px}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a{background:#2469b3;border-radius:5px;text-align:center;height:38px;display:inline-block}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a:active,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a:hover{background:#123c68}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-title{font-size:36px;line-height:44px;color:#393f4c;margin-bottom:20px;max-width:638px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-title{font-size:20px;line-height:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-summary{font-weight:500;font-size:20px;line-height:24px;color:#393f4c;max-width:450px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-summary{font-size:14px;line-height:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins{margin-top:20px;margin-left:-30px;margin-right:-30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins{margin-left:0;margin-right:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon{width:100%;margin:30px 0;min-height:300px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top{padding-top:30px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-image{width:104px;float:left;padding-left:25px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-image .monsterinsights-addon-thumb{width:32px;height:32px;border:2px solid #e3f1ff;border-radius:5px;padding:10px;-webkit-box-sizing:content-box;box-sizing:content-box}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-text{width:calc(100% - 104px);float:left;padding-right:25px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-text .monsterinsights-addon-title{font-size:18px;line-height:24px;margin-top:0;font-family:Lato;margin-bottom:5px;color:#393f4c;font-weight:900}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-text .monsterinsights-addon-excerpt{font-weight:400;font-size:14px;line-height:18px;color:#393f4c;font-family:Lato;margin:0}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message{border-top:2px solid #e3f1ff;clear:both;padding:13px 25px;position:absolute;bottom:0;left:0;width:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-addon-status{float:right;line-height:32px;font-weight:900;font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-addon-status span{color:#d4393d}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button{line-height:32px;background:#338eef;border-radius:3px;display:inline-block;padding:0 30px;border:0;font-weight:700;font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-addon-status span{color:#64bfa5}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button:hover{background:rgba(51,142,239,.5)}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities{background-color:#338eef;padding-top:160px;margin-top:-90px;color:#fff}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities{padding-top:100px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h2{font-size:36px;line-height:43px;color:#fff;margin-bottom:15px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h2{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h3{font-weight:500;font-size:20px;line-height:24px;color:#fff;max-width:575px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h3{font-size:18px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-30px;padding-top:60px;padding-bottom:90px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities{display:block;margin-left:0;padding-bottom:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community{width:100%;background-color:#2469b2;border-radius:5px;margin-left:30px;padding:24px;position:relative;min-height:340px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community{margin-left:0;margin-bottom:30px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community{min-height:350px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-title{font-weight:900;font-size:20px;line-height:24px;margin-bottom:10px;margin-top:5px}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link,.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links{position:absolute;bottom:15px;left:24px;width:80%;width:calc(100% - 48px)}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link{background-color:#123c68;display:block}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link{padding:8px 10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links{margin:0}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li{float:left;margin-right:8px;margin-bottom:0}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li a{background-color:#123c68;display:block;margin:0;width:40px;height:40px;padding:10px}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li a:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li a:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-footer{display:block;text-align:center;padding:15px 0;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-footer div{width:100%;font-weight:500;font-size:16px;color:#fff;text-align:center}.monsterinsights-report-site-speed .monsterinsights-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%}@media screen and (max-width:767px){.monsterinsights-report-site-speed .monsterinsights-report-top{display:-webkit-box;display:-ms-flexbox;display:flex}}.monsterinsights-report-site-speed .monsterinsights-report-top h2.monsterinsights-report-top-title{margin-top:10px}.monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-export-pdf-report{margin-right:16px}.monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-export-pdf-report button{background-color:#f5f5f5;color:#4c6577;border-color:#dcdcdc}.monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-run-audit-btn .monsterinsights-run-audit{background-color:#3990ec;height:39px}.monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-run-audit-btn .monsterinsights-run-audit:hover{background-color:rgba(57,144,236,.8)}.monsterinsights-report-site-speed .monsterinsights-choose-device-button{margin-left:15px}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button{display:inline-block;text-align:center;background-color:#f5f5f5;color:#444;border-color:#dcdcdc;border-radius:5px;outline:none}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button:hover{background-color:#3990ec;border-color:#1c77db;outline:none}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button:hover .svg-icons{fill:#fff}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.active{background-color:#3990ec;border-color:#1c77db;color:#fff;outline:none}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.active .svg-icons{fill:#fff}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.mobile{border-top-right-radius:0;border-bottom-right-radius:0;border-right:0;width:45px;height:40px}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.mobile svg{margin-left:-6px;margin-top:-1px}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.desktop{border-top-left-radius:0;border-bottom-left-radius:0;border-left:0;width:54px;height:40px}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.desktop svg{margin-left:-6px;margin-top:-1px}.monsterinsights-report-site-speed .monsterinsights-site-speed-container{max-width:1010px}.monsterinsights-report-site-speed .monsterinsights-site-speed-device,.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights-report-site-speed .monsterinsights-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){.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator{width:100%;margin-bottom:25px}}@media screen and (min-width:768px) and (max-width:1024px){.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator{width:100%;margin-bottom:25px}}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-indicator-device-icon{margin-bottom:40px;text-align:center}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-indicator-device-icon .desktop{width:80px}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-indicator-percent-text{font-size:5em;color:#f2994a;text-align:center;font-weight:700}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-indicator-overall-text{display:inline-block;padding-top:2rem;font-weight:600;font-size:16px;text-align:center}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-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}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-progress-circle__percent{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-progress-circle__container{display:inline-block;position:relative}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-progress-circle__path{-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out;overflow:visible}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats{width:662px}@media screen and (max-width:767px){.monsterinsights-report-site-speed .monsterinsights-site-speed-stats{width:100%}}@media screen and (min-width:768px) and (max-width:1024px){.monsterinsights-report-site-speed .monsterinsights-site-speed-stats{width:100%}}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-report-flex{text-align:center}@media screen and (max-width:767px){.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-report-flex.monsterinsights-report-2-columns{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-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){.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-site-speed-stat{width:100%;margin-top:15px;margin-right:0}}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-site-speed-stat h2{font-size:40px;margin:0;padding:20px 0 10px}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-site-speed-stat p{color:#828282}.monsterinsights-report-site-speed .monsterinsights-how-to-improve h2.title{font-size:22px;color:#393f4c}div.monsterinsights-pdf-score{position:relative;margin:80px;left:-1px;top:1px}.monsterinsights-reports-page .monsterinsights-header .monsterinsights-container,.monsterinsights-reports-page .monsterinsights-navigation-bar .monsterinsights-container{padding-left:10px;padding-right:10px;width:auto}@media (max-width:782px){.monsterinsights-reports-page .monsterinsights-header .monsterinsights-container,.monsterinsights-reports-page .monsterinsights-navigation-bar .monsterinsights-container{padding:0}}@media (max-width:782px){.monsterinsights-reports-page .monsterinsights-report-top{margin-bottom:25px}}.monsterinsights_page.monsterinsights-downloading-pdf-report #wpbody{-webkit-filter:blur(15px);filter:blur(15px)}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion-item-details,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-pdf-score{display:block!important}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion-item-title,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion .monsterinsights-accordion div:not(:last-child){border:none!important}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion-item-trigger-icon,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-notificationsv3-container,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-progress-circle{display:none}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page{width:1120px}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-tabs-navigation button:first-child{border-right:0}@media (max-width:782px){.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-tabs-navigation button{font-size:18px;padding:23px 20px 25px;text-align:left}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:25%}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3){border-left:1px solid #d6e2ed}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3),.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(4){border-top:0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-reports-pie-chart .monsterinsights-pie-chart{margin:inherit}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:absolute;left:250px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);margin:0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-report-box{width:calc(50% - 12.5px);margin-top:0}}@media (max-width:991px){.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex{-ms-flex-flow:inherit;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:inherit}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-reports-pie-chart{width:50%}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-reports-pie-chart:first-child{margin:0 25px 0 0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-table-box{margin-left:20px;margin-top:0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-table-box:first-child{margin-left:0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-report-2-columns .monsterinsights-table-box{width:calc(50% - 12.5px)}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex.monsterinsights-interests-scroll-report .monsterinsights-table-box{width:100%}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-reports-pie-chart{width:calc(50% - 12.5px)}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-reports-pie-chart:first-child{margin:0 25px 0 0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-left:25px;margin-top:0}}.monsterinsights-report{padding:20px;position:relative}body.monsterinsights-reporting-page #wpbody-content{padding-bottom:0}body.monsterinsights-reporting-page #wpfooter{padding-top:0}body.monsterinsights-reporting-page #wpfooter:before{display:none}body.monsterinsights-reporting-page .monsterinsights-red{color:#d73638}body.monsterinsights-reporting-page .monsterinsights-green{color:#5cc0a5}body.monsterinsights-reporting-page .monsterinsights-report-top{margin-top:14px}@media (min-width:783px) and (max-width:1130px){body.monsterinsights-reporting-page .monsterinsights-report-top{margin-bottom:25px}}body.monsterinsights-reporting-page .monsterinsights-report-top h2{margin:14px 0 28px;display:inline-block;color:#393f4c;font-size:24px}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-report-top h2{display:none}}@media (min-width:783px) and (max-width:1130px){body.monsterinsights-reporting-page .monsterinsights-report-top h2{display:block;margin:0 0 25px}}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report{float:right;margin-right:25px}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-export-pdf-report{float:none;margin-right:0;margin-bottom:0;text-align:center}}@media (min-width:783px) and (max-width:1130px){body.monsterinsights-reporting-page .monsterinsights-export-pdf-report{float:none;margin-bottom:0}}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-button{background-color:#eceff5;color:#444;border-color:#d6e2ed}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-button:focus,body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-button:hover{background-color:#fff}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-button[disabled=disabled]{cursor:not-allowed}body.monsterinsights-reporting-page .monsterinsights-report-realtime .monsterinsights-export-pdf-report{margin-right:0}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{display:-webkit-box;display:-ms-flexbox;display:flex;float:right}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{float:none;width:100%;-ms-flex-flow:wrap;flex-flow:wrap}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker .monsterinsights-buttons-toggle{width:100%;margin-right:0}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker .monsterinsights-buttons-toggle .monsterinsights-button{width:50%}}@media (min-width:783px) and (max-width:1130px){body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{float:right}}body.monsterinsights-reporting-page .monsterinsights-datepicker{width:200px;background-color:#8ea4b4;font-weight:700;color:#fff;text-align:center;border-color:#708c9f;border-width:1px 1px 2px;border-radius:3px;height:40px;margin:0}body.monsterinsights-reporting-page .monsterinsights-datepicker::-webkit-input-placeholder{color:#fff}body.monsterinsights-reporting-page .monsterinsights-datepicker:-moz-placeholder,body.monsterinsights-reporting-page .monsterinsights-datepicker::-moz-placeholder{color:#fff}body.monsterinsights-reporting-page .monsterinsights-datepicker:-ms-input-placeholder{color:#fff}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-datepicker{width:calc(50% - 5px);margin-bottom:20px;margin-top:10px;font-size:14px}}body.monsterinsights-reporting-page .monsterinsights-mobile-details-toggle{width:calc(50% - 5px);margin-bottom:20px;margin-top:10px;margin-left:10px;font-weight:700}@media (min-width:783px){body.monsterinsights-reporting-page .monsterinsights-mobile-details-toggle{display:none}}body.monsterinsights-reporting-page .monsterinsights-info{color:#b6c9da;cursor:help;font-size:15px}body.monsterinsights-reporting-page .monsterinsights-report-row{margin-bottom:25px}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button{background:#eceff5;color:#464c57;border-bottom-width:1px;border-color:#d6e2ed;border-radius:0;line-height:18px;border-right:0;margin:0}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:hover{background:#fff}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:focus{z-index:10;position:relative}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;border-right:1px solid #d6e2ed}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button.monsterinsights-selected-interval{background:#fff;color:#509fe2;font-weight:700}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info{background:#8ea4b4;border-radius:3px;color:#fff;border:solid #708c9f;border-width:1px 1px 2px;position:relative;text-align:left;font-size:14px;font-weight:400;line-height:1.1;padding:10px 20px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info:focus,body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info:hover{background:#3a93dd;cursor:pointer}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info{max-width:100%;width:100%;padding:12px 20px 8px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info>span{overflow:hidden;white-space:pre;text-overflow:ellipsis;max-width:calc(100% - 40px);display:inline-block}}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info i{margin-left:38px;margin-right:12px}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info i{margin-left:10px;margin-right:10px;vertical-align:top;display:inline-block}}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info:after{width:0;height:0;border-color:#fff 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.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown{position:absolute;z-index:100;background:#fff;border:1px solid #d6e2ed;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.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown.monsterinsights-p-0{padding:0;max-width:auto;border:0}body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button{display:block;width:100%;margin-bottom:5px;text-align:left;background-color:#fff;color:#444;border:none}body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button.monsterinsights-interval-active,body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button:active,body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button:hover{background-color:#eceff4;color:#444}body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button i{margin-right:10px}body.monsterinsights-reporting-page .monsterinsights-datepicker,body.monsterinsights-reporting-page .monsterinsights-hide{display:none}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container{position:relative}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container{max-width:100%;width:100%}}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container.monsterinsights-hide,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .monsterinsights-hide{display:none}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-wrapper{display:block}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-wrapper .flatpickr-calendar{width:100%}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-calendar.static.open{position:relative;-webkit-box-shadow:none;box-shadow:none;border:none;width:100%}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:after,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:before{display:none}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-rContainer{width:100%;display:block}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .dayContainer,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-days{width:100%;max-width:100%}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day{max-width:100%}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange.inRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange.nextMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange.prevMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange:focus,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange:hover,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected.inRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected.nextMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected.prevMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected:focus,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected:hover,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange.inRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange.nextMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange.prevMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange:focus,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange:hover{background-color:#509fe2;border-color:#509fe2}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-months{padding-bottom:10px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .dayContainer{padding:0 28px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-weekdays{height:40px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-weekdaycontainer{background:#eceff4;padding:14px 28px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-current-month{font-size:15px;color:#444}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper{width:55px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper input.cur-year{padding:0 10px 0 5px;min-height:25px}.monsterinsights-reports-overview-datagraph-tooltip-container{padding:15px;background-color:#fff;border-radius:4px;-webkit-box-shadow:0 0 24px rgba(89,164,234,.33);box-shadow:0 0 24px rgba(89,164,234,.33)}#monsterinsights-chartjs-line-overview-tooltip{min-width:100px}.monsterinsights-reports-overview-datagraph-tooltip-title{color:#23282d;font-size:14px;font-weight:400;border-bottom:1px solid #d4e2ef;padding-bottom:5px}.monsterinsights-reports-overview-datagraph-tooltip-number{color:#23282d;font-size:24px;font-weight:400;margin-top:5px;margin-bottom:5px}.monsterinsights-reports-overview-datagraph-tooltip-descriptor{color:#23282d;font-size:12px;font-weight:400;margin-bottom:10px}.monsterinsights-reports-overview-datagraph-tooltip-trend{color:#23282d;font-size:16px;font-weight:400}#monsterinsights-chartjs-bar-tooltip,.monsterinsights-line-chart-tooltip{opacity:1;position:absolute;margin-left:-55px}.monsterinsights-report-tabs-navigation{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-report-tabs-navigation button{border-color:#d6e2ed;border-style:solid;border-width:1px 0;background:#eceff4;color:#444;width:100%;font-weight:700;text-align:left;font-size:18px;padding:23px 20px 25px;cursor:pointer;margin:0;position:relative}@media (max-width:782px){.monsterinsights-report-tabs-navigation button{font-size:14px;padding:13px 20px 15px;text-align:center}}.monsterinsights-report-tabs-navigation button:first-child{border-right:1px solid #d6e2ed}.monsterinsights-report-tabs-navigation button:focus{z-index:10}.monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button{background:#fff;color:#509fe2;border-bottom:none;border-top:2px solid #3a93dd;padding-top:20px}@media (max-width:782px){.monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button{padding-top:12px}}.monsterinsights-report-tabs-navigation button i{margin-right:10px;color:#8ba4b7}.monsterinsights-report-tabs{background:#fff;border:1px solid #d6e2ed;border-top:none}.monsterinsights-report-tabs .monsterinsights-report-tabs-content{padding:20px}.monsterinsights-report-infobox-row{display:-webkit-box;display:-ms-flexbox;display:flex;border:1px solid #d6e2ed}@media (max-width:782px){.monsterinsights-report-infobox-row{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:25%;background:#fff;border-left:1px solid #d6e2ed;padding:17px 20px 15px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-info{position:absolute;right:20px;top:18px}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:first-child{border-left:none}@media (max-width:782px){.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:50%}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3),.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(4){border-top:1px solid #d6e2ed}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3){border-left:none}}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-report-title{padding-right:18px;text-overflow:ellipsis;overflow:hidden;white-space:pre;line-height:1.2}.monsterinsights-report-title{font-size:18px;color:#393f4c;font-weight:700;margin-top:0}.monsterinsights-reports-infobox-number{font-size:40px;font-weight:200;display:inline-block;line-height:1;margin-top:11px;float:left}@media (max-width:782px){.monsterinsights-reports-infobox-number{font-size:36px;float:none}}.monsterinsights-reports-infobox-compare,.monsterinsights-reports-infobox-prev{float:right}@media (max-width:1280px){.monsterinsights-reports-infobox-compare,.monsterinsights-reports-infobox-prev{float:none;clear:both}}.monsterinsights-reports-infobox-prev{font-size:16px;margin-top:15px}.monsterinsights-reports-infobox-compare{clear:right;font-size:12px;color:#acbdc9}.monsterinsights-buttons-toggle{margin-right:25px}.monsterinsights-report-flex{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:991px){.monsterinsights-report-flex{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-pie-chart-legend-color{width:12px;height:12px;display:inline-block;margin-right:5px;border-radius:50%}.monsterinsights-pie-chart-legend-text{min-width:100px;margin-right:10px;display:inline-block;font-size:16px;color:#393f4c}.monsterinsights-pie-chart-legend-value{color:#393f4c;font-size:18px;font-weight:500}.monsterinsights-reports-pie-chart{width:50%;padding:20px;background:#fff;border:1px solid #d6e2ed;position:relative}.monsterinsights-reports-pie-chart:first-child{margin-right:25px}@media (max-width:991px){.monsterinsights-reports-pie-chart:first-child{margin:0 0 25px}}@media (max-width:991px){.monsterinsights-reports-pie-chart{width:100%}}.monsterinsights-reports-pie-chart .monsterinsights-reports-pie-chart-holder{position:relative}@media (max-width:782px){.monsterinsights-reports-pie-chart .monsterinsights-pie-chart{margin:0 auto}}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:absolute;left:250px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);margin:0}@media (max-width:782px){.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:relative;left:auto;top:auto;-webkit-transform:none;-ms-transform:none;transform:none;margin-top:20px}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend .monsterinsights-pie-chart-legend-value{float:right}}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-tooltip{position:absolute;pointer-events:none}.monsterinsights-reports-pie-chart .monsterinsights-info{position:absolute;top:20px;right:20px}.monsterinsights-table-box{border:1px solid #d6e2ed;background:#fff;width:100%;margin-left:20px;padding-top:18px;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-table-box:first-child{margin-left:0;margin-top:0}.monsterinsights-table-box h3{margin-left:20px}.monsterinsights-table-box .monsterinsights-info{position:absolute;top:20px;right:20px}@media (max-width:991px){.monsterinsights-table-box{margin-left:0;margin-top:20px}}.monsterinsights-table-box-footer{background:#f9fbff;border-top:1px solid #d6e2ed;padding:20px}.monsterinsights-table-box-footer:after{display:table;clear:both;content:""}@media (max-width:782px){.monsterinsights-table-box-footer>.monsterinsights-button{width:100%;text-align:center}}.monsterinsights-table-list-item{padding:12px 20px;min-height:43px;font-size:15px;display:-webkit-box;display:-ms-flexbox;display:flex}table .monsterinsights-table-list-item{display:table-row}.monsterinsights-table-list-item:nth-child(odd){background-color:#f9fbff}.monsterinsights-table-list-item .monsterinsights-reports-list-text{color:#393f4c;white-space:pre;text-overflow:ellipsis;overflow:hidden;vertical-align:middle;display:inline-block;width:100%;padding:1px;margin:-1px}.monsterinsights-table-list-item .monsterinsights-reports-list-text a{display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis}.monsterinsights-table-list-item .monsterinsights-reports-list-text img{display:inline-block;margin-right:10px;vertical-align:middle}.monsterinsights-table-list-item .monsterinsights-flag{-webkit-transform:scale(.5);-ms-transform:scale(.5);transform:scale(.5);display:inline-block;margin:-12px 0 -10px -8px}.monsterinsights-table-list-item a{text-decoration:none;color:#393f4c}.monsterinsights-table-list-item a:focus,.monsterinsights-table-list-item a:hover{color:#777}.monsterinsights-table-list-item .monsterinsights-reports-list-count{display:inline-block;min-width:30px;color:#657086;font-weight:400}.monsterinsights-table-list-item .monsterinsights-reports-list-number{color:#393f4c;font-size:15px;text-align:right;display:block;padding-left:5px}.monsterinsights-table-box-pagination{float:right;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:782px){.monsterinsights-table-box-pagination{float:none;width:100%;margin-top:20px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}.monsterinsights-table-box-pagination span{margin-right:20px;color:#8ba4b7}.monsterinsights-table-box-pagination .monsterinsights-buttons-toggle{margin-right:0}.monsterinsights-table-box-list{height:100%}.monsterinsights-table-box-table .monsterinsights-table-item-content{display:-webkit-box;display:-ms-flexbox;display:flex;word-break:break-all}@media (max-width:782px){.monsterinsights-table-box-table .monsterinsights-table-item-content{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-table-box-mobile .monsterinsights-table-box-table{overflow:auto}.monsterinsights-table-box-mobile .monsterinsights-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}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-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}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td.monsterinsights-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:#393f4c;padding-top:12px;padding-bottom:12px;border-top:none}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after{-webkit-transform:translateY(-50%) rotate(0);-ms-transform:translateY(-50%) rotate(0);transform:translateY(-50%) rotate(0)}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th{display:none;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1{display:block;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1 .monsterinsights-table-item-content,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1 .monsterinsights-table-item-content{padding-right:30px;position:relative;white-space:pre;text-overflow:ellipsis;overflow:hidden;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1 .monsterinsights-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:#acbdc9;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table .monsterinsights-table-mobile-heading{min-width:125px}.monsterinsights-table-box-mobile .monsterinsights-table-box-table .monsterinsights-table-list-item-empty td:first-child .monsterinsights-table-item-content:after{display:none}.monsterinsights-table-box-table table{width:100%;border-collapse:collapse}.monsterinsights-table-box-mobile .monsterinsights-table-box-table table{table-layout:fixed}.monsterinsights-table-box-table th{text-align:left;font-size:15px}.monsterinsights-table-box-table td,.monsterinsights-table-box-table th{border:none;padding:12px 10px;line-height:19px}.monsterinsights-table-box-table td:first-child,.monsterinsights-table-box-table th:first-child{padding-left:20px}.monsterinsights-table-box-table td:last-child,.monsterinsights-table-box-table th:last-child{padding-right:20px}.monsterinsights-report-2-columns{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-report-2-columns .monsterinsights-table-box{width:calc(50% - 12.5px)}@media (max-width:991px){.monsterinsights-report-2-columns .monsterinsights-table-box{width:100%}}.monsterinsights-report-2-columns.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:50%}.monsterinsights-report-2-columns .monsterinsights-table-box:nth-child(n+1){margin-left:0}.monsterinsights-report-2-columns .monsterinsights-table-box:nth-child(n+3){margin-top:25px}.monsterinsights-report-flex .monsterinsights-report-box{width:calc(50% - 12.5px)}@media (max-width:782px){.monsterinsights-report-flex .monsterinsights-report-box{width:100%;margin-top:20px}.monsterinsights-report-flex .monsterinsights-report-box:first-child{margin-top:0}}.monsterinsights-reports-tooltip{font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.monsterinsights-arrow{width:12.5px;height:13px;display:inline-block;background-size:contain;background-repeat:no-repeat}.monsterinsights-arrow.monsterinsights-down{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAXVBMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjip09rAAAAHnRSTlMA8IciAeKVlnAwD/bp1ci5on1URtyyl2dhPzccFQOiNcZVAAAAg0lEQVQoz9XNWQ6DMAxFUUNCmwBl7Dx4/8tsjCAvQd4A98OWdT5MaOr74UtaLTOPqhRByuNL7fxefs9ZoOPmlYsdmB3RLdzFOxV759BMHQv5REqWJjKV7NZEGRc4WVqpMqu4CBtdP4s8IoAujQwACAFAAI3OABAgJ4BGgJzkuVrt0+sPB0gVjZ7FTpgAAAAASUVORK5CYII=)}.monsterinsights-arrow.monsterinsights-down.monsterinsights-green{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMADloG+qFg0bOrm1RNGJCAd3FoRe/Zyci8kjIuLCxb7jsAAACJSURBVCjP3cpbFsIgDEXRC8G29mVrfWvmP00DcREtHYHnI0A2sB7T5LEVnZh52RLHkv8DeblCnhTnnc/DSlquZXWQd+1+ZIwrwoWlqzORv7EBS4jnjbLMCUYAfaKGPlIlaIFMO5UuKGidUhp6BYwsAULOhxVYldFewagAowxFxwiNQkkKZf38DW9jKhaFyDomEwAAAABJRU5ErkJggg==)}.monsterinsights-arrow.monsterinsights-up{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMA8Icj45jrlzD20bqkfXJkV0sUD9zWxbaLcT43HO3asg8AAACASURBVCjP3clJFsIgEADRisRA5slZuf81ReQ1UZILpBa1+SyaDeup3OotsPa4AUIJCCUQKYVIERKKcC7dKqEIp1fmfugDRcgVXui+JFAogtB60nDxYBDh5mng6p49WQj6IyNTZcsHP0JjbQfMd8Of0I9IIqEdSOGkXZWhrpsJ6Q1+nBSNjDcDLgAAAABJRU5ErkJggg==)}.monsterinsights-arrow.monsterinsights-up.monsterinsights-red{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAZCAMAAAAc9R5vAAAAV1BMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjhHHlCMAAAAHHRSTlMALTzj+N0V79kkHNVD0U5IIBnqy8K3VTcSB704vhc5cQAAAJRJREFUKM/VjUkSwyAMBIeACRhsvC+J/v/ORErZcOADmYOm1F0lIccH51HJoIl0xbQNfaOHKhdT4ZKmLfnoiGrGOirixpsH3p8ySmM7+Zp4bvIrWOaH8MkrrofXlzlmOaHwE1ATd2fx4jZvXAK7/FmgmUdkgWj4hFSPUqA3ZBIQ1w2FELMm5GTB+XOxV8S5EM3nvX4AV4MVrf6KAvgAAAAASUVORK5CYII=)}.monsterinsights-reports-overview-datagraph-tooltip-trend{font-weight:700}.monsterinsights-reports-overview-datagraph-tooltip-trend .monsterinsights-arrow{margin-right:5px}.monsterinsights-report-box{background:#fff;border:1px solid #d6e2ed;padding:0 20px 20px;position:relative}.monsterinsights-report-box .monsterinsights-info{position:absolute;right:20px;top:20px}.monsterinsights-report-box-icon-heading{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-report-box-icon-heading h3{color:#509fe2;margin-left:15px}.monsterinsights-realtime-large{font-size:150px;text-align:center;line-height:1.5;color:#393f4c}.monsterinsights-realtime-active{text-align:center;width:100%;font-size:25px;line-height:1;margin-top:-50px;color:#393f4c}.monsterinsights-realtime-box-content .monsterinsights-line-chart-tooltip{max-width:115px}#monsterinsights-chartjs-pie-age-tooltip{margin-left:23px;min-width:95px}.monsterinsights-blur .monsterinsights-report-top{pointer-events:none;-webkit-filter:blur(5px);filter:blur(5px)}.monsterinsights-blur .monsterinsights-report-row{-webkit-filter:blur(5px);filter:blur(5px)}.monsterinsights-blur .monsterinsights-report{min-height:850px}.monsterinsights-blur .upsell-blur{background:#fff;width:100%;min-height:100vh}.monsterinsights-blur .upsell-blur img{max-width:100%}.monsterinsights-reports-referral-icon{vertical-align:middle;margin-right:10px;margin-left:2px}.monsterinsights-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){.monsterinsights-upsell-inline .monsterinsights-upsell-inline-content{margin:-20px;padding:20px;background:hsla(0,0%,100%,.3)}}.monsterinsights-upsell-overlay .monsterinsights-upsell-content{display:-webkit-box;display:-ms-flexbox;display:flex;gap:32px}.monsterinsights-upsell-content{max-width:750px}.monsterinsights-upsell-content__features{margin-bottom:46px;-webkit-box-flex:1;-ms-flex:1;flex:1}.monsterinsights-upsell-content__img{width:278px;background-position:100% 100%;background-repeat:no-repeat;background-size:contain}.monsterinsights-upsell-content__img.upsell-publisher{background-image:url(../img/bg-publisher@2x.png)}.monsterinsights-upsell-content__img.upsell-queries{background-image:url(../img/bg-queries@2x.png)}.monsterinsights-upsell-content__img.upsell-forms{background-image:url(../img/bg-forms@2x.png)}.monsterinsights-upsell-content__img.upsell-realtime{background-image:url(../img/bg-realtime@2x.png)}.monsterinsights-upsell-content__img.upsell-ecommerce{background-image:url(../img/bg-ecommerce@2x.png)}.monsterinsights-upsell-content__img.upsell-dimensions{background-image:url(../img/bg-dimensions@2x.png);background-position:50%}.monsterinsights-upsell-content__img.upsell-sitespeed{background-image:url(../img/bg-sitespeed@2x.png)}.monsterinsights-upsell-content__img.upsell-media{background-image:url(../img/bg-media-upsell.svg);background-position:100%}.monsterinsights-upsell-content p{font-size:16px;color:#393f4c;line-height:1.8}.monsterinsights-upsell-content .monsterinsights-light{color:#657086}.monsterinsights-upsell-content .monsterinsights-button{font-size:17px;font-weight:700;padding:15px 25px;line-height:1}@media (max-width:782px){.monsterinsights-upsell-content .monsterinsights-button{font-size:15px}}.monsterinsights-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}.monsterinsights-upsell-overlay .monsterinsights-upsell-top{padding:26px 40px;display:-webkit-box;display:-ms-flexbox;display:flex;gap:16px}@media (max-width:782px){.monsterinsights-upsell-overlay .monsterinsights-upsell-top{padding:0 20px}}@media (max-width:782px){.monsterinsights-upsell-overlay{top:70px;width:calc(100% - 40px)}}.monsterinsights-upsell-overlay h3{text-align:left;color:#23262e;font-size:20px;line-height:100%;margin:0}.monsterinsights-upsell-overlay h4{font-size:16px;line-height:140%;color:#444}.monsterinsights-upsell-overlay p{margin:24px 0;font-size:15px;line-height:140%;color:#444}.monsterinsights-upsell-overlay .monsterinsights-upsell-content{border-top:1px solid #e2e4e9;padding:32px 0 0 40px}@media (max-width:782px){.monsterinsights-upsell-overlay .monsterinsights-upsell-content{padding-left:20px;padding-right:20px}}.monsterinsights-upsell-overlay .monsterinsights-upsell-content h3{font-size:23px;line-height:120%}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul{margin:16px auto 24px;display:grid;grid-gap:10px}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul.columns-1{grid-template-columns:1fr}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul.columns-2{grid-template-columns:1fr 1fr}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li{color:#393f4c;font-size:13px;padding-left:24px;position:relative;line-height:17px}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li:before{position:absolute;width:16px;height:17px;background:url(../img/bullet.svg) no-repeat 50%;left:0;display:inline-block;top:-1px;content:""}.monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-weight:700;font-size:18px;line-height:140%;background:#338eef;border:1px solid #1177e3;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:4px;padding:12px 24px;position:relative}.monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button:after{content:"";width:13px;height:15px;margin-left:12px;background:url(../img/icon-lock.svg) no-repeat 50%}.monsterinsights-upsell-overlay a{color:#393f4c}.monsterinsights-upsell-overlay a:hover{text-decoration:none}.monsterinsights-center,.monsterinsights-mobile-upsell{text-align:center}.monsterinsights-mobile-upsell .monsterinsights-notice{border-top:1px solid #d6e2ed;border-right:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-mobile-upsell .monsterinsights-notice-inner{margin-top:0}@media (min-width:783px){.monsterinsights-mobile-upsell{display:none}}.monsterinsights-mobile-upsell .monsterinsights-notice-success .monsterinsights-notice-button{margin-right:0}@media (max-width:782px){.monsterinsights-overview-upsell-desktop{display:none}}.monsterinsights-report-realtime .monsterinsights-table-box th:first-child{width:auto}.monsterinsights-reports-list-title{display:inline-block;word-break:break-all}@media (max-width:782px){.monsterinsights-reports-list-title{width:calc(100% - 30px);text-overflow:ellipsis;overflow:hidden}}.monsterinsights-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}.monsterinsights-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-left:25px}@media (max-width:991px){.monsterinsights-report-scroll:nth-child(2){width:100%;margin-left:0;margin-top:25px}}@media (max-width:782px){.monsterinsights-report-scroll{width:100%;margin-left:0}}.monsterinsights-report-scroll>h3{position:absolute;top:0}.monsterinsights-report-scroll .monsterinsights-realtime-active{margin:0 0 50px}.monsterinsights-report-scroll .monsterinsights-realtime-box-content{margin:25px 0}.monsterinsights-report-scroll .monsterinsights-realtime-large{line-height:1;margin:50px 0 0;font-size:80px}.monsterinsights-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 .monsterinsights-not-authenticated-notice{margin-left:-357px}}@media (max-width:960px){.monsterinsights-not-authenticated-notice{margin-left:-357px}}@media (max-width:750px){.monsterinsights-not-authenticated-notice{left:0;margin-left:0}}@media (min-width:750px) and (max-width:782px){.monsterinsights-not-authenticated-notice{margin-left:-375px}}.monsterinsights-not-authenticated-notice .monsterinsights-auth-manual-connect-paragraph{display:none}.monsterinsights-not-authenticated-notice h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input-authenticate{text-align:center}.monsterinsights-not-authenticated-notice .monsterinsights-license-button{line-height:1;margin-top:20px}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button{font-size:16px;padding:20px 40px;margin:20px 20px 10px;background:#8da4b5;border-color:#6f8ca0;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button:focus,.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button:hover{background-color:#7e98ab;border-color:#627f94;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt{background:#509fe2;border-color:#2e7fbe;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt:focus,.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-disabled{background:#f3f6ff;border-color:#d6e2eb;color:#8ba4b7}.monsterinsights-reports-list-has-overflow{cursor:pointer}.monsterinsights-admin-page .monsterinsights-lite-datepicker{text-align:center;padding:12px 12px 27px}.monsterinsights-admin-page .monsterinsights-lite-datepicker p{color:#444;font-size:15px;line-height:1.5;font-weight:700}.monsterinsights-admin-page .monsterinsights-lite-datepicker .monsterinsights-button-text{color:#509fe2;display:inline-block;width:auto}.monsterinsights-admin-page .monsterinsights-lite-datepicker .monsterinsights-button-text:focus,.monsterinsights-admin-page .monsterinsights-lite-datepicker .monsterinsights-button-text:hover{color:#3a93dd}.monsterinsights-admin-page .monsterinsights-lite-datepicker .monsterinsights-button-text i{margin-left:10px}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report-lite .monsterinsights-reports-intervals-dropdown{min-width:250px}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report-lite .monsterinsights-reports-intervals-dropdown .monsterinsights-button{background:rgba(0,0,0,0);color:#509fe2}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report-lite .monsterinsights-reports-intervals-dropdown .monsterinsights-button:focus,body.monsterinsights-reporting-page .monsterinsights-export-pdf-report-lite .monsterinsights-reports-intervals-dropdown .monsterinsights-button:hover{color:#3a93dd}body.monsterinsights-reporting-page .monsterinsights-notice-error.monsterinsights-license_expired{display:none!important}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-popup{width:600px;padding:2em 3.25em}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-actions{display:none!important}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-footer{display:block!important;text-align:center;padding-top:20px}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-footer a{display:inline-block}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-footer a.swal2-styled{padding-top:16px;padding-bottom:20px;margin-bottom:15px;text-decoration:none}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-footer a:nth-child(3){color:#393f4c!important}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .monsterinsights-expired-license-alert{text-align:left;padding-right:39px}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .monsterinsights-expired-license-alert h3{font-size:40px;margin:0 0 8px;padding:0}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .monsterinsights-expired-license-alert h4{font-size:20px;margin:0 0 10px;padding:0}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .monsterinsights-expired-license-alert p{font-size:16px;margin:0 0 10px;padding:0}
2
 
3
  /*!
4
  * Generated with CSS Flag Sprite generator (https://www.flag-sprites.com/)
5
+ */.monsterinsights-flag{display:inline-block;width:32px;height:32px;background:url(../img/flags.png) no-repeat}.monsterinsights-flag.monsterinsights-flag-ad{background-position:-32px 0}.monsterinsights-flag.monsterinsights-flag-ae{background-position:-64px 0}.monsterinsights-flag.monsterinsights-flag-af{background-position:-96px 0}.monsterinsights-flag.monsterinsights-flag-ag{background-position:-128px 0}.monsterinsights-flag.monsterinsights-flag-ai{background-position:-160px 0}.monsterinsights-flag.monsterinsights-flag-al{background-position:-192px 0}.monsterinsights-flag.monsterinsights-flag-am{background-position:-224px 0}.monsterinsights-flag.monsterinsights-flag-an{background-position:-256px 0}.monsterinsights-flag.monsterinsights-flag-ao{background-position:-288px 0}.monsterinsights-flag.monsterinsights-flag-ar{background-position:-320px 0}.monsterinsights-flag.monsterinsights-flag-as{background-position:-352px 0}.monsterinsights-flag.monsterinsights-flag-at{background-position:-384px 0}.monsterinsights-flag.monsterinsights-flag-au{background-position:-416px 0}.monsterinsights-flag.monsterinsights-flag-aw{background-position:-448px 0}.monsterinsights-flag.monsterinsights-flag-ax{background-position:-480px 0}.monsterinsights-flag.monsterinsights-flag-az{background-position:0 -32px}.monsterinsights-flag.monsterinsights-flag-ba{background-position:-32px -32px}.monsterinsights-flag.monsterinsights-flag-bb{background-position:-64px -32px}.monsterinsights-flag.monsterinsights-flag-bd{background-position:-96px -32px}.monsterinsights-flag.monsterinsights-flag-be{background-position:-128px -32px}.monsterinsights-flag.monsterinsights-flag-bf{background-position:-160px -32px}.monsterinsights-flag.monsterinsights-flag-bg{background-position:-192px -32px}.monsterinsights-flag.monsterinsights-flag-bh{background-position:-224px -32px}.monsterinsights-flag.monsterinsights-flag-bi{background-position:-256px -32px}.monsterinsights-flag.monsterinsights-flag-bj{background-position:-288px -32px}.monsterinsights-flag.monsterinsights-flag-bl{background-position:-320px -32px}.monsterinsights-flag.monsterinsights-flag-bm{background-position:-352px -32px}.monsterinsights-flag.monsterinsights-flag-bn{background-position:-384px -32px}.monsterinsights-flag.monsterinsights-flag-bo{background-position:-416px -32px}.monsterinsights-flag.monsterinsights-flag-br{background-position:-448px -32px}.monsterinsights-flag.monsterinsights-flag-bs{background-position:-480px -32px}.monsterinsights-flag.monsterinsights-flag-bt{background-position:0 -64px}.monsterinsights-flag.monsterinsights-flag-bw{background-position:-32px -64px}.monsterinsights-flag.monsterinsights-flag-by{background-position:-64px -64px}.monsterinsights-flag.monsterinsights-flag-bz{background-position:-96px -64px}.monsterinsights-flag.monsterinsights-flag-ca{background-position:-128px -64px}.monsterinsights-flag.monsterinsights-flag-cd{background-position:-160px -64px}.monsterinsights-flag.monsterinsights-flag-cf{background-position:-192px -64px}.monsterinsights-flag.monsterinsights-flag-cg{background-position:-224px -64px}.monsterinsights-flag.monsterinsights-flag-ch{background-position:-256px -64px}.monsterinsights-flag.monsterinsights-flag-ci{background-position:-288px -64px}.monsterinsights-flag.monsterinsights-flag-ck{background-position:-320px -64px}.monsterinsights-flag.monsterinsights-flag-cl{background-position:-352px -64px}.monsterinsights-flag.monsterinsights-flag-cm{background-position:-384px -64px}.monsterinsights-flag.monsterinsights-flag-cn{background-position:-416px -64px}.monsterinsights-flag.monsterinsights-flag-co{background-position:-448px -64px}.monsterinsights-flag.monsterinsights-flag-cr{background-position:-480px -64px}.monsterinsights-flag.monsterinsights-flag-cu{background-position:0 -96px}.monsterinsights-flag.monsterinsights-flag-cv{background-position:-32px -96px}.monsterinsights-flag.monsterinsights-flag-cw{background-position:-64px -96px}.monsterinsights-flag.monsterinsights-flag-cy{background-position:-96px -96px}.monsterinsights-flag.monsterinsights-flag-cz{background-position:-128px -96px}.monsterinsights-flag.monsterinsights-flag-de{background-position:-160px -96px}.monsterinsights-flag.monsterinsights-flag-dj{background-position:-192px -96px}.monsterinsights-flag.monsterinsights-flag-dk{background-position:-224px -96px}.monsterinsights-flag.monsterinsights-flag-dm{background-position:-256px -96px}.monsterinsights-flag.monsterinsights-flag-do{background-position:-288px -96px}.monsterinsights-flag.monsterinsights-flag-dz{background-position:-320px -96px}.monsterinsights-flag.monsterinsights-flag-ec{background-position:-352px -96px}.monsterinsights-flag.monsterinsights-flag-ee{background-position:-384px -96px}.monsterinsights-flag.monsterinsights-flag-eg{background-position:-416px -96px}.monsterinsights-flag.monsterinsights-flag-eh{background-position:-448px -96px}.monsterinsights-flag.monsterinsights-flag-er{background-position:-480px -96px}.monsterinsights-flag.monsterinsights-flag-es{background-position:0 -128px}.monsterinsights-flag.monsterinsights-flag-et{background-position:-32px -128px}.monsterinsights-flag.monsterinsights-flag-eu{background-position:-64px -128px}.monsterinsights-flag.monsterinsights-flag-fi{background-position:-96px -128px}.monsterinsights-flag.monsterinsights-flag-fj{background-position:-128px -128px}.monsterinsights-flag.monsterinsights-flag-fk{background-position:-160px -128px}.monsterinsights-flag.monsterinsights-flag-fm{background-position:-192px -128px}.monsterinsights-flag.monsterinsights-flag-fo{background-position:-224px -128px}.monsterinsights-flag.monsterinsights-flag-fr{background-position:-256px -128px}.monsterinsights-flag.monsterinsights-flag-ga{background-position:-288px -128px}.monsterinsights-flag.monsterinsights-flag-gb{background-position:-320px -128px}.monsterinsights-flag.monsterinsights-flag-gd{background-position:-352px -128px}.monsterinsights-flag.monsterinsights-flag-ge{background-position:-384px -128px}.monsterinsights-flag.monsterinsights-flag-gg{background-position:-416px -128px}.monsterinsights-flag.monsterinsights-flag-gh{background-position:-448px -128px}.monsterinsights-flag.monsterinsights-flag-gi{background-position:-480px -128px}.monsterinsights-flag.monsterinsights-flag-gl{background-position:0 -160px}.monsterinsights-flag.monsterinsights-flag-gm{background-position:-32px -160px}.monsterinsights-flag.monsterinsights-flag-gn{background-position:-64px -160px}.monsterinsights-flag.monsterinsights-flag-gp{background-position:-96px -160px}.monsterinsights-flag.monsterinsights-flag-gq{background-position:-128px -160px}.monsterinsights-flag.monsterinsights-flag-gr{background-position:-160px -160px}.monsterinsights-flag.monsterinsights-flag-gs{background-position:-192px -160px}.monsterinsights-flag.monsterinsights-flag-gt{background-position:-224px -160px}.monsterinsights-flag.monsterinsights-flag-gu{background-position:-256px -160px}.monsterinsights-flag.monsterinsights-flag-gw{background-position:-288px -160px}.monsterinsights-flag.monsterinsights-flag-gy{background-position:-320px -160px}.monsterinsights-flag.monsterinsights-flag-hk{background-position:-352px -160px}.monsterinsights-flag.monsterinsights-flag-hn{background-position:-384px -160px}.monsterinsights-flag.monsterinsights-flag-hr{background-position:-416px -160px}.monsterinsights-flag.monsterinsights-flag-ht{background-position:-448px -160px}.monsterinsights-flag.monsterinsights-flag-hu{background-position:-480px -160px}.monsterinsights-flag.monsterinsights-flag-ic{background-position:0 -192px}.monsterinsights-flag.monsterinsights-flag-id{background-position:-32px -192px}.monsterinsights-flag.monsterinsights-flag-ie{background-position:-64px -192px}.monsterinsights-flag.monsterinsights-flag-il{background-position:-96px -192px}.monsterinsights-flag.monsterinsights-flag-im{background-position:-128px -192px}.monsterinsights-flag.monsterinsights-flag-in{background-position:-160px -192px}.monsterinsights-flag.monsterinsights-flag-iq{background-position:-192px -192px}.monsterinsights-flag.monsterinsights-flag-ir{background-position:-224px -192px}.monsterinsights-flag.monsterinsights-flag-is{background-position:-256px -192px}.monsterinsights-flag.monsterinsights-flag-it{background-position:-288px -192px}.monsterinsights-flag.monsterinsights-flag-je{background-position:-320px -192px}.monsterinsights-flag.monsterinsights-flag-jm{background-position:-352px -192px}.monsterinsights-flag.monsterinsights-flag-jo{background-position:-384px -192px}.monsterinsights-flag.monsterinsights-flag-jp{background-position:-416px -192px}.monsterinsights-flag.monsterinsights-flag-ke{background-position:-448px -192px}.monsterinsights-flag.monsterinsights-flag-kg{background-position:-480px -192px}.monsterinsights-flag.monsterinsights-flag-kh{background-position:0 -224px}.monsterinsights-flag.monsterinsights-flag-ki{background-position:-32px -224px}.monsterinsights-flag.monsterinsights-flag-km{background-position:-64px -224px}.monsterinsights-flag.monsterinsights-flag-kn{background-position:-96px -224px}.monsterinsights-flag.monsterinsights-flag-kp{background-position:-128px -224px}.monsterinsights-flag.monsterinsights-flag-kr{background-position:-160px -224px}.monsterinsights-flag.monsterinsights-flag-kw{background-position:-192px -224px}.monsterinsights-flag.monsterinsights-flag-ky{background-position:-224px -224px}.monsterinsights-flag.monsterinsights-flag-kz{background-position:-256px -224px}.monsterinsights-flag.monsterinsights-flag-la{background-position:-288px -224px}.monsterinsights-flag.monsterinsights-flag-lb{background-position:-320px -224px}.monsterinsights-flag.monsterinsights-flag-lc{background-position:-352px -224px}.monsterinsights-flag.monsterinsights-flag-li{background-position:-384px -224px}.monsterinsights-flag.monsterinsights-flag-lk{background-position:-416px -224px}.monsterinsights-flag.monsterinsights-flag-lr{background-position:-448px -224px}.monsterinsights-flag.monsterinsights-flag-ls{background-position:-480px -224px}.monsterinsights-flag.monsterinsights-flag-lt{background-position:0 -256px}.monsterinsights-flag.monsterinsights-flag-lu{background-position:-32px -256px}.monsterinsights-flag.monsterinsights-flag-lv{background-position:-64px -256px}.monsterinsights-flag.monsterinsights-flag-ly{background-position:-96px -256px}.monsterinsights-flag.monsterinsights-flag-ma{background-position:-128px -256px}.monsterinsights-flag.monsterinsights-flag-mc{background-position:-160px -256px}.monsterinsights-flag.monsterinsights-flag-md{background-position:-192px -256px}.monsterinsights-flag.monsterinsights-flag-me{background-position:-224px -256px}.monsterinsights-flag.monsterinsights-flag-mf{background-position:-256px -256px}.monsterinsights-flag.monsterinsights-flag-mg{background-position:-288px -256px}.monsterinsights-flag.monsterinsights-flag-mh{background-position:-320px -256px}.monsterinsights-flag.monsterinsights-flag-mk{background-position:-352px -256px}.monsterinsights-flag.monsterinsights-flag-ml{background-position:-384px -256px}.monsterinsights-flag.monsterinsights-flag-mm{background-position:-416px -256px}.monsterinsights-flag.monsterinsights-flag-mn{background-position:-448px -256px}.monsterinsights-flag.monsterinsights-flag-mo{background-position:-480px -256px}.monsterinsights-flag.monsterinsights-flag-mp{background-position:0 -288px}.monsterinsights-flag.monsterinsights-flag-mq{background-position:-32px -288px}.monsterinsights-flag.monsterinsights-flag-mr{background-position:-64px -288px}.monsterinsights-flag.monsterinsights-flag-ms{background-position:-96px -288px}.monsterinsights-flag.monsterinsights-flag-mt{background-position:-128px -288px}.monsterinsights-flag.monsterinsights-flag-mu{background-position:-160px -288px}.monsterinsights-flag.monsterinsights-flag-mv{background-position:-192px -288px}.monsterinsights-flag.monsterinsights-flag-mw{background-position:-224px -288px}.monsterinsights-flag.monsterinsights-flag-mx{background-position:-256px -288px}.monsterinsights-flag.monsterinsights-flag-my{background-position:-288px -288px}.monsterinsights-flag.monsterinsights-flag-mz{background-position:-320px -288px}.monsterinsights-flag.monsterinsights-flag-na{background-position:-352px -288px}.monsterinsights-flag.monsterinsights-flag-nc{background-position:-384px -288px}.monsterinsights-flag.monsterinsights-flag-ne{background-position:-416px -288px}.monsterinsights-flag.monsterinsights-flag-nf{background-position:-448px -288px}.monsterinsights-flag.monsterinsights-flag-ng{background-position:-480px -288px}.monsterinsights-flag.monsterinsights-flag-ni{background-position:0 -320px}.monsterinsights-flag.monsterinsights-flag-nl{background-position:-32px -320px}.monsterinsights-flag.monsterinsights-flag-no{background-position:-64px -320px}.monsterinsights-flag.monsterinsights-flag-np{background-position:-96px -320px}.monsterinsights-flag.monsterinsights-flag-nr{background-position:-128px -320px}.monsterinsights-flag.monsterinsights-flag-nu{background-position:-160px -320px}.monsterinsights-flag.monsterinsights-flag-nz{background-position:-192px -320px}.monsterinsights-flag.monsterinsights-flag-om{background-position:-224px -320px}.monsterinsights-flag.monsterinsights-flag-pa{background-position:-256px -320px}.monsterinsights-flag.monsterinsights-flag-pe{background-position:-288px -320px}.monsterinsights-flag.monsterinsights-flag-pf{background-position:-320px -320px}.monsterinsights-flag.monsterinsights-flag-pg{background-position:-352px -320px}.monsterinsights-flag.monsterinsights-flag-ph{background-position:-384px -320px}.monsterinsights-flag.monsterinsights-flag-pk{background-position:-416px -320px}.monsterinsights-flag.monsterinsights-flag-pl{background-position:-448px -320px}.monsterinsights-flag.monsterinsights-flag-pn{background-position:-480px -320px}.monsterinsights-flag.monsterinsights-flag-pr{background-position:0 -352px}.monsterinsights-flag.monsterinsights-flag-ps{background-position:-32px -352px}.monsterinsights-flag.monsterinsights-flag-pt{background-position:-64px -352px}.monsterinsights-flag.monsterinsights-flag-pw{background-position:-96px -352px}.monsterinsights-flag.monsterinsights-flag-py{background-position:-128px -352px}.monsterinsights-flag.monsterinsights-flag-qa{background-position:-160px -352px}.monsterinsights-flag.monsterinsights-flag-re{background-position:-192px -352px}.monsterinsights-flag.monsterinsights-flag-ro{background-position:-224px -352px}.monsterinsights-flag.monsterinsights-flag-rs{background-position:-256px -352px}.monsterinsights-flag.monsterinsights-flag-ru{background-position:-288px -352px}.monsterinsights-flag.monsterinsights-flag-rw{background-position:-320px -352px}.monsterinsights-flag.monsterinsights-flag-sa{background-position:-352px -352px}.monsterinsights-flag.monsterinsights-flag-sb{background-position:-384px -352px}.monsterinsights-flag.monsterinsights-flag-sc{background-position:-416px -352px}.monsterinsights-flag.monsterinsights-flag-sd{background-position:-448px -352px}.monsterinsights-flag.monsterinsights-flag-se{background-position:-480px -352px}.monsterinsights-flag.monsterinsights-flag-sg{background-position:0 -384px}.monsterinsights-flag.monsterinsights-flag-sh{background-position:-32px -384px}.monsterinsights-flag.monsterinsights-flag-si{background-position:-64px -384px}.monsterinsights-flag.monsterinsights-flag-sk{background-position:-96px -384px}.monsterinsights-flag.monsterinsights-flag-sl{background-position:-128px -384px}.monsterinsights-flag.monsterinsights-flag-sm{background-position:-160px -384px}.monsterinsights-flag.monsterinsights-flag-sn{background-position:-192px -384px}.monsterinsights-flag.monsterinsights-flag-so{background-position:-224px -384px}.monsterinsights-flag.monsterinsights-flag-sr{background-position:-256px -384px}.monsterinsights-flag.monsterinsights-flag-ss{background-position:-288px -384px}.monsterinsights-flag.monsterinsights-flag-st{background-position:-320px -384px}.monsterinsights-flag.monsterinsights-flag-sv{background-position:-352px -384px}.monsterinsights-flag.monsterinsights-flag-sy{background-position:-384px -384px}.monsterinsights-flag.monsterinsights-flag-sz{background-position:-416px -384px}.monsterinsights-flag.monsterinsights-flag-tc{background-position:-448px -384px}.monsterinsights-flag.monsterinsights-flag-td{background-position:-480px -384px}.monsterinsights-flag.monsterinsights-flag-tf{background-position:0 -416px}.monsterinsights-flag.monsterinsights-flag-tg{background-position:-32px -416px}.monsterinsights-flag.monsterinsights-flag-th{background-position:-64px -416px}.monsterinsights-flag.monsterinsights-flag-tj{background-position:-96px -416px}.monsterinsights-flag.monsterinsights-flag-tk{background-position:-128px -416px}.monsterinsights-flag.monsterinsights-flag-tl{background-position:-160px -416px}.monsterinsights-flag.monsterinsights-flag-tm{background-position:-192px -416px}.monsterinsights-flag.monsterinsights-flag-tn{background-position:-224px -416px}.monsterinsights-flag.monsterinsights-flag-to{background-position:-256px -416px}.monsterinsights-flag.monsterinsights-flag-tr{background-position:-288px -416px}.monsterinsights-flag.monsterinsights-flag-tt{background-position:-320px -416px}.monsterinsights-flag.monsterinsights-flag-tv{background-position:-352px -416px}.monsterinsights-flag.monsterinsights-flag-tw{background-position:-384px -416px}.monsterinsights-flag.monsterinsights-flag-tz{background-position:-416px -416px}.monsterinsights-flag.monsterinsights-flag-ua{background-position:-448px -416px}.monsterinsights-flag.monsterinsights-flag-ug{background-position:-480px -416px}.monsterinsights-flag.monsterinsights-flag-us{background-position:0 -448px}.monsterinsights-flag.monsterinsights-flag-uy{background-position:-32px -448px}.monsterinsights-flag.monsterinsights-flag-uz{background-position:-64px -448px}.monsterinsights-flag.monsterinsights-flag-va{background-position:-96px -448px}.monsterinsights-flag.monsterinsights-flag-vc{background-position:-128px -448px}.monsterinsights-flag.monsterinsights-flag-ve{background-position:-160px -448px}.monsterinsights-flag.monsterinsights-flag-vg{background-position:-192px -448px}.monsterinsights-flag.monsterinsights-flag-vi{background-position:-224px -448px}.monsterinsights-flag.monsterinsights-flag-vn{background-position:-256px -448px}.monsterinsights-flag.monsterinsights-flag-vu{background-position:-288px -448px}.monsterinsights-flag.monsterinsights-flag-wf{background-position:-320px -448px}.monsterinsights-flag.monsterinsights-flag-ws{background-position:-352px -448px}.monsterinsights-flag.monsterinsights-flag-ye{background-position:-384px -448px}.monsterinsights-flag.monsterinsights-flag-yt{background-position:-416px -448px}.monsterinsights-flag.monsterinsights-flag-za{background-position:-448px -448px}.monsterinsights-flag.monsterinsights-flag-zm{background-position:-480px -448px}.monsterinsights-flag.monsterinsights-flag-zw{background-position:0 -480px}.monsterinsights-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}.monsterinsights-report-year-in-review.monsterinsights-yir-report-calculating-row{width:610px;margin-top:50px}@media (max-width:767px){.monsterinsights-report-year-in-review.monsterinsights-yir-report-calculating-row{width:100%;margin-top:20px}}.monsterinsights-report-year-in-review a,.monsterinsights-report-year-in-review h1,.monsterinsights-report-year-in-review h2,.monsterinsights-report-year-in-review h3,.monsterinsights-report-year-in-review h4,.monsterinsights-report-year-in-review h5,.monsterinsights-report-year-in-review p,.monsterinsights-report-year-in-review span{font-family:Lato,sans-serif;margin:0}.monsterinsights-report-year-in-review h1,.monsterinsights-report-year-in-review h2,.monsterinsights-report-year-in-review h3,.monsterinsights-report-year-in-review h4,.monsterinsights-report-year-in-review h5{font-weight:900}.monsterinsights-report-year-in-review p{font-style:normal;font-weight:400;font-size:14px;line-height:24px}.monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-yir-separator{border-left-color:#e0e0e0;border-right-color:#e0e0e0;border-top:1px solid #e0e0e0;border-bottom:1px solid #e0e0e0}.monsterinsights-report-year-in-review .text-capitalize{text-transform:capitalize}.monsterinsights-report-year-in-review .monsterinsights-yir-footer,.monsterinsights-report-year-in-review .monsterinsights-yir-header,.monsterinsights-report-year-in-review section{padding:0 90px;clear:both;overflow:hidden}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-footer,.monsterinsights-report-year-in-review .monsterinsights-yir-header,.monsterinsights-report-year-in-review section{padding:0 15px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-footer,.monsterinsights-report-year-in-review .monsterinsights-yir-header,.monsterinsights-report-year-in-review section{padding:0 30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-text-right{text-align:right}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header{padding:90px 0 90px 90px;background-image:url(../img/charlie.png);background-repeat:no-repeat;background-position:100% 100%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header{padding:50px 15px 40px;background-image:none}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header{padding-left:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating{padding:90px 0 100px 60px;background-image:url(../img/charlie2x.png);background-position:right top 60px;background-size:173px 207px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating{padding-left:15px;padding-right:15px;padding-top:50px;background-size:140px 180px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-yir-title{font-size:32px;line-height:37px;color:#393f4c;margin-top:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-yir-title{font-size:26px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-yir-summary{font-weight:400;font-size:14px;line-height:20px;color:#393f4c;max-width:385px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-yir-summary{font-size:12px;max-width:230px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link{width:inherit}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link{width:inherit}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link:active,.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-export-link{color:#338eef;cursor:pointer}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-subtitle{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-subtitle svg{position:absolute;left:5px;bottom:-10px}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-title{font-size:20px;line-height:20px;margin-bottom:10px;margin-top:30px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-title{font-size:32px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-summary{font-weight:500;font-size:24px;line-height:32px;color:#828282;max-width:480px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-summary{font-size:16px;line-height:18px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-summary{font-size:16px;line-height:20px;max-width:400px}}.monsterinsights-report-year-in-review .monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-header{margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-header div{width:100%}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-report-title{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-report-subtitle{font-size:10px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-chart-content{padding:0 50px 15px 30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-chart-content{padding:0 15px 15px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-chart-content .monsterinsights-reports-bar-chart-holder{position:relative}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-chart-content .monsterinsights-reports-bar-chart-holder .monsterinsights-chart-tooltip{position:absolute;pointer-events:none}.monsterinsights-report-year-in-review .monsterinsights-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)}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box.monsterinsights-year-in-review-table-box-blur-report .monsterinsights-year-in-review-table-box-list{-webkit-filter:blur(5px);filter:blur(5px)}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header{padding:20px 30px;border-bottom:2px solid #f2f2f2;margin-bottom:0}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-title{display:inline-block}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-title .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-title .monsterinsights-report-title{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-subtitle{display:inline-block;float:right}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-subtitle .monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list{min-height:245px;padding-bottom:30px}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item{padding:9px 30px}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a{padding:0;border-radius:0;line-height:37px;line-height:inherit}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a:active,.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a:focus,.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a:hover{-webkit-box-shadow:none;box-shadow:none;background:none}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer{position:absolute;bottom:-34px;width:100%;left:0;text-align:center}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer{bottom:-40px}}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer .monsterinsights-yir-tooltip{font-weight:400;font-size:12px;color:#828282}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer .monsterinsights-yir-tooltip span{font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer .monsterinsights-yir-tooltip .monsterinsights-yir-icon{background:#dadada;border-radius:50%;padding:0;margin-right:10px;color:#fff;width:15px;height:15px;display:inline-block;line-height:16px}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart{border:0;margin:0;padding:0;width:100%}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-reports-pie-chart-holder{display:inline-block;float:left}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-reports-pie-chart-holder{display:block;float:none}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-reports-pie-chart-holder .monsterinsights-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%}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content{padding-left:50px;padding-top:35px;float:left}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content{padding-left:0;padding-top:20px;float:none}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-report-title{font-size:16px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-report-subtitle{font-size:14px;line-height:14px}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend{margin:10px 0 0}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li{display:inline-block;margin-right:30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li{margin-right:10px}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-color{border-radius:0;width:16px;height:16px;margin-bottom:-3px;margin-right:5px}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-text,.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-text,.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-value{font-size:10px}}.monsterinsights-report-year-in-review .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip{padding-top:15px;padding-bottom:15px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip a,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip h3,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip p{font-family:Lato,sans-serif;margin:0}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-icon{float:left;width:144px;text-align:center}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-icon{width:90px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-icon img{background:#338eef;padding:12px;border-radius:50%;margin-top:12px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content{float:left;width:calc(100% - 144px);padding-right:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content{padding-right:0;width:calc(100% - 90px)}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-title{font-weight:900;font-size:18px;line-height:27px;color:#333;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-title{font-size:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-summary{font-weight:400;font-size:18px;line-height:27px;color:#393f4c;margin-bottom:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-summary{font-size:12px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper{margin-top:15px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link:hover{color:#2469b2;-webkit-box-shadow:none;box-shadow:none}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay{position:absolute;top:0;left:0;width:calc(100% - 25px);height:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-details{font-size:14px;line-height:20px;font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success{background:#1ec185}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success:hover{opacity:.8;background:#10ad73}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay:hover{border:0;background:#2469b2;outline:none}.monsterinsights-report-year-in-review .monsterinsights-yir-audience{padding-bottom:85px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience{padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:685px;margin-bottom:80px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-summary{font-size:18px;line-height:20px;margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors{width:100%;margin-bottom:70px;padding-left:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors{margin-bottom:20px;padding-left:0;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions img,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors img{margin-bottom:15px;max-height:28px}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions h4,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors h4{font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions h4,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors h4{font-size:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions .monsterinsights-yir-number,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors .monsterinsights-yir-number{font-weight:900;font-size:60px;line-height:72px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions .monsterinsights-yir-number,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors .monsterinsights-yir-number{font-size:40px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-visitor-by-chart{margin-bottom:60px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-visitor-by-chart{margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics{padding-top:30px;padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:656px;margin-bottom:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-summary{font-size:18px;line-height:20px;margin-bottom:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries{display:block}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country{width:50%;margin-top:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-flag{display:block}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-flag{margin:0 auto}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-flag.monsterinsights-flag-zz{display:none}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-name{font-size:32px;line-height:38px;color:#393f4c;margin-top:0;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-name{font-size:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-visitors{font-weight:400;font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-visitors{font-size:16px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-countries-graph{width:50%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-countries-graph{width:100%}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-know-visitors{font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-know-visitors{font-size:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info{margin-top:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info{width:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info span,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info span,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info span{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info h2,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info h2,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info h2{font-size:30px;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info p,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info p,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info p{font-size:10px;line-height:10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior{padding-top:85px;padding-bottom:85px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior{padding-top:30px;padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:585px;margin-bottom:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data{display:block;margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary{width:50%;margin-top:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary img{width:32px;height:32px;margin-left:-3px;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary img{margin-left:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-time-spent{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent{font-size:32px;line-height:38px;color:#393f4c;margin-top:15px;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent{margin-top:5px;margin-bottom:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent .monsterinsights-yir-number{font-weight:900;font-size:48px;line-height:58px;color:#338eef;margin-right:10px;overflow-wrap:break-word}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent .monsterinsights-yir-number{font-size:30px;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent .monsterinsights-yir-type{font-weight:900;font-size:16px;line-height:103.8%;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-each-visitor-spent{font-size:14px;max-width:100%;margin-top:5px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-top-pages-graph{width:50%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-top-pages-graph{width:100%}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-most-visitors-device{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-most-visitors-device{font-size:20px;line-height:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info{margin-top:20px;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info{width:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info span,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info h2,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info p,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-grow-traffic-tip{margin-top:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-grow-traffic-tip{margin-top:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from{margin-top:55px;margin-bottom:100px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from{margin-top:20px;margin-bottom:60px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-title{font-size:32px;line-height:44px;color:#393f4c;margin-bottom:30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-title{font-size:20px;line-height:20px;margin-bottom:15px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals{display:block}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{width:50%;position:relative}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{width:100%}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords{padding-right:25px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords{padding-right:0;margin-bottom:60px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{padding-left:25px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{padding-left:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce{padding-top:85px;padding-bottom:30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce{padding-top:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:15px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number{width:55%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number{width:30%}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-products-sold,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-revenue{padding:75px 0}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-title{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-title{font-size:14px;line-height:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-amount{font-size:54px;line-height:65px;color:#338eef;overflow-wrap:break-word}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-amount{font-size:24px;line-height:40px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products{width:45%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products{width:70%}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning img,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular img{margin-bottom:5px}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning span,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning span,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular span{font-size:14px;line-height:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-product-title,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-product-title{font-weight:700;font-size:28px;line-height:32px;color:#338eef;margin-top:10px;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-product-title,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-product-title{font-size:16px;line-height:16px;margin-bottom:10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-count,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-count{font-weight:400;font-size:16px;line-height:19px;color:#828282}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-count,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-count{font-size:12px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-revenue-by-month{margin-bottom:50px}.monsterinsights-report-year-in-review .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you{padding-top:0;padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-title{font-size:54px;line-height:65px;text-align:center;color:#393f4c;max-width:588px;margin:0 auto 10px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-title{font-size:30px;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-summary{font-size:14px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-amazing-year{font-size:24px;line-height:24px;margin-bottom:10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors{text-align:center;margin-bottom:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors{margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author{display:inline-block;padding:0 45px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author{padding:0 10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-thumbnail{width:96px;height:96px;background-repeat:no-repeat;margin:0 auto 10px}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-thumbnail.chris{background-image:url(../img/chris.png)}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-thumbnail.syed{background-image:url(../img/syed.png)}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-name{font-weight:900;font-size:18px;line-height:22px;text-align:center;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-name{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review{display:block}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button{width:100%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content{text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content span{font-weight:900;font-size:14px;color:#fff}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content span{font-size:12px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content h3{font-weight:900;font-size:20px;line-height:31px;color:#fff}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content h3{font-size:18px;line-height:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating .monsterinsights-yir-five-star{margin:0;padding:12px 0 0;text-align:center}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating .monsterinsights-yir-five-star li{list-style:none;display:inline-block;margin-right:7px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating .monsterinsights-yir-five-star li{margin-right:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button{text-align:center;padding-top:5px}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a{background:#2469b3;border-radius:5px;text-align:center;height:38px;display:inline-block}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a:active,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a:hover{background:#123c68}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-title{font-size:36px;line-height:44px;color:#393f4c;margin-bottom:20px;max-width:638px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-title{font-size:20px;line-height:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-summary{font-weight:500;font-size:20px;line-height:24px;color:#393f4c;max-width:450px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-summary{font-size:14px;line-height:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins{margin-top:20px;margin-left:-30px;margin-right:-30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins{margin-left:0;margin-right:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon{width:100%;margin:30px 0;min-height:300px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top{padding-top:30px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-image{width:104px;float:left;padding-left:25px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-image .monsterinsights-addon-thumb{width:32px;height:32px;border:2px solid #e3f1ff;border-radius:5px;padding:10px;-webkit-box-sizing:content-box;box-sizing:content-box}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-text{width:calc(100% - 104px);float:left;padding-right:25px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-text .monsterinsights-addon-title{font-size:18px;line-height:24px;margin-top:0;font-family:Lato;margin-bottom:5px;color:#393f4c;font-weight:900}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-text .monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message{border-top:2px solid #e3f1ff;clear:both;padding:13px 25px;position:absolute;bottom:0;left:0;width:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-addon-status{float:right;line-height:32px;font-weight:900;font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-addon-status span{color:#d4393d}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button{line-height:32px;background:#338eef;border-radius:3px;display:inline-block;padding:0 30px;border:0;font-weight:700;font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-addon-status span{color:#64bfa5}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button:hover{background:rgba(51,142,239,.5)}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities{background-color:#338eef;padding-top:160px;margin-top:-90px;color:#fff}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities{padding-top:100px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h2{font-size:36px;line-height:43px;color:#fff;margin-bottom:15px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h2{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h3{font-weight:500;font-size:20px;line-height:24px;color:#fff;max-width:575px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h3{font-size:18px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-30px;padding-top:60px;padding-bottom:90px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities{display:block;margin-left:0;padding-bottom:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community{width:100%;background-color:#2469b2;border-radius:5px;margin-left:30px;padding:24px;position:relative;min-height:340px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community{margin-left:0;margin-bottom:30px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community{min-height:350px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-title{font-weight:900;font-size:20px;line-height:24px;margin-bottom:10px;margin-top:5px}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link,.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links{position:absolute;bottom:15px;left:24px;width:80%;width:calc(100% - 48px)}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link{background-color:#123c68;display:block}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link{padding:8px 10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links{margin:0}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li{float:left;margin-right:8px;margin-bottom:0}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li a{background-color:#123c68;display:block;margin:0;width:40px;height:40px;padding:10px}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li a:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li a:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-footer{display:block;text-align:center;padding:15px 0;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-footer div{width:100%;font-weight:500;font-size:16px;color:#fff;text-align:center}.monsterinsights-report-site-speed .monsterinsights-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%}@media screen and (max-width:767px){.monsterinsights-report-site-speed .monsterinsights-report-top{display:-webkit-box;display:-ms-flexbox;display:flex}}.monsterinsights-report-site-speed .monsterinsights-report-top h2.monsterinsights-report-top-title{margin-top:10px}.monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-export-pdf-report{margin-right:16px}.monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-export-pdf-report button{background-color:#f5f5f5;color:#4c6577;border-color:#dcdcdc}.monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-run-audit-btn .monsterinsights-run-audit{background-color:#3990ec;height:39px}.monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-run-audit-btn .monsterinsights-run-audit:hover{background-color:rgba(57,144,236,.8)}.monsterinsights-report-site-speed .monsterinsights-choose-device-button{margin-left:15px}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button{display:inline-block;text-align:center;background-color:#f5f5f5;color:#444;border-color:#dcdcdc;border-radius:5px;outline:none}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button:hover{background-color:#3990ec;border-color:#1c77db;outline:none}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button:hover .svg-icons{fill:#fff}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.active{background-color:#3990ec;border-color:#1c77db;color:#fff;outline:none}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.active .svg-icons{fill:#fff}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.mobile{border-top-right-radius:0;border-bottom-right-radius:0;border-right:0;width:45px;height:40px}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.mobile svg{margin-left:-6px;margin-top:-1px}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.desktop{border-top-left-radius:0;border-bottom-left-radius:0;border-left:0;width:54px;height:40px}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.desktop svg{margin-left:-6px;margin-top:-1px}.monsterinsights-report-site-speed .monsterinsights-site-speed-container{max-width:1010px}.monsterinsights-report-site-speed .monsterinsights-site-speed-device,.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights-report-site-speed .monsterinsights-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){.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator{width:100%;margin-bottom:25px}}@media screen and (min-width:768px) and (max-width:1024px){.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator{width:100%;margin-bottom:25px}}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-indicator-device-icon{margin-bottom:40px;text-align:center}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-indicator-device-icon .desktop{width:80px}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-indicator-percent-text{font-size:5em;color:#f2994a;text-align:center;font-weight:700}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-indicator-overall-text{display:inline-block;padding-top:2rem;font-weight:600;font-size:16px;text-align:center}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-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}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-progress-circle__percent{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-progress-circle__container{display:inline-block;position:relative}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-progress-circle__path{-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out;overflow:visible}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats{width:662px}@media screen and (max-width:767px){.monsterinsights-report-site-speed .monsterinsights-site-speed-stats{width:100%}}@media screen and (min-width:768px) and (max-width:1024px){.monsterinsights-report-site-speed .monsterinsights-site-speed-stats{width:100%}}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-report-flex{text-align:center}@media screen and (max-width:767px){.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-report-flex.monsterinsights-report-2-columns{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-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){.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-site-speed-stat{width:100%;margin-top:15px;margin-right:0}}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-site-speed-stat h2{font-size:40px;margin:0;padding:20px 0 10px}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-site-speed-stat p{color:#828282}.monsterinsights-report-site-speed .monsterinsights-how-to-improve h2.title{font-size:22px;color:#393f4c}div.monsterinsights-pdf-score{position:relative;margin:80px;left:-1px;top:1px}.monsterinsights-reports-page .monsterinsights-header .monsterinsights-container,.monsterinsights-reports-page .monsterinsights-navigation-bar .monsterinsights-container{padding-left:10px;padding-right:10px;width:auto}@media (max-width:782px){.monsterinsights-reports-page .monsterinsights-header .monsterinsights-container,.monsterinsights-reports-page .monsterinsights-navigation-bar .monsterinsights-container{padding:0}}@media (max-width:782px){.monsterinsights-reports-page .monsterinsights-report-top{margin-bottom:25px}}.monsterinsights_page.monsterinsights-downloading-pdf-report #wpbody{-webkit-filter:blur(15px);filter:blur(15px)}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion-item-details,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-pdf-score{display:block!important}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion-item-title,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion .monsterinsights-accordion div:not(:last-child){border:none!important}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion-item-trigger-icon,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-notificationsv3-container,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-progress-circle{display:none}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page{width:1120px}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-tabs-navigation button:first-child{border-right:0}@media (max-width:782px){.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-tabs-navigation button{font-size:18px;padding:23px 20px 25px;text-align:left}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:25%}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3){border-left:1px solid #d6e2ed}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3),.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(4){border-top:0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-reports-pie-chart .monsterinsights-pie-chart{margin:inherit}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:absolute;left:250px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);margin:0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-report-box{width:calc(50% - 12.5px);margin-top:0}}@media (max-width:991px){.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex{-ms-flex-flow:inherit;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:inherit}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-reports-pie-chart{width:50%}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-reports-pie-chart:first-child{margin:0 25px 0 0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-table-box{margin-left:20px;margin-top:0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-table-box:first-child{margin-left:0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-report-2-columns .monsterinsights-table-box{width:calc(50% - 12.5px)}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex.monsterinsights-interests-scroll-report .monsterinsights-table-box{width:100%}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-reports-pie-chart{width:calc(50% - 12.5px)}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-reports-pie-chart:first-child{margin:0 25px 0 0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-left:25px;margin-top:0}}.monsterinsights-report{padding:20px;position:relative}body.monsterinsights-reporting-page #wpbody-content{padding-bottom:0}body.monsterinsights-reporting-page #wpfooter{padding-top:0}body.monsterinsights-reporting-page #wpfooter:before{display:none}body.monsterinsights-reporting-page .monsterinsights-red{color:#d73638}body.monsterinsights-reporting-page .monsterinsights-green{color:#5cc0a5}body.monsterinsights-reporting-page .monsterinsights-report-top{margin-top:14px}@media (min-width:783px) and (max-width:1130px){body.monsterinsights-reporting-page .monsterinsights-report-top{margin-bottom:25px}}body.monsterinsights-reporting-page .monsterinsights-report-top h2{margin:14px 0 28px;display:inline-block;color:#393f4c;font-size:24px}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-report-top h2{display:none}}@media (min-width:783px) and (max-width:1130px){body.monsterinsights-reporting-page .monsterinsights-report-top h2{display:block;margin:0 0 25px}}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report{float:right;margin-right:25px}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-export-pdf-report{float:none;margin-right:0;margin-bottom:0;text-align:center}}@media (min-width:783px) and (max-width:1130px){body.monsterinsights-reporting-page .monsterinsights-export-pdf-report{float:none;margin-bottom:0}}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-button{background-color:#eceff5;color:#444;border-color:#d6e2ed}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-button:focus,body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-button:hover{background-color:#fff}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-button[disabled=disabled]{cursor:not-allowed}body.monsterinsights-reporting-page .monsterinsights-report-realtime .monsterinsights-export-pdf-report{margin-right:0}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{display:-webkit-box;display:-ms-flexbox;display:flex;float:right}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{float:none;width:100%;-ms-flex-flow:wrap;flex-flow:wrap}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker .monsterinsights-buttons-toggle{width:100%;margin-right:0}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker .monsterinsights-buttons-toggle .monsterinsights-button{width:50%}}@media (min-width:783px) and (max-width:1130px){body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{float:right}}body.monsterinsights-reporting-page .monsterinsights-datepicker{width:200px;background-color:#8ea4b4;font-weight:700;color:#fff;text-align:center;border-color:#708c9f;border-width:1px 1px 2px;border-radius:3px;height:40px;margin:0}body.monsterinsights-reporting-page .monsterinsights-datepicker::-webkit-input-placeholder{color:#fff}body.monsterinsights-reporting-page .monsterinsights-datepicker:-moz-placeholder,body.monsterinsights-reporting-page .monsterinsights-datepicker::-moz-placeholder{color:#fff}body.monsterinsights-reporting-page .monsterinsights-datepicker:-ms-input-placeholder{color:#fff}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-datepicker{width:calc(50% - 5px);margin-bottom:20px;margin-top:10px;font-size:14px}}body.monsterinsights-reporting-page .monsterinsights-mobile-details-toggle{width:calc(50% - 5px);margin-bottom:20px;margin-top:10px;margin-left:10px;font-weight:700}@media (min-width:783px){body.monsterinsights-reporting-page .monsterinsights-mobile-details-toggle{display:none}}body.monsterinsights-reporting-page .monsterinsights-info{color:#b6c9da;cursor:help;font-size:15px}body.monsterinsights-reporting-page .monsterinsights-report-row{margin-bottom:25px}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button{background:#eceff5;color:#464c57;border-bottom-width:1px;border-color:#d6e2ed;border-radius:0;line-height:18px;border-right:0;margin:0}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:hover{background:#fff}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:focus{z-index:10;position:relative}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;border-right:1px solid #d6e2ed}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button.monsterinsights-selected-interval{background:#fff;color:#509fe2;font-weight:700}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info{background:#8ea4b4;border-radius:3px;color:#fff;border:solid #708c9f;border-width:1px 1px 2px;position:relative;text-align:left;font-size:14px;font-weight:400;line-height:1.1;padding:10px 20px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info:focus,body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info:hover{background:#3a93dd;cursor:pointer}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info{max-width:100%;width:100%;padding:12px 20px 8px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info>span{overflow:hidden;white-space:pre;text-overflow:ellipsis;max-width:calc(100% - 40px);display:inline-block}}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info i{margin-left:38px;margin-right:12px}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info i{margin-left:10px;margin-right:10px;vertical-align:top;display:inline-block}}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info:after{width:0;height:0;border-color:#fff 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.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown{position:absolute;z-index:100;background:#fff;border:1px solid #d6e2ed;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.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown.monsterinsights-p-0{padding:0;max-width:auto;border:0}body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button{display:block;width:100%;margin-bottom:5px;text-align:left;background-color:#fff;color:#444;border:none}body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button.monsterinsights-interval-active,body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button:active,body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button:hover{background-color:#eceff4;color:#444}body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button i{margin-right:10px}body.monsterinsights-reporting-page .monsterinsights-datepicker,body.monsterinsights-reporting-page .monsterinsights-hide{display:none}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container{position:relative}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container{max-width:100%;width:100%}}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container.monsterinsights-hide,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .monsterinsights-hide{display:none}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-wrapper{display:block}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-wrapper .flatpickr-calendar{width:100%}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-calendar.static.open{position:relative;-webkit-box-shadow:none;box-shadow:none;border:none;width:100%}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:after,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:before{display:none}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-rContainer{width:100%;display:block}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .dayContainer,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-days{width:100%;max-width:100%}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day{max-width:100%}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange.inRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange.nextMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange.prevMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange:focus,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange:hover,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected.inRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected.nextMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected.prevMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected:focus,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected:hover,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange.inRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange.nextMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange.prevMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange:focus,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange:hover{background-color:#509fe2;border-color:#509fe2}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-months{padding-bottom:10px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .dayContainer{padding:0 28px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-weekdays{height:40px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-weekdaycontainer{background:#eceff4;padding:14px 28px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-current-month{font-size:15px;color:#444}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper{width:55px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper input.cur-year{padding:0 10px 0 5px;min-height:25px}.monsterinsights-reports-overview-datagraph-tooltip-container{padding:15px;background-color:#fff;border-radius:4px;-webkit-box-shadow:0 0 24px rgba(89,164,234,.33);box-shadow:0 0 24px rgba(89,164,234,.33)}#monsterinsights-chartjs-line-overview-tooltip{min-width:100px}.monsterinsights-reports-overview-datagraph-tooltip-title{color:#23282d;font-size:14px;font-weight:400;border-bottom:1px solid #d4e2ef;padding-bottom:5px}.monsterinsights-reports-overview-datagraph-tooltip-number{color:#23282d;font-size:24px;font-weight:400;margin-top:5px;margin-bottom:5px}.monsterinsights-reports-overview-datagraph-tooltip-descriptor{color:#23282d;font-size:12px;font-weight:400;margin-bottom:10px}.monsterinsights-reports-overview-datagraph-tooltip-trend{color:#23282d;font-size:16px;font-weight:400}#monsterinsights-chartjs-bar-tooltip,.monsterinsights-line-chart-tooltip{opacity:1;position:absolute;margin-left:-55px}.monsterinsights-report-tabs-navigation{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-report-tabs-navigation button{border-color:#d6e2ed;border-style:solid;border-width:1px 0;background:#eceff4;color:#444;width:100%;font-weight:700;text-align:left;font-size:18px;padding:23px 20px 25px;cursor:pointer;margin:0;position:relative}@media (max-width:782px){.monsterinsights-report-tabs-navigation button{font-size:14px;padding:13px 20px 15px;text-align:center}}.monsterinsights-report-tabs-navigation button:first-child{border-right:1px solid #d6e2ed}.monsterinsights-report-tabs-navigation button:focus{z-index:10}.monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button{background:#fff;color:#509fe2;border-bottom:none;border-top:2px solid #3a93dd;padding-top:20px}@media (max-width:782px){.monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button{padding-top:12px}}.monsterinsights-report-tabs-navigation button i{margin-right:10px;color:#8ba4b7}.monsterinsights-report-tabs{background:#fff;border:1px solid #d6e2ed;border-top:none}.monsterinsights-report-tabs .monsterinsights-report-tabs-content{padding:20px}.monsterinsights-report-infobox-row{display:-webkit-box;display:-ms-flexbox;display:flex;border:1px solid #d6e2ed}@media (max-width:782px){.monsterinsights-report-infobox-row{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:25%;background:#fff;border-left:1px solid #d6e2ed;padding:17px 20px 15px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-info{position:absolute;right:20px;top:18px}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:first-child{border-left:none}@media (max-width:782px){.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:50%}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3),.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(4){border-top:1px solid #d6e2ed}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3){border-left:none}}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-report-title{padding-right:18px;text-overflow:ellipsis;overflow:hidden;white-space:pre;line-height:1.2}.monsterinsights-report-title{font-size:18px;color:#393f4c;font-weight:700;margin-top:0}.monsterinsights-reports-infobox-number{font-size:40px;font-weight:200;display:inline-block;line-height:1;margin-top:11px;float:left}@media (max-width:782px){.monsterinsights-reports-infobox-number{font-size:36px;float:none}}.monsterinsights-reports-infobox-compare,.monsterinsights-reports-infobox-prev{float:right}@media (max-width:1280px){.monsterinsights-reports-infobox-compare,.monsterinsights-reports-infobox-prev{float:none;clear:both}}.monsterinsights-reports-infobox-prev{font-size:16px;margin-top:15px}.monsterinsights-reports-infobox-compare{clear:right;font-size:12px;color:#acbdc9}.monsterinsights-buttons-toggle{margin-right:25px}.monsterinsights-report-flex{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:991px){.monsterinsights-report-flex{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-pie-chart-legend-color{width:12px;height:12px;display:inline-block;margin-right:5px;border-radius:50%}.monsterinsights-pie-chart-legend-text{min-width:100px;margin-right:10px;display:inline-block;font-size:16px;color:#393f4c}.monsterinsights-pie-chart-legend-value{color:#393f4c;font-size:18px;font-weight:500}.monsterinsights-reports-pie-chart{width:50%;padding:20px;background:#fff;border:1px solid #d6e2ed;position:relative}.monsterinsights-reports-pie-chart:first-child{margin-right:25px}@media (max-width:991px){.monsterinsights-reports-pie-chart:first-child{margin:0 0 25px}}@media (max-width:991px){.monsterinsights-reports-pie-chart{width:100%}}.monsterinsights-reports-pie-chart .monsterinsights-reports-pie-chart-holder{position:relative}@media (max-width:782px){.monsterinsights-reports-pie-chart .monsterinsights-pie-chart{margin:0 auto}}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:absolute;left:250px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);margin:0}@media (max-width:782px){.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:relative;left:auto;top:auto;-webkit-transform:none;-ms-transform:none;transform:none;margin-top:20px}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend .monsterinsights-pie-chart-legend-value{float:right}}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-tooltip{position:absolute;pointer-events:none}.monsterinsights-reports-pie-chart .monsterinsights-info{position:absolute;top:20px;right:20px}.monsterinsights-table-box{border:1px solid #d6e2ed;background:#fff;width:100%;margin-left:20px;padding-top:18px;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-table-box:first-child{margin-left:0;margin-top:0}.monsterinsights-table-box h3{margin-left:20px}.monsterinsights-table-box .monsterinsights-info{position:absolute;top:20px;right:20px}@media (max-width:991px){.monsterinsights-table-box{margin-left:0;margin-top:20px}}.monsterinsights-table-box-footer{background:#f9fbff;border-top:1px solid #d6e2ed;padding:20px}.monsterinsights-table-box-footer:after{display:table;clear:both;content:""}@media (max-width:782px){.monsterinsights-table-box-footer>.monsterinsights-button{width:100%;text-align:center}}.monsterinsights-table-list-item{padding:12px 20px;min-height:43px;font-size:15px;display:-webkit-box;display:-ms-flexbox;display:flex}table .monsterinsights-table-list-item{display:table-row}.monsterinsights-table-list-item:nth-child(odd){background-color:#f9fbff}.monsterinsights-table-list-item .monsterinsights-reports-list-text{color:#393f4c;white-space:pre;text-overflow:ellipsis;overflow:hidden;vertical-align:middle;display:inline-block;width:100%;padding:1px;margin:-1px}.monsterinsights-table-list-item .monsterinsights-reports-list-text a{display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis}.monsterinsights-table-list-item .monsterinsights-reports-list-text img{display:inline-block;margin-right:10px;vertical-align:middle}.monsterinsights-table-list-item .monsterinsights-flag{-webkit-transform:scale(.5);-ms-transform:scale(.5);transform:scale(.5);display:inline-block;margin:-12px 0 -10px -8px}.monsterinsights-table-list-item a{text-decoration:none;color:#393f4c}.monsterinsights-table-list-item a:focus,.monsterinsights-table-list-item a:hover{color:#777}.monsterinsights-table-list-item .monsterinsights-reports-list-count{display:inline-block;min-width:30px;color:#657086;font-weight:400}.monsterinsights-table-list-item .monsterinsights-reports-list-number{color:#393f4c;font-size:15px;text-align:right;display:block;padding-left:5px}.monsterinsights-table-box-pagination{float:right;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:782px){.monsterinsights-table-box-pagination{float:none;width:100%;margin-top:20px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}.monsterinsights-table-box-pagination span{margin-right:20px;color:#8ba4b7}.monsterinsights-table-box-pagination .monsterinsights-buttons-toggle{margin-right:0}.monsterinsights-table-box-list{height:100%}.monsterinsights-table-box-table .monsterinsights-table-item-content{display:-webkit-box;display:-ms-flexbox;display:flex;word-break:break-all}@media (max-width:782px){.monsterinsights-table-box-table .monsterinsights-table-item-content{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-table-box-mobile .monsterinsights-table-box-table{overflow:auto}.monsterinsights-table-box-mobile .monsterinsights-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}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-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}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td.monsterinsights-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:#393f4c;padding-top:12px;padding-bottom:12px;border-top:none}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after{-webkit-transform:translateY(-50%) rotate(0);-ms-transform:translateY(-50%) rotate(0);transform:translateY(-50%) rotate(0)}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th{display:none;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1{display:block;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1 .monsterinsights-table-item-content,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1 .monsterinsights-table-item-content{padding-right:30px;position:relative;white-space:pre;text-overflow:ellipsis;overflow:hidden;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1 .monsterinsights-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:#acbdc9;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table .monsterinsights-table-mobile-heading{min-width:125px}.monsterinsights-table-box-mobile .monsterinsights-table-box-table .monsterinsights-table-list-item-empty td:first-child .monsterinsights-table-item-content:after{display:none}.monsterinsights-table-box-table table{width:100%;border-collapse:collapse}.monsterinsights-table-box-mobile .monsterinsights-table-box-table table{table-layout:fixed}.monsterinsights-table-box-table th{text-align:left;font-size:15px}.monsterinsights-table-box-table td,.monsterinsights-table-box-table th{border:none;padding:12px 10px;line-height:19px}.monsterinsights-table-box-table td:first-child,.monsterinsights-table-box-table th:first-child{padding-left:20px}.monsterinsights-table-box-table td:last-child,.monsterinsights-table-box-table th:last-child{padding-right:20px}.monsterinsights-report-2-columns{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-report-2-columns .monsterinsights-table-box{width:calc(50% - 12.5px)}@media (max-width:991px){.monsterinsights-report-2-columns .monsterinsights-table-box{width:100%}}.monsterinsights-report-2-columns.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:50%}.monsterinsights-report-2-columns .monsterinsights-table-box:nth-child(n+1){margin-left:0}.monsterinsights-report-2-columns .monsterinsights-table-box:nth-child(n+3){margin-top:25px}.monsterinsights-report-flex .monsterinsights-report-box{width:calc(50% - 12.5px)}@media (max-width:782px){.monsterinsights-report-flex .monsterinsights-report-box{width:100%;margin-top:20px}.monsterinsights-report-flex .monsterinsights-report-box:first-child{margin-top:0}}.monsterinsights-reports-tooltip{font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.monsterinsights-arrow{width:12.5px;height:13px;display:inline-block;background-size:contain;background-repeat:no-repeat}.monsterinsights-arrow.monsterinsights-down{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAXVBMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjip09rAAAAHnRSTlMA8IciAeKVlnAwD/bp1ci5on1URtyyl2dhPzccFQOiNcZVAAAAg0lEQVQoz9XNWQ6DMAxFUUNCmwBl7Dx4/8tsjCAvQd4A98OWdT5MaOr74UtaLTOPqhRByuNL7fxefs9ZoOPmlYsdmB3RLdzFOxV759BMHQv5REqWJjKV7NZEGRc4WVqpMqu4CBtdP4s8IoAujQwACAFAAI3OABAgJ4BGgJzkuVrt0+sPB0gVjZ7FTpgAAAAASUVORK5CYII=)}.monsterinsights-arrow.monsterinsights-down.monsterinsights-green{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMADloG+qFg0bOrm1RNGJCAd3FoRe/Zyci8kjIuLCxb7jsAAACJSURBVCjP3cpbFsIgDEXRC8G29mVrfWvmP00DcREtHYHnI0A2sB7T5LEVnZh52RLHkv8DeblCnhTnnc/DSlquZXWQd+1+ZIwrwoWlqzORv7EBS4jnjbLMCUYAfaKGPlIlaIFMO5UuKGidUhp6BYwsAULOhxVYldFewagAowxFxwiNQkkKZf38DW9jKhaFyDomEwAAAABJRU5ErkJggg==)}.monsterinsights-arrow.monsterinsights-up{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMA8Icj45jrlzD20bqkfXJkV0sUD9zWxbaLcT43HO3asg8AAACASURBVCjP3clJFsIgEADRisRA5slZuf81ReQ1UZILpBa1+SyaDeup3OotsPa4AUIJCCUQKYVIERKKcC7dKqEIp1fmfugDRcgVXui+JFAogtB60nDxYBDh5mng6p49WQj6IyNTZcsHP0JjbQfMd8Of0I9IIqEdSOGkXZWhrpsJ6Q1+nBSNjDcDLgAAAABJRU5ErkJggg==)}.monsterinsights-arrow.monsterinsights-up.monsterinsights-red{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAZCAMAAAAc9R5vAAAAV1BMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjhHHlCMAAAAHHRSTlMALTzj+N0V79kkHNVD0U5IIBnqy8K3VTcSB704vhc5cQAAAJRJREFUKM/VjUkSwyAMBIeACRhsvC+J/v/ORErZcOADmYOm1F0lIccH51HJoIl0xbQNfaOHKhdT4ZKmLfnoiGrGOirixpsH3p8ySmM7+Zp4bvIrWOaH8MkrrofXlzlmOaHwE1ATd2fx4jZvXAK7/FmgmUdkgWj4hFSPUqA3ZBIQ1w2FELMm5GTB+XOxV8S5EM3nvX4AV4MVrf6KAvgAAAAASUVORK5CYII=)}.monsterinsights-reports-overview-datagraph-tooltip-trend{font-weight:700}.monsterinsights-reports-overview-datagraph-tooltip-trend .monsterinsights-arrow{margin-right:5px}.monsterinsights-report-box{background:#fff;border:1px solid #d6e2ed;padding:0 20px 20px;position:relative}.monsterinsights-report-box .monsterinsights-info{position:absolute;right:20px;top:20px}.monsterinsights-report-box-icon-heading{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-report-box-icon-heading h3{color:#509fe2;margin-left:15px}.monsterinsights-realtime-large{font-size:150px;text-align:center;line-height:1.5;color:#393f4c}.monsterinsights-realtime-active{text-align:center;width:100%;font-size:25px;line-height:1;margin-top:-50px;color:#393f4c}.monsterinsights-realtime-box-content .monsterinsights-line-chart-tooltip{max-width:115px}#monsterinsights-chartjs-pie-age-tooltip{margin-left:23px;min-width:95px}.monsterinsights-blur .monsterinsights-report-top{pointer-events:none;-webkit-filter:blur(5px);filter:blur(5px)}.monsterinsights-blur .monsterinsights-report-row{-webkit-filter:blur(5px);filter:blur(5px)}.monsterinsights-blur .monsterinsights-report{min-height:850px}.monsterinsights-blur .upsell-blur{background:#fff;width:100%;min-height:100vh}.monsterinsights-blur .upsell-blur img{max-width:100%}.monsterinsights-reports-referral-icon{vertical-align:middle;margin-right:10px;margin-left:2px}.monsterinsights-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){.monsterinsights-upsell-inline .monsterinsights-upsell-inline-content{margin:-20px;padding:20px;background:hsla(0,0%,100%,.3)}}.monsterinsights-upsell-overlay .monsterinsights-upsell-content{display:-webkit-box;display:-ms-flexbox;display:flex;gap:32px}.monsterinsights-upsell-content{max-width:750px}.monsterinsights-upsell-content__features{margin-bottom:46px;-webkit-box-flex:1;-ms-flex:1;flex:1}.monsterinsights-upsell-content__img{width:278px;background-position:100% 100%;background-repeat:no-repeat;background-size:contain}.monsterinsights-upsell-content__img.upsell-publisher{background-image:url(../img/bg-publisher@2x.png)}.monsterinsights-upsell-content__img.upsell-queries{background-image:url(../img/bg-queries@2x.png)}.monsterinsights-upsell-content__img.upsell-forms{background-image:url(../img/bg-forms@2x.png)}.monsterinsights-upsell-content__img.upsell-realtime{background-image:url(../img/bg-realtime@2x.png)}.monsterinsights-upsell-content__img.upsell-ecommerce{background-image:url(../img/bg-ecommerce@2x.png)}.monsterinsights-upsell-content__img.upsell-dimensions{background-image:url(../img/bg-dimensions@2x.png);background-position:50%}.monsterinsights-upsell-content__img.upsell-sitespeed{background-image:url(../img/bg-sitespeed@2x.png)}.monsterinsights-upsell-content__img.upsell-media{background-image:url(../img/bg-media-upsell.svg);background-position:100%}.monsterinsights-upsell-content p{font-size:16px;color:#393f4c;line-height:1.8}.monsterinsights-upsell-content .monsterinsights-light{color:#657086}.monsterinsights-upsell-content .monsterinsights-button{font-size:17px;font-weight:700;padding:15px 25px;line-height:1}@media (max-width:782px){.monsterinsights-upsell-content .monsterinsights-button{font-size:15px}}.monsterinsights-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}.monsterinsights-upsell-overlay .monsterinsights-upsell-top{padding:26px 40px;display:-webkit-box;display:-ms-flexbox;display:flex;gap:16px}@media (max-width:782px){.monsterinsights-upsell-overlay .monsterinsights-upsell-top{padding:0 20px}}@media (max-width:782px){.monsterinsights-upsell-overlay{top:70px;width:calc(100% - 40px)}}.monsterinsights-upsell-overlay h3{text-align:left;color:#23262e;font-size:20px;line-height:100%;margin:0}.monsterinsights-upsell-overlay h4{font-size:16px;line-height:140%;color:#444}.monsterinsights-upsell-overlay p{margin:24px 0;font-size:15px;line-height:140%;color:#444}.monsterinsights-upsell-overlay .monsterinsights-upsell-content{border-top:1px solid #e2e4e9;padding:32px 0 0 40px}@media (max-width:782px){.monsterinsights-upsell-overlay .monsterinsights-upsell-content{padding-left:20px;padding-right:20px}}.monsterinsights-upsell-overlay .monsterinsights-upsell-content h3{font-size:23px;line-height:120%}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul{margin:16px auto 24px;display:grid;grid-gap:10px}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul.columns-1{grid-template-columns:1fr}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul.columns-2{grid-template-columns:1fr 1fr}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li{color:#393f4c;font-size:13px;padding-left:24px;position:relative;line-height:17px}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li:before{position:absolute;width:16px;height:17px;background:url(../img/bullet.svg) no-repeat 50%;left:0;display:inline-block;top:-1px;content:""}.monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-weight:700;font-size:18px;line-height:140%;background:#338eef;border:1px solid #1177e3;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:4px;padding:12px 24px;position:relative}.monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button:after{content:"";width:13px;height:15px;margin-left:12px;background:url(../img/icon-lock.svg) no-repeat 50%}.monsterinsights-upsell-overlay a{color:#393f4c}.monsterinsights-upsell-overlay a:hover{text-decoration:none}.monsterinsights-center,.monsterinsights-mobile-upsell{text-align:center}.monsterinsights-mobile-upsell .monsterinsights-notice{border-top:1px solid #d6e2ed;border-right:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-mobile-upsell .monsterinsights-notice-inner{margin-top:0}@media (min-width:783px){.monsterinsights-mobile-upsell{display:none}}.monsterinsights-mobile-upsell .monsterinsights-notice-success .monsterinsights-notice-button{margin-right:0}@media (max-width:782px){.monsterinsights-overview-upsell-desktop{display:none}}.monsterinsights-report-realtime .monsterinsights-table-box th:first-child{width:auto}.monsterinsights-reports-list-title{display:inline-block;word-break:break-all}@media (max-width:782px){.monsterinsights-reports-list-title{width:calc(100% - 30px);text-overflow:ellipsis;overflow:hidden}}.monsterinsights-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}.monsterinsights-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-left:25px}@media (max-width:991px){.monsterinsights-report-scroll:nth-child(2){width:100%;margin-left:0;margin-top:25px}}@media (max-width:782px){.monsterinsights-report-scroll{width:100%;margin-left:0}}.monsterinsights-report-scroll>h3{position:absolute;top:0}.monsterinsights-report-scroll .monsterinsights-realtime-active{margin:0 0 50px}.monsterinsights-report-scroll .monsterinsights-realtime-box-content{margin:25px 0}.monsterinsights-report-scroll .monsterinsights-realtime-large{line-height:1;margin:50px 0 0;font-size:80px}.monsterinsights-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 .monsterinsights-not-authenticated-notice{margin-left:-357px}}@media (max-width:960px){.monsterinsights-not-authenticated-notice{margin-left:-357px}}@media (max-width:750px){.monsterinsights-not-authenticated-notice{left:0;margin-left:0}}@media (min-width:750px) and (max-width:782px){.monsterinsights-not-authenticated-notice{margin-left:-375px}}.monsterinsights-not-authenticated-notice .monsterinsights-auth-manual-connect-paragraph{display:none}.monsterinsights-not-authenticated-notice h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input-authenticate{text-align:center}.monsterinsights-not-authenticated-notice .monsterinsights-license-button{line-height:1;margin-top:20px}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button{font-size:16px;padding:20px 40px;margin:20px 20px 10px;background:#8da4b5;border-color:#6f8ca0;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button:focus,.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button:hover{background-color:#7e98ab;border-color:#627f94;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt{background:#509fe2;border-color:#2e7fbe;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt:focus,.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-disabled{background:#f3f6ff;border-color:#d6e2eb;color:#8ba4b7}.monsterinsights-reports-list-has-overflow{cursor:pointer}.monsterinsights-admin-page .monsterinsights-lite-datepicker{text-align:center;padding:12px 12px 27px}.monsterinsights-admin-page .monsterinsights-lite-datepicker p{color:#444;font-size:15px;line-height:1.5;font-weight:700}.monsterinsights-admin-page .monsterinsights-lite-datepicker .monsterinsights-button-text{color:#509fe2;display:inline-block;width:auto}.monsterinsights-admin-page .monsterinsights-lite-datepicker .monsterinsights-button-text:focus,.monsterinsights-admin-page .monsterinsights-lite-datepicker .monsterinsights-button-text:hover{color:#3a93dd}.monsterinsights-admin-page .monsterinsights-lite-datepicker .monsterinsights-button-text i{margin-left:10px}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report-lite .monsterinsights-reports-intervals-dropdown{min-width:250px}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report-lite .monsterinsights-reports-intervals-dropdown .monsterinsights-button{background:rgba(0,0,0,0);color:#509fe2}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report-lite .monsterinsights-reports-intervals-dropdown .monsterinsights-button:focus,body.monsterinsights-reporting-page .monsterinsights-export-pdf-report-lite .monsterinsights-reports-intervals-dropdown .monsterinsights-button:hover{color:#3a93dd}body.monsterinsights-reporting-page .monsterinsights-notice-error.monsterinsights-license_expired{display:none!important}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-popup{width:600px;padding:2em 3.25em}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-actions{display:none!important}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-footer{display:block!important;text-align:center;padding-top:20px}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-footer a{display:inline-block}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-footer a.swal2-styled{padding-top:16px;padding-bottom:20px;margin-bottom:15px;text-decoration:none}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-footer a:nth-child(3){color:#393f4c!important}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .monsterinsights-expired-license-alert{text-align:left;padding-right:39px}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .monsterinsights-expired-license-alert h3{font-size:40px;margin:0 0 8px;padding:0}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .monsterinsights-expired-license-alert h4{font-size:20px;margin:0 0 10px;padding:0}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .monsterinsights-expired-license-alert p{font-size:16px;margin:0 0 10px;padding:0}
lite/assets/vue/css/reports.rtl.css CHANGED
@@ -2,4 +2,4 @@
2
 
3
  /*!
4
  * Generated with CSS Flag Sprite generator (https://www.flag-sprites.com/)
5
- */.monsterinsights-flag{display:inline-block;width:32px;height:32px;background:url(../img/flags.png) no-repeat}.monsterinsights-flag.monsterinsights-flag-ad{background-position:-32px 0}.monsterinsights-flag.monsterinsights-flag-ae{background-position:-64px 0}.monsterinsights-flag.monsterinsights-flag-af{background-position:-96px 0}.monsterinsights-flag.monsterinsights-flag-ag{background-position:-128px 0}.monsterinsights-flag.monsterinsights-flag-ai{background-position:-160px 0}.monsterinsights-flag.monsterinsights-flag-al{background-position:-192px 0}.monsterinsights-flag.monsterinsights-flag-am{background-position:-224px 0}.monsterinsights-flag.monsterinsights-flag-an{background-position:-256px 0}.monsterinsights-flag.monsterinsights-flag-ao{background-position:-288px 0}.monsterinsights-flag.monsterinsights-flag-ar{background-position:-320px 0}.monsterinsights-flag.monsterinsights-flag-as{background-position:-352px 0}.monsterinsights-flag.monsterinsights-flag-at{background-position:-384px 0}.monsterinsights-flag.monsterinsights-flag-au{background-position:-416px 0}.monsterinsights-flag.monsterinsights-flag-aw{background-position:-448px 0}.monsterinsights-flag.monsterinsights-flag-ax{background-position:-480px 0}.monsterinsights-flag.monsterinsights-flag-az{background-position:100% -32px}.monsterinsights-flag.monsterinsights-flag-ba{background-position:-32px -32px}.monsterinsights-flag.monsterinsights-flag-bb{background-position:-64px -32px}.monsterinsights-flag.monsterinsights-flag-bd{background-position:-96px -32px}.monsterinsights-flag.monsterinsights-flag-be{background-position:-128px -32px}.monsterinsights-flag.monsterinsights-flag-bf{background-position:-160px -32px}.monsterinsights-flag.monsterinsights-flag-bg{background-position:-192px -32px}.monsterinsights-flag.monsterinsights-flag-bh{background-position:-224px -32px}.monsterinsights-flag.monsterinsights-flag-bi{background-position:-256px -32px}.monsterinsights-flag.monsterinsights-flag-bj{background-position:-288px -32px}.monsterinsights-flag.monsterinsights-flag-bl{background-position:-320px -32px}.monsterinsights-flag.monsterinsights-flag-bm{background-position:-352px -32px}.monsterinsights-flag.monsterinsights-flag-bn{background-position:-384px -32px}.monsterinsights-flag.monsterinsights-flag-bo{background-position:-416px -32px}.monsterinsights-flag.monsterinsights-flag-br{background-position:-448px -32px}.monsterinsights-flag.monsterinsights-flag-bs{background-position:-480px -32px}.monsterinsights-flag.monsterinsights-flag-bt{background-position:100% -64px}.monsterinsights-flag.monsterinsights-flag-bw{background-position:-32px -64px}.monsterinsights-flag.monsterinsights-flag-by{background-position:-64px -64px}.monsterinsights-flag.monsterinsights-flag-bz{background-position:-96px -64px}.monsterinsights-flag.monsterinsights-flag-ca{background-position:-128px -64px}.monsterinsights-flag.monsterinsights-flag-cd{background-position:-160px -64px}.monsterinsights-flag.monsterinsights-flag-cf{background-position:-192px -64px}.monsterinsights-flag.monsterinsights-flag-cg{background-position:-224px -64px}.monsterinsights-flag.monsterinsights-flag-ch{background-position:-256px -64px}.monsterinsights-flag.monsterinsights-flag-ci{background-position:-288px -64px}.monsterinsights-flag.monsterinsights-flag-ck{background-position:-320px -64px}.monsterinsights-flag.monsterinsights-flag-cl{background-position:-352px -64px}.monsterinsights-flag.monsterinsights-flag-cm{background-position:-384px -64px}.monsterinsights-flag.monsterinsights-flag-cn{background-position:-416px -64px}.monsterinsights-flag.monsterinsights-flag-co{background-position:-448px -64px}.monsterinsights-flag.monsterinsights-flag-cr{background-position:-480px -64px}.monsterinsights-flag.monsterinsights-flag-cu{background-position:100% -96px}.monsterinsights-flag.monsterinsights-flag-cv{background-position:-32px -96px}.monsterinsights-flag.monsterinsights-flag-cw{background-position:-64px -96px}.monsterinsights-flag.monsterinsights-flag-cy{background-position:-96px -96px}.monsterinsights-flag.monsterinsights-flag-cz{background-position:-128px -96px}.monsterinsights-flag.monsterinsights-flag-de{background-position:-160px -96px}.monsterinsights-flag.monsterinsights-flag-dj{background-position:-192px -96px}.monsterinsights-flag.monsterinsights-flag-dk{background-position:-224px -96px}.monsterinsights-flag.monsterinsights-flag-dm{background-position:-256px -96px}.monsterinsights-flag.monsterinsights-flag-do{background-position:-288px -96px}.monsterinsights-flag.monsterinsights-flag-dz{background-position:-320px -96px}.monsterinsights-flag.monsterinsights-flag-ec{background-position:-352px -96px}.monsterinsights-flag.monsterinsights-flag-ee{background-position:-384px -96px}.monsterinsights-flag.monsterinsights-flag-eg{background-position:-416px -96px}.monsterinsights-flag.monsterinsights-flag-eh{background-position:-448px -96px}.monsterinsights-flag.monsterinsights-flag-er{background-position:-480px -96px}.monsterinsights-flag.monsterinsights-flag-es{background-position:100% -128px}.monsterinsights-flag.monsterinsights-flag-et{background-position:-32px -128px}.monsterinsights-flag.monsterinsights-flag-eu{background-position:-64px -128px}.monsterinsights-flag.monsterinsights-flag-fi{background-position:-96px -128px}.monsterinsights-flag.monsterinsights-flag-fj{background-position:-128px -128px}.monsterinsights-flag.monsterinsights-flag-fk{background-position:-160px -128px}.monsterinsights-flag.monsterinsights-flag-fm{background-position:-192px -128px}.monsterinsights-flag.monsterinsights-flag-fo{background-position:-224px -128px}.monsterinsights-flag.monsterinsights-flag-fr{background-position:-256px -128px}.monsterinsights-flag.monsterinsights-flag-ga{background-position:-288px -128px}.monsterinsights-flag.monsterinsights-flag-gb{background-position:-320px -128px}.monsterinsights-flag.monsterinsights-flag-gd{background-position:-352px -128px}.monsterinsights-flag.monsterinsights-flag-ge{background-position:-384px -128px}.monsterinsights-flag.monsterinsights-flag-gg{background-position:-416px -128px}.monsterinsights-flag.monsterinsights-flag-gh{background-position:-448px -128px}.monsterinsights-flag.monsterinsights-flag-gi{background-position:-480px -128px}.monsterinsights-flag.monsterinsights-flag-gl{background-position:100% -160px}.monsterinsights-flag.monsterinsights-flag-gm{background-position:-32px -160px}.monsterinsights-flag.monsterinsights-flag-gn{background-position:-64px -160px}.monsterinsights-flag.monsterinsights-flag-gp{background-position:-96px -160px}.monsterinsights-flag.monsterinsights-flag-gq{background-position:-128px -160px}.monsterinsights-flag.monsterinsights-flag-gr{background-position:-160px -160px}.monsterinsights-flag.monsterinsights-flag-gs{background-position:-192px -160px}.monsterinsights-flag.monsterinsights-flag-gt{background-position:-224px -160px}.monsterinsights-flag.monsterinsights-flag-gu{background-position:-256px -160px}.monsterinsights-flag.monsterinsights-flag-gw{background-position:-288px -160px}.monsterinsights-flag.monsterinsights-flag-gy{background-position:-320px -160px}.monsterinsights-flag.monsterinsights-flag-hk{background-position:-352px -160px}.monsterinsights-flag.monsterinsights-flag-hn{background-position:-384px -160px}.monsterinsights-flag.monsterinsights-flag-hr{background-position:-416px -160px}.monsterinsights-flag.monsterinsights-flag-ht{background-position:-448px -160px}.monsterinsights-flag.monsterinsights-flag-hu{background-position:-480px -160px}.monsterinsights-flag.monsterinsights-flag-ic{background-position:100% -192px}.monsterinsights-flag.monsterinsights-flag-id{background-position:-32px -192px}.monsterinsights-flag.monsterinsights-flag-ie{background-position:-64px -192px}.monsterinsights-flag.monsterinsights-flag-il{background-position:-96px -192px}.monsterinsights-flag.monsterinsights-flag-im{background-position:-128px -192px}.monsterinsights-flag.monsterinsights-flag-in{background-position:-160px -192px}.monsterinsights-flag.monsterinsights-flag-iq{background-position:-192px -192px}.monsterinsights-flag.monsterinsights-flag-ir{background-position:-224px -192px}.monsterinsights-flag.monsterinsights-flag-is{background-position:-256px -192px}.monsterinsights-flag.monsterinsights-flag-it{background-position:-288px -192px}.monsterinsights-flag.monsterinsights-flag-je{background-position:-320px -192px}.monsterinsights-flag.monsterinsights-flag-jm{background-position:-352px -192px}.monsterinsights-flag.monsterinsights-flag-jo{background-position:-384px -192px}.monsterinsights-flag.monsterinsights-flag-jp{background-position:-416px -192px}.monsterinsights-flag.monsterinsights-flag-ke{background-position:-448px -192px}.monsterinsights-flag.monsterinsights-flag-kg{background-position:-480px -192px}.monsterinsights-flag.monsterinsights-flag-kh{background-position:100% -224px}.monsterinsights-flag.monsterinsights-flag-ki{background-position:-32px -224px}.monsterinsights-flag.monsterinsights-flag-km{background-position:-64px -224px}.monsterinsights-flag.monsterinsights-flag-kn{background-position:-96px -224px}.monsterinsights-flag.monsterinsights-flag-kp{background-position:-128px -224px}.monsterinsights-flag.monsterinsights-flag-kr{background-position:-160px -224px}.monsterinsights-flag.monsterinsights-flag-kw{background-position:-192px -224px}.monsterinsights-flag.monsterinsights-flag-ky{background-position:-224px -224px}.monsterinsights-flag.monsterinsights-flag-kz{background-position:-256px -224px}.monsterinsights-flag.monsterinsights-flag-la{background-position:-288px -224px}.monsterinsights-flag.monsterinsights-flag-lb{background-position:-320px -224px}.monsterinsights-flag.monsterinsights-flag-lc{background-position:-352px -224px}.monsterinsights-flag.monsterinsights-flag-li{background-position:-384px -224px}.monsterinsights-flag.monsterinsights-flag-lk{background-position:-416px -224px}.monsterinsights-flag.monsterinsights-flag-lr{background-position:-448px -224px}.monsterinsights-flag.monsterinsights-flag-ls{background-position:-480px -224px}.monsterinsights-flag.monsterinsights-flag-lt{background-position:100% -256px}.monsterinsights-flag.monsterinsights-flag-lu{background-position:-32px -256px}.monsterinsights-flag.monsterinsights-flag-lv{background-position:-64px -256px}.monsterinsights-flag.monsterinsights-flag-ly{background-position:-96px -256px}.monsterinsights-flag.monsterinsights-flag-ma{background-position:-128px -256px}.monsterinsights-flag.monsterinsights-flag-mc{background-position:-160px -256px}.monsterinsights-flag.monsterinsights-flag-md{background-position:-192px -256px}.monsterinsights-flag.monsterinsights-flag-me{background-position:-224px -256px}.monsterinsights-flag.monsterinsights-flag-mf{background-position:-256px -256px}.monsterinsights-flag.monsterinsights-flag-mg{background-position:-288px -256px}.monsterinsights-flag.monsterinsights-flag-mh{background-position:-320px -256px}.monsterinsights-flag.monsterinsights-flag-mk{background-position:-352px -256px}.monsterinsights-flag.monsterinsights-flag-ml{background-position:-384px -256px}.monsterinsights-flag.monsterinsights-flag-mm{background-position:-416px -256px}.monsterinsights-flag.monsterinsights-flag-mn{background-position:-448px -256px}.monsterinsights-flag.monsterinsights-flag-mo{background-position:-480px -256px}.monsterinsights-flag.monsterinsights-flag-mp{background-position:100% -288px}.monsterinsights-flag.monsterinsights-flag-mq{background-position:-32px -288px}.monsterinsights-flag.monsterinsights-flag-mr{background-position:-64px -288px}.monsterinsights-flag.monsterinsights-flag-ms{background-position:-96px -288px}.monsterinsights-flag.monsterinsights-flag-mt{background-position:-128px -288px}.monsterinsights-flag.monsterinsights-flag-mu{background-position:-160px -288px}.monsterinsights-flag.monsterinsights-flag-mv{background-position:-192px -288px}.monsterinsights-flag.monsterinsights-flag-mw{background-position:-224px -288px}.monsterinsights-flag.monsterinsights-flag-mx{background-position:-256px -288px}.monsterinsights-flag.monsterinsights-flag-my{background-position:-288px -288px}.monsterinsights-flag.monsterinsights-flag-mz{background-position:-320px -288px}.monsterinsights-flag.monsterinsights-flag-na{background-position:-352px -288px}.monsterinsights-flag.monsterinsights-flag-nc{background-position:-384px -288px}.monsterinsights-flag.monsterinsights-flag-ne{background-position:-416px -288px}.monsterinsights-flag.monsterinsights-flag-nf{background-position:-448px -288px}.monsterinsights-flag.monsterinsights-flag-ng{background-position:-480px -288px}.monsterinsights-flag.monsterinsights-flag-ni{background-position:100% -320px}.monsterinsights-flag.monsterinsights-flag-nl{background-position:-32px -320px}.monsterinsights-flag.monsterinsights-flag-no{background-position:-64px -320px}.monsterinsights-flag.monsterinsights-flag-np{background-position:-96px -320px}.monsterinsights-flag.monsterinsights-flag-nr{background-position:-128px -320px}.monsterinsights-flag.monsterinsights-flag-nu{background-position:-160px -320px}.monsterinsights-flag.monsterinsights-flag-nz{background-position:-192px -320px}.monsterinsights-flag.monsterinsights-flag-om{background-position:-224px -320px}.monsterinsights-flag.monsterinsights-flag-pa{background-position:-256px -320px}.monsterinsights-flag.monsterinsights-flag-pe{background-position:-288px -320px}.monsterinsights-flag.monsterinsights-flag-pf{background-position:-320px -320px}.monsterinsights-flag.monsterinsights-flag-pg{background-position:-352px -320px}.monsterinsights-flag.monsterinsights-flag-ph{background-position:-384px -320px}.monsterinsights-flag.monsterinsights-flag-pk{background-position:-416px -320px}.monsterinsights-flag.monsterinsights-flag-pl{background-position:-448px -320px}.monsterinsights-flag.monsterinsights-flag-pn{background-position:-480px -320px}.monsterinsights-flag.monsterinsights-flag-pr{background-position:100% -352px}.monsterinsights-flag.monsterinsights-flag-ps{background-position:-32px -352px}.monsterinsights-flag.monsterinsights-flag-pt{background-position:-64px -352px}.monsterinsights-flag.monsterinsights-flag-pw{background-position:-96px -352px}.monsterinsights-flag.monsterinsights-flag-py{background-position:-128px -352px}.monsterinsights-flag.monsterinsights-flag-qa{background-position:-160px -352px}.monsterinsights-flag.monsterinsights-flag-re{background-position:-192px -352px}.monsterinsights-flag.monsterinsights-flag-ro{background-position:-224px -352px}.monsterinsights-flag.monsterinsights-flag-rs{background-position:-256px -352px}.monsterinsights-flag.monsterinsights-flag-ru{background-position:-288px -352px}.monsterinsights-flag.monsterinsights-flag-rw{background-position:-320px -352px}.monsterinsights-flag.monsterinsights-flag-sa{background-position:-352px -352px}.monsterinsights-flag.monsterinsights-flag-sb{background-position:-384px -352px}.monsterinsights-flag.monsterinsights-flag-sc{background-position:-416px -352px}.monsterinsights-flag.monsterinsights-flag-sd{background-position:-448px -352px}.monsterinsights-flag.monsterinsights-flag-se{background-position:-480px -352px}.monsterinsights-flag.monsterinsights-flag-sg{background-position:100% -384px}.monsterinsights-flag.monsterinsights-flag-sh{background-position:-32px -384px}.monsterinsights-flag.monsterinsights-flag-si{background-position:-64px -384px}.monsterinsights-flag.monsterinsights-flag-sk{background-position:-96px -384px}.monsterinsights-flag.monsterinsights-flag-sl{background-position:-128px -384px}.monsterinsights-flag.monsterinsights-flag-sm{background-position:-160px -384px}.monsterinsights-flag.monsterinsights-flag-sn{background-position:-192px -384px}.monsterinsights-flag.monsterinsights-flag-so{background-position:-224px -384px}.monsterinsights-flag.monsterinsights-flag-sr{background-position:-256px -384px}.monsterinsights-flag.monsterinsights-flag-ss{background-position:-288px -384px}.monsterinsights-flag.monsterinsights-flag-st{background-position:-320px -384px}.monsterinsights-flag.monsterinsights-flag-sv{background-position:-352px -384px}.monsterinsights-flag.monsterinsights-flag-sy{background-position:-384px -384px}.monsterinsights-flag.monsterinsights-flag-sz{background-position:-416px -384px}.monsterinsights-flag.monsterinsights-flag-tc{background-position:-448px -384px}.monsterinsights-flag.monsterinsights-flag-td{background-position:-480px -384px}.monsterinsights-flag.monsterinsights-flag-tf{background-position:100% -416px}.monsterinsights-flag.monsterinsights-flag-tg{background-position:-32px -416px}.monsterinsights-flag.monsterinsights-flag-th{background-position:-64px -416px}.monsterinsights-flag.monsterinsights-flag-tj{background-position:-96px -416px}.monsterinsights-flag.monsterinsights-flag-tk{background-position:-128px -416px}.monsterinsights-flag.monsterinsights-flag-tl{background-position:-160px -416px}.monsterinsights-flag.monsterinsights-flag-tm{background-position:-192px -416px}.monsterinsights-flag.monsterinsights-flag-tn{background-position:-224px -416px}.monsterinsights-flag.monsterinsights-flag-to{background-position:-256px -416px}.monsterinsights-flag.monsterinsights-flag-tr{background-position:-288px -416px}.monsterinsights-flag.monsterinsights-flag-tt{background-position:-320px -416px}.monsterinsights-flag.monsterinsights-flag-tv{background-position:-352px -416px}.monsterinsights-flag.monsterinsights-flag-tw{background-position:-384px -416px}.monsterinsights-flag.monsterinsights-flag-tz{background-position:-416px -416px}.monsterinsights-flag.monsterinsights-flag-ua{background-position:-448px -416px}.monsterinsights-flag.monsterinsights-flag-ug{background-position:-480px -416px}.monsterinsights-flag.monsterinsights-flag-us{background-position:100% -448px}.monsterinsights-flag.monsterinsights-flag-uy{background-position:-32px -448px}.monsterinsights-flag.monsterinsights-flag-uz{background-position:-64px -448px}.monsterinsights-flag.monsterinsights-flag-va{background-position:-96px -448px}.monsterinsights-flag.monsterinsights-flag-vc{background-position:-128px -448px}.monsterinsights-flag.monsterinsights-flag-ve{background-position:-160px -448px}.monsterinsights-flag.monsterinsights-flag-vg{background-position:-192px -448px}.monsterinsights-flag.monsterinsights-flag-vi{background-position:-224px -448px}.monsterinsights-flag.monsterinsights-flag-vn{background-position:-256px -448px}.monsterinsights-flag.monsterinsights-flag-vu{background-position:-288px -448px}.monsterinsights-flag.monsterinsights-flag-wf{background-position:-320px -448px}.monsterinsights-flag.monsterinsights-flag-ws{background-position:-352px -448px}.monsterinsights-flag.monsterinsights-flag-ye{background-position:-384px -448px}.monsterinsights-flag.monsterinsights-flag-yt{background-position:-416px -448px}.monsterinsights-flag.monsterinsights-flag-za{background-position:-448px -448px}.monsterinsights-flag.monsterinsights-flag-zm{background-position:-480px -448px}.monsterinsights-flag.monsterinsights-flag-zw{background-position:100% -480px}.monsterinsights-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}.monsterinsights-report-year-in-review.monsterinsights-yir-report-calculating-row{width:610px;margin-top:50px}@media (max-width:767px){.monsterinsights-report-year-in-review.monsterinsights-yir-report-calculating-row{width:100%;margin-top:20px}}.monsterinsights-report-year-in-review a,.monsterinsights-report-year-in-review h1,.monsterinsights-report-year-in-review h2,.monsterinsights-report-year-in-review h3,.monsterinsights-report-year-in-review h4,.monsterinsights-report-year-in-review h5,.monsterinsights-report-year-in-review p,.monsterinsights-report-year-in-review span{font-family:Lato,sans-serif;margin:0}.monsterinsights-report-year-in-review h1,.monsterinsights-report-year-in-review h2,.monsterinsights-report-year-in-review h3,.monsterinsights-report-year-in-review h4,.monsterinsights-report-year-in-review h5{font-weight:900}.monsterinsights-report-year-in-review p{font-style:normal;font-weight:400;font-size:14px;line-height:24px}.monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-yir-separator{border-left-color:#e0e0e0;border-right-color:#e0e0e0;border-top:1px solid #e0e0e0;border-bottom:1px solid #e0e0e0}.monsterinsights-report-year-in-review .monsterinsights-yir-footer,.monsterinsights-report-year-in-review .monsterinsights-yir-header,.monsterinsights-report-year-in-review section{padding:0 90px;clear:both;overflow:hidden}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-footer,.monsterinsights-report-year-in-review .monsterinsights-yir-header,.monsterinsights-report-year-in-review section{padding:0 15px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-footer,.monsterinsights-report-year-in-review .monsterinsights-yir-header,.monsterinsights-report-year-in-review section{padding:0 30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-text-right{text-align:left}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header{padding:90px 90px 90px 0;background-image:url(../img/charlie.png);background-repeat:no-repeat;background-position:0 100%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header{padding:50px 15px 40px;background-image:none}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header{padding-right:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating{padding:90px 60px 100px 0;background-image:url(../img/charlie2x.png);background-position:left top 60px;background-size:173px 207px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating{padding-right:15px;padding-left:15px;padding-top:50px;background-size:140px 180px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-yir-title{font-size:32px;line-height:37px;color:#393f4c;margin-top:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-yir-title{font-size:26px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-yir-summary{font-weight:400;font-size:14px;line-height:20px;color:#393f4c;max-width:385px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-yir-summary{font-size:12px;max-width:230px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link{width:inherit}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link{width:inherit}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link:active,.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-subtitle{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-subtitle svg{position:absolute;right:5px;bottom:-5px}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-title{font-size:20px;line-height:20px;margin-bottom:10px;margin-top:30px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-title{font-size:32px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-summary{font-weight:500;font-size:24px;line-height:32px;color:#828282;max-width:480px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-summary{font-size:16px;line-height:18px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-summary{font-size:16px;line-height:20px;max-width:400px}}.monsterinsights-report-year-in-review .monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-header{margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-header div{width:100%}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-report-title{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-report-subtitle{font-size:10px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-chart-content{padding:0 30px 15px 50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-chart-content{padding:0 15px 15px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-chart-content .monsterinsights-reports-bar-chart-holder{position:relative}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-chart-content .monsterinsights-reports-bar-chart-holder .monsterinsights-chart-tooltip{position:absolute;pointer-events:none}.monsterinsights-report-year-in-review .monsterinsights-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)}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box.monsterinsights-year-in-review-table-box-blur-report .monsterinsights-year-in-review-table-box-list{-webkit-filter:blur(5px);filter:blur(5px)}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header{padding:20px 30px;border-bottom:2px solid #f2f2f2;margin-bottom:30px}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-title{display:inline-block}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-title .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-title .monsterinsights-report-title{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-subtitle{display:inline-block;float:left}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-subtitle .monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list{padding-bottom:30px}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item{padding:9px 30px}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a{padding:0;border-radius:0;line-height:37px;line-height:inherit}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a:active,.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a:focus,.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a:hover{-webkit-box-shadow:none;box-shadow:none;background:none}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer{position:absolute;bottom:-34px;width:100%;right:0;text-align:center}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer{bottom:-40px}}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer .monsterinsights-yir-tooltip{font-weight:400;font-size:12px;color:#828282}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer .monsterinsights-yir-tooltip span{font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer .monsterinsights-yir-tooltip .monsterinsights-yir-icon{background:#dadada;border-radius:50%;padding:0;margin-left:10px;color:#fff;width:15px;height:15px;display:inline-block;line-height:16px}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart{border:0;margin:0;padding:0;width:100%}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-reports-pie-chart-holder{display:inline-block;float:right}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-reports-pie-chart-holder{display:block;float:none}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-reports-pie-chart-holder .monsterinsights-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%}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content{padding-right:50px;padding-top:35px;float:right}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content{padding-right:0;padding-top:20px;float:none}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-report-title{font-size:16px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-report-subtitle{font-size:14px;line-height:14px}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend{margin:10px 0 0}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li{display:inline-block;margin-left:30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li{margin-left:10px}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-color{border-radius:0;width:16px;height:16px;margin-bottom:-3px;margin-left:5px}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-text,.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-text,.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-value{font-size:10px}}.monsterinsights-report-year-in-review .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip{padding-top:15px;padding-bottom:15px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip a,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip h3,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip p{font-family:Lato,sans-serif;margin:0}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-icon{float:right;width:144px;text-align:center}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-icon{width:90px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-icon img{background:#338eef;padding:12px;border-radius:50%;margin-top:12px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content{float:right;width:calc(100% - 144px);padding-left:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content{padding-left:0;width:calc(100% - 90px)}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-title{font-weight:900;font-size:18px;line-height:27px;color:#333;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-title{font-size:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-summary{font-weight:400;font-size:18px;line-height:27px;color:#393f4c;margin-bottom:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-summary{font-size:12px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper{margin-top:15px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link:hover{color:#2469b2;-webkit-box-shadow:none;box-shadow:none}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay{position:absolute;top:0;right:0;width:calc(100% - 25px);height:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content{margin-top:66px;text-align:center;height:calc(100% - 66px);padding-top:80px;padding-left:25px;padding-right:25px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-details{font-size:14px;line-height:20px;font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success{background:#1ec185}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success:hover{opacity:.8;background:#10ad73}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay:hover{border:0;background:#2469b2;outline:none}.monsterinsights-report-year-in-review .monsterinsights-yir-audience{padding-bottom:85px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience{padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:685px;margin-bottom:80px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-summary{font-size:18px;line-height:20px;margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors{width:100%;margin-bottom:70px;padding-right:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors{margin-bottom:20px;padding-right:0;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions img,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors img{margin-bottom:15px;max-height:28px}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions h4,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors h4{font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions h4,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors h4{font-size:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions .monsterinsights-yir-number,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors .monsterinsights-yir-number{font-weight:900;font-size:60px;line-height:72px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions .monsterinsights-yir-number,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors .monsterinsights-yir-number{font-size:40px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-visitor-by-chart{margin-bottom:60px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-visitor-by-chart{margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics{padding-top:30px;padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:656px;margin-bottom:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-summary{font-size:18px;line-height:20px;margin-bottom:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries{display:block}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country{width:50%;margin-top:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-flag{display:block}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-flag{margin:0 auto}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-flag.monsterinsights-flag-zz{display:none}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-name{font-size:32px;line-height:38px;color:#393f4c;margin-top:0;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-name{font-size:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-visitors{font-weight:400;font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-visitors{font-size:16px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-countries-graph{width:50%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-countries-graph{width:100%}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-know-visitors{font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-know-visitors{font-size:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info{margin-top:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info{width:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info span,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info span,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info span{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info h2,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info h2,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info h2{font-size:30px;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info p,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info p,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info p{font-size:10px;line-height:10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior{padding-top:85px;padding-bottom:85px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior{padding-top:30px;padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:585px;margin-bottom:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data{display:block;margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary{width:50%;margin-top:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary img{width:32px;height:32px;margin-right:-3px;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary img{margin-right:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-time-spent{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent{font-size:32px;line-height:38px;color:#393f4c;margin-top:15px;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent{margin-top:5px;margin-bottom:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent .monsterinsights-yir-number{font-weight:900;font-size:48px;line-height:58px;color:#338eef;margin-left:10px;overflow-wrap:break-word}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent .monsterinsights-yir-number{font-size:30px;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent .monsterinsights-yir-type{font-weight:900;font-size:16px;line-height:103.8%;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-each-visitor-spent{font-size:14px;max-width:100%;margin-top:5px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-top-pages-graph{width:50%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-top-pages-graph{width:100%}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-most-visitors-device{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-most-visitors-device{font-size:20px;line-height:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info{margin-top:20px;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info{width:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info span,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info h2,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info p,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-grow-traffic-tip{margin-top:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-grow-traffic-tip{margin-top:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from{margin-top:55px;margin-bottom:100px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from{margin-top:20px;margin-bottom:60px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-title{font-size:32px;line-height:44px;color:#393f4c;margin-bottom:30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-title{font-size:20px;line-height:20px;margin-bottom:15px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals{display:block}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{width:50%;position:relative}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{width:100%}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords{padding-left:25px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords{padding-left:0;margin-bottom:60px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{padding-right:25px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{padding-right:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce{padding-top:85px;padding-bottom:30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce{padding-top:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:15px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number{width:55%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number{width:30%}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-products-sold,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-revenue{padding:75px 0}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-title{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-title{font-size:14px;line-height:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-amount{font-size:54px;line-height:65px;color:#338eef;overflow-wrap:break-word}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-amount{font-size:24px;line-height:40px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products{width:45%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products{width:70%}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning img,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular img{margin-bottom:5px}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning span,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning span,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular span{font-size:14px;line-height:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-product-title,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-product-title{font-weight:700;font-size:28px;line-height:32px;color:#338eef;margin-top:10px;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-product-title,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-product-title{font-size:16px;line-height:16px;margin-bottom:10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-count,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-count{font-weight:400;font-size:16px;line-height:19px;color:#828282}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-count,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-count{font-size:12px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-revenue-by-month{margin-bottom:50px}.monsterinsights-report-year-in-review .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you{padding-top:0;padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-title{font-size:54px;line-height:65px;text-align:center;color:#393f4c;max-width:588px;margin:0 auto 10px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-title{font-size:30px;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-summary{font-size:14px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-amazing-year{font-size:24px;line-height:24px;margin-bottom:10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors{text-align:center;margin-bottom:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors{margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author{display:inline-block;padding:0 45px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author{padding:0 10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-thumbnail{width:96px;height:96px;background-repeat:no-repeat;margin:0 auto 10px}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-thumbnail.chris{background-image:url(../img/chris.png)}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-thumbnail.syed{background-image:url(../img/syed.png)}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-name{font-weight:900;font-size:18px;line-height:22px;text-align:center;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-name{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review{display:block}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button{width:100%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content{text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content span{font-weight:900;font-size:14px;color:#fff}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content span{font-size:12px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content h3{font-weight:900;font-size:20px;line-height:31px;color:#fff}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content h3{font-size:18px;line-height:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating .monsterinsights-yir-five-star{margin:0;padding:12px 0 0;text-align:center}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating .monsterinsights-yir-five-star li{list-style:none;display:inline-block;margin-left:7px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating .monsterinsights-yir-five-star li{margin-left:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button{text-align:center;padding-top:5px}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a{background:#2469b3;border-radius:5px;text-align:center;height:38px;display:inline-block}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a:active,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a:hover{background:#123c68}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-title{font-size:36px;line-height:44px;color:#393f4c;margin-bottom:20px;max-width:638px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-title{font-size:20px;line-height:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-summary{font-weight:500;font-size:20px;line-height:24px;color:#393f4c;max-width:450px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-summary{font-size:14px;line-height:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins{margin-top:20px;margin-right:-30px;margin-left:-30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins{margin-right:0;margin-left:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon{width:100%;margin:30px 0;min-height:300px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top{padding-top:30px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-image{width:104px;float:right;padding-right:25px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-image .monsterinsights-addon-thumb{width:32px;height:32px;border:2px solid #e3f1ff;border-radius:5px;padding:10px;-webkit-box-sizing:content-box;box-sizing:content-box}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-text{width:calc(100% - 104px);float:right;padding-left:25px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-text .monsterinsights-addon-title{font-size:18px;line-height:24px;margin-top:0;font-family:Lato;margin-bottom:5px;color:#393f4c;font-weight:900}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-text .monsterinsights-addon-excerpt{font-weight:400;font-size:14px;line-height:18px;color:#393f4c;font-family:Lato;margin:0}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message{border-top:2px solid #e3f1ff;clear:both;padding:13px 25px;position:absolute;bottom:0;right:0;width:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-addon-status{float:left;line-height:32px;font-weight:900;font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-addon-status span{color:#d4393d}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button{line-height:32px;background:#338eef;border-radius:3px;display:inline-block;padding:0 30px;border:0;font-weight:700;font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-addon-status span{color:#64bfa5}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button:hover{background:rgba(51,142,239,.5)}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities{background-color:#338eef;padding-top:160px;margin-top:-90px;color:#fff}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities{padding-top:100px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h2{font-size:36px;line-height:43px;color:#fff;margin-bottom:15px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h2{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h3{font-weight:500;font-size:20px;line-height:24px;color:#fff;max-width:575px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h3{font-size:18px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities{display:-webkit-box;display:-ms-flexbox;display:flex;margin-right:-30px;padding-top:60px;padding-bottom:90px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities{display:block;margin-right:0;padding-bottom:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community{width:100%;background-color:#2469b2;border-radius:5px;margin-right:30px;padding:24px;position:relative;min-height:340px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community{margin-right:0;margin-bottom:30px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community{min-height:350px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-title{font-weight:900;font-size:20px;line-height:24px;margin-bottom:10px;margin-top:5px}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link,.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links{position:absolute;bottom:15px;right:24px;width:80%;width:calc(100% - 48px)}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link{background-color:#123c68;display:block}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link{padding:8px 10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links{margin:0}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li{float:right;margin-left:8px;margin-bottom:0}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li a{background-color:#123c68;display:block;margin:0;width:40px;height:40px;padding:10px}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li a:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li a:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-footer{display:block;text-align:center;padding:15px 0;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-footer div{width:100%;font-weight:500;font-size:16px;color:#fff;text-align:center}.monsterinsights-report-site-speed .monsterinsights-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%}@media screen and (max-width:767px){.monsterinsights-report-site-speed .monsterinsights-report-top{display:-webkit-box;display:-ms-flexbox;display:flex}}.monsterinsights-report-site-speed .monsterinsights-report-top h2.monsterinsights-report-top-title{margin-top:10px}.monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-export-pdf-report{margin-left:16px}.monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-export-pdf-report button{background-color:#f5f5f5;color:#4c6577;border-color:#dcdcdc}.monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-run-audit-btn .monsterinsights-run-audit{background-color:#3990ec;height:39px}.monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-run-audit-btn .monsterinsights-run-audit:hover{background-color:rgba(57,144,236,.8)}.monsterinsights-report-site-speed .monsterinsights-choose-device-button{margin-right:15px}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button{display:inline-block;text-align:center;background-color:#f5f5f5;color:#444;border-color:#dcdcdc;border-radius:5px;outline:none}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button:hover{background-color:#3990ec;border-color:#1c77db;outline:none}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button:hover .svg-icons{fill:#fff}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.active{background-color:#3990ec;border-color:#1c77db;color:#fff;outline:none}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.active .svg-icons{fill:#fff}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.mobile{border-top-left-radius:0;border-bottom-left-radius:0;border-left:0;width:45px;height:40px}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.mobile svg{margin-right:-6px;margin-top:-1px}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.desktop{border-top-right-radius:0;border-bottom-right-radius:0;border-right:0;width:54px;height:40px}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.desktop svg{margin-right:-6px;margin-top:-1px}.monsterinsights-report-site-speed .monsterinsights-site-speed-container{max-width:1010px}.monsterinsights-report-site-speed .monsterinsights-site-speed-device,.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights-report-site-speed .monsterinsights-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){.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator{width:100%;margin-bottom:25px}}@media screen and (min-width:768px) and (max-width:1024px){.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator{width:100%;margin-bottom:25px}}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-indicator-device-icon{margin-bottom:40px;text-align:center}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-indicator-device-icon .desktop{width:80px}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-indicator-percent-text{font-size:5em;color:#f2994a;text-align:center;font-weight:700}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-indicator-overall-text{display:inline-block;padding-top:2rem;font-weight:600;font-size:16px;text-align:center}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-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}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-progress-circle__percent{position:absolute;top:50%;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-progress-circle__container{display:inline-block;position:relative}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-progress-circle__path{-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out;overflow:visible}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats{width:662px}@media screen and (max-width:767px){.monsterinsights-report-site-speed .monsterinsights-site-speed-stats{width:100%}}@media screen and (min-width:768px) and (max-width:1024px){.monsterinsights-report-site-speed .monsterinsights-site-speed-stats{width:100%}}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-report-flex{text-align:center}@media screen and (max-width:767px){.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-report-flex.monsterinsights-report-2-columns{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-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){.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-site-speed-stat{width:100%;margin-top:15px;margin-left:0}}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-site-speed-stat h2{font-size:40px;margin:0;padding:20px 0 10px}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-site-speed-stat p{color:#828282}.monsterinsights-report-site-speed .monsterinsights-how-to-improve h2.title{font-size:22px;color:#393f4c}div.monsterinsights-pdf-score{position:relative;margin:80px;right:-1px;top:1px}.monsterinsights-reports-page .monsterinsights-header .monsterinsights-container,.monsterinsights-reports-page .monsterinsights-navigation-bar .monsterinsights-container{padding-right:10px;padding-left:10px;width:auto}@media (max-width:782px){.monsterinsights-reports-page .monsterinsights-header .monsterinsights-container,.monsterinsights-reports-page .monsterinsights-navigation-bar .monsterinsights-container{padding:0}}@media (max-width:782px){.monsterinsights-reports-page .monsterinsights-report-top{margin-bottom:25px}}.monsterinsights_page.monsterinsights-downloading-pdf-report #wpbody{-webkit-filter:blur(15px);filter:blur(15px)}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion-item-details,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-pdf-score{display:block!important}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion-item-title,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion .monsterinsights-accordion div:not(:last-child){border:none!important}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion-item-trigger-icon,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-notificationsv3-container,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-progress-circle{display:none}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page{width:1120px}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-tabs-navigation button:first-child{border-left:0}@media (max-width:782px){.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-tabs-navigation button{font-size:18px;padding:23px 20px 25px;text-align:right}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:25%}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3){border-right:1px solid #d6e2ed}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3),.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(4){border-top:0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-reports-pie-chart .monsterinsights-pie-chart{margin:inherit}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:absolute;right:250px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);margin:0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-report-box{width:calc(50% - 12.5px);margin-top:0}}@media (max-width:991px){.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex{-ms-flex-flow:inherit;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:inherit}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-reports-pie-chart{width:50%}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-reports-pie-chart:first-child{margin:0 0 0 25px}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-table-box{margin-right:20px;margin-top:0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-table-box:first-child{margin-right:0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-report-2-columns .monsterinsights-table-box{width:calc(50% - 12.5px)}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex.monsterinsights-interests-scroll-report .monsterinsights-table-box{width:100%}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-reports-pie-chart{width:calc(50% - 12.5px)}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-reports-pie-chart:first-child{margin:0 0 0 25px}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-right:25px;margin-top:0}}.monsterinsights-report{padding:20px;position:relative}body.monsterinsights-reporting-page #wpbody-content{padding-bottom:0}body.monsterinsights-reporting-page #wpfooter{padding-top:0}body.monsterinsights-reporting-page #wpfooter:before{display:none}body.monsterinsights-reporting-page .monsterinsights-red{color:#d73638}body.monsterinsights-reporting-page .monsterinsights-green{color:#5cc0a5}body.monsterinsights-reporting-page .monsterinsights-report-top{margin-top:14px}@media (min-width:783px) and (max-width:1130px){body.monsterinsights-reporting-page .monsterinsights-report-top{margin-bottom:25px}}body.monsterinsights-reporting-page .monsterinsights-report-top h2{margin:14px 0 28px;display:inline-block;color:#393f4c;font-size:24px}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-report-top h2{display:none}}@media (min-width:783px) and (max-width:1130px){body.monsterinsights-reporting-page .monsterinsights-report-top h2{display:block;margin:0 0 25px}}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report{float:left;margin-left:25px}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-export-pdf-report{float:none;margin-left:0;margin-bottom:0;text-align:center}}@media (min-width:783px) and (max-width:1130px){body.monsterinsights-reporting-page .monsterinsights-export-pdf-report{float:none;margin-bottom:0}}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-button{background-color:#eceff5;color:#444;border-color:#d6e2ed}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-button:focus,body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-button:hover{background-color:#fff}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-button[disabled=disabled]{cursor:not-allowed}body.monsterinsights-reporting-page .monsterinsights-report-realtime .monsterinsights-export-pdf-report{margin-left:0}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{display:-webkit-box;display:-ms-flexbox;display:flex;float:left}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{float:none;width:100%;-ms-flex-flow:wrap;flex-flow:wrap}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker .monsterinsights-buttons-toggle{width:100%;margin-left:0}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker .monsterinsights-buttons-toggle .monsterinsights-button{width:50%}}@media (min-width:783px) and (max-width:1130px){body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{float:left}}body.monsterinsights-reporting-page .monsterinsights-datepicker{width:200px;background-color:#8ea4b4;font-weight:700;color:#fff;text-align:center;border-color:#708c9f;border-width:1px 1px 2px;border-radius:3px;height:40px;margin:0}body.monsterinsights-reporting-page .monsterinsights-datepicker::-webkit-input-placeholder{color:#fff}body.monsterinsights-reporting-page .monsterinsights-datepicker:-moz-placeholder,body.monsterinsights-reporting-page .monsterinsights-datepicker::-moz-placeholder{color:#fff}body.monsterinsights-reporting-page .monsterinsights-datepicker:-ms-input-placeholder{color:#fff}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-datepicker{width:calc(50% - 5px);margin-bottom:20px;margin-top:10px;font-size:14px}}body.monsterinsights-reporting-page .monsterinsights-mobile-details-toggle{width:calc(50% - 5px);margin-bottom:20px;margin-top:10px;margin-right:10px;font-weight:700}@media (min-width:783px){body.monsterinsights-reporting-page .monsterinsights-mobile-details-toggle{display:none}}body.monsterinsights-reporting-page .monsterinsights-info{color:#b6c9da;cursor:help;font-size:15px}body.monsterinsights-reporting-page .monsterinsights-report-row{margin-bottom:25px}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button{background:#eceff5;color:#464c57;border-bottom-width:1px;border-color:#d6e2ed;border-radius:0;line-height:18px;border-left:0;margin:0}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:hover{background:#fff}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:focus{z-index:10;position:relative}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:first-child{border-top-right-radius:3px;border-bottom-right-radius:3px}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:last-child{border-top-left-radius:3px;border-bottom-left-radius:3px;border-left:1px solid #d6e2ed}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button.monsterinsights-selected-interval{background:#fff;color:#509fe2;font-weight:700}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info{background:#8ea4b4;border-radius:3px;color:#fff;border:solid #708c9f;border-width:1px 1px 2px;position:relative;text-align:right;font-size:14px;font-weight:400;line-height:1.1;padding:10px 20px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info:focus,body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info:hover{background:#3a93dd;cursor:pointer}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info{max-width:100%;width:100%;padding:12px 20px 8px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info>span{overflow:hidden;white-space:pre;text-overflow:ellipsis;max-width:calc(100% - 40px);display:inline-block}}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info i{margin-right:38px;margin-left:12px}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info i{margin-right:10px;margin-left:10px;vertical-align:top;display:inline-block}}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info:after{width:0;height:0;border-color:#fff 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.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown{position:absolute;z-index:100;background:#fff;border:1px solid #d6e2ed;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.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown.monsterinsights-p-0{padding:0;max-width:auto;border:0}body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button{display:block;width:100%;margin-bottom:5px;text-align:right;background-color:#fff;color:#444;border:none}body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button.monsterinsights-interval-active,body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button:active,body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button:hover{background-color:#eceff4;color:#444}body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button i{margin-left:10px}body.monsterinsights-reporting-page .monsterinsights-datepicker,body.monsterinsights-reporting-page .monsterinsights-hide{display:none}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container{position:relative}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container{max-width:100%;width:100%}}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container.monsterinsights-hide,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .monsterinsights-hide{display:none}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-wrapper{display:block}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-wrapper .flatpickr-calendar{width:100%}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-calendar.static.open{position:relative;-webkit-box-shadow:none;box-shadow:none;border:none;width:100%}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:after,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:before{display:none}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-rContainer{width:100%;display:block}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .dayContainer,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-days{width:100%;max-width:100%}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day{max-width:100%}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange.inRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange.nextMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange.prevMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange:focus,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange:hover,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected.inRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected.nextMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected.prevMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected:focus,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected:hover,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange.inRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange.nextMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange.prevMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange:focus,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange:hover{background-color:#509fe2;border-color:#509fe2}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-months{padding-bottom:10px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .dayContainer{padding:0 28px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-weekdays{height:40px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-weekdaycontainer{background:#eceff4;padding:14px 28px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-current-month{font-size:15px;color:#444}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper{width:55px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper input.cur-year{padding:0 5px 0 10px;min-height:25px}.monsterinsights-reports-overview-datagraph-tooltip-container{padding:15px;background-color:#fff;border-radius:4px;-webkit-box-shadow:0 0 24px rgba(89,164,234,.33);box-shadow:0 0 24px rgba(89,164,234,.33)}#monsterinsights-chartjs-line-overview-tooltip{min-width:100px}.monsterinsights-reports-overview-datagraph-tooltip-title{color:#23282d;font-size:14px;font-weight:400;border-bottom:1px solid #d4e2ef;padding-bottom:5px}.monsterinsights-reports-overview-datagraph-tooltip-number{color:#23282d;font-size:24px;font-weight:400;margin-top:5px;margin-bottom:5px}.monsterinsights-reports-overview-datagraph-tooltip-descriptor{color:#23282d;font-size:12px;font-weight:400;margin-bottom:10px}.monsterinsights-reports-overview-datagraph-tooltip-trend{color:#23282d;font-size:16px;font-weight:400}#monsterinsights-chartjs-bar-tooltip,.monsterinsights-line-chart-tooltip{opacity:1;position:absolute;margin-right:-55px}.monsterinsights-report-tabs-navigation{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-report-tabs-navigation button{border-color:#d6e2ed;border-style:solid;border-width:1px 0;background:#eceff4;color:#444;width:100%;font-weight:700;text-align:right;font-size:18px;padding:23px 20px 25px;cursor:pointer;margin:0;position:relative}@media (max-width:782px){.monsterinsights-report-tabs-navigation button{font-size:14px;padding:13px 20px 15px;text-align:center}}.monsterinsights-report-tabs-navigation button:first-child{border-left:1px solid #d6e2ed}.monsterinsights-report-tabs-navigation button:focus{z-index:10}.monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button{background:#fff;color:#509fe2;border-bottom:none;border-top:2px solid #3a93dd;padding-top:20px}@media (max-width:782px){.monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button{padding-top:12px}}.monsterinsights-report-tabs-navigation button i{margin-left:10px;color:#8ba4b7}.monsterinsights-report-tabs{background:#fff;border:1px solid #d6e2ed;border-top:none}.monsterinsights-report-tabs .monsterinsights-report-tabs-content{padding:20px}.monsterinsights-report-infobox-row{display:-webkit-box;display:-ms-flexbox;display:flex;border:1px solid #d6e2ed}@media (max-width:782px){.monsterinsights-report-infobox-row{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:25%;background:#fff;border-right:1px solid #d6e2ed;padding:17px 20px 15px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-info{position:absolute;left:20px;top:18px}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:first-child{border-right:none}@media (max-width:782px){.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:50%}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3),.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(4){border-top:1px solid #d6e2ed}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3){border-right:none}}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-report-title{padding-left:18px;text-overflow:ellipsis;overflow:hidden;white-space:pre;line-height:1.2}.monsterinsights-report-title{font-size:18px;color:#393f4c;font-weight:700;margin-top:0}.monsterinsights-reports-infobox-number{font-size:40px;font-weight:200;display:inline-block;line-height:1;margin-top:11px;float:right}@media (max-width:782px){.monsterinsights-reports-infobox-number{font-size:36px;float:none}}.monsterinsights-reports-infobox-compare,.monsterinsights-reports-infobox-prev{float:left}@media (max-width:1280px){.monsterinsights-reports-infobox-compare,.monsterinsights-reports-infobox-prev{float:none;clear:both}}.monsterinsights-reports-infobox-prev{font-size:16px;margin-top:15px}.monsterinsights-reports-infobox-compare{clear:left;font-size:12px;color:#acbdc9}.monsterinsights-buttons-toggle{margin-left:25px}.monsterinsights-report-flex{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:991px){.monsterinsights-report-flex{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-pie-chart-legend-color{width:12px;height:12px;display:inline-block;margin-left:5px;border-radius:50%}.monsterinsights-pie-chart-legend-text{min-width:100px;margin-left:10px;display:inline-block;font-size:16px;color:#393f4c}.monsterinsights-pie-chart-legend-value{color:#393f4c;font-size:18px;font-weight:500}.monsterinsights-reports-pie-chart{width:50%;padding:20px;background:#fff;border:1px solid #d6e2ed;position:relative}.monsterinsights-reports-pie-chart:first-child{margin-left:25px}@media (max-width:991px){.monsterinsights-reports-pie-chart:first-child{margin:0 0 25px}}@media (max-width:991px){.monsterinsights-reports-pie-chart{width:100%}}.monsterinsights-reports-pie-chart .monsterinsights-reports-pie-chart-holder{position:relative}@media (max-width:782px){.monsterinsights-reports-pie-chart .monsterinsights-pie-chart{margin:0 auto}}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:absolute;right:250px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);margin:0}@media (max-width:782px){.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:relative;right:auto;top:auto;-webkit-transform:none;-ms-transform:none;transform:none;margin-top:20px}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend .monsterinsights-pie-chart-legend-value{float:left}}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-tooltip{position:absolute;pointer-events:none}.monsterinsights-reports-pie-chart .monsterinsights-info{position:absolute;top:20px;left:20px}.monsterinsights-table-box{border:1px solid #d6e2ed;background:#fff;width:100%;margin-right:20px;padding-top:18px;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-table-box:first-child{margin-right:0;margin-top:0}.monsterinsights-table-box h3{margin-right:20px}.monsterinsights-table-box .monsterinsights-info{position:absolute;top:20px;left:20px}@media (max-width:991px){.monsterinsights-table-box{margin-right:0;margin-top:20px}}.monsterinsights-table-box-footer{background:#f9fbff;border-top:1px solid #d6e2ed;padding:20px}.monsterinsights-table-box-footer:after{display:table;clear:both;content:""}@media (max-width:782px){.monsterinsights-table-box-footer>.monsterinsights-button{width:100%;text-align:center}}.monsterinsights-table-list-item{padding:12px 20px;min-height:43px;font-size:15px;display:-webkit-box;display:-ms-flexbox;display:flex}table .monsterinsights-table-list-item{display:table-row}.monsterinsights-table-list-item:nth-child(odd){background-color:#f9fbff}.monsterinsights-table-list-item .monsterinsights-reports-list-text{color:#393f4c;white-space:pre;text-overflow:ellipsis;overflow:hidden;vertical-align:middle;display:inline-block;width:100%;padding:1px;margin:-1px}.monsterinsights-table-list-item .monsterinsights-reports-list-text a{display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis}.monsterinsights-table-list-item .monsterinsights-reports-list-text img{display:inline-block;margin-left:10px;vertical-align:middle}.monsterinsights-table-list-item .monsterinsights-flag{-webkit-transform:scale(.5);-ms-transform:scale(.5);transform:scale(.5);display:inline-block;margin:-12px -8px -10px 0}.monsterinsights-table-list-item a{text-decoration:none;color:#393f4c}.monsterinsights-table-list-item a:focus,.monsterinsights-table-list-item a:hover{color:#777}.monsterinsights-table-list-item .monsterinsights-reports-list-count{display:inline-block;min-width:30px;color:#657086;font-weight:400}.monsterinsights-table-list-item .monsterinsights-reports-list-number{color:#393f4c;font-size:15px;text-align:left;display:block;padding-right:5px}.monsterinsights-table-box-pagination{float:left;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:782px){.monsterinsights-table-box-pagination{float:none;width:100%;margin-top:20px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}.monsterinsights-table-box-pagination span{margin-left:20px;color:#8ba4b7}.monsterinsights-table-box-pagination .monsterinsights-buttons-toggle{margin-left:0}.monsterinsights-table-box-list{height:100%}.monsterinsights-table-box-table .monsterinsights-table-item-content{display:-webkit-box;display:-ms-flexbox;display:flex;word-break:break-all}@media (max-width:782px){.monsterinsights-table-box-table .monsterinsights-table-item-content{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-table-box-mobile .monsterinsights-table-box-table{overflow:auto}.monsterinsights-table-box-mobile .monsterinsights-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}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-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}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td.monsterinsights-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:#393f4c;padding-top:12px;padding-bottom:12px;border-top:none}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after{-webkit-transform:translateY(-50%) rotate(0);-ms-transform:translateY(-50%) rotate(0);transform:translateY(-50%) rotate(0)}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th{display:none;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1{display:block;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1 .monsterinsights-table-item-content,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1 .monsterinsights-table-item-content{padding-left:30px;position:relative;white-space:pre;text-overflow:ellipsis;overflow:hidden;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1 .monsterinsights-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:#acbdc9;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table .monsterinsights-table-mobile-heading{min-width:125px}.monsterinsights-table-box-mobile .monsterinsights-table-box-table .monsterinsights-table-list-item-empty td:first-child .monsterinsights-table-item-content:after{display:none}.monsterinsights-table-box-table table{width:100%;border-collapse:collapse}.monsterinsights-table-box-mobile .monsterinsights-table-box-table table{table-layout:fixed}.monsterinsights-table-box-table th{text-align:right;font-size:15px}.monsterinsights-table-box-table td,.monsterinsights-table-box-table th{border:none;padding:12px 10px;line-height:19px}.monsterinsights-table-box-table td:first-child,.monsterinsights-table-box-table th:first-child{padding-right:20px}.monsterinsights-table-box-table td:last-child,.monsterinsights-table-box-table th:last-child{padding-left:20px}.monsterinsights-report-2-columns{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-report-2-columns .monsterinsights-table-box{width:calc(50% - 12.5px)}@media (max-width:991px){.monsterinsights-report-2-columns .monsterinsights-table-box{width:100%}}.monsterinsights-report-2-columns.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:50%}.monsterinsights-report-2-columns .monsterinsights-table-box:nth-child(n+1){margin-right:0}.monsterinsights-report-2-columns .monsterinsights-table-box:nth-child(n+3){margin-top:25px}.monsterinsights-report-flex .monsterinsights-report-box{width:calc(50% - 12.5px)}@media (max-width:782px){.monsterinsights-report-flex .monsterinsights-report-box{width:100%;margin-top:20px}.monsterinsights-report-flex .monsterinsights-report-box:first-child{margin-top:0}}.monsterinsights-reports-tooltip{font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.monsterinsights-arrow{width:12.5px;height:13px;display:inline-block;background-size:contain;background-repeat:no-repeat}.monsterinsights-arrow.monsterinsights-down{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAXVBMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjip09rAAAAHnRSTlMA8IciAeKVlnAwD/bp1ci5on1URtyyl2dhPzccFQOiNcZVAAAAg0lEQVQoz9XNWQ6DMAxFUUNCmwBl7Dx4/8tsjCAvQd4A98OWdT5MaOr74UtaLTOPqhRByuNL7fxefs9ZoOPmlYsdmB3RLdzFOxV759BMHQv5REqWJjKV7NZEGRc4WVqpMqu4CBtdP4s8IoAujQwACAFAAI3OABAgJ4BGgJzkuVrt0+sPB0gVjZ7FTpgAAAAASUVORK5CYII=)}.monsterinsights-arrow.monsterinsights-down.monsterinsights-green{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMADloG+qFg0bOrm1RNGJCAd3FoRe/Zyci8kjIuLCxb7jsAAACJSURBVCjP3cpbFsIgDEXRC8G29mVrfWvmP00DcREtHYHnI0A2sB7T5LEVnZh52RLHkv8DeblCnhTnnc/DSlquZXWQd+1+ZIwrwoWlqzORv7EBS4jnjbLMCUYAfaKGPlIlaIFMO5UuKGidUhp6BYwsAULOhxVYldFewagAowxFxwiNQkkKZf38DW9jKhaFyDomEwAAAABJRU5ErkJggg==)}.monsterinsights-arrow.monsterinsights-up{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMA8Icj45jrlzD20bqkfXJkV0sUD9zWxbaLcT43HO3asg8AAACASURBVCjP3clJFsIgEADRisRA5slZuf81ReQ1UZILpBa1+SyaDeup3OotsPa4AUIJCCUQKYVIERKKcC7dKqEIp1fmfugDRcgVXui+JFAogtB60nDxYBDh5mng6p49WQj6IyNTZcsHP0JjbQfMd8Of0I9IIqEdSOGkXZWhrpsJ6Q1+nBSNjDcDLgAAAABJRU5ErkJggg==)}.monsterinsights-arrow.monsterinsights-up.monsterinsights-red{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAZCAMAAAAc9R5vAAAAV1BMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjhHHlCMAAAAHHRSTlMALTzj+N0V79kkHNVD0U5IIBnqy8K3VTcSB704vhc5cQAAAJRJREFUKM/VjUkSwyAMBIeACRhsvC+J/v/ORErZcOADmYOm1F0lIccH51HJoIl0xbQNfaOHKhdT4ZKmLfnoiGrGOirixpsH3p8ySmM7+Zp4bvIrWOaH8MkrrofXlzlmOaHwE1ATd2fx4jZvXAK7/FmgmUdkgWj4hFSPUqA3ZBIQ1w2FELMm5GTB+XOxV8S5EM3nvX4AV4MVrf6KAvgAAAAASUVORK5CYII=)}.monsterinsights-reports-overview-datagraph-tooltip-trend{font-weight:700}.monsterinsights-reports-overview-datagraph-tooltip-trend .monsterinsights-arrow{margin-left:5px}.monsterinsights-report-box{background:#fff;border:1px solid #d6e2ed;padding:0 20px 20px;position:relative}.monsterinsights-report-box .monsterinsights-info{position:absolute;left:20px;top:20px}.monsterinsights-report-box-icon-heading{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-report-box-icon-heading h3{color:#509fe2;margin-right:15px}.monsterinsights-realtime-large{font-size:150px;text-align:center;line-height:1.5;color:#393f4c}.monsterinsights-realtime-active{text-align:center;width:100%;font-size:25px;line-height:1;margin-top:-50px;color:#393f4c}.monsterinsights-realtime-box-content .monsterinsights-line-chart-tooltip{max-width:115px}#monsterinsights-chartjs-pie-age-tooltip{margin-right:23px;min-width:95px}.monsterinsights-blur .monsterinsights-report-top{pointer-events:none;-webkit-filter:blur(5px);filter:blur(5px)}.monsterinsights-blur .monsterinsights-report-row{-webkit-filter:blur(5px);filter:blur(5px)}.monsterinsights-blur .monsterinsights-report{min-height:850px}.monsterinsights-blur .upsell-blur{background:#fff;width:100%;min-height:100vh}.monsterinsights-blur .upsell-blur img{max-width:100%}.monsterinsights-reports-referral-icon{vertical-align:middle;margin-left:10px;margin-right:2px}.monsterinsights-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){.monsterinsights-upsell-inline .monsterinsights-upsell-inline-content{margin:-20px;padding:20px;background:hsla(0,0%,100%,.3)}}.monsterinsights-upsell-overlay .monsterinsights-upsell-content{display:-webkit-box;display:-ms-flexbox;display:flex;gap:32px}.monsterinsights-upsell-content{max-width:750px}.monsterinsights-upsell-content__features{margin-bottom:46px;-webkit-box-flex:1;-ms-flex:1;flex:1}.monsterinsights-upsell-content__img{width:278px;background-position:0 100%;background-repeat:no-repeat;background-size:contain}.monsterinsights-upsell-content__img.upsell-publisher{background-image:url(../img/bg-publisher@2x.png)}.monsterinsights-upsell-content__img.upsell-queries{background-image:url(../img/bg-queries@2x.png)}.monsterinsights-upsell-content__img.upsell-forms{background-image:url(../img/bg-forms@2x.png)}.monsterinsights-upsell-content__img.upsell-realtime{background-image:url(../img/bg-realtime@2x.png)}.monsterinsights-upsell-content__img.upsell-ecommerce{background-image:url(../img/bg-ecommerce@2x.png)}.monsterinsights-upsell-content__img.upsell-dimensions{background-image:url(../img/bg-dimensions@2x.png);background-position:50%}.monsterinsights-upsell-content__img.upsell-sitespeed{background-image:url(../img/bg-sitespeed@2x.png)}.monsterinsights-upsell-content__img.upsell-media{background-image:url(../img/bg-media-upsell.svg);background-position:0}.monsterinsights-upsell-content p{font-size:16px;color:#393f4c;line-height:1.8}.monsterinsights-upsell-content .monsterinsights-light{color:#657086}.monsterinsights-upsell-content .monsterinsights-button{font-size:17px;font-weight:700;padding:15px 25px;line-height:1}@media (max-width:782px){.monsterinsights-upsell-content .monsterinsights-button{font-size:15px}}.monsterinsights-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}.monsterinsights-upsell-overlay .monsterinsights-upsell-top{padding:26px 40px;display:-webkit-box;display:-ms-flexbox;display:flex;gap:16px}@media (max-width:782px){.monsterinsights-upsell-overlay .monsterinsights-upsell-top{padding:0 20px}}@media (max-width:782px){.monsterinsights-upsell-overlay{top:70px;width:calc(100% - 40px)}}.monsterinsights-upsell-overlay h3{text-align:right;color:#23262e;font-size:20px;line-height:100%;margin:0}.monsterinsights-upsell-overlay h4{font-size:16px;line-height:140%;color:#444}.monsterinsights-upsell-overlay p{margin:24px 0;font-size:15px;line-height:140%;color:#444}.monsterinsights-upsell-overlay .monsterinsights-upsell-content{border-top:1px solid #e2e4e9;padding:32px 40px 0 0}@media (max-width:782px){.monsterinsights-upsell-overlay .monsterinsights-upsell-content{padding-right:20px;padding-left:20px}}.monsterinsights-upsell-overlay .monsterinsights-upsell-content h3{font-size:23px;line-height:120%}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul{margin:16px auto 24px;display:grid;grid-gap:10px}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul.columns-1{grid-template-columns:1fr}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul.columns-2{grid-template-columns:1fr 1fr}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li{color:#393f4c;font-size:13px;padding-right:24px;position:relative;line-height:17px}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li:before{position:absolute;width:16px;height:17px;background:url(../img/bullet.svg) no-repeat 50%;right:0;display:inline-block;top:-1px;content:""}.monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-weight:700;font-size:18px;line-height:140%;background:#338eef;border:1px solid #1177e3;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:4px;padding:12px 24px;position:relative}.monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button:after{content:"";width:13px;height:15px;margin-right:12px;background:url(../img/icon-lock.svg) no-repeat 50%}.monsterinsights-upsell-overlay a{color:#393f4c}.monsterinsights-upsell-overlay a:hover{text-decoration:none}.monsterinsights-center,.monsterinsights-mobile-upsell{text-align:center}.monsterinsights-mobile-upsell .monsterinsights-notice{border-top:1px solid #d6e2ed;border-left:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-mobile-upsell .monsterinsights-notice-inner{margin-top:0}@media (min-width:783px){.monsterinsights-mobile-upsell{display:none}}.monsterinsights-mobile-upsell .monsterinsights-notice-success .monsterinsights-notice-button{margin-left:0}@media (max-width:782px){.monsterinsights-overview-upsell-desktop{display:none}}.monsterinsights-report-realtime .monsterinsights-table-box th:first-child{width:auto}.monsterinsights-reports-list-title{display:inline-block;word-break:break-all}@media (max-width:782px){.monsterinsights-reports-list-title{width:calc(100% - 30px);text-overflow:ellipsis;overflow:hidden}}.monsterinsights-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}.monsterinsights-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-right:25px}@media (max-width:991px){.monsterinsights-report-scroll:nth-child(2){width:100%;margin-right:0;margin-top:25px}}@media (max-width:782px){.monsterinsights-report-scroll{width:100%;margin-right:0}}.monsterinsights-report-scroll>h3{position:absolute;top:0}.monsterinsights-report-scroll .monsterinsights-realtime-active{margin:0 0 50px}.monsterinsights-report-scroll .monsterinsights-realtime-box-content{margin:25px 0}.monsterinsights-report-scroll .monsterinsights-realtime-large{line-height:1;margin:50px 0 0;font-size:80px}.monsterinsights-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 .monsterinsights-not-authenticated-notice{margin-right:-357px}}@media (max-width:960px){.monsterinsights-not-authenticated-notice{margin-right:-357px}}@media (max-width:750px){.monsterinsights-not-authenticated-notice{right:0;margin-right:0}}@media (min-width:750px) and (max-width:782px){.monsterinsights-not-authenticated-notice{margin-right:-375px}}.monsterinsights-not-authenticated-notice .monsterinsights-auth-manual-connect-paragraph{display:none}.monsterinsights-not-authenticated-notice h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input-authenticate{text-align:center}.monsterinsights-not-authenticated-notice .monsterinsights-license-button{line-height:1;margin-top:20px}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button{font-size:16px;padding:20px 40px;margin:20px 20px 10px;background:#8da4b5;border-color:#6f8ca0;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button:focus,.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button:hover{background-color:#7e98ab;border-color:#627f94;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt{background:#509fe2;border-color:#2e7fbe;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt:focus,.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-disabled{background:#f3f6ff;border-color:#d6e2eb;color:#8ba4b7}.monsterinsights-reports-list-has-overflow{cursor:pointer}.monsterinsights-admin-page .monsterinsights-lite-datepicker{text-align:center;padding:12px 12px 27px}.monsterinsights-admin-page .monsterinsights-lite-datepicker p{color:#444;font-size:15px;line-height:1.5;font-weight:700}.monsterinsights-admin-page .monsterinsights-lite-datepicker .monsterinsights-button-text{color:#509fe2;display:inline-block;width:auto}.monsterinsights-admin-page .monsterinsights-lite-datepicker .monsterinsights-button-text:focus,.monsterinsights-admin-page .monsterinsights-lite-datepicker .monsterinsights-button-text:hover{color:#3a93dd}.monsterinsights-admin-page .monsterinsights-lite-datepicker .monsterinsights-button-text i{margin-right:10px}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report-lite .monsterinsights-reports-intervals-dropdown{min-width:250px}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report-lite .monsterinsights-reports-intervals-dropdown .monsterinsights-button{background:rgba(0,0,0,0);color:#509fe2}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report-lite .monsterinsights-reports-intervals-dropdown .monsterinsights-button:focus,body.monsterinsights-reporting-page .monsterinsights-export-pdf-report-lite .monsterinsights-reports-intervals-dropdown .monsterinsights-button:hover{color:#3a93dd}body.monsterinsights-reporting-page .monsterinsights-notice-error.monsterinsights-license_expired{display:none!important}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-popup{width:600px;padding:2em 3.25em}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-actions{display:none!important}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-footer{display:block!important;text-align:center;padding-top:20px}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-footer a{display:inline-block}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-footer a.swal2-styled{padding-top:16px;padding-bottom:20px;margin-bottom:15px;text-decoration:none}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-footer a:nth-child(3){color:#393f4c!important}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .monsterinsights-expired-license-alert{text-align:right;padding-left:39px}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .monsterinsights-expired-license-alert h3{font-size:40px;margin:0 0 8px;padding:0}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .monsterinsights-expired-license-alert h4{font-size:20px;margin:0 0 10px;padding:0}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .monsterinsights-expired-license-alert p{font-size:16px;margin:0 0 10px;padding:0}
2
 
3
  /*!
4
  * Generated with CSS Flag Sprite generator (https://www.flag-sprites.com/)
5
+ */.monsterinsights-flag{display:inline-block;width:32px;height:32px;background:url(../img/flags.png) no-repeat}.monsterinsights-flag.monsterinsights-flag-ad{background-position:-32px 0}.monsterinsights-flag.monsterinsights-flag-ae{background-position:-64px 0}.monsterinsights-flag.monsterinsights-flag-af{background-position:-96px 0}.monsterinsights-flag.monsterinsights-flag-ag{background-position:-128px 0}.monsterinsights-flag.monsterinsights-flag-ai{background-position:-160px 0}.monsterinsights-flag.monsterinsights-flag-al{background-position:-192px 0}.monsterinsights-flag.monsterinsights-flag-am{background-position:-224px 0}.monsterinsights-flag.monsterinsights-flag-an{background-position:-256px 0}.monsterinsights-flag.monsterinsights-flag-ao{background-position:-288px 0}.monsterinsights-flag.monsterinsights-flag-ar{background-position:-320px 0}.monsterinsights-flag.monsterinsights-flag-as{background-position:-352px 0}.monsterinsights-flag.monsterinsights-flag-at{background-position:-384px 0}.monsterinsights-flag.monsterinsights-flag-au{background-position:-416px 0}.monsterinsights-flag.monsterinsights-flag-aw{background-position:-448px 0}.monsterinsights-flag.monsterinsights-flag-ax{background-position:-480px 0}.monsterinsights-flag.monsterinsights-flag-az{background-position:100% -32px}.monsterinsights-flag.monsterinsights-flag-ba{background-position:-32px -32px}.monsterinsights-flag.monsterinsights-flag-bb{background-position:-64px -32px}.monsterinsights-flag.monsterinsights-flag-bd{background-position:-96px -32px}.monsterinsights-flag.monsterinsights-flag-be{background-position:-128px -32px}.monsterinsights-flag.monsterinsights-flag-bf{background-position:-160px -32px}.monsterinsights-flag.monsterinsights-flag-bg{background-position:-192px -32px}.monsterinsights-flag.monsterinsights-flag-bh{background-position:-224px -32px}.monsterinsights-flag.monsterinsights-flag-bi{background-position:-256px -32px}.monsterinsights-flag.monsterinsights-flag-bj{background-position:-288px -32px}.monsterinsights-flag.monsterinsights-flag-bl{background-position:-320px -32px}.monsterinsights-flag.monsterinsights-flag-bm{background-position:-352px -32px}.monsterinsights-flag.monsterinsights-flag-bn{background-position:-384px -32px}.monsterinsights-flag.monsterinsights-flag-bo{background-position:-416px -32px}.monsterinsights-flag.monsterinsights-flag-br{background-position:-448px -32px}.monsterinsights-flag.monsterinsights-flag-bs{background-position:-480px -32px}.monsterinsights-flag.monsterinsights-flag-bt{background-position:100% -64px}.monsterinsights-flag.monsterinsights-flag-bw{background-position:-32px -64px}.monsterinsights-flag.monsterinsights-flag-by{background-position:-64px -64px}.monsterinsights-flag.monsterinsights-flag-bz{background-position:-96px -64px}.monsterinsights-flag.monsterinsights-flag-ca{background-position:-128px -64px}.monsterinsights-flag.monsterinsights-flag-cd{background-position:-160px -64px}.monsterinsights-flag.monsterinsights-flag-cf{background-position:-192px -64px}.monsterinsights-flag.monsterinsights-flag-cg{background-position:-224px -64px}.monsterinsights-flag.monsterinsights-flag-ch{background-position:-256px -64px}.monsterinsights-flag.monsterinsights-flag-ci{background-position:-288px -64px}.monsterinsights-flag.monsterinsights-flag-ck{background-position:-320px -64px}.monsterinsights-flag.monsterinsights-flag-cl{background-position:-352px -64px}.monsterinsights-flag.monsterinsights-flag-cm{background-position:-384px -64px}.monsterinsights-flag.monsterinsights-flag-cn{background-position:-416px -64px}.monsterinsights-flag.monsterinsights-flag-co{background-position:-448px -64px}.monsterinsights-flag.monsterinsights-flag-cr{background-position:-480px -64px}.monsterinsights-flag.monsterinsights-flag-cu{background-position:100% -96px}.monsterinsights-flag.monsterinsights-flag-cv{background-position:-32px -96px}.monsterinsights-flag.monsterinsights-flag-cw{background-position:-64px -96px}.monsterinsights-flag.monsterinsights-flag-cy{background-position:-96px -96px}.monsterinsights-flag.monsterinsights-flag-cz{background-position:-128px -96px}.monsterinsights-flag.monsterinsights-flag-de{background-position:-160px -96px}.monsterinsights-flag.monsterinsights-flag-dj{background-position:-192px -96px}.monsterinsights-flag.monsterinsights-flag-dk{background-position:-224px -96px}.monsterinsights-flag.monsterinsights-flag-dm{background-position:-256px -96px}.monsterinsights-flag.monsterinsights-flag-do{background-position:-288px -96px}.monsterinsights-flag.monsterinsights-flag-dz{background-position:-320px -96px}.monsterinsights-flag.monsterinsights-flag-ec{background-position:-352px -96px}.monsterinsights-flag.monsterinsights-flag-ee{background-position:-384px -96px}.monsterinsights-flag.monsterinsights-flag-eg{background-position:-416px -96px}.monsterinsights-flag.monsterinsights-flag-eh{background-position:-448px -96px}.monsterinsights-flag.monsterinsights-flag-er{background-position:-480px -96px}.monsterinsights-flag.monsterinsights-flag-es{background-position:100% -128px}.monsterinsights-flag.monsterinsights-flag-et{background-position:-32px -128px}.monsterinsights-flag.monsterinsights-flag-eu{background-position:-64px -128px}.monsterinsights-flag.monsterinsights-flag-fi{background-position:-96px -128px}.monsterinsights-flag.monsterinsights-flag-fj{background-position:-128px -128px}.monsterinsights-flag.monsterinsights-flag-fk{background-position:-160px -128px}.monsterinsights-flag.monsterinsights-flag-fm{background-position:-192px -128px}.monsterinsights-flag.monsterinsights-flag-fo{background-position:-224px -128px}.monsterinsights-flag.monsterinsights-flag-fr{background-position:-256px -128px}.monsterinsights-flag.monsterinsights-flag-ga{background-position:-288px -128px}.monsterinsights-flag.monsterinsights-flag-gb{background-position:-320px -128px}.monsterinsights-flag.monsterinsights-flag-gd{background-position:-352px -128px}.monsterinsights-flag.monsterinsights-flag-ge{background-position:-384px -128px}.monsterinsights-flag.monsterinsights-flag-gg{background-position:-416px -128px}.monsterinsights-flag.monsterinsights-flag-gh{background-position:-448px -128px}.monsterinsights-flag.monsterinsights-flag-gi{background-position:-480px -128px}.monsterinsights-flag.monsterinsights-flag-gl{background-position:100% -160px}.monsterinsights-flag.monsterinsights-flag-gm{background-position:-32px -160px}.monsterinsights-flag.monsterinsights-flag-gn{background-position:-64px -160px}.monsterinsights-flag.monsterinsights-flag-gp{background-position:-96px -160px}.monsterinsights-flag.monsterinsights-flag-gq{background-position:-128px -160px}.monsterinsights-flag.monsterinsights-flag-gr{background-position:-160px -160px}.monsterinsights-flag.monsterinsights-flag-gs{background-position:-192px -160px}.monsterinsights-flag.monsterinsights-flag-gt{background-position:-224px -160px}.monsterinsights-flag.monsterinsights-flag-gu{background-position:-256px -160px}.monsterinsights-flag.monsterinsights-flag-gw{background-position:-288px -160px}.monsterinsights-flag.monsterinsights-flag-gy{background-position:-320px -160px}.monsterinsights-flag.monsterinsights-flag-hk{background-position:-352px -160px}.monsterinsights-flag.monsterinsights-flag-hn{background-position:-384px -160px}.monsterinsights-flag.monsterinsights-flag-hr{background-position:-416px -160px}.monsterinsights-flag.monsterinsights-flag-ht{background-position:-448px -160px}.monsterinsights-flag.monsterinsights-flag-hu{background-position:-480px -160px}.monsterinsights-flag.monsterinsights-flag-ic{background-position:100% -192px}.monsterinsights-flag.monsterinsights-flag-id{background-position:-32px -192px}.monsterinsights-flag.monsterinsights-flag-ie{background-position:-64px -192px}.monsterinsights-flag.monsterinsights-flag-il{background-position:-96px -192px}.monsterinsights-flag.monsterinsights-flag-im{background-position:-128px -192px}.monsterinsights-flag.monsterinsights-flag-in{background-position:-160px -192px}.monsterinsights-flag.monsterinsights-flag-iq{background-position:-192px -192px}.monsterinsights-flag.monsterinsights-flag-ir{background-position:-224px -192px}.monsterinsights-flag.monsterinsights-flag-is{background-position:-256px -192px}.monsterinsights-flag.monsterinsights-flag-it{background-position:-288px -192px}.monsterinsights-flag.monsterinsights-flag-je{background-position:-320px -192px}.monsterinsights-flag.monsterinsights-flag-jm{background-position:-352px -192px}.monsterinsights-flag.monsterinsights-flag-jo{background-position:-384px -192px}.monsterinsights-flag.monsterinsights-flag-jp{background-position:-416px -192px}.monsterinsights-flag.monsterinsights-flag-ke{background-position:-448px -192px}.monsterinsights-flag.monsterinsights-flag-kg{background-position:-480px -192px}.monsterinsights-flag.monsterinsights-flag-kh{background-position:100% -224px}.monsterinsights-flag.monsterinsights-flag-ki{background-position:-32px -224px}.monsterinsights-flag.monsterinsights-flag-km{background-position:-64px -224px}.monsterinsights-flag.monsterinsights-flag-kn{background-position:-96px -224px}.monsterinsights-flag.monsterinsights-flag-kp{background-position:-128px -224px}.monsterinsights-flag.monsterinsights-flag-kr{background-position:-160px -224px}.monsterinsights-flag.monsterinsights-flag-kw{background-position:-192px -224px}.monsterinsights-flag.monsterinsights-flag-ky{background-position:-224px -224px}.monsterinsights-flag.monsterinsights-flag-kz{background-position:-256px -224px}.monsterinsights-flag.monsterinsights-flag-la{background-position:-288px -224px}.monsterinsights-flag.monsterinsights-flag-lb{background-position:-320px -224px}.monsterinsights-flag.monsterinsights-flag-lc{background-position:-352px -224px}.monsterinsights-flag.monsterinsights-flag-li{background-position:-384px -224px}.monsterinsights-flag.monsterinsights-flag-lk{background-position:-416px -224px}.monsterinsights-flag.monsterinsights-flag-lr{background-position:-448px -224px}.monsterinsights-flag.monsterinsights-flag-ls{background-position:-480px -224px}.monsterinsights-flag.monsterinsights-flag-lt{background-position:100% -256px}.monsterinsights-flag.monsterinsights-flag-lu{background-position:-32px -256px}.monsterinsights-flag.monsterinsights-flag-lv{background-position:-64px -256px}.monsterinsights-flag.monsterinsights-flag-ly{background-position:-96px -256px}.monsterinsights-flag.monsterinsights-flag-ma{background-position:-128px -256px}.monsterinsights-flag.monsterinsights-flag-mc{background-position:-160px -256px}.monsterinsights-flag.monsterinsights-flag-md{background-position:-192px -256px}.monsterinsights-flag.monsterinsights-flag-me{background-position:-224px -256px}.monsterinsights-flag.monsterinsights-flag-mf{background-position:-256px -256px}.monsterinsights-flag.monsterinsights-flag-mg{background-position:-288px -256px}.monsterinsights-flag.monsterinsights-flag-mh{background-position:-320px -256px}.monsterinsights-flag.monsterinsights-flag-mk{background-position:-352px -256px}.monsterinsights-flag.monsterinsights-flag-ml{background-position:-384px -256px}.monsterinsights-flag.monsterinsights-flag-mm{background-position:-416px -256px}.monsterinsights-flag.monsterinsights-flag-mn{background-position:-448px -256px}.monsterinsights-flag.monsterinsights-flag-mo{background-position:-480px -256px}.monsterinsights-flag.monsterinsights-flag-mp{background-position:100% -288px}.monsterinsights-flag.monsterinsights-flag-mq{background-position:-32px -288px}.monsterinsights-flag.monsterinsights-flag-mr{background-position:-64px -288px}.monsterinsights-flag.monsterinsights-flag-ms{background-position:-96px -288px}.monsterinsights-flag.monsterinsights-flag-mt{background-position:-128px -288px}.monsterinsights-flag.monsterinsights-flag-mu{background-position:-160px -288px}.monsterinsights-flag.monsterinsights-flag-mv{background-position:-192px -288px}.monsterinsights-flag.monsterinsights-flag-mw{background-position:-224px -288px}.monsterinsights-flag.monsterinsights-flag-mx{background-position:-256px -288px}.monsterinsights-flag.monsterinsights-flag-my{background-position:-288px -288px}.monsterinsights-flag.monsterinsights-flag-mz{background-position:-320px -288px}.monsterinsights-flag.monsterinsights-flag-na{background-position:-352px -288px}.monsterinsights-flag.monsterinsights-flag-nc{background-position:-384px -288px}.monsterinsights-flag.monsterinsights-flag-ne{background-position:-416px -288px}.monsterinsights-flag.monsterinsights-flag-nf{background-position:-448px -288px}.monsterinsights-flag.monsterinsights-flag-ng{background-position:-480px -288px}.monsterinsights-flag.monsterinsights-flag-ni{background-position:100% -320px}.monsterinsights-flag.monsterinsights-flag-nl{background-position:-32px -320px}.monsterinsights-flag.monsterinsights-flag-no{background-position:-64px -320px}.monsterinsights-flag.monsterinsights-flag-np{background-position:-96px -320px}.monsterinsights-flag.monsterinsights-flag-nr{background-position:-128px -320px}.monsterinsights-flag.monsterinsights-flag-nu{background-position:-160px -320px}.monsterinsights-flag.monsterinsights-flag-nz{background-position:-192px -320px}.monsterinsights-flag.monsterinsights-flag-om{background-position:-224px -320px}.monsterinsights-flag.monsterinsights-flag-pa{background-position:-256px -320px}.monsterinsights-flag.monsterinsights-flag-pe{background-position:-288px -320px}.monsterinsights-flag.monsterinsights-flag-pf{background-position:-320px -320px}.monsterinsights-flag.monsterinsights-flag-pg{background-position:-352px -320px}.monsterinsights-flag.monsterinsights-flag-ph{background-position:-384px -320px}.monsterinsights-flag.monsterinsights-flag-pk{background-position:-416px -320px}.monsterinsights-flag.monsterinsights-flag-pl{background-position:-448px -320px}.monsterinsights-flag.monsterinsights-flag-pn{background-position:-480px -320px}.monsterinsights-flag.monsterinsights-flag-pr{background-position:100% -352px}.monsterinsights-flag.monsterinsights-flag-ps{background-position:-32px -352px}.monsterinsights-flag.monsterinsights-flag-pt{background-position:-64px -352px}.monsterinsights-flag.monsterinsights-flag-pw{background-position:-96px -352px}.monsterinsights-flag.monsterinsights-flag-py{background-position:-128px -352px}.monsterinsights-flag.monsterinsights-flag-qa{background-position:-160px -352px}.monsterinsights-flag.monsterinsights-flag-re{background-position:-192px -352px}.monsterinsights-flag.monsterinsights-flag-ro{background-position:-224px -352px}.monsterinsights-flag.monsterinsights-flag-rs{background-position:-256px -352px}.monsterinsights-flag.monsterinsights-flag-ru{background-position:-288px -352px}.monsterinsights-flag.monsterinsights-flag-rw{background-position:-320px -352px}.monsterinsights-flag.monsterinsights-flag-sa{background-position:-352px -352px}.monsterinsights-flag.monsterinsights-flag-sb{background-position:-384px -352px}.monsterinsights-flag.monsterinsights-flag-sc{background-position:-416px -352px}.monsterinsights-flag.monsterinsights-flag-sd{background-position:-448px -352px}.monsterinsights-flag.monsterinsights-flag-se{background-position:-480px -352px}.monsterinsights-flag.monsterinsights-flag-sg{background-position:100% -384px}.monsterinsights-flag.monsterinsights-flag-sh{background-position:-32px -384px}.monsterinsights-flag.monsterinsights-flag-si{background-position:-64px -384px}.monsterinsights-flag.monsterinsights-flag-sk{background-position:-96px -384px}.monsterinsights-flag.monsterinsights-flag-sl{background-position:-128px -384px}.monsterinsights-flag.monsterinsights-flag-sm{background-position:-160px -384px}.monsterinsights-flag.monsterinsights-flag-sn{background-position:-192px -384px}.monsterinsights-flag.monsterinsights-flag-so{background-position:-224px -384px}.monsterinsights-flag.monsterinsights-flag-sr{background-position:-256px -384px}.monsterinsights-flag.monsterinsights-flag-ss{background-position:-288px -384px}.monsterinsights-flag.monsterinsights-flag-st{background-position:-320px -384px}.monsterinsights-flag.monsterinsights-flag-sv{background-position:-352px -384px}.monsterinsights-flag.monsterinsights-flag-sy{background-position:-384px -384px}.monsterinsights-flag.monsterinsights-flag-sz{background-position:-416px -384px}.monsterinsights-flag.monsterinsights-flag-tc{background-position:-448px -384px}.monsterinsights-flag.monsterinsights-flag-td{background-position:-480px -384px}.monsterinsights-flag.monsterinsights-flag-tf{background-position:100% -416px}.monsterinsights-flag.monsterinsights-flag-tg{background-position:-32px -416px}.monsterinsights-flag.monsterinsights-flag-th{background-position:-64px -416px}.monsterinsights-flag.monsterinsights-flag-tj{background-position:-96px -416px}.monsterinsights-flag.monsterinsights-flag-tk{background-position:-128px -416px}.monsterinsights-flag.monsterinsights-flag-tl{background-position:-160px -416px}.monsterinsights-flag.monsterinsights-flag-tm{background-position:-192px -416px}.monsterinsights-flag.monsterinsights-flag-tn{background-position:-224px -416px}.monsterinsights-flag.monsterinsights-flag-to{background-position:-256px -416px}.monsterinsights-flag.monsterinsights-flag-tr{background-position:-288px -416px}.monsterinsights-flag.monsterinsights-flag-tt{background-position:-320px -416px}.monsterinsights-flag.monsterinsights-flag-tv{background-position:-352px -416px}.monsterinsights-flag.monsterinsights-flag-tw{background-position:-384px -416px}.monsterinsights-flag.monsterinsights-flag-tz{background-position:-416px -416px}.monsterinsights-flag.monsterinsights-flag-ua{background-position:-448px -416px}.monsterinsights-flag.monsterinsights-flag-ug{background-position:-480px -416px}.monsterinsights-flag.monsterinsights-flag-us{background-position:100% -448px}.monsterinsights-flag.monsterinsights-flag-uy{background-position:-32px -448px}.monsterinsights-flag.monsterinsights-flag-uz{background-position:-64px -448px}.monsterinsights-flag.monsterinsights-flag-va{background-position:-96px -448px}.monsterinsights-flag.monsterinsights-flag-vc{background-position:-128px -448px}.monsterinsights-flag.monsterinsights-flag-ve{background-position:-160px -448px}.monsterinsights-flag.monsterinsights-flag-vg{background-position:-192px -448px}.monsterinsights-flag.monsterinsights-flag-vi{background-position:-224px -448px}.monsterinsights-flag.monsterinsights-flag-vn{background-position:-256px -448px}.monsterinsights-flag.monsterinsights-flag-vu{background-position:-288px -448px}.monsterinsights-flag.monsterinsights-flag-wf{background-position:-320px -448px}.monsterinsights-flag.monsterinsights-flag-ws{background-position:-352px -448px}.monsterinsights-flag.monsterinsights-flag-ye{background-position:-384px -448px}.monsterinsights-flag.monsterinsights-flag-yt{background-position:-416px -448px}.monsterinsights-flag.monsterinsights-flag-za{background-position:-448px -448px}.monsterinsights-flag.monsterinsights-flag-zm{background-position:-480px -448px}.monsterinsights-flag.monsterinsights-flag-zw{background-position:100% -480px}.monsterinsights-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}.monsterinsights-report-year-in-review.monsterinsights-yir-report-calculating-row{width:610px;margin-top:50px}@media (max-width:767px){.monsterinsights-report-year-in-review.monsterinsights-yir-report-calculating-row{width:100%;margin-top:20px}}.monsterinsights-report-year-in-review a,.monsterinsights-report-year-in-review h1,.monsterinsights-report-year-in-review h2,.monsterinsights-report-year-in-review h3,.monsterinsights-report-year-in-review h4,.monsterinsights-report-year-in-review h5,.monsterinsights-report-year-in-review p,.monsterinsights-report-year-in-review span{font-family:Lato,sans-serif;margin:0}.monsterinsights-report-year-in-review h1,.monsterinsights-report-year-in-review h2,.monsterinsights-report-year-in-review h3,.monsterinsights-report-year-in-review h4,.monsterinsights-report-year-in-review h5{font-weight:900}.monsterinsights-report-year-in-review p{font-style:normal;font-weight:400;font-size:14px;line-height:24px}.monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-yir-separator{border-left-color:#e0e0e0;border-right-color:#e0e0e0;border-top:1px solid #e0e0e0;border-bottom:1px solid #e0e0e0}.monsterinsights-report-year-in-review .text-capitalize{text-transform:capitalize}.monsterinsights-report-year-in-review .monsterinsights-yir-footer,.monsterinsights-report-year-in-review .monsterinsights-yir-header,.monsterinsights-report-year-in-review section{padding:0 90px;clear:both;overflow:hidden}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-footer,.monsterinsights-report-year-in-review .monsterinsights-yir-header,.monsterinsights-report-year-in-review section{padding:0 15px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-footer,.monsterinsights-report-year-in-review .monsterinsights-yir-header,.monsterinsights-report-year-in-review section{padding:0 30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-text-right{text-align:left}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header{padding:90px 90px 90px 0;background-image:url(../img/charlie.png);background-repeat:no-repeat;background-position:0 100%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header{padding:50px 15px 40px;background-image:none}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header{padding-right:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating{padding:90px 60px 100px 0;background-image:url(../img/charlie2x.png);background-position:left top 60px;background-size:173px 207px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating{padding-right:15px;padding-left:15px;padding-top:50px;background-size:140px 180px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-yir-title{font-size:32px;line-height:37px;color:#393f4c;margin-top:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-yir-title{font-size:26px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-yir-summary{font-weight:400;font-size:14px;line-height:20px;color:#393f4c;max-width:385px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-yir-summary{font-size:12px;max-width:230px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link{width:inherit}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link{width:inherit}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link:active,.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-export-link{color:#338eef;cursor:pointer}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-subtitle{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-subtitle svg{position:absolute;right:5px;bottom:-10px}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-title{font-size:20px;line-height:20px;margin-bottom:10px;margin-top:30px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-title{font-size:32px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-summary{font-weight:500;font-size:24px;line-height:32px;color:#828282;max-width:480px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-summary{font-size:16px;line-height:18px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-summary{font-size:16px;line-height:20px;max-width:400px}}.monsterinsights-report-year-in-review .monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-header{margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-header div{width:100%}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-report-title{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-report-subtitle{font-size:10px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-chart-content{padding:0 30px 15px 50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-chart-content{padding:0 15px 15px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-chart-content .monsterinsights-reports-bar-chart-holder{position:relative}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-chart-content .monsterinsights-reports-bar-chart-holder .monsterinsights-chart-tooltip{position:absolute;pointer-events:none}.monsterinsights-report-year-in-review .monsterinsights-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)}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box.monsterinsights-year-in-review-table-box-blur-report .monsterinsights-year-in-review-table-box-list{-webkit-filter:blur(5px);filter:blur(5px)}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header{padding:20px 30px;border-bottom:2px solid #f2f2f2;margin-bottom:0}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-title{display:inline-block}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-title .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-title .monsterinsights-report-title{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-subtitle{display:inline-block;float:left}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-subtitle .monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list{min-height:245px;padding-bottom:30px}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item{padding:9px 30px}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a{padding:0;border-radius:0;line-height:37px;line-height:inherit}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a:active,.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a:focus,.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a:hover{-webkit-box-shadow:none;box-shadow:none;background:none}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer{position:absolute;bottom:-34px;width:100%;right:0;text-align:center}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer{bottom:-40px}}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer .monsterinsights-yir-tooltip{font-weight:400;font-size:12px;color:#828282}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer .monsterinsights-yir-tooltip span{font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer .monsterinsights-yir-tooltip .monsterinsights-yir-icon{background:#dadada;border-radius:50%;padding:0;margin-left:10px;color:#fff;width:15px;height:15px;display:inline-block;line-height:16px}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart{border:0;margin:0;padding:0;width:100%}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-reports-pie-chart-holder{display:inline-block;float:right}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-reports-pie-chart-holder{display:block;float:none}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-reports-pie-chart-holder .monsterinsights-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%}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content{padding-right:50px;padding-top:35px;float:right}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content{padding-right:0;padding-top:20px;float:none}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-report-title{font-size:16px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-report-subtitle{font-size:14px;line-height:14px}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend{margin:10px 0 0}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li{display:inline-block;margin-left:30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li{margin-left:10px}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-color{border-radius:0;width:16px;height:16px;margin-bottom:-3px;margin-left:5px}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-text,.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-text,.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-value{font-size:10px}}.monsterinsights-report-year-in-review .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip{padding-top:15px;padding-bottom:15px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip a,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip h3,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip p{font-family:Lato,sans-serif;margin:0}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-icon{float:right;width:144px;text-align:center}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-icon{width:90px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-icon img{background:#338eef;padding:12px;border-radius:50%;margin-top:12px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content{float:right;width:calc(100% - 144px);padding-left:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content{padding-left:0;width:calc(100% - 90px)}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-title{font-weight:900;font-size:18px;line-height:27px;color:#333;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-title{font-size:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-summary{font-weight:400;font-size:18px;line-height:27px;color:#393f4c;margin-bottom:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-summary{font-size:12px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper{margin-top:15px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link:hover{color:#2469b2;-webkit-box-shadow:none;box-shadow:none}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay{position:absolute;top:0;right:0;width:calc(100% - 25px);height:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-details{font-size:14px;line-height:20px;font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success{background:#1ec185}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success:hover{opacity:.8;background:#10ad73}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay:hover{border:0;background:#2469b2;outline:none}.monsterinsights-report-year-in-review .monsterinsights-yir-audience{padding-bottom:85px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience{padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:685px;margin-bottom:80px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-summary{font-size:18px;line-height:20px;margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors{width:100%;margin-bottom:70px;padding-right:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors{margin-bottom:20px;padding-right:0;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions img,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors img{margin-bottom:15px;max-height:28px}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions h4,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors h4{font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions h4,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors h4{font-size:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions .monsterinsights-yir-number,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors .monsterinsights-yir-number{font-weight:900;font-size:60px;line-height:72px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions .monsterinsights-yir-number,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors .monsterinsights-yir-number{font-size:40px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-visitor-by-chart{margin-bottom:60px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-visitor-by-chart{margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics{padding-top:30px;padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:656px;margin-bottom:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-summary{font-size:18px;line-height:20px;margin-bottom:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries{display:block}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country{width:50%;margin-top:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-flag{display:block}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-flag{margin:0 auto}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-flag.monsterinsights-flag-zz{display:none}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-name{font-size:32px;line-height:38px;color:#393f4c;margin-top:0;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-name{font-size:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-visitors{font-weight:400;font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-visitors{font-size:16px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-countries-graph{width:50%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-countries-graph{width:100%}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-know-visitors{font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-know-visitors{font-size:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info{margin-top:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info{width:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info span,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info span,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info span{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info h2,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info h2,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info h2{font-size:30px;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info p,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info p,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info p{font-size:10px;line-height:10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior{padding-top:85px;padding-bottom:85px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior{padding-top:30px;padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:585px;margin-bottom:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data{display:block;margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary{width:50%;margin-top:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary img{width:32px;height:32px;margin-right:-3px;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary img{margin-right:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-time-spent{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent{font-size:32px;line-height:38px;color:#393f4c;margin-top:15px;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent{margin-top:5px;margin-bottom:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent .monsterinsights-yir-number{font-weight:900;font-size:48px;line-height:58px;color:#338eef;margin-left:10px;overflow-wrap:break-word}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent .monsterinsights-yir-number{font-size:30px;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent .monsterinsights-yir-type{font-weight:900;font-size:16px;line-height:103.8%;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-each-visitor-spent{font-size:14px;max-width:100%;margin-top:5px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-top-pages-graph{width:50%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-top-pages-graph{width:100%}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-most-visitors-device{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-most-visitors-device{font-size:20px;line-height:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info{margin-top:20px;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info{width:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info span,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info h2,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info p,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-grow-traffic-tip{margin-top:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-grow-traffic-tip{margin-top:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from{margin-top:55px;margin-bottom:100px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from{margin-top:20px;margin-bottom:60px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-title{font-size:32px;line-height:44px;color:#393f4c;margin-bottom:30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-title{font-size:20px;line-height:20px;margin-bottom:15px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals{display:block}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{width:50%;position:relative}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{width:100%}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords{padding-left:25px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords{padding-left:0;margin-bottom:60px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{padding-right:25px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{padding-right:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce{padding-top:85px;padding-bottom:30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce{padding-top:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:15px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number{width:55%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number{width:30%}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-products-sold,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-revenue{padding:75px 0}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-title{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-title{font-size:14px;line-height:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-amount{font-size:54px;line-height:65px;color:#338eef;overflow-wrap:break-word}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-amount{font-size:24px;line-height:40px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products{width:45%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products{width:70%}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning img,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular img{margin-bottom:5px}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning span,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning span,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular span{font-size:14px;line-height:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-product-title,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-product-title{font-weight:700;font-size:28px;line-height:32px;color:#338eef;margin-top:10px;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-product-title,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-product-title{font-size:16px;line-height:16px;margin-bottom:10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-count,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-count{font-weight:400;font-size:16px;line-height:19px;color:#828282}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-count,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-count{font-size:12px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-revenue-by-month{margin-bottom:50px}.monsterinsights-report-year-in-review .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you{padding-top:0;padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-title{font-size:54px;line-height:65px;text-align:center;color:#393f4c;max-width:588px;margin:0 auto 10px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-title{font-size:30px;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-summary{font-size:14px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-amazing-year{font-size:24px;line-height:24px;margin-bottom:10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors{text-align:center;margin-bottom:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors{margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author{display:inline-block;padding:0 45px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author{padding:0 10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-thumbnail{width:96px;height:96px;background-repeat:no-repeat;margin:0 auto 10px}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-thumbnail.chris{background-image:url(../img/chris.png)}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-thumbnail.syed{background-image:url(../img/syed.png)}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-name{font-weight:900;font-size:18px;line-height:22px;text-align:center;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-name{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review{display:block}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button{width:100%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content{text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content span{font-weight:900;font-size:14px;color:#fff}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content span{font-size:12px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content h3{font-weight:900;font-size:20px;line-height:31px;color:#fff}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content h3{font-size:18px;line-height:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating .monsterinsights-yir-five-star{margin:0;padding:12px 0 0;text-align:center}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating .monsterinsights-yir-five-star li{list-style:none;display:inline-block;margin-left:7px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating .monsterinsights-yir-five-star li{margin-left:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button{text-align:center;padding-top:5px}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a{background:#2469b3;border-radius:5px;text-align:center;height:38px;display:inline-block}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a:active,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a:hover{background:#123c68}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-title{font-size:36px;line-height:44px;color:#393f4c;margin-bottom:20px;max-width:638px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-title{font-size:20px;line-height:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-summary{font-weight:500;font-size:20px;line-height:24px;color:#393f4c;max-width:450px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-summary{font-size:14px;line-height:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins{margin-top:20px;margin-right:-30px;margin-left:-30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins{margin-right:0;margin-left:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon{width:100%;margin:30px 0;min-height:300px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top{padding-top:30px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-image{width:104px;float:right;padding-right:25px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-image .monsterinsights-addon-thumb{width:32px;height:32px;border:2px solid #e3f1ff;border-radius:5px;padding:10px;-webkit-box-sizing:content-box;box-sizing:content-box}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-text{width:calc(100% - 104px);float:right;padding-left:25px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-text .monsterinsights-addon-title{font-size:18px;line-height:24px;margin-top:0;font-family:Lato;margin-bottom:5px;color:#393f4c;font-weight:900}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-text .monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message{border-top:2px solid #e3f1ff;clear:both;padding:13px 25px;position:absolute;bottom:0;right:0;width:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-addon-status{float:left;line-height:32px;font-weight:900;font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-addon-status span{color:#d4393d}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button{line-height:32px;background:#338eef;border-radius:3px;display:inline-block;padding:0 30px;border:0;font-weight:700;font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-addon-status span{color:#64bfa5}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button:hover{background:rgba(51,142,239,.5)}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities{background-color:#338eef;padding-top:160px;margin-top:-90px;color:#fff}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities{padding-top:100px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h2{font-size:36px;line-height:43px;color:#fff;margin-bottom:15px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h2{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h3{font-weight:500;font-size:20px;line-height:24px;color:#fff;max-width:575px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h3{font-size:18px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities{display:-webkit-box;display:-ms-flexbox;display:flex;margin-right:-30px;padding-top:60px;padding-bottom:90px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities{display:block;margin-right:0;padding-bottom:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community{width:100%;background-color:#2469b2;border-radius:5px;margin-right:30px;padding:24px;position:relative;min-height:340px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community{margin-right:0;margin-bottom:30px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community{min-height:350px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-title{font-weight:900;font-size:20px;line-height:24px;margin-bottom:10px;margin-top:5px}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link,.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links{position:absolute;bottom:15px;right:24px;width:80%;width:calc(100% - 48px)}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link{background-color:#123c68;display:block}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link{padding:8px 10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links{margin:0}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li{float:right;margin-left:8px;margin-bottom:0}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li a{background-color:#123c68;display:block;margin:0;width:40px;height:40px;padding:10px}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li a:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li a:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-footer{display:block;text-align:center;padding:15px 0;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-footer div{width:100%;font-weight:500;font-size:16px;color:#fff;text-align:center}.monsterinsights-report-site-speed .monsterinsights-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%}@media screen and (max-width:767px){.monsterinsights-report-site-speed .monsterinsights-report-top{display:-webkit-box;display:-ms-flexbox;display:flex}}.monsterinsights-report-site-speed .monsterinsights-report-top h2.monsterinsights-report-top-title{margin-top:10px}.monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-export-pdf-report{margin-left:16px}.monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-export-pdf-report button{background-color:#f5f5f5;color:#4c6577;border-color:#dcdcdc}.monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-run-audit-btn .monsterinsights-run-audit{background-color:#3990ec;height:39px}.monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-run-audit-btn .monsterinsights-run-audit:hover{background-color:rgba(57,144,236,.8)}.monsterinsights-report-site-speed .monsterinsights-choose-device-button{margin-right:15px}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button{display:inline-block;text-align:center;background-color:#f5f5f5;color:#444;border-color:#dcdcdc;border-radius:5px;outline:none}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button:hover{background-color:#3990ec;border-color:#1c77db;outline:none}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button:hover .svg-icons{fill:#fff}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.active{background-color:#3990ec;border-color:#1c77db;color:#fff;outline:none}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.active .svg-icons{fill:#fff}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.mobile{border-top-left-radius:0;border-bottom-left-radius:0;border-left:0;width:45px;height:40px}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.mobile svg{margin-right:-6px;margin-top:-1px}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.desktop{border-top-right-radius:0;border-bottom-right-radius:0;border-right:0;width:54px;height:40px}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.desktop svg{margin-right:-6px;margin-top:-1px}.monsterinsights-report-site-speed .monsterinsights-site-speed-container{max-width:1010px}.monsterinsights-report-site-speed .monsterinsights-site-speed-device,.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights-report-site-speed .monsterinsights-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){.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator{width:100%;margin-bottom:25px}}@media screen and (min-width:768px) and (max-width:1024px){.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator{width:100%;margin-bottom:25px}}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-indicator-device-icon{margin-bottom:40px;text-align:center}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-indicator-device-icon .desktop{width:80px}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-indicator-percent-text{font-size:5em;color:#f2994a;text-align:center;font-weight:700}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-indicator-overall-text{display:inline-block;padding-top:2rem;font-weight:600;font-size:16px;text-align:center}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-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}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-progress-circle__percent{position:absolute;top:50%;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-progress-circle__container{display:inline-block;position:relative}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-progress-circle__path{-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out;overflow:visible}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats{width:662px}@media screen and (max-width:767px){.monsterinsights-report-site-speed .monsterinsights-site-speed-stats{width:100%}}@media screen and (min-width:768px) and (max-width:1024px){.monsterinsights-report-site-speed .monsterinsights-site-speed-stats{width:100%}}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-report-flex{text-align:center}@media screen and (max-width:767px){.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-report-flex.monsterinsights-report-2-columns{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-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){.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-site-speed-stat{width:100%;margin-top:15px;margin-left:0}}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-site-speed-stat h2{font-size:40px;margin:0;padding:20px 0 10px}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-site-speed-stat p{color:#828282}.monsterinsights-report-site-speed .monsterinsights-how-to-improve h2.title{font-size:22px;color:#393f4c}div.monsterinsights-pdf-score{position:relative;margin:80px;right:-1px;top:1px}.monsterinsights-reports-page .monsterinsights-header .monsterinsights-container,.monsterinsights-reports-page .monsterinsights-navigation-bar .monsterinsights-container{padding-right:10px;padding-left:10px;width:auto}@media (max-width:782px){.monsterinsights-reports-page .monsterinsights-header .monsterinsights-container,.monsterinsights-reports-page .monsterinsights-navigation-bar .monsterinsights-container{padding:0}}@media (max-width:782px){.monsterinsights-reports-page .monsterinsights-report-top{margin-bottom:25px}}.monsterinsights_page.monsterinsights-downloading-pdf-report #wpbody{-webkit-filter:blur(15px);filter:blur(15px)}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion-item-details,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-pdf-score{display:block!important}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion-item-title,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion .monsterinsights-accordion div:not(:last-child){border:none!important}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion-item-trigger-icon,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-notificationsv3-container,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-progress-circle{display:none}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page{width:1120px}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-tabs-navigation button:first-child{border-left:0}@media (max-width:782px){.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-tabs-navigation button{font-size:18px;padding:23px 20px 25px;text-align:right}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:25%}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3){border-right:1px solid #d6e2ed}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3),.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(4){border-top:0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-reports-pie-chart .monsterinsights-pie-chart{margin:inherit}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:absolute;right:250px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);margin:0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-report-box{width:calc(50% - 12.5px);margin-top:0}}@media (max-width:991px){.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex{-ms-flex-flow:inherit;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:inherit}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-reports-pie-chart{width:50%}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-reports-pie-chart:first-child{margin:0 0 0 25px}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-table-box{margin-right:20px;margin-top:0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-table-box:first-child{margin-right:0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-report-2-columns .monsterinsights-table-box{width:calc(50% - 12.5px)}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex.monsterinsights-interests-scroll-report .monsterinsights-table-box{width:100%}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-reports-pie-chart{width:calc(50% - 12.5px)}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-reports-pie-chart:first-child{margin:0 0 0 25px}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-right:25px;margin-top:0}}.monsterinsights-report{padding:20px;position:relative}body.monsterinsights-reporting-page #wpbody-content{padding-bottom:0}body.monsterinsights-reporting-page #wpfooter{padding-top:0}body.monsterinsights-reporting-page #wpfooter:before{display:none}body.monsterinsights-reporting-page .monsterinsights-red{color:#d73638}body.monsterinsights-reporting-page .monsterinsights-green{color:#5cc0a5}body.monsterinsights-reporting-page .monsterinsights-report-top{margin-top:14px}@media (min-width:783px) and (max-width:1130px){body.monsterinsights-reporting-page .monsterinsights-report-top{margin-bottom:25px}}body.monsterinsights-reporting-page .monsterinsights-report-top h2{margin:14px 0 28px;display:inline-block;color:#393f4c;font-size:24px}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-report-top h2{display:none}}@media (min-width:783px) and (max-width:1130px){body.monsterinsights-reporting-page .monsterinsights-report-top h2{display:block;margin:0 0 25px}}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report{float:left;margin-left:25px}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-export-pdf-report{float:none;margin-left:0;margin-bottom:0;text-align:center}}@media (min-width:783px) and (max-width:1130px){body.monsterinsights-reporting-page .monsterinsights-export-pdf-report{float:none;margin-bottom:0}}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-button{background-color:#eceff5;color:#444;border-color:#d6e2ed}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-button:focus,body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-button:hover{background-color:#fff}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-button[disabled=disabled]{cursor:not-allowed}body.monsterinsights-reporting-page .monsterinsights-report-realtime .monsterinsights-export-pdf-report{margin-left:0}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{display:-webkit-box;display:-ms-flexbox;display:flex;float:left}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{float:none;width:100%;-ms-flex-flow:wrap;flex-flow:wrap}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker .monsterinsights-buttons-toggle{width:100%;margin-left:0}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker .monsterinsights-buttons-toggle .monsterinsights-button{width:50%}}@media (min-width:783px) and (max-width:1130px){body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{float:left}}body.monsterinsights-reporting-page .monsterinsights-datepicker{width:200px;background-color:#8ea4b4;font-weight:700;color:#fff;text-align:center;border-color:#708c9f;border-width:1px 1px 2px;border-radius:3px;height:40px;margin:0}body.monsterinsights-reporting-page .monsterinsights-datepicker::-webkit-input-placeholder{color:#fff}body.monsterinsights-reporting-page .monsterinsights-datepicker:-moz-placeholder,body.monsterinsights-reporting-page .monsterinsights-datepicker::-moz-placeholder{color:#fff}body.monsterinsights-reporting-page .monsterinsights-datepicker:-ms-input-placeholder{color:#fff}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-datepicker{width:calc(50% - 5px);margin-bottom:20px;margin-top:10px;font-size:14px}}body.monsterinsights-reporting-page .monsterinsights-mobile-details-toggle{width:calc(50% - 5px);margin-bottom:20px;margin-top:10px;margin-right:10px;font-weight:700}@media (min-width:783px){body.monsterinsights-reporting-page .monsterinsights-mobile-details-toggle{display:none}}body.monsterinsights-reporting-page .monsterinsights-info{color:#b6c9da;cursor:help;font-size:15px}body.monsterinsights-reporting-page .monsterinsights-report-row{margin-bottom:25px}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button{background:#eceff5;color:#464c57;border-bottom-width:1px;border-color:#d6e2ed;border-radius:0;line-height:18px;border-left:0;margin:0}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:hover{background:#fff}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:focus{z-index:10;position:relative}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:first-child{border-top-right-radius:3px;border-bottom-right-radius:3px}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:last-child{border-top-left-radius:3px;border-bottom-left-radius:3px;border-left:1px solid #d6e2ed}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button.monsterinsights-selected-interval{background:#fff;color:#509fe2;font-weight:700}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info{background:#8ea4b4;border-radius:3px;color:#fff;border:solid #708c9f;border-width:1px 1px 2px;position:relative;text-align:right;font-size:14px;font-weight:400;line-height:1.1;padding:10px 20px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info:focus,body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info:hover{background:#3a93dd;cursor:pointer}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info{max-width:100%;width:100%;padding:12px 20px 8px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info>span{overflow:hidden;white-space:pre;text-overflow:ellipsis;max-width:calc(100% - 40px);display:inline-block}}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info i{margin-right:38px;margin-left:12px}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info i{margin-right:10px;margin-left:10px;vertical-align:top;display:inline-block}}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info:after{width:0;height:0;border-color:#fff 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.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown{position:absolute;z-index:100;background:#fff;border:1px solid #d6e2ed;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.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown.monsterinsights-p-0{padding:0;max-width:auto;border:0}body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button{display:block;width:100%;margin-bottom:5px;text-align:right;background-color:#fff;color:#444;border:none}body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button.monsterinsights-interval-active,body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button:active,body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button:hover{background-color:#eceff4;color:#444}body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button i{margin-left:10px}body.monsterinsights-reporting-page .monsterinsights-datepicker,body.monsterinsights-reporting-page .monsterinsights-hide{display:none}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container{position:relative}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container{max-width:100%;width:100%}}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container.monsterinsights-hide,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .monsterinsights-hide{display:none}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-wrapper{display:block}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-wrapper .flatpickr-calendar{width:100%}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-calendar.static.open{position:relative;-webkit-box-shadow:none;box-shadow:none;border:none;width:100%}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:after,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:before{display:none}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-rContainer{width:100%;display:block}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .dayContainer,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-days{width:100%;max-width:100%}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day{max-width:100%}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange.inRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange.nextMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange.prevMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange:focus,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange:hover,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected.inRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected.nextMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected.prevMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected:focus,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected:hover,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange.inRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange.nextMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange.prevMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange:focus,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange:hover{background-color:#509fe2;border-color:#509fe2}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-months{padding-bottom:10px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .dayContainer{padding:0 28px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-weekdays{height:40px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-weekdaycontainer{background:#eceff4;padding:14px 28px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-current-month{font-size:15px;color:#444}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper{width:55px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper input.cur-year{padding:0 5px 0 10px;min-height:25px}.monsterinsights-reports-overview-datagraph-tooltip-container{padding:15px;background-color:#fff;border-radius:4px;-webkit-box-shadow:0 0 24px rgba(89,164,234,.33);box-shadow:0 0 24px rgba(89,164,234,.33)}#monsterinsights-chartjs-line-overview-tooltip{min-width:100px}.monsterinsights-reports-overview-datagraph-tooltip-title{color:#23282d;font-size:14px;font-weight:400;border-bottom:1px solid #d4e2ef;padding-bottom:5px}.monsterinsights-reports-overview-datagraph-tooltip-number{color:#23282d;font-size:24px;font-weight:400;margin-top:5px;margin-bottom:5px}.monsterinsights-reports-overview-datagraph-tooltip-descriptor{color:#23282d;font-size:12px;font-weight:400;margin-bottom:10px}.monsterinsights-reports-overview-datagraph-tooltip-trend{color:#23282d;font-size:16px;font-weight:400}#monsterinsights-chartjs-bar-tooltip,.monsterinsights-line-chart-tooltip{opacity:1;position:absolute;margin-right:-55px}.monsterinsights-report-tabs-navigation{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-report-tabs-navigation button{border-color:#d6e2ed;border-style:solid;border-width:1px 0;background:#eceff4;color:#444;width:100%;font-weight:700;text-align:right;font-size:18px;padding:23px 20px 25px;cursor:pointer;margin:0;position:relative}@media (max-width:782px){.monsterinsights-report-tabs-navigation button{font-size:14px;padding:13px 20px 15px;text-align:center}}.monsterinsights-report-tabs-navigation button:first-child{border-left:1px solid #d6e2ed}.monsterinsights-report-tabs-navigation button:focus{z-index:10}.monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button{background:#fff;color:#509fe2;border-bottom:none;border-top:2px solid #3a93dd;padding-top:20px}@media (max-width:782px){.monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button{padding-top:12px}}.monsterinsights-report-tabs-navigation button i{margin-left:10px;color:#8ba4b7}.monsterinsights-report-tabs{background:#fff;border:1px solid #d6e2ed;border-top:none}.monsterinsights-report-tabs .monsterinsights-report-tabs-content{padding:20px}.monsterinsights-report-infobox-row{display:-webkit-box;display:-ms-flexbox;display:flex;border:1px solid #d6e2ed}@media (max-width:782px){.monsterinsights-report-infobox-row{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:25%;background:#fff;border-right:1px solid #d6e2ed;padding:17px 20px 15px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-info{position:absolute;left:20px;top:18px}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:first-child{border-right:none}@media (max-width:782px){.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:50%}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3),.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(4){border-top:1px solid #d6e2ed}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3){border-right:none}}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-report-title{padding-left:18px;text-overflow:ellipsis;overflow:hidden;white-space:pre;line-height:1.2}.monsterinsights-report-title{font-size:18px;color:#393f4c;font-weight:700;margin-top:0}.monsterinsights-reports-infobox-number{font-size:40px;font-weight:200;display:inline-block;line-height:1;margin-top:11px;float:right}@media (max-width:782px){.monsterinsights-reports-infobox-number{font-size:36px;float:none}}.monsterinsights-reports-infobox-compare,.monsterinsights-reports-infobox-prev{float:left}@media (max-width:1280px){.monsterinsights-reports-infobox-compare,.monsterinsights-reports-infobox-prev{float:none;clear:both}}.monsterinsights-reports-infobox-prev{font-size:16px;margin-top:15px}.monsterinsights-reports-infobox-compare{clear:left;font-size:12px;color:#acbdc9}.monsterinsights-buttons-toggle{margin-left:25px}.monsterinsights-report-flex{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:991px){.monsterinsights-report-flex{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-pie-chart-legend-color{width:12px;height:12px;display:inline-block;margin-left:5px;border-radius:50%}.monsterinsights-pie-chart-legend-text{min-width:100px;margin-left:10px;display:inline-block;font-size:16px;color:#393f4c}.monsterinsights-pie-chart-legend-value{color:#393f4c;font-size:18px;font-weight:500}.monsterinsights-reports-pie-chart{width:50%;padding:20px;background:#fff;border:1px solid #d6e2ed;position:relative}.monsterinsights-reports-pie-chart:first-child{margin-left:25px}@media (max-width:991px){.monsterinsights-reports-pie-chart:first-child{margin:0 0 25px}}@media (max-width:991px){.monsterinsights-reports-pie-chart{width:100%}}.monsterinsights-reports-pie-chart .monsterinsights-reports-pie-chart-holder{position:relative}@media (max-width:782px){.monsterinsights-reports-pie-chart .monsterinsights-pie-chart{margin:0 auto}}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:absolute;right:250px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);margin:0}@media (max-width:782px){.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:relative;right:auto;top:auto;-webkit-transform:none;-ms-transform:none;transform:none;margin-top:20px}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend .monsterinsights-pie-chart-legend-value{float:left}}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-tooltip{position:absolute;pointer-events:none}.monsterinsights-reports-pie-chart .monsterinsights-info{position:absolute;top:20px;left:20px}.monsterinsights-table-box{border:1px solid #d6e2ed;background:#fff;width:100%;margin-right:20px;padding-top:18px;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-table-box:first-child{margin-right:0;margin-top:0}.monsterinsights-table-box h3{margin-right:20px}.monsterinsights-table-box .monsterinsights-info{position:absolute;top:20px;left:20px}@media (max-width:991px){.monsterinsights-table-box{margin-right:0;margin-top:20px}}.monsterinsights-table-box-footer{background:#f9fbff;border-top:1px solid #d6e2ed;padding:20px}.monsterinsights-table-box-footer:after{display:table;clear:both;content:""}@media (max-width:782px){.monsterinsights-table-box-footer>.monsterinsights-button{width:100%;text-align:center}}.monsterinsights-table-list-item{padding:12px 20px;min-height:43px;font-size:15px;display:-webkit-box;display:-ms-flexbox;display:flex}table .monsterinsights-table-list-item{display:table-row}.monsterinsights-table-list-item:nth-child(odd){background-color:#f9fbff}.monsterinsights-table-list-item .monsterinsights-reports-list-text{color:#393f4c;white-space:pre;text-overflow:ellipsis;overflow:hidden;vertical-align:middle;display:inline-block;width:100%;padding:1px;margin:-1px}.monsterinsights-table-list-item .monsterinsights-reports-list-text a{display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis}.monsterinsights-table-list-item .monsterinsights-reports-list-text img{display:inline-block;margin-left:10px;vertical-align:middle}.monsterinsights-table-list-item .monsterinsights-flag{-webkit-transform:scale(.5);-ms-transform:scale(.5);transform:scale(.5);display:inline-block;margin:-12px -8px -10px 0}.monsterinsights-table-list-item a{text-decoration:none;color:#393f4c}.monsterinsights-table-list-item a:focus,.monsterinsights-table-list-item a:hover{color:#777}.monsterinsights-table-list-item .monsterinsights-reports-list-count{display:inline-block;min-width:30px;color:#657086;font-weight:400}.monsterinsights-table-list-item .monsterinsights-reports-list-number{color:#393f4c;font-size:15px;text-align:left;display:block;padding-right:5px}.monsterinsights-table-box-pagination{float:left;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:782px){.monsterinsights-table-box-pagination{float:none;width:100%;margin-top:20px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}.monsterinsights-table-box-pagination span{margin-left:20px;color:#8ba4b7}.monsterinsights-table-box-pagination .monsterinsights-buttons-toggle{margin-left:0}.monsterinsights-table-box-list{height:100%}.monsterinsights-table-box-table .monsterinsights-table-item-content{display:-webkit-box;display:-ms-flexbox;display:flex;word-break:break-all}@media (max-width:782px){.monsterinsights-table-box-table .monsterinsights-table-item-content{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-table-box-mobile .monsterinsights-table-box-table{overflow:auto}.monsterinsights-table-box-mobile .monsterinsights-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}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-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}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td.monsterinsights-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:#393f4c;padding-top:12px;padding-bottom:12px;border-top:none}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after{-webkit-transform:translateY(-50%) rotate(0);-ms-transform:translateY(-50%) rotate(0);transform:translateY(-50%) rotate(0)}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th{display:none;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1{display:block;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1 .monsterinsights-table-item-content,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1 .monsterinsights-table-item-content{padding-left:30px;position:relative;white-space:pre;text-overflow:ellipsis;overflow:hidden;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1 .monsterinsights-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:#acbdc9;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table .monsterinsights-table-mobile-heading{min-width:125px}.monsterinsights-table-box-mobile .monsterinsights-table-box-table .monsterinsights-table-list-item-empty td:first-child .monsterinsights-table-item-content:after{display:none}.monsterinsights-table-box-table table{width:100%;border-collapse:collapse}.monsterinsights-table-box-mobile .monsterinsights-table-box-table table{table-layout:fixed}.monsterinsights-table-box-table th{text-align:right;font-size:15px}.monsterinsights-table-box-table td,.monsterinsights-table-box-table th{border:none;padding:12px 10px;line-height:19px}.monsterinsights-table-box-table td:first-child,.monsterinsights-table-box-table th:first-child{padding-right:20px}.monsterinsights-table-box-table td:last-child,.monsterinsights-table-box-table th:last-child{padding-left:20px}.monsterinsights-report-2-columns{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-report-2-columns .monsterinsights-table-box{width:calc(50% - 12.5px)}@media (max-width:991px){.monsterinsights-report-2-columns .monsterinsights-table-box{width:100%}}.monsterinsights-report-2-columns.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:50%}.monsterinsights-report-2-columns .monsterinsights-table-box:nth-child(n+1){margin-right:0}.monsterinsights-report-2-columns .monsterinsights-table-box:nth-child(n+3){margin-top:25px}.monsterinsights-report-flex .monsterinsights-report-box{width:calc(50% - 12.5px)}@media (max-width:782px){.monsterinsights-report-flex .monsterinsights-report-box{width:100%;margin-top:20px}.monsterinsights-report-flex .monsterinsights-report-box:first-child{margin-top:0}}.monsterinsights-reports-tooltip{font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.monsterinsights-arrow{width:12.5px;height:13px;display:inline-block;background-size:contain;background-repeat:no-repeat}.monsterinsights-arrow.monsterinsights-down{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAXVBMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjip09rAAAAHnRSTlMA8IciAeKVlnAwD/bp1ci5on1URtyyl2dhPzccFQOiNcZVAAAAg0lEQVQoz9XNWQ6DMAxFUUNCmwBl7Dx4/8tsjCAvQd4A98OWdT5MaOr74UtaLTOPqhRByuNL7fxefs9ZoOPmlYsdmB3RLdzFOxV759BMHQv5REqWJjKV7NZEGRc4WVqpMqu4CBtdP4s8IoAujQwACAFAAI3OABAgJ4BGgJzkuVrt0+sPB0gVjZ7FTpgAAAAASUVORK5CYII=)}.monsterinsights-arrow.monsterinsights-down.monsterinsights-green{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMADloG+qFg0bOrm1RNGJCAd3FoRe/Zyci8kjIuLCxb7jsAAACJSURBVCjP3cpbFsIgDEXRC8G29mVrfWvmP00DcREtHYHnI0A2sB7T5LEVnZh52RLHkv8DeblCnhTnnc/DSlquZXWQd+1+ZIwrwoWlqzORv7EBS4jnjbLMCUYAfaKGPlIlaIFMO5UuKGidUhp6BYwsAULOhxVYldFewagAowxFxwiNQkkKZf38DW9jKhaFyDomEwAAAABJRU5ErkJggg==)}.monsterinsights-arrow.monsterinsights-up{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMA8Icj45jrlzD20bqkfXJkV0sUD9zWxbaLcT43HO3asg8AAACASURBVCjP3clJFsIgEADRisRA5slZuf81ReQ1UZILpBa1+SyaDeup3OotsPa4AUIJCCUQKYVIERKKcC7dKqEIp1fmfugDRcgVXui+JFAogtB60nDxYBDh5mng6p49WQj6IyNTZcsHP0JjbQfMd8Of0I9IIqEdSOGkXZWhrpsJ6Q1+nBSNjDcDLgAAAABJRU5ErkJggg==)}.monsterinsights-arrow.monsterinsights-up.monsterinsights-red{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAZCAMAAAAc9R5vAAAAV1BMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjhHHlCMAAAAHHRSTlMALTzj+N0V79kkHNVD0U5IIBnqy8K3VTcSB704vhc5cQAAAJRJREFUKM/VjUkSwyAMBIeACRhsvC+J/v/ORErZcOADmYOm1F0lIccH51HJoIl0xbQNfaOHKhdT4ZKmLfnoiGrGOirixpsH3p8ySmM7+Zp4bvIrWOaH8MkrrofXlzlmOaHwE1ATd2fx4jZvXAK7/FmgmUdkgWj4hFSPUqA3ZBIQ1w2FELMm5GTB+XOxV8S5EM3nvX4AV4MVrf6KAvgAAAAASUVORK5CYII=)}.monsterinsights-reports-overview-datagraph-tooltip-trend{font-weight:700}.monsterinsights-reports-overview-datagraph-tooltip-trend .monsterinsights-arrow{margin-left:5px}.monsterinsights-report-box{background:#fff;border:1px solid #d6e2ed;padding:0 20px 20px;position:relative}.monsterinsights-report-box .monsterinsights-info{position:absolute;left:20px;top:20px}.monsterinsights-report-box-icon-heading{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-report-box-icon-heading h3{color:#509fe2;margin-right:15px}.monsterinsights-realtime-large{font-size:150px;text-align:center;line-height:1.5;color:#393f4c}.monsterinsights-realtime-active{text-align:center;width:100%;font-size:25px;line-height:1;margin-top:-50px;color:#393f4c}.monsterinsights-realtime-box-content .monsterinsights-line-chart-tooltip{max-width:115px}#monsterinsights-chartjs-pie-age-tooltip{margin-right:23px;min-width:95px}.monsterinsights-blur .monsterinsights-report-top{pointer-events:none;-webkit-filter:blur(5px);filter:blur(5px)}.monsterinsights-blur .monsterinsights-report-row{-webkit-filter:blur(5px);filter:blur(5px)}.monsterinsights-blur .monsterinsights-report{min-height:850px}.monsterinsights-blur .upsell-blur{background:#fff;width:100%;min-height:100vh}.monsterinsights-blur .upsell-blur img{max-width:100%}.monsterinsights-reports-referral-icon{vertical-align:middle;margin-left:10px;margin-right:2px}.monsterinsights-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){.monsterinsights-upsell-inline .monsterinsights-upsell-inline-content{margin:-20px;padding:20px;background:hsla(0,0%,100%,.3)}}.monsterinsights-upsell-overlay .monsterinsights-upsell-content{display:-webkit-box;display:-ms-flexbox;display:flex;gap:32px}.monsterinsights-upsell-content{max-width:750px}.monsterinsights-upsell-content__features{margin-bottom:46px;-webkit-box-flex:1;-ms-flex:1;flex:1}.monsterinsights-upsell-content__img{width:278px;background-position:0 100%;background-repeat:no-repeat;background-size:contain}.monsterinsights-upsell-content__img.upsell-publisher{background-image:url(../img/bg-publisher@2x.png)}.monsterinsights-upsell-content__img.upsell-queries{background-image:url(../img/bg-queries@2x.png)}.monsterinsights-upsell-content__img.upsell-forms{background-image:url(../img/bg-forms@2x.png)}.monsterinsights-upsell-content__img.upsell-realtime{background-image:url(../img/bg-realtime@2x.png)}.monsterinsights-upsell-content__img.upsell-ecommerce{background-image:url(../img/bg-ecommerce@2x.png)}.monsterinsights-upsell-content__img.upsell-dimensions{background-image:url(../img/bg-dimensions@2x.png);background-position:50%}.monsterinsights-upsell-content__img.upsell-sitespeed{background-image:url(../img/bg-sitespeed@2x.png)}.monsterinsights-upsell-content__img.upsell-media{background-image:url(../img/bg-media-upsell.svg);background-position:0}.monsterinsights-upsell-content p{font-size:16px;color:#393f4c;line-height:1.8}.monsterinsights-upsell-content .monsterinsights-light{color:#657086}.monsterinsights-upsell-content .monsterinsights-button{font-size:17px;font-weight:700;padding:15px 25px;line-height:1}@media (max-width:782px){.monsterinsights-upsell-content .monsterinsights-button{font-size:15px}}.monsterinsights-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}.monsterinsights-upsell-overlay .monsterinsights-upsell-top{padding:26px 40px;display:-webkit-box;display:-ms-flexbox;display:flex;gap:16px}@media (max-width:782px){.monsterinsights-upsell-overlay .monsterinsights-upsell-top{padding:0 20px}}@media (max-width:782px){.monsterinsights-upsell-overlay{top:70px;width:calc(100% - 40px)}}.monsterinsights-upsell-overlay h3{text-align:right;color:#23262e;font-size:20px;line-height:100%;margin:0}.monsterinsights-upsell-overlay h4{font-size:16px;line-height:140%;color:#444}.monsterinsights-upsell-overlay p{margin:24px 0;font-size:15px;line-height:140%;color:#444}.monsterinsights-upsell-overlay .monsterinsights-upsell-content{border-top:1px solid #e2e4e9;padding:32px 40px 0 0}@media (max-width:782px){.monsterinsights-upsell-overlay .monsterinsights-upsell-content{padding-right:20px;padding-left:20px}}.monsterinsights-upsell-overlay .monsterinsights-upsell-content h3{font-size:23px;line-height:120%}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul{margin:16px auto 24px;display:grid;grid-gap:10px}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul.columns-1{grid-template-columns:1fr}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul.columns-2{grid-template-columns:1fr 1fr}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li{color:#393f4c;font-size:13px;padding-right:24px;position:relative;line-height:17px}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li:before{position:absolute;width:16px;height:17px;background:url(../img/bullet.svg) no-repeat 50%;right:0;display:inline-block;top:-1px;content:""}.monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-weight:700;font-size:18px;line-height:140%;background:#338eef;border:1px solid #1177e3;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:4px;padding:12px 24px;position:relative}.monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button:after{content:"";width:13px;height:15px;margin-right:12px;background:url(../img/icon-lock.svg) no-repeat 50%}.monsterinsights-upsell-overlay a{color:#393f4c}.monsterinsights-upsell-overlay a:hover{text-decoration:none}.monsterinsights-center,.monsterinsights-mobile-upsell{text-align:center}.monsterinsights-mobile-upsell .monsterinsights-notice{border-top:1px solid #d6e2ed;border-left:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-mobile-upsell .monsterinsights-notice-inner{margin-top:0}@media (min-width:783px){.monsterinsights-mobile-upsell{display:none}}.monsterinsights-mobile-upsell .monsterinsights-notice-success .monsterinsights-notice-button{margin-left:0}@media (max-width:782px){.monsterinsights-overview-upsell-desktop{display:none}}.monsterinsights-report-realtime .monsterinsights-table-box th:first-child{width:auto}.monsterinsights-reports-list-title{display:inline-block;word-break:break-all}@media (max-width:782px){.monsterinsights-reports-list-title{width:calc(100% - 30px);text-overflow:ellipsis;overflow:hidden}}.monsterinsights-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}.monsterinsights-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-right:25px}@media (max-width:991px){.monsterinsights-report-scroll:nth-child(2){width:100%;margin-right:0;margin-top:25px}}@media (max-width:782px){.monsterinsights-report-scroll{width:100%;margin-right:0}}.monsterinsights-report-scroll>h3{position:absolute;top:0}.monsterinsights-report-scroll .monsterinsights-realtime-active{margin:0 0 50px}.monsterinsights-report-scroll .monsterinsights-realtime-box-content{margin:25px 0}.monsterinsights-report-scroll .monsterinsights-realtime-large{line-height:1;margin:50px 0 0;font-size:80px}.monsterinsights-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 .monsterinsights-not-authenticated-notice{margin-right:-357px}}@media (max-width:960px){.monsterinsights-not-authenticated-notice{margin-right:-357px}}@media (max-width:750px){.monsterinsights-not-authenticated-notice{right:0;margin-right:0}}@media (min-width:750px) and (max-width:782px){.monsterinsights-not-authenticated-notice{margin-right:-375px}}.monsterinsights-not-authenticated-notice .monsterinsights-auth-manual-connect-paragraph{display:none}.monsterinsights-not-authenticated-notice h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input-authenticate{text-align:center}.monsterinsights-not-authenticated-notice .monsterinsights-license-button{line-height:1;margin-top:20px}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button{font-size:16px;padding:20px 40px;margin:20px 20px 10px;background:#8da4b5;border-color:#6f8ca0;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button:focus,.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button:hover{background-color:#7e98ab;border-color:#627f94;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt{background:#509fe2;border-color:#2e7fbe;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt:focus,.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-disabled{background:#f3f6ff;border-color:#d6e2eb;color:#8ba4b7}.monsterinsights-reports-list-has-overflow{cursor:pointer}.monsterinsights-admin-page .monsterinsights-lite-datepicker{text-align:center;padding:12px 12px 27px}.monsterinsights-admin-page .monsterinsights-lite-datepicker p{color:#444;font-size:15px;line-height:1.5;font-weight:700}.monsterinsights-admin-page .monsterinsights-lite-datepicker .monsterinsights-button-text{color:#509fe2;display:inline-block;width:auto}.monsterinsights-admin-page .monsterinsights-lite-datepicker .monsterinsights-button-text:focus,.monsterinsights-admin-page .monsterinsights-lite-datepicker .monsterinsights-button-text:hover{color:#3a93dd}.monsterinsights-admin-page .monsterinsights-lite-datepicker .monsterinsights-button-text i{margin-right:10px}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report-lite .monsterinsights-reports-intervals-dropdown{min-width:250px}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report-lite .monsterinsights-reports-intervals-dropdown .monsterinsights-button{background:rgba(0,0,0,0);color:#509fe2}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report-lite .monsterinsights-reports-intervals-dropdown .monsterinsights-button:focus,body.monsterinsights-reporting-page .monsterinsights-export-pdf-report-lite .monsterinsights-reports-intervals-dropdown .monsterinsights-button:hover{color:#3a93dd}body.monsterinsights-reporting-page .monsterinsights-notice-error.monsterinsights-license_expired{display:none!important}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-popup{width:600px;padding:2em 3.25em}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-actions{display:none!important}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-footer{display:block!important;text-align:center;padding-top:20px}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-footer a{display:inline-block}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-footer a.swal2-styled{padding-top:16px;padding-bottom:20px;margin-bottom:15px;text-decoration:none}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-footer a:nth-child(3){color:#393f4c!important}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .monsterinsights-expired-license-alert{text-align:right;padding-left:39px}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .monsterinsights-expired-license-alert h3{font-size:40px;margin:0 0 8px;padding:0}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .monsterinsights-expired-license-alert h4{font-size:20px;margin:0 0 10px;padding:0}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .monsterinsights-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
  .monsterinsights-reminder-widget-container{position:fixed;right:0;bottom:0;max-height:350px;overflow:scroll}.monsterinsights-reminder-widget-container .monsterinsights-notice-closing-loader{width:100%;height:100%;position:fixed;background-color:hsla(0,0%,100%,.5)}.monsterinsights-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}.monsterinsights-tracking-notice h3{font-size:13px;color:#222;font-weight:700;margin:0 0 8px;padding:0;line-height:1;border:none}.monsterinsights-tracking-notice p{font-size:12px;color:#7f7f7f;font-weight:400;margin:0;padding:0;line-height:1.2;border:none}.monsterinsights-tracking-notice p a{color:#509fe2;font-size:12px;line-height:1.2;margin:0 0 5px;padding:0;text-decoration:underline;font-weight:400}.monsterinsights-tracking-notice p a:hover{color:#3a93dd;text-decoration:none}.monsterinsights-tracking-notice .monsterinsights-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}.monsterinsights-tracking-notice .monsterinsights-tracking-notice-icon svg{width:67.77px;height:67.77px}.monsterinsights-tracking-notice .monsterinsights-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}.monsterinsights-tracking-notice .monsterinsights-fullwidth-mascot{position:relative;left:auto;top:auto}.monsterinsights-tracking-notice .monsterinsights-reminder-notice-links{margin-right:10px}.monsterinsights-slide-up-enter-active,.monsterinsights-slide-up-leave-active{-webkit-transition:all .5s ease;transition:all .5s ease}.monsterinsights-slide-up-enter,.monsterinsights-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-check:before{content:"\f015"}.monstericon-warning-triangle:before{content:"\f020"}.monstericon-star:before{content:"\f025"}.monstericon-files:before{content:"\f028"}.monstericon-search:before{content:"\f029"}.monstericon-user:before{content:"\f02a"}.monstericon-eye:before{content:"\f02b"}.monstericon-cog:before{content:"\f02c"}.monstericon-expand:before{content:"\f02d"}.monstericon-compress:before{content:"\f02f"}.monstericon-life-ring:before{content:"\f030"}.monstericon-wpbeginner:before{content:"\f031"}.monstericon-lightbulb:before{content:"\f032"}.monstericon-shopping-cart:before{content:"\f033"}.monstericon-calendar-alt:before{content:"\f04e"}.monstericon-long-arrow-right-light:before{content:"\f06a"}.monstericon-download:before{content:"\0046"}.monsterinsights-tooltip{display:block!important;z-index:10000;max-width:350px}.monsterinsights-tooltip .monsterinsights-tooltip-inner{background:#5f6197;color:#fff;border-radius:5px;padding:16px 20px;font-size:14px;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.monsterinsights-tooltip .monsterinsights-tooltip-inner a{color:#fff;font-weight:700}.monsterinsights-tooltip .monsterinsights-tooltip-arrow{width:0;height:0;border-style:solid;position:absolute;margin:5px;border-color:#5f6197;z-index:1}.monsterinsights-tooltip[x-placement^=top]{padding-bottom:5px}.monsterinsights-tooltip[x-placement^=top] .monsterinsights-tooltip-arrow{border-width:5px 5px 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% - 5px);margin-top:0;margin-bottom:0}.monsterinsights-tooltip[x-placement^=bottom]{padding-top:5px}.monsterinsights-tooltip[x-placement^=bottom] .monsterinsights-tooltip-arrow{border-width:0 5px 5px;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% - 5px);margin-top:0;margin-bottom:0}.monsterinsights-tooltip[x-placement^=right]{padding-left:5px}.monsterinsights-tooltip[x-placement^=right] .monsterinsights-tooltip-arrow{border-width:5px 5px 5px 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% - 5px);margin-left:0;margin-right:0}.monsterinsights-tooltip[x-placement^=left]{padding-right:5px}.monsterinsights-tooltip[x-placement^=left] .monsterinsights-tooltip-arrow{border-width:5px 0 5px 5px;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% - 5px);margin-left:0;margin-right:0}.monsterinsights-tooltip.popover .popover-inner{background:#fff;color:#5f6197;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)}.monsterinsights-tooltip.popover .popover-arrow{border-color:#fff}.monsterinsights-tooltip[aria-hidden=true]{visibility:hidden;opacity:0;-webkit-transition:opacity .15s,visibility .15s;transition:opacity .15s,visibility .15s}.monsterinsights-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
- */.monsterinsights-flag{display:inline-block;width:32px;height:32px;background:url(../img/flags.png) no-repeat}.monsterinsights-flag.monsterinsights-flag-ad{background-position:-32px 0}.monsterinsights-flag.monsterinsights-flag-ae{background-position:-64px 0}.monsterinsights-flag.monsterinsights-flag-af{background-position:-96px 0}.monsterinsights-flag.monsterinsights-flag-ag{background-position:-128px 0}.monsterinsights-flag.monsterinsights-flag-ai{background-position:-160px 0}.monsterinsights-flag.monsterinsights-flag-al{background-position:-192px 0}.monsterinsights-flag.monsterinsights-flag-am{background-position:-224px 0}.monsterinsights-flag.monsterinsights-flag-an{background-position:-256px 0}.monsterinsights-flag.monsterinsights-flag-ao{background-position:-288px 0}.monsterinsights-flag.monsterinsights-flag-ar{background-position:-320px 0}.monsterinsights-flag.monsterinsights-flag-as{background-position:-352px 0}.monsterinsights-flag.monsterinsights-flag-at{background-position:-384px 0}.monsterinsights-flag.monsterinsights-flag-au{background-position:-416px 0}.monsterinsights-flag.monsterinsights-flag-aw{background-position:-448px 0}.monsterinsights-flag.monsterinsights-flag-ax{background-position:-480px 0}.monsterinsights-flag.monsterinsights-flag-az{background-position:0 -32px}.monsterinsights-flag.monsterinsights-flag-ba{background-position:-32px -32px}.monsterinsights-flag.monsterinsights-flag-bb{background-position:-64px -32px}.monsterinsights-flag.monsterinsights-flag-bd{background-position:-96px -32px}.monsterinsights-flag.monsterinsights-flag-be{background-position:-128px -32px}.monsterinsights-flag.monsterinsights-flag-bf{background-position:-160px -32px}.monsterinsights-flag.monsterinsights-flag-bg{background-position:-192px -32px}.monsterinsights-flag.monsterinsights-flag-bh{background-position:-224px -32px}.monsterinsights-flag.monsterinsights-flag-bi{background-position:-256px -32px}.monsterinsights-flag.monsterinsights-flag-bj{background-position:-288px -32px}.monsterinsights-flag.monsterinsights-flag-bl{background-position:-320px -32px}.monsterinsights-flag.monsterinsights-flag-bm{background-position:-352px -32px}.monsterinsights-flag.monsterinsights-flag-bn{background-position:-384px -32px}.monsterinsights-flag.monsterinsights-flag-bo{background-position:-416px -32px}.monsterinsights-flag.monsterinsights-flag-br{background-position:-448px -32px}.monsterinsights-flag.monsterinsights-flag-bs{background-position:-480px -32px}.monsterinsights-flag.monsterinsights-flag-bt{background-position:0 -64px}.monsterinsights-flag.monsterinsights-flag-bw{background-position:-32px -64px}.monsterinsights-flag.monsterinsights-flag-by{background-position:-64px -64px}.monsterinsights-flag.monsterinsights-flag-bz{background-position:-96px -64px}.monsterinsights-flag.monsterinsights-flag-ca{background-position:-128px -64px}.monsterinsights-flag.monsterinsights-flag-cd{background-position:-160px -64px}.monsterinsights-flag.monsterinsights-flag-cf{background-position:-192px -64px}.monsterinsights-flag.monsterinsights-flag-cg{background-position:-224px -64px}.monsterinsights-flag.monsterinsights-flag-ch{background-position:-256px -64px}.monsterinsights-flag.monsterinsights-flag-ci{background-position:-288px -64px}.monsterinsights-flag.monsterinsights-flag-ck{background-position:-320px -64px}.monsterinsights-flag.monsterinsights-flag-cl{background-position:-352px -64px}.monsterinsights-flag.monsterinsights-flag-cm{background-position:-384px -64px}.monsterinsights-flag.monsterinsights-flag-cn{background-position:-416px -64px}.monsterinsights-flag.monsterinsights-flag-co{background-position:-448px -64px}.monsterinsights-flag.monsterinsights-flag-cr{background-position:-480px -64px}.monsterinsights-flag.monsterinsights-flag-cu{background-position:0 -96px}.monsterinsights-flag.monsterinsights-flag-cv{background-position:-32px -96px}.monsterinsights-flag.monsterinsights-flag-cw{background-position:-64px -96px}.monsterinsights-flag.monsterinsights-flag-cy{background-position:-96px -96px}.monsterinsights-flag.monsterinsights-flag-cz{background-position:-128px -96px}.monsterinsights-flag.monsterinsights-flag-de{background-position:-160px -96px}.monsterinsights-flag.monsterinsights-flag-dj{background-position:-192px -96px}.monsterinsights-flag.monsterinsights-flag-dk{background-position:-224px -96px}.monsterinsights-flag.monsterinsights-flag-dm{background-position:-256px -96px}.monsterinsights-flag.monsterinsights-flag-do{background-position:-288px -96px}.monsterinsights-flag.monsterinsights-flag-dz{background-position:-320px -96px}.monsterinsights-flag.monsterinsights-flag-ec{background-position:-352px -96px}.monsterinsights-flag.monsterinsights-flag-ee{background-position:-384px -96px}.monsterinsights-flag.monsterinsights-flag-eg{background-position:-416px -96px}.monsterinsights-flag.monsterinsights-flag-eh{background-position:-448px -96px}.monsterinsights-flag.monsterinsights-flag-er{background-position:-480px -96px}.monsterinsights-flag.monsterinsights-flag-es{background-position:0 -128px}.monsterinsights-flag.monsterinsights-flag-et{background-position:-32px -128px}.monsterinsights-flag.monsterinsights-flag-eu{background-position:-64px -128px}.monsterinsights-flag.monsterinsights-flag-fi{background-position:-96px -128px}.monsterinsights-flag.monsterinsights-flag-fj{background-position:-128px -128px}.monsterinsights-flag.monsterinsights-flag-fk{background-position:-160px -128px}.monsterinsights-flag.monsterinsights-flag-fm{background-position:-192px -128px}.monsterinsights-flag.monsterinsights-flag-fo{background-position:-224px -128px}.monsterinsights-flag.monsterinsights-flag-fr{background-position:-256px -128px}.monsterinsights-flag.monsterinsights-flag-ga{background-position:-288px -128px}.monsterinsights-flag.monsterinsights-flag-gb{background-position:-320px -128px}.monsterinsights-flag.monsterinsights-flag-gd{background-position:-352px -128px}.monsterinsights-flag.monsterinsights-flag-ge{background-position:-384px -128px}.monsterinsights-flag.monsterinsights-flag-gg{background-position:-416px -128px}.monsterinsights-flag.monsterinsights-flag-gh{background-position:-448px -128px}.monsterinsights-flag.monsterinsights-flag-gi{background-position:-480px -128px}.monsterinsights-flag.monsterinsights-flag-gl{background-position:0 -160px}.monsterinsights-flag.monsterinsights-flag-gm{background-position:-32px -160px}.monsterinsights-flag.monsterinsights-flag-gn{background-position:-64px -160px}.monsterinsights-flag.monsterinsights-flag-gp{background-position:-96px -160px}.monsterinsights-flag.monsterinsights-flag-gq{background-position:-128px -160px}.monsterinsights-flag.monsterinsights-flag-gr{background-position:-160px -160px}.monsterinsights-flag.monsterinsights-flag-gs{background-position:-192px -160px}.monsterinsights-flag.monsterinsights-flag-gt{background-position:-224px -160px}.monsterinsights-flag.monsterinsights-flag-gu{background-position:-256px -160px}.monsterinsights-flag.monsterinsights-flag-gw{background-position:-288px -160px}.monsterinsights-flag.monsterinsights-flag-gy{background-position:-320px -160px}.monsterinsights-flag.monsterinsights-flag-hk{background-position:-352px -160px}.monsterinsights-flag.monsterinsights-flag-hn{background-position:-384px -160px}.monsterinsights-flag.monsterinsights-flag-hr{background-position:-416px -160px}.monsterinsights-flag.monsterinsights-flag-ht{background-position:-448px -160px}.monsterinsights-flag.monsterinsights-flag-hu{background-position:-480px -160px}.monsterinsights-flag.monsterinsights-flag-ic{background-position:0 -192px}.monsterinsights-flag.monsterinsights-flag-id{background-position:-32px -192px}.monsterinsights-flag.monsterinsights-flag-ie{background-position:-64px -192px}.monsterinsights-flag.monsterinsights-flag-il{background-position:-96px -192px}.monsterinsights-flag.monsterinsights-flag-im{background-position:-128px -192px}.monsterinsights-flag.monsterinsights-flag-in{background-position:-160px -192px}.monsterinsights-flag.monsterinsights-flag-iq{background-position:-192px -192px}.monsterinsights-flag.monsterinsights-flag-ir{background-position:-224px -192px}.monsterinsights-flag.monsterinsights-flag-is{background-position:-256px -192px}.monsterinsights-flag.monsterinsights-flag-it{background-position:-288px -192px}.monsterinsights-flag.monsterinsights-flag-je{background-position:-320px -192px}.monsterinsights-flag.monsterinsights-flag-jm{background-position:-352px -192px}.monsterinsights-flag.monsterinsights-flag-jo{background-position:-384px -192px}.monsterinsights-flag.monsterinsights-flag-jp{background-position:-416px -192px}.monsterinsights-flag.monsterinsights-flag-ke{background-position:-448px -192px}.monsterinsights-flag.monsterinsights-flag-kg{background-position:-480px -192px}.monsterinsights-flag.monsterinsights-flag-kh{background-position:0 -224px}.monsterinsights-flag.monsterinsights-flag-ki{background-position:-32px -224px}.monsterinsights-flag.monsterinsights-flag-km{background-position:-64px -224px}.monsterinsights-flag.monsterinsights-flag-kn{background-position:-96px -224px}.monsterinsights-flag.monsterinsights-flag-kp{background-position:-128px -224px}.monsterinsights-flag.monsterinsights-flag-kr{background-position:-160px -224px}.monsterinsights-flag.monsterinsights-flag-kw{background-position:-192px -224px}.monsterinsights-flag.monsterinsights-flag-ky{background-position:-224px -224px}.monsterinsights-flag.monsterinsights-flag-kz{background-position:-256px -224px}.monsterinsights-flag.monsterinsights-flag-la{background-position:-288px -224px}.monsterinsights-flag.monsterinsights-flag-lb{background-position:-320px -224px}.monsterinsights-flag.monsterinsights-flag-lc{background-position:-352px -224px}.monsterinsights-flag.monsterinsights-flag-li{background-position:-384px -224px}.monsterinsights-flag.monsterinsights-flag-lk{background-position:-416px -224px}.monsterinsights-flag.monsterinsights-flag-lr{background-position:-448px -224px}.monsterinsights-flag.monsterinsights-flag-ls{background-position:-480px -224px}.monsterinsights-flag.monsterinsights-flag-lt{background-position:0 -256px}.monsterinsights-flag.monsterinsights-flag-lu{background-position:-32px -256px}.monsterinsights-flag.monsterinsights-flag-lv{background-position:-64px -256px}.monsterinsights-flag.monsterinsights-flag-ly{background-position:-96px -256px}.monsterinsights-flag.monsterinsights-flag-ma{background-position:-128px -256px}.monsterinsights-flag.monsterinsights-flag-mc{background-position:-160px -256px}.monsterinsights-flag.monsterinsights-flag-md{background-position:-192px -256px}.monsterinsights-flag.monsterinsights-flag-me{background-position:-224px -256px}.monsterinsights-flag.monsterinsights-flag-mf{background-position:-256px -256px}.monsterinsights-flag.monsterinsights-flag-mg{background-position:-288px -256px}.monsterinsights-flag.monsterinsights-flag-mh{background-position:-320px -256px}.monsterinsights-flag.monsterinsights-flag-mk{background-position:-352px -256px}.monsterinsights-flag.monsterinsights-flag-ml{background-position:-384px -256px}.monsterinsights-flag.monsterinsights-flag-mm{background-position:-416px -256px}.monsterinsights-flag.monsterinsights-flag-mn{background-position:-448px -256px}.monsterinsights-flag.monsterinsights-flag-mo{background-position:-480px -256px}.monsterinsights-flag.monsterinsights-flag-mp{background-position:0 -288px}.monsterinsights-flag.monsterinsights-flag-mq{background-position:-32px -288px}.monsterinsights-flag.monsterinsights-flag-mr{background-position:-64px -288px}.monsterinsights-flag.monsterinsights-flag-ms{background-position:-96px -288px}.monsterinsights-flag.monsterinsights-flag-mt{background-position:-128px -288px}.monsterinsights-flag.monsterinsights-flag-mu{background-position:-160px -288px}.monsterinsights-flag.monsterinsights-flag-mv{background-position:-192px -288px}.monsterinsights-flag.monsterinsights-flag-mw{background-position:-224px -288px}.monsterinsights-flag.monsterinsights-flag-mx{background-position:-256px -288px}.monsterinsights-flag.monsterinsights-flag-my{background-position:-288px -288px}.monsterinsights-flag.monsterinsights-flag-mz{background-position:-320px -288px}.monsterinsights-flag.monsterinsights-flag-na{background-position:-352px -288px}.monsterinsights-flag.monsterinsights-flag-nc{background-position:-384px -288px}.monsterinsights-flag.monsterinsights-flag-ne{background-position:-416px -288px}.monsterinsights-flag.monsterinsights-flag-nf{background-position:-448px -288px}.monsterinsights-flag.monsterinsights-flag-ng{background-position:-480px -288px}.monsterinsights-flag.monsterinsights-flag-ni{background-position:0 -320px}.monsterinsights-flag.monsterinsights-flag-nl{background-position:-32px -320px}.monsterinsights-flag.monsterinsights-flag-no{background-position:-64px -320px}.monsterinsights-flag.monsterinsights-flag-np{background-position:-96px -320px}.monsterinsights-flag.monsterinsights-flag-nr{background-position:-128px -320px}.monsterinsights-flag.monsterinsights-flag-nu{background-position:-160px -320px}.monsterinsights-flag.monsterinsights-flag-nz{background-position:-192px -320px}.monsterinsights-flag.monsterinsights-flag-om{background-position:-224px -320px}.monsterinsights-flag.monsterinsights-flag-pa{background-position:-256px -320px}.monsterinsights-flag.monsterinsights-flag-pe{background-position:-288px -320px}.monsterinsights-flag.monsterinsights-flag-pf{background-position:-320px -320px}.monsterinsights-flag.monsterinsights-flag-pg{background-position:-352px -320px}.monsterinsights-flag.monsterinsights-flag-ph{background-position:-384px -320px}.monsterinsights-flag.monsterinsights-flag-pk{background-position:-416px -320px}.monsterinsights-flag.monsterinsights-flag-pl{background-position:-448px -320px}.monsterinsights-flag.monsterinsights-flag-pn{background-position:-480px -320px}.monsterinsights-flag.monsterinsights-flag-pr{background-position:0 -352px}.monsterinsights-flag.monsterinsights-flag-ps{background-position:-32px -352px}.monsterinsights-flag.monsterinsights-flag-pt{background-position:-64px -352px}.monsterinsights-flag.monsterinsights-flag-pw{background-position:-96px -352px}.monsterinsights-flag.monsterinsights-flag-py{background-position:-128px -352px}.monsterinsights-flag.monsterinsights-flag-qa{background-position:-160px -352px}.monsterinsights-flag.monsterinsights-flag-re{background-position:-192px -352px}.monsterinsights-flag.monsterinsights-flag-ro{background-position:-224px -352px}.monsterinsights-flag.monsterinsights-flag-rs{background-position:-256px -352px}.monsterinsights-flag.monsterinsights-flag-ru{background-position:-288px -352px}.monsterinsights-flag.monsterinsights-flag-rw{background-position:-320px -352px}.monsterinsights-flag.monsterinsights-flag-sa{background-position:-352px -352px}.monsterinsights-flag.monsterinsights-flag-sb{background-position:-384px -352px}.monsterinsights-flag.monsterinsights-flag-sc{background-position:-416px -352px}.monsterinsights-flag.monsterinsights-flag-sd{background-position:-448px -352px}.monsterinsights-flag.monsterinsights-flag-se{background-position:-480px -352px}.monsterinsights-flag.monsterinsights-flag-sg{background-position:0 -384px}.monsterinsights-flag.monsterinsights-flag-sh{background-position:-32px -384px}.monsterinsights-flag.monsterinsights-flag-si{background-position:-64px -384px}.monsterinsights-flag.monsterinsights-flag-sk{background-position:-96px -384px}.monsterinsights-flag.monsterinsights-flag-sl{background-position:-128px -384px}.monsterinsights-flag.monsterinsights-flag-sm{background-position:-160px -384px}.monsterinsights-flag.monsterinsights-flag-sn{background-position:-192px -384px}.monsterinsights-flag.monsterinsights-flag-so{background-position:-224px -384px}.monsterinsights-flag.monsterinsights-flag-sr{background-position:-256px -384px}.monsterinsights-flag.monsterinsights-flag-ss{background-position:-288px -384px}.monsterinsights-flag.monsterinsights-flag-st{background-position:-320px -384px}.monsterinsights-flag.monsterinsights-flag-sv{background-position:-352px -384px}.monsterinsights-flag.monsterinsights-flag-sy{background-position:-384px -384px}.monsterinsights-flag.monsterinsights-flag-sz{background-position:-416px -384px}.monsterinsights-flag.monsterinsights-flag-tc{background-position:-448px -384px}.monsterinsights-flag.monsterinsights-flag-td{background-position:-480px -384px}.monsterinsights-flag.monsterinsights-flag-tf{background-position:0 -416px}.monsterinsights-flag.monsterinsights-flag-tg{background-position:-32px -416px}.monsterinsights-flag.monsterinsights-flag-th{background-position:-64px -416px}.monsterinsights-flag.monsterinsights-flag-tj{background-position:-96px -416px}.monsterinsights-flag.monsterinsights-flag-tk{background-position:-128px -416px}.monsterinsights-flag.monsterinsights-flag-tl{background-position:-160px -416px}.monsterinsights-flag.monsterinsights-flag-tm{background-position:-192px -416px}.monsterinsights-flag.monsterinsights-flag-tn{background-position:-224px -416px}.monsterinsights-flag.monsterinsights-flag-to{background-position:-256px -416px}.monsterinsights-flag.monsterinsights-flag-tr{background-position:-288px -416px}.monsterinsights-flag.monsterinsights-flag-tt{background-position:-320px -416px}.monsterinsights-flag.monsterinsights-flag-tv{background-position:-352px -416px}.monsterinsights-flag.monsterinsights-flag-tw{background-position:-384px -416px}.monsterinsights-flag.monsterinsights-flag-tz{background-position:-416px -416px}.monsterinsights-flag.monsterinsights-flag-ua{background-position:-448px -416px}.monsterinsights-flag.monsterinsights-flag-ug{background-position:-480px -416px}.monsterinsights-flag.monsterinsights-flag-us{background-position:0 -448px}.monsterinsights-flag.monsterinsights-flag-uy{background-position:-32px -448px}.monsterinsights-flag.monsterinsights-flag-uz{background-position:-64px -448px}.monsterinsights-flag.monsterinsights-flag-va{background-position:-96px -448px}.monsterinsights-flag.monsterinsights-flag-vc{background-position:-128px -448px}.monsterinsights-flag.monsterinsights-flag-ve{background-position:-160px -448px}.monsterinsights-flag.monsterinsights-flag-vg{background-position:-192px -448px}.monsterinsights-flag.monsterinsights-flag-vi{background-position:-224px -448px}.monsterinsights-flag.monsterinsights-flag-vn{background-position:-256px -448px}.monsterinsights-flag.monsterinsights-flag-vu{background-position:-288px -448px}.monsterinsights-flag.monsterinsights-flag-wf{background-position:-320px -448px}.monsterinsights-flag.monsterinsights-flag-ws{background-position:-352px -448px}.monsterinsights-flag.monsterinsights-flag-ye{background-position:-384px -448px}.monsterinsights-flag.monsterinsights-flag-yt{background-position:-416px -448px}.monsterinsights-flag.monsterinsights-flag-za{background-position:-448px -448px}.monsterinsights-flag.monsterinsights-flag-zm{background-position:-480px -448px}.monsterinsights-flag.monsterinsights-flag-zw{background-position:0 -480px}.monsterinsights-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}.monsterinsights-report-year-in-review.monsterinsights-yir-report-calculating-row{width:610px;margin-top:50px}@media (max-width:767px){.monsterinsights-report-year-in-review.monsterinsights-yir-report-calculating-row{width:100%;margin-top:20px}}.monsterinsights-report-year-in-review a,.monsterinsights-report-year-in-review h1,.monsterinsights-report-year-in-review h2,.monsterinsights-report-year-in-review h3,.monsterinsights-report-year-in-review h4,.monsterinsights-report-year-in-review h5,.monsterinsights-report-year-in-review p,.monsterinsights-report-year-in-review span{font-family:Lato,sans-serif;margin:0}.monsterinsights-report-year-in-review h1,.monsterinsights-report-year-in-review h2,.monsterinsights-report-year-in-review h3,.monsterinsights-report-year-in-review h4,.monsterinsights-report-year-in-review h5{font-weight:900}.monsterinsights-report-year-in-review p{font-style:normal;font-weight:400;font-size:14px;line-height:24px}.monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-yir-separator{border-left-color:#e0e0e0;border-right-color:#e0e0e0;border-top:1px solid #e0e0e0;border-bottom:1px solid #e0e0e0}.monsterinsights-report-year-in-review .monsterinsights-yir-footer,.monsterinsights-report-year-in-review .monsterinsights-yir-header,.monsterinsights-report-year-in-review section{padding:0 90px;clear:both;overflow:hidden}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-footer,.monsterinsights-report-year-in-review .monsterinsights-yir-header,.monsterinsights-report-year-in-review section{padding:0 15px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-footer,.monsterinsights-report-year-in-review .monsterinsights-yir-header,.monsterinsights-report-year-in-review section{padding:0 30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-text-right{text-align:right}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header{padding:90px 0 90px 90px;background-image:url(../img/charlie.png);background-repeat:no-repeat;background-position:100% 100%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header{padding:50px 15px 40px;background-image:none}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header{padding-left:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating{padding:90px 0 100px 60px;background-image:url(../img/charlie2x.png);background-position:right top 60px;background-size:173px 207px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating{padding-left:15px;padding-right:15px;padding-top:50px;background-size:140px 180px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-yir-title{font-size:32px;line-height:37px;color:#393f4c;margin-top:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-yir-title{font-size:26px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-yir-summary{font-weight:400;font-size:14px;line-height:20px;color:#393f4c;max-width:385px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-yir-summary{font-size:12px;max-width:230px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link{width:inherit}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link{width:inherit}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link:active,.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-subtitle{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-subtitle svg{position:absolute;left:5px;bottom:-5px}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-title{font-size:20px;line-height:20px;margin-bottom:10px;margin-top:30px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-title{font-size:32px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-summary{font-weight:500;font-size:24px;line-height:32px;color:#828282;max-width:480px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-summary{font-size:16px;line-height:18px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-summary{font-size:16px;line-height:20px;max-width:400px}}.monsterinsights-report-year-in-review .monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-header{margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-header div{width:100%}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-report-title{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-report-subtitle{font-size:10px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-chart-content{padding:0 50px 15px 30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-chart-content{padding:0 15px 15px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-chart-content .monsterinsights-reports-bar-chart-holder{position:relative}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-chart-content .monsterinsights-reports-bar-chart-holder .monsterinsights-chart-tooltip{position:absolute;pointer-events:none}.monsterinsights-report-year-in-review .monsterinsights-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)}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box.monsterinsights-year-in-review-table-box-blur-report .monsterinsights-year-in-review-table-box-list{-webkit-filter:blur(5px);filter:blur(5px)}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header{padding:20px 30px;border-bottom:2px solid #f2f2f2;margin-bottom:30px}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-title{display:inline-block}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-title .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-title .monsterinsights-report-title{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-subtitle{display:inline-block;float:right}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-subtitle .monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list{padding-bottom:30px}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item{padding:9px 30px}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a{padding:0;border-radius:0;line-height:37px;line-height:inherit}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a:active,.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a:focus,.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a:hover{-webkit-box-shadow:none;box-shadow:none;background:none}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer{position:absolute;bottom:-34px;width:100%;left:0;text-align:center}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer{bottom:-40px}}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer .monsterinsights-yir-tooltip{font-weight:400;font-size:12px;color:#828282}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer .monsterinsights-yir-tooltip span{font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer .monsterinsights-yir-tooltip .monsterinsights-yir-icon{background:#dadada;border-radius:50%;padding:0;margin-right:10px;color:#fff;width:15px;height:15px;display:inline-block;line-height:16px}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart{border:0;margin:0;padding:0;width:100%}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-reports-pie-chart-holder{display:inline-block;float:left}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-reports-pie-chart-holder{display:block;float:none}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-reports-pie-chart-holder .monsterinsights-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%}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content{padding-left:50px;padding-top:35px;float:left}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content{padding-left:0;padding-top:20px;float:none}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-report-title{font-size:16px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-report-subtitle{font-size:14px;line-height:14px}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend{margin:10px 0 0}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li{display:inline-block;margin-right:30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li{margin-right:10px}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-color{border-radius:0;width:16px;height:16px;margin-bottom:-3px;margin-right:5px}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-text,.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-text,.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-value{font-size:10px}}.monsterinsights-report-year-in-review .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip{padding-top:15px;padding-bottom:15px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip a,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip h3,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip p{font-family:Lato,sans-serif;margin:0}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-icon{float:left;width:144px;text-align:center}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-icon{width:90px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-icon img{background:#338eef;padding:12px;border-radius:50%;margin-top:12px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content{float:left;width:calc(100% - 144px);padding-right:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content{padding-right:0;width:calc(100% - 90px)}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-title{font-weight:900;font-size:18px;line-height:27px;color:#333;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-title{font-size:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-summary{font-weight:400;font-size:18px;line-height:27px;color:#393f4c;margin-bottom:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-summary{font-size:12px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper{margin-top:15px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link:hover{color:#2469b2;-webkit-box-shadow:none;box-shadow:none}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay{position:absolute;top:0;left:0;width:calc(100% - 25px);height:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content{margin-top:66px;text-align:center;height:calc(100% - 66px);padding-top:80px;padding-right:25px;padding-left:25px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-details{font-size:14px;line-height:20px;font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success{background:#1ec185}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success:hover{opacity:.8;background:#10ad73}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay:hover{border:0;background:#2469b2;outline:none}.monsterinsights-report-year-in-review .monsterinsights-yir-audience{padding-bottom:85px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience{padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:685px;margin-bottom:80px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-summary{font-size:18px;line-height:20px;margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors{width:100%;margin-bottom:70px;padding-left:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors{margin-bottom:20px;padding-left:0;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions img,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors img{margin-bottom:15px;max-height:28px}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions h4,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors h4{font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions h4,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors h4{font-size:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions .monsterinsights-yir-number,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors .monsterinsights-yir-number{font-weight:900;font-size:60px;line-height:72px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions .monsterinsights-yir-number,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors .monsterinsights-yir-number{font-size:40px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-visitor-by-chart{margin-bottom:60px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-visitor-by-chart{margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics{padding-top:30px;padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:656px;margin-bottom:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-summary{font-size:18px;line-height:20px;margin-bottom:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries{display:block}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country{width:50%;margin-top:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-flag{display:block}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-flag{margin:0 auto}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-flag.monsterinsights-flag-zz{display:none}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-name{font-size:32px;line-height:38px;color:#393f4c;margin-top:0;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-name{font-size:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-visitors{font-weight:400;font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-visitors{font-size:16px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-countries-graph{width:50%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-countries-graph{width:100%}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-know-visitors{font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-know-visitors{font-size:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info{margin-top:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info{width:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info span,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info span,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info span{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info h2,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info h2,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info h2{font-size:30px;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info p,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info p,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info p{font-size:10px;line-height:10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior{padding-top:85px;padding-bottom:85px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior{padding-top:30px;padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:585px;margin-bottom:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data{display:block;margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary{width:50%;margin-top:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary img{width:32px;height:32px;margin-left:-3px;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary img{margin-left:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-time-spent{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent{font-size:32px;line-height:38px;color:#393f4c;margin-top:15px;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent{margin-top:5px;margin-bottom:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent .monsterinsights-yir-number{font-weight:900;font-size:48px;line-height:58px;color:#338eef;margin-right:10px;overflow-wrap:break-word}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent .monsterinsights-yir-number{font-size:30px;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent .monsterinsights-yir-type{font-weight:900;font-size:16px;line-height:103.8%;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-each-visitor-spent{font-size:14px;max-width:100%;margin-top:5px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-top-pages-graph{width:50%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-top-pages-graph{width:100%}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-most-visitors-device{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-most-visitors-device{font-size:20px;line-height:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info{margin-top:20px;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info{width:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info span,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info h2,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info p,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-grow-traffic-tip{margin-top:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-grow-traffic-tip{margin-top:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from{margin-top:55px;margin-bottom:100px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from{margin-top:20px;margin-bottom:60px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-title{font-size:32px;line-height:44px;color:#393f4c;margin-bottom:30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-title{font-size:20px;line-height:20px;margin-bottom:15px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals{display:block}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{width:50%;position:relative}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{width:100%}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords{padding-right:25px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords{padding-right:0;margin-bottom:60px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{padding-left:25px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{padding-left:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce{padding-top:85px;padding-bottom:30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce{padding-top:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:15px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number{width:55%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number{width:30%}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-products-sold,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-revenue{padding:75px 0}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-title{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-title{font-size:14px;line-height:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-amount{font-size:54px;line-height:65px;color:#338eef;overflow-wrap:break-word}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-amount{font-size:24px;line-height:40px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products{width:45%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products{width:70%}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-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}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning img,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular img{margin-bottom:5px}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning span,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning span,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular span{font-size:14px;line-height:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-product-title,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-product-title{font-weight:700;font-size:28px;line-height:32px;color:#338eef;margin-top:10px;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-product-title,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-product-title{font-size:16px;line-height:16px;margin-bottom:10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-count,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-count{font-weight:400;font-size:16px;line-height:19px;color:#828282}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-count,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-count{font-size:12px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-revenue-by-month{margin-bottom:50px}.monsterinsights-report-year-in-review .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you{padding-top:0;padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-title{font-size:54px;line-height:65px;text-align:center;color:#393f4c;max-width:588px;margin:0 auto 10px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-title{font-size:30px;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-summary{font-size:14px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-amazing-year{font-size:24px;line-height:24px;margin-bottom:10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors{text-align:center;margin-bottom:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors{margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author{display:inline-block;padding:0 45px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author{padding:0 10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-thumbnail{width:96px;height:96px;background-repeat:no-repeat;margin:0 auto 10px}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-thumbnail.chris{background-image:url(../img/chris.png)}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-thumbnail.syed{background-image:url(../img/syed.png)}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-name{font-weight:900;font-size:18px;line-height:22px;text-align:center;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-name{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review{display:block}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button{width:100%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content{text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content span{font-weight:900;font-size:14px;color:#fff}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content span{font-size:12px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content h3{font-weight:900;font-size:20px;line-height:31px;color:#fff}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content h3{font-size:18px;line-height:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating .monsterinsights-yir-five-star{margin:0;padding:12px 0 0;text-align:center}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating .monsterinsights-yir-five-star li{list-style:none;display:inline-block;margin-right:7px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating .monsterinsights-yir-five-star li{margin-right:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button{text-align:center;padding-top:5px}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a{background:#2469b3;border-radius:5px;text-align:center;height:38px;display:inline-block}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a:active,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a:hover{background:#123c68}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-title{font-size:36px;line-height:44px;color:#393f4c;margin-bottom:20px;max-width:638px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-title{font-size:20px;line-height:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-summary{font-weight:500;font-size:20px;line-height:24px;color:#393f4c;max-width:450px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-summary{font-size:14px;line-height:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins{margin-top:20px;margin-left:-30px;margin-right:-30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins{margin-left:0;margin-right:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon{width:100%;margin:30px 0;min-height:300px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top{padding-top:30px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-image{width:104px;float:left;padding-left:25px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-image .monsterinsights-addon-thumb{width:32px;height:32px;border:2px solid #e3f1ff;border-radius:5px;padding:10px;-webkit-box-sizing:content-box;box-sizing:content-box}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-text{width:calc(100% - 104px);float:left;padding-right:25px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-text .monsterinsights-addon-title{font-size:18px;line-height:24px;margin-top:0;font-family:Lato;margin-bottom:5px;color:#393f4c;font-weight:900}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-text .monsterinsights-addon-excerpt{font-weight:400;font-size:14px;line-height:18px;color:#393f4c;font-family:Lato;margin:0}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message{border-top:2px solid #e3f1ff;clear:both;padding:13px 25px;position:absolute;bottom:0;left:0;width:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-addon-status{float:right;line-height:32px;font-weight:900;font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-addon-status span{color:#d4393d}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button{line-height:32px;background:#338eef;border-radius:3px;display:inline-block;padding:0 30px;border:0;font-weight:700;font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-addon-status span{color:#64bfa5}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button:hover{background:rgba(51,142,239,.5)}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities{background-color:#338eef;padding-top:160px;margin-top:-90px;color:#fff}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities{padding-top:100px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h2{font-size:36px;line-height:43px;color:#fff;margin-bottom:15px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h2{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h3{font-weight:500;font-size:20px;line-height:24px;color:#fff;max-width:575px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h3{font-size:18px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-30px;padding-top:60px;padding-bottom:90px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities{display:block;margin-left:0;padding-bottom:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community{width:100%;background-color:#2469b2;border-radius:5px;margin-left:30px;padding:24px;position:relative;min-height:340px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community{margin-left:0;margin-bottom:30px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community{min-height:350px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-title{font-weight:900;font-size:20px;line-height:24px;margin-bottom:10px;margin-top:5px}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link,.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links{position:absolute;bottom:15px;left:24px;width:80%;width:calc(100% - 48px)}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link{background-color:#123c68;display:block}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link{padding:8px 10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links{margin:0}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li{float:left;margin-right:8px;margin-bottom:0}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li a{background-color:#123c68;display:block;margin:0;width:40px;height:40px;padding:10px}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li a:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li a:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-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){.monsterinsights-report-year-in-review .monsterinsights-yir-footer{display:block;text-align:center;padding:15px 0;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-footer div{width:100%;font-weight:500;font-size:16px;color:#fff;text-align:center}.monsterinsights-report-site-speed .monsterinsights-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%}@media screen and (max-width:767px){.monsterinsights-report-site-speed .monsterinsights-report-top{display:-webkit-box;display:-ms-flexbox;display:flex}}.monsterinsights-report-site-speed .monsterinsights-report-top h2.monsterinsights-report-top-title{margin-top:10px}.monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-export-pdf-report{margin-right:16px}.monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-export-pdf-report button{background-color:#f5f5f5;color:#4c6577;border-color:#dcdcdc}.monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-run-audit-btn .monsterinsights-run-audit{background-color:#3990ec;height:39px}.monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-run-audit-btn .monsterinsights-run-audit:hover{background-color:rgba(57,144,236,.8)}.monsterinsights-report-site-speed .monsterinsights-choose-device-button{margin-left:15px}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button{display:inline-block;text-align:center;background-color:#f5f5f5;color:#444;border-color:#dcdcdc;border-radius:5px;outline:none}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button:hover{background-color:#3990ec;border-color:#1c77db;outline:none}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button:hover .svg-icons{fill:#fff}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.active{background-color:#3990ec;border-color:#1c77db;color:#fff;outline:none}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.active .svg-icons{fill:#fff}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.mobile{border-top-right-radius:0;border-bottom-right-radius:0;border-right:0;width:45px;height:40px}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.mobile svg{margin-left:-6px;margin-top:-1px}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.desktop{border-top-left-radius:0;border-bottom-left-radius:0;border-left:0;width:54px;height:40px}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.desktop svg{margin-left:-6px;margin-top:-1px}.monsterinsights-report-site-speed .monsterinsights-site-speed-container{max-width:1010px}.monsterinsights-report-site-speed .monsterinsights-site-speed-device,.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights-report-site-speed .monsterinsights-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){.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator{width:100%;margin-bottom:25px}}@media screen and (min-width:768px) and (max-width:1024px){.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator{width:100%;margin-bottom:25px}}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-indicator-device-icon{margin-bottom:40px;text-align:center}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-indicator-device-icon .desktop{width:80px}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-indicator-percent-text{font-size:5em;color:#f2994a;text-align:center;font-weight:700}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-indicator-overall-text{display:inline-block;padding-top:2rem;font-weight:600;font-size:16px;text-align:center}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-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}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-progress-circle__percent{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-progress-circle__container{display:inline-block;position:relative}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-progress-circle__path{-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out;overflow:visible}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats{width:662px}@media screen and (max-width:767px){.monsterinsights-report-site-speed .monsterinsights-site-speed-stats{width:100%}}@media screen and (min-width:768px) and (max-width:1024px){.monsterinsights-report-site-speed .monsterinsights-site-speed-stats{width:100%}}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-report-flex{text-align:center}@media screen and (max-width:767px){.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-report-flex.monsterinsights-report-2-columns{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-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){.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-site-speed-stat{width:100%;margin-top:15px;margin-right:0}}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-site-speed-stat h2{font-size:40px;margin:0;padding:20px 0 10px}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-site-speed-stat p{color:#828282}.monsterinsights-report-site-speed .monsterinsights-how-to-improve h2.title{font-size:22px;color:#393f4c}div.monsterinsights-pdf-score{position:relative;margin:80px;left:-1px;top:1px}.monsterinsights-reports-page .monsterinsights-header .monsterinsights-container,.monsterinsights-reports-page .monsterinsights-navigation-bar .monsterinsights-container{padding-left:10px;padding-right:10px;width:auto}@media (max-width:782px){.monsterinsights-reports-page .monsterinsights-header .monsterinsights-container,.monsterinsights-reports-page .monsterinsights-navigation-bar .monsterinsights-container{padding:0}}@media (max-width:782px){.monsterinsights-reports-page .monsterinsights-report-top{margin-bottom:25px}}.monsterinsights_page.monsterinsights-downloading-pdf-report #wpbody{-webkit-filter:blur(15px);filter:blur(15px)}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion-item-details,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-pdf-score{display:block!important}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion-item-title,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion .monsterinsights-accordion div:not(:last-child){border:none!important}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion-item-trigger-icon,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-notificationsv3-container,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-progress-circle{display:none}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page{width:1120px}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-tabs-navigation button:first-child{border-right:0}@media (max-width:782px){.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-tabs-navigation button{font-size:18px;padding:23px 20px 25px;text-align:left}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:25%}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3){border-left:1px solid #d6e2ed}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3),.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(4){border-top:0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-reports-pie-chart .monsterinsights-pie-chart{margin:inherit}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:absolute;left:250px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);margin:0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-report-box{width:calc(50% - 12.5px);margin-top:0}}@media (max-width:991px){.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex{-ms-flex-flow:inherit;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:inherit}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-reports-pie-chart{width:50%}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-reports-pie-chart:first-child{margin:0 25px 0 0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-table-box{margin-left:20px;margin-top:0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-table-box:first-child{margin-left:0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-report-2-columns .monsterinsights-table-box{width:calc(50% - 12.5px)}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex.monsterinsights-interests-scroll-report .monsterinsights-table-box{width:100%}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-reports-pie-chart{width:calc(50% - 12.5px)}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-reports-pie-chart:first-child{margin:0 25px 0 0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-left:25px;margin-top:0}}.monsterinsights-report{padding:20px;position:relative}body.monsterinsights-reporting-page #wpbody-content{padding-bottom:0}body.monsterinsights-reporting-page #wpfooter{padding-top:0}body.monsterinsights-reporting-page #wpfooter:before{display:none}body.monsterinsights-reporting-page .monsterinsights-red{color:#d73638}body.monsterinsights-reporting-page .monsterinsights-green{color:#5cc0a5}body.monsterinsights-reporting-page .monsterinsights-report-top{margin-top:14px}@media (min-width:783px) and (max-width:1130px){body.monsterinsights-reporting-page .monsterinsights-report-top{margin-bottom:25px}}body.monsterinsights-reporting-page .monsterinsights-report-top h2{margin:14px 0 28px;display:inline-block;color:#393f4c;font-size:24px}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-report-top h2{display:none}}@media (min-width:783px) and (max-width:1130px){body.monsterinsights-reporting-page .monsterinsights-report-top h2{display:block;margin:0 0 25px}}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report{float:right;margin-right:25px}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-export-pdf-report{float:none;margin-right:0;margin-bottom:0;text-align:center}}@media (min-width:783px) and (max-width:1130px){body.monsterinsights-reporting-page .monsterinsights-export-pdf-report{float:none;margin-bottom:0}}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-button{background-color:#eceff5;color:#444;border-color:#d6e2ed}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-button:focus,body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-button:hover{background-color:#fff}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-button[disabled=disabled]{cursor:not-allowed}body.monsterinsights-reporting-page .monsterinsights-report-realtime .monsterinsights-export-pdf-report{margin-right:0}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{display:-webkit-box;display:-ms-flexbox;display:flex;float:right}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{float:none;width:100%;-ms-flex-flow:wrap;flex-flow:wrap}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker .monsterinsights-buttons-toggle{width:100%;margin-right:0}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker .monsterinsights-buttons-toggle .monsterinsights-button{width:50%}}@media (min-width:783px) and (max-width:1130px){body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{float:right}}body.monsterinsights-reporting-page .monsterinsights-datepicker{width:200px;background-color:#8ea4b4;font-weight:700;color:#fff;text-align:center;border-color:#708c9f;border-width:1px 1px 2px;border-radius:3px;height:40px;margin:0}body.monsterinsights-reporting-page .monsterinsights-datepicker::-webkit-input-placeholder{color:#fff}body.monsterinsights-reporting-page .monsterinsights-datepicker:-moz-placeholder,body.monsterinsights-reporting-page .monsterinsights-datepicker::-moz-placeholder{color:#fff}body.monsterinsights-reporting-page .monsterinsights-datepicker:-ms-input-placeholder{color:#fff}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-datepicker{width:calc(50% - 5px);margin-bottom:20px;margin-top:10px;font-size:14px}}body.monsterinsights-reporting-page .monsterinsights-mobile-details-toggle{width:calc(50% - 5px);margin-bottom:20px;margin-top:10px;margin-left:10px;font-weight:700}@media (min-width:783px){body.monsterinsights-reporting-page .monsterinsights-mobile-details-toggle{display:none}}body.monsterinsights-reporting-page .monsterinsights-info{color:#b6c9da;cursor:help;font-size:15px}body.monsterinsights-reporting-page .monsterinsights-report-row{margin-bottom:25px}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button{background:#eceff5;color:#464c57;border-bottom-width:1px;border-color:#d6e2ed;border-radius:0;line-height:18px;border-right:0;margin:0}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:hover{background:#fff}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:focus{z-index:10;position:relative}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;border-right:1px solid #d6e2ed}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button.monsterinsights-selected-interval{background:#fff;color:#509fe2;font-weight:700}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info{background:#8ea4b4;border-radius:3px;color:#fff;border:solid #708c9f;border-width:1px 1px 2px;position:relative;text-align:left;font-size:14px;font-weight:400;line-height:1.1;padding:10px 20px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info:focus,body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info:hover{background:#3a93dd;cursor:pointer}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info{max-width:100%;width:100%;padding:12px 20px 8px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info>span{overflow:hidden;white-space:pre;text-overflow:ellipsis;max-width:calc(100% - 40px);display:inline-block}}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info i{margin-left:38px;margin-right:12px}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info i{margin-left:10px;margin-right:10px;vertical-align:top;display:inline-block}}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info:after{width:0;height:0;border-color:#fff 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.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown{position:absolute;z-index:100;background:#fff;border:1px solid #d6e2ed;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.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown.monsterinsights-p-0{padding:0;max-width:auto;border:0}body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button{display:block;width:100%;margin-bottom:5px;text-align:left;background-color:#fff;color:#444;border:none}body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button.monsterinsights-interval-active,body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button:active,body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button:hover{background-color:#eceff4;color:#444}body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button i{margin-right:10px}body.monsterinsights-reporting-page .monsterinsights-datepicker,body.monsterinsights-reporting-page .monsterinsights-hide{display:none}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container{position:relative}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container{max-width:100%;width:100%}}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container.monsterinsights-hide,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .monsterinsights-hide{display:none}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-wrapper{display:block}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-wrapper .flatpickr-calendar{width:100%}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-calendar.static.open{position:relative;-webkit-box-shadow:none;box-shadow:none;border:none;width:100%}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:after,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:before{display:none}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-rContainer{width:100%;display:block}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .dayContainer,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-days{width:100%;max-width:100%}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day{max-width:100%}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange.inRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange.nextMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange.prevMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange:focus,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange:hover,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected.inRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected.nextMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected.prevMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected:focus,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected:hover,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange.inRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange.nextMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange.prevMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange:focus,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange:hover{background-color:#509fe2;border-color:#509fe2}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-months{padding-bottom:10px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .dayContainer{padding:0 28px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-weekdays{height:40px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-weekdaycontainer{background:#eceff4;padding:14px 28px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-current-month{font-size:15px;color:#444}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper{width:55px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper input.cur-year{padding:0 10px 0 5px;min-height:25px}.monsterinsights-reports-overview-datagraph-tooltip-container{padding:15px;background-color:#fff;border-radius:4px;-webkit-box-shadow:0 0 24px rgba(89,164,234,.33);box-shadow:0 0 24px rgba(89,164,234,.33)}#monsterinsights-chartjs-line-overview-tooltip{min-width:100px}.monsterinsights-reports-overview-datagraph-tooltip-title{color:#23282d;font-size:14px;font-weight:400;border-bottom:1px solid #d4e2ef;padding-bottom:5px}.monsterinsights-reports-overview-datagraph-tooltip-number{color:#23282d;font-size:24px;font-weight:400;margin-top:5px;margin-bottom:5px}.monsterinsights-reports-overview-datagraph-tooltip-descriptor{color:#23282d;font-size:12px;font-weight:400;margin-bottom:10px}.monsterinsights-reports-overview-datagraph-tooltip-trend{color:#23282d;font-size:16px;font-weight:400}#monsterinsights-chartjs-bar-tooltip,.monsterinsights-line-chart-tooltip{opacity:1;position:absolute;margin-left:-55px}.monsterinsights-report-tabs-navigation{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-report-tabs-navigation button{border-color:#d6e2ed;border-style:solid;border-width:1px 0;background:#eceff4;color:#444;width:100%;font-weight:700;text-align:left;font-size:18px;padding:23px 20px 25px;cursor:pointer;margin:0;position:relative}@media (max-width:782px){.monsterinsights-report-tabs-navigation button{font-size:14px;padding:13px 20px 15px;text-align:center}}.monsterinsights-report-tabs-navigation button:first-child{border-right:1px solid #d6e2ed}.monsterinsights-report-tabs-navigation button:focus{z-index:10}.monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button{background:#fff;color:#509fe2;border-bottom:none;border-top:2px solid #3a93dd;padding-top:20px}@media (max-width:782px){.monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button{padding-top:12px}}.monsterinsights-report-tabs-navigation button i{margin-right:10px;color:#8ba4b7}.monsterinsights-report-tabs{background:#fff;border:1px solid #d6e2ed;border-top:none}.monsterinsights-report-tabs .monsterinsights-report-tabs-content{padding:20px}.monsterinsights-report-infobox-row{display:-webkit-box;display:-ms-flexbox;display:flex;border:1px solid #d6e2ed}@media (max-width:782px){.monsterinsights-report-infobox-row{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:25%;background:#fff;border-left:1px solid #d6e2ed;padding:17px 20px 15px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-info{position:absolute;right:20px;top:18px}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:first-child{border-left:none}@media (max-width:782px){.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:50%}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3),.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(4){border-top:1px solid #d6e2ed}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3){border-left:none}}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-report-title{padding-right:18px;text-overflow:ellipsis;overflow:hidden;white-space:pre;line-height:1.2}.monsterinsights-report-title{font-size:18px;color:#393f4c;font-weight:700;margin-top:0}.monsterinsights-reports-infobox-number{font-size:40px;font-weight:200;display:inline-block;line-height:1;margin-top:11px;float:left}@media (max-width:782px){.monsterinsights-reports-infobox-number{font-size:36px;float:none}}.monsterinsights-reports-infobox-compare,.monsterinsights-reports-infobox-prev{float:right}@media (max-width:1280px){.monsterinsights-reports-infobox-compare,.monsterinsights-reports-infobox-prev{float:none;clear:both}}.monsterinsights-reports-infobox-prev{font-size:16px}.monsterinsights-reports-infobox-compare{clear:right;font-size:12px;color:#acbdc9}.monsterinsights-buttons-toggle{margin-right:25px}.monsterinsights-report-flex{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:991px){.monsterinsights-report-flex{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-pie-chart-legend-color{width:12px;height:12px;display:inline-block;margin-right:5px;border-radius:50%}.monsterinsights-pie-chart-legend-text{min-width:100px;margin-right:10px;display:inline-block;font-size:16px;color:#393f4c}.monsterinsights-pie-chart-legend-value{color:#393f4c;font-size:18px;font-weight:500}.monsterinsights-reports-pie-chart{width:50%;padding:20px;background:#fff;border:1px solid #d6e2ed;position:relative}.monsterinsights-reports-pie-chart:first-child{margin-right:25px}@media (max-width:991px){.monsterinsights-reports-pie-chart:first-child{margin:0 0 25px}}@media (max-width:991px){.monsterinsights-reports-pie-chart{width:100%}}.monsterinsights-reports-pie-chart .monsterinsights-reports-pie-chart-holder{position:relative}@media (max-width:782px){.monsterinsights-reports-pie-chart .monsterinsights-pie-chart{margin:0 auto}}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:absolute;left:250px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);margin:0}@media (max-width:782px){.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:relative;left:auto;top:auto;-webkit-transform:none;-ms-transform:none;transform:none;margin-top:20px}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend .monsterinsights-pie-chart-legend-value{float:right}}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-tooltip{position:absolute;pointer-events:none}.monsterinsights-reports-pie-chart .monsterinsights-info{position:absolute;top:20px;right:20px}.monsterinsights-table-box{border:1px solid #d6e2ed;background:#fff;width:100%;margin-left:20px;padding-top:18px;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-table-box:first-child{margin-left:0;margin-top:0}.monsterinsights-table-box h3{margin-left:20px}.monsterinsights-table-box .monsterinsights-info{position:absolute}@media (max-width:991px){.monsterinsights-table-box{margin-left:0;margin-top:20px}}.monsterinsights-table-box-footer{background:#f9fbff;border-top:1px solid #d6e2ed;padding:20px}.monsterinsights-table-box-footer:after{display:table;clear:both;content:""}@media (max-width:782px){.monsterinsights-table-box-footer>.monsterinsights-button{width:100%;text-align:center}}.monsterinsights-table-list-item{padding:12px 20px;min-height:43px;font-size:15px;display:-webkit-box;display:-ms-flexbox;display:flex}table .monsterinsights-table-list-item{display:table-row}.monsterinsights-table-list-item:nth-child(odd){background-color:#f9fbff}.monsterinsights-table-list-item .monsterinsights-reports-list-text{color:#393f4c;white-space:pre;text-overflow:ellipsis;overflow:hidden;vertical-align:middle;display:inline-block;width:100%;padding:1px;margin:-1px}.monsterinsights-table-list-item .monsterinsights-reports-list-text a{display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis}.monsterinsights-table-list-item .monsterinsights-reports-list-text img{display:inline-block;margin-right:10px;vertical-align:middle}.monsterinsights-table-list-item .monsterinsights-flag{-webkit-transform:scale(.5);-ms-transform:scale(.5);transform:scale(.5);display:inline-block;margin:-12px 0 -10px -8px}.monsterinsights-table-list-item a{text-decoration:none;color:#393f4c}.monsterinsights-table-list-item a:focus,.monsterinsights-table-list-item a:hover{color:#777}.monsterinsights-table-list-item .monsterinsights-reports-list-count{display:inline-block;min-width:30px;color:#657086;font-weight:400}.monsterinsights-table-list-item .monsterinsights-reports-list-number{color:#393f4c;font-size:15px;text-align:right;display:block;padding-left:5px}.monsterinsights-table-box-pagination{float:right;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:782px){.monsterinsights-table-box-pagination{float:none;width:100%;margin-top:20px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}.monsterinsights-table-box-pagination span{margin-right:20px;color:#8ba4b7}.monsterinsights-table-box-pagination .monsterinsights-buttons-toggle{margin-right:0}.monsterinsights-table-box-list{height:100%}.monsterinsights-table-box-table .monsterinsights-table-item-content{display:-webkit-box;display:-ms-flexbox;display:flex;word-break:break-all}@media (max-width:782px){.monsterinsights-table-box-table .monsterinsights-table-item-content{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-table-box-mobile .monsterinsights-table-box-table{overflow:auto}.monsterinsights-table-box-mobile .monsterinsights-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}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-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}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td.monsterinsights-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:#393f4c;padding-top:12px;padding-bottom:12px;border-top:none}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after{-webkit-transform:translateY(-50%) rotate(0);-ms-transform:translateY(-50%) rotate(0);transform:translateY(-50%) rotate(0)}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th{display:none;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1{display:block;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1 .monsterinsights-table-item-content,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1 .monsterinsights-table-item-content{padding-right:30px;position:relative;white-space:pre;text-overflow:ellipsis;overflow:hidden;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1 .monsterinsights-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:#acbdc9;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table .monsterinsights-table-mobile-heading{min-width:125px}.monsterinsights-table-box-mobile .monsterinsights-table-box-table .monsterinsights-table-list-item-empty td:first-child .monsterinsights-table-item-content:after{display:none}.monsterinsights-table-box-table table{width:100%;border-collapse:collapse}.monsterinsights-table-box-mobile .monsterinsights-table-box-table table{table-layout:fixed}.monsterinsights-table-box-table th{text-align:left;font-size:15px}.monsterinsights-table-box-table td,.monsterinsights-table-box-table th{border:none;padding:12px 10px;line-height:19px}.monsterinsights-table-box-table td:first-child,.monsterinsights-table-box-table th:first-child{padding-left:20px}.monsterinsights-table-box-table td:last-child,.monsterinsights-table-box-table th:last-child{padding-right:20px}.monsterinsights-report-2-columns{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-report-2-columns .monsterinsights-table-box{width:calc(50% - 12.5px)}@media (max-width:991px){.monsterinsights-report-2-columns .monsterinsights-table-box{width:100%}}.monsterinsights-report-2-columns.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:50%}.monsterinsights-report-2-columns .monsterinsights-table-box:nth-child(n+1){margin-left:0}.monsterinsights-report-2-columns .monsterinsights-table-box:nth-child(n+3){margin-top:25px}.monsterinsights-report-flex .monsterinsights-report-box{width:calc(50% - 12.5px)}@media (max-width:782px){.monsterinsights-report-flex .monsterinsights-report-box{width:100%;margin-top:20px}.monsterinsights-report-flex .monsterinsights-report-box:first-child{margin-top:0}}.monsterinsights-reports-tooltip{font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.monsterinsights-arrow{width:12.5px;height:13px;display:inline-block;background-size:contain;background-repeat:no-repeat}.monsterinsights-arrow.monsterinsights-down{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAXVBMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjip09rAAAAHnRSTlMA8IciAeKVlnAwD/bp1ci5on1URtyyl2dhPzccFQOiNcZVAAAAg0lEQVQoz9XNWQ6DMAxFUUNCmwBl7Dx4/8tsjCAvQd4A98OWdT5MaOr74UtaLTOPqhRByuNL7fxefs9ZoOPmlYsdmB3RLdzFOxV759BMHQv5REqWJjKV7NZEGRc4WVqpMqu4CBtdP4s8IoAujQwACAFAAI3OABAgJ4BGgJzkuVrt0+sPB0gVjZ7FTpgAAAAASUVORK5CYII=)}.monsterinsights-arrow.monsterinsights-down.monsterinsights-green{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMADloG+qFg0bOrm1RNGJCAd3FoRe/Zyci8kjIuLCxb7jsAAACJSURBVCjP3cpbFsIgDEXRC8G29mVrfWvmP00DcREtHYHnI0A2sB7T5LEVnZh52RLHkv8DeblCnhTnnc/DSlquZXWQd+1+ZIwrwoWlqzORv7EBS4jnjbLMCUYAfaKGPlIlaIFMO5UuKGidUhp6BYwsAULOhxVYldFewagAowxFxwiNQkkKZf38DW9jKhaFyDomEwAAAABJRU5ErkJggg==)}.monsterinsights-arrow.monsterinsights-up{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMA8Icj45jrlzD20bqkfXJkV0sUD9zWxbaLcT43HO3asg8AAACASURBVCjP3clJFsIgEADRisRA5slZuf81ReQ1UZILpBa1+SyaDeup3OotsPa4AUIJCCUQKYVIERKKcC7dKqEIp1fmfugDRcgVXui+JFAogtB60nDxYBDh5mng6p49WQj6IyNTZcsHP0JjbQfMd8Of0I9IIqEdSOGkXZWhrpsJ6Q1+nBSNjDcDLgAAAABJRU5ErkJggg==)}.monsterinsights-arrow.monsterinsights-up.monsterinsights-red{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAZCAMAAAAc9R5vAAAAV1BMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjhHHlCMAAAAHHRSTlMALTzj+N0V79kkHNVD0U5IIBnqy8K3VTcSB704vhc5cQAAAJRJREFUKM/VjUkSwyAMBIeACRhsvC+J/v/ORErZcOADmYOm1F0lIccH51HJoIl0xbQNfaOHKhdT4ZKmLfnoiGrGOirixpsH3p8ySmM7+Zp4bvIrWOaH8MkrrofXlzlmOaHwE1ATd2fx4jZvXAK7/FmgmUdkgWj4hFSPUqA3ZBIQ1w2FELMm5GTB+XOxV8S5EM3nvX4AV4MVrf6KAvgAAAAASUVORK5CYII=)}.monsterinsights-reports-overview-datagraph-tooltip-trend{font-weight:700}.monsterinsights-reports-overview-datagraph-tooltip-trend .monsterinsights-arrow{margin-right:5px}.monsterinsights-report-box{background:#fff;border:1px solid #d6e2ed;padding:0 20px 20px;position:relative}.monsterinsights-report-box .monsterinsights-info{position:absolute;right:20px;top:20px}.monsterinsights-report-box-icon-heading{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-report-box-icon-heading h3{color:#509fe2;margin-left:15px}.monsterinsights-realtime-large{font-size:150px;text-align:center;line-height:1.5;color:#393f4c}.monsterinsights-realtime-active{text-align:center;width:100%;font-size:25px;line-height:1;margin-top:-50px;color:#393f4c}.monsterinsights-realtime-box-content .monsterinsights-line-chart-tooltip{max-width:115px}#monsterinsights-chartjs-pie-age-tooltip{margin-left:23px;min-width:95px}.monsterinsights-blur .monsterinsights-report-top{pointer-events:none;-webkit-filter:blur(5px);filter:blur(5px)}.monsterinsights-blur .monsterinsights-report-row{-webkit-filter:blur(5px);filter:blur(5px)}.monsterinsights-blur .monsterinsights-report{min-height:850px}.monsterinsights-blur .upsell-blur{background:#fff;width:100%;min-height:100vh}.monsterinsights-blur .upsell-blur img{max-width:100%}.monsterinsights-reports-referral-icon{vertical-align:middle;margin-right:10px;margin-left:2px}.monsterinsights-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){.monsterinsights-upsell-inline .monsterinsights-upsell-inline-content{margin:-20px;padding:20px;background:hsla(0,0%,100%,.3)}}.monsterinsights-upsell-overlay .monsterinsights-upsell-content{display:-webkit-box;display:-ms-flexbox;display:flex;gap:32px}.monsterinsights-upsell-content{max-width:750px}.monsterinsights-upsell-content__features{margin-bottom:46px;-webkit-box-flex:1;-ms-flex:1;flex:1}.monsterinsights-upsell-content__img{width:278px;background-position:100% 100%;background-repeat:no-repeat;background-size:contain}.monsterinsights-upsell-content__img.upsell-publisher{background-image:url(../img/bg-publisher@2x.png)}.monsterinsights-upsell-content__img.upsell-queries{background-image:url(../img/bg-queries@2x.png)}.monsterinsights-upsell-content__img.upsell-forms{background-image:url(../img/bg-forms@2x.png)}.monsterinsights-upsell-content__img.upsell-realtime{background-image:url(../img/bg-realtime@2x.png)}.monsterinsights-upsell-content__img.upsell-ecommerce{background-image:url(../img/bg-ecommerce@2x.png)}.monsterinsights-upsell-content__img.upsell-dimensions{background-image:url(../img/bg-dimensions@2x.png);background-position:50%}.monsterinsights-upsell-content__img.upsell-sitespeed{background-image:url(../img/bg-sitespeed@2x.png)}.monsterinsights-upsell-content__img.upsell-media{background-image:url(../img/bg-media-upsell.svg);background-position:100%}.monsterinsights-upsell-content p{font-size:16px;color:#393f4c;line-height:1.8}.monsterinsights-upsell-content .monsterinsights-light{color:#657086}.monsterinsights-upsell-content .monsterinsights-button{font-size:17px;font-weight:700;padding:15px 25px;line-height:1}@media (max-width:782px){.monsterinsights-upsell-content .monsterinsights-button{font-size:15px}}.monsterinsights-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}.monsterinsights-upsell-overlay .monsterinsights-upsell-top{padding:26px 40px;display:-webkit-box;display:-ms-flexbox;display:flex;gap:16px}@media (max-width:782px){.monsterinsights-upsell-overlay .monsterinsights-upsell-top{padding:0 20px}}@media (max-width:782px){.monsterinsights-upsell-overlay{top:70px;width:calc(100% - 40px)}}.monsterinsights-upsell-overlay h3{text-align:left;color:#23262e;font-size:20px;line-height:100%;margin:0}.monsterinsights-upsell-overlay h4{font-size:16px;line-height:140%;color:#444}.monsterinsights-upsell-overlay p{margin:24px 0;font-size:15px;line-height:140%;color:#444}.monsterinsights-upsell-overlay .monsterinsights-upsell-content{border-top:1px solid #e2e4e9;padding:32px 0 0 40px}@media (max-width:782px){.monsterinsights-upsell-overlay .monsterinsights-upsell-content{padding-left:20px;padding-right:20px}}.monsterinsights-upsell-overlay .monsterinsights-upsell-content h3{font-size:23px;line-height:120%}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul{margin:16px auto 24px;display:grid;grid-gap:10px}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul.columns-1{grid-template-columns:1fr}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul.columns-2{grid-template-columns:1fr 1fr}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li{color:#393f4c;font-size:13px;padding-left:24px;position:relative;line-height:17px}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li:before{position:absolute;width:16px;height:17px;background:url(../img/bullet.svg) no-repeat 50%;left:0;display:inline-block;top:-1px;content:""}.monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-weight:700;font-size:18px;line-height:140%;background:#338eef;border:1px solid #1177e3;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:4px;padding:12px 24px;position:relative}.monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button:after{content:"";width:13px;height:15px;margin-left:12px;background:url(../img/icon-lock.svg) no-repeat 50%}.monsterinsights-upsell-overlay a{color:#393f4c}.monsterinsights-upsell-overlay a:hover{text-decoration:none}.monsterinsights-center,.monsterinsights-mobile-upsell{text-align:center}.monsterinsights-mobile-upsell .monsterinsights-notice{border-top:1px solid #d6e2ed;border-right:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-mobile-upsell .monsterinsights-notice-inner{margin-top:0}@media (min-width:783px){.monsterinsights-mobile-upsell{display:none}}.monsterinsights-mobile-upsell .monsterinsights-notice-success .monsterinsights-notice-button{margin-right:0}@media (max-width:782px){.monsterinsights-overview-upsell-desktop{display:none}}.monsterinsights-report-realtime .monsterinsights-table-box th:first-child{width:auto}.monsterinsights-reports-list-title{display:inline-block;word-break:break-all}@media (max-width:782px){.monsterinsights-reports-list-title{width:calc(100% - 30px);text-overflow:ellipsis;overflow:hidden}}.monsterinsights-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}.monsterinsights-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-left:25px}@media (max-width:991px){.monsterinsights-report-scroll:nth-child(2){width:100%;margin-left:0;margin-top:25px}}@media (max-width:782px){.monsterinsights-report-scroll{width:100%;margin-left:0}}.monsterinsights-report-scroll>h3{position:absolute;top:0}.monsterinsights-report-scroll .monsterinsights-realtime-active{margin:0 0 50px}.monsterinsights-report-scroll .monsterinsights-realtime-box-content{margin:25px 0}.monsterinsights-report-scroll .monsterinsights-realtime-large{line-height:1;margin:50px 0 0;font-size:80px}.monsterinsights-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 .monsterinsights-not-authenticated-notice{margin-left:-357px}}@media (max-width:960px){.monsterinsights-not-authenticated-notice{margin-left:-357px}}@media (max-width:750px){.monsterinsights-not-authenticated-notice{left:0;margin-left:0}}@media (min-width:750px) and (max-width:782px){.monsterinsights-not-authenticated-notice{margin-left:-375px}}.monsterinsights-not-authenticated-notice .monsterinsights-auth-manual-connect-paragraph{display:none}.monsterinsights-not-authenticated-notice h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input-authenticate{text-align:center}.monsterinsights-not-authenticated-notice .monsterinsights-license-button{line-height:1;margin-top:20px}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button{font-size:16px;padding:20px 40px;margin:20px 20px 10px;background:#8da4b5;border-color:#6f8ca0;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button:focus,.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button:hover{background-color:#7e98ab;border-color:#627f94;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt{background:#509fe2;border-color:#2e7fbe;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt:focus,.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-disabled{background:#f3f6ff;border-color:#d6e2eb;color:#8ba4b7}.monsterinsights-reports-list-has-overflow{cursor:pointer}.monsterinsights-admin-page .monsterinsights-lite-datepicker{text-align:center;padding:12px 12px 27px}.monsterinsights-admin-page .monsterinsights-lite-datepicker p{color:#444;font-size:15px;line-height:1.5;font-weight:700}.monsterinsights-admin-page .monsterinsights-lite-datepicker .monsterinsights-button-text{color:#509fe2;display:inline-block;width:auto}.monsterinsights-admin-page .monsterinsights-lite-datepicker .monsterinsights-button-text:focus,.monsterinsights-admin-page .monsterinsights-lite-datepicker .monsterinsights-button-text:hover{color:#3a93dd}.monsterinsights-admin-page .monsterinsights-lite-datepicker .monsterinsights-button-text i{margin-left:10px}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report-lite .monsterinsights-reports-intervals-dropdown{min-width:250px}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report-lite .monsterinsights-reports-intervals-dropdown .monsterinsights-button{background:rgba(0,0,0,0);color:#509fe2}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report-lite .monsterinsights-reports-intervals-dropdown .monsterinsights-button:focus,body.monsterinsights-reporting-page .monsterinsights-export-pdf-report-lite .monsterinsights-reports-intervals-dropdown .monsterinsights-button:hover{color:#3a93dd}body.monsterinsights-reporting-page .monsterinsights-notice-error.monsterinsights-license_expired{display:none!important}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-popup{width:600px;padding:2em 3.25em}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-actions{display:none!important}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-footer{display:block!important;text-align:center;padding-top:20px}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-footer a{display:inline-block}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-footer a.swal2-styled{padding-top:16px;padding-bottom:20px;margin-bottom:15px;text-decoration:none}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-footer a:nth-child(3){color:#393f4c!important}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .monsterinsights-expired-license-alert{text-align:left;padding-right:39px}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .monsterinsights-expired-license-alert h3{font-size:40px;margin:0 0 8px;padding:0}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .monsterinsights-expired-license-alert h4{font-size:20px;margin:0 0 10px;padding:0}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .monsterinsights-expired-license-alert p{font-size:16px;margin:0 0 10px;padding:0}#monsterinsights_reports_widget,#monsterinsights_reports_widget *{-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}#monsterinsights_reports_widget .inside{margin:0;padding:0}#monsterinsights_reports_widget .monsterinsights-info:focus,#monsterinsights_reports_widget a:focus,#monsterinsights_reports_widget button:focus{outline:none;-webkit-box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}#monsterinsights_reports_widget .handlediv:focus{outline:none;-webkit-box-shadow:none;box-shadow:none}#monsterinsights_reports_widget .postbox-header .handle-actions{display:none}#dashboard-widgets .monsterinsights-reports-link,#dashboard-widgets .monsterinsights-widget-toggle,.postbox .inside .monsterinsights-reports-link,.postbox .inside .monsterinsights-widget-toggle{background-color:#fafafa;border-bottom:1px solid #eee;cursor:pointer;padding:11px 12px;line-height:1;position:relative}#dashboard-widgets .monsterinsights-reports-link:focus,#dashboard-widgets .monsterinsights-widget-toggle:focus,.postbox .inside .monsterinsights-reports-link:focus,.postbox .inside .monsterinsights-widget-toggle:focus{outline:none;-webkit-box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);z-index:10}#dashboard-widgets .monsterinsights-reports-link h2,#dashboard-widgets .monsterinsights-widget-toggle h2,.postbox .inside .monsterinsights-reports-link h2,.postbox .inside .monsterinsights-widget-toggle h2{display:inline-block;font-size:14px;font-weight:400;line-height:1;margin:0;padding:0;color:#23282c}#dashboard-widgets .monsterinsights-reports-link.monsterinsights-widget-toggle-active:after,#dashboard-widgets .monsterinsights-widget-toggle.monsterinsights-widget-toggle-active:after,.postbox .inside .monsterinsights-reports-link.monsterinsights-widget-toggle-active:after,.postbox .inside .monsterinsights-widget-toggle.monsterinsights-widget-toggle-active:after{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}#dashboard-widgets .monsterinsights-reports-link,.postbox .inside .monsterinsights-reports-link{cursor:default}#dashboard-widgets .monsterinsights-reports-link .monsterinsights-button,.postbox .inside .monsterinsights-reports-link .monsterinsights-button{font-size:12px;font-weight:700;padding:5px 9px 4px;margin-left:10px}#dashboard-widgets .monsterinsights-btn-group-label:after,#dashboard-widgets .monsterinsights-widget-toggle:after,.postbox .inside .monsterinsights-btn-group-label:after,.postbox .inside .monsterinsights-widget-toggle:after{color:#72777c;content:"\f142";display:inline-block;font:normal 20px/1 dashicons;position:absolute;right:7px;text-decoration:none!important;text-indent:-1px;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;top:8px}#dashboard-widgets .monsterinsights-btn-group-label:after,.postbox .inside .monsterinsights-btn-group-label:after{right:2px;top:2px}#dashboard-widgets .monsterinsights-upsell-overlay h3,.postbox .inside .monsterinsights-upsell-overlay h3{text-align:left;color:#393f4c;font-size:20px;margin:12px 0 20px;font-weight:700;line-height:1.4}#dashboard-widgets .monsterinsights-upsell-overlay .monsterinsights-upsell-subtitle,.postbox .inside .monsterinsights-upsell-overlay .monsterinsights-upsell-subtitle{text-align:left}#dashboard-widgets .monsterinsights-upsell-overlay .monsterinsights-upsell-top,.postbox .inside .monsterinsights-upsell-overlay .monsterinsights-upsell-top{padding:0 20px}#dashboard-widgets .monsterinsights-upsell-overlay .monsterinsights-upsell-content,.postbox .inside .monsterinsights-upsell-overlay .monsterinsights-upsell-content{padding:20px;width:100%}#dashboard-widgets .monsterinsights-upsell-overlay .monsterinsights-upsell-content ul,.postbox .inside .monsterinsights-upsell-overlay .monsterinsights-upsell-content ul{display:none}#dashboard-widgets .monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button,.postbox .inside .monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button{margin-top:0;font-size:13px;padding:8px 10px}#dashboard-widgets .monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-center,.postbox .inside .monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-center{text-align:left}#dashboard-widgets .monsterinsights-button-full-report,.postbox .inside .monsterinsights-button-full-report{font-size:12px;padding:5px 9px 4px;font-weight:700;line-height:1;margin-right:-5px;margin-left:5px}.monsterinsights-widget-cog{margin:0 0 0 10px;border:none;cursor:pointer;display:block;height:20px;padding:0;width:20px;color:#72777c;background:none;font-size:16px}.monsterinsights-widget-cog:focus,.monsterinsights-widget-cog:hover{color:#393f4c}.monsterinsights-widget-dropdown{position:relative;display:inline-block;vertical-align:middle}.monsterinsights-widget-dropdown-content{background:#fff;border:1px solid #d8d8d8;border-radius:5px;cursor:auto;font-weight:400;margin-right:-11px;margin-top:5px;padding:0 10px 10px;position:absolute;right:0;top:100%;width:180px;z-index:999}.monsterinsights-widget-dropdown-content:before{border-color:rgba(0,0,0,0) rgba(0,0,0,0) #d8d8d8;border-style:solid;border-width:0 4px 4px;bottom:100%;content:"";height:0;position:absolute;right:16px;width:0}.monsterinsights-widget-dropdown-content:after{border-color:rgba(0,0,0,0) rgba(0,0,0,0) #fff;border-style:solid;border-width:0 3px 3px;bottom:100%;content:"";height:0;position:absolute;right:17px;width:0}.monsterinsights-widget-dropdown-content>span{color:#999;font-size:10px;margin-top:12px;display:block}.monsterinsights-widget-dropdown-content label{padding-left:16px;color:#393f4c;font-size:12px;position:relative;margin-bottom:4px;display:block}.monsterinsights-widget-dropdown-content label:before{content:"";border:1px solid #d6e2ed;width:10px;height:10px;display:block;position:absolute;left:0;top:3px}.monsterinsights-widget-dropdown-content label input[type=checkbox]{display:none}.monsterinsights-widget-dropdown-content label.monsterinsights-checked:after{content:"";border-color:#509fe2;border-style:solid;border-width:1px 0 0 1px;display:block;width:6px;height:10px;position:absolute;left:3px;top:2px;-webkit-transform:rotate(216deg);-ms-transform:rotate(216deg);transform:rotate(216deg)}.monsterinsights-widget-dropdown-content label:focus{outline:none;-webkit-box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}.monsterinsights-red{color:#d73638}.monsterinsights-green{color:#5cc0a5}.monsterinsights-btn-group{position:relative;display:inline-block;vertical-align:middle;width:110px;margin-right:0}.monsterinsights-btn-group .monsterinsights-btn-group-label,.monsterinsights-btn-group .monsterinsights-btn-group-list-button{background:#fff;border:1px solid #d8d8d8;border-radius:5px;cursor:pointer;display:inline-block;font-size:13px;font-weight:400;line-height:1;padding:5px 14px 5px 10px;position:relative;text-align:left;width:100%;margin:0}.monsterinsights-btn-group-list{border-left:1px solid #d8d8d8;border-right:1px solid #d8d8d8;position:absolute;top:100%;z-index:1000;right:0;left:0}.monsterinsights-btn-group-list .monsterinsights-btn-group-list-button{border-radius:0;border-width:0 0 1px}.monsterinsights-btn-group-list .monsterinsights-btn-group-list-button.monsterinsights-btn-group-list-button-selected{background:#1f76c4;color:#fff}.monsterinsights-btn-group-open .monsterinsights-btn-group-label{border-radius:5px 5px 0 0}#monsterinsights_reports_widget.closed .inside{display:block}#monsterinsights_reports_widget .monsterinsights-widget-settings{position:absolute;bottom:100%;right:12px;margin-bottom:6px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}@media (max-width:782px){#monsterinsights_reports_widget .monsterinsights-widget-settings{right:10px}}#monsterinsights_reports_widget .hndle{font-size:14px}#monsterinsights_reports_widget .toggle-indicator{display:none}#monsterinsights_reports_widget .monsterinsights-not-authenticated-notice{-webkit-box-shadow:none;box-shadow:none;position:relative;width:100%;margin:0;left:0;top:0;padding-top:50px;border:none}#monsterinsights_reports_widget .monsterinsights-not-authenticated-notice h3{font-size:18px;font-weight:700}@media (max-width:430px),(max-width:936px) and (min-width:800px),(max-width:1040px) and (min-width:962px),only screen and (max-width:1890px) and (min-width:1800px){#monsterinsights_reports_widget .monsterinsights-button-full-report{display:none}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-button-full-report{display:block;padding:12px 12px 11px;line-height:1;font-size:14px;margin-right:0}.monsterinsights-report-tabs{margin:20px}.monsterinsights-report-infobox-row{margin:0 20px 20px;-ms-flex-flow:wrap;flex-flow:wrap}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:50%;padding:12px 10px 10px 15px}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3){border-left:none}@media (min-width:783px){.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:first-child,.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(2){border-bottom:1px solid #d6e2ed}}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-info{top:12px;right:15px}.monsterinsights-reports-infobox-number{font-size:36px;float:none}.monsterinsights-reports-infobox-compare,.monsterinsights-reports-infobox-prev{float:none}.monsterinsights-reports-infobox-prev{margin-top:15px}.monsterinsights-info{color:#b6c9da;cursor:help;font-size:15px}.monsterinsights-widget-regular-width .monsterinsights-report-tabs-navigation button{font-size:14px;padding:11px 9px 12px;line-height:1;text-align:left;font-weight:400}.monsterinsights-widget-regular-width .monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button{padding-top:9px}.monsterinsights-widget-regular-width .monsterinsights-report-tabs-navigation button i{margin-right:7px}.monsterinsights-widget-regular-width .monsterinsights-table-list-item{font-size:14px;padding:11px 12px;min-height:36px}.monsterinsights-widget-regular-width .monsterinsights-table-box-table td,.monsterinsights-widget-regular-width .monsterinsights-table-box-table td:first-child,.monsterinsights-widget-regular-width .monsterinsights-table-box-table th,.monsterinsights-widget-regular-width .monsterinsights-table-box-table th:first-child{padding-left:12px;padding-right:12px}.monsterinsights-widget-report-title .monsterinsights-info{margin-left:10px;color:#b4b9be}.monsterinsights-widget-content{border-bottom:1px solid #eee;height:100%}.monsterinsights-widget-content .monsterinsights-table-box{padding-top:0;border:none}.monsterinsights-dashboard-widget-page.monsterinsights-blur .monsterinsights-widget-content{height:auto}.monsterinsights-button{background:#509fe2;border:solid #2e7fbe;border-width:1px 1px 2px;border-radius:3px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none}.monsterinsights-button:focus,.monsterinsights-button:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-button.monsterinsights-button-green{background:#5cc0a5;border-color:#40a88d;color:#fff}.monsterinsights-button.monsterinsights-button-green:focus,.monsterinsights-button.monsterinsights-button-green:hover{background-color:#4ab99b;border-color:#39967e;color:#fff}.monsterinsights-table-box-footer{text-align:left}.monsterinsights-table-box-pagination{display:none}.monsterinsights-buttons-toggle .monsterinsights-button{background:#eceff5;color:#464c57;border-bottom-width:1px;border-color:#d6e2ed;border-radius:0;line-height:18px;border-right:0;margin:0}.monsterinsights-buttons-toggle .monsterinsights-button:hover{background:#fff}.monsterinsights-buttons-toggle .monsterinsights-button:focus{z-index:10;position:relative}.monsterinsights-buttons-toggle .monsterinsights-button:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}.monsterinsights-buttons-toggle .monsterinsights-button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;border-right:1px solid #d6e2ed}.monsterinsights-buttons-toggle .monsterinsights-button.monsterinsights-selected-interval{background:#fff;color:#509fe2;font-weight:700}.monsterinsights-reports-pie-chart{border:none;width:100%}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{left:220px}@media (max-width:782px){.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{left:auto}}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend .monsterinsights-pie-chart-legend-text{min-width:75px}.monsterinsights-upsell-overlay{position:relative;-webkit-transform:none;-ms-transform:none;transform:none;left:0;top:0;-webkit-box-shadow:none;box-shadow:none;border-radius:0;padding-top:0;border:none}.monsterinsights-upsell-overlay .monsterinsights-button{color:#fff}.monsterinsights-ecommerce-overview{padding-top:20px}.monsterinsights-ecommerce-overview .monsterinsights-upsell-overlay{padding-top:0}.monsterinsights-report-title{font-size:16px}.mi-dw-not-authed{padding:20px;text-align:center}.mi-dw-not-authed h2{font-size:18px;margin:0}.mi-dw-not-authed p{font-size:14px;margin:18px auto;max-width:280px}.mi-dw-license-expired{padding:20px;text-align:center;margin-top:31px}.mi-dw-license-expired h2{font-size:16px;margin:0 0 20px}.mi-dw-license-expired p{font-size:14px;max-width:500px;margin:0 auto 23px}.mi-dw-btn-large{background:#1f76c4;border-radius:5px;color:#fff;display:inline-block;font-size:14px;line-height:1;margin-bottom:10px;padding:14px 28px;text-decoration:none}.mi-dw-btn-large:hover{color:#fff}.monsterinsights-widget-loading{animation:swal2-rotate-loading 1.5s linear 0s infinite normal;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;background-color:rgba(0,0,0,0)!important;border-radius:100%;border-color:rgba(0,0,0,0) #4b9ce4;border-style:solid;border-width:.25em;-webkit-box-sizing:border-box;box-sizing:border-box;color:rgba(0,0,0,0);cursor:default;height:2.5em;margin:50px auto;padding:0;width:2.5em;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.monsterinsights-widget-full-width .monsterinsights-widget-accordion{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;padding:20px 22px 22px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-widget-full-width .monsterinsights-widget-accordion:after{width:calc(33.333% - 13px);display:block;content:""}@media (max-width:782px){.monsterinsights-widget-full-width .monsterinsights-widget-accordion{padding:0}}@media (max-width:782px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-table-box{padding-top:0!important}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-content>div:not(.monsterinsights-widget-loading){height:auto!important}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-reports-interval-date-info{font-size:14px;padding:12px 30px 10px 20px}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-reports-interval-date-info>span{line-height:1.2}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-reports-interval-date-info:after{top:11px;right:7px}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-datepicker{width:auto}@media (max-width:782px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-datepicker{width:100%;margin:10px 0}}.monsterinsights-table-box .monsterinsights-info{top:20px;right:20px}.monsterinsights-reports-pie-chart .monsterinsights-info,.monsterinsights-reports-pie-chart .monsterinsights-report-title,.monsterinsights-table-box .monsterinsights-info,.monsterinsights-table-box .monsterinsights-report-title{display:none}.monsterinsights-hide-button,.monsterinsights-width-button{border:none;background:none;padding:0;margin:0 0 0 8px;color:#72777c;cursor:pointer}.monsterinsights-hide-button:focus,.monsterinsights-hide-button:hover,.monsterinsights-width-button:focus,.monsterinsights-width-button:hover{color:#393f4c}.monsterinsights-hide-button i,.monsterinsights-width-button i{font-size:16px}.monsterinsights-widget-full-width .monsterinsights-hide-button i,.monsterinsights-widget-full-width .monsterinsights-width-button i{font-size:20px}.monsterinsights-hide-button{margin-left:0;margin-top:5px;color:#393f4c}.monsterinsights-report-tabs .monsterinsights-report-tabs-content{padding:10px 5px 7px 9px}#monsterinsights_reports_widget.monsterinsights-widget-full-width{margin:16px 0}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-reports-pie-chart .monsterinsights-info,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-reports-pie-chart .monsterinsights-report-title,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-table-box .monsterinsights-info,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-table-box .monsterinsights-report-title{display:block}@media (max-width:782px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-reports-pie-chart .monsterinsights-info,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-reports-pie-chart .monsterinsights-report-title,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-table-box .monsterinsights-info,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-table-box .monsterinsights-report-title{display:none}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-report-tabs .monsterinsights-report-tabs-content{padding-left:20px;padding-bottom:20px}@media (max-width:782px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-report-tabs .monsterinsights-report-tabs-content{padding-left:5px;padding-bottom:5px}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-table-box{padding-top:22px}#monsterinsights_reports_widget.monsterinsights-widget-full-width .hndle{padding:22px 22px 22px 72px;border-bottom:none;height:auto;margin:0;position:relative;font-size:16px;color:#657086;font-weight:400;cursor:default}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-element{border:1px solid #d6e2ed;display:block;padding:0;width:calc(33.333% - 13px);margin-top:20px}@media (max-width:1280px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-element{width:calc(50% - 10px)}}@media (max-width:782px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-element{width:100%;padding:0;border:none;margin-right:0;margin-top:0}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-element:first-child{width:100%;border:none;padding:0;margin:0}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-settings{right:22px;margin-bottom:4px}@media (max-width:806px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-settings{right:0;margin-right:10px;position:relative;bottom:0;margin-left:10px;float:none;margin-bottom:0}}@media (max-width:494px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-settings .monsterinsights-button-full-report{display:none}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-settings .monsterinsights-btn-group{width:auto}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list{width:auto;position:relative;top:0;border:none;border-radius:0}@media (max-width:782px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list{margin:20px 0}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button{background:#eceff5;color:#464c57;border-radius:0;line-height:18px;display:inline-block;margin:0;width:auto;border:1px solid #d6e2ed;padding:10px 20px;font-size:14px}@media (max-width:782px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button{padding:10px 15px}}@media (max-width:374px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button{font-size:12px;padding-left:10px;padding-right:10px}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button:hover{background:#fff}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button:focus{z-index:10;position:relative}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px;border-right:0}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button.monsterinsights-btn-group-list-button-selected{background:#fff;color:#509fe2;font-weight:700}@media (max-width:782px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-widget-content{padding:20px}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row{margin:20px 0 0}@media (min-width:783px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:25%;padding:17px 20px 15px}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:first-child,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(2){border-bottom:0}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3){border-left:1px solid #d6e2ed}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-reports-infobox-number{font-size:36px;float:left}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-reports-infobox-compare,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-reports-infobox-prev{float:right}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-content{border-bottom:0}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-report-tabs{margin:0}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-cog,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-width-button{background:#8ea4b4;border:1px solid #708c9f;padding:9px;color:#fff;font-size:20px;line-height:1;min-width:40px;height:auto;width:auto;border-radius:5px}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-cog:focus,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-cog:hover,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-width-button:focus,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-width-button:hover{background-color:#708c9f}@media (max-width:374px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-cog,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-width-button{padding:8px;min-width:38px}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-toggle{display:none}@media (max-width:782px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-toggle{display:block}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-content>div:not(.monsterinsights-widget-loading){height:100%}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-content>div:not(.monsterinsights-widget-loading) .monsterinsights-upsell-overlay{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;height:100%}.monsterinsights-report-2-columns.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:first-child,.monsterinsights-report-2-columns.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(2){border-bottom:0}.monsterinsights-fullwidth-mascot{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFIAAABQCAMAAAC9OtKiAAAC91BMVEUAAABvS7ttSbluSrpvS7tuSrpvS7tvS7tvSrtsSLdsTLFvS7tuSrluSrpvS7tvS7ttSblvS7tpRrRvS7tvS7tvS7tvS7tvS7tgP6lhP6pvS7tvS7s0OkZvS7tvS7tvS7s5P0xnRbJsSLc2PElvS7s5P0w5P0w5P0w6P05vS7tvS7thP6lfPqc5P0wvMUFgPqg5P0xfPqcrMDk5P0xfPqcrMDlXRolqR7U5P0xfPqeUeM+ljdTT6O////9vS7t9XcI5P0xfPqfqTmQjIyOSdc1/X8OiitOkjNQyMjKYftCGZ8d4VcDsYndxTbxkQqyLbcmagdFmRLChh9N2U7+DZMZ6WMFzUL1yTr2fhdKQc80ewYX/iTrY6/GXe9CPcsx7W8H9/v6BYcUrMDqNb8uIasmdhNGcgtGVec9uSrrv9/lsSbb4/P1pRrTz+fvQ5u2Ia8fn8vfg7/SOcsqEZsTb7PJzVLY+Q1OsotugoqJESFrk8PXS5u/O4+pTT3FUXWkvLi/V4+ihsbr8+vvr9PjAw+XG2eDA09r0sbyZmZlKSmRMVGE9NV9BSFUxNETk5PTO3uzK2evEzejM4OeljNS3ydGLccJ/YcB5WruJlqDyiprweoxteINganVbZHCcRVMoKCrx8/n98PLRzeu2teClktbNzc2Xf8u0w8r0usO2t7jkvqBwYZx1folncX1LO3rdS2Dq6uq8vuO+sOGxqd2x4duY3M3ausWtvsSF18KDbrfgqbWYp7FeP6OEj5hYPpV5hpBhWoToboHtZnrLSFxzOkXs7Pf84eTW2ODY09e6zdXb1s6vwMjdtb52Vb2ss7Vs0LKKebLkxa2kqqx7aKtHyZ1pWJZkWopROonndYfoWGzrVmzQWWtFPGr5llRSUlI/Pz88MjQ4KCouJSbX39/l2tvAwb6XyL2Sf7x+Ybv0pbHfl6ZbuJfihZbig5RnqpHss4mrlomIiIjNaXfTY3PHWGiDV2bxnWTSkGRiYmKmQ1NTQVBENkBUODwEKmHaAAAAOnRSTlMA7wscTEHV+/QT/tyvt5+JXjYE4cmWVij05W9nWoV8dkA6LxGlJerYxMGofEnhx8ChkXZrJOnf0JN2dWY7XQAACrdJREFUWMOdmGVgWlcUgEnSxaVpI+187dxdHo/DI+WRAcECgbAREgKBuGuTZsvqXTvptnbd1s7bbpW5u7u7u7vrj51773s8LMuW7weFW/hy7rn3XHmqydm1MD1V8275qumSkwaZ5Umt6fsCzJiushQAsssSGsszsTVz1vSMGVngFwH2iGuckQ0ekwdmTk9ZCGb7eTaA/JiE7gng9NtEmD2tMHOywGZUq40WyMyQmmYVAmg5LiROL0wMyMnVqdXqWjfkZTDjwQAujuNMWhFKpqOcDSaOUyPVZsjLIS37AjYhLlTCvP8sSi/IYW+KwaLnOANxGsxQgvncgxoRUautiY5a0ZQTahfIK2dfhRr8da2axumGQlWZbNRrtRhmJosgH4qmUu4lT8VMKgirKWGAvdJA5ChBqoQMaZIeNJXyYPAAlKar0gG8+HOjmuEHwNFihLSIE8qwMrPBAtlTKTPB2wswu2wX8HCESqY8rx4gKCkDWgIUzTsIwBwi4f47aeCvDJsB0kgqaTIZTdhthpcaRfwGWAJcwA37TKHE/taqK70eYArsuYRJr/QbCQBAjR/9zinWEJpCMr8NvW4XMxgkZS0nIUpR1pBEmKZSIlmYsmqiqLTXUYOdTCJ91wW9UpQ2LcXkl+aTG3aZsmZC0c7WGjmk+oLW1mYAaB2wEYlIQjR5o0kAKP+3Xs8ozQMIRMcEQ60O69En0bwee+oy2fychJfmNO3gmZMMetlBWYDU6yNcpFIts9naLvmI+RnJpUwnlxkImXumUhYBZtxuwKExKuPcZNVZobndqiNYHa0iK8lQSM9WJBt+sIlOgJLUpdgniwy18jgPoAmtA+u6/KSjtui6Ieo5byjISbigIJVyJgTUiWzWIbl9XDxBLWKLywAUplLOgBppTJRMfo4xojABf5JSm3o9KgY37TTOnLpqSZmry/VzyZhwWOIa6mGvlBsiADFGOILktObquVR4/fIb9v9mmDlJLeKg2LnY0nbQn6qvOOuRxd39Z597w5AxMVyROierymzA2Oo4BlvNScJuvEzDaGjx8Z03GGKVopRTNxSnVOZBU1QZYYs5xw1RoSzt5nn+BruiDElRTrZoloAd5zZHsVOlkbuiQRNHCzrPvkpx6tkrQHpKZQFgBitpturYPKo7S5PIYnSODiXOqsl2i0Lg2PpjbEIjAY1J9PBIgjMIs1Mri8CvjuMKTQraiHJU7vsF2+5fhOw8fr9J9ltbnPFGzONkYZ5jJCnctlKIcsAx81MVuSlOGR3rpBFCruS4bSOCsHrHhRO33TZx4cWrBWH/Y5KLnK4b0QJfoklNG1V2bl4kCON3jfG8z+cjnyc2CsKB85OKvIZUj3GyIM9YvuGiizYsv5wql60SVt816uvu6OjuQWV3Sz8/MSIclpDSDLJuRPfEoUThhiqJL0+nxvFlfHcDmigtGk2Hb+lGYf/9EoucRplyuB99oEqmourxsXFh41pfWxsKGR2ktnrGLhEOmJ9Q5DTA1HOyYeuDVW9t2vQzKive2C6sWtrf0OHjZdo0hIVrx4UjE4q8WlEu1CTy9PsnI+9vqqh4SBC2+Bo6eIUGzeUb3qxa3vPEoLB3fJE3KcqeJGXDeycTLt1U8bBwH9/Rxseg0VxUgWz1XSgcGKvMB7ui9GmS+J0YT1uw4A9hcGlPQz+v4NNcXkF4feHYSFyYpWBUlJ1tScp3aZALFvwlbOfbFvMx9EvKn1YM3yOcGHeH4BTl2d2Ki1Xm41KQC9YIE/0Nvlhlj9TxO6++5kXhsNjrJvQqynN4JcytxHn9u9SICMLa7hY+FhzLj39848HlWK6jq4X5scouRbmE70cRY8NFy7f+8J5svFRYxbf0xCmxR9cMn8HKdWNMMovToE9R3oTdkZ1f4ARnvWbKS3gyJW++/ZZOSblYc/2KqzUU/mJh96gx2wNaRXlVJ2a9TSodVP5NRoZymrCDx34/d8opp7wsOVtokEy5PaosT3P3gjl6CmwKL6FJYtIHq6rewhAlJUbZzd98CuF2qR5JkIlRpmdagpzFIhm9ASeA7Uo65RYubmlZ/iaWzAfM+OEmYZzv4W+hyuckZTTINv4SOZeFEMIdXi7yWtwqTR7oPYeX+AZnyHUPf4DChx+6Thgc80lRfvvsMp4//YVrv5eD7OBHhP2k5dcWwXOIrDyPHgxEEGXn6Q+gE63Xkdc/hadw+/mK5PK24RXDn7xz6qmnXruQjWX3E8L+7FqcZya7bT0r8ujaboOuUdn5dUWUX7DE+S0rPiUj3nn+i7+dSjidX0ykWORHSjPSTg4FYmyRM+cQL3Pr60z4wNNbhNVrl654lpf4lSqfxLR3aFo6V7FUzpqtxX6Sk2ed5DJ5r6L/itpRPspjt955562P4XFjpXDh8PCY3PydFCWy0HeXcADLJInOgAcx0DNjNYQ1Z9xYiW88S/hEzrW/JKweXsrLfERzyVOWjkhTqMCJ41GJpyawSan0WB7R2O2k6/bOeOHZ5KSxSNgYDZKOOHabMHqJtFzmZPmJJ8IFozt5F0TOEg0YpsFlv+mcmAhvqqOHjBFhRyefzH3CYO4+7ExQy5ReECWlwQmmXpKBaj2etA1DVy4599wlVw41cRJ3DAo71iYKxy4WBp8X0zJQua+TavDvKxUZdkM9nVEk0rAxwskozlVPxRvPH0cjBlNA7o0hWemxqKNOM1j6jJXoNLCCSnTieejiLTHC7YKw8jOigWI8EkSYklWkjMFkAbA4zZbeRCVD/+ogHmHumTh/2bLzJ+4ZFwTh/iYD+aKlFKdQk6yskbddfSXefqqD9R6AmurUShyk+1EaZU3jK45cdIbrM1W7Ais/rEitXJFdXecZw8RlUK74KdC/9OrbIyMjKxctWtPYeKa1uXW9ujISyFKVOllHMcqAvEcawWQIRyJ1RruiTI0lwCGbiREArGE75wJVAZ05dg4xRffIPnAGmwzVGP8USo/IIZGVa+5ubXdYdXg9FLNUJSY1rR0kpOyRxq6uCAqnVJrNHGFb42s6wjockBJVni2qDILZz9XZw7XVBgPxTa7U671BW8hkcpnJI6qugdy77yVOjFJvKVKl0cjC0v0yBo+7pkYrii6CyVVjpjidbrfHAjFgz9c3Q7N155qd1mZHMADlqqwutlTQ6vWboGCP0vws8FgsMDkWC2pLSov23HXmvhDk1rW363Rvn+kAaM61FJJjZT1WiXzX08OueOCy1Gtl6hEn7DZvXraHvNVGcaflsI3QE/TrEDKJ8JHFbGydC81gcentvXpZWQyiKyBqFczkYVCaW6sgBlwuzx7sQJ5nca3T6e49U0chK9ERYLW2y/2xACrzzfIY6P1JyhC2chRXWjpbHPPBXb/+lcYz70bjnFnYcghGOxfA6nCcUNDe3tp6SE5WSBnZJKVNuehDmfwgFZPf2ti4Zue9c06igc/RHXVUayv+gWNnzdU52g8tA/9USoa7ULk7FM84vBE5mn08dBfVPg6Hbs6hKtW8udY56Rl5Tu9/UdZnYavC7kwZ5Yg5+cfSvBwyE+PO9AQG+jjvgCO3L0nZN2DN7eJsA+vM2fFPH+Yf13i4fMKiqvT459aOdt2Ao7lZpxuoQZxU6SFvn7Hq2sGxXudonVuu+h/MmosrgM6B2dDpgECVQMAmq4O+WCd9vPoPhumB3HmlMigAAAAASUVORK5CYII=);width:41px;height:40px;background-repeat:no-repeat;background-size:contain;position:absolute;left:22px;bottom:100%;margin-bottom:4px}.monsterinsights-fullwidth-report-title{position:absolute;left:72px;font-size:20px;color:#393f4c;font-weight:700;bottom:100%;margin-bottom:0}.monsterinsights-blur .monsterinsights-report-row{-webkit-filter:none;filter:none}#dashboard-widgets .monsterinsights-widget-footer{padding:11px 12px;line-height:1;font-size:13px;color:#72777c}#dashboard-widgets .monsterinsights-widget-footer .monsterinsights-dark{color:#23282c;font-weight:500}#dashboard-widgets .monsterinsights-widget-footer a{margin-right:10px;text-decoration:underline;color:#1c75a6}#dashboard-widgets .monsterinsights-widget-footer a:focus,#dashboard-widgets .monsterinsights-widget-footer a:hover{text-decoration:none;color:#393f4c}@media (max-width:782px){#dashboard-widgets .monsterinsights-upsell-overlay{width:100%}}#dashboard-widgets .monsterinsights-upsell-overlay a{text-decoration:underline}#dashboard-widgets .monsterinsights-upsell-overlay a.monsterinsights-button,#dashboard-widgets .monsterinsights-upsell-overlay a:focus,#dashboard-widgets .monsterinsights-upsell-overlay a:hover{text-decoration:none}.monsterinsights-flex{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-height100{height:100%}@media (max-width:782px){.monsterinsights-height100{height:auto}}.monsterinsights-table-item-content{word-break:break-all}.monsterinsights-table-box.monsterinsights-table-box-mobile .monsterinsights-reports-list-title{width:calc(100% - 30px);text-overflow:ellipsis;overflow:hidden}#monsterinsights-chartjs-line-overview-tooltip{margin-top:-60px}.folded #monsterinsights-chartjs-line-overview-tooltip{margin-left:-118px}#monsterinsights_reports_widget .monsterinsights-widget-error{padding:50px 25px;text-align:center}#monsterinsights_reports_widget .monsterinsights-widget-error .monsterinsights-error-title{font-weight:700;font-size:24px}#monsterinsights_reports_widget .monsterinsights-widget-error .monsterinsights-error-content{font-size:16px}#monsterinsights_reports_widget .monsterinsights-widget-error .monsterinsights-error-footer{margin:35px 0 0;padding:15px 0 0;border-top:1px solid #ccc}#monsterinsights_reports_widget .monsterinsights-widget-error .swal2-icon,#monsterinsights_reports_widget .monsterinsights-widget-error .swal2-icon *{-webkit-box-sizing:content-box;box-sizing:content-box}.monsterinsights-widget-accordion-lite .monsterinsights-widget-report-overview .monsterinsights-widget-content{padding-top:20px}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-accordion-lite .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row{margin:0 0 20px}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-accordion-lite .monsterinsights-upsell-overlay{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-accordion-lite .monsterinsights-upsell-overlay .monsterinsights-upsell-content{height:100%}.monsterinsights-faded{opacity:.5}.monsterinsights-lite-overview-buttons{border-top:1px solid #d6e2ed;background:#f9fbff;padding:20px}.monsterinsights-lite-overview-buttons .monsterinsights-button{margin-top:0;font-size:13px;padding:8px 10px}.monsterinsights-swal .swal2-title{line-height:1.2}#dashboard-widgets .monsterinsights-tips{border:1px solid #5fa6e7;margin:0 20px 20px;padding:17px 15px;color:#393f4c;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}#dashboard-widgets .monsterinsights-tips .monstericon-star{color:#5fa6e7;font-size:19px;margin-right:14px}#dashboard-widgets .monsterinsights-tips a{color:#5fa6e7;text-decoration:underline}#dashboard-widgets .monsterinsights-tips a:hover{text-decoration:none}.monsterinsights-widget-full-width .monsterinsights-tips,.monsterinsights-widget-regular-width .monsterinsights-lite-datepicker p br{display:none}.monsterinsights-widget-datepicker{width:110px;display:inline-block;vertical-align:middle}.monsterinsights-datepicker,.monsterinsights-widget-datepicker .monsterinsights-reports-interval-date-info .monsterinsights-datepicker-colon,.monsterinsights-widget-datepicker .monsterinsights-reports-interval-date-info .monsterinsights-datepicker-interval-dates{display:none}.monsterinsights-reports-interval-dropdown-container{position:relative}@media (max-width:782px){.monsterinsights-reports-interval-dropdown-container{max-width:100%;width:100%}}.monsterinsights-reports-interval-dropdown-container.monsterinsights-hide,.monsterinsights-reports-interval-dropdown-container .monsterinsights-hide{display:none}.monsterinsights-reports-interval-dropdown-container .flatpickr-wrapper{display:block}.monsterinsights-reports-interval-dropdown-container .flatpickr-wrapper .flatpickr-calendar{left:-45px}.monsterinsights-reports-interval-dropdown-container .flatpickr-calendar.static.open{position:relative;-webkit-box-shadow:none;box-shadow:none;border:none;width:100%}.monsterinsights-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:after,.monsterinsights-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:before{display:none}.monsterinsights-reports-interval-dropdown-container .flatpickr-rContainer{width:100%;display:block}.monsterinsights-reports-interval-dropdown-container .dayContainer,.monsterinsights-reports-interval-dropdown-container .flatpickr-days{width:100%;max-width:100%}.monsterinsights-reports-interval-dropdown-container .flatpickr-day{max-width:100%}.monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange,.monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange.inRange,.monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange.nextMonthDay,.monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange.prevMonthDay,.monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange:focus,.monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange:hover,.monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected,.monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected.inRange,.monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected.nextMonthDay,.monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected.prevMonthDay,.monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected:focus,.monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected:hover,.monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange,.monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange.inRange,.monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange.nextMonthDay,.monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange.prevMonthDay,.monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange:focus,.monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange:hover{background-color:#509fe2;border-color:#509fe2}.monsterinsights-reports-interval-dropdown-container .flatpickr-months{padding-bottom:10px}.monsterinsights-reports-interval-dropdown-container .dayContainer{padding:0}.monsterinsights-reports-interval-dropdown-container .flatpickr-weekdays{height:40px}.monsterinsights-reports-interval-dropdown-container .flatpickr-weekdaycontainer{background:#eceff4;padding:14px 28px}.monsterinsights-reports-interval-dropdown-container .flatpickr-current-month{font-size:15px;color:#444}.monsterinsights-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper{width:55px}.monsterinsights-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper input.cur-year{padding:0 10px 0 5px;min-height:25px}.monsterinsights-reports-interval-date-info{background:#fff;border:1px solid #d8d8d8;border-radius:5px;cursor:pointer;display:inline-block;font-size:13px;font-weight:400;line-height:1;padding:4px 14px 3px 10px;position:relative;text-align:left;width:100%;margin:0}.monsterinsights-reports-interval-date-info b{font-weight:400}.monsterinsights-reports-interval-date-info>span{overflow:hidden;white-space:pre;text-overflow:ellipsis;max-width:100%;display:inline-block;line-height:14px}.monsterinsights-reports-interval-date-info i{display:none}.monsterinsights-reports-interval-date-info:after{color:#72777c;content:"\f142";display:inline-block;font:normal 20px/1 dashicons;position:absolute;right:2px;text-decoration:none!important;text-indent:-1px;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;top:2px}.monsterinsights-reports-intervals-dropdown{position:absolute;z-index:100;background:#fff;border:1px solid #d6e2ed;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%;min-width:280px}.monsterinsights-reports-intervals-dropdown.monsterinsights-p-0{padding:0;max-width:auto;border:0}@media (max-width:782px){.monsterinsights-reports-intervals-dropdown{left:auto;right:-20px}}.monsterinsights-reports-intervals-dropdown a,.monsterinsights-reports-intervals-dropdown button{display:block;width:100%;margin-bottom:5px;text-align:left;background-color:#fff;color:#444;border:none}.monsterinsights-reports-intervals-dropdown a.monsterinsights-interval-active,.monsterinsights-reports-intervals-dropdown a:active,.monsterinsights-reports-intervals-dropdown a:hover,.monsterinsights-reports-intervals-dropdown button.monsterinsights-interval-active,.monsterinsights-reports-intervals-dropdown button:active,.monsterinsights-reports-intervals-dropdown button:hover{background-color:#eceff4;color:#444}.monsterinsights-reports-intervals-dropdown a i,.monsterinsights-reports-intervals-dropdown button i{margin-right:10px}.monsterinsights-mobile-details-toggle{display:none}.monsterinsights-reports-widget-empty{padding:11px 12px;margin:0}
1
  .monsterinsights-reminder-widget-container{position:fixed;right:0;bottom:0;max-height:350px;overflow:scroll}.monsterinsights-reminder-widget-container .monsterinsights-notice-closing-loader{width:100%;height:100%;position:fixed;background-color:hsla(0,0%,100%,.5)}.monsterinsights-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}.monsterinsights-tracking-notice h3{font-size:13px;color:#222;font-weight:700;margin:0 0 8px;padding:0;line-height:1;border:none}.monsterinsights-tracking-notice p{font-size:12px;color:#7f7f7f;font-weight:400;margin:0;padding:0;line-height:1.2;border:none}.monsterinsights-tracking-notice p a{color:#509fe2;font-size:12px;line-height:1.2;margin:0 0 5px;padding:0;text-decoration:underline;font-weight:400}.monsterinsights-tracking-notice p a:hover{color:#3a93dd;text-decoration:none}.monsterinsights-tracking-notice .monsterinsights-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}.monsterinsights-tracking-notice .monsterinsights-tracking-notice-icon svg{width:67.77px;height:67.77px}.monsterinsights-tracking-notice .monsterinsights-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}.monsterinsights-tracking-notice .monsterinsights-fullwidth-mascot{position:relative;left:auto;top:auto}.monsterinsights-tracking-notice .monsterinsights-reminder-notice-links{margin-right:10px}.monsterinsights-slide-up-enter-active,.monsterinsights-slide-up-leave-active{-webkit-transition:all .5s ease;transition:all .5s ease}.monsterinsights-slide-up-enter,.monsterinsights-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-check:before{content:"\f015"}.monstericon-warning-triangle:before{content:"\f020"}.monstericon-star:before{content:"\f025"}.monstericon-files:before{content:"\f028"}.monstericon-search:before{content:"\f029"}.monstericon-user:before{content:"\f02a"}.monstericon-eye:before{content:"\f02b"}.monstericon-cog:before{content:"\f02c"}.monstericon-expand:before{content:"\f02d"}.monstericon-compress:before{content:"\f02f"}.monstericon-life-ring:before{content:"\f030"}.monstericon-wpbeginner:before{content:"\f031"}.monstericon-lightbulb:before{content:"\f032"}.monstericon-shopping-cart:before{content:"\f033"}.monstericon-calendar-alt:before{content:"\f04e"}.monstericon-long-arrow-right-light:before{content:"\f06a"}.monstericon-download:before{content:"\0046"}.monsterinsights-tooltip{display:block!important;z-index:10000;max-width:350px}.monsterinsights-tooltip .monsterinsights-tooltip-inner{background:#5f6197;color:#fff;border-radius:5px;padding:16px 20px;font-size:14px;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.monsterinsights-tooltip .monsterinsights-tooltip-inner a{color:#fff;font-weight:700}.monsterinsights-tooltip .monsterinsights-tooltip-arrow{width:0;height:0;border-style:solid;position:absolute;margin:5px;border-color:#5f6197;z-index:1}.monsterinsights-tooltip[x-placement^=top]{padding-bottom:5px}.monsterinsights-tooltip[x-placement^=top] .monsterinsights-tooltip-arrow{border-width:5px 5px 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% - 5px);margin-top:0;margin-bottom:0}.monsterinsights-tooltip[x-placement^=bottom]{padding-top:5px}.monsterinsights-tooltip[x-placement^=bottom] .monsterinsights-tooltip-arrow{border-width:0 5px 5px;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% - 5px);margin-top:0;margin-bottom:0}.monsterinsights-tooltip[x-placement^=right]{padding-left:5px}.monsterinsights-tooltip[x-placement^=right] .monsterinsights-tooltip-arrow{border-width:5px 5px 5px 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% - 5px);margin-left:0;margin-right:0}.monsterinsights-tooltip[x-placement^=left]{padding-right:5px}.monsterinsights-tooltip[x-placement^=left] .monsterinsights-tooltip-arrow{border-width:5px 0 5px 5px;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% - 5px);margin-left:0;margin-right:0}.monsterinsights-tooltip.popover .popover-inner{background:#fff;color:#5f6197;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)}.monsterinsights-tooltip.popover .popover-arrow{border-color:#fff}.monsterinsights-tooltip[aria-hidden=true]{visibility:hidden;opacity:0;-webkit-transition:opacity .15s,visibility .15s;transition:opacity .15s,visibility .15s}.monsterinsights-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
+ */.monsterinsights-flag{display:inline-block;width:32px;height:32px;background:url(../img/flags.png) no-repeat}.monsterinsights-flag.monsterinsights-flag-ad{background-position:-32px 0}.monsterinsights-flag.monsterinsights-flag-ae{background-position:-64px 0}.monsterinsights-flag.monsterinsights-flag-af{background-position:-96px 0}.monsterinsights-flag.monsterinsights-flag-ag{background-position:-128px 0}.monsterinsights-flag.monsterinsights-flag-ai{background-position:-160px 0}.monsterinsights-flag.monsterinsights-flag-al{background-position:-192px 0}.monsterinsights-flag.monsterinsights-flag-am{background-position:-224px 0}.monsterinsights-flag.monsterinsights-flag-an{background-position:-256px 0}.monsterinsights-flag.monsterinsights-flag-ao{background-position:-288px 0}.monsterinsights-flag.monsterinsights-flag-ar{background-position:-320px 0}.monsterinsights-flag.monsterinsights-flag-as{background-position:-352px 0}.monsterinsights-flag.monsterinsights-flag-at{background-position:-384px 0}.monsterinsights-flag.monsterinsights-flag-au{background-position:-416px 0}.monsterinsights-flag.monsterinsights-flag-aw{background-position:-448px 0}.monsterinsights-flag.monsterinsights-flag-ax{background-position:-480px 0}.monsterinsights-flag.monsterinsights-flag-az{background-position:0 -32px}.monsterinsights-flag.monsterinsights-flag-ba{background-position:-32px -32px}.monsterinsights-flag.monsterinsights-flag-bb{background-position:-64px -32px}.monsterinsights-flag.monsterinsights-flag-bd{background-position:-96px -32px}.monsterinsights-flag.monsterinsights-flag-be{background-position:-128px -32px}.monsterinsights-flag.monsterinsights-flag-bf{background-position:-160px -32px}.monsterinsights-flag.monsterinsights-flag-bg{background-position:-192px -32px}.monsterinsights-flag.monsterinsights-flag-bh{background-position:-224px -32px}.monsterinsights-flag.monsterinsights-flag-bi{background-position:-256px -32px}.monsterinsights-flag.monsterinsights-flag-bj{background-position:-288px -32px}.monsterinsights-flag.monsterinsights-flag-bl{background-position:-320px -32px}.monsterinsights-flag.monsterinsights-flag-bm{background-position:-352px -32px}.monsterinsights-flag.monsterinsights-flag-bn{background-position:-384px -32px}.monsterinsights-flag.monsterinsights-flag-bo{background-position:-416px -32px}.monsterinsights-flag.monsterinsights-flag-br{background-position:-448px -32px}.monsterinsights-flag.monsterinsights-flag-bs{background-position:-480px -32px}.monsterinsights-flag.monsterinsights-flag-bt{background-position:0 -64px}.monsterinsights-flag.monsterinsights-flag-bw{background-position:-32px -64px}.monsterinsights-flag.monsterinsights-flag-by{background-position:-64px -64px}.monsterinsights-flag.monsterinsights-flag-bz{background-position:-96px -64px}.monsterinsights-flag.monsterinsights-flag-ca{background-position:-128px -64px}.monsterinsights-flag.monsterinsights-flag-cd{background-position:-160px -64px}.monsterinsights-flag.monsterinsights-flag-cf{background-position:-192px -64px}.monsterinsights-flag.monsterinsights-flag-cg{background-position:-224px -64px}.monsterinsights-flag.monsterinsights-flag-ch{background-position:-256px -64px}.monsterinsights-flag.monsterinsights-flag-ci{background-position:-288px -64px}.monsterinsights-flag.monsterinsights-flag-ck{background-position:-320px -64px}.monsterinsights-flag.monsterinsights-flag-cl{background-position:-352px -64px}.monsterinsights-flag.monsterinsights-flag-cm{background-position:-384px -64px}.monsterinsights-flag.monsterinsights-flag-cn{background-position:-416px -64px}.monsterinsights-flag.monsterinsights-flag-co{background-position:-448px -64px}.monsterinsights-flag.monsterinsights-flag-cr{background-position:-480px -64px}.monsterinsights-flag.monsterinsights-flag-cu{background-position:0 -96px}.monsterinsights-flag.monsterinsights-flag-cv{background-position:-32px -96px}.monsterinsights-flag.monsterinsights-flag-cw{background-position:-64px -96px}.monsterinsights-flag.monsterinsights-flag-cy{background-position:-96px -96px}.monsterinsights-flag.monsterinsights-flag-cz{background-position:-128px -96px}.monsterinsights-flag.monsterinsights-flag-de{background-position:-160px -96px}.monsterinsights-flag.monsterinsights-flag-dj{background-position:-192px -96px}.monsterinsights-flag.monsterinsights-flag-dk{background-position:-224px -96px}.monsterinsights-flag.monsterinsights-flag-dm{background-position:-256px -96px}.monsterinsights-flag.monsterinsights-flag-do{background-position:-288px -96px}.monsterinsights-flag.monsterinsights-flag-dz{background-position:-320px -96px}.monsterinsights-flag.monsterinsights-flag-ec{background-position:-352px -96px}.monsterinsights-flag.monsterinsights-flag-ee{background-position:-384px -96px}.monsterinsights-flag.monsterinsights-flag-eg{background-position:-416px -96px}.monsterinsights-flag.monsterinsights-flag-eh{background-position:-448px -96px}.monsterinsights-flag.monsterinsights-flag-er{background-position:-480px -96px}.monsterinsights-flag.monsterinsights-flag-es{background-position:0 -128px}.monsterinsights-flag.monsterinsights-flag-et{background-position:-32px -128px}.monsterinsights-flag.monsterinsights-flag-eu{background-position:-64px -128px}.monsterinsights-flag.monsterinsights-flag-fi{background-position:-96px -128px}.monsterinsights-flag.monsterinsights-flag-fj{background-position:-128px -128px}.monsterinsights-flag.monsterinsights-flag-fk{backgroun