Version Description
Download this release
Release Info
Developer | manejaam |
Plugin | Google Analytics for WordPress by MonsterInsights |
Version | 8.5.0 |
Comparing to | |
See all releases |
Code changes from version 8.4.0 to 8.5.0
- googleanalytics.php +2 -2
- includes/admin/notifications/notification-multiple-gtags.php +5 -3
- includes/admin/notifications/notification-upgrade-eu-traffic.php +9 -2
- includes/admin/routes.php +6 -2
- includes/frontend/events/class-analytics-events.php +116 -116
- includes/frontend/events/class-gtag-events.php +1 -1
- includes/helpers.php +29 -0
- includes/popular-posts/class-popular-posts.php +1 -1
- languages/google-analytics-for-wordpress.pot +990 -986
- languages/vue.php +103 -111
- lite/assets/vue/css/settings.css +1 -1
- lite/assets/vue/css/settings.rtl.css +0 -1
googleanalytics.php
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
* Author: MonsterInsights
|
7 |
* Author URI: https://www.monsterinsights.com/?utm_source=liteplugin&utm_medium=pluginheader&utm_campaign=authoruri&utm_content=7%2E0%2E0
|
8 |
*
|
9 |
-
* Version: 8.
|
10 |
* Requires at least: 4.8.0
|
11 |
* Requires PHP: 5.5
|
12 |
*
|
@@ -69,7 +69,7 @@ final class MonsterInsights_Lite {
|
|
69 |
* @access public
|
70 |
* @var string $version Plugin version.
|
71 |
*/
|
72 |
-
public $version = '8.
|
73 |
|
74 |
/**
|
75 |
* Plugin file.
|
6 |
* Author: MonsterInsights
|
7 |
* Author URI: https://www.monsterinsights.com/?utm_source=liteplugin&utm_medium=pluginheader&utm_campaign=authoruri&utm_content=7%2E0%2E0
|
8 |
*
|
9 |
+
* Version: 8.5.0
|
10 |
* Requires at least: 4.8.0
|
11 |
* Requires PHP: 5.5
|
12 |
*
|
69 |
* @access public
|
70 |
* @var string $version Plugin version.
|
71 |
*/
|
72 |
+
public $version = '8.5.0';
|
73 |
|
74 |
/**
|
75 |
* Plugin file.
|
includes/admin/notifications/notification-multiple-gtags.php
CHANGED
@@ -18,9 +18,11 @@ class MonsterInsights_Notification_Multiple_Gtags extends MonsterInsights_Notifi
|
|
18 |
$content = $response['body'];
|
19 |
|
20 |
$document = new DOMDocument();
|
21 |
-
|
|
|
|
|
22 |
|
23 |
-
|
24 |
|
25 |
foreach( $document->getElementsByTagName('script') as $script ) {
|
26 |
$script_src = $script->getAttribute('src');
|
@@ -44,4 +46,4 @@ class MonsterInsights_Notification_Multiple_Gtags extends MonsterInsights_Notifi
|
|
44 |
}
|
45 |
}
|
46 |
|
47 |
-
new MonsterInsights_Notification_Multiple_Gtags();
|
18 |
$content = $response['body'];
|
19 |
|
20 |
$document = new DOMDocument();
|
21 |
+
libxml_use_internal_errors(true);
|
22 |
+
@$document->loadHTML( $content );
|
23 |
+
libxml_clear_errors();
|
24 |
|
25 |
+
$gtag_count = 0;
|
26 |
|
27 |
foreach( $document->getElementsByTagName('script') as $script ) {
|
28 |
$script_src = $script->getAttribute('src');
|
46 |
}
|
47 |
}
|
48 |
|
49 |
+
new MonsterInsights_Notification_Multiple_Gtags();
|
includes/admin/notifications/notification-upgrade-eu-traffic.php
CHANGED
@@ -18,7 +18,7 @@ final class MonsterInsights_Notification_Upgrade_EU_Traffic extends MonsterInsig
|
|
18 |
/**
|
19 |
* Build Notification
|
20 |
*
|
21 |
-
* @return array $notification notification is ready to add
|
22 |
*
|
23 |
* @since 7.12.3
|
24 |
*/
|
@@ -28,6 +28,9 @@ final class MonsterInsights_Notification_Upgrade_EU_Traffic extends MonsterInsig
|
|
28 |
'MT', 'NL', 'PL', 'PT', 'RO', 'SK', 'SI', 'ES', 'SE'];
|
29 |
|
30 |
$report = $this->get_report();
|
|
|
|
|
|
|
31 |
|
32 |
$sessions = isset( $report['data']['infobox']['sessions']['value'] ) ? $report['data']['infobox']['sessions']['value'] : 0;
|
33 |
$all_countries = isset( $report['data']['countries'] ) ? $report['data']['countries'] : [];
|
@@ -40,6 +43,10 @@ final class MonsterInsights_Notification_Upgrade_EU_Traffic extends MonsterInsig
|
|
40 |
}
|
41 |
}
|
42 |
|
|
|
|
|
|
|
|
|
43 |
$eu_sessions_percentage = $eu_sessions / $sessions * 100;
|
44 |
|
45 |
if ( $eu_sessions_percentage < 1 ) {
|
@@ -60,4 +67,4 @@ final class MonsterInsights_Notification_Upgrade_EU_Traffic extends MonsterInsig
|
|
60 |
}
|
61 |
}
|
62 |
|
63 |
-
new MonsterInsights_Notification_Upgrade_EU_Traffic();
|
18 |
/**
|
19 |
* Build Notification
|
20 |
*
|
21 |
+
* @return array|false $notification notification is ready to add
|
22 |
*
|
23 |
* @since 7.12.3
|
24 |
*/
|
28 |
'MT', 'NL', 'PL', 'PT', 'RO', 'SK', 'SI', 'ES', 'SE'];
|
29 |
|
30 |
$report = $this->get_report();
|
31 |
+
if ( ! $report || ! $report['success'] ) {
|
32 |
+
return false;
|
33 |
+
}
|
34 |
|
35 |
$sessions = isset( $report['data']['infobox']['sessions']['value'] ) ? $report['data']['infobox']['sessions']['value'] : 0;
|
36 |
$all_countries = isset( $report['data']['countries'] ) ? $report['data']['countries'] : [];
|
43 |
}
|
44 |
}
|
45 |
|
46 |
+
if ( empty( $sessions ) ) {
|
47 |
+
return false;
|
48 |
+
}
|
49 |
+
|
50 |
$eu_sessions_percentage = $eu_sessions / $sessions * 100;
|
51 |
|
52 |
if ( $eu_sessions_percentage < 1 ) {
|
67 |
}
|
68 |
}
|
69 |
|
70 |
+
new MonsterInsights_Notification_Upgrade_EU_Traffic();
|
includes/admin/routes.php
CHANGED
@@ -931,8 +931,12 @@ class MonsterInsights_Rest_Routes {
|
|
931 |
$data = apply_filters( 'monsterinsights_vue_reports_data', $report->get_data( $args ), $report_name, $report );
|
932 |
}
|
933 |
|
934 |
-
if ( ! empty( $data['success'] )
|
935 |
-
|
|
|
|
|
|
|
|
|
936 |
} else if ( isset( $data['success'] ) && false === $data['success'] && ! empty( $data['error'] ) ) {
|
937 |
// Use a custom handler for invalid_grant errors.
|
938 |
if ( strpos( $data['error'], 'invalid_grant' ) > 0 ) {
|
931 |
$data = apply_filters( 'monsterinsights_vue_reports_data', $report->get_data( $args ), $report_name, $report );
|
932 |
}
|
933 |
|
934 |
+
if ( ! empty( $data['success'] ) ) {
|
935 |
+
if ( empty( $data['data'] ) ) {
|
936 |
+
wp_send_json_success( new stdclass() );
|
937 |
+
} else {
|
938 |
+
wp_send_json_success( $data['data'] );
|
939 |
+
}
|
940 |
} else if ( isset( $data['success'] ) && false === $data['success'] && ! empty( $data['error'] ) ) {
|
941 |
// Use a custom handler for invalid_grant errors.
|
942 |
if ( strpos( $data['error'], 'invalid_grant' ) > 0 ) {
|
includes/frontend/events/class-analytics-events.php
CHANGED
@@ -1,116 +1,116 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Events JS class.
|
4 |
-
*
|
5 |
-
* @since 6.0.0
|
6 |
-
*
|
7 |
-
* @package MonsterInsights
|
8 |
-
* @subpackage Events
|
9 |
-
* @author Chris Christoff
|
10 |
-
*/
|
11 |
-
|
12 |
-
// Exit if accessed directly
|
13 |
-
if ( ! defined( 'ABSPATH' ) ) {
|
14 |
-
exit;
|
15 |
-
}
|
16 |
-
|
17 |
-
class MonsterInsights_Analytics_Events {
|
18 |
-
|
19 |
-
/**
|
20 |
-
* Holds the name of the events type.
|
21 |
-
*
|
22 |
-
* @since 6.0.0
|
23 |
-
* @access public
|
24 |
-
*
|
25 |
-
* @var string $name Name of the events type.
|
26 |
-
*/
|
27 |
-
public $name = 'js';
|
28 |
-
|
29 |
-
/**
|
30 |
-
* Version of the events class.
|
31 |
-
*
|
32 |
-
* @since 6.0.0
|
33 |
-
* @access public
|
34 |
-
*
|
35 |
-
* @var string $version Version of the events class.
|
36 |
-
*/
|
37 |
-
public $version = '1.0.0';
|
38 |
-
|
39 |
-
/**
|
40 |
-
* Primary class constructor.
|
41 |
-
*
|
42 |
-
* @since 6.0.0
|
43 |
-
* @access public
|
44 |
-
*/
|
45 |
-
public function __construct() {
|
46 |
-
add_action( 'wp_enqueue_scripts', array( $this, 'output_javascript' ), 9 );
|
47 |
-
//add_action( 'login_head', array( $this, 'output_javascript' ), 9 );
|
48 |
-
}
|
49 |
-
|
50 |
-
/**
|
51 |
-
* Outputs the Javascript for JS tracking on the page.
|
52 |
-
*
|
53 |
-
* @since 6.0.0
|
54 |
-
* @access public
|
55 |
-
*
|
56 |
-
* @return string
|
57 |
-
*/
|
58 |
-
public function output_javascript() {
|
59 |
-
// Affiliate Links
|
60 |
-
$inbound_paths = monsterinsights_get_option( 'affiliate_links', array() );
|
61 |
-
if ( ! is_array( $inbound_paths ) ) {
|
62 |
-
$inbound_paths = array();
|
63 |
-
} else {
|
64 |
-
foreach( $inbound_paths as $index => $pair ) {
|
65 |
-
// if empty pair, unset and continue
|
66 |
-
if ( empty( $pair['path'] ) ) {
|
67 |
-
unset( $inbound_paths[$index] );
|
68 |
-
continue;
|
69 |
-
}
|
70 |
-
|
71 |
-
// if path does not start with a /, start it with that
|
72 |
-
$path = ! empty( $pair['path'] ) ? $pair['path'] : 'aff';
|
73 |
-
$inbound_paths[$index]['path'] = trim( $path );
|
74 |
-
|
75 |
-
// js escape the link label
|
76 |
-
$label = ! empty( $pair['label'] ) ? $pair['label'] : 'aff';
|
77 |
-
$inbound_paths[$index]['label'] = esc_js( trim( $label ) );
|
78 |
-
}
|
79 |
-
}
|
80 |
-
|
81 |
-
$inbound_paths = wp_json_encode( $inbound_paths );
|
82 |
-
|
83 |
-
// Get download extensions to track
|
84 |
-
$download_extensions = monsterinsights_get_option( 'extensions_of_files', '' );
|
85 |
-
$download_extensions = explode( ',', str_replace( '.', '', $download_extensions ) );
|
86 |
-
if ( ! is_array( $download_extensions ) ) {
|
87 |
-
$download_extensions = array( $download_extensions );
|
88 |
-
}
|
89 |
-
$i = 0;
|
90 |
-
foreach( $download_extensions as $extension ){
|
91 |
-
$download_extensions[ $i ] = esc_js( trim( $extension ) );
|
92 |
-
$i++;
|
93 |
-
}
|
94 |
-
|
95 |
-
$download_extensions = implode( ",", $download_extensions );
|
96 |
-
|
97 |
-
$hash_tracking = monsterinsights_get_option( 'hash_tracking', false ) ? 'true' : 'false';
|
98 |
-
|
99 |
-
$suffix = ( defined( 'WP_DEBUG' ) && WP_DEBUG ) || ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
|
100 |
-
if ( ! file_exists( MONSTERINSIGHTS_PLUGIN_DIR . 'assets/js/frontend.min.js' ) ) {
|
101 |
-
$suffix = '';
|
102 |
-
}
|
103 |
-
wp_enqueue_script( 'monsterinsights-frontend-script', plugins_url( 'assets/js/frontend' . $suffix . '.js', MONSTERINSIGHTS_PLUGIN_FILE ), array(), monsterinsights_get_asset_version(), false );
|
104 |
-
|
105 |
-
'monsterinsights-frontend-script',
|
106 |
-
'monsterinsights_frontend',
|
107 |
-
array(
|
108 |
-
'js_events_tracking' => 'true',
|
109 |
-
'download_extensions' => $download_extensions, /* Let's get the extensions to track */
|
110 |
-
'inbound_paths' => $inbound_paths, /* Let's get the internal paths to track */
|
111 |
-
'home_url' => home_url(), /* Let's get the url to compare for external/internal use */
|
112 |
-
'hash_tracking' => $hash_tracking, /* Should hash track */
|
113 |
-
)
|
114 |
-
);
|
115 |
-
}
|
116 |
-
}
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Events JS class.
|
4 |
+
*
|
5 |
+
* @since 6.0.0
|
6 |
+
*
|
7 |
+
* @package MonsterInsights
|
8 |
+
* @subpackage Events
|
9 |
+
* @author Chris Christoff
|
10 |
+
*/
|
11 |
+
|
12 |
+
// Exit if accessed directly
|
13 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
14 |
+
exit;
|
15 |
+
}
|
16 |
+
|
17 |
+
class MonsterInsights_Analytics_Events {
|
18 |
+
|
19 |
+
/**
|
20 |
+
* Holds the name of the events type.
|
21 |
+
*
|
22 |
+
* @since 6.0.0
|
23 |
+
* @access public
|
24 |
+
*
|
25 |
+
* @var string $name Name of the events type.
|
26 |
+
*/
|
27 |
+
public $name = 'js';
|
28 |
+
|
29 |
+
/**
|
30 |
+
* Version of the events class.
|
31 |
+
*
|
32 |
+
* @since 6.0.0
|
33 |
+
* @access public
|
34 |
+
*
|
35 |
+
* @var string $version Version of the events class.
|
36 |
+
*/
|
37 |
+
public $version = '1.0.0';
|
38 |
+
|
39 |
+
/**
|
40 |
+
* Primary class constructor.
|
41 |
+
*
|
42 |
+
* @since 6.0.0
|
43 |
+
* @access public
|
44 |
+
*/
|
45 |
+
public function __construct() {
|
46 |
+
add_action( 'wp_enqueue_scripts', array( $this, 'output_javascript' ), 9 );
|
47 |
+
//add_action( 'login_head', array( $this, 'output_javascript' ), 9 );
|
48 |
+
}
|
49 |
+
|
50 |
+
/**
|
51 |
+
* Outputs the Javascript for JS tracking on the page.
|
52 |
+
*
|
53 |
+
* @since 6.0.0
|
54 |
+
* @access public
|
55 |
+
*
|
56 |
+
* @return string
|
57 |
+
*/
|
58 |
+
public function output_javascript() {
|
59 |
+
// Affiliate Links
|
60 |
+
$inbound_paths = monsterinsights_get_option( 'affiliate_links', array() );
|
61 |
+
if ( ! is_array( $inbound_paths ) ) {
|
62 |
+
$inbound_paths = array();
|
63 |
+
} else {
|
64 |
+
foreach( $inbound_paths as $index => $pair ) {
|
65 |
+
// if empty pair, unset and continue
|
66 |
+
if ( empty( $pair['path'] ) ) {
|
67 |
+
unset( $inbound_paths[$index] );
|
68 |
+
continue;
|
69 |
+
}
|
70 |
+
|
71 |
+
// if path does not start with a /, start it with that
|
72 |
+
$path = ! empty( $pair['path'] ) ? $pair['path'] : 'aff';
|
73 |
+
$inbound_paths[$index]['path'] = trim( $path );
|
74 |
+
|
75 |
+
// js escape the link label
|
76 |
+
$label = ! empty( $pair['label'] ) ? $pair['label'] : 'aff';
|
77 |
+
$inbound_paths[$index]['label'] = esc_js( trim( $label ) );
|
78 |
+
}
|
79 |
+
}
|
80 |
+
|
81 |
+
$inbound_paths = wp_json_encode( $inbound_paths );
|
82 |
+
|
83 |
+
// Get download extensions to track
|
84 |
+
$download_extensions = monsterinsights_get_option( 'extensions_of_files', '' );
|
85 |
+
$download_extensions = explode( ',', str_replace( '.', '', $download_extensions ) );
|
86 |
+
if ( ! is_array( $download_extensions ) ) {
|
87 |
+
$download_extensions = array( $download_extensions );
|
88 |
+
}
|
89 |
+
$i = 0;
|
90 |
+
foreach( $download_extensions as $extension ){
|
91 |
+
$download_extensions[ $i ] = esc_js( trim( $extension ) );
|
92 |
+
$i++;
|
93 |
+
}
|
94 |
+
|
95 |
+
$download_extensions = implode( ",", $download_extensions );
|
96 |
+
|
97 |
+
$hash_tracking = monsterinsights_get_option( 'hash_tracking', false ) ? 'true' : 'false';
|
98 |
+
|
99 |
+
$suffix = ( defined( 'WP_DEBUG' ) && WP_DEBUG ) || ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
|
100 |
+
if ( ! file_exists( MONSTERINSIGHTS_PLUGIN_DIR . 'assets/js/frontend.min.js' ) ) {
|
101 |
+
$suffix = '';
|
102 |
+
}
|
103 |
+
wp_enqueue_script( 'monsterinsights-frontend-script', plugins_url( 'assets/js/frontend' . $suffix . '.js', MONSTERINSIGHTS_PLUGIN_FILE ), array(), monsterinsights_get_asset_version(), false );
|
104 |
+
monsterinsights_localize_script(
|
105 |
+
'monsterinsights-frontend-script',
|
106 |
+
'monsterinsights_frontend',
|
107 |
+
array(
|
108 |
+
'js_events_tracking' => 'true',
|
109 |
+
'download_extensions' => $download_extensions, /* Let's get the extensions to track */
|
110 |
+
'inbound_paths' => $inbound_paths, /* Let's get the internal paths to track */
|
111 |
+
'home_url' => home_url(), /* Let's get the url to compare for external/internal use */
|
112 |
+
'hash_tracking' => $hash_tracking, /* Should hash track */
|
113 |
+
)
|
114 |
+
);
|
115 |
+
}
|
116 |
+
}
|
includes/frontend/events/class-gtag-events.php
CHANGED
@@ -100,7 +100,7 @@ class MonsterInsights_Gtag_Events {
|
|
100 |
$suffix = '';
|
101 |
}
|
102 |
wp_enqueue_script( 'monsterinsights-frontend-script', plugins_url( 'assets/js/frontend-gtag' . $suffix . '.js', MONSTERINSIGHTS_PLUGIN_FILE ), array(), monsterinsights_get_asset_version(), false );
|
103 |
-
|
104 |
'monsterinsights-frontend-script',
|
105 |
'monsterinsights_frontend',
|
106 |
array(
|
100 |
$suffix = '';
|
101 |
}
|
102 |
wp_enqueue_script( 'monsterinsights-frontend-script', plugins_url( 'assets/js/frontend-gtag' . $suffix . '.js', MONSTERINSIGHTS_PLUGIN_FILE ), array(), monsterinsights_get_asset_version(), false );
|
103 |
+
monsterinsights_localize_script(
|
104 |
'monsterinsights-frontend-script',
|
105 |
'monsterinsights_frontend',
|
106 |
array(
|
includes/helpers.php
CHANGED
@@ -1722,6 +1722,35 @@ function monsterinsights_get_frontend_analytics_script_atts() {
|
|
1722 |
return $attr_string;
|
1723 |
}
|
1724 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1725 |
/**
|
1726 |
* Get native english speaking countries
|
1727 |
*
|
1722 |
return $attr_string;
|
1723 |
}
|
1724 |
|
1725 |
+
/**
|
1726 |
+
* Helper function instead of wp_localize_script with our script tag attributes.
|
1727 |
+
*
|
1728 |
+
* @return string
|
1729 |
+
* @since 8.5.0
|
1730 |
+
*
|
1731 |
+
*/
|
1732 |
+
function monsterinsights_localize_script( $handle, $object_name, $data, $priority = 100 ) {
|
1733 |
+
$theme_supports_html5 = current_theme_supports( 'html5', 'script' );
|
1734 |
+
$script_js = ! $theme_supports_html5 ? "/* <![CDATA[ */\n" : '';
|
1735 |
+
$script_js .= "var $object_name = " . wp_json_encode( $data ) . ';';
|
1736 |
+
$script_js .= ! $theme_supports_html5 ? "/* ]]> */\n" : '';
|
1737 |
+
|
1738 |
+
$script = sprintf(
|
1739 |
+
"<script%s id='%s-js-extra'>%s</script>\n",
|
1740 |
+
monsterinsights_get_frontend_analytics_script_atts(),
|
1741 |
+
esc_attr( $handle ),
|
1742 |
+
$script_js
|
1743 |
+
);
|
1744 |
+
|
1745 |
+
add_filter( 'script_loader_tag', function ( $tag, $current_handle ) use ($handle, $script){
|
1746 |
+
if ( $current_handle !== $handle ) {
|
1747 |
+
return $tag;
|
1748 |
+
}
|
1749 |
+
|
1750 |
+
return $tag . $script;
|
1751 |
+
}, $priority, 2 );
|
1752 |
+
}
|
1753 |
+
|
1754 |
/**
|
1755 |
* Get native english speaking countries
|
1756 |
*
|
includes/popular-posts/class-popular-posts.php
CHANGED
@@ -189,7 +189,7 @@ class MonsterInsights_Popular_Posts {
|
|
189 |
|
190 |
wp_enqueue_script( 'monsterinsights-popular-posts-js' );
|
191 |
|
192 |
-
|
193 |
'ajaxurl' => admin_url( 'admin-ajax.php' ),
|
194 |
'post_id' => get_the_ID(),
|
195 |
) );
|
189 |
|
190 |
wp_enqueue_script( 'monsterinsights-popular-posts-js' );
|
191 |
|
192 |
+
monsterinsights_localize_script( 'monsterinsights-popular-posts-js', 'monsterinsights_pp', array(
|
193 |
'ajaxurl' => admin_url( 'admin-ajax.php' ),
|
194 |
'post_id' => get_the_ID(),
|
195 |
) );
|
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.
|
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-
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
-
"X-Generator: WP-CLI 2.
|
15 |
"X-Domain: google-analytics-for-wordpress\n"
|
16 |
|
17 |
#. Plugin Name of the plugin
|
@@ -126,7 +126,7 @@ msgstr ""
|
|
126 |
#: includes/admin/admin.php:34
|
127 |
#: includes/admin/admin.php:42
|
128 |
#: includes/admin/admin.php:222
|
129 |
-
#: languages/vue.php:
|
130 |
msgid "Settings"
|
131 |
msgstr ""
|
132 |
|
@@ -142,7 +142,7 @@ msgstr ""
|
|
142 |
|
143 |
#: includes/admin/admin.php:39
|
144 |
#: includes/admin/admin.php:130
|
145 |
-
#: languages/vue.php:
|
146 |
msgid "Reports"
|
147 |
msgstr ""
|
148 |
|
@@ -152,7 +152,7 @@ msgstr ""
|
|
152 |
|
153 |
#: includes/admin/admin.php:51
|
154 |
#: languages/gutenberg.php:83
|
155 |
-
#: languages/vue.php:
|
156 |
msgid "Popular Posts"
|
157 |
msgstr ""
|
158 |
|
@@ -186,7 +186,7 @@ msgstr ""
|
|
186 |
|
187 |
#: includes/admin/admin.php:71
|
188 |
#: includes/admin/admin.php:146
|
189 |
-
#: languages/vue.php:
|
190 |
msgid "About Us"
|
191 |
msgstr ""
|
192 |
|
@@ -205,7 +205,7 @@ msgstr ""
|
|
205 |
#: includes/admin/admin.php:76
|
206 |
#: includes/admin/notifications/notification-upgrade-to-pro-high-traffic.php:41
|
207 |
#: includes/admin/notifications/notification-upgrade-to-pro.php:33
|
208 |
-
#: languages/vue.php:
|
209 |
msgid "Upgrade to Pro"
|
210 |
msgstr ""
|
211 |
|
@@ -233,19 +233,19 @@ msgstr ""
|
|
233 |
|
234 |
#: includes/admin/admin.php:212
|
235 |
#: includes/admin/admin.php:215
|
236 |
-
#: languages/vue.php:
|
237 |
msgid "Support"
|
238 |
msgstr ""
|
239 |
|
240 |
#: includes/admin/admin.php:229
|
241 |
-
#: includes/admin/notifications/notification-upgrade-eu-traffic.php:
|
242 |
#: includes/admin/notifications/notification-upgrade-for-custom-dimensions.php:32
|
243 |
#: includes/admin/notifications/notification-upgrade-for-email-summaries.php:32
|
244 |
#: includes/admin/notifications/notification-upgrade-for-events-reporting.php:32
|
245 |
#: includes/admin/notifications/notification-upgrade-for-google-optimize.php:32
|
246 |
#: includes/admin/notifications/notification-upgrade-for-post-templates.php:32
|
247 |
#: includes/admin/reports/abstract-report.php:418
|
248 |
-
#: languages/vue.php:
|
249 |
msgid "Get MonsterInsights Pro"
|
250 |
msgstr ""
|
251 |
|
@@ -255,12 +255,12 @@ msgid "Please rate %1$sMonsterInsights%2$s on %3$s %4$sWordPress.org%5$s to help
|
|
255 |
msgstr ""
|
256 |
|
257 |
#: includes/admin/admin.php:324
|
258 |
-
#: languages/vue.php:
|
259 |
msgid "Please Setup Website Analytics to See Audience Insights"
|
260 |
msgstr ""
|
261 |
|
262 |
#: includes/admin/admin.php:325
|
263 |
-
#: languages/vue.php:
|
264 |
msgid "Connect MonsterInsights and Setup Website Analytics"
|
265 |
msgstr ""
|
266 |
|
@@ -275,12 +275,12 @@ msgstr ""
|
|
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:
|
279 |
msgid "Learn More"
|
280 |
msgstr ""
|
281 |
|
282 |
#: includes/admin/admin.php:329
|
283 |
-
#: languages/vue.php:
|
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,17 +291,17 @@ msgstr ""
|
|
291 |
|
292 |
#. Translators: Adds a link to the license renewal.
|
293 |
#: includes/admin/admin.php:350
|
294 |
-
#: languages/vue.php:
|
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:352
|
299 |
-
#: languages/vue.php:
|
300 |
msgid "Your license key for MonsterInsights has been disabled. Please use a different key."
|
301 |
msgstr ""
|
302 |
|
303 |
#: includes/admin/admin.php:354
|
304 |
-
#: languages/vue.php:
|
305 |
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."
|
306 |
msgstr ""
|
307 |
|
@@ -359,7 +359,7 @@ msgid "Your Measurement Protocol API Secret is currently left blank, so you won'
|
|
359 |
msgstr ""
|
360 |
|
361 |
#: includes/admin/ajax.php:55
|
362 |
-
#: includes/admin/routes.php:
|
363 |
#: lite/includes/admin/onboarding-wizard.php:249
|
364 |
msgid "You are not allowed to install plugins"
|
365 |
msgstr ""
|
@@ -505,7 +505,7 @@ msgid "View 2021 Year in Review report!"
|
|
505 |
msgstr ""
|
506 |
|
507 |
#: includes/admin/common.php:951
|
508 |
-
#: languages/vue.php:
|
509 |
msgid "See how your website performed this year and find tips along the way to help grow even more in 2022!"
|
510 |
msgstr ""
|
511 |
|
@@ -526,7 +526,7 @@ msgstr ""
|
|
526 |
|
527 |
#: includes/admin/exclude-page-metabox.php:102
|
528 |
#: languages/gutenberg.php:149
|
529 |
-
#: languages/vue.php:
|
530 |
msgid "Upgrade"
|
531 |
msgstr ""
|
532 |
|
@@ -555,7 +555,7 @@ msgstr ""
|
|
555 |
|
556 |
#: includes/admin/notification-event.php:256
|
557 |
#: includes/admin/routes.php:873
|
558 |
-
#: includes/admin/routes.php:
|
559 |
msgid "You don't have permission to view MonsterInsights reports."
|
560 |
msgstr ""
|
561 |
|
@@ -656,11 +656,11 @@ msgstr ""
|
|
656 |
msgid "Traffic from mobile devices is considerably lower on your site compared to desktop devices. This could be an indicator that your site is not optimised for mobile devices.<br><br>Take a look now at %show your site looks%s on mobile and make sure all your content can be accessed correctly."
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: includes/admin/notifications/notification-multiple-gtags.php:
|
660 |
msgid "Multiple Google Analytics Tags Found"
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: includes/admin/notifications/notification-multiple-gtags.php:
|
664 |
msgid "MonsterInsights has detected multiple analytics tags on your website. Please disable the other plugin to ensure accurate tracking."
|
665 |
msgstr ""
|
666 |
|
@@ -709,11 +709,11 @@ msgstr ""
|
|
709 |
msgid "Your website traffic is decreasing and that’s a reason to take action now. Less traffic means less opportunities to make your brand known, make relationships and ultimately sell your service or product. <br><br>Follow the marketing hacks of %sthis article%s to start growing your traffic again."
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: includes/admin/notifications/notification-upgrade-eu-traffic.php:
|
713 |
msgid "Help Your Site Become GDPR Compliant"
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: includes/admin/notifications/notification-upgrade-eu-traffic.php:
|
717 |
msgid "Your site is receiving traffic from the EU. Help ensure your site is more compliant with GDPR by upgrading to MonsterInsights Pro and enable our EU Privacy addon."
|
718 |
msgstr ""
|
719 |
|
@@ -933,7 +933,7 @@ msgid "Please ask your webmaster to enable this addon."
|
|
933 |
msgstr ""
|
934 |
|
935 |
#: includes/admin/reports/overview.php:34
|
936 |
-
#: languages/vue.php:
|
937 |
msgid "Overview"
|
938 |
msgstr ""
|
939 |
|
@@ -1058,40 +1058,40 @@ msgid "Please upload a file to import"
|
|
1058 |
msgstr ""
|
1059 |
|
1060 |
#: includes/admin/routes.php:885
|
1061 |
-
#: includes/admin/routes.php:
|
1062 |
msgid "You can't view MonsterInsights reports because you are not licensed."
|
1063 |
msgstr ""
|
1064 |
|
1065 |
#: includes/admin/routes.php:886
|
1066 |
-
#: includes/admin/routes.php:
|
1067 |
msgid "Add your license"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
#: includes/admin/routes.php:893
|
1071 |
-
#: includes/admin/routes.php:
|
1072 |
msgid "You can't view MonsterInsights reports due to license key errors."
|
1073 |
msgstr ""
|
1074 |
|
1075 |
#: includes/admin/routes.php:901
|
1076 |
-
#: includes/admin/routes.php:
|
1077 |
msgid "You must authenticate with MonsterInsights before you can view reports."
|
1078 |
msgstr ""
|
1079 |
|
1080 |
#: includes/admin/routes.php:907
|
1081 |
-
#: includes/admin/routes.php:
|
1082 |
msgid "Unknown report. Try refreshing and retrying. Contact support if this issue persists."
|
1083 |
msgstr ""
|
1084 |
|
1085 |
-
#: includes/admin/routes.php:
|
1086 |
-
#: includes/admin/routes.php:
|
1087 |
msgid "We encountered an error when fetching the report data."
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#: includes/admin/routes.php:
|
1091 |
msgid "Missing plugin name."
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#: includes/admin/routes.php:
|
1095 |
msgid "Homepage"
|
1096 |
msgstr ""
|
1097 |
|
@@ -1429,7 +1429,7 @@ msgid "Question"
|
|
1429 |
msgstr ""
|
1430 |
|
1431 |
#: includes/gutenberg/headline-tool/headline-tool.php:290
|
1432 |
-
#: languages/vue.php:
|
1433 |
msgid "General"
|
1434 |
msgstr ""
|
1435 |
|
@@ -3659,12 +3659,12 @@ msgid "United States"
|
|
3659 |
msgstr ""
|
3660 |
|
3661 |
#: includes/helpers.php:385
|
3662 |
-
#: includes/helpers.php:
|
3663 |
msgid "Canada"
|
3664 |
msgstr ""
|
3665 |
|
3666 |
#: includes/helpers.php:386
|
3667 |
-
#: includes/helpers.php:
|
3668 |
msgid "United Kingdom"
|
3669 |
msgstr ""
|
3670 |
|
@@ -3705,7 +3705,7 @@ msgid "Antarctica"
|
|
3705 |
msgstr ""
|
3706 |
|
3707 |
#: includes/helpers.php:396
|
3708 |
-
#: includes/helpers.php:
|
3709 |
msgid "Antigua and Barbuda"
|
3710 |
msgstr ""
|
3711 |
|
@@ -3722,7 +3722,7 @@ msgid "Aruba"
|
|
3722 |
msgstr ""
|
3723 |
|
3724 |
#: includes/helpers.php:400
|
3725 |
-
#: includes/helpers.php:
|
3726 |
msgid "Australia"
|
3727 |
msgstr ""
|
3728 |
|
@@ -3747,7 +3747,7 @@ msgid "Bangladesh"
|
|
3747 |
msgstr ""
|
3748 |
|
3749 |
#: includes/helpers.php:406
|
3750 |
-
#: includes/helpers.php:
|
3751 |
msgid "Barbados"
|
3752 |
msgstr ""
|
3753 |
|
@@ -3760,7 +3760,7 @@ msgid "Belgium"
|
|
3760 |
msgstr ""
|
3761 |
|
3762 |
#: includes/helpers.php:409
|
3763 |
-
#: includes/helpers.php:
|
3764 |
msgid "Belize"
|
3765 |
msgstr ""
|
3766 |
|
@@ -3789,7 +3789,7 @@ msgid "Bosnia and Herzegovina"
|
|
3789 |
msgstr ""
|
3790 |
|
3791 |
#: includes/helpers.php:416
|
3792 |
-
#: includes/helpers.php:
|
3793 |
msgid "Botswana"
|
3794 |
msgstr ""
|
3795 |
|
@@ -3818,7 +3818,7 @@ msgid "Burkina Faso"
|
|
3818 |
msgstr ""
|
3819 |
|
3820 |
#: includes/helpers.php:423
|
3821 |
-
#: includes/helpers.php:
|
3822 |
msgid "Burundi"
|
3823 |
msgstr ""
|
3824 |
|
@@ -3827,7 +3827,7 @@ msgid "Cambodia"
|
|
3827 |
msgstr ""
|
3828 |
|
3829 |
#: includes/helpers.php:425
|
3830 |
-
#: includes/helpers.php:
|
3831 |
msgid "Cameroon"
|
3832 |
msgstr ""
|
3833 |
|
@@ -3920,7 +3920,7 @@ msgid "Djibouti"
|
|
3920 |
msgstr ""
|
3921 |
|
3922 |
#: includes/helpers.php:448
|
3923 |
-
#: includes/helpers.php:
|
3924 |
msgid "Dominica"
|
3925 |
msgstr ""
|
3926 |
|
@@ -3969,7 +3969,7 @@ msgid "Faroe Islands"
|
|
3969 |
msgstr ""
|
3970 |
|
3971 |
#: includes/helpers.php:460
|
3972 |
-
#: includes/helpers.php:
|
3973 |
msgid "Fiji"
|
3974 |
msgstr ""
|
3975 |
|
@@ -3998,7 +3998,7 @@ msgid "Gabon"
|
|
3998 |
msgstr ""
|
3999 |
|
4000 |
#: includes/helpers.php:467
|
4001 |
-
#: includes/helpers.php:
|
4002 |
msgid "Gambia"
|
4003 |
msgstr ""
|
4004 |
|
@@ -4015,7 +4015,7 @@ msgid "Greece"
|
|
4015 |
msgstr ""
|
4016 |
|
4017 |
#: includes/helpers.php:471
|
4018 |
-
#: includes/helpers.php:
|
4019 |
msgid "Ghana"
|
4020 |
msgstr ""
|
4021 |
|
@@ -4028,7 +4028,7 @@ msgid "Greenland"
|
|
4028 |
msgstr ""
|
4029 |
|
4030 |
#: includes/helpers.php:474
|
4031 |
-
#: includes/helpers.php:
|
4032 |
msgid "Grenada"
|
4033 |
msgstr ""
|
4034 |
|
@@ -4057,7 +4057,7 @@ msgid "Guinea-Bissau"
|
|
4057 |
msgstr ""
|
4058 |
|
4059 |
#: includes/helpers.php:481
|
4060 |
-
#: includes/helpers.php:
|
4061 |
msgid "Guyana"
|
4062 |
msgstr ""
|
4063 |
|
@@ -4090,7 +4090,7 @@ msgid "Iceland"
|
|
4090 |
msgstr ""
|
4091 |
|
4092 |
#: includes/helpers.php:489
|
4093 |
-
#: includes/helpers.php:
|
4094 |
msgid "India"
|
4095 |
msgstr ""
|
4096 |
|
@@ -4107,7 +4107,7 @@ msgid "Iraq"
|
|
4107 |
msgstr ""
|
4108 |
|
4109 |
#: includes/helpers.php:493
|
4110 |
-
#: includes/helpers.php:
|
4111 |
msgid "Ireland"
|
4112 |
msgstr ""
|
4113 |
|
@@ -4124,7 +4124,7 @@ msgid "Italy"
|
|
4124 |
msgstr ""
|
4125 |
|
4126 |
#: includes/helpers.php:497
|
4127 |
-
#: includes/helpers.php:
|
4128 |
msgid "Jamaica"
|
4129 |
msgstr ""
|
4130 |
|
@@ -4145,12 +4145,12 @@ msgid "Kazakhstan"
|
|
4145 |
msgstr ""
|
4146 |
|
4147 |
#: includes/helpers.php:502
|
4148 |
-
#: includes/helpers.php:
|
4149 |
msgid "Kenya"
|
4150 |
msgstr ""
|
4151 |
|
4152 |
#: includes/helpers.php:503
|
4153 |
-
#: includes/helpers.php:
|
4154 |
msgid "Kiribati"
|
4155 |
msgstr ""
|
4156 |
|
@@ -4175,12 +4175,12 @@ msgid "Lebanon"
|
|
4175 |
msgstr ""
|
4176 |
|
4177 |
#: includes/helpers.php:509
|
4178 |
-
#: includes/helpers.php:
|
4179 |
msgid "Lesotho"
|
4180 |
msgstr ""
|
4181 |
|
4182 |
#: includes/helpers.php:510
|
4183 |
-
#: includes/helpers.php:
|
4184 |
msgid "Liberia"
|
4185 |
msgstr ""
|
4186 |
|
@@ -4213,7 +4213,7 @@ msgid "Madagascar"
|
|
4213 |
msgstr ""
|
4214 |
|
4215 |
#: includes/helpers.php:518
|
4216 |
-
#: includes/helpers.php:
|
4217 |
msgid "Malawi"
|
4218 |
msgstr ""
|
4219 |
|
@@ -4230,12 +4230,12 @@ msgid "Mali"
|
|
4230 |
msgstr ""
|
4231 |
|
4232 |
#: includes/helpers.php:522
|
4233 |
-
#: includes/helpers.php:
|
4234 |
msgid "Malta"
|
4235 |
msgstr ""
|
4236 |
|
4237 |
#: includes/helpers.php:523
|
4238 |
-
#: includes/helpers.php:
|
4239 |
msgid "Marshall Islands"
|
4240 |
msgstr ""
|
4241 |
|
@@ -4248,7 +4248,7 @@ msgid "Mauritania"
|
|
4248 |
msgstr ""
|
4249 |
|
4250 |
#: includes/helpers.php:526
|
4251 |
-
#: includes/helpers.php:
|
4252 |
msgid "Mauritius"
|
4253 |
msgstr ""
|
4254 |
|
@@ -4261,7 +4261,7 @@ msgid "Mexico"
|
|
4261 |
msgstr ""
|
4262 |
|
4263 |
#: includes/helpers.php:529
|
4264 |
-
#: includes/helpers.php:
|
4265 |
msgid "Micronesia"
|
4266 |
msgstr ""
|
4267 |
|
@@ -4298,12 +4298,12 @@ msgid "Myanmar"
|
|
4298 |
msgstr ""
|
4299 |
|
4300 |
#: includes/helpers.php:538
|
4301 |
-
#: includes/helpers.php:
|
4302 |
msgid "Namibia"
|
4303 |
msgstr ""
|
4304 |
|
4305 |
#: includes/helpers.php:539
|
4306 |
-
#: includes/helpers.php:
|
4307 |
msgid "Nauru"
|
4308 |
msgstr ""
|
4309 |
|
@@ -4324,7 +4324,7 @@ msgid "New Caledonia"
|
|
4324 |
msgstr ""
|
4325 |
|
4326 |
#: includes/helpers.php:544
|
4327 |
-
#: includes/helpers.php:
|
4328 |
msgid "New Zealand"
|
4329 |
msgstr ""
|
4330 |
|
@@ -4337,7 +4337,7 @@ msgid "Niger"
|
|
4337 |
msgstr ""
|
4338 |
|
4339 |
#: includes/helpers.php:547
|
4340 |
-
#: includes/helpers.php:
|
4341 |
msgid "Nigeria"
|
4342 |
msgstr ""
|
4343 |
|
@@ -4366,12 +4366,12 @@ msgid "Oman"
|
|
4366 |
msgstr ""
|
4367 |
|
4368 |
#: includes/helpers.php:554
|
4369 |
-
#: includes/helpers.php:
|
4370 |
msgid "Pakistan"
|
4371 |
msgstr ""
|
4372 |
|
4373 |
#: includes/helpers.php:555
|
4374 |
-
#: includes/helpers.php:
|
4375 |
msgid "Palau"
|
4376 |
msgstr ""
|
4377 |
|
@@ -4384,7 +4384,7 @@ msgid "Panama"
|
|
4384 |
msgstr ""
|
4385 |
|
4386 |
#: includes/helpers.php:558
|
4387 |
-
#: includes/helpers.php:
|
4388 |
msgid "Papua New Guinea"
|
4389 |
msgstr ""
|
4390 |
|
@@ -4397,7 +4397,7 @@ msgid "Peru"
|
|
4397 |
msgstr ""
|
4398 |
|
4399 |
#: includes/helpers.php:561
|
4400 |
-
#: includes/helpers.php:
|
4401 |
msgid "Philippines"
|
4402 |
msgstr ""
|
4403 |
|
@@ -4438,7 +4438,7 @@ msgid "Russian Federation"
|
|
4438 |
msgstr ""
|
4439 |
|
4440 |
#: includes/helpers.php:571
|
4441 |
-
#: includes/helpers.php:
|
4442 |
msgid "Rwanda"
|
4443 |
msgstr ""
|
4444 |
|
@@ -4495,17 +4495,17 @@ msgid "Serbia"
|
|
4495 |
msgstr ""
|
4496 |
|
4497 |
#: includes/helpers.php:585
|
4498 |
-
#: includes/helpers.php:
|
4499 |
msgid "Seychelles"
|
4500 |
msgstr ""
|
4501 |
|
4502 |
#: includes/helpers.php:586
|
4503 |
-
#: includes/helpers.php:
|
4504 |
msgid "Sierra Leone"
|
4505 |
msgstr ""
|
4506 |
|
4507 |
#: includes/helpers.php:587
|
4508 |
-
#: includes/helpers.php:
|
4509 |
msgid "Singapore"
|
4510 |
msgstr ""
|
4511 |
|
@@ -4518,7 +4518,7 @@ msgid "Slovenia"
|
|
4518 |
msgstr ""
|
4519 |
|
4520 |
#: includes/helpers.php:590
|
4521 |
-
#: includes/helpers.php:
|
4522 |
msgid "Solomon Islands"
|
4523 |
msgstr ""
|
4524 |
|
@@ -4527,7 +4527,7 @@ msgid "Somalia"
|
|
4527 |
msgstr ""
|
4528 |
|
4529 |
#: includes/helpers.php:592
|
4530 |
-
#: includes/helpers.php:
|
4531 |
msgid "South Africa"
|
4532 |
msgstr ""
|
4533 |
|
@@ -4540,7 +4540,7 @@ msgid "South Korea"
|
|
4540 |
msgstr ""
|
4541 |
|
4542 |
#: includes/helpers.php:595
|
4543 |
-
#: includes/helpers.php:
|
4544 |
msgid "South Sudan"
|
4545 |
msgstr ""
|
4546 |
|
@@ -4553,7 +4553,7 @@ msgid "Sri Lanka"
|
|
4553 |
msgstr ""
|
4554 |
|
4555 |
#: includes/helpers.php:598
|
4556 |
-
#: includes/helpers.php:
|
4557 |
msgid "Sudan"
|
4558 |
msgstr ""
|
4559 |
|
@@ -4566,7 +4566,7 @@ msgid "Svalbard and Jan Mayen Islands"
|
|
4566 |
msgstr ""
|
4567 |
|
4568 |
#: includes/helpers.php:601
|
4569 |
-
#: includes/helpers.php:
|
4570 |
msgid "Swaziland"
|
4571 |
msgstr ""
|
4572 |
|
@@ -4591,7 +4591,7 @@ msgid "Tajikistan"
|
|
4591 |
msgstr ""
|
4592 |
|
4593 |
#: includes/helpers.php:607
|
4594 |
-
#: includes/helpers.php:
|
4595 |
msgid "Tanzania"
|
4596 |
msgstr ""
|
4597 |
|
@@ -4612,12 +4612,12 @@ msgid "Tokelau"
|
|
4612 |
msgstr ""
|
4613 |
|
4614 |
#: includes/helpers.php:612
|
4615 |
-
#: includes/helpers.php:
|
4616 |
msgid "Tonga"
|
4617 |
msgstr ""
|
4618 |
|
4619 |
#: includes/helpers.php:613
|
4620 |
-
#: includes/helpers.php:
|
4621 |
msgid "Trinidad and Tobago"
|
4622 |
msgstr ""
|
4623 |
|
@@ -4638,12 +4638,12 @@ msgid "Turks and Caicos Islands"
|
|
4638 |
msgstr ""
|
4639 |
|
4640 |
#: includes/helpers.php:618
|
4641 |
-
#: includes/helpers.php:
|
4642 |
msgid "Tuvalu"
|
4643 |
msgstr ""
|
4644 |
|
4645 |
#: includes/helpers.php:619
|
4646 |
-
#: includes/helpers.php:
|
4647 |
msgid "Uganda"
|
4648 |
msgstr ""
|
4649 |
|
@@ -4668,7 +4668,7 @@ msgid "Uzbekistan"
|
|
4668 |
msgstr ""
|
4669 |
|
4670 |
#: includes/helpers.php:625
|
4671 |
-
#: includes/helpers.php:
|
4672 |
msgid "Vanuatu"
|
4673 |
msgstr ""
|
4674 |
|
@@ -4705,12 +4705,12 @@ msgid "Yemen"
|
|
4705 |
msgstr ""
|
4706 |
|
4707 |
#: includes/helpers.php:634
|
4708 |
-
#: includes/helpers.php:
|
4709 |
msgid "Zambia"
|
4710 |
msgstr ""
|
4711 |
|
4712 |
#: includes/helpers.php:635
|
4713 |
-
#: includes/helpers.php:
|
4714 |
msgid "Zimbabwe"
|
4715 |
msgstr ""
|
4716 |
|
@@ -4728,27 +4728,27 @@ msgstr ""
|
|
4728 |
msgid "%1$sWe have detected multiple tracking codes%2$s! You should remove non-MonsterInsights ones. If you need help finding them please %3$sread this article%4$s."
|
4729 |
msgstr ""
|
4730 |
|
4731 |
-
#: includes/helpers.php:
|
4732 |
msgid "St Kitts and Nevis"
|
4733 |
msgstr ""
|
4734 |
|
4735 |
-
#: includes/helpers.php:
|
4736 |
msgid "St Lucia"
|
4737 |
msgstr ""
|
4738 |
|
4739 |
-
#: includes/helpers.php:
|
4740 |
msgid "St Vincent and the Grenadines"
|
4741 |
msgstr ""
|
4742 |
|
4743 |
-
#: includes/helpers.php:
|
4744 |
msgid "Samoa"
|
4745 |
msgstr ""
|
4746 |
|
4747 |
-
#: includes/helpers.php:
|
4748 |
msgid "The Bahamas"
|
4749 |
msgstr ""
|
4750 |
|
4751 |
-
#: includes/helpers.php:
|
4752 |
msgid "United States of America"
|
4753 |
msgstr ""
|
4754 |
|
@@ -4829,7 +4829,7 @@ msgid "Theme"
|
|
4829 |
msgstr ""
|
4830 |
|
4831 |
#: languages/gutenberg.php:77
|
4832 |
-
#: languages/vue.php:
|
4833 |
msgid "Inline Popular Posts"
|
4834 |
msgstr ""
|
4835 |
|
@@ -4866,7 +4866,7 @@ msgid "Comment Color"
|
|
4866 |
msgstr ""
|
4867 |
|
4868 |
#: languages/gutenberg.php:107
|
4869 |
-
#: languages/vue.php:
|
4870 |
msgid "Wide-Layout Options"
|
4871 |
msgstr ""
|
4872 |
|
@@ -4875,12 +4875,12 @@ msgid "Choose Layout"
|
|
4875 |
msgstr ""
|
4876 |
|
4877 |
#: languages/gutenberg.php:113
|
4878 |
-
#: languages/vue.php:
|
4879 |
msgid "Adjust the number of columns displayed when the widget is placed in a wide container."
|
4880 |
msgstr ""
|
4881 |
|
4882 |
#: languages/gutenberg.php:116
|
4883 |
-
#: languages/vue.php:
|
4884 |
msgid "Post Count"
|
4885 |
msgstr ""
|
4886 |
|
@@ -4889,7 +4889,7 @@ msgid "Number of posts displayed."
|
|
4889 |
msgstr ""
|
4890 |
|
4891 |
#: languages/gutenberg.php:122
|
4892 |
-
#: languages/vue.php:
|
4893 |
msgid "Display Options"
|
4894 |
msgstr ""
|
4895 |
|
@@ -4902,7 +4902,7 @@ msgid "Display Widget Title"
|
|
4902 |
msgstr ""
|
4903 |
|
4904 |
#: languages/gutenberg.php:131
|
4905 |
-
#: languages/vue.php:
|
4906 |
msgid "Widget Title"
|
4907 |
msgstr ""
|
4908 |
|
@@ -4911,17 +4911,17 @@ msgid "Only Show Posts From These Categories"
|
|
4911 |
msgstr ""
|
4912 |
|
4913 |
#: languages/gutenberg.php:137
|
4914 |
-
#: languages/vue.php:
|
4915 |
msgid "Display Author"
|
4916 |
msgstr ""
|
4917 |
|
4918 |
#: languages/gutenberg.php:140
|
4919 |
-
#: languages/vue.php:
|
4920 |
msgid "Display Date"
|
4921 |
msgstr ""
|
4922 |
|
4923 |
#: languages/gutenberg.php:143
|
4924 |
-
#: languages/vue.php:
|
4925 |
msgid "Display Comments"
|
4926 |
msgstr ""
|
4927 |
|
@@ -5142,7 +5142,7 @@ msgid "Goal: "
|
|
5142 |
msgstr ""
|
5143 |
|
5144 |
#: languages/gutenberg.php:324
|
5145 |
-
#: languages/vue.php:
|
5146 |
msgid "Headline Analyzer"
|
5147 |
msgstr ""
|
5148 |
|
@@ -5592,75 +5592,75 @@ msgstr ""
|
|
5592 |
msgid "Custom Dimensions"
|
5593 |
msgstr ""
|
5594 |
|
5595 |
-
#: languages/vue.php:
|
5596 |
msgid "Author Tracking"
|
5597 |
msgstr ""
|
5598 |
|
5599 |
-
#: languages/vue.php:
|
5600 |
msgid "Google Optimize"
|
5601 |
msgstr ""
|
5602 |
|
5603 |
-
#: languages/vue.php:
|
5604 |
msgid "Category / Tags Tracking"
|
5605 |
msgstr ""
|
5606 |
|
5607 |
-
#: languages/vue.php:
|
5608 |
msgid "WooCommerce"
|
5609 |
msgstr ""
|
5610 |
|
5611 |
-
#: languages/vue.php:
|
5612 |
msgid "Easy Digital Downloads"
|
5613 |
msgstr ""
|
5614 |
|
5615 |
-
#: languages/vue.php:
|
5616 |
msgid "MemberPress"
|
5617 |
msgstr ""
|
5618 |
|
5619 |
-
#: languages/vue.php:
|
5620 |
msgid "LifterLMS"
|
5621 |
msgstr ""
|
5622 |
|
5623 |
#. Translators: Current PHP version and recommended PHP version.
|
5624 |
-
#: languages/vue.php:
|
5625 |
msgid "MonsterInsights has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. WordPress stopped supporting your PHP version in April, 2019. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure."
|
5626 |
msgstr ""
|
5627 |
|
5628 |
#. Translators: Current WordPress version.
|
5629 |
-
#: languages/vue.php:
|
5630 |
msgid "MonsterInsights has detected that your site is running an outdated version of WordPress (%s). MonsterInsights will stop supporting WordPress versions lower than 4.9 in 2020. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
|
5631 |
msgstr ""
|
5632 |
|
5633 |
-
#: languages/vue.php:
|
5634 |
msgid "Yikes! PHP Update Required"
|
5635 |
msgstr ""
|
5636 |
|
5637 |
#. Translators: Current PHP version and recommended PHP version.
|
5638 |
-
#: languages/vue.php:
|
5639 |
msgid "MonsterInsights has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure."
|
5640 |
msgstr ""
|
5641 |
|
5642 |
-
#: languages/vue.php:
|
5643 |
msgid "Learn more about updating PHP"
|
5644 |
msgstr ""
|
5645 |
|
5646 |
-
#: languages/vue.php:
|
5647 |
msgid "Yikes! WordPress Update Required"
|
5648 |
msgstr ""
|
5649 |
|
5650 |
#. Translators: Current WordPress version.
|
5651 |
-
#: languages/vue.php:
|
5652 |
msgid "MonsterInsights has detected that your site is running an outdated version of WordPress (%s). Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
|
5653 |
msgstr ""
|
5654 |
|
5655 |
-
#: languages/vue.php:
|
5656 |
msgid "Learn more about updating WordPress"
|
5657 |
msgstr ""
|
5658 |
|
5659 |
-
#: languages/vue.php:
|
5660 |
msgid "MonsterInsights encountered an error loading your report data"
|
5661 |
msgstr ""
|
5662 |
|
5663 |
-
#: languages/vue.php:
|
5664 |
msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
|
5665 |
msgstr ""
|
5666 |
|
@@ -5668,341 +5668,341 @@ msgstr ""
|
|
5668 |
msgid "Reconnect MonsterInsights"
|
5669 |
msgstr ""
|
5670 |
|
5671 |
-
#: languages/vue.php:
|
5672 |
msgid "Re-Authenticating"
|
5673 |
msgstr ""
|
5674 |
|
5675 |
-
#: languages/vue.php:
|
5676 |
msgid "Ok"
|
5677 |
msgstr ""
|
5678 |
|
5679 |
-
#: languages/vue.php:
|
5680 |
msgid "See Quick Links"
|
5681 |
msgstr ""
|
5682 |
|
5683 |
-
#: languages/vue.php:
|
5684 |
msgid "Suggest a Feature"
|
5685 |
msgstr ""
|
5686 |
|
5687 |
-
#: languages/vue.php:
|
5688 |
msgid "Join Our Community"
|
5689 |
msgstr ""
|
5690 |
|
5691 |
-
#: languages/vue.php:
|
5692 |
msgid "Support & Docs"
|
5693 |
msgstr ""
|
5694 |
|
5695 |
-
#: languages/vue.php:
|
5696 |
msgid "Upgrade to Pro »"
|
5697 |
msgstr ""
|
5698 |
|
5699 |
#. Translators: Placeholder is replaced with WPForms.
|
5700 |
-
#: languages/vue.php:
|
5701 |
msgid "Recommended Plugin: %s"
|
5702 |
msgstr ""
|
5703 |
|
5704 |
-
#: languages/vue.php:
|
5705 |
msgid "Install"
|
5706 |
msgstr ""
|
5707 |
|
5708 |
-
#: languages/vue.php:
|
5709 |
msgid "Activate"
|
5710 |
msgstr ""
|
5711 |
|
5712 |
-
#: languages/vue.php:
|
5713 |
msgid "Powered by MonsterInsights"
|
5714 |
msgstr ""
|
5715 |
|
5716 |
-
#: languages/vue.php:
|
5717 |
#: lite/includes/admin/wp-site-health.php:253
|
5718 |
msgid "View Reports"
|
5719 |
msgstr ""
|
5720 |
|
5721 |
-
#: languages/vue.php:
|
5722 |
msgid "Congratulations!"
|
5723 |
msgstr ""
|
5724 |
|
5725 |
#. Translators: Add link to YouTube video and Onboarding Wizard.
|
5726 |
-
#: languages/vue.php:
|
5727 |
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."
|
5728 |
msgstr ""
|
5729 |
|
5730 |
#. Translators: Add link to YouTube video and Onboarding Wizard.
|
5731 |
-
#: languages/vue.php:
|
5732 |
msgid "Onboarding Wizard"
|
5733 |
msgstr ""
|
5734 |
|
5735 |
-
#: languages/vue.php:
|
5736 |
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."
|
5737 |
msgstr ""
|
5738 |
|
5739 |
-
#: languages/vue.php:
|
5740 |
msgid "Save Changes"
|
5741 |
msgstr ""
|
5742 |
|
5743 |
-
#: languages/vue.php:
|
5744 |
msgid "Inbox"
|
5745 |
msgstr ""
|
5746 |
|
5747 |
-
#: languages/vue.php:
|
5748 |
msgid "Back to Inbox"
|
5749 |
msgstr ""
|
5750 |
|
5751 |
-
#: languages/vue.php:
|
5752 |
msgid "View Dismissed"
|
5753 |
msgstr ""
|
5754 |
|
5755 |
-
#: languages/vue.php:
|
5756 |
msgid "Notifications"
|
5757 |
msgstr ""
|
5758 |
|
5759 |
-
#: languages/vue.php:
|
5760 |
msgid "Dismiss All"
|
5761 |
msgstr ""
|
5762 |
|
5763 |
-
#: languages/vue.php:
|
5764 |
msgid "Dismissed"
|
5765 |
msgstr ""
|
5766 |
|
5767 |
-
#: languages/vue.php:
|
5768 |
msgid "No Notifications"
|
5769 |
msgstr ""
|
5770 |
|
5771 |
-
#: languages/vue.php:
|
5772 |
msgid "Import Export"
|
5773 |
msgstr ""
|
5774 |
|
5775 |
-
#: languages/vue.php:
|
5776 |
msgid "PrettyLinks Integration"
|
5777 |
msgstr ""
|
5778 |
|
5779 |
-
#: languages/vue.php:
|
5780 |
msgid "Getting Started"
|
5781 |
msgstr ""
|
5782 |
|
5783 |
-
#: languages/vue.php:
|
5784 |
msgid "Lite vs Pro"
|
5785 |
msgstr ""
|
5786 |
|
5787 |
-
#: languages/vue.php:
|
5788 |
msgid "Popular Posts Widget"
|
5789 |
msgstr ""
|
5790 |
|
5791 |
-
#: languages/vue.php:
|
5792 |
msgid "Popular Products"
|
5793 |
msgstr ""
|
5794 |
|
5795 |
-
#: languages/vue.php:
|
5796 |
msgid "Sub menu item for WooCommerce Analytics"
|
5797 |
msgstr ""
|
5798 |
|
5799 |
-
#: languages/vue.php:
|
5800 |
msgid "Engagement"
|
5801 |
msgstr ""
|
5802 |
|
5803 |
-
#: languages/vue.php:
|
5804 |
#: lite/includes/admin/reports/report-ecommerce.php:22
|
5805 |
msgid "eCommerce"
|
5806 |
msgstr ""
|
5807 |
|
5808 |
-
#: languages/vue.php:
|
5809 |
msgid "Publisher"
|
5810 |
msgstr ""
|
5811 |
|
5812 |
-
#: languages/vue.php:
|
5813 |
msgid "Conversions"
|
5814 |
msgstr ""
|
5815 |
|
5816 |
-
#: languages/vue.php:
|
5817 |
msgid "Advanced"
|
5818 |
msgstr ""
|
5819 |
|
5820 |
-
#: languages/vue.php:
|
5821 |
msgid "URL Builder"
|
5822 |
msgstr ""
|
5823 |
|
5824 |
-
#: languages/vue.php:
|
5825 |
msgid "MonsterInsights Addons"
|
5826 |
msgstr ""
|
5827 |
|
5828 |
-
#: languages/vue.php:
|
5829 |
msgid "Search Addons"
|
5830 |
msgstr ""
|
5831 |
|
5832 |
-
#: languages/vue.php:
|
5833 |
msgid "Exit Setup"
|
5834 |
msgstr ""
|
5835 |
|
5836 |
-
#: languages/vue.php:
|
5837 |
msgid "You must connect with MonsterInsights before you can view reports."
|
5838 |
msgstr ""
|
5839 |
|
5840 |
-
#: languages/vue.php:
|
5841 |
msgid "MonsterInsights makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
|
5842 |
msgstr ""
|
5843 |
|
5844 |
-
#: languages/vue.php:
|
5845 |
msgid "Launch Setup Wizard"
|
5846 |
msgstr ""
|
5847 |
|
5848 |
-
#: languages/vue.php:
|
5849 |
msgid "Please ask your webmaster to connect MonsterInsights to Google Analytics."
|
5850 |
msgstr ""
|
5851 |
|
5852 |
-
#: languages/vue.php:
|
5853 |
#: lite/includes/admin/reports/report-publisher.php:22
|
5854 |
msgid "Publishers"
|
5855 |
msgstr ""
|
5856 |
|
5857 |
-
#: languages/vue.php:
|
5858 |
#: lite/includes/admin/reports/report-queries.php:22
|
5859 |
msgid "Search Console"
|
5860 |
msgstr ""
|
5861 |
|
5862 |
-
#: languages/vue.php:
|
5863 |
#: lite/includes/admin/reports/report-dimensions.php:22
|
5864 |
msgid "Dimensions"
|
5865 |
msgstr ""
|
5866 |
|
5867 |
-
#: languages/vue.php:
|
5868 |
#: lite/includes/admin/reports/report-forms.php:22
|
5869 |
msgid "Forms"
|
5870 |
msgstr ""
|
5871 |
|
5872 |
-
#: languages/vue.php:
|
5873 |
msgid "Real-Time"
|
5874 |
msgstr ""
|
5875 |
|
5876 |
-
#: languages/vue.php:
|
5877 |
msgid "Site Speed"
|
5878 |
msgstr ""
|
5879 |
|
5880 |
-
#: languages/vue.php:
|
5881 |
msgid "2020 Year in Review"
|
5882 |
msgstr ""
|
5883 |
|
5884 |
#. Translators: Error status and error text.
|
5885 |
-
#: languages/vue.php:
|
5886 |
msgid "Can't load report data. Error: %1$s, %2$s"
|
5887 |
msgstr ""
|
5888 |
|
5889 |
-
#: languages/vue.php:
|
5890 |
msgid "Error loading report data"
|
5891 |
msgstr ""
|
5892 |
|
5893 |
-
#: languages/vue.php:
|
5894 |
msgid "Publishers Report"
|
5895 |
msgstr ""
|
5896 |
|
5897 |
-
#: languages/vue.php:
|
5898 |
msgid "eCommerce Report"
|
5899 |
msgstr ""
|
5900 |
|
5901 |
-
#: languages/vue.php:
|
5902 |
msgid "Search Console Report"
|
5903 |
msgstr ""
|
5904 |
|
5905 |
-
#: languages/vue.php:
|
5906 |
msgid "Dimensions Report"
|
5907 |
msgstr ""
|
5908 |
|
5909 |
-
#: languages/vue.php:
|
5910 |
msgid "Forms Report"
|
5911 |
msgstr ""
|
5912 |
|
5913 |
-
#: languages/vue.php:
|
5914 |
msgid "Real-Time Report"
|
5915 |
msgstr ""
|
5916 |
|
5917 |
-
#: languages/vue.php:
|
5918 |
msgid "Site Speed Report"
|
5919 |
msgstr ""
|
5920 |
|
5921 |
-
#: languages/vue.php:
|
5922 |
msgid "Time to Purchase"
|
5923 |
msgstr ""
|
5924 |
|
5925 |
-
#: languages/vue.php:
|
5926 |
msgid "This list shows how many days from first visit it took users to purchase products from your site."
|
5927 |
msgstr ""
|
5928 |
|
5929 |
-
#: languages/vue.php:
|
5930 |
msgid "Sessions to Purchase"
|
5931 |
msgstr ""
|
5932 |
|
5933 |
-
#: languages/vue.php:
|
5934 |
msgid "This list shows the number of sessions it took users before they purchased a product from your website."
|
5935 |
msgstr ""
|
5936 |
|
5937 |
-
#: languages/vue.php:
|
5938 |
msgid "New Customers"
|
5939 |
msgstr ""
|
5940 |
|
5941 |
-
#: languages/vue.php:
|
5942 |
msgid "This list shows the percentage of new customers who purchased a product from your website."
|
5943 |
msgstr ""
|
5944 |
|
5945 |
-
#: languages/vue.php:
|
5946 |
msgid "Abandoned Checkouts"
|
5947 |
msgstr ""
|
5948 |
|
5949 |
-
#: languages/vue.php:
|
5950 |
msgid "This list shows the percentage of carts that never went through the checkout process."
|
5951 |
msgstr ""
|
5952 |
|
5953 |
-
#: languages/vue.php:
|
5954 |
msgid "Top Posts/Pages"
|
5955 |
msgstr ""
|
5956 |
|
5957 |
-
#: languages/vue.php:
|
5958 |
msgid "This list shows the most viewed posts and pages on your website."
|
5959 |
msgstr ""
|
5960 |
|
5961 |
-
#: languages/vue.php:
|
5962 |
msgid "New vs. Returning Visitors"
|
5963 |
msgstr ""
|
5964 |
|
5965 |
-
#: languages/vue.php:
|
5966 |
msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
|
5967 |
msgstr ""
|
5968 |
|
5969 |
-
#: languages/vue.php:
|
5970 |
msgid "Device Breakdown"
|
5971 |
msgstr ""
|
5972 |
|
5973 |
-
#: languages/vue.php:
|
5974 |
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."
|
5975 |
msgstr ""
|
5976 |
|
5977 |
-
#: languages/vue.php:
|
5978 |
msgid "Top Landing Pages"
|
5979 |
msgstr ""
|
5980 |
|
5981 |
-
#: languages/vue.php:
|
5982 |
msgid "This list shows the top pages users first land on when visiting your website."
|
5983 |
msgstr ""
|
5984 |
|
5985 |
-
#: languages/vue.php:
|
5986 |
msgid "Top Exit Pages"
|
5987 |
msgstr ""
|
5988 |
|
5989 |
-
#: languages/vue.php:
|
5990 |
msgid "This list shows the top pages users exit your website from."
|
5991 |
msgstr ""
|
5992 |
|
5993 |
-
#: languages/vue.php:
|
5994 |
msgid "Top Outbound Links"
|
5995 |
msgstr ""
|
5996 |
|
5997 |
-
#: languages/vue.php:
|
5998 |
msgid "This list shows the top links clicked on your website that go to another website."
|
5999 |
msgstr ""
|
6000 |
|
6001 |
-
#: languages/vue.php:
|
6002 |
msgid "Top Affiliate Links"
|
6003 |
msgstr ""
|
6004 |
|
6005 |
-
#: languages/vue.php:
|
6006 |
msgid "This list shows the top affiliate links your visitors clicked on."
|
6007 |
msgstr ""
|
6008 |
|
@@ -6014,362 +6014,362 @@ msgstr ""
|
|
6014 |
msgid "This list shows the download links your visitors clicked the most."
|
6015 |
msgstr ""
|
6016 |
|
6017 |
-
#: languages/vue.php:
|
6018 |
msgid "Top Products"
|
6019 |
msgstr ""
|
6020 |
|
6021 |
-
#: languages/vue.php:
|
6022 |
msgid "This list shows the top selling products on your website."
|
6023 |
msgstr ""
|
6024 |
|
6025 |
-
#: languages/vue.php:
|
6026 |
msgid "Top Conversion Sources"
|
6027 |
msgstr ""
|
6028 |
|
6029 |
-
#: languages/vue.php:
|
6030 |
msgid "This list shows the top referral websites in terms of product revenue."
|
6031 |
msgstr ""
|
6032 |
|
6033 |
-
#: languages/vue.php:
|
6034 |
msgid "Total Add/Remove"
|
6035 |
msgstr ""
|
6036 |
|
6037 |
#. Translators: Adds a link to documentation.
|
6038 |
-
#: languages/vue.php:
|
6039 |
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"
|
6040 |
msgstr ""
|
6041 |
|
6042 |
#. Translators: Adds link to activate/install plugin and documentation.
|
6043 |
-
#: languages/vue.php:
|
6044 |
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"
|
6045 |
msgstr ""
|
6046 |
|
6047 |
#. Translators: Adds a link to documentation.
|
6048 |
-
#: languages/vue.php:
|
6049 |
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"
|
6050 |
msgstr ""
|
6051 |
|
6052 |
#. Translators: Adds link to activate/install plugin and documentation.
|
6053 |
-
#: languages/vue.php:
|
6054 |
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"
|
6055 |
msgstr ""
|
6056 |
|
6057 |
-
#: languages/vue.php:
|
6058 |
msgid "GDPR Guide"
|
6059 |
msgstr ""
|
6060 |
|
6061 |
-
#: languages/vue.php:
|
6062 |
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. "
|
6063 |
msgstr ""
|
6064 |
|
6065 |
-
#: languages/vue.php:
|
6066 |
msgid "How to Install and Activate MonsterInsights Addons"
|
6067 |
msgstr ""
|
6068 |
|
6069 |
-
#: languages/vue.php:
|
6070 |
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."
|
6071 |
msgstr ""
|
6072 |
|
6073 |
-
#: languages/vue.php:
|
6074 |
msgid "Enabling eCommerce Tracking and Reports"
|
6075 |
msgstr ""
|
6076 |
|
6077 |
-
#: languages/vue.php:
|
6078 |
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."
|
6079 |
msgstr ""
|
6080 |
|
6081 |
-
#: languages/vue.php:
|
6082 |
msgid "Read Documentation"
|
6083 |
msgstr ""
|
6084 |
|
6085 |
-
#: languages/vue.php:
|
6086 |
msgid "Getting Started with MonsterInsights"
|
6087 |
msgstr ""
|
6088 |
|
6089 |
-
#: languages/vue.php:
|
6090 |
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."
|
6091 |
msgstr ""
|
6092 |
|
6093 |
-
#: languages/vue.php:
|
6094 |
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."
|
6095 |
msgstr ""
|
6096 |
|
6097 |
-
#: languages/vue.php:
|
6098 |
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!."
|
6099 |
msgstr ""
|
6100 |
|
6101 |
-
#: languages/vue.php:
|
6102 |
msgid "Launch the wizard!"
|
6103 |
msgstr ""
|
6104 |
|
6105 |
-
#: languages/vue.php:
|
6106 |
msgid "Get MonsterInsights Pro and Unlock all the Powerful Features"
|
6107 |
msgstr ""
|
6108 |
|
6109 |
#. Translators: Makes text bold.
|
6110 |
-
#: languages/vue.php:
|
6111 |
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."
|
6112 |
msgstr ""
|
6113 |
|
6114 |
-
#: languages/vue.php:
|
6115 |
msgid "Universal Tracking across devices and campaigns with just a few clicks."
|
6116 |
msgstr ""
|
6117 |
|
6118 |
-
#: languages/vue.php:
|
6119 |
msgid "See your website analytics reports inside the WordPress dashboard"
|
6120 |
msgstr ""
|
6121 |
|
6122 |
-
#: languages/vue.php:
|
6123 |
msgid "Get real-time stats right inside WordPress"
|
6124 |
msgstr ""
|
6125 |
|
6126 |
-
#: languages/vue.php:
|
6127 |
msgid "1-click Google Analytics Enhanced eCommerce tracking"
|
6128 |
msgstr ""
|
6129 |
|
6130 |
-
#: languages/vue.php:
|
6131 |
msgid "Get detailed stats for each post and page."
|
6132 |
msgstr ""
|
6133 |
|
6134 |
-
#: languages/vue.php:
|
6135 |
msgid "Automatically track clicks on your affiliate links and ads."
|
6136 |
msgstr ""
|
6137 |
|
6138 |
-
#: languages/vue.php:
|
6139 |
msgid "Make Google Analytics GDPR compliant automatically"
|
6140 |
msgstr ""
|
6141 |
|
6142 |
-
#: languages/vue.php:
|
6143 |
msgid "Setup tracking for authors, categories, tags, custom post types, users and more"
|
6144 |
msgstr ""
|
6145 |
|
6146 |
-
#: languages/vue.php:
|
6147 |
msgid "Enable Google Optimize for A/B testing, adjust sample speed & sample rate."
|
6148 |
msgstr ""
|
6149 |
|
6150 |
-
#: languages/vue.php:
|
6151 |
msgid "More advanced features"
|
6152 |
msgstr ""
|
6153 |
|
6154 |
-
#: languages/vue.php:
|
6155 |
msgid "Get MonsterInsights Pro Today and Unlock all the Powerful Features"
|
6156 |
msgstr ""
|
6157 |
|
6158 |
#. Translators: Makes text green.
|
6159 |
-
#: languages/vue.php:
|
6160 |
msgid "Bonus: MonsterInsights Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
|
6161 |
msgstr ""
|
6162 |
|
6163 |
-
#: languages/vue.php:
|
6164 |
msgid "How to Connect to Google Analytics"
|
6165 |
msgstr ""
|
6166 |
|
6167 |
-
#: languages/vue.php:
|
6168 |
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."
|
6169 |
msgstr ""
|
6170 |
|
6171 |
-
#: languages/vue.php:
|
6172 |
msgid "Guide and Checklist for Advanced Insights"
|
6173 |
msgstr ""
|
6174 |
|
6175 |
-
#: languages/vue.php:
|
6176 |
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."
|
6177 |
msgstr ""
|
6178 |
|
6179 |
-
#: languages/vue.php:
|
6180 |
msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
|
6181 |
msgstr ""
|
6182 |
|
6183 |
-
#: languages/vue.php:
|
6184 |
msgid "WordPress Admin Area Reports"
|
6185 |
msgstr ""
|
6186 |
|
6187 |
-
#: languages/vue.php:
|
6188 |
msgid "Standard Reports"
|
6189 |
msgstr ""
|
6190 |
|
6191 |
-
#: languages/vue.php:
|
6192 |
msgid "Overview Reports for the last 30 days."
|
6193 |
msgstr ""
|
6194 |
|
6195 |
-
#: languages/vue.php:
|
6196 |
msgid "Advanced Reports"
|
6197 |
msgstr ""
|
6198 |
|
6199 |
-
#: languages/vue.php:
|
6200 |
msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
|
6201 |
msgstr ""
|
6202 |
|
6203 |
-
#: languages/vue.php:
|
6204 |
msgid "Dashboard Widget"
|
6205 |
msgstr ""
|
6206 |
|
6207 |
-
#: languages/vue.php:
|
6208 |
msgid "Basic Widget"
|
6209 |
msgstr ""
|
6210 |
|
6211 |
-
#: languages/vue.php:
|
6212 |
msgid "Overview Report Synopsis"
|
6213 |
msgstr ""
|
6214 |
|
6215 |
-
#: languages/vue.php:
|
6216 |
msgid "Advanced Dashboard Widget"
|
6217 |
msgstr ""
|
6218 |
|
6219 |
-
#: languages/vue.php:
|
6220 |
msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
|
6221 |
msgstr ""
|
6222 |
|
6223 |
-
#: languages/vue.php:
|
6224 |
msgid "Email Summaries"
|
6225 |
msgstr ""
|
6226 |
|
6227 |
-
#: languages/vue.php:
|
6228 |
msgid "Included"
|
6229 |
msgstr ""
|
6230 |
|
6231 |
-
#: languages/vue.php:
|
6232 |
msgid "Get weekly traffic reports directly in your inbox."
|
6233 |
msgstr ""
|
6234 |
|
6235 |
-
#: languages/vue.php:
|
6236 |
msgid "Publisher Reports"
|
6237 |
msgstr ""
|
6238 |
|
6239 |
-
#: languages/vue.php:
|
6240 |
msgid "Advanced Publisher Reports & Tracking"
|
6241 |
msgstr ""
|
6242 |
|
6243 |
-
#: languages/vue.php:
|
6244 |
msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
|
6245 |
msgstr ""
|
6246 |
|
6247 |
-
#: languages/vue.php:
|
6248 |
msgid "Basic Options"
|
6249 |
msgstr ""
|
6250 |
|
6251 |
-
#: languages/vue.php:
|
6252 |
msgid "Order Popular Posts by comments or shares with 3 simple theme choices."
|
6253 |
msgstr ""
|
6254 |
|
6255 |
-
#: languages/vue.php:
|
6256 |
msgid "Dynamic Popular Posts & Popular Products"
|
6257 |
msgstr ""
|
6258 |
|
6259 |
-
#: languages/vue.php:
|
6260 |
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."
|
6261 |
msgstr ""
|
6262 |
|
6263 |
-
#: languages/vue.php:
|
6264 |
msgid "Not Available"
|
6265 |
msgstr ""
|
6266 |
|
6267 |
-
#: languages/vue.php:
|
6268 |
msgid "Complete Custom Dimensions Tracking"
|
6269 |
msgstr ""
|
6270 |
|
6271 |
-
#: languages/vue.php:
|
6272 |
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"
|
6273 |
msgstr ""
|
6274 |
|
6275 |
-
#: languages/vue.php:
|
6276 |
msgid "Limited Support"
|
6277 |
msgstr ""
|
6278 |
|
6279 |
-
#: languages/vue.php:
|
6280 |
msgid "Priority Support"
|
6281 |
msgstr ""
|
6282 |
|
6283 |
-
#: languages/vue.php:
|
6284 |
msgid "Get the most out of MonsterInsights by upgrading to Pro and unlocking all of the powerful features."
|
6285 |
msgstr ""
|
6286 |
|
6287 |
-
#: languages/vue.php:
|
6288 |
msgid "Feature"
|
6289 |
msgstr ""
|
6290 |
|
6291 |
-
#: languages/vue.php:
|
6292 |
msgid "Lite"
|
6293 |
msgstr ""
|
6294 |
|
6295 |
-
#: languages/vue.php:
|
6296 |
msgid "Pro"
|
6297 |
msgstr ""
|
6298 |
|
6299 |
-
#: languages/vue.php:
|
6300 |
msgid "Custom Google Analytics Link Tracking"
|
6301 |
msgstr ""
|
6302 |
|
6303 |
-
#: languages/vue.php:
|
6304 |
msgid "Standard Tracking"
|
6305 |
msgstr ""
|
6306 |
|
6307 |
-
#: languages/vue.php:
|
6308 |
msgid "Advanced Tracking"
|
6309 |
msgstr ""
|
6310 |
|
6311 |
-
#: languages/vue.php:
|
6312 |
msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
|
6313 |
msgstr ""
|
6314 |
|
6315 |
-
#: languages/vue.php:
|
6316 |
msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
|
6317 |
msgstr ""
|
6318 |
|
6319 |
-
#: languages/vue.php:
|
6320 |
msgid "No-Code-Needed Tracking Features"
|
6321 |
msgstr ""
|
6322 |
|
6323 |
-
#: languages/vue.php:
|
6324 |
msgid "Basic Tracking Options"
|
6325 |
msgstr ""
|
6326 |
|
6327 |
-
#: languages/vue.php:
|
6328 |
msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
|
6329 |
msgstr ""
|
6330 |
|
6331 |
-
#: languages/vue.php:
|
6332 |
msgid "Advanced Tracking Options"
|
6333 |
msgstr ""
|
6334 |
|
6335 |
-
#: languages/vue.php:
|
6336 |
msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
|
6337 |
msgstr ""
|
6338 |
|
6339 |
-
#: languages/vue.php:
|
6340 |
msgid "eCommerce Tracking"
|
6341 |
msgstr ""
|
6342 |
|
6343 |
-
#: languages/vue.php:
|
6344 |
msgid "One-click Complete eCommerce tracking"
|
6345 |
msgstr ""
|
6346 |
|
6347 |
-
#: languages/vue.php:
|
6348 |
msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
|
6349 |
msgstr ""
|
6350 |
|
6351 |
-
#: languages/vue.php:
|
6352 |
msgid "Forms Tracking"
|
6353 |
msgstr ""
|
6354 |
|
6355 |
-
#: languages/vue.php:
|
6356 |
msgid "One-click Form Events Tracking"
|
6357 |
msgstr ""
|
6358 |
|
6359 |
-
#: languages/vue.php:
|
6360 |
msgid "License Key"
|
6361 |
msgstr ""
|
6362 |
|
6363 |
#. Translators: Add link to retrieve license key from account.
|
6364 |
-
#: languages/vue.php:
|
6365 |
msgid "Add your MonsterInsights license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
|
6366 |
msgstr ""
|
6367 |
|
6368 |
-
#: languages/vue.php:
|
6369 |
msgid "Google Authentication"
|
6370 |
msgstr ""
|
6371 |
|
6372 |
-
#: languages/vue.php:
|
6373 |
msgid "Connect Google Analytics + WordPress"
|
6374 |
msgstr ""
|
6375 |
|
@@ -6726,15 +6726,15 @@ msgstr ""
|
|
6726 |
msgid "Continue & Install WPForms"
|
6727 |
msgstr ""
|
6728 |
|
6729 |
-
#: languages/vue.php:
|
6730 |
msgid "Installing..."
|
6731 |
msgstr ""
|
6732 |
|
6733 |
-
#: languages/vue.php:
|
6734 |
msgid "Show in widget mode"
|
6735 |
msgstr ""
|
6736 |
|
6737 |
-
#: languages/vue.php:
|
6738 |
msgid "Show in full-width mode"
|
6739 |
msgstr ""
|
6740 |
|
@@ -6786,57 +6786,57 @@ msgstr ""
|
|
6786 |
msgid "Please wait"
|
6787 |
msgstr ""
|
6788 |
|
6789 |
-
#: languages/vue.php:
|
6790 |
msgid "activate"
|
6791 |
msgstr ""
|
6792 |
|
6793 |
-
#: languages/vue.php:
|
6794 |
msgid "install"
|
6795 |
msgstr ""
|
6796 |
|
6797 |
-
#: languages/vue.php:
|
6798 |
msgid "Visit addons page"
|
6799 |
msgstr ""
|
6800 |
|
6801 |
-
#: languages/vue.php:
|
6802 |
msgid "Report Unavailable"
|
6803 |
msgstr ""
|
6804 |
|
6805 |
#. Translators: Install/Activate the addon.
|
6806 |
-
#: languages/vue.php:
|
6807 |
msgid "%s Addon"
|
6808 |
msgstr ""
|
6809 |
|
6810 |
-
#: languages/vue.php:
|
6811 |
msgid "Go Back To Reports"
|
6812 |
msgstr ""
|
6813 |
|
6814 |
-
#: languages/vue.php:
|
6815 |
msgid "Enable Enhanced eCommerce"
|
6816 |
msgstr ""
|
6817 |
|
6818 |
#. Translators: Placeholders are used for making text bold and adding a link.
|
6819 |
-
#: languages/vue.php:
|
6820 |
msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
|
6821 |
msgstr ""
|
6822 |
|
6823 |
-
#: languages/vue.php:
|
6824 |
msgid "Last 30 Days Insights for:"
|
6825 |
msgstr ""
|
6826 |
|
6827 |
-
#: languages/vue.php:
|
6828 |
msgid "Your Website"
|
6829 |
msgstr ""
|
6830 |
|
6831 |
-
#: languages/vue.php:
|
6832 |
msgid "Sessions"
|
6833 |
msgstr ""
|
6834 |
|
6835 |
-
#: languages/vue.php:
|
6836 |
msgid "Pageviews"
|
6837 |
msgstr ""
|
6838 |
|
6839 |
-
#: languages/vue.php:
|
6840 |
msgid "Avg. Duration"
|
6841 |
msgstr ""
|
6842 |
|
@@ -6844,1560 +6844,1560 @@ msgstr ""
|
|
6844 |
msgid "Bounce Rate"
|
6845 |
msgstr ""
|
6846 |
|
6847 |
-
#: languages/vue.php:
|
6848 |
msgid "Total Users"
|
6849 |
msgstr ""
|
6850 |
|
6851 |
-
#: languages/vue.php:
|
6852 |
msgid "More data is available"
|
6853 |
msgstr ""
|
6854 |
|
6855 |
-
#: languages/vue.php:
|
6856 |
msgid "Want to see page-specific stats?"
|
6857 |
msgstr ""
|
6858 |
|
6859 |
-
#: languages/vue.php:
|
6860 |
msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
|
6861 |
msgstr ""
|
6862 |
|
6863 |
-
#: languages/vue.php:
|
6864 |
msgid "No addons found."
|
6865 |
msgstr ""
|
6866 |
|
6867 |
-
#: languages/vue.php:
|
6868 |
msgid "Refresh Addons"
|
6869 |
msgstr ""
|
6870 |
|
6871 |
-
#: languages/vue.php:
|
6872 |
msgid "Refreshing Addons"
|
6873 |
msgstr ""
|
6874 |
|
6875 |
#. Translators: Make text green.
|
6876 |
-
#: languages/vue.php:
|
6877 |
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!"
|
6878 |
msgstr ""
|
6879 |
|
6880 |
-
#: languages/vue.php:
|
6881 |
msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
|
6882 |
msgstr ""
|
6883 |
|
6884 |
-
#: languages/vue.php:
|
6885 |
msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
|
6886 |
msgstr ""
|
6887 |
|
6888 |
-
#: languages/vue.php:
|
6889 |
msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
|
6890 |
msgstr ""
|
6891 |
|
6892 |
-
#: languages/vue.php:
|
6893 |
msgid "See All Your Important Store Metrics in One Place"
|
6894 |
msgstr ""
|
6895 |
|
6896 |
-
#: languages/vue.php:
|
6897 |
msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
|
6898 |
msgstr ""
|
6899 |
|
6900 |
-
#: languages/vue.php:
|
6901 |
msgid "ONE-CLICK INTEGRATIONS"
|
6902 |
msgstr ""
|
6903 |
|
6904 |
-
#: languages/vue.php:
|
6905 |
msgid "Enable Ecommerce Tracking and Grow Your Business with Confidence"
|
6906 |
msgstr ""
|
6907 |
|
6908 |
-
#: languages/vue.php:
|
6909 |
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."
|
6910 |
msgstr ""
|
6911 |
|
6912 |
-
#: languages/vue.php:
|
6913 |
msgid "Affiliate Tracking"
|
6914 |
msgstr ""
|
6915 |
|
6916 |
-
#: languages/vue.php:
|
6917 |
msgid "Automatically Track Affiliate Sales"
|
6918 |
msgstr ""
|
6919 |
|
6920 |
-
#: languages/vue.php:
|
6921 |
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."
|
6922 |
msgstr ""
|
6923 |
|
6924 |
-
#: languages/vue.php:
|
6925 |
msgid "Works with WooCommerce, MemberPress and Easy Digital Downloads."
|
6926 |
msgstr ""
|
6927 |
|
6928 |
-
#: languages/vue.php:
|
6929 |
msgid "Cart Funnel"
|
6930 |
msgstr ""
|
6931 |
|
6932 |
-
#: languages/vue.php:
|
6933 |
msgid "Customer Insights"
|
6934 |
msgstr ""
|
6935 |
|
6936 |
-
#: languages/vue.php:
|
6937 |
msgid "Campaign Measurement"
|
6938 |
msgstr ""
|
6939 |
|
6940 |
-
#: languages/vue.php:
|
6941 |
msgid "Customer Profiles"
|
6942 |
msgstr ""
|
6943 |
|
6944 |
-
#: languages/vue.php:
|
6945 |
msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, revenue, and average order value, and more."
|
6946 |
msgstr ""
|
6947 |
|
6948 |
-
#: languages/vue.php:
|
6949 |
msgid "Truly Understand Your%1$s Customers With %2$sMonsterInsights%3$s"
|
6950 |
msgstr ""
|
6951 |
|
6952 |
-
#: languages/vue.php:
|
6953 |
msgid "You never truly understand your customers until you used Enhanced %1$s eCommerce from MonsterInsights!"
|
6954 |
msgstr ""
|
6955 |
|
6956 |
-
#: languages/vue.php:
|
6957 |
msgid "Track all-new metrics!"
|
6958 |
msgstr ""
|
6959 |
|
6960 |
-
#: languages/vue.php:
|
6961 |
msgid "Get stats WooCommerce doesn’t give you like: Conversion Sources, Avg. Order Value, Revenue per Source, Total Add to Carts & More!"
|
6962 |
msgstr ""
|
6963 |
|
6964 |
-
#: languages/vue.php:
|
6965 |
msgid "FEATURES"
|
6966 |
msgstr ""
|
6967 |
|
6968 |
-
#: languages/vue.php:
|
6969 |
msgid "Get The Unique Metrics Neccessary for Growth"
|
6970 |
msgstr ""
|
6971 |
|
6972 |
-
#: languages/vue.php:
|
6973 |
msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, %1$srevenue, and average order value, and more."
|
6974 |
msgstr ""
|
6975 |
|
6976 |
-
#: languages/vue.php:
|
6977 |
msgid "Get Answers to the important questions %1$syou should know."
|
6978 |
msgstr ""
|
6979 |
|
6980 |
-
#: languages/vue.php:
|
6981 |
msgid "Did the login/registration step of the checkout put users off?"
|
6982 |
msgstr ""
|
6983 |
|
6984 |
-
#: languages/vue.php:
|
6985 |
msgid "Which ad campaign is driving the most revenue?"
|
6986 |
msgstr ""
|
6987 |
|
6988 |
-
#: languages/vue.php:
|
6989 |
msgid "Who is my typical customer?"
|
6990 |
msgstr ""
|
6991 |
|
6992 |
-
#: languages/vue.php:
|
6993 |
msgid "Level-up Your eCommerce store with %1$sMonsterInsights + WooCommerce!%1$s"
|
6994 |
msgstr ""
|
6995 |
|
6996 |
#. Translators: placeholders make text small.
|
6997 |
-
#: languages/vue.php:
|
6998 |
msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
|
6999 |
msgstr ""
|
7000 |
|
7001 |
#. Translators: placeholders make text small.
|
7002 |
-
#: languages/vue.php:
|
7003 |
msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
|
7004 |
msgstr ""
|
7005 |
|
7006 |
#. Translators: placeholders make text small.
|
7007 |
-
#: languages/vue.php:
|
7008 |
msgid "None %1$s- Manually update everything.%2$s"
|
7009 |
msgstr ""
|
7010 |
|
7011 |
-
#: languages/vue.php:
|
7012 |
msgid "Automatic Updates"
|
7013 |
msgstr ""
|
7014 |
|
7015 |
-
#: languages/vue.php:
|
7016 |
msgid "Awesome, You're All Set!"
|
7017 |
msgstr ""
|
7018 |
|
7019 |
-
#: languages/vue.php:
|
7020 |
msgid "MonsterInsights is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
|
7021 |
msgstr ""
|
7022 |
|
7023 |
#. Translators: Make text bold.
|
7024 |
-
#: languages/vue.php:
|
7025 |
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."
|
7026 |
msgstr ""
|
7027 |
|
7028 |
#. Translators: Link to our blog.
|
7029 |
-
#: languages/vue.php:
|
7030 |
msgid "%1$sSubscribe to the MonsterInsights blog%2$s for tips on how to get more traffic and grow your business."
|
7031 |
msgstr ""
|
7032 |
|
7033 |
-
#: languages/vue.php:
|
7034 |
msgid "Finish Setup & Exit Wizard"
|
7035 |
msgstr ""
|
7036 |
|
7037 |
-
#: languages/vue.php:
|
7038 |
msgid "Checking your website..."
|
7039 |
msgstr ""
|
7040 |
|
7041 |
-
#: languages/vue.php:
|
7042 |
msgid "See All Reports"
|
7043 |
msgstr ""
|
7044 |
|
7045 |
-
#: languages/vue.php:
|
7046 |
msgid "Go to the Analytics Dashboard"
|
7047 |
msgstr ""
|
7048 |
|
7049 |
#. Translators: Line break.
|
7050 |
-
#: languages/vue.php:
|
7051 |
msgid "Unique %s Sessions"
|
7052 |
msgstr ""
|
7053 |
|
7054 |
#. Translators: Line break.
|
7055 |
-
#: languages/vue.php:
|
7056 |
msgid "Unique %s Pageviews"
|
7057 |
msgstr ""
|
7058 |
|
7059 |
-
#: languages/vue.php:
|
7060 |
msgid "A session is the browsing session of a single user to your site."
|
7061 |
msgstr ""
|
7062 |
|
7063 |
-
#: languages/vue.php:
|
7064 |
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."
|
7065 |
msgstr ""
|
7066 |
|
7067 |
-
#: languages/vue.php:
|
7068 |
msgid "Total duration of all sessions (in seconds) / number of sessions."
|
7069 |
msgstr ""
|
7070 |
|
7071 |
-
#: languages/vue.php:
|
7072 |
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."
|
7073 |
msgstr ""
|
7074 |
|
7075 |
-
#: languages/vue.php:
|
7076 |
msgid "The number of distinct tracked users"
|
7077 |
msgstr ""
|
7078 |
|
7079 |
-
#: languages/vue.php:
|
7080 |
msgid "Avg. Session Duration"
|
7081 |
msgstr ""
|
7082 |
|
7083 |
-
#: languages/vue.php:
|
7084 |
msgid "Still Calculating..."
|
7085 |
msgstr ""
|
7086 |
|
7087 |
-
#: languages/vue.php:
|
7088 |
msgid "Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year."
|
7089 |
msgstr ""
|
7090 |
|
7091 |
-
#: languages/vue.php:
|
7092 |
msgid "Back to Overview Report"
|
7093 |
msgstr ""
|
7094 |
|
7095 |
-
#: languages/vue.php:
|
7096 |
msgid "Your 2020 Analytics Report"
|
7097 |
msgstr ""
|
7098 |
|
7099 |
-
#: languages/vue.php:
|
7100 |
msgid "See how your website performed this year and find tips along the way to help grow even more in 2021!"
|
7101 |
msgstr ""
|
7102 |
|
7103 |
-
#: languages/vue.php:
|
7104 |
msgid "Audience"
|
7105 |
msgstr ""
|
7106 |
|
7107 |
-
#: languages/vue.php:
|
7108 |
msgid "Congrats"
|
7109 |
msgstr ""
|
7110 |
|
7111 |
-
#: languages/vue.php:
|
7112 |
msgid "Your website was quite popular this year! "
|
7113 |
msgstr ""
|
7114 |
|
7115 |
-
#: languages/vue.php:
|
7116 |
msgid "You had "
|
7117 |
msgstr ""
|
7118 |
|
7119 |
-
#: languages/vue.php:
|
7120 |
msgid " visitors!"
|
7121 |
msgstr ""
|
7122 |
|
7123 |
-
#: languages/vue.php:
|
7124 |
msgid " visitors"
|
7125 |
msgstr ""
|
7126 |
|
7127 |
-
#: languages/vue.php:
|
7128 |
msgid "Total Visitors"
|
7129 |
msgstr ""
|
7130 |
|
7131 |
-
#: languages/vue.php:
|
7132 |
msgid "Total Sessions"
|
7133 |
msgstr ""
|
7134 |
|
7135 |
-
#: languages/vue.php:
|
7136 |
msgid "Visitors by Month"
|
7137 |
msgstr ""
|
7138 |
|
7139 |
-
#: languages/vue.php:
|
7140 |
msgid "January 1, 2020 - December 31, 2020"
|
7141 |
msgstr ""
|
7142 |
|
7143 |
-
#: languages/vue.php:
|
7144 |
msgid "A Tip for 2021"
|
7145 |
msgstr ""
|
7146 |
|
7147 |
-
#: languages/vue.php:
|
7148 |
msgid "Demographics"
|
7149 |
msgstr ""
|
7150 |
|
7151 |
-
#: languages/vue.php:
|
7152 |
msgid "#1"
|
7153 |
msgstr ""
|
7154 |
|
7155 |
-
#: languages/vue.php:
|
7156 |
msgid "You Top 5 Countries"
|
7157 |
msgstr ""
|
7158 |
|
7159 |
-
#: languages/vue.php:
|
7160 |
msgid "Let’s get to know your visitors a little better, shall we?"
|
7161 |
msgstr ""
|
7162 |
|
7163 |
-
#: languages/vue.php:
|
7164 |
msgid "Gender"
|
7165 |
msgstr ""
|
7166 |
|
7167 |
-
#: languages/vue.php:
|
7168 |
msgid "Female"
|
7169 |
msgstr ""
|
7170 |
|
7171 |
-
#: languages/vue.php:
|
7172 |
msgid "Women"
|
7173 |
msgstr ""
|
7174 |
|
7175 |
-
#: languages/vue.php:
|
7176 |
msgid "Male"
|
7177 |
msgstr ""
|
7178 |
|
7179 |
-
#: languages/vue.php:
|
7180 |
msgid "Average Age"
|
7181 |
msgstr ""
|
7182 |
|
7183 |
-
#: languages/vue.php:
|
7184 |
msgid "Behavior"
|
7185 |
msgstr ""
|
7186 |
|
7187 |
-
#: languages/vue.php:
|
7188 |
msgid "Your Top 5 Pages"
|
7189 |
msgstr ""
|
7190 |
|
7191 |
-
#: languages/vue.php:
|
7192 |
msgid "Time Spent on Site"
|
7193 |
msgstr ""
|
7194 |
|
7195 |
-
#: languages/vue.php:
|
7196 |
msgid "minutes"
|
7197 |
msgstr ""
|
7198 |
|
7199 |
-
#: languages/vue.php:
|
7200 |
msgid "Device Type"
|
7201 |
msgstr ""
|
7202 |
|
7203 |
-
#: languages/vue.php:
|
7204 |
msgid "A Tip For 2021"
|
7205 |
msgstr ""
|
7206 |
|
7207 |
-
#: languages/vue.php:
|
7208 |
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."
|
7209 |
msgstr ""
|
7210 |
|
7211 |
-
#: languages/vue.php:
|
7212 |
msgid "Read - 32 Marketing Hacks to Grow Your Traffic"
|
7213 |
msgstr ""
|
7214 |
|
7215 |
-
#: languages/vue.php:
|
7216 |
msgid "So, where did all of these visitors come from?"
|
7217 |
msgstr ""
|
7218 |
|
7219 |
-
#: languages/vue.php:
|
7220 |
msgid "Clicks"
|
7221 |
msgstr ""
|
7222 |
|
7223 |
-
#: languages/vue.php:
|
7224 |
msgid "Your Top 5 Keywords"
|
7225 |
msgstr ""
|
7226 |
|
7227 |
-
#: languages/vue.php:
|
7228 |
msgid "What keywords visitors searched for to find your site"
|
7229 |
msgstr ""
|
7230 |
|
7231 |
-
#: languages/vue.php:
|
7232 |
msgid "Your Top 5 Referrals"
|
7233 |
msgstr ""
|
7234 |
|
7235 |
-
#: languages/vue.php:
|
7236 |
msgid "The websites that link back to your website"
|
7237 |
msgstr ""
|
7238 |
|
7239 |
-
#: languages/vue.php:
|
7240 |
msgid "Opportunity"
|
7241 |
msgstr ""
|
7242 |
|
7243 |
-
#: languages/vue.php:
|
7244 |
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."
|
7245 |
msgstr ""
|
7246 |
|
7247 |
-
#: languages/vue.php:
|
7248 |
msgid "Read - How to Ethically Steal Your Competitor’s Traffic"
|
7249 |
msgstr ""
|
7250 |
|
7251 |
-
#: languages/vue.php:
|
7252 |
msgid "Thank you for using MonsterInsights!"
|
7253 |
msgstr ""
|
7254 |
|
7255 |
-
#: languages/vue.php:
|
7256 |
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."
|
7257 |
msgstr ""
|
7258 |
|
7259 |
-
#: languages/vue.php:
|
7260 |
msgid "Here's to an amazing 2021!"
|
7261 |
msgstr ""
|
7262 |
|
7263 |
-
#: languages/vue.php:
|
7264 |
msgid "Enjoying MonsterInsights"
|
7265 |
msgstr ""
|
7266 |
|
7267 |
-
#: languages/vue.php:
|
7268 |
msgid "Leave a five star review!"
|
7269 |
msgstr ""
|
7270 |
|
7271 |
-
#: languages/vue.php:
|
7272 |
msgid "Syed Balkhi"
|
7273 |
msgstr ""
|
7274 |
|
7275 |
-
#: languages/vue.php:
|
7276 |
msgid "Chris Christoff"
|
7277 |
msgstr ""
|
7278 |
|
7279 |
-
#: languages/vue.php:
|
7280 |
msgid "Write Review"
|
7281 |
msgstr ""
|
7282 |
|
7283 |
-
#: languages/vue.php:
|
7284 |
msgid "Did you know over 10 million websites use our plugins?"
|
7285 |
msgstr ""
|
7286 |
|
7287 |
-
#: languages/vue.php:
|
7288 |
msgid "Try our other popular WordPress plugins to grow your website in 2021."
|
7289 |
msgstr ""
|
7290 |
|
7291 |
-
#: languages/vue.php:
|
7292 |
msgid "Join our Communities!"
|
7293 |
msgstr ""
|
7294 |
|
7295 |
-
#: languages/vue.php:
|
7296 |
msgid "Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level."
|
7297 |
msgstr ""
|
7298 |
|
7299 |
-
#: languages/vue.php:
|
7300 |
msgid "Facebook Group"
|
7301 |
msgstr ""
|
7302 |
|
7303 |
-
#: languages/vue.php:
|
7304 |
msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
|
7305 |
msgstr ""
|
7306 |
|
7307 |
-
#: languages/vue.php:
|
7308 |
msgid "Join Now...It’s Free!"
|
7309 |
msgstr ""
|
7310 |
|
7311 |
-
#: languages/vue.php:
|
7312 |
msgid "WordPress Tutorials by WPBeginner"
|
7313 |
msgstr ""
|
7314 |
|
7315 |
-
#: languages/vue.php:
|
7316 |
msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
|
7317 |
msgstr ""
|
7318 |
|
7319 |
-
#: languages/vue.php:
|
7320 |
msgid "Visit WPBeginner"
|
7321 |
msgstr ""
|
7322 |
|
7323 |
-
#: languages/vue.php:
|
7324 |
msgid "Follow Us!"
|
7325 |
msgstr ""
|
7326 |
|
7327 |
-
#: languages/vue.php:
|
7328 |
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."
|
7329 |
msgstr ""
|
7330 |
|
7331 |
-
#: languages/vue.php:
|
7332 |
msgid "Copyright MonsterInsights, 2021"
|
7333 |
msgstr ""
|
7334 |
|
7335 |
-
#: languages/vue.php:
|
7336 |
msgid "Upgrade to MonsterInsights Pro to Unlock Additional Actionable Insights"
|
7337 |
msgstr ""
|
7338 |
|
7339 |
-
#: languages/vue.php:
|
7340 |
msgid "January"
|
7341 |
msgstr ""
|
7342 |
|
7343 |
-
#: languages/vue.php:
|
7344 |
msgid "February"
|
7345 |
msgstr ""
|
7346 |
|
7347 |
-
#: languages/vue.php:
|
7348 |
msgid "March"
|
7349 |
msgstr ""
|
7350 |
|
7351 |
-
#: languages/vue.php:
|
7352 |
msgid "April"
|
7353 |
msgstr ""
|
7354 |
|
7355 |
-
#: languages/vue.php:
|
7356 |
msgid "May"
|
7357 |
msgstr ""
|
7358 |
|
7359 |
-
#: languages/vue.php:
|
7360 |
msgid "June"
|
7361 |
msgstr ""
|
7362 |
|
7363 |
-
#: languages/vue.php:
|
7364 |
msgid "July"
|
7365 |
msgstr ""
|
7366 |
|
7367 |
-
#: languages/vue.php:
|
7368 |
msgid "August"
|
7369 |
msgstr ""
|
7370 |
|
7371 |
-
#: languages/vue.php:
|
7372 |
msgid "September"
|
7373 |
msgstr ""
|
7374 |
|
7375 |
-
#: languages/vue.php:
|
7376 |
msgid "October"
|
7377 |
msgstr ""
|
7378 |
|
7379 |
-
#: languages/vue.php:
|
7380 |
msgid "November"
|
7381 |
msgstr ""
|
7382 |
|
7383 |
-
#: languages/vue.php:
|
7384 |
msgid "December"
|
7385 |
msgstr ""
|
7386 |
|
7387 |
#. Translators: Number of visitors.
|
7388 |
-
#: languages/vue.php:
|
7389 |
msgid "Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>"
|
7390 |
msgstr ""
|
7391 |
|
7392 |
-
#: languages/vue.php:
|
7393 |
msgid "See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success."
|
7394 |
msgstr ""
|
7395 |
|
7396 |
#. Translators: Number of visitors.
|
7397 |
-
#: languages/vue.php:
|
7398 |
msgid "Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries."
|
7399 |
msgstr ""
|
7400 |
|
7401 |
#. Translators: Number of visitors.
|
7402 |
-
#: languages/vue.php:
|
7403 |
msgid "%s Visitors"
|
7404 |
msgstr ""
|
7405 |
|
7406 |
#. Translators: Percent and Number of visitors.
|
7407 |
-
#: languages/vue.php:
|
7408 |
msgid "%1$s% of your visitors were %2$s"
|
7409 |
msgstr ""
|
7410 |
|
7411 |
#. Translators: Number of visitors and their age.
|
7412 |
-
#: languages/vue.php:
|
7413 |
msgid "%1$s% of your visitors were between the ages of %2$s"
|
7414 |
msgstr ""
|
7415 |
|
7416 |
-
#: languages/vue.php:
|
7417 |
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>"
|
7418 |
msgstr ""
|
7419 |
|
7420 |
#. Translators: Number of minutes spent on site.
|
7421 |
-
#: languages/vue.php:
|
7422 |
msgid "Each visitor spent an average of %s minutes on your website in 2020."
|
7423 |
msgstr ""
|
7424 |
|
7425 |
#. Translators: Name of device type.
|
7426 |
-
#: languages/vue.php:
|
7427 |
msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
|
7428 |
msgstr ""
|
7429 |
|
7430 |
#. Translators: Number of visitors and device percentage.
|
7431 |
-
#: languages/vue.php:
|
7432 |
msgid "%1$s% of your visitors were on a %2$s device."
|
7433 |
msgstr ""
|
7434 |
|
7435 |
-
#: languages/vue.php:
|
7436 |
msgid "Desktop"
|
7437 |
msgstr ""
|
7438 |
|
7439 |
-
#: languages/vue.php:
|
7440 |
msgid "Tablet"
|
7441 |
msgstr ""
|
7442 |
|
7443 |
-
#: languages/vue.php:
|
7444 |
msgid "Mobile"
|
7445 |
msgstr ""
|
7446 |
|
7447 |
-
#: languages/vue.php:
|
7448 |
msgid "Right Now"
|
7449 |
msgstr ""
|
7450 |
|
7451 |
-
#: languages/vue.php:
|
7452 |
msgid "Active users on site"
|
7453 |
msgstr ""
|
7454 |
|
7455 |
-
#: languages/vue.php:
|
7456 |
msgid "The real-time graph of visitors over time is not currently available for this site. Please try again later."
|
7457 |
msgstr ""
|
7458 |
|
7459 |
-
#: languages/vue.php:
|
7460 |
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."
|
7461 |
msgstr ""
|
7462 |
|
7463 |
-
#: languages/vue.php:
|
7464 |
msgid "The real-time report automatically updates approximately every 60 seconds."
|
7465 |
msgstr ""
|
7466 |
|
7467 |
#. Translators: Number of seconds that have passed since the report was refreshed.
|
7468 |
-
#: languages/vue.php:
|
7469 |
msgid "The real-time report was last updated %s seconds ago."
|
7470 |
msgstr ""
|
7471 |
|
7472 |
-
#: languages/vue.php:
|
7473 |
msgid "The latest data will be automatically shown on this page when it becomes available."
|
7474 |
msgstr ""
|
7475 |
|
7476 |
-
#: languages/vue.php:
|
7477 |
msgid "There is no need to refresh the browser (doing so won't have any effect)."
|
7478 |
msgstr ""
|
7479 |
|
7480 |
-
#: languages/vue.php:
|
7481 |
msgid "Pageviews Per Minute"
|
7482 |
msgstr ""
|
7483 |
|
7484 |
-
#: languages/vue.php:
|
7485 |
msgid "Top Pages"
|
7486 |
msgstr ""
|
7487 |
|
7488 |
-
#: languages/vue.php:
|
7489 |
msgid "No pageviews currently."
|
7490 |
msgstr ""
|
7491 |
|
7492 |
-
#: languages/vue.php:
|
7493 |
msgid "Page"
|
7494 |
msgstr ""
|
7495 |
|
7496 |
-
#: languages/vue.php:
|
7497 |
msgid "Pageview Count"
|
7498 |
msgstr ""
|
7499 |
|
7500 |
-
#: languages/vue.php:
|
7501 |
msgid "Percent of Total"
|
7502 |
msgstr ""
|
7503 |
|
7504 |
-
#: languages/vue.php:
|
7505 |
msgid "This is the number of active users currently on your site."
|
7506 |
msgstr ""
|
7507 |
|
7508 |
-
#: languages/vue.php:
|
7509 |
msgid "This graph shows the number of pageviews for each of the last 30 minutes."
|
7510 |
msgstr ""
|
7511 |
|
7512 |
-
#: languages/vue.php:
|
7513 |
msgid "This list shows the top pages users are currently viewing on your site."
|
7514 |
msgstr ""
|
7515 |
|
7516 |
-
#: languages/vue.php:
|
7517 |
msgid "View All Real-Time Pageviews"
|
7518 |
msgstr ""
|
7519 |
|
7520 |
-
#: languages/vue.php:
|
7521 |
msgid "View All Real-Time Traffic Sources"
|
7522 |
msgstr ""
|
7523 |
|
7524 |
-
#: languages/vue.php:
|
7525 |
msgid "View All Real-Time Traffic by Country"
|
7526 |
msgstr ""
|
7527 |
|
7528 |
-
#: languages/vue.php:
|
7529 |
msgid "View All Real-Time Traffic by City"
|
7530 |
msgstr ""
|
7531 |
|
7532 |
-
#: languages/vue.php:
|
7533 |
msgid "Show Overview Reports"
|
7534 |
msgstr ""
|
7535 |
|
7536 |
-
#: languages/vue.php:
|
7537 |
msgid "Show Publishers Reports"
|
7538 |
msgstr ""
|
7539 |
|
7540 |
-
#: languages/vue.php:
|
7541 |
msgid "Show eCommerce Reports"
|
7542 |
msgstr ""
|
7543 |
|
7544 |
-
#: languages/vue.php:
|
7545 |
msgid "Settings Menu"
|
7546 |
msgstr ""
|
7547 |
|
7548 |
-
#: languages/vue.php:
|
7549 |
msgid "Available in PRO version"
|
7550 |
msgstr ""
|
7551 |
|
7552 |
-
#: languages/vue.php:
|
7553 |
msgid "Thank you for being a loyal MonsterInsights Lite user."
|
7554 |
msgstr ""
|
7555 |
|
7556 |
-
#: languages/vue.php:
|
7557 |
msgid "Upgrade to MonsterInsights Pro and unlock all the awesome features."
|
7558 |
msgstr ""
|
7559 |
|
7560 |
#. Translators: Gets replaced with the coupon code.
|
7561 |
-
#: languages/vue.php:
|
7562 |
msgid "Use coupon code %s to get 50%% off."
|
7563 |
msgstr ""
|
7564 |
|
7565 |
-
#: languages/vue.php:
|
7566 |
msgid "Dashboard widget"
|
7567 |
msgstr ""
|
7568 |
|
7569 |
-
#: languages/vue.php:
|
7570 |
msgid "Affiliate Links"
|
7571 |
msgstr ""
|
7572 |
|
7573 |
-
#: languages/vue.php:
|
7574 |
msgid "Enhanced Ecommerce"
|
7575 |
msgstr ""
|
7576 |
|
7577 |
-
#: languages/vue.php:
|
7578 |
msgid "Banner Ads"
|
7579 |
msgstr ""
|
7580 |
|
7581 |
-
#: languages/vue.php:
|
7582 |
msgid "Google AMP"
|
7583 |
msgstr ""
|
7584 |
|
7585 |
-
#: languages/vue.php:
|
7586 |
msgid "SEO Score Tracking"
|
7587 |
msgstr ""
|
7588 |
|
7589 |
-
#: languages/vue.php:
|
7590 |
msgid "Activating..."
|
7591 |
msgstr ""
|
7592 |
|
7593 |
-
#: languages/vue.php:
|
7594 |
msgid "Deactivating..."
|
7595 |
msgstr ""
|
7596 |
|
7597 |
-
#: languages/vue.php:
|
7598 |
msgid "Deactivate"
|
7599 |
msgstr ""
|
7600 |
|
7601 |
#. Translators: The status of the addon (installed/active/inactive).
|
7602 |
-
#: languages/vue.php:
|
7603 |
msgid "Status: %s"
|
7604 |
msgstr ""
|
7605 |
|
7606 |
-
#: languages/vue.php:
|
7607 |
msgid "Not Installed"
|
7608 |
msgstr ""
|
7609 |
|
7610 |
-
#: languages/vue.php:
|
7611 |
msgid "Network Active"
|
7612 |
msgstr ""
|
7613 |
|
7614 |
-
#: languages/vue.php:
|
7615 |
msgid "Active"
|
7616 |
msgstr ""
|
7617 |
|
7618 |
-
#: languages/vue.php:
|
7619 |
msgid "Inactive"
|
7620 |
msgstr ""
|
7621 |
|
7622 |
#. Translators: Adds a link to the general settings tab.
|
7623 |
-
#: languages/vue.php:
|
7624 |
msgid "It looks like you added a Google Analytics tracking code in the custom code area, this can potentially prevent proper tracking. If you want to use a manual UA please use the setting in the %1$sGeneral%2$s tab."
|
7625 |
msgstr ""
|
7626 |
|
7627 |
-
#: languages/vue.php:
|
7628 |
msgid "Export PDF Reports"
|
7629 |
msgstr ""
|
7630 |
|
7631 |
-
#: languages/vue.php:
|
7632 |
msgid "Permissions"
|
7633 |
msgstr ""
|
7634 |
|
7635 |
-
#: languages/vue.php:
|
7636 |
msgid "Allow These User Roles to See Reports"
|
7637 |
msgstr ""
|
7638 |
|
7639 |
-
#: languages/vue.php:
|
7640 |
msgid "Users that have at least one of these roles will be able to view the reports."
|
7641 |
msgstr ""
|
7642 |
|
7643 |
-
#: languages/vue.php:
|
7644 |
msgid "Users that have at least one of these roles will be able to view the reports, along with any user with the manage_options capability."
|
7645 |
msgstr ""
|
7646 |
|
7647 |
-
#: languages/vue.php:
|
7648 |
msgid "Allow These User Roles to Save Settings"
|
7649 |
msgstr ""
|
7650 |
|
7651 |
-
#: languages/vue.php:
|
7652 |
msgid "Users that have at least one of these roles will be able to view and save the settings panel."
|
7653 |
msgstr ""
|
7654 |
|
7655 |
-
#: languages/vue.php:
|
7656 |
msgid "Users that have at least one of these roles will be able to view and save the settings panel, along with any user with the manage_options capability."
|
7657 |
msgstr ""
|
7658 |
|
7659 |
-
#: languages/vue.php:
|
7660 |
msgid "Exclude These User Roles From Tracking"
|
7661 |
msgstr ""
|
7662 |
|
7663 |
-
#: languages/vue.php:
|
7664 |
msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
|
7665 |
msgstr ""
|
7666 |
|
7667 |
-
#: languages/vue.php:
|
7668 |
msgid "Performance"
|
7669 |
msgstr ""
|
7670 |
|
7671 |
-
#: languages/vue.php:
|
7672 |
msgid "Custom code"
|
7673 |
msgstr ""
|
7674 |
|
7675 |
#. Translators: Adds a link to the Google reference.
|
7676 |
-
#: languages/vue.php:
|
7677 |
msgid "Not for the average user: this allows you to add a line of code, to be added before the %1$spageview is sent%2$s."
|
7678 |
msgstr ""
|
7679 |
|
7680 |
-
#: languages/vue.php:
|
7681 |
msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
|
7682 |
msgstr ""
|
7683 |
|
7684 |
-
#: languages/vue.php:
|
7685 |
msgid "Hide Admin Bar Reports"
|
7686 |
msgstr ""
|
7687 |
|
7688 |
#. Translators: placeholders make text small.
|
7689 |
-
#: languages/vue.php:
|
7690 |
msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
|
7691 |
msgstr ""
|
7692 |
|
7693 |
#. Translators: placeholders make text small.
|
7694 |
-
#: languages/vue.php:
|
7695 |
msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
|
7696 |
msgstr ""
|
7697 |
|
7698 |
#. Translators: placeholders make text small.
|
7699 |
-
#: languages/vue.php:
|
7700 |
msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
|
7701 |
msgstr ""
|
7702 |
|
7703 |
-
#: languages/vue.php:
|
7704 |
msgid "View notifications"
|
7705 |
msgstr ""
|
7706 |
|
7707 |
#. Translators: Error status and error text.
|
7708 |
-
#: languages/vue.php:
|
7709 |
msgid "Can't load settings. Error: %1$s, %2$s"
|
7710 |
msgstr ""
|
7711 |
|
7712 |
-
#: languages/vue.php:
|
7713 |
msgid "You appear to be offline."
|
7714 |
msgstr ""
|
7715 |
|
7716 |
#. Translators: Error status and error text.
|
7717 |
-
#: languages/vue.php:
|
7718 |
msgid "Can't save settings. Error: %1$s, %2$s"
|
7719 |
msgstr ""
|
7720 |
|
7721 |
-
#: languages/vue.php:
|
7722 |
msgid "Network error encountered. Settings not saved."
|
7723 |
msgstr ""
|
7724 |
|
7725 |
#. Translators: Error status and error text.
|
7726 |
-
#: languages/vue.php:
|
7727 |
msgid "Can't deactivate the license. Error: %1$s, %2$s"
|
7728 |
msgstr ""
|
7729 |
|
7730 |
#. Translators: Error status and error text.
|
7731 |
-
#: languages/vue.php:
|
7732 |
msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
|
7733 |
msgstr ""
|
7734 |
|
7735 |
#. Translators: Error status and error text.
|
7736 |
-
#: languages/vue.php:
|
7737 |
msgid "Can't load license details. Error: %1$s, %2$s"
|
7738 |
msgstr ""
|
7739 |
|
7740 |
-
#: languages/vue.php:
|
7741 |
msgid "Error loading license details"
|
7742 |
msgstr ""
|
7743 |
|
7744 |
#. Translators: Error status and error text.
|
7745 |
-
#: languages/vue.php:
|
7746 |
msgid "Can't verify the license. Error: %1$s, %2$s"
|
7747 |
msgstr ""
|
7748 |
|
7749 |
#. Translators: Error status and error text.
|
7750 |
-
#: languages/vue.php:
|
7751 |
msgid "Can't validate the license. Error: %1$s, %2$s"
|
7752 |
msgstr ""
|
7753 |
|
7754 |
#. Translators: Error status and error text.
|
7755 |
-
#: languages/vue.php:
|
7756 |
msgid "Can't deauthenticate. Error: %1$s, %2$s"
|
7757 |
msgstr ""
|
7758 |
|
7759 |
#. Translators: Error status and error text.
|
7760 |
-
#: languages/vue.php:
|
7761 |
msgid "Can't load authentication details. Error: %1$s, %2$s"
|
7762 |
msgstr ""
|
7763 |
|
7764 |
-
#: languages/vue.php:
|
7765 |
msgid "You appear to be offline. Settings not saved."
|
7766 |
msgstr ""
|
7767 |
|
7768 |
#. Translators: Error status and error text.
|
7769 |
-
#: languages/vue.php:
|
7770 |
msgid "Can't authenticate. Error: %1$s, %2$s"
|
7771 |
msgstr ""
|
7772 |
|
7773 |
#. Translators: Error status and error text.
|
7774 |
-
#: languages/vue.php:
|
7775 |
msgid "Can't reauthenticate. Error: %1$s, %2$s"
|
7776 |
msgstr ""
|
7777 |
|
7778 |
#. Translators: Error status and error text.
|
7779 |
-
#: languages/vue.php:
|
7780 |
msgid "Can't verify credentials. Error: %1$s, %2$s"
|
7781 |
msgstr ""
|
7782 |
|
7783 |
-
#: languages/vue.php:
|
7784 |
msgid "Proceed"
|
7785 |
msgstr ""
|
7786 |
|
7787 |
-
#: languages/vue.php:
|
7788 |
msgid "Connection Information"
|
7789 |
msgstr ""
|
7790 |
|
7791 |
-
#: languages/vue.php:
|
7792 |
msgid "To perform the requested action, WordPress needs to access your web server. Please enter your FTP credentials to proceed. If you do not remember your credentials, you should contact your web host."
|
7793 |
msgstr ""
|
7794 |
|
7795 |
-
#: languages/vue.php:
|
7796 |
msgid "Hostname"
|
7797 |
msgstr ""
|
7798 |
|
7799 |
-
#: languages/vue.php:
|
7800 |
msgid "FTP Username"
|
7801 |
msgstr ""
|
7802 |
|
7803 |
-
#: languages/vue.php:
|
7804 |
msgid "FTP Password"
|
7805 |
msgstr ""
|
7806 |
|
7807 |
-
#: languages/vue.php:
|
7808 |
msgid "This password will not be stored on the server."
|
7809 |
msgstr ""
|
7810 |
|
7811 |
-
#: languages/vue.php:
|
7812 |
msgid "Connection Type"
|
7813 |
msgstr ""
|
7814 |
|
7815 |
-
#: languages/vue.php:
|
7816 |
msgid "Cancel"
|
7817 |
msgstr ""
|
7818 |
|
7819 |
-
#: languages/vue.php:
|
7820 |
msgid "You appear to be offline. WPForms not installed."
|
7821 |
msgstr ""
|
7822 |
|
7823 |
#. Translators: Error status and error text.
|
7824 |
-
#: languages/vue.php:
|
7825 |
msgid "Can't activate addon. Error: %1$s, %2$s"
|
7826 |
msgstr ""
|
7827 |
|
7828 |
-
#: languages/vue.php:
|
7829 |
msgid "You appear to be offline. Addon not activated."
|
7830 |
msgstr ""
|
7831 |
|
7832 |
#. Translators: Error status and error text.
|
7833 |
-
#: languages/vue.php:
|
7834 |
msgid "Can't deactivate addon. Error: %1$s, %2$s"
|
7835 |
msgstr ""
|
7836 |
|
7837 |
-
#: languages/vue.php:
|
7838 |
msgid "You appear to be offline. Addon not deactivated."
|
7839 |
msgstr ""
|
7840 |
|
7841 |
#. Translators: Error status and error text.
|
7842 |
-
#: languages/vue.php:
|
7843 |
msgid "Can't install plugin. Error: %1$s, %2$s"
|
7844 |
msgstr ""
|
7845 |
|
7846 |
-
#: languages/vue.php:
|
7847 |
msgid "You appear to be offline. Plugin not installed."
|
7848 |
msgstr ""
|
7849 |
|
7850 |
#. Translators: Error status and error text.
|
7851 |
-
#: languages/vue.php:
|
7852 |
msgid "Can't install addon. Error: %1$s, %2$s"
|
7853 |
msgstr ""
|
7854 |
|
7855 |
-
#: languages/vue.php:
|
7856 |
msgid "You appear to be offline. Addon not installed."
|
7857 |
msgstr ""
|
7858 |
|
7859 |
#. Translators: Error status and error text.
|
7860 |
-
#: languages/vue.php:
|
7861 |
msgid "Can't install WPForms. Error: %1$s, %2$s"
|
7862 |
msgstr ""
|
7863 |
|
7864 |
#. Translators: Example path (/go/).
|
7865 |
-
#: languages/vue.php:
|
7866 |
msgid "Path (example: %s)"
|
7867 |
msgstr ""
|
7868 |
|
7869 |
-
#: languages/vue.php:
|
7870 |
msgid "Path has to start with a / and have no spaces"
|
7871 |
msgstr ""
|
7872 |
|
7873 |
#. Translators: Example label (aff).
|
7874 |
-
#: languages/vue.php:
|
7875 |
msgid "Label (example: %s)"
|
7876 |
msgstr ""
|
7877 |
|
7878 |
-
#: languages/vue.php:
|
7879 |
msgid "Label can't contain any spaces"
|
7880 |
msgstr ""
|
7881 |
|
7882 |
#. Translators: Add links to documentation.
|
7883 |
-
#: languages/vue.php:
|
7884 |
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."
|
7885 |
msgstr ""
|
7886 |
|
7887 |
-
#: languages/vue.php:
|
7888 |
msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
|
7889 |
msgstr ""
|
7890 |
|
7891 |
-
#: languages/vue.php:
|
7892 |
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."
|
7893 |
msgstr ""
|
7894 |
|
7895 |
-
#: languages/vue.php:
|
7896 |
msgid "Disable the Headline Analyzer"
|
7897 |
msgstr ""
|
7898 |
|
7899 |
-
#: languages/vue.php:
|
7900 |
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."
|
7901 |
msgstr ""
|
7902 |
|
7903 |
-
#: languages/vue.php:
|
7904 |
msgid "Or manually enter UA code (limited functionality)"
|
7905 |
msgstr ""
|
7906 |
|
7907 |
-
#: languages/vue.php:
|
7908 |
msgid "Dual Tracking Profile"
|
7909 |
msgstr ""
|
7910 |
|
7911 |
-
#: languages/vue.php:
|
7912 |
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."
|
7913 |
msgstr ""
|
7914 |
|
7915 |
-
#: languages/vue.php:
|
7916 |
msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers."
|
7917 |
msgstr ""
|
7918 |
|
7919 |
-
#: languages/vue.php:
|
7920 |
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."
|
7921 |
msgstr ""
|
7922 |
|
7923 |
-
#: languages/vue.php:
|
7924 |
msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
|
7925 |
msgstr ""
|
7926 |
|
7927 |
-
#: languages/vue.php:
|
7928 |
msgid "Measurement Protocol API Secret"
|
7929 |
msgstr ""
|
7930 |
|
7931 |
-
#: languages/vue.php:
|
7932 |
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."
|
7933 |
msgstr ""
|
7934 |
|
7935 |
-
#: languages/vue.php:
|
7936 |
msgid "Force Deauthenticate"
|
7937 |
msgstr ""
|
7938 |
|
7939 |
-
#: languages/vue.php:
|
7940 |
msgid "Disconnect MonsterInsights"
|
7941 |
msgstr ""
|
7942 |
|
7943 |
-
#: languages/vue.php:
|
7944 |
msgid "Authenticating"
|
7945 |
msgstr ""
|
7946 |
|
7947 |
-
#: languages/vue.php:
|
7948 |
msgid "Verifying Credentials"
|
7949 |
msgstr ""
|
7950 |
|
7951 |
-
#: languages/vue.php:
|
7952 |
msgid "Your site is connected to MonsterInsights!"
|
7953 |
msgstr ""
|
7954 |
|
7955 |
-
#: languages/vue.php:
|
7956 |
msgid "Deauthenticating"
|
7957 |
msgstr ""
|
7958 |
|
7959 |
-
#: languages/vue.php:
|
7960 |
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."
|
7961 |
msgstr ""
|
7962 |
|
7963 |
-
#: languages/vue.php:
|
7964 |
msgid "Connect MonsterInsights"
|
7965 |
msgstr ""
|
7966 |
|
7967 |
-
#: languages/vue.php:
|
7968 |
msgid "Verify Credentials"
|
7969 |
msgstr ""
|
7970 |
|
7971 |
-
#: languages/vue.php:
|
7972 |
msgid "Website Profile"
|
7973 |
msgstr ""
|
7974 |
|
7975 |
-
#: languages/vue.php:
|
7976 |
msgid "Active Profile"
|
7977 |
msgstr ""
|
7978 |
|
7979 |
-
#: languages/vue.php:
|
7980 |
msgid "Your website profile has been set at the network level of your WordPress Multisite."
|
7981 |
msgstr ""
|
7982 |
|
7983 |
-
#: languages/vue.php:
|
7984 |
msgid "If you would like to use a different profile for this subsite, you can authenticate below."
|
7985 |
msgstr ""
|
7986 |
|
7987 |
-
#: languages/vue.php:
|
7988 |
msgid "Manually enter your UA code"
|
7989 |
msgstr ""
|
7990 |
|
7991 |
-
#: languages/vue.php:
|
7992 |
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."
|
7993 |
msgstr ""
|
7994 |
|
7995 |
-
#: languages/vue.php:
|
7996 |
msgid "Manually enter your GA4 Measurement ID"
|
7997 |
msgstr ""
|
7998 |
|
7999 |
-
#: languages/vue.php:
|
8000 |
msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
|
8001 |
msgstr ""
|
8002 |
|
8003 |
-
#: languages/vue.php:
|
8004 |
msgid "Anonymize IP Addresses"
|
8005 |
msgstr ""
|
8006 |
|
8007 |
-
#: languages/vue.php:
|
8008 |
msgid "Link Attribution"
|
8009 |
msgstr ""
|
8010 |
|
8011 |
-
#: languages/vue.php:
|
8012 |
msgid "Enable Enhanced Link Attribution"
|
8013 |
msgstr ""
|
8014 |
|
8015 |
-
#: languages/vue.php:
|
8016 |
msgid "Enable Anchor Tracking"
|
8017 |
msgstr ""
|
8018 |
|
8019 |
-
#: languages/vue.php:
|
8020 |
msgid "Enable allowAnchor"
|
8021 |
msgstr ""
|
8022 |
|
8023 |
-
#: languages/vue.php:
|
8024 |
msgid "Enable allowLinker"
|
8025 |
msgstr ""
|
8026 |
|
8027 |
-
#: languages/vue.php:
|
8028 |
msgid "Enable Tag Links in RSS"
|
8029 |
msgstr ""
|
8030 |
|
8031 |
-
#: languages/vue.php:
|
8032 |
msgid "File Downloads"
|
8033 |
msgstr ""
|
8034 |
|
8035 |
-
#: languages/vue.php:
|
8036 |
msgid "Extensions of Files to Track as Downloads"
|
8037 |
msgstr ""
|
8038 |
|
8039 |
-
#: languages/vue.php:
|
8040 |
msgid "MonsterInsights will send an event to Google Analytics if a link to a file has one of the above extensions."
|
8041 |
msgstr ""
|
8042 |
|
8043 |
#. Translators: Add links to the documentation.
|
8044 |
-
#: languages/vue.php:
|
8045 |
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."
|
8046 |
msgstr ""
|
8047 |
|
8048 |
#. Translators: Adds a link to the documentation.
|
8049 |
-
#: languages/vue.php:
|
8050 |
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."
|
8051 |
msgstr ""
|
8052 |
|
8053 |
#. Translators: Adds a link to the documentation.
|
8054 |
-
#: languages/vue.php:
|
8055 |
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."
|
8056 |
msgstr ""
|
8057 |
|
8058 |
-
#: languages/vue.php:
|
8059 |
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."
|
8060 |
msgstr ""
|
8061 |
|
8062 |
#. Translators: Adds a link to the documentation.
|
8063 |
-
#: languages/vue.php:
|
8064 |
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."
|
8065 |
msgstr ""
|
8066 |
|
8067 |
#. Translators: Adds a link to the documentation.
|
8068 |
-
#: languages/vue.php:
|
8069 |
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."
|
8070 |
msgstr ""
|
8071 |
|
8072 |
#. Translators: Adds a link to the documentation.
|
8073 |
-
#: languages/vue.php:
|
8074 |
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."
|
8075 |
msgstr ""
|
8076 |
|
8077 |
-
#: languages/vue.php:
|
8078 |
msgid "Add domain"
|
8079 |
msgstr ""
|
8080 |
|
8081 |
#. Translators: Example domain.
|
8082 |
-
#: languages/vue.php:
|
8083 |
msgid "Domain (example: %s)"
|
8084 |
msgstr ""
|
8085 |
|
8086 |
#. Translators: Current site domain to be avoided.
|
8087 |
-
#: languages/vue.php:
|
8088 |
msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
|
8089 |
msgstr ""
|
8090 |
|
8091 |
-
#: languages/vue.php:
|
8092 |
msgid "Cross Domain Tracking"
|
8093 |
msgstr ""
|
8094 |
|
8095 |
#. Translators: Adds a link to the documentation.
|
8096 |
-
#: languages/vue.php:
|
8097 |
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."
|
8098 |
msgstr ""
|
8099 |
|
8100 |
#. Translators: Number of days.
|
8101 |
-
#: languages/vue.php:
|
8102 |
msgid "vs. Previous Day"
|
8103 |
msgstr ""
|
8104 |
|
8105 |
-
#: languages/vue.php:
|
8106 |
msgid "No change"
|
8107 |
msgstr ""
|
8108 |
|
8109 |
-
#: languages/vue.php:
|
8110 |
msgid "Forms Tracking help you see who’s viewing your forms, so you can increase conversions."
|
8111 |
msgstr ""
|
8112 |
|
8113 |
-
#: languages/vue.php:
|
8114 |
msgid "Custom Dimensions show you popular categories, best time to publish, focus keywords, etc."
|
8115 |
msgstr ""
|
8116 |
|
8117 |
-
#: languages/vue.php:
|
8118 |
msgid "Make Google Analytics GDPR compliant with our EU Compliance addon."
|
8119 |
msgstr ""
|
8120 |
|
8121 |
-
#: languages/vue.php:
|
8122 |
msgid "Get real-time Google Analytics report right inside your WordPress dashboard."
|
8123 |
msgstr ""
|
8124 |
|
8125 |
-
#: languages/vue.php:
|
8126 |
msgid "Use Google Optimize to easily perform A/B split tests on your site."
|
8127 |
msgstr ""
|
8128 |
|
8129 |
-
#: languages/vue.php:
|
8130 |
msgid "See all your important store metrics in one place with Enhanced Ecommerce Tracking."
|
8131 |
msgstr ""
|
8132 |
|
8133 |
-
#: languages/vue.php:
|
8134 |
msgid "Unlock search console report to see your top performing keywords in Google."
|
8135 |
msgstr ""
|
8136 |
|
8137 |
-
#: languages/vue.php:
|
8138 |
msgid "Get Page Insights to see important metrics for individual posts / pages in WordPress."
|
8139 |
msgstr ""
|
8140 |
|
8141 |
-
#: languages/vue.php:
|
8142 |
msgid "Publishers Report shows your top performing pages, audience demographics, and more."
|
8143 |
msgstr ""
|
8144 |
|
8145 |
-
#: languages/vue.php:
|
8146 |
msgid "Get Scroll-Depth tracking to see how far users scroll on your pages before leaving."
|
8147 |
msgstr ""
|
8148 |
|
8149 |
-
#: languages/vue.php:
|
8150 |
msgid "Upgrade to Pro »"
|
8151 |
msgstr ""
|
8152 |
|
8153 |
-
#: languages/vue.php:
|
8154 |
msgid "Pro Tip:"
|
8155 |
msgstr ""
|
8156 |
|
8157 |
-
#: languages/vue.php:
|
8158 |
msgid "Show"
|
8159 |
msgstr ""
|
8160 |
|
8161 |
-
#: languages/vue.php:
|
8162 |
msgid "Hide dashboard widget"
|
8163 |
msgstr ""
|
8164 |
|
8165 |
-
#: languages/vue.php:
|
8166 |
msgid "Are you sure you want to hide the MonsterInsights Dashboard Widget? "
|
8167 |
msgstr ""
|
8168 |
|
8169 |
-
#: languages/vue.php:
|
8170 |
msgid "Yes, hide it!"
|
8171 |
msgstr ""
|
8172 |
|
8173 |
-
#: languages/vue.php:
|
8174 |
msgid "No, cancel!"
|
8175 |
msgstr ""
|
8176 |
|
8177 |
-
#: languages/vue.php:
|
8178 |
msgid "MonsterInsights Widget Hidden"
|
8179 |
msgstr ""
|
8180 |
|
8181 |
-
#: languages/vue.php:
|
8182 |
msgid "You can re-enable the MonsterInsights widget at any time using the \"Screen Options\" menu on the top right of this page"
|
8183 |
msgstr ""
|
8184 |
|
8185 |
-
#: languages/vue.php:
|
8186 |
msgid "Usage Tracking"
|
8187 |
msgstr ""
|
8188 |
|
8189 |
-
#: languages/vue.php:
|
8190 |
msgid "Allow Usage Tracking"
|
8191 |
msgstr ""
|
8192 |
|
8193 |
-
#: languages/vue.php:
|
8194 |
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."
|
8195 |
msgstr ""
|
8196 |
|
8197 |
#. Translators: Add links to documentation.
|
8198 |
-
#: languages/vue.php:
|
8199 |
msgid "Complete documentation on usage tracking is available %1$shere%2$s."
|
8200 |
msgstr ""
|
8201 |
|
8202 |
#. Translators: Make text green and add smiley face.
|
8203 |
-
#: languages/vue.php:
|
8204 |
msgid "You're using %1$sMonsterInsights Lite%2$s - no license needed. Enjoy! %3$s"
|
8205 |
msgstr ""
|
8206 |
|
8207 |
#. Translators: Add link to upgrade.
|
8208 |
-
#: languages/vue.php:
|
8209 |
msgid "To unlock more features consider %1$supgrading to PRO%2$s."
|
8210 |
msgstr ""
|
8211 |
|
8212 |
#. Translators: Make text green.
|
8213 |
-
#: languages/vue.php:
|
8214 |
msgid "As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
|
8215 |
msgstr ""
|
8216 |
|
8217 |
-
#: languages/vue.php:
|
8218 |
msgid "Unlock PRO Features Now"
|
8219 |
msgstr ""
|
8220 |
|
8221 |
-
#: languages/vue.php:
|
8222 |
msgid "Paste your license key here"
|
8223 |
msgstr ""
|
8224 |
|
8225 |
-
#: languages/vue.php:
|
8226 |
msgid "Verify"
|
8227 |
msgstr ""
|
8228 |
|
8229 |
#. Translators: Add link to retrieve license from account area.
|
8230 |
-
#: languages/vue.php:
|
8231 |
msgid "Already purchased? Simply enter your license key below to connect with MonsterInsights PRO! %1$sRetrieve your license key%2$s."
|
8232 |
msgstr ""
|
8233 |
|
8234 |
-
#: languages/vue.php:
|
8235 |
msgid "There was an error unlocking MonsterInsights PRO please try again or install manually."
|
8236 |
msgstr ""
|
8237 |
|
8238 |
#. Translators: Error status and error text.
|
8239 |
-
#: languages/vue.php:
|
8240 |
msgid "Can't load errors. Error: %1$s, %2$s"
|
8241 |
msgstr ""
|
8242 |
|
8243 |
-
#: languages/vue.php:
|
8244 |
msgid "No options available"
|
8245 |
msgstr ""
|
8246 |
|
8247 |
-
#: languages/vue.php:
|
8248 |
msgid "%1$sAll-in-One SEO%2$s Makes SEO Simple. Gain Valuable Organic Traffic."
|
8249 |
msgstr ""
|
8250 |
|
8251 |
-
#: languages/vue.php:
|
8252 |
msgid "Automatically migrate all of your SEO settings with just 1 click!"
|
8253 |
msgstr ""
|
8254 |
|
8255 |
-
#: languages/vue.php:
|
8256 |
msgid "1,938"
|
8257 |
msgstr ""
|
8258 |
|
8259 |
-
#: languages/vue.php:
|
8260 |
msgid "2+ Million Active Installs"
|
8261 |
msgstr ""
|
8262 |
|
8263 |
-
#: languages/vue.php:
|
8264 |
msgid "AIOSEO is the DIY Solution for Managing your SEO"
|
8265 |
msgstr ""
|
8266 |
|
8267 |
-
#: languages/vue.php:
|
8268 |
msgid "Set up the proper SEO foundations in less than 10 minutes."
|
8269 |
msgstr ""
|
8270 |
|
8271 |
-
#: languages/vue.php:
|
8272 |
msgid "SEO Audit Checklist"
|
8273 |
msgstr ""
|
8274 |
|
8275 |
-
#: languages/vue.php:
|
8276 |
msgid "Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic."
|
8277 |
msgstr ""
|
8278 |
|
8279 |
-
#: languages/vue.php:
|
8280 |
msgid "Optimize Your Pages For Higher Rankings With TruSEO Score."
|
8281 |
msgstr ""
|
8282 |
|
8283 |
-
#: languages/vue.php:
|
8284 |
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."
|
8285 |
msgstr ""
|
8286 |
|
8287 |
-
#: languages/vue.php:
|
8288 |
msgid "Get AIOSEO for WordPress"
|
8289 |
msgstr ""
|
8290 |
|
8291 |
-
#: languages/vue.php:
|
8292 |
msgid "Get the #1 Most Powerful WordPress SEO Plugin Today"
|
8293 |
msgstr ""
|
8294 |
|
8295 |
-
#: languages/vue.php:
|
8296 |
msgid "Try it out today, for free."
|
8297 |
msgstr ""
|
8298 |
|
8299 |
-
#: languages/vue.php:
|
8300 |
msgid "Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings."
|
8301 |
msgstr ""
|
8302 |
|
8303 |
-
#: languages/vue.php:
|
8304 |
msgid "Activate and Install the Plugin with just one click!"
|
8305 |
msgstr ""
|
8306 |
|
8307 |
-
#: languages/vue.php:
|
8308 |
msgid "Installing AIOSEO..."
|
8309 |
msgstr ""
|
8310 |
|
8311 |
-
#: languages/vue.php:
|
8312 |
msgid "Congrats! All-in-One SEO Installed."
|
8313 |
msgstr ""
|
8314 |
|
8315 |
-
#: languages/vue.php:
|
8316 |
msgid "Switch to AIOSEO"
|
8317 |
msgstr ""
|
8318 |
|
8319 |
-
#: languages/vue.php:
|
8320 |
msgid "Installation Failed. Please refresh and try again."
|
8321 |
msgstr ""
|
8322 |
|
8323 |
-
#: languages/vue.php:
|
8324 |
msgid "Activating AIOSEO..."
|
8325 |
msgstr ""
|
8326 |
|
8327 |
-
#: languages/vue.php:
|
8328 |
msgid "Activate AIOSEO"
|
8329 |
msgstr ""
|
8330 |
|
8331 |
-
#: languages/vue.php:
|
8332 |
msgid "Activation Failed. Please refresh and try again."
|
8333 |
msgstr ""
|
8334 |
|
8335 |
#. Translators: The name of the field that is throwing a validation error.
|
8336 |
-
#: languages/vue.php:
|
8337 |
msgid "%s can't be empty."
|
8338 |
msgstr ""
|
8339 |
|
8340 |
-
#: languages/vue.php:
|
8341 |
msgid "Duplicate values are not allowed."
|
8342 |
msgstr ""
|
8343 |
|
8344 |
-
#: languages/vue.php:
|
8345 |
msgid "You can add maximum 5 items."
|
8346 |
msgstr ""
|
8347 |
|
8348 |
-
#: languages/vue.php:
|
8349 |
msgid "At least 0 item required."
|
8350 |
msgstr ""
|
8351 |
|
8352 |
-
#: languages/vue.php:
|
8353 |
msgid "Add Another Link Path"
|
8354 |
msgstr ""
|
8355 |
|
8356 |
-
#: languages/vue.php:
|
8357 |
msgid "Remove row"
|
8358 |
msgstr ""
|
8359 |
|
8360 |
-
#: languages/vue.php:
|
8361 |
msgid "New"
|
8362 |
msgstr ""
|
8363 |
|
8364 |
-
#: languages/vue.php:
|
8365 |
msgid "Returning"
|
8366 |
msgstr ""
|
8367 |
|
8368 |
-
#: languages/vue.php:
|
8369 |
msgid "Top 10 Countries"
|
8370 |
msgstr ""
|
8371 |
|
8372 |
-
#: languages/vue.php:
|
8373 |
msgid "View Countries Report"
|
8374 |
msgstr ""
|
8375 |
|
8376 |
-
#: languages/vue.php:
|
8377 |
msgid "Top 10 Referrals"
|
8378 |
msgstr ""
|
8379 |
|
8380 |
-
#: languages/vue.php:
|
8381 |
msgid "View All Referral Sources"
|
8382 |
msgstr ""
|
8383 |
|
8384 |
-
#: languages/vue.php:
|
8385 |
msgid "View Full Posts/Pages Report"
|
8386 |
msgstr ""
|
8387 |
|
8388 |
-
#: languages/vue.php:
|
8389 |
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."
|
8390 |
msgstr ""
|
8391 |
|
8392 |
-
#: languages/vue.php:
|
8393 |
msgid "This list shows the top countries your website visitors are from."
|
8394 |
msgstr ""
|
8395 |
|
8396 |
-
#: languages/vue.php:
|
8397 |
msgid "This list shows the top websites that send your website traffic, known as referral traffic."
|
8398 |
msgstr ""
|
8399 |
|
8400 |
-
#: languages/vue.php:
|
8401 |
msgid "Export PDF Overview Report"
|
8402 |
msgstr ""
|
8403 |
|
@@ -8702,1251 +8702,1255 @@ msgstr ""
|
|
8702 |
msgid "Error emptying the popular posts cache. Please try again."
|
8703 |
msgstr ""
|
8704 |
|
8705 |
-
#: languages/vue.php:
|
8706 |
msgid "Choose Theme"
|
8707 |
msgstr ""
|
8708 |
|
8709 |
-
#: languages/vue.php:
|
8710 |
msgid "Widget Styling"
|
8711 |
msgstr ""
|
8712 |
|
8713 |
-
#: languages/vue.php:
|
8714 |
msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
|
8715 |
msgstr ""
|
8716 |
|
8717 |
-
#: languages/vue.php:
|
8718 |
msgid "Sort By"
|
8719 |
msgstr ""
|
8720 |
|
8721 |
-
#: languages/vue.php:
|
8722 |
msgid "Choose how you'd like the widget to determine your popular posts."
|
8723 |
msgstr ""
|
8724 |
|
8725 |
-
#: languages/vue.php:
|
8726 |
msgid "Display Title"
|
8727 |
msgstr ""
|
8728 |
|
8729 |
-
#: languages/vue.php:
|
8730 |
msgid "Title your widget and set its display preferences."
|
8731 |
msgstr ""
|
8732 |
|
8733 |
-
#: languages/vue.php:
|
8734 |
msgid "Include in Post Types"
|
8735 |
msgstr ""
|
8736 |
|
8737 |
-
#: languages/vue.php:
|
8738 |
msgid "Exclude from specific posts"
|
8739 |
msgstr ""
|
8740 |
|
8741 |
#. Translators: Placeholders make the text bold.
|
8742 |
-
#: languages/vue.php:
|
8743 |
msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
|
8744 |
msgstr ""
|
8745 |
|
8746 |
#. Translators: Placeholders make the text bold.
|
8747 |
-
#: languages/vue.php:
|
8748 |
msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
|
8749 |
msgstr ""
|
8750 |
|
8751 |
-
#: languages/vue.php:
|
8752 |
msgid "Loading Themes"
|
8753 |
msgstr ""
|
8754 |
|
8755 |
#. Translators: placeholders make text small.
|
8756 |
-
#: languages/vue.php:
|
8757 |
msgid "Default Styles %1$s- As seen above.%2$s"
|
8758 |
msgstr ""
|
8759 |
|
8760 |
#. Translators: placeholders make text small.
|
8761 |
-
#: languages/vue.php:
|
8762 |
msgid "No Styles %1$s- Use your own CSS.%2$s"
|
8763 |
msgstr ""
|
8764 |
|
8765 |
#. Translators: placeholders make text small.
|
8766 |
-
#: languages/vue.php:
|
8767 |
msgid "Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s"
|
8768 |
msgstr ""
|
8769 |
|
8770 |
#. Translators: placeholders make text small.
|
8771 |
-
#: languages/vue.php:
|
8772 |
msgid "SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s"
|
8773 |
msgstr ""
|
8774 |
|
8775 |
#. Translators: placeholders make text small.
|
8776 |
-
#: languages/vue.php:
|
8777 |
msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
|
8778 |
msgstr ""
|
8779 |
|
8780 |
-
#: languages/vue.php:
|
8781 |
msgid "Placement"
|
8782 |
msgstr ""
|
8783 |
|
8784 |
-
#: languages/vue.php:
|
8785 |
msgid "Choose how you'd like to place the widget."
|
8786 |
msgstr ""
|
8787 |
|
8788 |
-
#: languages/vue.php:
|
8789 |
msgid "Insert After"
|
8790 |
msgstr ""
|
8791 |
|
8792 |
-
#: languages/vue.php:
|
8793 |
msgid "Choose where in the post body the widget will be placed."
|
8794 |
msgstr ""
|
8795 |
|
8796 |
-
#: languages/vue.php:
|
8797 |
msgid "Customize Design"
|
8798 |
msgstr ""
|
8799 |
|
8800 |
-
#: languages/vue.php:
|
8801 |
msgid "words"
|
8802 |
msgstr ""
|
8803 |
|
8804 |
-
#: languages/vue.php:
|
8805 |
msgid "Please select at least one post to display."
|
8806 |
msgstr ""
|
8807 |
|
8808 |
#. Translators: placeholders make text small.
|
8809 |
-
#: languages/vue.php:
|
8810 |
msgid "Automatic %1$s- The widget is automatically placed inside the post body.%2$s"
|
8811 |
msgstr ""
|
8812 |
|
8813 |
#. Translators: placeholders make text small.
|
8814 |
-
#: languages/vue.php:
|
8815 |
msgid "Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s"
|
8816 |
msgstr ""
|
8817 |
|
8818 |
-
#: languages/vue.php:
|
8819 |
msgid "Facebook Instant Articles"
|
8820 |
msgstr ""
|
8821 |
|
8822 |
-
#: languages/vue.php:
|
8823 |
msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to MonsterInsights Pro."
|
8824 |
msgstr ""
|
8825 |
|
8826 |
-
#: languages/vue.php:
|
8827 |
msgid "Want to use track users visiting your AMP pages? By upgrading to MonsterInsights Pro, you can enable AMP page tracking."
|
8828 |
msgstr ""
|
8829 |
|
8830 |
-
#: languages/vue.php:
|
8831 |
msgid "Ads Tracking"
|
8832 |
msgstr ""
|
8833 |
|
8834 |
-
#: languages/vue.php:
|
8835 |
msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
|
8836 |
msgstr ""
|
8837 |
|
8838 |
-
#: languages/vue.php:
|
8839 |
msgid "2,000,000+ use AIOSEO to Improve Their Website Search Rankings"
|
8840 |
msgstr ""
|
8841 |
|
8842 |
-
#: languages/vue.php:
|
8843 |
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."
|
8844 |
msgstr ""
|
8845 |
|
8846 |
-
#: languages/vue.php:
|
8847 |
msgid "Jack Brown"
|
8848 |
msgstr ""
|
8849 |
|
8850 |
-
#: languages/vue.php:
|
8851 |
msgid "PJB Internet Marketing"
|
8852 |
msgstr ""
|
8853 |
|
8854 |
-
#: languages/vue.php:
|
8855 |
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."
|
8856 |
msgstr ""
|
8857 |
|
8858 |
-
#: languages/vue.php:
|
8859 |
msgid "Joel Steinmann"
|
8860 |
msgstr ""
|
8861 |
|
8862 |
-
#: languages/vue.php:
|
8863 |
msgid "CEO, Solergo"
|
8864 |
msgstr ""
|
8865 |
|
8866 |
-
#: languages/vue.php:
|
8867 |
msgid "Recommended Addons"
|
8868 |
msgstr ""
|
8869 |
|
8870 |
-
#: languages/vue.php:
|
8871 |
msgid "To unlock more features consider upgrading to PRO. As a valued MonsterInsights Lite user you receive 50% off, automatically applied at checkout!"
|
8872 |
msgstr ""
|
8873 |
|
8874 |
-
#: languages/vue.php:
|
8875 |
msgid "Other Addons"
|
8876 |
msgstr ""
|
8877 |
|
8878 |
-
#: languages/vue.php:
|
8879 |
msgid "View all MonsterInsights addons"
|
8880 |
msgstr ""
|
8881 |
|
8882 |
-
#: languages/vue.php:
|
8883 |
msgid "Scroll Tracking"
|
8884 |
msgstr ""
|
8885 |
|
8886 |
-
#: languages/vue.php:
|
8887 |
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."
|
8888 |
msgstr ""
|
8889 |
|
8890 |
-
#: languages/vue.php:
|
8891 |
msgid ""
|
8892 |
"The EU Compliance addon allows you to improve compliance with GDPR\n"
|
8893 |
" and other privacy regulations."
|
8894 |
msgstr ""
|
8895 |
|
8896 |
-
#: languages/vue.php:
|
8897 |
msgid "EU Compliance"
|
8898 |
msgstr ""
|
8899 |
|
8900 |
-
#: languages/vue.php:
|
8901 |
msgid "Compatibility mode"
|
8902 |
msgstr ""
|
8903 |
|
8904 |
-
#: languages/vue.php:
|
8905 |
msgid "Enable _gtagTracker Compatibility"
|
8906 |
msgstr ""
|
8907 |
|
8908 |
#. Translators: Placeholder gets replaced with default GA js function.
|
8909 |
-
#: languages/vue.php:
|
8910 |
msgid "This enables MonsterInsights to work with plugins that use %1$s and don't support %2$s"
|
8911 |
msgstr ""
|
8912 |
|
8913 |
#. Translators: Page number of total pages. 1 & 2 make the first part of the text bold.
|
8914 |
-
#: languages/vue.php:
|
8915 |
msgid "%1$sPage %3$s%2$s of %4$s"
|
8916 |
msgstr ""
|
8917 |
|
8918 |
-
#: languages/vue.php:
|
8919 |
#: lite/includes/popular-posts/class-popular-posts-widget-sidebar.php:257
|
8920 |
msgid "Theme Preview"
|
8921 |
msgstr ""
|
8922 |
|
8923 |
-
#: languages/vue.php:
|
8924 |
msgid "Wide"
|
8925 |
msgstr ""
|
8926 |
|
8927 |
-
#: languages/vue.php:
|
8928 |
msgid "Narrow"
|
8929 |
msgstr ""
|
8930 |
|
8931 |
-
#: languages/vue.php:
|
8932 |
msgid "Title"
|
8933 |
msgstr ""
|
8934 |
|
8935 |
-
#: languages/vue.php:
|
8936 |
msgid "Color"
|
8937 |
msgstr ""
|
8938 |
|
8939 |
-
#: languages/vue.php:
|
8940 |
msgid "Size"
|
8941 |
msgstr ""
|
8942 |
|
8943 |
-
#: languages/vue.php:
|
8944 |
msgid "Border"
|
8945 |
msgstr ""
|
8946 |
|
8947 |
-
#: languages/vue.php:
|
8948 |
msgid "Author/Date"
|
8949 |
msgstr ""
|
8950 |
|
8951 |
-
#: languages/vue.php:
|
8952 |
msgid "Label"
|
8953 |
msgstr ""
|
8954 |
|
8955 |
-
#: languages/vue.php:
|
8956 |
msgid "Background"
|
8957 |
msgstr ""
|
8958 |
|
8959 |
-
#: languages/vue.php:
|
8960 |
msgid "Choose which content you would like displayed in the widget."
|
8961 |
msgstr ""
|
8962 |
|
8963 |
-
#: languages/vue.php:
|
8964 |
msgid "Comments"
|
8965 |
msgstr ""
|
8966 |
|
8967 |
-
#: languages/vue.php:
|
8968 |
msgid "Choose how many posts you’d like displayed in the widget."
|
8969 |
msgstr ""
|
8970 |
|
8971 |
-
#: languages/vue.php:
|
8972 |
msgid "Popular Posts data can be fetched correctly"
|
8973 |
msgstr ""
|
8974 |
|
8975 |
-
#: languages/vue.php:
|
8976 |
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."
|
8977 |
msgstr ""
|
8978 |
|
8979 |
-
#: languages/vue.php:
|
8980 |
msgid "Close"
|
8981 |
msgstr ""
|
8982 |
|
8983 |
-
#: languages/vue.php:
|
8984 |
msgid "Add Top 5 Posts from Google Analytics"
|
8985 |
msgstr ""
|
8986 |
|
8987 |
-
#: languages/vue.php:
|
8988 |
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."
|
8989 |
msgstr ""
|
8990 |
|
8991 |
-
#: languages/vue.php:
|
8992 |
msgid "Test Automated Posts"
|
8993 |
msgstr ""
|
8994 |
|
8995 |
#. Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc.
|
8996 |
-
#: languages/vue.php:
|
8997 |
msgid "Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics."
|
8998 |
msgstr ""
|
8999 |
|
9000 |
-
#: languages/vue.php:
|
9001 |
msgid "Automated + Curated"
|
9002 |
msgstr ""
|
9003 |
|
9004 |
#. Translators: Placeholder adds a link to the Custom Dimensions settings.
|
9005 |
-
#: languages/vue.php:
|
9006 |
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."
|
9007 |
msgstr ""
|
9008 |
|
9009 |
#. Translators: Placeholder gets replaced with current license version.
|
9010 |
-
#: languages/vue.php:
|
9011 |
msgid "Pro version is required."
|
9012 |
msgstr ""
|
9013 |
|
9014 |
-
#: languages/vue.php:
|
9015 |
msgid "Verifying Popular Posts data"
|
9016 |
msgstr ""
|
9017 |
|
9018 |
-
#: languages/vue.php:
|
9019 |
msgid "Select posts/search"
|
9020 |
msgstr ""
|
9021 |
|
9022 |
-
#: languages/vue.php:
|
9023 |
msgid "Oops! No posts found."
|
9024 |
msgstr ""
|
9025 |
|
9026 |
-
#: languages/vue.php:
|
9027 |
msgid "Search by post title"
|
9028 |
msgstr ""
|
9029 |
|
9030 |
-
#: languages/vue.php:
|
9031 |
msgid "Can't load posts."
|
9032 |
msgstr ""
|
9033 |
|
9034 |
-
#: languages/vue.php:
|
9035 |
msgid "SharedCount API Key"
|
9036 |
msgstr ""
|
9037 |
|
9038 |
-
#: languages/vue.php:
|
9039 |
msgid "Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing."
|
9040 |
msgstr ""
|
9041 |
|
9042 |
-
#: languages/vue.php:
|
9043 |
msgid "Start Indexing"
|
9044 |
msgstr ""
|
9045 |
|
9046 |
-
#: languages/vue.php:
|
9047 |
msgid "%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing."
|
9048 |
msgstr ""
|
9049 |
|
9050 |
-
#: languages/vue.php:
|
9051 |
msgid "Indexing completed, counts will update automatically every day."
|
9052 |
msgstr ""
|
9053 |
|
9054 |
-
#: languages/vue.php:
|
9055 |
msgid "Sartorial taxidermy venmo you probably haven't heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu."
|
9056 |
msgstr ""
|
9057 |
|
9058 |
-
#: languages/vue.php:
|
9059 |
msgid "Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan"
|
9060 |
msgstr ""
|
9061 |
|
9062 |
-
#: languages/vue.php:
|
9063 |
msgid "Icon"
|
9064 |
msgstr ""
|
9065 |
|
9066 |
#. Translators: Minimum and maximum number that can be used.
|
9067 |
-
#: languages/vue.php:
|
9068 |
msgid "Please enter a value between %1$s and %2$s"
|
9069 |
msgstr ""
|
9070 |
|
9071 |
#. Translators: The minimum set value.
|
9072 |
-
#: languages/vue.php:
|
9073 |
msgid "Please enter a value higher than %s"
|
9074 |
msgstr ""
|
9075 |
|
9076 |
#. Translators: The maximum set value.
|
9077 |
-
#: languages/vue.php:
|
9078 |
msgid "Please enter a value lower than %s"
|
9079 |
msgstr ""
|
9080 |
|
9081 |
-
#: languages/vue.php:
|
9082 |
msgid "Please enter a number"
|
9083 |
msgstr ""
|
9084 |
|
9085 |
-
#: languages/vue.php:
|
9086 |
msgid "Value has to be a round number"
|
9087 |
msgstr ""
|
9088 |
|
9089 |
-
#: languages/vue.php:
|
9090 |
msgid "Export PDF Report"
|
9091 |
msgstr ""
|
9092 |
|
9093 |
-
#: languages/vue.php:
|
9094 |
msgid "You can export PDF reports only in the PRO version."
|
9095 |
msgstr ""
|
9096 |
|
9097 |
-
#: languages/vue.php:
|
9098 |
msgid "Upgrade to MonsterInsights Pro to Unlock More Actionable Insights"
|
9099 |
msgstr ""
|
9100 |
|
9101 |
-
#: languages/vue.php:
|
9102 |
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!"
|
9103 |
msgstr ""
|
9104 |
|
9105 |
-
#: languages/vue.php:
|
9106 |
msgid "Upgrade to MonsterInsights Pro and Save 50% OFF!"
|
9107 |
msgstr ""
|
9108 |
|
9109 |
#. Translators: Makes text bold.
|
9110 |
-
#: languages/vue.php:
|
9111 |
msgid "Use coupon code %1$sLITEUPGRADE%2$s"
|
9112 |
msgstr ""
|
9113 |
|
9114 |
#. Translators: Make text green.
|
9115 |
-
#: languages/vue.php:
|
9116 |
msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
|
9117 |
msgstr ""
|
9118 |
|
9119 |
#. Translators: Placeholder adds a line break.
|
9120 |
-
#: languages/vue.php:
|
9121 |
msgid "You can customize your %sdate range only in the PRO version."
|
9122 |
msgstr ""
|
9123 |
|
9124 |
-
#: languages/vue.php:
|
9125 |
msgid "Help Us Improve"
|
9126 |
msgstr ""
|
9127 |
|
9128 |
-
#: languages/vue.php:
|
9129 |
msgid "Help us better understand our users and their website needs."
|
9130 |
msgstr ""
|
9131 |
|
9132 |
#. Translators: Adds a link to the documentation.
|
9133 |
-
#: languages/vue.php:
|
9134 |
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"
|
9135 |
msgstr ""
|
9136 |
|
9137 |
-
#: languages/vue.php:
|
9138 |
msgid "Website profile"
|
9139 |
msgstr ""
|
9140 |
|
9141 |
-
#: languages/vue.php:
|
9142 |
msgid "Active profile"
|
9143 |
msgstr ""
|
9144 |
|
9145 |
-
#: languages/vue.php:
|
9146 |
msgid "Skip and Keep Connection"
|
9147 |
msgstr ""
|
9148 |
|
9149 |
-
#: languages/vue.php:
|
9150 |
msgid "This feature requires MonsterInsights Pro"
|
9151 |
msgstr ""
|
9152 |
|
9153 |
-
#: languages/vue.php:
|
9154 |
msgid "By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more."
|
9155 |
msgstr ""
|
9156 |
|
9157 |
-
#: languages/vue.php:
|
9158 |
msgid "Upgrade to Pro and Unlock Popular Products"
|
9159 |
msgstr ""
|
9160 |
|
9161 |
-
#: languages/vue.php:
|
9162 |
msgid "View all Pro features"
|
9163 |
msgstr ""
|
9164 |
|
9165 |
-
#: languages/vue.php:
|
9166 |
msgid "Days"
|
9167 |
msgstr ""
|
9168 |
|
9169 |
#. Translators: placeholders make text small.
|
9170 |
-
#: languages/vue.php:
|
9171 |
msgid "7 days"
|
9172 |
msgstr ""
|
9173 |
|
9174 |
-
#: languages/vue.php:
|
9175 |
msgid "30 days"
|
9176 |
msgstr ""
|
9177 |
|
9178 |
-
#: languages/vue.php:
|
9179 |
msgid "Custom"
|
9180 |
msgstr ""
|
9181 |
|
9182 |
-
#: languages/vue.php:
|
9183 |
msgid "Only Show Posts from These Categories"
|
9184 |
msgstr ""
|
9185 |
|
9186 |
-
#: languages/vue.php:
|
9187 |
msgid "Choose from which categories posts will be displayed in the widget. All categories will be used if left empty."
|
9188 |
msgstr ""
|
9189 |
|
9190 |
-
#: languages/vue.php:
|
9191 |
msgid "Multiple Entries"
|
9192 |
msgstr ""
|
9193 |
|
9194 |
-
#: languages/vue.php:
|
9195 |
msgid "Total Number of Widgets to Show"
|
9196 |
msgstr ""
|
9197 |
|
9198 |
-
#: languages/vue.php:
|
9199 |
msgid "Choose how many widgets will be placed in a single Post."
|
9200 |
msgstr ""
|
9201 |
|
9202 |
-
#: languages/vue.php:
|
9203 |
msgid "Minimum Distance Between Widgets"
|
9204 |
msgstr ""
|
9205 |
|
9206 |
-
#: languages/vue.php:
|
9207 |
msgid "Choose the distance between widgets."
|
9208 |
msgstr ""
|
9209 |
|
9210 |
-
#: languages/vue.php:
|
9211 |
msgid "Minimum Word Count to Display Multiple Widgets"
|
9212 |
msgstr ""
|
9213 |
|
9214 |
-
#: languages/vue.php:
|
9215 |
msgid "Choose the minimum word count for a Post to have multiple entries."
|
9216 |
msgstr ""
|
9217 |
|
9218 |
-
#: languages/vue.php:
|
9219 |
msgid "Pro version is required"
|
9220 |
msgstr ""
|
9221 |
|
9222 |
#. Translators: Placeholder adds a link to the Custom Dimensions settings.
|
9223 |
-
#: languages/vue.php:
|
9224 |
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)."
|
9225 |
msgstr ""
|
9226 |
|
9227 |
-
#: languages/vue.php:
|
9228 |
msgid "Unlock with %s"
|
9229 |
msgstr ""
|
9230 |
|
9231 |
-
#: languages/vue.php:
|
9232 |
msgid "Automatic Placement"
|
9233 |
msgstr ""
|
9234 |
|
9235 |
-
#: languages/vue.php:
|
9236 |
msgid "Display using Gutenberg Blocks"
|
9237 |
msgstr ""
|
9238 |
|
9239 |
-
#: languages/vue.php:
|
9240 |
msgid "Embed Options"
|
9241 |
msgstr ""
|
9242 |
|
9243 |
-
#: languages/vue.php:
|
9244 |
msgid "All Embed Options can be used in conjunction with one another."
|
9245 |
msgstr ""
|
9246 |
|
9247 |
-
#: languages/vue.php:
|
9248 |
msgid "Using the Gutenberg Block"
|
9249 |
msgstr ""
|
9250 |
|
9251 |
-
#: languages/vue.php:
|
9252 |
msgid "Using Automatic Embed"
|
9253 |
msgstr ""
|
9254 |
|
9255 |
-
#: languages/vue.php:
|
9256 |
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."
|
9257 |
msgstr ""
|
9258 |
|
9259 |
-
#: languages/vue.php:
|
9260 |
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."
|
9261 |
msgstr ""
|
9262 |
|
9263 |
-
#: languages/vue.php:
|
9264 |
msgid "Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above."
|
9265 |
msgstr ""
|
9266 |
|
9267 |
-
#: languages/vue.php:
|
9268 |
msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg"
|
9269 |
msgstr ""
|
9270 |
|
9271 |
-
#: languages/vue.php:
|
9272 |
msgid "%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page."
|
9273 |
msgstr ""
|
9274 |
|
9275 |
-
#: languages/vue.php:
|
9276 |
msgid "%1$sStep 2%2$s - Search for “Popular Posts”."
|
9277 |
msgstr ""
|
9278 |
|
9279 |
-
#: languages/vue.php:
|
9280 |
msgid "%1$sStep 3%2$s - Style the widget using the Block Settings sidebar."
|
9281 |
msgstr ""
|
9282 |
|
9283 |
-
#: languages/vue.php:
|
9284 |
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."
|
9285 |
msgstr ""
|
9286 |
|
9287 |
-
#: languages/vue.php:
|
9288 |
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."
|
9289 |
msgstr ""
|
9290 |
|
9291 |
-
#: languages/vue.php:
|
9292 |
msgid "%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design."
|
9293 |
msgstr ""
|
9294 |
|
9295 |
-
#: languages/vue.php:
|
9296 |
msgid "Display using a Shortcode"
|
9297 |
msgstr ""
|
9298 |
|
9299 |
-
#: languages/vue.php:
|
9300 |
msgid "Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin."
|
9301 |
msgstr ""
|
9302 |
|
9303 |
-
#: languages/vue.php:
|
9304 |
msgid "Copy Shortcode"
|
9305 |
msgstr ""
|
9306 |
|
9307 |
-
#: languages/vue.php:
|
9308 |
msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode"
|
9309 |
msgstr ""
|
9310 |
|
9311 |
-
#: languages/vue.php:
|
9312 |
msgid "Enable Automatic Placement"
|
9313 |
msgstr ""
|
9314 |
|
9315 |
-
#: languages/vue.php:
|
9316 |
msgid "Display in a Sidebar"
|
9317 |
msgstr ""
|
9318 |
|
9319 |
-
#: languages/vue.php:
|
9320 |
msgid "Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above."
|
9321 |
msgstr ""
|
9322 |
|
9323 |
-
#: languages/vue.php:
|
9324 |
msgid "Watch Video - How to Add the Popular Posts widget using Widgets"
|
9325 |
msgstr ""
|
9326 |
|
9327 |
-
#: languages/vue.php:
|
9328 |
msgid "Display Method"
|
9329 |
msgstr ""
|
9330 |
|
9331 |
-
#: languages/vue.php:
|
9332 |
msgid "There are two ways to manual include the widget in your posts."
|
9333 |
msgstr ""
|
9334 |
|
9335 |
-
#: languages/vue.php:
|
9336 |
msgid "Using the Shortcode"
|
9337 |
msgstr ""
|
9338 |
|
9339 |
-
#: languages/vue.php:
|
9340 |
msgid "Learn how to insert the widget using Gutenberg blocks."
|
9341 |
msgstr ""
|
9342 |
|
9343 |
-
#: languages/vue.php:
|
9344 |
msgid "Learn how to insert the widget using out Shortcode."
|
9345 |
msgstr ""
|
9346 |
|
9347 |
-
#: languages/vue.php:
|
9348 |
msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg"
|
9349 |
msgstr ""
|
9350 |
|
9351 |
-
#: languages/vue.php:
|
9352 |
msgid "%1$sStep 2%2$s - Search for “Inline Popular Posts by MonsterInsights”."
|
9353 |
msgstr ""
|
9354 |
|
9355 |
-
#: languages/vue.php:
|
9356 |
msgid "Shortcode"
|
9357 |
msgstr ""
|
9358 |
|
9359 |
-
#: languages/vue.php:
|
9360 |
msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode"
|
9361 |
msgstr ""
|
9362 |
|
9363 |
-
#: languages/vue.php:
|
9364 |
msgid "Facebook Instant Articleasdasdasds"
|
9365 |
msgstr ""
|
9366 |
|
9367 |
-
#: languages/vue.php:
|
9368 |
msgid "Media"
|
9369 |
msgstr ""
|
9370 |
|
9371 |
-
#: languages/vue.php:
|
9372 |
msgid "Track how your users interact with videos on your website. Upgrade to MonsterInsights Pro."
|
9373 |
msgstr ""
|
9374 |
|
9375 |
-
#: languages/vue.php:
|
9376 |
msgid "Improve Your Conversion Rate With Insights Into Which Content Works Best."
|
9377 |
msgstr ""
|
9378 |
|
9379 |
-
#: languages/vue.php:
|
9380 |
msgid "Top Affilliate Links"
|
9381 |
msgstr ""
|
9382 |
|
9383 |
-
#: languages/vue.php:
|
9384 |
msgid "Scroll Depth"
|
9385 |
msgstr ""
|
9386 |
|
9387 |
-
#: languages/vue.php:
|
9388 |
msgid "Increase Sales and Make More Money With Enhanced eCommerce Insights."
|
9389 |
msgstr ""
|
9390 |
|
9391 |
-
#: languages/vue.php:
|
9392 |
msgid "10+ eCommerce Integrations"
|
9393 |
msgstr ""
|
9394 |
|
9395 |
-
#: languages/vue.php:
|
9396 |
msgid "Average Order Value"
|
9397 |
msgstr ""
|
9398 |
|
9399 |
-
#: languages/vue.php:
|
9400 |
msgid "Total Revenue"
|
9401 |
msgstr ""
|
9402 |
|
9403 |
-
#: languages/vue.php:
|
9404 |
msgid "Number of Transactions"
|
9405 |
msgstr ""
|
9406 |
|
9407 |
-
#: languages/vue.php:
|
9408 |
msgid "Increase Engagement and Unlock New Insights About Your Site."
|
9409 |
msgstr ""
|
9410 |
|
9411 |
-
#: languages/vue.php:
|
9412 |
msgid "User ID Tracking"
|
9413 |
msgstr ""
|
9414 |
|
9415 |
-
#: languages/vue.php:
|
9416 |
msgid "Post Types"
|
9417 |
msgstr ""
|
9418 |
|
9419 |
-
#: languages/vue.php:
|
9420 |
msgid "Tag Tracking"
|
9421 |
msgstr ""
|
9422 |
|
9423 |
-
#: languages/vue.php:
|
9424 |
msgid "Categories"
|
9425 |
msgstr ""
|
9426 |
|
9427 |
-
#: languages/vue.php:
|
9428 |
msgid "SEO Scores"
|
9429 |
msgstr ""
|
9430 |
|
9431 |
-
#: languages/vue.php:
|
9432 |
msgid "Publish Times"
|
9433 |
msgstr ""
|
9434 |
|
9435 |
-
#: languages/vue.php:
|
9436 |
msgid "Focus Keywords"
|
9437 |
msgstr ""
|
9438 |
|
9439 |
-
#: languages/vue.php:
|
9440 |
msgid "Track Every Type of Web Form and Gain Visibility Into Your Customer Journey."
|
9441 |
msgstr ""
|
9442 |
|
9443 |
-
#: languages/vue.php:
|
9444 |
msgid "Conversion Counts"
|
9445 |
msgstr ""
|
9446 |
|
9447 |
-
#: languages/vue.php:
|
9448 |
msgid "Impression Counts"
|
9449 |
msgstr ""
|
9450 |
|
9451 |
-
#: languages/vue.php:
|
9452 |
msgid "Conversion Rates"
|
9453 |
msgstr ""
|
9454 |
|
9455 |
-
#: languages/vue.php:
|
9456 |
msgid "See Exactly How Visitors Find Your Website From Google."
|
9457 |
msgstr ""
|
9458 |
|
9459 |
-
#: languages/vue.php:
|
9460 |
msgid "Top Google Search Terms"
|
9461 |
msgstr ""
|
9462 |
|
9463 |
-
#: languages/vue.php:
|
9464 |
msgid "Number of Clicks"
|
9465 |
msgstr ""
|
9466 |
|
9467 |
-
#: languages/vue.php:
|
9468 |
msgid "Click-through Ratio"
|
9469 |
msgstr ""
|
9470 |
|
9471 |
-
#: languages/vue.php:
|
9472 |
msgid "Average Results Position"
|
9473 |
msgstr ""
|
9474 |
|
9475 |
-
#: languages/vue.php:
|
9476 |
msgid "Realtime Report"
|
9477 |
msgstr ""
|
9478 |
|
9479 |
-
#: languages/vue.php:
|
9480 |
msgid "See Who And What is Happening on Your Website in Realtime."
|
9481 |
msgstr ""
|
9482 |
|
9483 |
-
#: languages/vue.php:
|
9484 |
msgid "Top Page Views"
|
9485 |
msgstr ""
|
9486 |
|
9487 |
-
#: languages/vue.php:
|
9488 |
msgid "Current Active Users"
|
9489 |
msgstr ""
|
9490 |
|
9491 |
-
#: languages/vue.php:
|
9492 |
msgid "Top Referral Sources"
|
9493 |
msgstr ""
|
9494 |
|
9495 |
-
#: languages/vue.php:
|
9496 |
msgid "Top Countries"
|
9497 |
msgstr ""
|
9498 |
|
9499 |
-
#: languages/vue.php:
|
9500 |
msgid "Top Cities"
|
9501 |
msgstr ""
|
9502 |
|
9503 |
-
#: languages/vue.php:
|
9504 |
msgid "Improve Your User Experience and Improve Search Engine Rankings."
|
9505 |
msgstr ""
|
9506 |
|
9507 |
-
#: languages/vue.php:
|
9508 |
msgid "Overall Site Speed Score"
|
9509 |
msgstr ""
|
9510 |
|
9511 |
-
#: languages/vue.php:
|
9512 |
msgid "Server Response Times"
|
9513 |
msgstr ""
|
9514 |
|
9515 |
-
#: languages/vue.php:
|
9516 |
msgid "Mobile and Desktop Scores"
|
9517 |
msgstr ""
|
9518 |
|
9519 |
-
#: languages/vue.php:
|
9520 |
msgid "First Contentful Paint"
|
9521 |
msgstr ""
|
9522 |
|
9523 |
-
#: languages/vue.php:
|
9524 |
msgid "Automatic Recommendations"
|
9525 |
msgstr ""
|
9526 |
|
9527 |
-
#: languages/vue.php:
|
9528 |
msgid "Total Blocking Time"
|
9529 |
msgstr ""
|
9530 |
|
9531 |
-
#: languages/vue.php:
|
9532 |
msgid "On-Demand Audits"
|
9533 |
msgstr ""
|
9534 |
|
9535 |
-
#: languages/vue.php:
|
9536 |
msgid "Time to Interactive"
|
9537 |
msgstr ""
|
9538 |
|
9539 |
-
#: languages/vue.php:
|
9540 |
msgid "2021 Year in Review"
|
9541 |
msgstr ""
|
9542 |
|
9543 |
-
#: languages/vue.php:
|
9544 |
msgid "Realtime"
|
9545 |
msgstr ""
|
9546 |
|
9547 |
#. Translators: Placeholders are used for making text bold and adding a link.
|
9548 |
-
#: languages/vue.php:
|
9549 |
msgid "%1$sYou're using %2$s Lite%3$s. To unlock all reports, consider %4$supgrading to Pro%5$s."
|
9550 |
msgstr ""
|
9551 |
|
9552 |
-
#: languages/vue.php:
|
9553 |
msgid "Featured"
|
9554 |
msgstr ""
|
9555 |
|
9556 |
-
#: languages/vue.php:
|
9557 |
msgid "Traffic"
|
9558 |
msgstr ""
|
9559 |
|
9560 |
-
#: languages/vue.php:
|
9561 |
msgid "Revenue"
|
9562 |
msgstr ""
|
9563 |
|
9564 |
-
#: languages/vue.php:
|
9565 |
msgid "Guides & Resources"
|
9566 |
msgstr ""
|
9567 |
|
9568 |
-
#: languages/vue.php:
|
9569 |
msgid "Upgrade and Unlock"
|
9570 |
msgstr ""
|
9571 |
|
9572 |
-
#: languages/vue.php:
|
9573 |
msgid "What’s in the %1$s?"
|
9574 |
msgstr ""
|
9575 |
|
9576 |
-
#: languages/vue.php:
|
9577 |
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"
|
9578 |
msgstr ""
|
9579 |
|
9580 |
-
#: languages/vue.php:
|
9581 |
msgid "Your 2021 Year in Review is still calculating. Please check back later to see how your website performed last year."
|
9582 |
msgstr ""
|
9583 |
|
9584 |
-
#: languages/vue.php:
|
9585 |
msgid "Your 2021 Analytics Report"
|
9586 |
msgstr ""
|
9587 |
|
9588 |
-
#: languages/vue.php:
|
9589 |
msgid "January 1, 2021 - December 31, 2021"
|
9590 |
msgstr ""
|
9591 |
|
9592 |
-
#: languages/vue.php:
|
9593 |
msgid "A Tip for 2022"
|
9594 |
msgstr ""
|
9595 |
|
9596 |
-
#: languages/vue.php:
|
9597 |
msgid "A Tip For 2022"
|
9598 |
msgstr ""
|
9599 |
|
9600 |
-
#: languages/vue.php:
|
9601 |
msgid "Here's to an amazing 2022!"
|
9602 |
msgstr ""
|
9603 |
|
9604 |
-
#: languages/vue.php:
|
9605 |
msgid "Try our other popular WordPress plugins to grow your website in 2022."
|
9606 |
msgstr ""
|
9607 |
|
9608 |
-
#: languages/vue.php:
|
9609 |
msgid "Become a WordPress expert in 2022. Join our amazing communities and take your website to the next level."
|
9610 |
msgstr ""
|
9611 |
|
9612 |
-
#: languages/vue.php:
|
9613 |
msgid "Copyright MonsterInsights, 2022"
|
9614 |
msgstr ""
|
9615 |
|
9616 |
#. Translators: Number of minutes spent on site.
|
9617 |
-
#: languages/vue.php:
|
9618 |
msgid "Each visitor spent an average of %s minutes on your website in 2021."
|
9619 |
msgstr ""
|
9620 |
|
9621 |
-
#: languages/vue.php:
|
9622 |
msgid "RafflePress"
|
9623 |
msgstr ""
|
9624 |
|
9625 |
-
#: languages/vue.php:
|
9626 |
msgid "Launch giveaways and raffle campaigns to grow your email lists, increase traffic, and get more social media followers."
|
9627 |
msgstr ""
|
9628 |
|
9629 |
-
#: languages/vue.php:
|
9630 |
msgid "Constant Contact"
|
9631 |
msgstr ""
|
9632 |
|
9633 |
-
#: languages/vue.php:
|
9634 |
msgid "Create amazing email marketing campaigns with drag and drop simplicity. Exclusive Offer: Save 20%."
|
9635 |
msgstr ""
|
9636 |
|
9637 |
-
#: languages/vue.php:
|
9638 |
msgid "SEMRUSH"
|
9639 |
msgstr ""
|
9640 |
|
9641 |
-
#: languages/vue.php:
|
9642 |
msgid "Perform SEO and content marketing research, track keywords, and much more. Special Offer: First 30 Days Free."
|
9643 |
msgstr ""
|
9644 |
|
9645 |
-
#: languages/vue.php:
|
9646 |
msgid "Engagement Tools"
|
9647 |
msgstr ""
|
9648 |
|
9649 |
-
#: languages/vue.php:
|
9650 |
msgid "WPForms"
|
9651 |
msgstr ""
|
9652 |
|
9653 |
-
#: languages/vue.php:
|
9654 |
msgid "The world’s most popular WordPress form builder, trusted by over 5 million websites. Easily build contact forms, payment forms, and more."
|
9655 |
msgstr ""
|
9656 |
|
9657 |
-
#: languages/vue.php:
|
9658 |
msgid "OptinMonster"
|
9659 |
msgstr ""
|
9660 |
|
9661 |
-
#: languages/vue.php:
|
9662 |
msgid "Convert and monetize more of your website traffic with engaging pop-up and gamified tools. Great for all types of websites."
|
9663 |
msgstr ""
|
9664 |
|
9665 |
-
#: languages/vue.php:
|
9666 |
msgid "Smash Balloon - Facebook"
|
9667 |
msgstr ""
|
9668 |
|
9669 |
-
#: languages/vue.php:
|
9670 |
msgid "Smash Balloon - Instagram"
|
9671 |
msgstr ""
|
9672 |
|
9673 |
-
#: languages/vue.php:
|
9674 |
msgid "Quickly add social media feeds from Facebook, Instagram, Twitter, and others to your website, with no coding needed."
|
9675 |
msgstr ""
|
9676 |
|
9677 |
-
#: languages/vue.php:
|
9678 |
msgid "Popular Posts by MonsterInsights"
|
9679 |
msgstr ""
|
9680 |
|
9681 |
-
#: languages/vue.php:
|
9682 |
msgid "Increase your visitor engagement by automatically embedding popular and related content from your website."
|
9683 |
msgstr ""
|
9684 |
|
9685 |
-
#: languages/vue.php:
|
9686 |
msgid "Popular Products by MonsterInsights"
|
9687 |
msgstr ""
|
9688 |
|
9689 |
-
#: languages/vue.php:
|
9690 |
msgid "Automatically show related products to increase conversion rates and increase cart sizes on your eCommerce website."
|
9691 |
msgstr ""
|
9692 |
|
9693 |
-
#: languages/vue.php:
|
9694 |
msgid "Revenue Tools"
|
9695 |
msgstr ""
|
9696 |
|
9697 |
-
#: languages/vue.php:
|
9698 |
msgid "SeedProd"
|
9699 |
msgstr ""
|
9700 |
|
9701 |
-
#: languages/vue.php:
|
9702 |
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."
|
9703 |
msgstr ""
|
9704 |
|
9705 |
-
#: languages/vue.php:
|
9706 |
msgid "Featured Tools"
|
9707 |
msgstr ""
|
9708 |
|
9709 |
-
#: languages/vue.php:
|
9710 |
msgid "Easy Affiliate"
|
9711 |
msgstr ""
|
9712 |
|
9713 |
-
#: languages/vue.php:
|
9714 |
msgid "Launch, grow, and manage an affiliate program, all right from your WordPress dashboard. Works automatically with MonsterInsights."
|
9715 |
msgstr ""
|
9716 |
|
9717 |
-
#: languages/vue.php:
|
9718 |
msgid "SearchWP"
|
9719 |
msgstr ""
|
9720 |
|
9721 |
-
#: languages/vue.php:
|
9722 |
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."
|
9723 |
msgstr ""
|
9724 |
|
9725 |
-
#: languages/vue.php:
|
9726 |
msgid "Easily sell digital products like ebooks, plugins, and courses with WordPress. Built-in payment processing, coupons, shopping cart, detailed reporting, and more."
|
9727 |
msgstr ""
|
9728 |
|
9729 |
-
#: languages/vue.php:
|
9730 |
msgid "Create a membership website. Works automatically with MonsterInsights, no coding needed."
|
9731 |
msgstr ""
|
9732 |
|
9733 |
-
#: languages/vue.php:
|
9734 |
msgid "Thirsty Affiliates"
|
9735 |
msgstr ""
|
9736 |
|
9737 |
-
#: languages/vue.php:
|
9738 |
msgid "Manage all your affiliate links with features designed to help make bloggers more money."
|
9739 |
msgstr ""
|
9740 |
|
9741 |
-
#: languages/vue.php:
|
9742 |
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."
|
9743 |
msgstr ""
|
9744 |
|
9745 |
-
#: languages/vue.php:
|
9746 |
msgid "Advanced Coupons"
|
9747 |
msgstr ""
|
9748 |
|
9749 |
-
#: languages/vue.php:
|
9750 |
msgid "Create coupons, reward loyal customers, and schedule promotions for your eCommerce store."
|
9751 |
msgstr ""
|
9752 |
|
9753 |
-
#: languages/vue.php:
|
9754 |
msgid "PrettyLinks"
|
9755 |
msgstr ""
|
9756 |
|
9757 |
-
#: languages/vue.php:
|
9758 |
msgid "Automatically monetize your website content with affiliate links added automatically to your content."
|
9759 |
msgstr ""
|
9760 |
|
9761 |
-
#: languages/vue.php:
|
9762 |
msgid "Install Now"
|
9763 |
msgstr ""
|
9764 |
|
9765 |
-
#: languages/vue.php:
|
9766 |
msgid "Online Marketing Guides & Resources"
|
9767 |
msgstr ""
|
9768 |
|
9769 |
-
#: languages/vue.php:
|
9770 |
msgid "MonsterInsights Pro"
|
9771 |
msgstr ""
|
9772 |
|
9773 |
-
#: languages/vue.php:
|
9774 |
msgid "Upgrade to unlock eCommerce tracking, Custom Dimensions, Form Tracking, and much more. Special Offer: Save 50% today."
|
9775 |
msgstr ""
|
9776 |
|
9777 |
-
#: languages/vue.php:
|
9778 |
msgid "Traffic Tools"
|
9779 |
msgstr ""
|
9780 |
|
9781 |
-
#: languages/vue.php:
|
9782 |
msgid "All in One SEO (AIOSEO)"
|
9783 |
msgstr ""
|
9784 |
|
9785 |
-
#: languages/vue.php:
|
9786 |
msgid "The best WordPress SEO plugin that works automatically with MonsterInsights."
|
9787 |
msgstr ""
|
9788 |
|
9789 |
-
#: languages/vue.php:
|
9790 |
msgid "PushEngage"
|
9791 |
msgstr ""
|
9792 |
|
9793 |
-
#: languages/vue.php:
|
9794 |
msgid "Send push notifications to your visitors to drive more traffic and boost sales."
|
9795 |
msgstr ""
|
9796 |
|
9797 |
-
#: languages/vue.php:
|
9798 |
msgid "With MonsterInsights Pro, you can easily measure individual affiliate performance inside Google Analytics, no coding needed. Track clicks, revenue, and more."
|
9799 |
msgstr ""
|
9800 |
|
9801 |
-
#: languages/vue.php:
|
9802 |
msgid "Works automatically with WooCommerce, MemberPress, and EasyDigitalDownloads."
|
9803 |
msgstr ""
|
9804 |
|
9805 |
-
#: languages/vue.php:
|
9806 |
msgid "Media Tracking"
|
9807 |
msgstr ""
|
9808 |
|
9809 |
-
#: languages/vue.php:
|
9810 |
msgid "Get Started"
|
9811 |
msgstr ""
|
9812 |
|
9813 |
-
#: languages/vue.php:
|
9814 |
msgid "Awesome! Tracking and Analytics are All Setup!"
|
9815 |
msgstr ""
|
9816 |
|
9817 |
-
#: languages/vue.php:
|
9818 |
msgid "MonsterInsights is connected to Google Analytics and data is being collected."
|
9819 |
msgstr ""
|
9820 |
|
9821 |
-
#: languages/vue.php:
|
9822 |
msgid "Complete Setup without Upgrading"
|
9823 |
msgstr ""
|
9824 |
|
9825 |
-
#: languages/vue.php:
|
9826 |
msgid "Success"
|
9827 |
msgstr ""
|
9828 |
|
9829 |
-
#: languages/vue.php:
|
9830 |
msgid "Connected to Google Analytics"
|
9831 |
msgstr ""
|
9832 |
|
9833 |
-
#: languages/vue.php:
|
9834 |
msgid "Tracking Code Installed"
|
9835 |
msgstr ""
|
9836 |
|
9837 |
-
#: languages/vue.php:
|
9838 |
msgid "Data Being Collected"
|
9839 |
msgstr ""
|
9840 |
|
9841 |
#. Translators: Add link to retrieve license from account area.
|
9842 |
-
#: languages/vue.php:
|
9843 |
msgid "Already purchased? Simply enter your license key below to connect with MonsterInsights PRO!"
|
9844 |
msgstr ""
|
9845 |
|
9846 |
-
#: languages/vue.php:
|
9847 |
msgid "Verify License Key"
|
9848 |
msgstr ""
|
9849 |
|
9850 |
-
#: languages/vue.php:
|
9851 |
msgid "Upgrade to Unlock These Features"
|
9852 |
msgstr ""
|
9853 |
|
9854 |
-
#: languages/vue.php:
|
9855 |
msgid "To unlock the selected features, please upgrade to Pro and enter your license key below."
|
9856 |
msgstr ""
|
9857 |
|
9858 |
-
#: languages/vue.php:
|
9859 |
msgid "%1$sBonus:%2$s Upgrade today and save %3$s50%% on a Pro License!%4$s (auto-applied at checkout)"
|
9860 |
msgstr ""
|
9861 |
|
9862 |
-
#: languages/vue.php:
|
9863 |
msgid "Verifying License..."
|
9864 |
msgstr ""
|
9865 |
|
9866 |
-
#: languages/vue.php:
|
9867 |
msgid "Privacy Compliance Addon"
|
9868 |
msgstr ""
|
9869 |
|
9870 |
-
#: languages/vue.php:
|
9871 |
msgid "Help Google Analytics become compliant with internet privacy laws like GDPR, PECR, and CCPA."
|
9872 |
msgstr ""
|
9873 |
|
9874 |
-
#: languages/vue.php:
|
9875 |
msgid "Get access to advanced reports inside WordPress including search keywords report, real-time analytics dashboard, publishers / eCommerce report, custom dimensions, and more."
|
9876 |
msgstr ""
|
9877 |
|
9878 |
-
#: languages/vue.php:
|
9879 |
msgid "Instantly enable enhanced eCommerce tracking, so you can measure conversions, sales, and revenue stats. Works with WooCommerce, Easy Digital Downloads, MemberPress, and more."
|
9880 |
msgstr ""
|
9881 |
|
9882 |
-
#: languages/vue.php:
|
9883 |
msgid "20+ Advanced Tracking"
|
9884 |
msgstr ""
|
9885 |
|
9886 |
-
#: languages/vue.php:
|
9887 |
msgid "Get access to advanced tracking features like form conversion tracking, author tracking, custom dimensions, scroll tracking, and more."
|
9888 |
msgstr ""
|
9889 |
|
9890 |
-
#: languages/vue.php:
|
9891 |
msgid "Advanced Growth Tools"
|
9892 |
msgstr ""
|
9893 |
|
9894 |
-
#: languages/vue.php:
|
9895 |
msgid "Get access to advanced growth tools such as popular posts addon, A/B testing tool, smart URL builder, and more."
|
9896 |
msgstr ""
|
9897 |
|
9898 |
-
#: languages/vue.php:
|
9899 |
msgid "Track how your users interact with videos on your website."
|
9900 |
msgstr ""
|
9901 |
|
9902 |
-
#: languages/vue.php:
|
9903 |
msgid "Error Processing"
|
9904 |
msgstr ""
|
9905 |
|
9906 |
-
#: languages/vue.php:
|
9907 |
msgid "There was an error while processing some features. Please try again or you can skip this process for now"
|
9908 |
msgstr ""
|
9909 |
|
9910 |
-
#: languages/vue.php:
|
9911 |
msgid "Which website features would you like to enable?"
|
9912 |
msgstr ""
|
9913 |
|
9914 |
-
#: languages/vue.php:
|
9915 |
msgid "We’ve already selected our recommended features based on your site. "
|
9916 |
msgstr ""
|
9917 |
|
9918 |
-
#: languages/vue.php:
|
9919 |
msgid "Continue"
|
9920 |
msgstr ""
|
9921 |
|
9922 |
-
#: languages/vue.php:
|
9923 |
msgid "Standard Analytics & Reports"
|
9924 |
msgstr ""
|
9925 |
|
9926 |
-
#: languages/vue.php:
|
9927 |
msgid "Get the reports and stats that matter right inside your WordPress Dashboard."
|
9928 |
msgstr ""
|
9929 |
|
9930 |
-
#: languages/vue.php:
|
9931 |
msgid "Helps you see what links your users are clicking on your site."
|
9932 |
msgstr ""
|
9933 |
|
9934 |
-
#: languages/vue.php:
|
9935 |
msgid "All In One SEO Toolkit"
|
9936 |
msgstr ""
|
9937 |
|
9938 |
-
#: languages/vue.php:
|
9939 |
msgid "The best WordPress SEO plugin that works with MonsterInsights to boost your rankings."
|
9940 |
msgstr ""
|
9941 |
|
9942 |
-
#: languages/vue.php:
|
9943 |
msgid "Smart Form Builder by WPForms"
|
9944 |
msgstr ""
|
9945 |
|
9946 |
-
#: languages/vue.php:
|
9947 |
msgid "The most popular WordPress form plugin, trusted by over 5 million websites. Easily create contact forms, payment forms, surveys and more."
|
9948 |
msgstr ""
|
9949 |
|
|
|
|
|
|
|
|
|
9950 |
#: lite/includes/admin/connect.php:42
|
9951 |
msgid "You are not allowed to install plugins."
|
9952 |
msgstr ""
|
2 |
# This file is distributed under the same license as the ExactMetrics Pro plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: ExactMetrics Pro 7.5.0\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/monsterinsights-temp\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"POT-Creation-Date: 2022-03-31T10:45:58+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
|
126 |
#: includes/admin/admin.php:34
|
127 |
#: includes/admin/admin.php:42
|
128 |
#: includes/admin/admin.php:222
|
129 |
+
#: languages/vue.php:523
|
130 |
msgid "Settings"
|
131 |
msgstr ""
|
132 |
|
142 |
|
143 |
#: includes/admin/admin.php:39
|
144 |
#: includes/admin/admin.php:130
|
145 |
+
#: languages/vue.php:1995
|
146 |
msgid "Reports"
|
147 |
msgstr ""
|
148 |
|
152 |
|
153 |
#: includes/admin/admin.php:51
|
154 |
#: languages/gutenberg.php:83
|
155 |
+
#: languages/vue.php:890
|
156 |
msgid "Popular Posts"
|
157 |
msgstr ""
|
158 |
|
186 |
|
187 |
#: includes/admin/admin.php:71
|
188 |
#: includes/admin/admin.php:146
|
189 |
+
#: languages/vue.php:502
|
190 |
msgid "About Us"
|
191 |
msgstr ""
|
192 |
|
205 |
#: includes/admin/admin.php:76
|
206 |
#: includes/admin/notifications/notification-upgrade-to-pro-high-traffic.php:41
|
207 |
#: includes/admin/notifications/notification-upgrade-to-pro.php:33
|
208 |
+
#: languages/vue.php:1421
|
209 |
msgid "Upgrade to Pro"
|
210 |
msgstr ""
|
211 |
|
233 |
|
234 |
#: includes/admin/admin.php:212
|
235 |
#: includes/admin/admin.php:215
|
236 |
+
#: languages/vue.php:914
|
237 |
msgid "Support"
|
238 |
msgstr ""
|
239 |
|
240 |
#: includes/admin/admin.php:229
|
241 |
+
#: includes/admin/notifications/notification-upgrade-eu-traffic.php:61
|
242 |
#: includes/admin/notifications/notification-upgrade-for-custom-dimensions.php:32
|
243 |
#: includes/admin/notifications/notification-upgrade-for-email-summaries.php:32
|
244 |
#: includes/admin/notifications/notification-upgrade-for-events-reporting.php:32
|
245 |
#: includes/admin/notifications/notification-upgrade-for-google-optimize.php:32
|
246 |
#: includes/admin/notifications/notification-upgrade-for-post-templates.php:32
|
247 |
#: includes/admin/reports/abstract-report.php:418
|
248 |
+
#: languages/vue.php:1418
|
249 |
msgid "Get MonsterInsights Pro"
|
250 |
msgstr ""
|
251 |
|
255 |
msgstr ""
|
256 |
|
257 |
#: includes/admin/admin.php:324
|
258 |
+
#: languages/vue.php:487
|
259 |
msgid "Please Setup Website Analytics to See Audience Insights"
|
260 |
msgstr ""
|
261 |
|
262 |
#: includes/admin/admin.php:325
|
263 |
+
#: languages/vue.php:493
|
264 |
msgid "Connect MonsterInsights and Setup Website Analytics"
|
265 |
msgstr ""
|
266 |
|
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:329
|
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 |
|
292 |
#. Translators: Adds a link to the license renewal.
|
293 |
#: includes/admin/admin.php:350
|
294 |
+
#: languages/vue.php:718
|
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:352
|
299 |
+
#: languages/vue.php:721
|
300 |
msgid "Your license key for MonsterInsights has been disabled. Please use a different key."
|
301 |
msgstr ""
|
302 |
|
303 |
#: includes/admin/admin.php:354
|
304 |
+
#: languages/vue.php:724
|
305 |
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."
|
306 |
msgstr ""
|
307 |
|
359 |
msgstr ""
|
360 |
|
361 |
#: includes/admin/ajax.php:55
|
362 |
+
#: includes/admin/routes.php:971
|
363 |
#: lite/includes/admin/onboarding-wizard.php:249
|
364 |
msgid "You are not allowed to install plugins"
|
365 |
msgstr ""
|
505 |
msgstr ""
|
506 |
|
507 |
#: includes/admin/common.php:951
|
508 |
+
#: languages/vue.php:3487
|
509 |
msgid "See how your website performed this year and find tips along the way to help grow even more in 2022!"
|
510 |
msgstr ""
|
511 |
|
526 |
|
527 |
#: includes/admin/exclude-page-metabox.php:102
|
528 |
#: languages/gutenberg.php:149
|
529 |
+
#: languages/vue.php:2391
|
530 |
msgid "Upgrade"
|
531 |
msgstr ""
|
532 |
|
555 |
|
556 |
#: includes/admin/notification-event.php:256
|
557 |
#: includes/admin/routes.php:873
|
558 |
+
#: includes/admin/routes.php:1211
|
559 |
msgid "You don't have permission to view MonsterInsights reports."
|
560 |
msgstr ""
|
561 |
|
656 |
msgid "Traffic from mobile devices is considerably lower on your site compared to desktop devices. This could be an indicator that your site is not optimised for mobile devices.<br><br>Take a look now at %show your site looks%s on mobile and make sure all your content can be accessed correctly."
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: includes/admin/notifications/notification-multiple-gtags.php:39
|
660 |
msgid "Multiple Google Analytics Tags Found"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: includes/admin/notifications/notification-multiple-gtags.php:40
|
664 |
msgid "MonsterInsights has detected multiple analytics tags on your website. Please disable the other plugin to ensure accurate tracking."
|
665 |
msgstr ""
|
666 |
|
709 |
msgid "Your website traffic is decreasing and that’s a reason to take action now. Less traffic means less opportunities to make your brand known, make relationships and ultimately sell your service or product. <br><br>Follow the marketing hacks of %sthis article%s to start growing your traffic again."
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: includes/admin/notifications/notification-upgrade-eu-traffic.php:56
|
713 |
msgid "Help Your Site Become GDPR Compliant"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: includes/admin/notifications/notification-upgrade-eu-traffic.php:57
|
717 |
msgid "Your site is receiving traffic from the EU. Help ensure your site is more compliant with GDPR by upgrading to MonsterInsights Pro and enable our EU Privacy addon."
|
718 |
msgstr ""
|
719 |
|
933 |
msgstr ""
|
934 |
|
935 |
#: includes/admin/reports/overview.php:34
|
936 |
+
#: languages/vue.php:577
|
937 |
msgid "Overview"
|
938 |
msgstr ""
|
939 |
|
1058 |
msgstr ""
|
1059 |
|
1060 |
#: includes/admin/routes.php:885
|
1061 |
+
#: includes/admin/routes.php:1223
|
1062 |
msgid "You can't view MonsterInsights reports because you are not licensed."
|
1063 |
msgstr ""
|
1064 |
|
1065 |
#: includes/admin/routes.php:886
|
1066 |
+
#: includes/admin/routes.php:1224
|
1067 |
msgid "Add your license"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
#: includes/admin/routes.php:893
|
1071 |
+
#: includes/admin/routes.php:1231
|
1072 |
msgid "You can't view MonsterInsights reports due to license key errors."
|
1073 |
msgstr ""
|
1074 |
|
1075 |
#: includes/admin/routes.php:901
|
1076 |
+
#: includes/admin/routes.php:1239
|
1077 |
msgid "You must authenticate with MonsterInsights before you can view reports."
|
1078 |
msgstr ""
|
1079 |
|
1080 |
#: includes/admin/routes.php:907
|
1081 |
+
#: includes/admin/routes.php:1245
|
1082 |
msgid "Unknown report. Try refreshing and retrying. Contact support if this issue persists."
|
1083 |
msgstr ""
|
1084 |
|
1085 |
+
#: includes/admin/routes.php:959
|
1086 |
+
#: includes/admin/routes.php:1293
|
1087 |
msgid "We encountered an error when fetching the report data."
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: includes/admin/routes.php:979
|
1091 |
msgid "Missing plugin name."
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: includes/admin/routes.php:1123
|
1095 |
msgid "Homepage"
|
1096 |
msgstr ""
|
1097 |
|
1429 |
msgstr ""
|
1430 |
|
1431 |
#: includes/gutenberg/headline-tool/headline-tool.php:290
|
1432 |
+
#: languages/vue.php:530
|
1433 |
msgid "General"
|
1434 |
msgstr ""
|
1435 |
|
3659 |
msgstr ""
|
3660 |
|
3661 |
#: includes/helpers.php:385
|
3662 |
+
#: includes/helpers.php:1770
|
3663 |
msgid "Canada"
|
3664 |
msgstr ""
|
3665 |
|
3666 |
#: includes/helpers.php:386
|
3667 |
+
#: includes/helpers.php:1815
|
3668 |
msgid "United Kingdom"
|
3669 |
msgstr ""
|
3670 |
|
3705 |
msgstr ""
|
3706 |
|
3707 |
#: includes/helpers.php:396
|
3708 |
+
#: includes/helpers.php:1763
|
3709 |
msgid "Antigua and Barbuda"
|
3710 |
msgstr ""
|
3711 |
|
3722 |
msgstr ""
|
3723 |
|
3724 |
#: includes/helpers.php:400
|
3725 |
+
#: includes/helpers.php:1764
|
3726 |
msgid "Australia"
|
3727 |
msgstr ""
|
3728 |
|
3747 |
msgstr ""
|
3748 |
|
3749 |
#: includes/helpers.php:406
|
3750 |
+
#: includes/helpers.php:1765
|
3751 |
msgid "Barbados"
|
3752 |
msgstr ""
|
3753 |
|
3760 |
msgstr ""
|
3761 |
|
3762 |
#: includes/helpers.php:409
|
3763 |
+
#: includes/helpers.php:1766
|
3764 |
msgid "Belize"
|
3765 |
msgstr ""
|
3766 |
|
3789 |
msgstr ""
|
3790 |
|
3791 |
#: includes/helpers.php:416
|
3792 |
+
#: includes/helpers.php:1767
|
3793 |
msgid "Botswana"
|
3794 |
msgstr ""
|
3795 |
|
3818 |
msgstr ""
|
3819 |
|
3820 |
#: includes/helpers.php:423
|
3821 |
+
#: includes/helpers.php:1768
|
3822 |
msgid "Burundi"
|
3823 |
msgstr ""
|
3824 |
|
3827 |
msgstr ""
|
3828 |
|
3829 |
#: includes/helpers.php:425
|
3830 |
+
#: includes/helpers.php:1769
|
3831 |
msgid "Cameroon"
|
3832 |
msgstr ""
|
3833 |
|
3920 |
msgstr ""
|
3921 |
|
3922 |
#: includes/helpers.php:448
|
3923 |
+
#: includes/helpers.php:1771
|
3924 |
msgid "Dominica"
|
3925 |
msgstr ""
|
3926 |
|
3969 |
msgstr ""
|
3970 |
|
3971 |
#: includes/helpers.php:460
|
3972 |
+
#: includes/helpers.php:1772
|
3973 |
msgid "Fiji"
|
3974 |
msgstr ""
|
3975 |
|
3998 |
msgstr ""
|
3999 |
|
4000 |
#: includes/helpers.php:467
|
4001 |
+
#: includes/helpers.php:1775
|
4002 |
msgid "Gambia"
|
4003 |
msgstr ""
|
4004 |
|
4015 |
msgstr ""
|
4016 |
|
4017 |
#: includes/helpers.php:471
|
4018 |
+
#: includes/helpers.php:1776
|
4019 |
msgid "Ghana"
|
4020 |
msgstr ""
|
4021 |
|
4028 |
msgstr ""
|
4029 |
|
4030 |
#: includes/helpers.php:474
|
4031 |
+
#: includes/helpers.php:1773
|
4032 |
msgid "Grenada"
|
4033 |
msgstr ""
|
4034 |
|
4057 |
msgstr ""
|
4058 |
|
4059 |
#: includes/helpers.php:481
|
4060 |
+
#: includes/helpers.php:1774
|
4061 |
msgid "Guyana"
|
4062 |
msgstr ""
|
4063 |
|
4090 |
msgstr ""
|
4091 |
|
4092 |
#: includes/helpers.php:489
|
4093 |
+
#: includes/helpers.php:1778
|
4094 |
msgid "India"
|
4095 |
msgstr ""
|
4096 |
|
4107 |
msgstr ""
|
4108 |
|
4109 |
#: includes/helpers.php:493
|
4110 |
+
#: includes/helpers.php:1777
|
4111 |
msgid "Ireland"
|
4112 |
msgstr ""
|
4113 |
|
4124 |
msgstr ""
|
4125 |
|
4126 |
#: includes/helpers.php:497
|
4127 |
+
#: includes/helpers.php:1779
|
4128 |
msgid "Jamaica"
|
4129 |
msgstr ""
|
4130 |
|
4145 |
msgstr ""
|
4146 |
|
4147 |
#: includes/helpers.php:502
|
4148 |
+
#: includes/helpers.php:1780
|
4149 |
msgid "Kenya"
|
4150 |
msgstr ""
|
4151 |
|
4152 |
#: includes/helpers.php:503
|
4153 |
+
#: includes/helpers.php:1781
|
4154 |
msgid "Kiribati"
|
4155 |
msgstr ""
|
4156 |
|
4175 |
msgstr ""
|
4176 |
|
4177 |
#: includes/helpers.php:509
|
4178 |
+
#: includes/helpers.php:1782
|
4179 |
msgid "Lesotho"
|
4180 |
msgstr ""
|
4181 |
|
4182 |
#: includes/helpers.php:510
|
4183 |
+
#: includes/helpers.php:1783
|
4184 |
msgid "Liberia"
|
4185 |
msgstr ""
|
4186 |
|
4213 |
msgstr ""
|
4214 |
|
4215 |
#: includes/helpers.php:518
|
4216 |
+
#: includes/helpers.php:1784
|
4217 |
msgid "Malawi"
|
4218 |
msgstr ""
|
4219 |
|
4230 |
msgstr ""
|
4231 |
|
4232 |
#: includes/helpers.php:522
|
4233 |
+
#: includes/helpers.php:1785
|
4234 |
msgid "Malta"
|
4235 |
msgstr ""
|
4236 |
|
4237 |
#: includes/helpers.php:523
|
4238 |
+
#: includes/helpers.php:1786
|
4239 |
msgid "Marshall Islands"
|
4240 |
msgstr ""
|
4241 |
|
4248 |
msgstr ""
|
4249 |
|
4250 |
#: includes/helpers.php:526
|
4251 |
+
#: includes/helpers.php:1787
|
4252 |
msgid "Mauritius"
|
4253 |
msgstr ""
|
4254 |
|
4261 |
msgstr ""
|
4262 |
|
4263 |
#: includes/helpers.php:529
|
4264 |
+
#: includes/helpers.php:1788
|
4265 |
msgid "Micronesia"
|
4266 |
msgstr ""
|
4267 |
|
4298 |
msgstr ""
|
4299 |
|
4300 |
#: includes/helpers.php:538
|
4301 |
+
#: includes/helpers.php:1790
|
4302 |
msgid "Namibia"
|
4303 |
msgstr ""
|
4304 |
|
4305 |
#: includes/helpers.php:539
|
4306 |
+
#: includes/helpers.php:1791
|
4307 |
msgid "Nauru"
|
4308 |
msgstr ""
|
4309 |
|
4324 |
msgstr ""
|
4325 |
|
4326 |
#: includes/helpers.php:544
|
4327 |
+
#: includes/helpers.php:1789
|
4328 |
msgid "New Zealand"
|
4329 |
msgstr ""
|
4330 |
|
4337 |
msgstr ""
|
4338 |
|
4339 |
#: includes/helpers.php:547
|
4340 |
+
#: includes/helpers.php:1792
|
4341 |
msgid "Nigeria"
|
4342 |
msgstr ""
|
4343 |
|
4366 |
msgstr ""
|
4367 |
|
4368 |
#: includes/helpers.php:554
|
4369 |
+
#: includes/helpers.php:1793
|
4370 |
msgid "Pakistan"
|
4371 |
msgstr ""
|
4372 |
|
4373 |
#: includes/helpers.php:555
|
4374 |
+
#: includes/helpers.php:1794
|
4375 |
msgid "Palau"
|
4376 |
msgstr ""
|
4377 |
|
4384 |
msgstr ""
|
4385 |
|
4386 |
#: includes/helpers.php:558
|
4387 |
+
#: includes/helpers.php:1795
|
4388 |
msgid "Papua New Guinea"
|
4389 |
msgstr ""
|
4390 |
|
4397 |
msgstr ""
|
4398 |
|
4399 |
#: includes/helpers.php:561
|
4400 |
+
#: includes/helpers.php:1796
|
4401 |
msgid "Philippines"
|
4402 |
msgstr ""
|
4403 |
|
4438 |
msgstr ""
|
4439 |
|
4440 |
#: includes/helpers.php:571
|
4441 |
+
#: includes/helpers.php:1797
|
4442 |
msgid "Rwanda"
|
4443 |
msgstr ""
|
4444 |
|
4495 |
msgstr ""
|
4496 |
|
4497 |
#: includes/helpers.php:585
|
4498 |
+
#: includes/helpers.php:1804
|
4499 |
msgid "Seychelles"
|
4500 |
msgstr ""
|
4501 |
|
4502 |
#: includes/helpers.php:586
|
4503 |
+
#: includes/helpers.php:1805
|
4504 |
msgid "Sierra Leone"
|
4505 |
msgstr ""
|
4506 |
|
4507 |
#: includes/helpers.php:587
|
4508 |
+
#: includes/helpers.php:1798
|
4509 |
msgid "Singapore"
|
4510 |
msgstr ""
|
4511 |
|
4518 |
msgstr ""
|
4519 |
|
4520 |
#: includes/helpers.php:590
|
4521 |
+
#: includes/helpers.php:1806
|
4522 |
msgid "Solomon Islands"
|
4523 |
msgstr ""
|
4524 |
|
4527 |
msgstr ""
|
4528 |
|
4529 |
#: includes/helpers.php:592
|
4530 |
+
#: includes/helpers.php:1807
|
4531 |
msgid "South Africa"
|
4532 |
msgstr ""
|
4533 |
|
4540 |
msgstr ""
|
4541 |
|
4542 |
#: includes/helpers.php:595
|
4543 |
+
#: includes/helpers.php:1808
|
4544 |
msgid "South Sudan"
|
4545 |
msgstr ""
|
4546 |
|
4553 |
msgstr ""
|
4554 |
|
4555 |
#: includes/helpers.php:598
|
4556 |
+
#: includes/helpers.php:1809
|
4557 |
msgid "Sudan"
|
4558 |
msgstr ""
|
4559 |
|
4566 |
msgstr ""
|
4567 |
|
4568 |
#: includes/helpers.php:601
|
4569 |
+
#: includes/helpers.php:1802
|
4570 |
msgid "Swaziland"
|
4571 |
msgstr ""
|
4572 |
|
4591 |
msgstr ""
|
4592 |
|
4593 |
#: includes/helpers.php:607
|
4594 |
+
#: includes/helpers.php:1812
|
4595 |
msgid "Tanzania"
|
4596 |
msgstr ""
|
4597 |
|
4612 |
msgstr ""
|
4613 |
|
4614 |
#: includes/helpers.php:612
|
4615 |
+
#: includes/helpers.php:1813
|
4616 |
msgid "Tonga"
|
4617 |
msgstr ""
|
4618 |
|
4619 |
#: includes/helpers.php:613
|
4620 |
+
#: includes/helpers.php:1810
|
4621 |
msgid "Trinidad and Tobago"
|
4622 |
msgstr ""
|
4623 |
|
4638 |
msgstr ""
|
4639 |
|
4640 |
#: includes/helpers.php:618
|
4641 |
+
#: includes/helpers.php:1814
|
4642 |
msgid "Tuvalu"
|
4643 |
msgstr ""
|
4644 |
|
4645 |
#: includes/helpers.php:619
|
4646 |
+
#: includes/helpers.php:1817
|
4647 |
msgid "Uganda"
|
4648 |
msgstr ""
|
4649 |
|
4668 |
msgstr ""
|
4669 |
|
4670 |
#: includes/helpers.php:625
|
4671 |
+
#: includes/helpers.php:1818
|
4672 |
msgid "Vanuatu"
|
4673 |
msgstr ""
|
4674 |
|
4705 |
msgstr ""
|
4706 |
|
4707 |
#: includes/helpers.php:634
|
4708 |
+
#: includes/helpers.php:1819
|
4709 |
msgid "Zambia"
|
4710 |
msgstr ""
|
4711 |
|
4712 |
#: includes/helpers.php:635
|
4713 |
+
#: includes/helpers.php:1820
|
4714 |
msgid "Zimbabwe"
|
4715 |
msgstr ""
|
4716 |
|
4728 |
msgid "%1$sWe have detected multiple tracking codes%2$s! You should remove non-MonsterInsights ones. If you need help finding them please %3$sread this article%4$s."
|
4729 |
msgstr ""
|
4730 |
|
4731 |
+
#: includes/helpers.php:1799
|
4732 |
msgid "St Kitts and Nevis"
|
4733 |
msgstr ""
|
4734 |
|
4735 |
+
#: includes/helpers.php:1800
|
4736 |
msgid "St Lucia"
|
4737 |
msgstr ""
|
4738 |
|
4739 |
+
#: includes/helpers.php:1801
|
4740 |
msgid "St Vincent and the Grenadines"
|
4741 |
msgstr ""
|
4742 |
|
4743 |
+
#: includes/helpers.php:1803
|
4744 |
msgid "Samoa"
|
4745 |
msgstr ""
|
4746 |
|
4747 |
+
#: includes/helpers.php:1811
|
4748 |
msgid "The Bahamas"
|
4749 |
msgstr ""
|
4750 |
|
4751 |
+
#: includes/helpers.php:1816
|
4752 |
msgid "United States of America"
|
4753 |
msgstr ""
|
4754 |
|
4829 |
msgstr ""
|
4830 |
|
4831 |
#: languages/gutenberg.php:77
|
4832 |
+
#: languages/vue.php:512
|
4833 |
msgid "Inline Popular Posts"
|
4834 |
msgstr ""
|
4835 |
|
4866 |
msgstr ""
|
4867 |
|
4868 |
#: languages/gutenberg.php:107
|
4869 |
+
#: languages/vue.php:2988
|
4870 |
msgid "Wide-Layout Options"
|
4871 |
msgstr ""
|
4872 |
|
4875 |
msgstr ""
|
4876 |
|
4877 |
#: languages/gutenberg.php:113
|
4878 |
+
#: languages/vue.php:2991
|
4879 |
msgid "Adjust the number of columns displayed when the widget is placed in a wide container."
|
4880 |
msgstr ""
|
4881 |
|
4882 |
#: languages/gutenberg.php:116
|
4883 |
+
#: languages/vue.php:3012
|
4884 |
msgid "Post Count"
|
4885 |
msgstr ""
|
4886 |
|
4889 |
msgstr ""
|
4890 |
|
4891 |
#: languages/gutenberg.php:122
|
4892 |
+
#: languages/vue.php:2994
|
4893 |
msgid "Display Options"
|
4894 |
msgstr ""
|
4895 |
|
4902 |
msgstr ""
|
4903 |
|
4904 |
#: languages/gutenberg.php:131
|
4905 |
+
#: languages/vue.php:2804
|
4906 |
msgid "Widget Title"
|
4907 |
msgstr ""
|
4908 |
|
4911 |
msgstr ""
|
4912 |
|
4913 |
#: languages/gutenberg.php:137
|
4914 |
+
#: languages/vue.php:3000
|
4915 |
msgid "Display Author"
|
4916 |
msgstr ""
|
4917 |
|
4918 |
#: languages/gutenberg.php:140
|
4919 |
+
#: languages/vue.php:3003
|
4920 |
msgid "Display Date"
|
4921 |
msgstr ""
|
4922 |
|
4923 |
#: languages/gutenberg.php:143
|
4924 |
+
#: languages/vue.php:3006
|
4925 |
msgid "Display Comments"
|
4926 |
msgstr ""
|
4927 |
|
5142 |
msgstr ""
|
5143 |
|
5144 |
#: languages/gutenberg.php:324
|
5145 |
+
#: languages/vue.php:868
|
5146 |
msgid "Headline Analyzer"
|
5147 |
msgstr ""
|
5148 |
|
5592 |
msgid "Custom Dimensions"
|
5593 |
msgstr ""
|
5594 |
|
5595 |
+
#: languages/vue.php:342
|
5596 |
msgid "Author Tracking"
|
5597 |
msgstr ""
|
5598 |
|
5599 |
+
#: languages/vue.php:345
|
5600 |
msgid "Google Optimize"
|
5601 |
msgstr ""
|
5602 |
|
5603 |
+
#: languages/vue.php:348
|
5604 |
msgid "Category / Tags Tracking"
|
5605 |
msgstr ""
|
5606 |
|
5607 |
+
#: languages/vue.php:351
|
5608 |
msgid "WooCommerce"
|
5609 |
msgstr ""
|
5610 |
|
5611 |
+
#: languages/vue.php:354
|
5612 |
msgid "Easy Digital Downloads"
|
5613 |
msgstr ""
|
5614 |
|
5615 |
+
#: languages/vue.php:357
|
5616 |
msgid "MemberPress"
|
5617 |
msgstr ""
|
5618 |
|
5619 |
+
#: languages/vue.php:360
|
5620 |
msgid "LifterLMS"
|
5621 |
msgstr ""
|
5622 |
|
5623 |
#. Translators: Current PHP version and recommended PHP version.
|
5624 |
+
#: languages/vue.php:364
|
5625 |
msgid "MonsterInsights has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. WordPress stopped supporting your PHP version in April, 2019. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure."
|
5626 |
msgstr ""
|
5627 |
|
5628 |
#. Translators: Current WordPress version.
|
5629 |
+
#: languages/vue.php:368
|
5630 |
msgid "MonsterInsights has detected that your site is running an outdated version of WordPress (%s). MonsterInsights will stop supporting WordPress versions lower than 4.9 in 2020. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
|
5631 |
msgstr ""
|
5632 |
|
5633 |
+
#: languages/vue.php:371
|
5634 |
msgid "Yikes! PHP Update Required"
|
5635 |
msgstr ""
|
5636 |
|
5637 |
#. Translators: Current PHP version and recommended PHP version.
|
5638 |
+
#: languages/vue.php:375
|
5639 |
msgid "MonsterInsights has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure."
|
5640 |
msgstr ""
|
5641 |
|
5642 |
+
#: languages/vue.php:378
|
5643 |
msgid "Learn more about updating PHP"
|
5644 |
msgstr ""
|
5645 |
|
5646 |
+
#: languages/vue.php:381
|
5647 |
msgid "Yikes! WordPress Update Required"
|
5648 |
msgstr ""
|
5649 |
|
5650 |
#. Translators: Current WordPress version.
|
5651 |
+
#: languages/vue.php:385
|
5652 |
msgid "MonsterInsights has detected that your site is running an outdated version of WordPress (%s). Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
|
5653 |
msgstr ""
|
5654 |
|
5655 |
+
#: languages/vue.php:388
|
5656 |
msgid "Learn more about updating WordPress"
|
5657 |
msgstr ""
|
5658 |
|
5659 |
+
#: languages/vue.php:391
|
5660 |
msgid "MonsterInsights encountered an error loading your report data"
|
5661 |
msgstr ""
|
5662 |
|
5663 |
+
#: languages/vue.php:394
|
5664 |
msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
|
5665 |
msgstr ""
|
5666 |
|
5668 |
msgid "Reconnect MonsterInsights"
|
5669 |
msgstr ""
|
5670 |
|
5671 |
+
#: languages/vue.php:402
|
5672 |
msgid "Re-Authenticating"
|
5673 |
msgstr ""
|
5674 |
|
5675 |
+
#: languages/vue.php:406
|
5676 |
msgid "Ok"
|
5677 |
msgstr ""
|
5678 |
|
5679 |
+
#: languages/vue.php:409
|
5680 |
msgid "See Quick Links"
|
5681 |
msgstr ""
|
5682 |
|
5683 |
+
#: languages/vue.php:412
|
5684 |
msgid "Suggest a Feature"
|
5685 |
msgstr ""
|
5686 |
|
5687 |
+
#: languages/vue.php:415
|
5688 |
msgid "Join Our Community"
|
5689 |
msgstr ""
|
5690 |
|
5691 |
+
#: languages/vue.php:418
|
5692 |
msgid "Support & Docs"
|
5693 |
msgstr ""
|
5694 |
|
5695 |
+
#: languages/vue.php:421
|
5696 |
msgid "Upgrade to Pro »"
|
5697 |
msgstr ""
|
5698 |
|
5699 |
#. Translators: Placeholder is replaced with WPForms.
|
5700 |
+
#: languages/vue.php:425
|
5701 |
msgid "Recommended Plugin: %s"
|
5702 |
msgstr ""
|
5703 |
|
5704 |
+
#: languages/vue.php:430
|
5705 |
msgid "Install"
|
5706 |
msgstr ""
|
5707 |
|
5708 |
+
#: languages/vue.php:435
|
5709 |
msgid "Activate"
|
5710 |
msgstr ""
|
5711 |
|
5712 |
+
#: languages/vue.php:443
|
5713 |
msgid "Powered by MonsterInsights"
|
5714 |
msgstr ""
|
5715 |
|
5716 |
+
#: languages/vue.php:446
|
5717 |
#: lite/includes/admin/wp-site-health.php:253
|
5718 |
msgid "View Reports"
|
5719 |
msgstr ""
|
5720 |
|
5721 |
+
#: languages/vue.php:449
|
5722 |
msgid "Congratulations!"
|
5723 |
msgstr ""
|
5724 |
|
5725 |
#. Translators: Add link to YouTube video and Onboarding Wizard.
|
5726 |
+
#: languages/vue.php:453
|
5727 |
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."
|
5728 |
msgstr ""
|
5729 |
|
5730 |
#. Translators: Add link to YouTube video and Onboarding Wizard.
|
5731 |
+
#: languages/vue.php:457
|
5732 |
msgid "Onboarding Wizard"
|
5733 |
msgstr ""
|
5734 |
|
5735 |
+
#: languages/vue.php:460
|
5736 |
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."
|
5737 |
msgstr ""
|
5738 |
|
5739 |
+
#: languages/vue.php:463
|
5740 |
msgid "Save Changes"
|
5741 |
msgstr ""
|
5742 |
|
5743 |
+
#: languages/vue.php:466
|
5744 |
msgid "Inbox"
|
5745 |
msgstr ""
|
5746 |
|
5747 |
+
#: languages/vue.php:469
|
5748 |
msgid "Back to Inbox"
|
5749 |
msgstr ""
|
5750 |
|
5751 |
+
#: languages/vue.php:472
|
5752 |
msgid "View Dismissed"
|
5753 |
msgstr ""
|
5754 |
|
5755 |
+
#: languages/vue.php:475
|
5756 |
msgid "Notifications"
|
5757 |
msgstr ""
|
5758 |
|
5759 |
+
#: languages/vue.php:478
|
5760 |
msgid "Dismiss All"
|
5761 |
msgstr ""
|
5762 |
|
5763 |
+
#: languages/vue.php:481
|
5764 |
msgid "Dismissed"
|
5765 |
msgstr ""
|
5766 |
|
5767 |
+
#: languages/vue.php:484
|
5768 |
msgid "No Notifications"
|
5769 |
msgstr ""
|
5770 |
|
5771 |
+
#: languages/vue.php:496
|
5772 |
msgid "Import Export"
|
5773 |
msgstr ""
|
5774 |
|
5775 |
+
#: languages/vue.php:499
|
5776 |
msgid "PrettyLinks Integration"
|
5777 |
msgstr ""
|
5778 |
|
5779 |
+
#: languages/vue.php:505
|
5780 |
msgid "Getting Started"
|
5781 |
msgstr ""
|
5782 |
|
5783 |
+
#: languages/vue.php:508
|
5784 |
msgid "Lite vs Pro"
|
5785 |
msgstr ""
|
5786 |
|
5787 |
+
#: languages/vue.php:516
|
5788 |
msgid "Popular Posts Widget"
|
5789 |
msgstr ""
|
5790 |
|
5791 |
+
#: languages/vue.php:520
|
5792 |
msgid "Popular Products"
|
5793 |
msgstr ""
|
5794 |
|
5795 |
+
#: languages/vue.php:526
|
5796 |
msgid "Sub menu item for WooCommerce Analytics"
|
5797 |
msgstr ""
|
5798 |
|
5799 |
+
#: languages/vue.php:534
|
5800 |
msgid "Engagement"
|
5801 |
msgstr ""
|
5802 |
|
5803 |
+
#: languages/vue.php:538
|
5804 |
#: lite/includes/admin/reports/report-ecommerce.php:22
|
5805 |
msgid "eCommerce"
|
5806 |
msgstr ""
|
5807 |
|
5808 |
+
#: languages/vue.php:542
|
5809 |
msgid "Publisher"
|
5810 |
msgstr ""
|
5811 |
|
5812 |
+
#: languages/vue.php:546
|
5813 |
msgid "Conversions"
|
5814 |
msgstr ""
|
5815 |
|
5816 |
+
#: languages/vue.php:550
|
5817 |
msgid "Advanced"
|
5818 |
msgstr ""
|
5819 |
|
5820 |
+
#: languages/vue.php:553
|
5821 |
msgid "URL Builder"
|
5822 |
msgstr ""
|
5823 |
|
5824 |
+
#: languages/vue.php:556
|
5825 |
msgid "MonsterInsights Addons"
|
5826 |
msgstr ""
|
5827 |
|
5828 |
+
#: languages/vue.php:559
|
5829 |
msgid "Search Addons"
|
5830 |
msgstr ""
|
5831 |
|
5832 |
+
#: languages/vue.php:562
|
5833 |
msgid "Exit Setup"
|
5834 |
msgstr ""
|
5835 |
|
5836 |
+
#: languages/vue.php:565
|
5837 |
msgid "You must connect with MonsterInsights before you can view reports."
|
5838 |
msgstr ""
|
5839 |
|
5840 |
+
#: languages/vue.php:568
|
5841 |
msgid "MonsterInsights makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
|
5842 |
msgstr ""
|
5843 |
|
5844 |
+
#: languages/vue.php:571
|
5845 |
msgid "Launch Setup Wizard"
|
5846 |
msgstr ""
|
5847 |
|
5848 |
+
#: languages/vue.php:574
|
5849 |
msgid "Please ask your webmaster to connect MonsterInsights to Google Analytics."
|
5850 |
msgstr ""
|
5851 |
|
5852 |
+
#: languages/vue.php:580
|
5853 |
#: lite/includes/admin/reports/report-publisher.php:22
|
5854 |
msgid "Publishers"
|
5855 |
msgstr ""
|
5856 |
|
5857 |
+
#: languages/vue.php:583
|
5858 |
#: lite/includes/admin/reports/report-queries.php:22
|
5859 |
msgid "Search Console"
|
5860 |
msgstr ""
|
5861 |
|
5862 |
+
#: languages/vue.php:586
|
5863 |
#: lite/includes/admin/reports/report-dimensions.php:22
|
5864 |
msgid "Dimensions"
|
5865 |
msgstr ""
|
5866 |
|
5867 |
+
#: languages/vue.php:589
|
5868 |
#: lite/includes/admin/reports/report-forms.php:22
|
5869 |
msgid "Forms"
|
5870 |
msgstr ""
|
5871 |
|
5872 |
+
#: languages/vue.php:592
|
5873 |
msgid "Real-Time"
|
5874 |
msgstr ""
|
5875 |
|
5876 |
+
#: languages/vue.php:596
|
5877 |
msgid "Site Speed"
|
5878 |
msgstr ""
|
5879 |
|
5880 |
+
#: languages/vue.php:599
|
5881 |
msgid "2020 Year in Review"
|
5882 |
msgstr ""
|
5883 |
|
5884 |
#. Translators: Error status and error text.
|
5885 |
+
#: languages/vue.php:603
|
5886 |
msgid "Can't load report data. Error: %1$s, %2$s"
|
5887 |
msgstr ""
|
5888 |
|
5889 |
+
#: languages/vue.php:606
|
5890 |
msgid "Error loading report data"
|
5891 |
msgstr ""
|
5892 |
|
5893 |
+
#: languages/vue.php:609
|
5894 |
msgid "Publishers Report"
|
5895 |
msgstr ""
|
5896 |
|
5897 |
+
#: languages/vue.php:612
|
5898 |
msgid "eCommerce Report"
|
5899 |
msgstr ""
|
5900 |
|
5901 |
+
#: languages/vue.php:615
|
5902 |
msgid "Search Console Report"
|
5903 |
msgstr ""
|
5904 |
|
5905 |
+
#: languages/vue.php:618
|
5906 |
msgid "Dimensions Report"
|
5907 |
msgstr ""
|
5908 |
|
5909 |
+
#: languages/vue.php:621
|
5910 |
msgid "Forms Report"
|
5911 |
msgstr ""
|
5912 |
|
5913 |
+
#: languages/vue.php:624
|
5914 |
msgid "Real-Time Report"
|
5915 |
msgstr ""
|
5916 |
|
5917 |
+
#: languages/vue.php:627
|
5918 |
msgid "Site Speed Report"
|
5919 |
msgstr ""
|
5920 |
|
5921 |
+
#: languages/vue.php:630
|
5922 |
msgid "Time to Purchase"
|
5923 |
msgstr ""
|
5924 |
|
5925 |
+
#: languages/vue.php:633
|
5926 |
msgid "This list shows how many days from first visit it took users to purchase products from your site."
|
5927 |
msgstr ""
|
5928 |
|
5929 |
+
#: languages/vue.php:636
|
5930 |
msgid "Sessions to Purchase"
|
5931 |
msgstr ""
|
5932 |
|
5933 |
+
#: languages/vue.php:639
|
5934 |
msgid "This list shows the number of sessions it took users before they purchased a product from your website."
|
5935 |
msgstr ""
|
5936 |
|
5937 |
+
#: languages/vue.php:642
|
5938 |
msgid "New Customers"
|
5939 |
msgstr ""
|
5940 |
|
5941 |
+
#: languages/vue.php:645
|
5942 |
msgid "This list shows the percentage of new customers who purchased a product from your website."
|
5943 |
msgstr ""
|
5944 |
|
5945 |
+
#: languages/vue.php:648
|
5946 |
msgid "Abandoned Checkouts"
|
5947 |
msgstr ""
|
5948 |
|
5949 |
+
#: languages/vue.php:651
|
5950 |
msgid "This list shows the percentage of carts that never went through the checkout process."
|
5951 |
msgstr ""
|
5952 |
|
5953 |
+
#: languages/vue.php:654
|
5954 |
msgid "Top Posts/Pages"
|
5955 |
msgstr ""
|
5956 |
|
5957 |
+
#: languages/vue.php:657
|
5958 |
msgid "This list shows the most viewed posts and pages on your website."
|
5959 |
msgstr ""
|
5960 |
|
5961 |
+
#: languages/vue.php:660
|
5962 |
msgid "New vs. Returning Visitors"
|
5963 |
msgstr ""
|
5964 |
|
5965 |
+
#: languages/vue.php:663
|
5966 |
msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
|
5967 |
msgstr ""
|
5968 |
|
5969 |
+
#: languages/vue.php:666
|
5970 |
msgid "Device Breakdown"
|
5971 |
msgstr ""
|
5972 |
|
5973 |
+
#: languages/vue.php:669
|
5974 |
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."
|
5975 |
msgstr ""
|
5976 |
|
5977 |
+
#: languages/vue.php:672
|
5978 |
msgid "Top Landing Pages"
|
5979 |
msgstr ""
|
5980 |
|
5981 |
+
#: languages/vue.php:675
|
5982 |
msgid "This list shows the top pages users first land on when visiting your website."
|
5983 |
msgstr ""
|
5984 |
|
5985 |
+
#: languages/vue.php:678
|
5986 |
msgid "Top Exit Pages"
|
5987 |
msgstr ""
|
5988 |
|
5989 |
+
#: languages/vue.php:681
|
5990 |
msgid "This list shows the top pages users exit your website from."
|
5991 |
msgstr ""
|
5992 |
|
5993 |
+
#: languages/vue.php:684
|
5994 |
msgid "Top Outbound Links"
|
5995 |
msgstr ""
|
5996 |
|
5997 |
+
#: languages/vue.php:687
|
5998 |
msgid "This list shows the top links clicked on your website that go to another website."
|
5999 |
msgstr ""
|
6000 |
|
6001 |
+
#: languages/vue.php:690
|
6002 |
msgid "Top Affiliate Links"
|
6003 |
msgstr ""
|
6004 |
|
6005 |
+
#: languages/vue.php:693
|
6006 |
msgid "This list shows the top affiliate links your visitors clicked on."
|
6007 |
msgstr ""
|
6008 |
|
6014 |
msgid "This list shows the download links your visitors clicked the most."
|
6015 |
msgstr ""
|
6016 |
|
6017 |
+
#: languages/vue.php:702
|
6018 |
msgid "Top Products"
|
6019 |
msgstr ""
|
6020 |
|
6021 |
+
#: languages/vue.php:705
|
6022 |
msgid "This list shows the top selling products on your website."
|
6023 |
msgstr ""
|
6024 |
|
6025 |
+
#: languages/vue.php:708
|
6026 |
msgid "Top Conversion Sources"
|
6027 |
msgstr ""
|
6028 |
|
6029 |
+
#: languages/vue.php:711
|
6030 |
msgid "This list shows the top referral websites in terms of product revenue."
|
6031 |
msgstr ""
|
6032 |
|
6033 |
+
#: languages/vue.php:714
|
6034 |
msgid "Total Add/Remove"
|
6035 |
msgstr ""
|
6036 |
|
6037 |
#. Translators: Adds a link to documentation.
|
6038 |
+
#: languages/vue.php:728
|
6039 |
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"
|
6040 |
msgstr ""
|
6041 |
|
6042 |
#. Translators: Adds link to activate/install plugin and documentation.
|
6043 |
+
#: languages/vue.php:732
|
6044 |
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"
|
6045 |
msgstr ""
|
6046 |
|
6047 |
#. Translators: Adds a link to documentation.
|
6048 |
+
#: languages/vue.php:736
|
6049 |
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"
|
6050 |
msgstr ""
|
6051 |
|
6052 |
#. Translators: Adds link to activate/install plugin and documentation.
|
6053 |
+
#: languages/vue.php:740
|
6054 |
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"
|
6055 |
msgstr ""
|
6056 |
|
6057 |
+
#: languages/vue.php:743
|
6058 |
msgid "GDPR Guide"
|
6059 |
msgstr ""
|
6060 |
|
6061 |
+
#: languages/vue.php:746
|
6062 |
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. "
|
6063 |
msgstr ""
|
6064 |
|
6065 |
+
#: languages/vue.php:749
|
6066 |
msgid "How to Install and Activate MonsterInsights Addons"
|
6067 |
msgstr ""
|
6068 |
|
6069 |
+
#: languages/vue.php:752
|
6070 |
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."
|
6071 |
msgstr ""
|
6072 |
|
6073 |
+
#: languages/vue.php:755
|
6074 |
msgid "Enabling eCommerce Tracking and Reports"
|
6075 |
msgstr ""
|
6076 |
|
6077 |
+
#: languages/vue.php:758
|
6078 |
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."
|
6079 |
msgstr ""
|
6080 |
|
6081 |
+
#: languages/vue.php:761
|
6082 |
msgid "Read Documentation"
|
6083 |
msgstr ""
|
6084 |
|
6085 |
+
#: languages/vue.php:764
|
6086 |
msgid "Getting Started with MonsterInsights"
|
6087 |
msgstr ""
|
6088 |
|
6089 |
+
#: languages/vue.php:767
|
6090 |
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."
|
6091 |
msgstr ""
|
6092 |
|
6093 |
+
#: languages/vue.php:770
|
6094 |
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."
|
6095 |
msgstr ""
|
6096 |
|
6097 |
+
#: languages/vue.php:773
|
6098 |
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!."
|
6099 |
msgstr ""
|
6100 |
|
6101 |
+
#: languages/vue.php:776
|
6102 |
msgid "Launch the wizard!"
|
6103 |
msgstr ""
|
6104 |
|
6105 |
+
#: languages/vue.php:779
|
6106 |
msgid "Get MonsterInsights Pro and Unlock all the Powerful Features"
|
6107 |
msgstr ""
|
6108 |
|
6109 |
#. Translators: Makes text bold.
|
6110 |
+
#: languages/vue.php:783
|
6111 |
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."
|
6112 |
msgstr ""
|
6113 |
|
6114 |
+
#: languages/vue.php:786
|
6115 |
msgid "Universal Tracking across devices and campaigns with just a few clicks."
|
6116 |
msgstr ""
|
6117 |
|
6118 |
+
#: languages/vue.php:789
|
6119 |
msgid "See your website analytics reports inside the WordPress dashboard"
|
6120 |
msgstr ""
|
6121 |
|
6122 |
+
#: languages/vue.php:792
|
6123 |
msgid "Get real-time stats right inside WordPress"
|
6124 |
msgstr ""
|
6125 |
|
6126 |
+
#: languages/vue.php:795
|
6127 |
msgid "1-click Google Analytics Enhanced eCommerce tracking"
|
6128 |
msgstr ""
|
6129 |
|
6130 |
+
#: languages/vue.php:798
|
6131 |
msgid "Get detailed stats for each post and page."
|
6132 |
msgstr ""
|
6133 |
|
6134 |
+
#: languages/vue.php:801
|
6135 |
msgid "Automatically track clicks on your affiliate links and ads."
|
6136 |
msgstr ""
|
6137 |
|
6138 |
+
#: languages/vue.php:804
|
6139 |
msgid "Make Google Analytics GDPR compliant automatically"
|
6140 |
msgstr ""
|
6141 |
|
6142 |
+
#: languages/vue.php:807
|
6143 |
msgid "Setup tracking for authors, categories, tags, custom post types, users and more"
|
6144 |
msgstr ""
|
6145 |
|
6146 |
+
#: languages/vue.php:810
|
6147 |
msgid "Enable Google Optimize for A/B testing, adjust sample speed & sample rate."
|
6148 |
msgstr ""
|
6149 |
|
6150 |
+
#: languages/vue.php:813
|
6151 |
msgid "More advanced features"
|
6152 |
msgstr ""
|
6153 |
|
6154 |
+
#: languages/vue.php:816
|
6155 |
msgid "Get MonsterInsights Pro Today and Unlock all the Powerful Features"
|
6156 |
msgstr ""
|
6157 |
|
6158 |
#. Translators: Makes text green.
|
6159 |
+
#: languages/vue.php:820
|
6160 |
msgid "Bonus: MonsterInsights Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
|
6161 |
msgstr ""
|
6162 |
|
6163 |
+
#: languages/vue.php:823
|
6164 |
msgid "How to Connect to Google Analytics"
|
6165 |
msgstr ""
|
6166 |
|
6167 |
+
#: languages/vue.php:826
|
6168 |
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."
|
6169 |
msgstr ""
|
6170 |
|
6171 |
+
#: languages/vue.php:829
|
6172 |
msgid "Guide and Checklist for Advanced Insights"
|
6173 |
msgstr ""
|
6174 |
|
6175 |
+
#: languages/vue.php:832
|
6176 |
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."
|
6177 |
msgstr ""
|
6178 |
|
6179 |
+
#: languages/vue.php:835
|
6180 |
msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
|
6181 |
msgstr ""
|
6182 |
|
6183 |
+
#: languages/vue.php:838
|
6184 |
msgid "WordPress Admin Area Reports"
|
6185 |
msgstr ""
|
6186 |
|
6187 |
+
#: languages/vue.php:841
|
6188 |
msgid "Standard Reports"
|
6189 |
msgstr ""
|
6190 |
|
6191 |
+
#: languages/vue.php:844
|
6192 |
msgid "Overview Reports for the last 30 days."
|
6193 |
msgstr ""
|
6194 |
|
6195 |
+
#: languages/vue.php:847
|
6196 |
msgid "Advanced Reports"
|
6197 |
msgstr ""
|
6198 |
|
6199 |
+
#: languages/vue.php:850
|
6200 |
msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
|
6201 |
msgstr ""
|
6202 |
|
6203 |
+
#: languages/vue.php:853
|
6204 |
msgid "Dashboard Widget"
|
6205 |
msgstr ""
|
6206 |
|
6207 |
+
#: languages/vue.php:856
|
6208 |
msgid "Basic Widget"
|
6209 |
msgstr ""
|
6210 |
|
6211 |
+
#: languages/vue.php:859
|
6212 |
msgid "Overview Report Synopsis"
|
6213 |
msgstr ""
|
6214 |
|
6215 |
+
#: languages/vue.php:862
|
6216 |
msgid "Advanced Dashboard Widget"
|
6217 |
msgstr ""
|
6218 |
|
6219 |
+
#: languages/vue.php:865
|
6220 |
msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
|
6221 |
msgstr ""
|
6222 |
|
6223 |
+
#: languages/vue.php:872
|
6224 |
msgid "Email Summaries"
|
6225 |
msgstr ""
|
6226 |
|
6227 |
+
#: languages/vue.php:875
|
6228 |
msgid "Included"
|
6229 |
msgstr ""
|
6230 |
|
6231 |
+
#: languages/vue.php:878
|
6232 |
msgid "Get weekly traffic reports directly in your inbox."
|
6233 |
msgstr ""
|
6234 |
|
6235 |
+
#: languages/vue.php:881
|
6236 |
msgid "Publisher Reports"
|
6237 |
msgstr ""
|
6238 |
|
6239 |
+
#: languages/vue.php:884
|
6240 |
msgid "Advanced Publisher Reports & Tracking"
|
6241 |
msgstr ""
|
6242 |
|
6243 |
+
#: languages/vue.php:887
|
6244 |
msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
|
6245 |
msgstr ""
|
6246 |
|
6247 |
+
#: languages/vue.php:893
|
6248 |
msgid "Basic Options"
|
6249 |
msgstr ""
|
6250 |
|
6251 |
+
#: languages/vue.php:896
|
6252 |
msgid "Order Popular Posts by comments or shares with 3 simple theme choices."
|
6253 |
msgstr ""
|
6254 |
|
6255 |
+
#: languages/vue.php:899
|
6256 |
msgid "Dynamic Popular Posts & Popular Products"
|
6257 |
msgstr ""
|
6258 |
|
6259 |
+
#: languages/vue.php:902
|
6260 |
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."
|
6261 |
msgstr ""
|
6262 |
|
6263 |
+
#: languages/vue.php:905
|
6264 |
msgid "Not Available"
|
6265 |
msgstr ""
|
6266 |
|
6267 |
+
#: languages/vue.php:908
|
6268 |
msgid "Complete Custom Dimensions Tracking"
|
6269 |
msgstr ""
|
6270 |
|
6271 |
+
#: languages/vue.php:911
|
6272 |
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"
|
6273 |
msgstr ""
|
6274 |
|
6275 |
+
#: languages/vue.php:917
|
6276 |
msgid "Limited Support"
|
6277 |
msgstr ""
|
6278 |
|
6279 |
+
#: languages/vue.php:920
|
6280 |
msgid "Priority Support"
|
6281 |
msgstr ""
|
6282 |
|
6283 |
+
#: languages/vue.php:923
|
6284 |
msgid "Get the most out of MonsterInsights by upgrading to Pro and unlocking all of the powerful features."
|
6285 |
msgstr ""
|
6286 |
|
6287 |
+
#: languages/vue.php:926
|
6288 |
msgid "Feature"
|
6289 |
msgstr ""
|
6290 |
|
6291 |
+
#: languages/vue.php:929
|
6292 |
msgid "Lite"
|
6293 |
msgstr ""
|
6294 |
|
6295 |
+
#: languages/vue.php:932
|
6296 |
msgid "Pro"
|
6297 |
msgstr ""
|
6298 |
|
6299 |
+
#: languages/vue.php:935
|
6300 |
msgid "Custom Google Analytics Link Tracking"
|
6301 |
msgstr ""
|
6302 |
|
6303 |
+
#: languages/vue.php:938
|
6304 |
msgid "Standard Tracking"
|
6305 |
msgstr ""
|
6306 |
|
6307 |
+
#: languages/vue.php:941
|
6308 |
msgid "Advanced Tracking"
|
6309 |
msgstr ""
|
6310 |
|
6311 |
+
#: languages/vue.php:944
|
6312 |
msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
|
6313 |
msgstr ""
|
6314 |
|
6315 |
+
#: languages/vue.php:947
|
6316 |
msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
|
6317 |
msgstr ""
|
6318 |
|
6319 |
+
#: languages/vue.php:950
|
6320 |
msgid "No-Code-Needed Tracking Features"
|
6321 |
msgstr ""
|
6322 |
|
6323 |
+
#: languages/vue.php:953
|
6324 |
msgid "Basic Tracking Options"
|
6325 |
msgstr ""
|
6326 |
|
6327 |
+
#: languages/vue.php:956
|
6328 |
msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
|
6329 |
msgstr ""
|
6330 |
|
6331 |
+
#: languages/vue.php:959
|
6332 |
msgid "Advanced Tracking Options"
|
6333 |
msgstr ""
|
6334 |
|
6335 |
+
#: languages/vue.php:962
|
6336 |
msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
|
6337 |
msgstr ""
|
6338 |
|
6339 |
+
#: languages/vue.php:965
|
6340 |
msgid "eCommerce Tracking"
|
6341 |
msgstr ""
|
6342 |
|
6343 |
+
#: languages/vue.php:968
|
6344 |
msgid "One-click Complete eCommerce tracking"
|
6345 |
msgstr ""
|
6346 |
|
6347 |
+
#: languages/vue.php:971
|
6348 |
msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
|
6349 |
msgstr ""
|
6350 |
|
6351 |
+
#: languages/vue.php:974
|
6352 |
msgid "Forms Tracking"
|
6353 |
msgstr ""
|
6354 |
|
6355 |
+
#: languages/vue.php:977
|
6356 |
msgid "One-click Form Events Tracking"
|
6357 |
msgstr ""
|
6358 |
|
6359 |
+
#: languages/vue.php:980
|
6360 |
msgid "License Key"
|
6361 |
msgstr ""
|
6362 |
|
6363 |
#. Translators: Add link to retrieve license key from account.
|
6364 |
+
#: languages/vue.php:984
|
6365 |
msgid "Add your MonsterInsights license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
|
6366 |
msgstr ""
|
6367 |
|
6368 |
+
#: languages/vue.php:987
|
6369 |
msgid "Google Authentication"
|
6370 |
msgstr ""
|
6371 |
|
6372 |
+
#: languages/vue.php:991
|
6373 |
msgid "Connect Google Analytics + WordPress"
|
6374 |
msgstr ""
|
6375 |
|
6726 |
msgid "Continue & Install WPForms"
|
6727 |
msgstr ""
|
6728 |
|
6729 |
+
#: languages/vue.php:1263
|
6730 |
msgid "Installing..."
|
6731 |
msgstr ""
|
6732 |
|
6733 |
+
#: languages/vue.php:1266
|
6734 |
msgid "Show in widget mode"
|
6735 |
msgstr ""
|
6736 |
|
6737 |
+
#: languages/vue.php:1269
|
6738 |
msgid "Show in full-width mode"
|
6739 |
msgstr ""
|
6740 |
|
6786 |
msgid "Please wait"
|
6787 |
msgstr ""
|
6788 |
|
6789 |
+
#: languages/vue.php:1309
|
6790 |
msgid "activate"
|
6791 |
msgstr ""
|
6792 |
|
6793 |
+
#: languages/vue.php:1312
|
6794 |
msgid "install"
|
6795 |
msgstr ""
|
6796 |
|
6797 |
+
#: languages/vue.php:1315
|
6798 |
msgid "Visit addons page"
|
6799 |
msgstr ""
|
6800 |
|
6801 |
+
#: languages/vue.php:1318
|
6802 |
msgid "Report Unavailable"
|
6803 |
msgstr ""
|
6804 |
|
6805 |
#. Translators: Install/Activate the addon.
|
6806 |
+
#: languages/vue.php:1322
|
6807 |
msgid "%s Addon"
|
6808 |
msgstr ""
|
6809 |
|
6810 |
+
#: languages/vue.php:1325
|
6811 |
msgid "Go Back To Reports"
|
6812 |
msgstr ""
|
6813 |
|
6814 |
+
#: languages/vue.php:1328
|
6815 |
msgid "Enable Enhanced eCommerce"
|
6816 |
msgstr ""
|
6817 |
|
6818 |
#. Translators: Placeholders are used for making text bold and adding a link.
|
6819 |
+
#: languages/vue.php:1332
|
6820 |
msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
|
6821 |
msgstr ""
|
6822 |
|
6823 |
+
#: languages/vue.php:1335
|
6824 |
msgid "Last 30 Days Insights for:"
|
6825 |
msgstr ""
|
6826 |
|
6827 |
+
#: languages/vue.php:1338
|
6828 |
msgid "Your Website"
|
6829 |
msgstr ""
|
6830 |
|
6831 |
+
#: languages/vue.php:1342
|
6832 |
msgid "Sessions"
|
6833 |
msgstr ""
|
6834 |
|
6835 |
+
#: languages/vue.php:1346
|
6836 |
msgid "Pageviews"
|
6837 |
msgstr ""
|
6838 |
|
6839 |
+
#: languages/vue.php:1349
|
6840 |
msgid "Avg. Duration"
|
6841 |
msgstr ""
|
6842 |
|
6844 |
msgid "Bounce Rate"
|
6845 |
msgstr ""
|
6846 |
|
6847 |
+
#: languages/vue.php:1357
|
6848 |
msgid "Total Users"
|
6849 |
msgstr ""
|
6850 |
|
6851 |
+
#: languages/vue.php:1360
|
6852 |
msgid "More data is available"
|
6853 |
msgstr ""
|
6854 |
|
6855 |
+
#: languages/vue.php:1363
|
6856 |
msgid "Want to see page-specific stats?"
|
6857 |
msgstr ""
|
6858 |
|
6859 |
+
#: languages/vue.php:1366
|
6860 |
msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
|
6861 |
msgstr ""
|
6862 |
|
6863 |
+
#: languages/vue.php:1369
|
6864 |
msgid "No addons found."
|
6865 |
msgstr ""
|
6866 |
|
6867 |
+
#: languages/vue.php:1372
|
6868 |
msgid "Refresh Addons"
|
6869 |
msgstr ""
|
6870 |
|
6871 |
+
#: languages/vue.php:1375
|
6872 |
msgid "Refreshing Addons"
|
6873 |
msgstr ""
|
6874 |
|
6875 |
#. Translators: Make text green.
|
6876 |
+
#: languages/vue.php:1379
|
6877 |
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!"
|
6878 |
msgstr ""
|
6879 |
|
6880 |
+
#: languages/vue.php:1382
|
6881 |
msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
|
6882 |
msgstr ""
|
6883 |
|
6884 |
+
#: languages/vue.php:1385
|
6885 |
msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
|
6886 |
msgstr ""
|
6887 |
|
6888 |
+
#: languages/vue.php:1388
|
6889 |
msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
|
6890 |
msgstr ""
|
6891 |
|
6892 |
+
#: languages/vue.php:1391
|
6893 |
msgid "See All Your Important Store Metrics in One Place"
|
6894 |
msgstr ""
|
6895 |
|
6896 |
+
#: languages/vue.php:1394
|
6897 |
msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
|
6898 |
msgstr ""
|
6899 |
|
6900 |
+
#: languages/vue.php:1397
|
6901 |
msgid "ONE-CLICK INTEGRATIONS"
|
6902 |
msgstr ""
|
6903 |
|
6904 |
+
#: languages/vue.php:1400
|
6905 |
msgid "Enable Ecommerce Tracking and Grow Your Business with Confidence"
|
6906 |
msgstr ""
|
6907 |
|
6908 |
+
#: languages/vue.php:1403
|
6909 |
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."
|
6910 |
msgstr ""
|
6911 |
|
6912 |
+
#: languages/vue.php:1406
|
6913 |
msgid "Affiliate Tracking"
|
6914 |
msgstr ""
|
6915 |
|
6916 |
+
#: languages/vue.php:1409
|
6917 |
msgid "Automatically Track Affiliate Sales"
|
6918 |
msgstr ""
|
6919 |
|
6920 |
+
#: languages/vue.php:1412
|
6921 |
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."
|
6922 |
msgstr ""
|
6923 |
|
6924 |
+
#: languages/vue.php:1415
|
6925 |
msgid "Works with WooCommerce, MemberPress and Easy Digital Downloads."
|
6926 |
msgstr ""
|
6927 |
|
6928 |
+
#: languages/vue.php:1424
|
6929 |
msgid "Cart Funnel"
|
6930 |
msgstr ""
|
6931 |
|
6932 |
+
#: languages/vue.php:1427
|
6933 |
msgid "Customer Insights"
|
6934 |
msgstr ""
|
6935 |
|
6936 |
+
#: languages/vue.php:1430
|
6937 |
msgid "Campaign Measurement"
|
6938 |
msgstr ""
|
6939 |
|
6940 |
+
#: languages/vue.php:1433
|
6941 |
msgid "Customer Profiles"
|
6942 |
msgstr ""
|
6943 |
|
6944 |
+
#: languages/vue.php:1436
|
6945 |
msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, revenue, and average order value, and more."
|
6946 |
msgstr ""
|
6947 |
|
6948 |
+
#: languages/vue.php:1439
|
6949 |
msgid "Truly Understand Your%1$s Customers With %2$sMonsterInsights%3$s"
|
6950 |
msgstr ""
|
6951 |
|
6952 |
+
#: languages/vue.php:1442
|
6953 |
msgid "You never truly understand your customers until you used Enhanced %1$s eCommerce from MonsterInsights!"
|
6954 |
msgstr ""
|
6955 |
|
6956 |
+
#: languages/vue.php:1445
|
6957 |
msgid "Track all-new metrics!"
|
6958 |
msgstr ""
|
6959 |
|
6960 |
+
#: languages/vue.php:1448
|
6961 |
msgid "Get stats WooCommerce doesn’t give you like: Conversion Sources, Avg. Order Value, Revenue per Source, Total Add to Carts & More!"
|
6962 |
msgstr ""
|
6963 |
|
6964 |
+
#: languages/vue.php:1451
|
6965 |
msgid "FEATURES"
|
6966 |
msgstr ""
|
6967 |
|
6968 |
+
#: languages/vue.php:1454
|
6969 |
msgid "Get The Unique Metrics Neccessary for Growth"
|
6970 |
msgstr ""
|
6971 |
|
6972 |
+
#: languages/vue.php:1457
|
6973 |
msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, %1$srevenue, and average order value, and more."
|
6974 |
msgstr ""
|
6975 |
|
6976 |
+
#: languages/vue.php:1460
|
6977 |
msgid "Get Answers to the important questions %1$syou should know."
|
6978 |
msgstr ""
|
6979 |
|
6980 |
+
#: languages/vue.php:1463
|
6981 |
msgid "Did the login/registration step of the checkout put users off?"
|
6982 |
msgstr ""
|
6983 |
|
6984 |
+
#: languages/vue.php:1466
|
6985 |
msgid "Which ad campaign is driving the most revenue?"
|
6986 |
msgstr ""
|
6987 |
|
6988 |
+
#: languages/vue.php:1469
|
6989 |
msgid "Who is my typical customer?"
|
6990 |
msgstr ""
|
6991 |
|
6992 |
+
#: languages/vue.php:1472
|
6993 |
msgid "Level-up Your eCommerce store with %1$sMonsterInsights + WooCommerce!%1$s"
|
6994 |
msgstr ""
|
6995 |
|
6996 |
#. Translators: placeholders make text small.
|
6997 |
+
#: languages/vue.php:1476
|
6998 |
msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
|
6999 |
msgstr ""
|
7000 |
|
7001 |
#. Translators: placeholders make text small.
|
7002 |
+
#: languages/vue.php:1480
|
7003 |
msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
|
7004 |
msgstr ""
|
7005 |
|
7006 |
#. Translators: placeholders make text small.
|
7007 |
+
#: languages/vue.php:1484
|
7008 |
msgid "None %1$s- Manually update everything.%2$s"
|
7009 |
msgstr ""
|
7010 |
|
7011 |
+
#: languages/vue.php:1487
|
7012 |
msgid "Automatic Updates"
|
7013 |
msgstr ""
|
7014 |
|
7015 |
+
#: languages/vue.php:1490
|
7016 |
msgid "Awesome, You're All Set!"
|
7017 |
msgstr ""
|
7018 |
|
7019 |
+
#: languages/vue.php:1493
|
7020 |
msgid "MonsterInsights is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
|
7021 |
msgstr ""
|
7022 |
|
7023 |
#. Translators: Make text bold.
|
7024 |
+
#: languages/vue.php:1497
|
7025 |
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."
|
7026 |
msgstr ""
|
7027 |
|
7028 |
#. Translators: Link to our blog.
|
7029 |
+
#: languages/vue.php:1501
|
7030 |
msgid "%1$sSubscribe to the MonsterInsights blog%2$s for tips on how to get more traffic and grow your business."
|
7031 |
msgstr ""
|
7032 |
|
7033 |
+
#: languages/vue.php:1504
|
7034 |
msgid "Finish Setup & Exit Wizard"
|
7035 |
msgstr ""
|
7036 |
|
7037 |
+
#: languages/vue.php:1507
|
7038 |
msgid "Checking your website..."
|
7039 |
msgstr ""
|
7040 |
|
7041 |
+
#: languages/vue.php:1510
|
7042 |
msgid "See All Reports"
|
7043 |
msgstr ""
|
7044 |
|
7045 |
+
#: languages/vue.php:1513
|
7046 |
msgid "Go to the Analytics Dashboard"
|
7047 |
msgstr ""
|
7048 |
|
7049 |
#. Translators: Line break.
|
7050 |
+
#: languages/vue.php:1517
|
7051 |
msgid "Unique %s Sessions"
|
7052 |
msgstr ""
|
7053 |
|
7054 |
#. Translators: Line break.
|
7055 |
+
#: languages/vue.php:1521
|
7056 |
msgid "Unique %s Pageviews"
|
7057 |
msgstr ""
|
7058 |
|
7059 |
+
#: languages/vue.php:1524
|
7060 |
msgid "A session is the browsing session of a single user to your site."
|
7061 |
msgstr ""
|
7062 |
|
7063 |
+
#: languages/vue.php:1527
|
7064 |
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."
|
7065 |
msgstr ""
|
7066 |
|
7067 |
+
#: languages/vue.php:1530
|
7068 |
msgid "Total duration of all sessions (in seconds) / number of sessions."
|
7069 |
msgstr ""
|
7070 |
|
7071 |
+
#: languages/vue.php:1533
|
7072 |
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."
|
7073 |
msgstr ""
|
7074 |
|
7075 |
+
#: languages/vue.php:1536
|
7076 |
msgid "The number of distinct tracked users"
|
7077 |
msgstr ""
|
7078 |
|
7079 |
+
#: languages/vue.php:1539
|
7080 |
msgid "Avg. Session Duration"
|
7081 |
msgstr ""
|
7082 |
|
7083 |
+
#: languages/vue.php:1542
|
7084 |
msgid "Still Calculating..."
|
7085 |
msgstr ""
|
7086 |
|
7087 |
+
#: languages/vue.php:1545
|
7088 |
msgid "Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year."
|
7089 |
msgstr ""
|
7090 |
|
7091 |
+
#: languages/vue.php:1548
|
7092 |
msgid "Back to Overview Report"
|
7093 |
msgstr ""
|
7094 |
|
7095 |
+
#: languages/vue.php:1551
|
7096 |
msgid "Your 2020 Analytics Report"
|
7097 |
msgstr ""
|
7098 |
|
7099 |
+
#: languages/vue.php:1554
|
7100 |
msgid "See how your website performed this year and find tips along the way to help grow even more in 2021!"
|
7101 |
msgstr ""
|
7102 |
|
7103 |
+
#: languages/vue.php:1557
|
7104 |
msgid "Audience"
|
7105 |
msgstr ""
|
7106 |
|
7107 |
+
#: languages/vue.php:1560
|
7108 |
msgid "Congrats"
|
7109 |
msgstr ""
|
7110 |
|
7111 |
+
#: languages/vue.php:1563
|
7112 |
msgid "Your website was quite popular this year! "
|
7113 |
msgstr ""
|
7114 |
|
7115 |
+
#: languages/vue.php:1566
|
7116 |
msgid "You had "
|
7117 |
msgstr ""
|
7118 |
|
7119 |
+
#: languages/vue.php:1569
|
7120 |
msgid " visitors!"
|
7121 |
msgstr ""
|
7122 |
|
7123 |
+
#: languages/vue.php:1572
|
7124 |
msgid " visitors"
|
7125 |
msgstr ""
|
7126 |
|
7127 |
+
#: languages/vue.php:1575
|
7128 |
msgid "Total Visitors"
|
7129 |
msgstr ""
|
7130 |
|
7131 |
+
#: languages/vue.php:1578
|
7132 |
msgid "Total Sessions"
|
7133 |
msgstr ""
|
7134 |
|
7135 |
+
#: languages/vue.php:1581
|
7136 |
msgid "Visitors by Month"
|
7137 |
msgstr ""
|
7138 |
|
7139 |
+
#: languages/vue.php:1584
|
7140 |
msgid "January 1, 2020 - December 31, 2020"
|
7141 |
msgstr ""
|
7142 |
|
7143 |
+
#: languages/vue.php:1587
|
7144 |
msgid "A Tip for 2021"
|
7145 |
msgstr ""
|
7146 |
|
7147 |
+
#: languages/vue.php:1591
|
7148 |
msgid "Demographics"
|
7149 |
msgstr ""
|
7150 |
|
7151 |
+
#: languages/vue.php:1594
|
7152 |
msgid "#1"
|
7153 |
msgstr ""
|
7154 |
|
7155 |
+
#: languages/vue.php:1597
|
7156 |
msgid "You Top 5 Countries"
|
7157 |
msgstr ""
|
7158 |
|
7159 |
+
#: languages/vue.php:1600
|
7160 |
msgid "Let’s get to know your visitors a little better, shall we?"
|
7161 |
msgstr ""
|
7162 |
|
7163 |
+
#: languages/vue.php:1603
|
7164 |
msgid "Gender"
|
7165 |
msgstr ""
|
7166 |
|
7167 |
+
#: languages/vue.php:1606
|
7168 |
msgid "Female"
|
7169 |
msgstr ""
|
7170 |
|
7171 |
+
#: languages/vue.php:1609
|
7172 |
msgid "Women"
|
7173 |
msgstr ""
|
7174 |
|
7175 |
+
#: languages/vue.php:1612
|
7176 |
msgid "Male"
|
7177 |
msgstr ""
|
7178 |
|
7179 |
+
#: languages/vue.php:1615
|
7180 |
msgid "Average Age"
|
7181 |
msgstr ""
|
7182 |
|
7183 |
+
#: languages/vue.php:1618
|
7184 |
msgid "Behavior"
|
7185 |
msgstr ""
|
7186 |
|
7187 |
+
#: languages/vue.php:1621
|
7188 |
msgid "Your Top 5 Pages"
|
7189 |
msgstr ""
|
7190 |
|
7191 |
+
#: languages/vue.php:1624
|
7192 |
msgid "Time Spent on Site"
|
7193 |
msgstr ""
|
7194 |
|
7195 |
+
#: languages/vue.php:1627
|
7196 |
msgid "minutes"
|
7197 |
msgstr ""
|
7198 |
|
7199 |
+
#: languages/vue.php:1630
|
7200 |
msgid "Device Type"
|
7201 |
msgstr ""
|
7202 |
|
7203 |
+
#: languages/vue.php:1633
|
7204 |
msgid "A Tip For 2021"
|
7205 |
msgstr ""
|
7206 |
|
7207 |
+
#: languages/vue.php:1636
|
7208 |
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."
|
7209 |
msgstr ""
|
7210 |
|
7211 |
+
#: languages/vue.php:1639
|
7212 |
msgid "Read - 32 Marketing Hacks to Grow Your Traffic"
|
7213 |
msgstr ""
|
7214 |
|
7215 |
+
#: languages/vue.php:1642
|
7216 |
msgid "So, where did all of these visitors come from?"
|
7217 |
msgstr ""
|
7218 |
|
7219 |
+
#: languages/vue.php:1645
|
7220 |
msgid "Clicks"
|
7221 |
msgstr ""
|
7222 |
|
7223 |
+
#: languages/vue.php:1648
|
7224 |
msgid "Your Top 5 Keywords"
|
7225 |
msgstr ""
|
7226 |
|
7227 |
+
#: languages/vue.php:1651
|
7228 |
msgid "What keywords visitors searched for to find your site"
|
7229 |
msgstr ""
|
7230 |
|
7231 |
+
#: languages/vue.php:1654
|
7232 |
msgid "Your Top 5 Referrals"
|
7233 |
msgstr ""
|
7234 |
|
7235 |
+
#: languages/vue.php:1657
|
7236 |
msgid "The websites that link back to your website"
|
7237 |
msgstr ""
|
7238 |
|
7239 |
+
#: languages/vue.php:1660
|
7240 |
msgid "Opportunity"
|
7241 |
msgstr ""
|
7242 |
|
7243 |
+
#: languages/vue.php:1663
|
7244 |
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."
|
7245 |
msgstr ""
|
7246 |
|
7247 |
+
#: languages/vue.php:1666
|
7248 |
msgid "Read - How to Ethically Steal Your Competitor’s Traffic"
|
7249 |
msgstr ""
|
7250 |
|
7251 |
+
#: languages/vue.php:1669
|
7252 |
msgid "Thank you for using MonsterInsights!"
|
7253 |
msgstr ""
|
7254 |
|
7255 |
+
#: languages/vue.php:1672
|
7256 |
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."
|
7257 |
msgstr ""
|
7258 |
|
7259 |
+
#: languages/vue.php:1675
|
7260 |
msgid "Here's to an amazing 2021!"
|
7261 |
msgstr ""
|
7262 |
|
7263 |
+
#: languages/vue.php:1678
|
7264 |
msgid "Enjoying MonsterInsights"
|
7265 |
msgstr ""
|
7266 |
|
7267 |
+
#: languages/vue.php:1681
|
7268 |
msgid "Leave a five star review!"
|
7269 |
msgstr ""
|
7270 |
|
7271 |
+
#: languages/vue.php:1684
|
7272 |
msgid "Syed Balkhi"
|
7273 |
msgstr ""
|
7274 |
|
7275 |
+
#: languages/vue.php:1687
|
7276 |
msgid "Chris Christoff"
|
7277 |
msgstr ""
|
7278 |
|
7279 |
+
#: languages/vue.php:1690
|
7280 |
msgid "Write Review"
|
7281 |
msgstr ""
|
7282 |
|
7283 |
+
#: languages/vue.php:1693
|
7284 |
msgid "Did you know over 10 million websites use our plugins?"
|
7285 |
msgstr ""
|
7286 |
|
7287 |
+
#: languages/vue.php:1696
|
7288 |
msgid "Try our other popular WordPress plugins to grow your website in 2021."
|
7289 |
msgstr ""
|
7290 |
|
7291 |
+
#: languages/vue.php:1699
|
7292 |
msgid "Join our Communities!"
|
7293 |
msgstr ""
|
7294 |
|
7295 |
+
#: languages/vue.php:1702
|
7296 |
msgid "Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level."
|
7297 |
msgstr ""
|
7298 |
|
7299 |
+
#: languages/vue.php:1705
|
7300 |
msgid "Facebook Group"
|
7301 |
msgstr ""
|
7302 |
|
7303 |
+
#: languages/vue.php:1708
|
7304 |
msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
|
7305 |
msgstr ""
|
7306 |
|
7307 |
+
#: languages/vue.php:1711
|
7308 |
msgid "Join Now...It’s Free!"
|
7309 |
msgstr ""
|
7310 |
|
7311 |
+
#: languages/vue.php:1714
|
7312 |
msgid "WordPress Tutorials by WPBeginner"
|
7313 |
msgstr ""
|
7314 |
|
7315 |
+
#: languages/vue.php:1717
|
7316 |
msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
|
7317 |
msgstr ""
|
7318 |
|
7319 |
+
#: languages/vue.php:1720
|
7320 |
msgid "Visit WPBeginner"
|
7321 |
msgstr ""
|
7322 |
|
7323 |
+
#: languages/vue.php:1723
|
7324 |
msgid "Follow Us!"
|
7325 |
msgstr ""
|
7326 |
|
7327 |
+
#: languages/vue.php:1726
|
7328 |
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."
|
7329 |
msgstr ""
|
7330 |
|
7331 |
+
#: languages/vue.php:1729
|
7332 |
msgid "Copyright MonsterInsights, 2021"
|
7333 |
msgstr ""
|
7334 |
|
7335 |
+
#: languages/vue.php:1732
|
7336 |
msgid "Upgrade to MonsterInsights Pro to Unlock Additional Actionable Insights"
|
7337 |
msgstr ""
|
7338 |
|
7339 |
+
#: languages/vue.php:1735
|
7340 |
msgid "January"
|
7341 |
msgstr ""
|
7342 |
|
7343 |
+
#: languages/vue.php:1738
|
7344 |
msgid "February"
|
7345 |
msgstr ""
|
7346 |
|
7347 |
+
#: languages/vue.php:1741
|
7348 |
msgid "March"
|
7349 |
msgstr ""
|
7350 |
|
7351 |
+
#: languages/vue.php:1744
|
7352 |
msgid "April"
|
7353 |
msgstr ""
|
7354 |
|
7355 |
+
#: languages/vue.php:1747
|
7356 |
msgid "May"
|
7357 |
msgstr ""
|
7358 |
|
7359 |
+
#: languages/vue.php:1750
|
7360 |
msgid "June"
|
7361 |
msgstr ""
|
7362 |
|
7363 |
+
#: languages/vue.php:1753
|
7364 |
msgid "July"
|
7365 |
msgstr ""
|
7366 |
|
7367 |
+
#: languages/vue.php:1756
|
7368 |
msgid "August"
|
7369 |
msgstr ""
|
7370 |
|
7371 |
+
#: languages/vue.php:1759
|
7372 |
msgid "September"
|
7373 |
msgstr ""
|
7374 |
|
7375 |
+
#: languages/vue.php:1762
|
7376 |
msgid "October"
|
7377 |
msgstr ""
|
7378 |
|
7379 |
+
#: languages/vue.php:1765
|
7380 |
msgid "November"
|
7381 |
msgstr ""
|
7382 |
|
7383 |
+
#: languages/vue.php:1768
|
7384 |
msgid "December"
|
7385 |
msgstr ""
|
7386 |
|
7387 |
#. Translators: Number of visitors.
|
7388 |
+
#: languages/vue.php:1772
|
7389 |
msgid "Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>"
|
7390 |
msgstr ""
|
7391 |
|
7392 |
+
#: languages/vue.php:1775
|
7393 |
msgid "See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success."
|
7394 |
msgstr ""
|
7395 |
|
7396 |
#. Translators: Number of visitors.
|
7397 |
+
#: languages/vue.php:1779
|
7398 |
msgid "Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries."
|
7399 |
msgstr ""
|
7400 |
|
7401 |
#. Translators: Number of visitors.
|
7402 |
+
#: languages/vue.php:1783
|
7403 |
msgid "%s Visitors"
|
7404 |
msgstr ""
|
7405 |
|
7406 |
#. Translators: Percent and Number of visitors.
|
7407 |
+
#: languages/vue.php:1787
|
7408 |
msgid "%1$s% of your visitors were %2$s"
|
7409 |
msgstr ""
|
7410 |
|
7411 |
#. Translators: Number of visitors and their age.
|
7412 |
+
#: languages/vue.php:1791
|
7413 |
msgid "%1$s% of your visitors were between the ages of %2$s"
|
7414 |
msgstr ""
|
7415 |
|
7416 |
+
#: languages/vue.php:1794
|
7417 |
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>"
|
7418 |
msgstr ""
|
7419 |
|
7420 |
#. Translators: Number of minutes spent on site.
|
7421 |
+
#: languages/vue.php:1798
|
7422 |
msgid "Each visitor spent an average of %s minutes on your website in 2020."
|
7423 |
msgstr ""
|
7424 |
|
7425 |
#. Translators: Name of device type.
|
7426 |
+
#: languages/vue.php:1802
|
7427 |
msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
|
7428 |
msgstr ""
|
7429 |
|
7430 |
#. Translators: Number of visitors and device percentage.
|
7431 |
+
#: languages/vue.php:1806
|
7432 |
msgid "%1$s% of your visitors were on a %2$s device."
|
7433 |
msgstr ""
|
7434 |
|
7435 |
+
#: languages/vue.php:1809
|
7436 |
msgid "Desktop"
|
7437 |
msgstr ""
|
7438 |
|
7439 |
+
#: languages/vue.php:1812
|
7440 |
msgid "Tablet"
|
7441 |
msgstr ""
|
7442 |
|
7443 |
+
#: languages/vue.php:1815
|
7444 |
msgid "Mobile"
|
7445 |
msgstr ""
|
7446 |
|
7447 |
+
#: languages/vue.php:1818
|
7448 |
msgid "Right Now"
|
7449 |
msgstr ""
|
7450 |
|
7451 |
+
#: languages/vue.php:1821
|
7452 |
msgid "Active users on site"
|
7453 |
msgstr ""
|
7454 |
|
7455 |
+
#: languages/vue.php:1824
|
7456 |
msgid "The real-time graph of visitors over time is not currently available for this site. Please try again later."
|
7457 |
msgstr ""
|
7458 |
|
7459 |
+
#: languages/vue.php:1827
|
7460 |
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."
|
7461 |
msgstr ""
|
7462 |
|
7463 |
+
#: languages/vue.php:1830
|
7464 |
msgid "The real-time report automatically updates approximately every 60 seconds."
|
7465 |
msgstr ""
|
7466 |
|
7467 |
#. Translators: Number of seconds that have passed since the report was refreshed.
|
7468 |
+
#: languages/vue.php:1834
|
7469 |
msgid "The real-time report was last updated %s seconds ago."
|
7470 |
msgstr ""
|
7471 |
|
7472 |
+
#: languages/vue.php:1837
|
7473 |
msgid "The latest data will be automatically shown on this page when it becomes available."
|
7474 |
msgstr ""
|
7475 |
|
7476 |
+
#: languages/vue.php:1840
|
7477 |
msgid "There is no need to refresh the browser (doing so won't have any effect)."
|
7478 |
msgstr ""
|
7479 |
|
7480 |
+
#: languages/vue.php:1843
|
7481 |
msgid "Pageviews Per Minute"
|
7482 |
msgstr ""
|
7483 |
|
7484 |
+
#: languages/vue.php:1846
|
7485 |
msgid "Top Pages"
|
7486 |
msgstr ""
|
7487 |
|
7488 |
+
#: languages/vue.php:1849
|
7489 |
msgid "No pageviews currently."
|
7490 |
msgstr ""
|
7491 |
|
7492 |
+
#: languages/vue.php:1852
|
7493 |
msgid "Page"
|
7494 |
msgstr ""
|
7495 |
|
7496 |
+
#: languages/vue.php:1855
|
7497 |
msgid "Pageview Count"
|
7498 |
msgstr ""
|
7499 |
|
7500 |
+
#: languages/vue.php:1858
|
7501 |
msgid "Percent of Total"
|
7502 |
msgstr ""
|
7503 |
|
7504 |
+
#: languages/vue.php:1861
|
7505 |
msgid "This is the number of active users currently on your site."
|
7506 |
msgstr ""
|
7507 |
|
7508 |
+
#: languages/vue.php:1864
|
7509 |
msgid "This graph shows the number of pageviews for each of the last 30 minutes."
|
7510 |
msgstr ""
|
7511 |
|
7512 |
+
#: languages/vue.php:1867
|
7513 |
msgid "This list shows the top pages users are currently viewing on your site."
|
7514 |
msgstr ""
|
7515 |
|
7516 |
+
#: languages/vue.php:1870
|
7517 |
msgid "View All Real-Time Pageviews"
|
7518 |
msgstr ""
|
7519 |
|
7520 |
+
#: languages/vue.php:1873
|
7521 |
msgid "View All Real-Time Traffic Sources"
|
7522 |
msgstr ""
|
7523 |
|
7524 |
+
#: languages/vue.php:1876
|
7525 |
msgid "View All Real-Time Traffic by Country"
|
7526 |
msgstr ""
|
7527 |
|
7528 |
+
#: languages/vue.php:1879
|
7529 |
msgid "View All Real-Time Traffic by City"
|
7530 |
msgstr ""
|
7531 |
|
7532 |
+
#: languages/vue.php:1882
|
7533 |
msgid "Show Overview Reports"
|
7534 |
msgstr ""
|
7535 |
|
7536 |
+
#: languages/vue.php:1885
|
7537 |
msgid "Show Publishers Reports"
|
7538 |
msgstr ""
|
7539 |
|
7540 |
+
#: languages/vue.php:1888
|
7541 |
msgid "Show eCommerce Reports"
|
7542 |
msgstr ""
|
7543 |
|
7544 |
+
#: languages/vue.php:1891
|
7545 |
msgid "Settings Menu"
|
7546 |
msgstr ""
|
7547 |
|
7548 |
+
#: languages/vue.php:1894
|
7549 |
msgid "Available in PRO version"
|
7550 |
msgstr ""
|
7551 |
|
7552 |
+
#: languages/vue.php:1897
|
7553 |
msgid "Thank you for being a loyal MonsterInsights Lite user."
|
7554 |
msgstr ""
|
7555 |
|
7556 |
+
#: languages/vue.php:1900
|
7557 |
msgid "Upgrade to MonsterInsights Pro and unlock all the awesome features."
|
7558 |
msgstr ""
|
7559 |
|
7560 |
#. Translators: Gets replaced with the coupon code.
|
7561 |
+
#: languages/vue.php:1904
|
7562 |
msgid "Use coupon code %s to get 50%% off."
|
7563 |
msgstr ""
|
7564 |
|
7565 |
+
#: languages/vue.php:1907
|
7566 |
msgid "Dashboard widget"
|
7567 |
msgstr ""
|
7568 |
|
7569 |
+
#: languages/vue.php:1910
|
7570 |
msgid "Affiliate Links"
|
7571 |
msgstr ""
|
7572 |
|
7573 |
+
#: languages/vue.php:1913
|
7574 |
msgid "Enhanced Ecommerce"
|
7575 |
msgstr ""
|
7576 |
|
7577 |
+
#: languages/vue.php:1916
|
7578 |
msgid "Banner Ads"
|
7579 |
msgstr ""
|
7580 |
|
7581 |
+
#: languages/vue.php:1919
|
7582 |
msgid "Google AMP"
|
7583 |
msgstr ""
|
7584 |
|
7585 |
+
#: languages/vue.php:1922
|
7586 |
msgid "SEO Score Tracking"
|
7587 |
msgstr ""
|
7588 |
|
7589 |
+
#: languages/vue.php:1926
|
7590 |
msgid "Activating..."
|
7591 |
msgstr ""
|
7592 |
|
7593 |
+
#: languages/vue.php:1929
|
7594 |
msgid "Deactivating..."
|
7595 |
msgstr ""
|
7596 |
|
7597 |
+
#: languages/vue.php:1932
|
7598 |
msgid "Deactivate"
|
7599 |
msgstr ""
|
7600 |
|
7601 |
#. Translators: The status of the addon (installed/active/inactive).
|
7602 |
+
#: languages/vue.php:1936
|
7603 |
msgid "Status: %s"
|
7604 |
msgstr ""
|
7605 |
|
7606 |
+
#: languages/vue.php:1939
|
7607 |
msgid "Not Installed"
|
7608 |
msgstr ""
|
7609 |
|
7610 |
+
#: languages/vue.php:1942
|
7611 |
msgid "Network Active"
|
7612 |
msgstr ""
|
7613 |
|
7614 |
+
#: languages/vue.php:1945
|
7615 |
msgid "Active"
|
7616 |
msgstr ""
|
7617 |
|
7618 |
+
#: languages/vue.php:1948
|
7619 |
msgid "Inactive"
|
7620 |
msgstr ""
|
7621 |
|
7622 |
#. Translators: Adds a link to the general settings tab.
|
7623 |
+
#: languages/vue.php:1952
|
7624 |
msgid "It looks like you added a Google Analytics tracking code in the custom code area, this can potentially prevent proper tracking. If you want to use a manual UA please use the setting in the %1$sGeneral%2$s tab."
|
7625 |
msgstr ""
|
7626 |
|
7627 |
+
#: languages/vue.php:1955
|
7628 |
msgid "Export PDF Reports"
|
7629 |
msgstr ""
|
7630 |
|
7631 |
+
#: languages/vue.php:1958
|
7632 |
msgid "Permissions"
|
7633 |
msgstr ""
|
7634 |
|
7635 |
+
#: languages/vue.php:1961
|
7636 |
msgid "Allow These User Roles to See Reports"
|
7637 |
msgstr ""
|
7638 |
|
7639 |
+
#: languages/vue.php:1964
|
7640 |
msgid "Users that have at least one of these roles will be able to view the reports."
|
7641 |
msgstr ""
|
7642 |
|
7643 |
+
#: languages/vue.php:1967
|
7644 |
msgid "Users that have at least one of these roles will be able to view the reports, along with any user with the manage_options capability."
|
7645 |
msgstr ""
|
7646 |
|
7647 |
+
#: languages/vue.php:1970
|
7648 |
msgid "Allow These User Roles to Save Settings"
|
7649 |
msgstr ""
|
7650 |
|
7651 |
+
#: languages/vue.php:1973
|
7652 |
msgid "Users that have at least one of these roles will be able to view and save the settings panel."
|
7653 |
msgstr ""
|
7654 |
|
7655 |
+
#: languages/vue.php:1976
|
7656 |
msgid "Users that have at least one of these roles will be able to view and save the settings panel, along with any user with the manage_options capability."
|
7657 |
msgstr ""
|
7658 |
|
7659 |
+
#: languages/vue.php:1979
|
7660 |
msgid "Exclude These User Roles From Tracking"
|
7661 |
msgstr ""
|
7662 |
|
7663 |
+
#: languages/vue.php:1982
|
7664 |
msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
|
7665 |
msgstr ""
|
7666 |
|
7667 |
+
#: languages/vue.php:1985
|
7668 |
msgid "Performance"
|
7669 |
msgstr ""
|
7670 |
|
7671 |
+
#: languages/vue.php:1988
|
7672 |
msgid "Custom code"
|
7673 |
msgstr ""
|
7674 |
|
7675 |
#. Translators: Adds a link to the Google reference.
|
7676 |
+
#: languages/vue.php:1992
|
7677 |
msgid "Not for the average user: this allows you to add a line of code, to be added before the %1$spageview is sent%2$s."
|
7678 |
msgstr ""
|
7679 |
|
7680 |
+
#: languages/vue.php:1998
|
7681 |
msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
|
7682 |
msgstr ""
|
7683 |
|
7684 |
+
#: languages/vue.php:2001
|
7685 |
msgid "Hide Admin Bar Reports"
|
7686 |
msgstr ""
|
7687 |
|
7688 |
#. Translators: placeholders make text small.
|
7689 |
+
#: languages/vue.php:2005
|
7690 |
msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
|
7691 |
msgstr ""
|
7692 |
|
7693 |
#. Translators: placeholders make text small.
|
7694 |
+
#: languages/vue.php:2009
|
7695 |
msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
|
7696 |
msgstr ""
|
7697 |
|
7698 |
#. Translators: placeholders make text small.
|
7699 |
+
#: languages/vue.php:2013
|
7700 |
msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
|
7701 |
msgstr ""
|
7702 |
|
7703 |
+
#: languages/vue.php:2016
|
7704 |
msgid "View notifications"
|
7705 |
msgstr ""
|
7706 |
|
7707 |
#. Translators: Error status and error text.
|
7708 |
+
#: languages/vue.php:2020
|
7709 |
msgid "Can't load settings. Error: %1$s, %2$s"
|
7710 |
msgstr ""
|
7711 |
|
7712 |
+
#: languages/vue.php:2024
|
7713 |
msgid "You appear to be offline."
|
7714 |
msgstr ""
|
7715 |
|
7716 |
#. Translators: Error status and error text.
|
7717 |
+
#: languages/vue.php:2028
|
7718 |
msgid "Can't save settings. Error: %1$s, %2$s"
|
7719 |
msgstr ""
|
7720 |
|
7721 |
+
#: languages/vue.php:2031
|
7722 |
msgid "Network error encountered. Settings not saved."
|
7723 |
msgstr ""
|
7724 |
|
7725 |
#. Translators: Error status and error text.
|
7726 |
+
#: languages/vue.php:2035
|
7727 |
msgid "Can't deactivate the license. Error: %1$s, %2$s"
|
7728 |
msgstr ""
|
7729 |
|
7730 |
#. Translators: Error status and error text.
|
7731 |
+
#: languages/vue.php:2039
|
7732 |
msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
|
7733 |
msgstr ""
|
7734 |
|
7735 |
#. Translators: Error status and error text.
|
7736 |
+
#: languages/vue.php:2043
|
7737 |
msgid "Can't load license details. Error: %1$s, %2$s"
|
7738 |
msgstr ""
|
7739 |
|
7740 |
+
#: languages/vue.php:2046
|
7741 |
msgid "Error loading license details"
|
7742 |
msgstr ""
|
7743 |
|
7744 |
#. Translators: Error status and error text.
|
7745 |
+
#: languages/vue.php:2050
|
7746 |
msgid "Can't verify the license. Error: %1$s, %2$s"
|
7747 |
msgstr ""
|
7748 |
|
7749 |
#. Translators: Error status and error text.
|
7750 |
+
#: languages/vue.php:2054
|
7751 |
msgid "Can't validate the license. Error: %1$s, %2$s"
|
7752 |
msgstr ""
|
7753 |
|
7754 |
#. Translators: Error status and error text.
|
7755 |
+
#: languages/vue.php:2058
|
7756 |
msgid "Can't deauthenticate. Error: %1$s, %2$s"
|
7757 |
msgstr ""
|
7758 |
|
7759 |
#. Translators: Error status and error text.
|
7760 |
+
#: languages/vue.php:2062
|
7761 |
msgid "Can't load authentication details. Error: %1$s, %2$s"
|
7762 |
msgstr ""
|
7763 |
|
7764 |
+
#: languages/vue.php:2065
|
7765 |
msgid "You appear to be offline. Settings not saved."
|
7766 |
msgstr ""
|
7767 |
|
7768 |
#. Translators: Error status and error text.
|
7769 |
+
#: languages/vue.php:2069
|
7770 |
msgid "Can't authenticate. Error: %1$s, %2$s"
|
7771 |
msgstr ""
|
7772 |
|
7773 |
#. Translators: Error status and error text.
|
7774 |
+
#: languages/vue.php:2073
|
7775 |
msgid "Can't reauthenticate. Error: %1$s, %2$s"
|
7776 |
msgstr ""
|
7777 |
|
7778 |
#. Translators: Error status and error text.
|
7779 |
+
#: languages/vue.php:2077
|
7780 |
msgid "Can't verify credentials. Error: %1$s, %2$s"
|
7781 |
msgstr ""
|
7782 |
|
7783 |
+
#: languages/vue.php:2080
|
7784 |
msgid "Proceed"
|
7785 |
msgstr ""
|
7786 |
|
7787 |
+
#: languages/vue.php:2083
|
7788 |
msgid "Connection Information"
|
7789 |
msgstr ""
|
7790 |
|
7791 |
+
#: languages/vue.php:2086
|
7792 |
msgid "To perform the requested action, WordPress needs to access your web server. Please enter your FTP credentials to proceed. If you do not remember your credentials, you should contact your web host."
|
7793 |
msgstr ""
|
7794 |
|
7795 |
+
#: languages/vue.php:2089
|
7796 |
msgid "Hostname"
|
7797 |
msgstr ""
|
7798 |
|
7799 |
+
#: languages/vue.php:2092
|
7800 |
msgid "FTP Username"
|
7801 |
msgstr ""
|
7802 |
|
7803 |
+
#: languages/vue.php:2095
|
7804 |
msgid "FTP Password"
|
7805 |
msgstr ""
|
7806 |
|
7807 |
+
#: languages/vue.php:2098
|
7808 |
msgid "This password will not be stored on the server."
|
7809 |
msgstr ""
|
7810 |
|
7811 |
+
#: languages/vue.php:2101
|
7812 |
msgid "Connection Type"
|
7813 |
msgstr ""
|
7814 |
|
7815 |
+
#: languages/vue.php:2104
|
7816 |
msgid "Cancel"
|
7817 |
msgstr ""
|
7818 |
|
7819 |
+
#: languages/vue.php:2107
|
7820 |
msgid "You appear to be offline. WPForms not installed."
|
7821 |
msgstr ""
|
7822 |
|
7823 |
#. Translators: Error status and error text.
|
7824 |
+
#: languages/vue.php:2111
|
7825 |
msgid "Can't activate addon. Error: %1$s, %2$s"
|
7826 |
msgstr ""
|
7827 |
|
7828 |
+
#: languages/vue.php:2114
|
7829 |
msgid "You appear to be offline. Addon not activated."
|
7830 |
msgstr ""
|
7831 |
|
7832 |
#. Translators: Error status and error text.
|
7833 |
+
#: languages/vue.php:2118
|
7834 |
msgid "Can't deactivate addon. Error: %1$s, %2$s"
|
7835 |
msgstr ""
|
7836 |
|
7837 |
+
#: languages/vue.php:2121
|
7838 |
msgid "You appear to be offline. Addon not deactivated."
|
7839 |
msgstr ""
|
7840 |
|
7841 |
#. Translators: Error status and error text.
|
7842 |
+
#: languages/vue.php:2125
|
7843 |
msgid "Can't install plugin. Error: %1$s, %2$s"
|
7844 |
msgstr ""
|
7845 |
|
7846 |
+
#: languages/vue.php:2128
|
7847 |
msgid "You appear to be offline. Plugin not installed."
|
7848 |
msgstr ""
|
7849 |
|
7850 |
#. Translators: Error status and error text.
|
7851 |
+
#: languages/vue.php:2132
|
7852 |
msgid "Can't install addon. Error: %1$s, %2$s"
|
7853 |
msgstr ""
|
7854 |
|
7855 |
+
#: languages/vue.php:2135
|
7856 |
msgid "You appear to be offline. Addon not installed."
|
7857 |
msgstr ""
|
7858 |
|
7859 |
#. Translators: Error status and error text.
|
7860 |
+
#: languages/vue.php:2139
|
7861 |
msgid "Can't install WPForms. Error: %1$s, %2$s"
|
7862 |
msgstr ""
|
7863 |
|
7864 |
#. Translators: Example path (/go/).
|
7865 |
+
#: languages/vue.php:2144
|
7866 |
msgid "Path (example: %s)"
|
7867 |
msgstr ""
|
7868 |
|
7869 |
+
#: languages/vue.php:2148
|
7870 |
msgid "Path has to start with a / and have no spaces"
|
7871 |
msgstr ""
|
7872 |
|
7873 |
#. Translators: Example label (aff).
|
7874 |
+
#: languages/vue.php:2153
|
7875 |
msgid "Label (example: %s)"
|
7876 |
msgstr ""
|
7877 |
|
7878 |
+
#: languages/vue.php:2157
|
7879 |
msgid "Label can't contain any spaces"
|
7880 |
msgstr ""
|
7881 |
|
7882 |
#. Translators: Add links to documentation.
|
7883 |
+
#: languages/vue.php:2161
|
7884 |
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."
|
7885 |
msgstr ""
|
7886 |
|
7887 |
+
#: languages/vue.php:2164
|
7888 |
msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
|
7889 |
msgstr ""
|
7890 |
|
7891 |
+
#: languages/vue.php:2167
|
7892 |
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."
|
7893 |
msgstr ""
|
7894 |
|
7895 |
+
#: languages/vue.php:2170
|
7896 |
msgid "Disable the Headline Analyzer"
|
7897 |
msgstr ""
|
7898 |
|
7899 |
+
#: languages/vue.php:2173
|
7900 |
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."
|
7901 |
msgstr ""
|
7902 |
|
7903 |
+
#: languages/vue.php:2176
|
7904 |
msgid "Or manually enter UA code (limited functionality)"
|
7905 |
msgstr ""
|
7906 |
|
7907 |
+
#: languages/vue.php:2179
|
7908 |
msgid "Dual Tracking Profile"
|
7909 |
msgstr ""
|
7910 |
|
7911 |
+
#: languages/vue.php:2182
|
7912 |
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."
|
7913 |
msgstr ""
|
7914 |
|
7915 |
+
#: languages/vue.php:2185
|
7916 |
msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers."
|
7917 |
msgstr ""
|
7918 |
|
7919 |
+
#: languages/vue.php:2188
|
7920 |
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."
|
7921 |
msgstr ""
|
7922 |
|
7923 |
+
#: languages/vue.php:2191
|
7924 |
msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
|
7925 |
msgstr ""
|
7926 |
|
7927 |
+
#: languages/vue.php:2194
|
7928 |
msgid "Measurement Protocol API Secret"
|
7929 |
msgstr ""
|
7930 |
|
7931 |
+
#: languages/vue.php:2197
|
7932 |
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."
|
7933 |
msgstr ""
|
7934 |
|
7935 |
+
#: languages/vue.php:2200
|
7936 |
msgid "Force Deauthenticate"
|
7937 |
msgstr ""
|
7938 |
|
7939 |
+
#: languages/vue.php:2203
|
7940 |
msgid "Disconnect MonsterInsights"
|
7941 |
msgstr ""
|
7942 |
|
7943 |
+
#: languages/vue.php:2206
|
7944 |
msgid "Authenticating"
|
7945 |
msgstr ""
|
7946 |
|
7947 |
+
#: languages/vue.php:2209
|
7948 |
msgid "Verifying Credentials"
|
7949 |
msgstr ""
|
7950 |
|
7951 |
+
#: languages/vue.php:2212
|
7952 |
msgid "Your site is connected to MonsterInsights!"
|
7953 |
msgstr ""
|
7954 |
|
7955 |
+
#: languages/vue.php:2215
|
7956 |
msgid "Deauthenticating"
|
7957 |
msgstr ""
|
7958 |
|
7959 |
+
#: languages/vue.php:2218
|
7960 |
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."
|
7961 |
msgstr ""
|
7962 |
|
7963 |
+
#: languages/vue.php:2221
|
7964 |
msgid "Connect MonsterInsights"
|
7965 |
msgstr ""
|
7966 |
|
7967 |
+
#: languages/vue.php:2224
|
7968 |
msgid "Verify Credentials"
|
7969 |
msgstr ""
|
7970 |
|
7971 |
+
#: languages/vue.php:2227
|
7972 |
msgid "Website Profile"
|
7973 |
msgstr ""
|
7974 |
|
7975 |
+
#: languages/vue.php:2230
|
7976 |
msgid "Active Profile"
|
7977 |
msgstr ""
|
7978 |
|
7979 |
+
#: languages/vue.php:2233
|
7980 |
msgid "Your website profile has been set at the network level of your WordPress Multisite."
|
7981 |
msgstr ""
|
7982 |
|
7983 |
+
#: languages/vue.php:2236
|
7984 |
msgid "If you would like to use a different profile for this subsite, you can authenticate below."
|
7985 |
msgstr ""
|
7986 |
|
7987 |
+
#: languages/vue.php:2239
|
7988 |
msgid "Manually enter your UA code"
|
7989 |
msgstr ""
|
7990 |
|
7991 |
+
#: languages/vue.php:2242
|
7992 |
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."
|
7993 |
msgstr ""
|
7994 |
|
7995 |
+
#: languages/vue.php:2245
|
7996 |
msgid "Manually enter your GA4 Measurement ID"
|
7997 |
msgstr ""
|
7998 |
|
7999 |
+
#: languages/vue.php:2248
|
8000 |
msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
|
8001 |
msgstr ""
|
8002 |
|
8003 |
+
#: languages/vue.php:2251
|
8004 |
msgid "Anonymize IP Addresses"
|
8005 |
msgstr ""
|
8006 |
|
8007 |
+
#: languages/vue.php:2254
|
8008 |
msgid "Link Attribution"
|
8009 |
msgstr ""
|
8010 |
|
8011 |
+
#: languages/vue.php:2257
|
8012 |
msgid "Enable Enhanced Link Attribution"
|
8013 |
msgstr ""
|
8014 |
|
8015 |
+
#: languages/vue.php:2260
|
8016 |
msgid "Enable Anchor Tracking"
|
8017 |
msgstr ""
|
8018 |
|
8019 |
+
#: languages/vue.php:2263
|
8020 |
msgid "Enable allowAnchor"
|
8021 |
msgstr ""
|
8022 |
|
8023 |
+
#: languages/vue.php:2266
|
8024 |
msgid "Enable allowLinker"
|
8025 |
msgstr ""
|
8026 |
|
8027 |
+
#: languages/vue.php:2269
|
8028 |
msgid "Enable Tag Links in RSS"
|
8029 |
msgstr ""
|
8030 |
|
8031 |
+
#: languages/vue.php:2272
|
8032 |
msgid "File Downloads"
|
8033 |
msgstr ""
|
8034 |
|
8035 |
+
#: languages/vue.php:2275
|
8036 |
msgid "Extensions of Files to Track as Downloads"
|
8037 |
msgstr ""
|
8038 |
|
8039 |
+
#: languages/vue.php:2278
|
8040 |
msgid "MonsterInsights will send an event to Google Analytics if a link to a file has one of the above extensions."
|
8041 |
msgstr ""
|
8042 |
|
8043 |
#. Translators: Add links to the documentation.
|
8044 |
+
#: languages/vue.php:2282
|
8045 |
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."
|
8046 |
msgstr ""
|
8047 |
|
8048 |
#. Translators: Adds a link to the documentation.
|
8049 |
+
#: languages/vue.php:2286
|
8050 |
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."
|
8051 |
msgstr ""
|
8052 |
|
8053 |
#. Translators: Adds a link to the documentation.
|
8054 |
+
#: languages/vue.php:2290
|
8055 |
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."
|
8056 |
msgstr ""
|
8057 |
|
8058 |
+
#: languages/vue.php:2293
|
8059 |
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."
|
8060 |
msgstr ""
|
8061 |
|
8062 |
#. Translators: Adds a link to the documentation.
|
8063 |
+
#: languages/vue.php:2297
|
8064 |
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."
|
8065 |
msgstr ""
|
8066 |
|
8067 |
#. Translators: Adds a link to the documentation.
|
8068 |
+
#: languages/vue.php:2301
|
8069 |
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."
|
8070 |
msgstr ""
|
8071 |
|
8072 |
#. Translators: Adds a link to the documentation.
|
8073 |
+
#: languages/vue.php:2305
|
8074 |
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."
|
8075 |
msgstr ""
|
8076 |
|
8077 |
+
#: languages/vue.php:2308
|
8078 |
msgid "Add domain"
|
8079 |
msgstr ""
|
8080 |
|
8081 |
#. Translators: Example domain.
|
8082 |
+
#: languages/vue.php:2312
|
8083 |
msgid "Domain (example: %s)"
|
8084 |
msgstr ""
|
8085 |
|
8086 |
#. Translators: Current site domain to be avoided.
|
8087 |
+
#: languages/vue.php:2316
|
8088 |
msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
|
8089 |
msgstr ""
|
8090 |
|
8091 |
+
#: languages/vue.php:2319
|
8092 |
msgid "Cross Domain Tracking"
|
8093 |
msgstr ""
|
8094 |
|
8095 |
#. Translators: Adds a link to the documentation.
|
8096 |
+
#: languages/vue.php:2323
|
8097 |
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."
|
8098 |
msgstr ""
|
8099 |
|
8100 |
#. Translators: Number of days.
|
8101 |
+
#: languages/vue.php:2327
|
8102 |
msgid "vs. Previous Day"
|
8103 |
msgstr ""
|
8104 |
|
8105 |
+
#: languages/vue.php:2330
|
8106 |
msgid "No change"
|
8107 |
msgstr ""
|
8108 |
|
8109 |
+
#: languages/vue.php:2333
|
8110 |
msgid "Forms Tracking help you see who’s viewing your forms, so you can increase conversions."
|
8111 |
msgstr ""
|
8112 |
|
8113 |
+
#: languages/vue.php:2336
|
8114 |
msgid "Custom Dimensions show you popular categories, best time to publish, focus keywords, etc."
|
8115 |
msgstr ""
|
8116 |
|
8117 |
+
#: languages/vue.php:2339
|
8118 |
msgid "Make Google Analytics GDPR compliant with our EU Compliance addon."
|
8119 |
msgstr ""
|
8120 |
|
8121 |
+
#: languages/vue.php:2342
|
8122 |
msgid "Get real-time Google Analytics report right inside your WordPress dashboard."
|
8123 |
msgstr ""
|
8124 |
|
8125 |
+
#: languages/vue.php:2345
|
8126 |
msgid "Use Google Optimize to easily perform A/B split tests on your site."
|
8127 |
msgstr ""
|
8128 |
|
8129 |
+
#: languages/vue.php:2348
|
8130 |
msgid "See all your important store metrics in one place with Enhanced Ecommerce Tracking."
|
8131 |
msgstr ""
|
8132 |
|
8133 |
+
#: languages/vue.php:2351
|
8134 |
msgid "Unlock search console report to see your top performing keywords in Google."
|
8135 |
msgstr ""
|
8136 |
|
8137 |
+
#: languages/vue.php:2354
|
8138 |
msgid "Get Page Insights to see important metrics for individual posts / pages in WordPress."
|
8139 |
msgstr ""
|
8140 |
|
8141 |
+
#: languages/vue.php:2357
|
8142 |
msgid "Publishers Report shows your top performing pages, audience demographics, and more."
|
8143 |
msgstr ""
|
8144 |
|
8145 |
+
#: languages/vue.php:2360
|
8146 |
msgid "Get Scroll-Depth tracking to see how far users scroll on your pages before leaving."
|
8147 |
msgstr ""
|
8148 |
|
8149 |
+
#: languages/vue.php:2363
|
8150 |
msgid "Upgrade to Pro »"
|
8151 |
msgstr ""
|
8152 |
|
8153 |
+
#: languages/vue.php:2366
|
8154 |
msgid "Pro Tip:"
|
8155 |
msgstr ""
|
8156 |
|
8157 |
+
#: languages/vue.php:2369
|
8158 |
msgid "Show"
|
8159 |
msgstr ""
|
8160 |
|
8161 |
+
#: languages/vue.php:2372
|
8162 |
msgid "Hide dashboard widget"
|
8163 |
msgstr ""
|
8164 |
|
8165 |
+
#: languages/vue.php:2375
|
8166 |
msgid "Are you sure you want to hide the MonsterInsights Dashboard Widget? "
|
8167 |
msgstr ""
|
8168 |
|
8169 |
+
#: languages/vue.php:2378
|
8170 |
msgid "Yes, hide it!"
|
8171 |
msgstr ""
|
8172 |
|
8173 |
+
#: languages/vue.php:2381
|
8174 |
msgid "No, cancel!"
|
8175 |
msgstr ""
|
8176 |
|
8177 |
+
#: languages/vue.php:2384
|
8178 |
msgid "MonsterInsights Widget Hidden"
|
8179 |
msgstr ""
|
8180 |
|
8181 |
+
#: languages/vue.php:2387
|
8182 |
msgid "You can re-enable the MonsterInsights widget at any time using the \"Screen Options\" menu on the top right of this page"
|
8183 |
msgstr ""
|
8184 |
|
8185 |
+
#: languages/vue.php:2394
|
8186 |
msgid "Usage Tracking"
|
8187 |
msgstr ""
|
8188 |
|
8189 |
+
#: languages/vue.php:2397
|
8190 |
msgid "Allow Usage Tracking"
|
8191 |
msgstr ""
|
8192 |
|
8193 |
+
#: languages/vue.php:2400
|
8194 |
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."
|
8195 |
msgstr ""
|
8196 |
|
8197 |
#. Translators: Add links to documentation.
|
8198 |
+
#: languages/vue.php:2404
|
8199 |
msgid "Complete documentation on usage tracking is available %1$shere%2$s."
|
8200 |
msgstr ""
|
8201 |
|
8202 |
#. Translators: Make text green and add smiley face.
|
8203 |
+
#: languages/vue.php:2408
|
8204 |
msgid "You're using %1$sMonsterInsights Lite%2$s - no license needed. Enjoy! %3$s"
|
8205 |
msgstr ""
|
8206 |
|
8207 |
#. Translators: Add link to upgrade.
|
8208 |
+
#: languages/vue.php:2412
|
8209 |
msgid "To unlock more features consider %1$supgrading to PRO%2$s."
|
8210 |
msgstr ""
|
8211 |
|
8212 |
#. Translators: Make text green.
|
8213 |
+
#: languages/vue.php:2416
|
8214 |
msgid "As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
|
8215 |
msgstr ""
|
8216 |
|
8217 |
+
#: languages/vue.php:2419
|
8218 |
msgid "Unlock PRO Features Now"
|
8219 |
msgstr ""
|
8220 |
|
8221 |
+
#: languages/vue.php:2422
|
8222 |
msgid "Paste your license key here"
|
8223 |
msgstr ""
|
8224 |
|
8225 |
+
#: languages/vue.php:2425
|
8226 |
msgid "Verify"
|
8227 |
msgstr ""
|
8228 |
|
8229 |
#. Translators: Add link to retrieve license from account area.
|
8230 |
+
#: languages/vue.php:2429
|
8231 |
msgid "Already purchased? Simply enter your license key below to connect with MonsterInsights PRO! %1$sRetrieve your license key%2$s."
|
8232 |
msgstr ""
|
8233 |
|
8234 |
+
#: languages/vue.php:2432
|
8235 |
msgid "There was an error unlocking MonsterInsights PRO please try again or install manually."
|
8236 |
msgstr ""
|
8237 |
|
8238 |
#. Translators: Error status and error text.
|
8239 |
+
#: languages/vue.php:2436
|
8240 |
msgid "Can't load errors. Error: %1$s, %2$s"
|
8241 |
msgstr ""
|
8242 |
|
8243 |
+
#: languages/vue.php:2439
|
8244 |
msgid "No options available"
|
8245 |
msgstr ""
|
8246 |
|
8247 |
+
#: languages/vue.php:2442
|
8248 |
msgid "%1$sAll-in-One SEO%2$s Makes SEO Simple. Gain Valuable Organic Traffic."
|
8249 |
msgstr ""
|
8250 |
|
8251 |
+
#: languages/vue.php:2445
|
8252 |
msgid "Automatically migrate all of your SEO settings with just 1 click!"
|
8253 |
msgstr ""
|
8254 |
|
8255 |
+
#: languages/vue.php:2448
|
8256 |
msgid "1,938"
|
8257 |
msgstr ""
|
8258 |
|
8259 |
+
#: languages/vue.php:2451
|
8260 |
msgid "2+ Million Active Installs"
|
8261 |
msgstr ""
|
8262 |
|
8263 |
+
#: languages/vue.php:2454
|
8264 |
msgid "AIOSEO is the DIY Solution for Managing your SEO"
|
8265 |
msgstr ""
|
8266 |
|
8267 |
+
#: languages/vue.php:2457
|
8268 |
msgid "Set up the proper SEO foundations in less than 10 minutes."
|
8269 |
msgstr ""
|
8270 |
|
8271 |
+
#: languages/vue.php:2460
|
8272 |
msgid "SEO Audit Checklist"
|
8273 |
msgstr ""
|
8274 |
|
8275 |
+
#: languages/vue.php:2463
|
8276 |
msgid "Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic."
|
8277 |
msgstr ""
|
8278 |
|
8279 |
+
#: languages/vue.php:2466
|
8280 |
msgid "Optimize Your Pages For Higher Rankings With TruSEO Score."
|
8281 |
msgstr ""
|
8282 |
|
8283 |
+
#: languages/vue.php:2469
|
8284 |
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."
|
8285 |
msgstr ""
|
8286 |
|
8287 |
+
#: languages/vue.php:2472
|
8288 |
msgid "Get AIOSEO for WordPress"
|
8289 |
msgstr ""
|
8290 |
|
8291 |
+
#: languages/vue.php:2475
|
8292 |
msgid "Get the #1 Most Powerful WordPress SEO Plugin Today"
|
8293 |
msgstr ""
|
8294 |
|
8295 |
+
#: languages/vue.php:2478
|
8296 |
msgid "Try it out today, for free."
|
8297 |
msgstr ""
|
8298 |
|
8299 |
+
#: languages/vue.php:2481
|
8300 |
msgid "Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings."
|
8301 |
msgstr ""
|
8302 |
|
8303 |
+
#: languages/vue.php:2484
|
8304 |
msgid "Activate and Install the Plugin with just one click!"
|
8305 |
msgstr ""
|
8306 |
|
8307 |
+
#: languages/vue.php:2487
|
8308 |
msgid "Installing AIOSEO..."
|
8309 |
msgstr ""
|
8310 |
|
8311 |
+
#: languages/vue.php:2490
|
8312 |
msgid "Congrats! All-in-One SEO Installed."
|
8313 |
msgstr ""
|
8314 |
|
8315 |
+
#: languages/vue.php:2493
|
8316 |
msgid "Switch to AIOSEO"
|
8317 |
msgstr ""
|
8318 |
|
8319 |
+
#: languages/vue.php:2496
|
8320 |
msgid "Installation Failed. Please refresh and try again."
|
8321 |
msgstr ""
|
8322 |
|
8323 |
+
#: languages/vue.php:2499
|
8324 |
msgid "Activating AIOSEO..."
|
8325 |
msgstr ""
|
8326 |
|
8327 |
+
#: languages/vue.php:2502
|
8328 |
msgid "Activate AIOSEO"
|
8329 |
msgstr ""
|
8330 |
|
8331 |
+
#: languages/vue.php:2505
|
8332 |
msgid "Activation Failed. Please refresh and try again."
|
8333 |
msgstr ""
|
8334 |
|
8335 |
#. Translators: The name of the field that is throwing a validation error.
|
8336 |
+
#: languages/vue.php:2509
|
8337 |
msgid "%s can't be empty."
|
8338 |
msgstr ""
|
8339 |
|
8340 |
+
#: languages/vue.php:2512
|
8341 |
msgid "Duplicate values are not allowed."
|
8342 |
msgstr ""
|
8343 |
|
8344 |
+
#: languages/vue.php:2515
|
8345 |
msgid "You can add maximum 5 items."
|
8346 |
msgstr ""
|
8347 |
|
8348 |
+
#: languages/vue.php:2518
|
8349 |
msgid "At least 0 item required."
|
8350 |
msgstr ""
|
8351 |
|
8352 |
+
#: languages/vue.php:2521
|
8353 |
msgid "Add Another Link Path"
|
8354 |
msgstr ""
|
8355 |
|
8356 |
+
#: languages/vue.php:2524
|
8357 |
msgid "Remove row"
|
8358 |
msgstr ""
|
8359 |
|
8360 |
+
#: languages/vue.php:2527
|
8361 |
msgid "New"
|
8362 |
msgstr ""
|
8363 |
|
8364 |
+
#: languages/vue.php:2530
|
8365 |
msgid "Returning"
|
8366 |
msgstr ""
|
8367 |
|
8368 |
+
#: languages/vue.php:2533
|
8369 |
msgid "Top 10 Countries"
|
8370 |
msgstr ""
|
8371 |
|
8372 |
+
#: languages/vue.php:2536
|
8373 |
msgid "View Countries Report"
|
8374 |
msgstr ""
|
8375 |
|
8376 |
+
#: languages/vue.php:2539
|
8377 |
msgid "Top 10 Referrals"
|
8378 |
msgstr ""
|
8379 |
|
8380 |
+
#: languages/vue.php:2542
|
8381 |
msgid "View All Referral Sources"
|
8382 |
msgstr ""
|
8383 |
|
8384 |
+
#: languages/vue.php:2545
|
8385 |
msgid "View Full Posts/Pages Report"
|
8386 |
msgstr ""
|
8387 |
|
8388 |
+
#: languages/vue.php:2548
|
8389 |
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."
|
8390 |
msgstr ""
|
8391 |
|
8392 |
+
#: languages/vue.php:2551
|
8393 |
msgid "This list shows the top countries your website visitors are from."
|
8394 |
msgstr ""
|
8395 |
|
8396 |
+
#: languages/vue.php:2554
|
8397 |
msgid "This list shows the top websites that send your website traffic, known as referral traffic."
|
8398 |
msgstr ""
|
8399 |
|
8400 |
+
#: languages/vue.php:2557
|
8401 |
msgid "Export PDF Overview Report"
|
8402 |
msgstr ""
|
8403 |
|
8702 |
msgid "Error emptying the popular posts cache. Please try again."
|
8703 |
msgstr ""
|
8704 |
|
8705 |
+
#: languages/vue.php:2786
|
8706 |
msgid "Choose Theme"
|
8707 |
msgstr ""
|
8708 |
|
8709 |
+
#: languages/vue.php:2789
|
8710 |
msgid "Widget Styling"
|
8711 |
msgstr ""
|
8712 |
|
8713 |
+
#: languages/vue.php:2792
|
8714 |
msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
|
8715 |
msgstr ""
|
8716 |
|
8717 |
+
#: languages/vue.php:2795
|
8718 |
msgid "Sort By"
|
8719 |
msgstr ""
|
8720 |
|
8721 |
+
#: languages/vue.php:2798
|
8722 |
msgid "Choose how you'd like the widget to determine your popular posts."
|
8723 |
msgstr ""
|
8724 |
|
8725 |
+
#: languages/vue.php:2801
|
8726 |
msgid "Display Title"
|
8727 |
msgstr ""
|
8728 |
|
8729 |
+
#: languages/vue.php:2807
|
8730 |
msgid "Title your widget and set its display preferences."
|
8731 |
msgstr ""
|
8732 |
|
8733 |
+
#: languages/vue.php:2810
|
8734 |
msgid "Include in Post Types"
|
8735 |
msgstr ""
|
8736 |
|
8737 |
+
#: languages/vue.php:2813
|
8738 |
msgid "Exclude from specific posts"
|
8739 |
msgstr ""
|
8740 |
|
8741 |
#. Translators: Placeholders make the text bold.
|
8742 |
+
#: languages/vue.php:2817
|
8743 |
msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
|
8744 |
msgstr ""
|
8745 |
|
8746 |
#. Translators: Placeholders make the text bold.
|
8747 |
+
#: languages/vue.php:2821
|
8748 |
msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
|
8749 |
msgstr ""
|
8750 |
|
8751 |
+
#: languages/vue.php:2824
|
8752 |
msgid "Loading Themes"
|
8753 |
msgstr ""
|
8754 |
|
8755 |
#. Translators: placeholders make text small.
|
8756 |
+
#: languages/vue.php:2828
|
8757 |
msgid "Default Styles %1$s- As seen above.%2$s"
|
8758 |
msgstr ""
|
8759 |
|
8760 |
#. Translators: placeholders make text small.
|
8761 |
+
#: languages/vue.php:2832
|
8762 |
msgid "No Styles %1$s- Use your own CSS.%2$s"
|
8763 |
msgstr ""
|
8764 |
|
8765 |
#. Translators: placeholders make text small.
|
8766 |
+
#: languages/vue.php:2836
|
8767 |
msgid "Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s"
|
8768 |
msgstr ""
|
8769 |
|
8770 |
#. Translators: placeholders make text small.
|
8771 |
+
#: languages/vue.php:2840
|
8772 |
msgid "SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s"
|
8773 |
msgstr ""
|
8774 |
|
8775 |
#. Translators: placeholders make text small.
|
8776 |
+
#: languages/vue.php:2844
|
8777 |
msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
|
8778 |
msgstr ""
|
8779 |
|
8780 |
+
#: languages/vue.php:2847
|
8781 |
msgid "Placement"
|
8782 |
msgstr ""
|
8783 |
|
8784 |
+
#: languages/vue.php:2850
|
8785 |
msgid "Choose how you'd like to place the widget."
|
8786 |
msgstr ""
|
8787 |
|
8788 |
+
#: languages/vue.php:2853
|
8789 |
msgid "Insert After"
|
8790 |
msgstr ""
|
8791 |
|
8792 |
+
#: languages/vue.php:2856
|
8793 |
msgid "Choose where in the post body the widget will be placed."
|
8794 |
msgstr ""
|
8795 |
|
8796 |
+
#: languages/vue.php:2859
|
8797 |
msgid "Customize Design"
|
8798 |
msgstr ""
|
8799 |
|
8800 |
+
#: languages/vue.php:2862
|
8801 |
msgid "words"
|
8802 |
msgstr ""
|
8803 |
|
8804 |
+
#: languages/vue.php:2865
|
8805 |
msgid "Please select at least one post to display."
|
8806 |
msgstr ""
|
8807 |
|
8808 |
#. Translators: placeholders make text small.
|
8809 |
+
#: languages/vue.php:2869
|
8810 |
msgid "Automatic %1$s- The widget is automatically placed inside the post body.%2$s"
|
8811 |
msgstr ""
|
8812 |
|
8813 |
#. Translators: placeholders make text small.
|
8814 |
+
#: languages/vue.php:2873
|
8815 |
msgid "Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s"
|
8816 |
msgstr ""
|
8817 |
|
8818 |
+
#: languages/vue.php:2876
|
8819 |
msgid "Facebook Instant Articles"
|
8820 |
msgstr ""
|
8821 |
|
8822 |
+
#: languages/vue.php:2879
|
8823 |
msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to MonsterInsights Pro."
|
8824 |
msgstr ""
|
8825 |
|
8826 |
+
#: languages/vue.php:2882
|
8827 |
msgid "Want to use track users visiting your AMP pages? By upgrading to MonsterInsights Pro, you can enable AMP page tracking."
|
8828 |
msgstr ""
|
8829 |
|
8830 |
+
#: languages/vue.php:2885
|
8831 |
msgid "Ads Tracking"
|
8832 |
msgstr ""
|
8833 |
|
8834 |
+
#: languages/vue.php:2888
|
8835 |
msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
|
8836 |
msgstr ""
|
8837 |
|
8838 |
+
#: languages/vue.php:2891
|
8839 |
msgid "2,000,000+ use AIOSEO to Improve Their Website Search Rankings"
|
8840 |
msgstr ""
|
8841 |
|
8842 |
+
#: languages/vue.php:2894
|
8843 |
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."
|
8844 |
msgstr ""
|
8845 |
|
8846 |
+
#: languages/vue.php:2897
|
8847 |
msgid "Jack Brown"
|
8848 |
msgstr ""
|
8849 |
|
8850 |
+
#: languages/vue.php:2900
|
8851 |
msgid "PJB Internet Marketing"
|
8852 |
msgstr ""
|
8853 |
|
8854 |
+
#: languages/vue.php:2903
|
8855 |
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."
|
8856 |
msgstr ""
|
8857 |
|
8858 |
+
#: languages/vue.php:2906
|
8859 |
msgid "Joel Steinmann"
|
8860 |
msgstr ""
|
8861 |
|
8862 |
+
#: languages/vue.php:2909
|
8863 |
msgid "CEO, Solergo"
|
8864 |
msgstr ""
|
8865 |
|
8866 |
+
#: languages/vue.php:2912
|
8867 |
msgid "Recommended Addons"
|
8868 |
msgstr ""
|
8869 |
|
8870 |
+
#: languages/vue.php:2915
|
8871 |
msgid "To unlock more features consider upgrading to PRO. As a valued MonsterInsights Lite user you receive 50% off, automatically applied at checkout!"
|
8872 |
msgstr ""
|
8873 |
|
8874 |
+
#: languages/vue.php:2918
|
8875 |
msgid "Other Addons"
|
8876 |
msgstr ""
|
8877 |
|
8878 |
+
#: languages/vue.php:2921
|
8879 |
msgid "View all MonsterInsights addons"
|
8880 |
msgstr ""
|
8881 |
|
8882 |
+
#: languages/vue.php:2924
|
8883 |
msgid "Scroll Tracking"
|
8884 |
msgstr ""
|
8885 |
|
8886 |
+
#: languages/vue.php:2927
|
8887 |
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."
|
8888 |
msgstr ""
|
8889 |
|
8890 |
+
#: languages/vue.php:2930
|
8891 |
msgid ""
|
8892 |
"The EU Compliance addon allows you to improve compliance with GDPR\n"
|
8893 |
" and other privacy regulations."
|
8894 |
msgstr ""
|
8895 |
|
8896 |
+
#: languages/vue.php:2934
|
8897 |
msgid "EU Compliance"
|
8898 |
msgstr ""
|
8899 |
|
8900 |
+
#: languages/vue.php:2937
|
8901 |
msgid "Compatibility mode"
|
8902 |
msgstr ""
|
8903 |
|
8904 |
+
#: languages/vue.php:2940
|
8905 |
msgid "Enable _gtagTracker Compatibility"
|
8906 |
msgstr ""
|
8907 |
|
8908 |
#. Translators: Placeholder gets replaced with default GA js function.
|
8909 |
+
#: languages/vue.php:2944
|
8910 |
msgid "This enables MonsterInsights to work with plugins that use %1$s and don't support %2$s"
|
8911 |
msgstr ""
|
8912 |
|
8913 |
#. Translators: Page number of total pages. 1 & 2 make the first part of the text bold.
|
8914 |
+
#: languages/vue.php:2948
|
8915 |
msgid "%1$sPage %3$s%2$s of %4$s"
|
8916 |
msgstr ""
|
8917 |
|
8918 |
+
#: languages/vue.php:2952
|
8919 |
#: lite/includes/popular-posts/class-popular-posts-widget-sidebar.php:257
|
8920 |
msgid "Theme Preview"
|
8921 |
msgstr ""
|
8922 |
|
8923 |
+
#: languages/vue.php:2955
|
8924 |
msgid "Wide"
|
8925 |
msgstr ""
|
8926 |
|
8927 |
+
#: languages/vue.php:2958
|
8928 |
msgid "Narrow"
|
8929 |
msgstr ""
|
8930 |
|
8931 |
+
#: languages/vue.php:2962
|
8932 |
msgid "Title"
|
8933 |
msgstr ""
|
8934 |
|
8935 |
+
#: languages/vue.php:2966
|
8936 |
msgid "Color"
|
8937 |
msgstr ""
|
8938 |
|
8939 |
+
#: languages/vue.php:2970
|
8940 |
msgid "Size"
|
8941 |
msgstr ""
|
8942 |
|
8943 |
+
#: languages/vue.php:2974
|
8944 |
msgid "Border"
|
8945 |
msgstr ""
|
8946 |
|
8947 |
+
#: languages/vue.php:2977
|
8948 |
msgid "Author/Date"
|
8949 |
msgstr ""
|
8950 |
|
8951 |
+
#: languages/vue.php:2981
|
8952 |
msgid "Label"
|
8953 |
msgstr ""
|
8954 |
|
8955 |
+
#: languages/vue.php:2985
|
8956 |
msgid "Background"
|
8957 |
msgstr ""
|
8958 |
|
8959 |
+
#: languages/vue.php:2997
|
8960 |
msgid "Choose which content you would like displayed in the widget."
|
8961 |
msgstr ""
|
8962 |
|
8963 |
+
#: languages/vue.php:3009
|
8964 |
msgid "Comments"
|
8965 |
msgstr ""
|
8966 |
|
8967 |
+
#: languages/vue.php:3015
|
8968 |
msgid "Choose how many posts you’d like displayed in the widget."
|
8969 |
msgstr ""
|
8970 |
|
8971 |
+
#: languages/vue.php:3018
|
8972 |
msgid "Popular Posts data can be fetched correctly"
|
8973 |
msgstr ""
|
8974 |
|
8975 |
+
#: languages/vue.php:3021
|
8976 |
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."
|
8977 |
msgstr ""
|
8978 |
|
8979 |
+
#: languages/vue.php:3024
|
8980 |
msgid "Close"
|
8981 |
msgstr ""
|
8982 |
|
8983 |
+
#: languages/vue.php:3027
|
8984 |
msgid "Add Top 5 Posts from Google Analytics"
|
8985 |
msgstr ""
|
8986 |
|
8987 |
+
#: languages/vue.php:3030
|
8988 |
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."
|
8989 |
msgstr ""
|
8990 |
|
8991 |
+
#: languages/vue.php:3033
|
8992 |
msgid "Test Automated Posts"
|
8993 |
msgstr ""
|
8994 |
|
8995 |
#. Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc.
|
8996 |
+
#: languages/vue.php:3037
|
8997 |
msgid "Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics."
|
8998 |
msgstr ""
|
8999 |
|
9000 |
+
#: languages/vue.php:3040
|
9001 |
msgid "Automated + Curated"
|
9002 |
msgstr ""
|
9003 |
|
9004 |
#. Translators: Placeholder adds a link to the Custom Dimensions settings.
|
9005 |
+
#: languages/vue.php:3044
|
9006 |
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."
|
9007 |
msgstr ""
|
9008 |
|
9009 |
#. Translators: Placeholder gets replaced with current license version.
|
9010 |
+
#: languages/vue.php:3048
|
9011 |
msgid "Pro version is required."
|
9012 |
msgstr ""
|
9013 |
|
9014 |
+
#: languages/vue.php:3051
|
9015 |
msgid "Verifying Popular Posts data"
|
9016 |
msgstr ""
|
9017 |
|
9018 |
+
#: languages/vue.php:3054
|
9019 |
msgid "Select posts/search"
|
9020 |
msgstr ""
|
9021 |
|
9022 |
+
#: languages/vue.php:3057
|
9023 |
msgid "Oops! No posts found."
|
9024 |
msgstr ""
|
9025 |
|
9026 |
+
#: languages/vue.php:3060
|
9027 |
msgid "Search by post title"
|
9028 |
msgstr ""
|
9029 |
|
9030 |
+
#: languages/vue.php:3063
|
9031 |
msgid "Can't load posts."
|
9032 |
msgstr ""
|
9033 |
|
9034 |
+
#: languages/vue.php:3066
|
9035 |
msgid "SharedCount API Key"
|
9036 |
msgstr ""
|
9037 |
|
9038 |
+
#: languages/vue.php:3069
|
9039 |
msgid "Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing."
|
9040 |
msgstr ""
|
9041 |
|
9042 |
+
#: languages/vue.php:3072
|
9043 |
msgid "Start Indexing"
|
9044 |
msgstr ""
|
9045 |
|
9046 |
+
#: languages/vue.php:3075
|
9047 |
msgid "%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing."
|
9048 |
msgstr ""
|
9049 |
|
9050 |
+
#: languages/vue.php:3078
|
9051 |
msgid "Indexing completed, counts will update automatically every day."
|
9052 |
msgstr ""
|
9053 |
|
9054 |
+
#: languages/vue.php:3082
|
9055 |
msgid "Sartorial taxidermy venmo you probably haven't heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu."
|
9056 |
msgstr ""
|
9057 |
|
9058 |
+
#: languages/vue.php:3086
|
9059 |
msgid "Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan"
|
9060 |
msgstr ""
|
9061 |
|
9062 |
+
#: languages/vue.php:3090
|
9063 |
msgid "Icon"
|
9064 |
msgstr ""
|
9065 |
|
9066 |
#. Translators: Minimum and maximum number that can be used.
|
9067 |
+
#: languages/vue.php:3094
|
9068 |
msgid "Please enter a value between %1$s and %2$s"
|
9069 |
msgstr ""
|
9070 |
|
9071 |
#. Translators: The minimum set value.
|
9072 |
+
#: languages/vue.php:3098
|
9073 |
msgid "Please enter a value higher than %s"
|
9074 |
msgstr ""
|
9075 |
|
9076 |
#. Translators: The maximum set value.
|
9077 |
+
#: languages/vue.php:3102
|
9078 |
msgid "Please enter a value lower than %s"
|
9079 |
msgstr ""
|
9080 |
|
9081 |
+
#: languages/vue.php:3105
|
9082 |
msgid "Please enter a number"
|
9083 |
msgstr ""
|
9084 |
|
9085 |
+
#: languages/vue.php:3108
|
9086 |
msgid "Value has to be a round number"
|
9087 |
msgstr ""
|
9088 |
|
9089 |
+
#: languages/vue.php:3111
|
9090 |
msgid "Export PDF Report"
|
9091 |
msgstr ""
|
9092 |
|
9093 |
+
#: languages/vue.php:3114
|
9094 |
msgid "You can export PDF reports only in the PRO version."
|
9095 |
msgstr ""
|
9096 |
|
9097 |
+
#: languages/vue.php:3117
|
9098 |
msgid "Upgrade to MonsterInsights Pro to Unlock More Actionable Insights"
|
9099 |
msgstr ""
|
9100 |
|
9101 |
+
#: languages/vue.php:3120
|
9102 |
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!"
|
9103 |
msgstr ""
|
9104 |
|
9105 |
+
#: languages/vue.php:3123
|
9106 |
msgid "Upgrade to MonsterInsights Pro and Save 50% OFF!"
|
9107 |
msgstr ""
|
9108 |
|
9109 |
#. Translators: Makes text bold.
|
9110 |
+
#: languages/vue.php:3127
|
9111 |
msgid "Use coupon code %1$sLITEUPGRADE%2$s"
|
9112 |
msgstr ""
|
9113 |
|
9114 |
#. Translators: Make text green.
|
9115 |
+
#: languages/vue.php:3131
|
9116 |
msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
|
9117 |
msgstr ""
|
9118 |
|
9119 |
#. Translators: Placeholder adds a line break.
|
9120 |
+
#: languages/vue.php:3135
|
9121 |
msgid "You can customize your %sdate range only in the PRO version."
|
9122 |
msgstr ""
|
9123 |
|
9124 |
+
#: languages/vue.php:3138
|
9125 |
msgid "Help Us Improve"
|
9126 |
msgstr ""
|
9127 |
|
9128 |
+
#: languages/vue.php:3141
|
9129 |
msgid "Help us better understand our users and their website needs."
|
9130 |
msgstr ""
|
9131 |
|
9132 |
#. Translators: Adds a link to the documentation.
|
9133 |
+
#: languages/vue.php:3145
|
9134 |
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"
|
9135 |
msgstr ""
|
9136 |
|
9137 |
+
#: languages/vue.php:3148
|
9138 |
msgid "Website profile"
|
9139 |
msgstr ""
|
9140 |
|
9141 |
+
#: languages/vue.php:3151
|
9142 |
msgid "Active profile"
|
9143 |
msgstr ""
|
9144 |
|
9145 |
+
#: languages/vue.php:3154
|
9146 |
msgid "Skip and Keep Connection"
|
9147 |
msgstr ""
|
9148 |
|
9149 |
+
#: languages/vue.php:3157
|
9150 |
msgid "This feature requires MonsterInsights Pro"
|
9151 |
msgstr ""
|
9152 |
|
9153 |
+
#: languages/vue.php:3160
|
9154 |
msgid "By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more."
|
9155 |
msgstr ""
|
9156 |
|
9157 |
+
#: languages/vue.php:3163
|
9158 |
msgid "Upgrade to Pro and Unlock Popular Products"
|
9159 |
msgstr ""
|
9160 |
|
9161 |
+
#: languages/vue.php:3166
|
9162 |
msgid "View all Pro features"
|
9163 |
msgstr ""
|
9164 |
|
9165 |
+
#: languages/vue.php:3169
|
9166 |
msgid "Days"
|
9167 |
msgstr ""
|
9168 |
|
9169 |
#. Translators: placeholders make text small.
|
9170 |
+
#: languages/vue.php:3173
|
9171 |
msgid "7 days"
|
9172 |
msgstr ""
|
9173 |
|
9174 |
+
#: languages/vue.php:3176
|
9175 |
msgid "30 days"
|
9176 |
msgstr ""
|
9177 |
|
9178 |
+
#: languages/vue.php:3179
|
9179 |
msgid "Custom"
|
9180 |
msgstr ""
|
9181 |
|
9182 |
+
#: languages/vue.php:3182
|
9183 |
msgid "Only Show Posts from These Categories"
|
9184 |
msgstr ""
|
9185 |
|
9186 |
+
#: languages/vue.php:3185
|
9187 |
msgid "Choose from which categories posts will be displayed in the widget. All categories will be used if left empty."
|
9188 |
msgstr ""
|
9189 |
|
9190 |
+
#: languages/vue.php:3188
|
9191 |
msgid "Multiple Entries"
|
9192 |
msgstr ""
|
9193 |
|
9194 |
+
#: languages/vue.php:3191
|
9195 |
msgid "Total Number of Widgets to Show"
|
9196 |
msgstr ""
|
9197 |
|
9198 |
+
#: languages/vue.php:3194
|
9199 |
msgid "Choose how many widgets will be placed in a single Post."
|
9200 |
msgstr ""
|
9201 |
|
9202 |
+
#: languages/vue.php:3197
|
9203 |
msgid "Minimum Distance Between Widgets"
|
9204 |
msgstr ""
|
9205 |
|
9206 |
+
#: languages/vue.php:3200
|
9207 |
msgid "Choose the distance between widgets."
|
9208 |
msgstr ""
|
9209 |
|
9210 |
+
#: languages/vue.php:3203
|
9211 |
msgid "Minimum Word Count to Display Multiple Widgets"
|
9212 |
msgstr ""
|
9213 |
|
9214 |
+
#: languages/vue.php:3206
|
9215 |
msgid "Choose the minimum word count for a Post to have multiple entries."
|
9216 |
msgstr ""
|
9217 |
|
9218 |
+
#: languages/vue.php:3209
|
9219 |
msgid "Pro version is required"
|
9220 |
msgstr ""
|
9221 |
|
9222 |
#. Translators: Placeholder adds a link to the Custom Dimensions settings.
|
9223 |
+
#: languages/vue.php:3213
|
9224 |
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)."
|
9225 |
msgstr ""
|
9226 |
|
9227 |
+
#: languages/vue.php:3216
|
9228 |
msgid "Unlock with %s"
|
9229 |
msgstr ""
|
9230 |
|
9231 |
+
#: languages/vue.php:3219
|
9232 |
msgid "Automatic Placement"
|
9233 |
msgstr ""
|
9234 |
|
9235 |
+
#: languages/vue.php:3222
|
9236 |
msgid "Display using Gutenberg Blocks"
|
9237 |
msgstr ""
|
9238 |
|
9239 |
+
#: languages/vue.php:3225
|
9240 |
msgid "Embed Options"
|
9241 |
msgstr ""
|
9242 |
|
9243 |
+
#: languages/vue.php:3228
|
9244 |
msgid "All Embed Options can be used in conjunction with one another."
|
9245 |
msgstr ""
|
9246 |
|
9247 |
+
#: languages/vue.php:3231
|
9248 |
msgid "Using the Gutenberg Block"
|
9249 |
msgstr ""
|
9250 |
|
9251 |
+
#: languages/vue.php:3234
|
9252 |
msgid "Using Automatic Embed"
|
9253 |
msgstr ""
|
9254 |
|
9255 |
+
#: languages/vue.php:3237
|
9256 |
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."
|
9257 |
msgstr ""
|
9258 |
|
9259 |
+
#: languages/vue.php:3240
|
9260 |
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."
|
9261 |
msgstr ""
|
9262 |
|
9263 |
+
#: languages/vue.php:3243
|
9264 |
msgid "Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above."
|
9265 |
msgstr ""
|
9266 |
|
9267 |
+
#: languages/vue.php:3246
|
9268 |
msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg"
|
9269 |
msgstr ""
|
9270 |
|
9271 |
+
#: languages/vue.php:3249
|
9272 |
msgid "%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page."
|
9273 |
msgstr ""
|
9274 |
|
9275 |
+
#: languages/vue.php:3252
|
9276 |
msgid "%1$sStep 2%2$s - Search for “Popular Posts”."
|
9277 |
msgstr ""
|
9278 |
|
9279 |
+
#: languages/vue.php:3255
|
9280 |
msgid "%1$sStep 3%2$s - Style the widget using the Block Settings sidebar."
|
9281 |
msgstr ""
|
9282 |
|
9283 |
+
#: languages/vue.php:3258
|
9284 |
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."
|
9285 |
msgstr ""
|
9286 |
|
9287 |
+
#: languages/vue.php:3261
|
9288 |
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."
|
9289 |
msgstr ""
|
9290 |
|
9291 |
+
#: languages/vue.php:3264
|
9292 |
msgid "%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design."
|
9293 |
msgstr ""
|
9294 |
|
9295 |
+
#: languages/vue.php:3267
|
9296 |
msgid "Display using a Shortcode"
|
9297 |
msgstr ""
|
9298 |
|
9299 |
+
#: languages/vue.php:3270
|
9300 |
msgid "Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin."
|
9301 |
msgstr ""
|
9302 |
|
9303 |
+
#: languages/vue.php:3273
|
9304 |
msgid "Copy Shortcode"
|
9305 |
msgstr ""
|
9306 |
|
9307 |
+
#: languages/vue.php:3276
|
9308 |
msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode"
|
9309 |
msgstr ""
|
9310 |
|
9311 |
+
#: languages/vue.php:3279
|
9312 |
msgid "Enable Automatic Placement"
|
9313 |
msgstr ""
|
9314 |
|
9315 |
+
#: languages/vue.php:3282
|
9316 |
msgid "Display in a Sidebar"
|
9317 |
msgstr ""
|
9318 |
|
9319 |
+
#: languages/vue.php:3285
|
9320 |
msgid "Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above."
|
9321 |
msgstr ""
|
9322 |
|
9323 |
+
#: languages/vue.php:3288
|
9324 |
msgid "Watch Video - How to Add the Popular Posts widget using Widgets"
|
9325 |
msgstr ""
|
9326 |
|
9327 |
+
#: languages/vue.php:3291
|
9328 |
msgid "Display Method"
|
9329 |
msgstr ""
|
9330 |
|
9331 |
+
#: languages/vue.php:3294
|
9332 |
msgid "There are two ways to manual include the widget in your posts."
|
9333 |
msgstr ""
|
9334 |
|
9335 |
+
#: languages/vue.php:3297
|
9336 |
msgid "Using the Shortcode"
|
9337 |
msgstr ""
|
9338 |
|
9339 |
+
#: languages/vue.php:3300
|
9340 |
msgid "Learn how to insert the widget using Gutenberg blocks."
|
9341 |
msgstr ""
|
9342 |
|
9343 |
+
#: languages/vue.php:3303
|
9344 |
msgid "Learn how to insert the widget using out Shortcode."
|
9345 |
msgstr ""
|
9346 |
|
9347 |
+
#: languages/vue.php:3306
|
9348 |
msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg"
|
9349 |
msgstr ""
|
9350 |
|
9351 |
+
#: languages/vue.php:3309
|
9352 |
msgid "%1$sStep 2%2$s - Search for “Inline Popular Posts by MonsterInsights”."
|
9353 |
msgstr ""
|
9354 |
|
9355 |
+
#: languages/vue.php:3312
|
9356 |
msgid "Shortcode"
|
9357 |
msgstr ""
|
9358 |
|
9359 |
+
#: languages/vue.php:3315
|
9360 |
msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode"
|
9361 |
msgstr ""
|
9362 |
|
9363 |
+
#: languages/vue.php:3318
|
9364 |
msgid "Facebook Instant Articleasdasdasds"
|
9365 |
msgstr ""
|
9366 |
|
9367 |
+
#: languages/vue.php:3321
|
9368 |
msgid "Media"
|
9369 |
msgstr ""
|
9370 |
|
9371 |
+
#: languages/vue.php:3324
|
9372 |
msgid "Track how your users interact with videos on your website. Upgrade to MonsterInsights Pro."
|
9373 |
msgstr ""
|
9374 |
|
9375 |
+
#: languages/vue.php:3327
|
9376 |
msgid "Improve Your Conversion Rate With Insights Into Which Content Works Best."
|
9377 |
msgstr ""
|
9378 |
|
9379 |
+
#: languages/vue.php:3330
|
9380 |
msgid "Top Affilliate Links"
|
9381 |
msgstr ""
|
9382 |
|
9383 |
+
#: languages/vue.php:3333
|
9384 |
msgid "Scroll Depth"
|
9385 |
msgstr ""
|
9386 |
|
9387 |
+
#: languages/vue.php:3336
|
9388 |
msgid "Increase Sales and Make More Money With Enhanced eCommerce Insights."
|
9389 |
msgstr ""
|
9390 |
|
9391 |
+
#: languages/vue.php:3339
|
9392 |
msgid "10+ eCommerce Integrations"
|
9393 |
msgstr ""
|
9394 |
|
9395 |
+
#: languages/vue.php:3342
|
9396 |
msgid "Average Order Value"
|
9397 |
msgstr ""
|
9398 |
|
9399 |
+
#: languages/vue.php:3345
|
9400 |
msgid "Total Revenue"
|
9401 |
msgstr ""
|
9402 |
|
9403 |
+
#: languages/vue.php:3348
|
9404 |
msgid "Number of Transactions"
|
9405 |
msgstr ""
|
9406 |
|
9407 |
+
#: languages/vue.php:3351
|
9408 |
msgid "Increase Engagement and Unlock New Insights About Your Site."
|
9409 |
msgstr ""
|
9410 |
|
9411 |
+
#: languages/vue.php:3354
|
9412 |
msgid "User ID Tracking"
|
9413 |
msgstr ""
|
9414 |
|
9415 |
+
#: languages/vue.php:3357
|
9416 |
msgid "Post Types"
|
9417 |
msgstr ""
|
9418 |
|
9419 |
+
#: languages/vue.php:3360
|
9420 |
msgid "Tag Tracking"
|
9421 |
msgstr ""
|
9422 |
|
9423 |
+
#: languages/vue.php:3363
|
9424 |
msgid "Categories"
|
9425 |
msgstr ""
|
9426 |
|
9427 |
+
#: languages/vue.php:3366
|
9428 |
msgid "SEO Scores"
|
9429 |
msgstr ""
|
9430 |
|
9431 |
+
#: languages/vue.php:3369
|
9432 |
msgid "Publish Times"
|
9433 |
msgstr ""
|
9434 |
|
9435 |
+
#: languages/vue.php:3372
|
9436 |
msgid "Focus Keywords"
|
9437 |
msgstr ""
|
9438 |
|
9439 |
+
#: languages/vue.php:3375
|
9440 |
msgid "Track Every Type of Web Form and Gain Visibility Into Your Customer Journey."
|
9441 |
msgstr ""
|
9442 |
|
9443 |
+
#: languages/vue.php:3378
|
9444 |
msgid "Conversion Counts"
|
9445 |
msgstr ""
|
9446 |
|
9447 |
+
#: languages/vue.php:3381
|
9448 |
msgid "Impression Counts"
|
9449 |
msgstr ""
|
9450 |
|
9451 |
+
#: languages/vue.php:3384
|
9452 |
msgid "Conversion Rates"
|
9453 |
msgstr ""
|
9454 |
|
9455 |
+
#: languages/vue.php:3387
|
9456 |
msgid "See Exactly How Visitors Find Your Website From Google."
|
9457 |
msgstr ""
|
9458 |
|
9459 |
+
#: languages/vue.php:3390
|
9460 |
msgid "Top Google Search Terms"
|
9461 |
msgstr ""
|
9462 |
|
9463 |
+
#: languages/vue.php:3393
|
9464 |
msgid "Number of Clicks"
|
9465 |
msgstr ""
|
9466 |
|
9467 |
+
#: languages/vue.php:3396
|
9468 |
msgid "Click-through Ratio"
|
9469 |
msgstr ""
|
9470 |
|
9471 |
+
#: languages/vue.php:3399
|
9472 |
msgid "Average Results Position"
|
9473 |
msgstr ""
|
9474 |
|
9475 |
+
#: languages/vue.php:3402
|
9476 |
msgid "Realtime Report"
|
9477 |
msgstr ""
|
9478 |
|
9479 |
+
#: languages/vue.php:3405
|
9480 |
msgid "See Who And What is Happening on Your Website in Realtime."
|
9481 |
msgstr ""
|
9482 |
|
9483 |
+
#: languages/vue.php:3408
|
9484 |
msgid "Top Page Views"
|
9485 |
msgstr ""
|
9486 |
|
9487 |
+
#: languages/vue.php:3411
|
9488 |
msgid "Current Active Users"
|
9489 |
msgstr ""
|
9490 |
|
9491 |
+
#: languages/vue.php:3414
|
9492 |
msgid "Top Referral Sources"
|
9493 |
msgstr ""
|
9494 |
|
9495 |
+
#: languages/vue.php:3417
|
9496 |
msgid "Top Countries"
|
9497 |
msgstr ""
|
9498 |
|
9499 |
+
#: languages/vue.php:3420
|
9500 |
msgid "Top Cities"
|
9501 |
msgstr ""
|
9502 |
|
9503 |
+
#: languages/vue.php:3423
|
9504 |
msgid "Improve Your User Experience and Improve Search Engine Rankings."
|
9505 |
msgstr ""
|
9506 |
|
9507 |
+
#: languages/vue.php:3426
|
9508 |
msgid "Overall Site Speed Score"
|
9509 |
msgstr ""
|
9510 |
|
9511 |
+
#: languages/vue.php:3429
|
9512 |
msgid "Server Response Times"
|
9513 |
msgstr ""
|
9514 |
|
9515 |
+
#: languages/vue.php:3432
|
9516 |
msgid "Mobile and Desktop Scores"
|
9517 |
msgstr ""
|
9518 |
|
9519 |
+
#: languages/vue.php:3435
|
9520 |
msgid "First Contentful Paint"
|
9521 |
msgstr ""
|
9522 |
|
9523 |
+
#: languages/vue.php:3438
|
9524 |
msgid "Automatic Recommendations"
|
9525 |
msgstr ""
|
9526 |
|
9527 |
+
#: languages/vue.php:3441
|
9528 |
msgid "Total Blocking Time"
|
9529 |
msgstr ""
|
9530 |
|
9531 |
+
#: languages/vue.php:3444
|
9532 |
msgid "On-Demand Audits"
|
9533 |
msgstr ""
|
9534 |
|
9535 |
+
#: languages/vue.php:3447
|
9536 |
msgid "Time to Interactive"
|
9537 |
msgstr ""
|
9538 |
|
9539 |
+
#: languages/vue.php:3450
|
9540 |
msgid "2021 Year in Review"
|
9541 |
msgstr ""
|
9542 |
|
9543 |
+
#: languages/vue.php:3453
|
9544 |
msgid "Realtime"
|
9545 |
msgstr ""
|
9546 |
|
9547 |
#. Translators: Placeholders are used for making text bold and adding a link.
|
9548 |
+
#: languages/vue.php:3457
|
9549 |
msgid "%1$sYou're using %2$s Lite%3$s. To unlock all reports, consider %4$supgrading to Pro%5$s."
|
9550 |
msgstr ""
|
9551 |
|
9552 |
+
#: languages/vue.php:3460
|
9553 |
msgid "Featured"
|
9554 |
msgstr ""
|
9555 |
|
9556 |
+
#: languages/vue.php:3463
|
9557 |
msgid "Traffic"
|
9558 |
msgstr ""
|
9559 |
|
9560 |
+
#: languages/vue.php:3466
|
9561 |
msgid "Revenue"
|
9562 |
msgstr ""
|
9563 |
|
9564 |
+
#: languages/vue.php:3469
|
9565 |
msgid "Guides & Resources"
|
9566 |
msgstr ""
|
9567 |
|
9568 |
+
#: languages/vue.php:3472
|
9569 |
msgid "Upgrade and Unlock"
|
9570 |
msgstr ""
|
9571 |
|
9572 |
+
#: languages/vue.php:3475
|
9573 |
msgid "What’s in the %1$s?"
|
9574 |
msgstr ""
|
9575 |
|
9576 |
+
#: languages/vue.php:3478
|
9577 |
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"
|
9578 |
msgstr ""
|
9579 |
|
9580 |
+
#: languages/vue.php:3481
|
9581 |
msgid "Your 2021 Year in Review is still calculating. Please check back later to see how your website performed last year."
|
9582 |
msgstr ""
|
9583 |
|
9584 |
+
#: languages/vue.php:3484
|
9585 |
msgid "Your 2021 Analytics Report"
|
9586 |
msgstr ""
|
9587 |
|
9588 |
+
#: languages/vue.php:3490
|
9589 |
msgid "January 1, 2021 - December 31, 2021"
|
9590 |
msgstr ""
|
9591 |
|
9592 |
+
#: languages/vue.php:3493
|
9593 |
msgid "A Tip for 2022"
|
9594 |
msgstr ""
|
9595 |
|
9596 |
+
#: languages/vue.php:3496
|
9597 |
msgid "A Tip For 2022"
|
9598 |
msgstr ""
|
9599 |
|
9600 |
+
#: languages/vue.php:3499
|
9601 |
msgid "Here's to an amazing 2022!"
|
9602 |
msgstr ""
|
9603 |
|
9604 |
+
#: languages/vue.php:3502
|
9605 |
msgid "Try our other popular WordPress plugins to grow your website in 2022."
|
9606 |
msgstr ""
|
9607 |
|
9608 |
+
#: languages/vue.php:3505
|
9609 |
msgid "Become a WordPress expert in 2022. Join our amazing communities and take your website to the next level."
|
9610 |
msgstr ""
|
9611 |
|
9612 |
+
#: languages/vue.php:3508
|
9613 |
msgid "Copyright MonsterInsights, 2022"
|
9614 |
msgstr ""
|
9615 |
|
9616 |
#. Translators: Number of minutes spent on site.
|
9617 |
+
#: languages/vue.php:3512
|
9618 |
msgid "Each visitor spent an average of %s minutes on your website in 2021."
|
9619 |
msgstr ""
|
9620 |
|
9621 |
+
#: languages/vue.php:3515
|
9622 |
msgid "RafflePress"
|
9623 |
msgstr ""
|
9624 |
|
9625 |
+
#: languages/vue.php:3518
|
9626 |
msgid "Launch giveaways and raffle campaigns to grow your email lists, increase traffic, and get more social media followers."
|
9627 |
msgstr ""
|
9628 |
|
9629 |
+
#: languages/vue.php:3521
|
9630 |
msgid "Constant Contact"
|
9631 |
msgstr ""
|
9632 |
|
9633 |
+
#: languages/vue.php:3524
|
9634 |
msgid "Create amazing email marketing campaigns with drag and drop simplicity. Exclusive Offer: Save 20%."
|
9635 |
msgstr ""
|
9636 |
|
9637 |
+
#: languages/vue.php:3527
|
9638 |
msgid "SEMRUSH"
|
9639 |
msgstr ""
|
9640 |
|
9641 |
+
#: languages/vue.php:3530
|
9642 |
msgid "Perform SEO and content marketing research, track keywords, and much more. Special Offer: First 30 Days Free."
|
9643 |
msgstr ""
|
9644 |
|
9645 |
+
#: languages/vue.php:3533
|
9646 |
msgid "Engagement Tools"
|
9647 |
msgstr ""
|
9648 |
|
9649 |
+
#: languages/vue.php:3536
|
9650 |
msgid "WPForms"
|
9651 |
msgstr ""
|
9652 |
|
9653 |
+
#: languages/vue.php:3539
|
9654 |
msgid "The world’s most popular WordPress form builder, trusted by over 5 million websites. Easily build contact forms, payment forms, and more."
|
9655 |
msgstr ""
|
9656 |
|
9657 |
+
#: languages/vue.php:3542
|
9658 |
msgid "OptinMonster"
|
9659 |
msgstr ""
|
9660 |
|
9661 |
+
#: languages/vue.php:3545
|
9662 |
msgid "Convert and monetize more of your website traffic with engaging pop-up and gamified tools. Great for all types of websites."
|
9663 |
msgstr ""
|
9664 |
|
9665 |
+
#: languages/vue.php:3548
|
9666 |
msgid "Smash Balloon - Facebook"
|
9667 |
msgstr ""
|
9668 |
|
9669 |
+
#: languages/vue.php:3551
|
9670 |
msgid "Smash Balloon - Instagram"
|
9671 |
msgstr ""
|
9672 |
|
9673 |
+
#: languages/vue.php:3554
|
9674 |
msgid "Quickly add social media feeds from Facebook, Instagram, Twitter, and others to your website, with no coding needed."
|
9675 |
msgstr ""
|
9676 |
|
9677 |
+
#: languages/vue.php:3557
|
9678 |
msgid "Popular Posts by MonsterInsights"
|
9679 |
msgstr ""
|
9680 |
|
9681 |
+
#: languages/vue.php:3560
|
9682 |
msgid "Increase your visitor engagement by automatically embedding popular and related content from your website."
|
9683 |
msgstr ""
|
9684 |
|
9685 |
+
#: languages/vue.php:3563
|
9686 |
msgid "Popular Products by MonsterInsights"
|
9687 |
msgstr ""
|
9688 |
|
9689 |
+
#: languages/vue.php:3566
|
9690 |
msgid "Automatically show related products to increase conversion rates and increase cart sizes on your eCommerce website."
|
9691 |
msgstr ""
|
9692 |
|
9693 |
+
#: languages/vue.php:3569
|
9694 |
msgid "Revenue Tools"
|
9695 |
msgstr ""
|
9696 |
|
9697 |
+
#: languages/vue.php:3572
|
9698 |
msgid "SeedProd"
|
9699 |
msgstr ""
|
9700 |
|
9701 |
+
#: languages/vue.php:3575
|
9702 |
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."
|
9703 |
msgstr ""
|
9704 |
|
9705 |
+
#: languages/vue.php:3578
|
9706 |
msgid "Featured Tools"
|
9707 |
msgstr ""
|
9708 |
|
9709 |
+
#: languages/vue.php:3581
|
9710 |
msgid "Easy Affiliate"
|
9711 |
msgstr ""
|
9712 |
|
9713 |
+
#: languages/vue.php:3584
|
9714 |
msgid "Launch, grow, and manage an affiliate program, all right from your WordPress dashboard. Works automatically with MonsterInsights."
|
9715 |
msgstr ""
|
9716 |
|
9717 |
+
#: languages/vue.php:3587
|
9718 |
msgid "SearchWP"
|
9719 |
msgstr ""
|
9720 |
|
9721 |
+
#: languages/vue.php:3590
|
9722 |
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."
|
9723 |
msgstr ""
|
9724 |
|
9725 |
+
#: languages/vue.php:3593
|
9726 |
msgid "Easily sell digital products like ebooks, plugins, and courses with WordPress. Built-in payment processing, coupons, shopping cart, detailed reporting, and more."
|
9727 |
msgstr ""
|
9728 |
|
9729 |
+
#: languages/vue.php:3596
|
9730 |
msgid "Create a membership website. Works automatically with MonsterInsights, no coding needed."
|
9731 |
msgstr ""
|
9732 |
|
9733 |
+
#: languages/vue.php:3599
|
9734 |
msgid "Thirsty Affiliates"
|
9735 |
msgstr ""
|
9736 |
|
9737 |
+
#: languages/vue.php:3602
|
9738 |
msgid "Manage all your affiliate links with features designed to help make bloggers more money."
|
9739 |
msgstr ""
|
9740 |
|
9741 |
+
#: languages/vue.php:3605
|
9742 |
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."
|
9743 |
msgstr ""
|
9744 |
|
9745 |
+
#: languages/vue.php:3608
|
9746 |
msgid "Advanced Coupons"
|
9747 |
msgstr ""
|
9748 |
|
9749 |
+
#: languages/vue.php:3611
|
9750 |
msgid "Create coupons, reward loyal customers, and schedule promotions for your eCommerce store."
|
9751 |
msgstr ""
|
9752 |
|
9753 |
+
#: languages/vue.php:3614
|
9754 |
msgid "PrettyLinks"
|
9755 |
msgstr ""
|
9756 |
|
9757 |
+
#: languages/vue.php:3617
|
9758 |
msgid "Automatically monetize your website content with affiliate links added automatically to your content."
|
9759 |
msgstr ""
|
9760 |
|
9761 |
+
#: languages/vue.php:3620
|
9762 |
msgid "Install Now"
|
9763 |
msgstr ""
|
9764 |
|
9765 |
+
#: languages/vue.php:3623
|
9766 |
msgid "Online Marketing Guides & Resources"
|
9767 |
msgstr ""
|
9768 |
|
9769 |
+
#: languages/vue.php:3626
|
9770 |
msgid "MonsterInsights Pro"
|
9771 |
msgstr ""
|
9772 |
|
9773 |
+
#: languages/vue.php:3629
|
9774 |
msgid "Upgrade to unlock eCommerce tracking, Custom Dimensions, Form Tracking, and much more. Special Offer: Save 50% today."
|
9775 |
msgstr ""
|
9776 |
|
9777 |
+
#: languages/vue.php:3632
|
9778 |
msgid "Traffic Tools"
|
9779 |
msgstr ""
|
9780 |
|
9781 |
+
#: languages/vue.php:3635
|
9782 |
msgid "All in One SEO (AIOSEO)"
|
9783 |
msgstr ""
|
9784 |
|
9785 |
+
#: languages/vue.php:3638
|
9786 |
msgid "The best WordPress SEO plugin that works automatically with MonsterInsights."
|
9787 |
msgstr ""
|
9788 |
|
9789 |
+
#: languages/vue.php:3641
|
9790 |
msgid "PushEngage"
|
9791 |
msgstr ""
|
9792 |
|
9793 |
+
#: languages/vue.php:3644
|
9794 |
msgid "Send push notifications to your visitors to drive more traffic and boost sales."
|
9795 |
msgstr ""
|
9796 |
|
9797 |
+
#: languages/vue.php:3647
|
9798 |
msgid "With MonsterInsights Pro, you can easily measure individual affiliate performance inside Google Analytics, no coding needed. Track clicks, revenue, and more."
|
9799 |
msgstr ""
|
9800 |
|
9801 |
+
#: languages/vue.php:3650
|
9802 |
msgid "Works automatically with WooCommerce, MemberPress, and EasyDigitalDownloads."
|
9803 |
msgstr ""
|
9804 |
|
9805 |
+
#: languages/vue.php:3653
|
9806 |
msgid "Media Tracking"
|
9807 |
msgstr ""
|
9808 |
|
9809 |
+
#: languages/vue.php:3656
|
9810 |
msgid "Get Started"
|
9811 |
msgstr ""
|
9812 |
|
9813 |
+
#: languages/vue.php:3659
|
9814 |
msgid "Awesome! Tracking and Analytics are All Setup!"
|
9815 |
msgstr ""
|
9816 |
|
9817 |
+
#: languages/vue.php:3662
|
9818 |
msgid "MonsterInsights is connected to Google Analytics and data is being collected."
|
9819 |
msgstr ""
|
9820 |
|
9821 |
+
#: languages/vue.php:3665
|
9822 |
msgid "Complete Setup without Upgrading"
|
9823 |
msgstr ""
|
9824 |
|
9825 |
+
#: languages/vue.php:3668
|
9826 |
msgid "Success"
|
9827 |
msgstr ""
|
9828 |
|
9829 |
+
#: languages/vue.php:3671
|
9830 |
msgid "Connected to Google Analytics"
|
9831 |
msgstr ""
|
9832 |
|
9833 |
+
#: languages/vue.php:3674
|
9834 |
msgid "Tracking Code Installed"
|
9835 |
msgstr ""
|
9836 |
|
9837 |
+
#: languages/vue.php:3677
|
9838 |
msgid "Data Being Collected"
|
9839 |
msgstr ""
|
9840 |
|
9841 |
#. Translators: Add link to retrieve license from account area.
|
9842 |
+
#: languages/vue.php:3681
|
9843 |
msgid "Already purchased? Simply enter your license key below to connect with MonsterInsights PRO!"
|
9844 |
msgstr ""
|
9845 |
|
9846 |
+
#: languages/vue.php:3684
|
9847 |
msgid "Verify License Key"
|
9848 |
msgstr ""
|
9849 |
|
9850 |
+
#: languages/vue.php:3687
|
9851 |
msgid "Upgrade to Unlock These Features"
|
9852 |
msgstr ""
|
9853 |
|
9854 |
+
#: languages/vue.php:3690
|
9855 |
msgid "To unlock the selected features, please upgrade to Pro and enter your license key below."
|
9856 |
msgstr ""
|
9857 |
|
9858 |
+
#: languages/vue.php:3693
|
9859 |
msgid "%1$sBonus:%2$s Upgrade today and save %3$s50%% on a Pro License!%4$s (auto-applied at checkout)"
|
9860 |
msgstr ""
|
9861 |
|
9862 |
+
#: languages/vue.php:3696
|
9863 |
msgid "Verifying License..."
|
9864 |
msgstr ""
|
9865 |
|
9866 |
+
#: languages/vue.php:3699
|
9867 |
msgid "Privacy Compliance Addon"
|
9868 |
msgstr ""
|
9869 |
|
9870 |
+
#: languages/vue.php:3702
|
9871 |
msgid "Help Google Analytics become compliant with internet privacy laws like GDPR, PECR, and CCPA."
|
9872 |
msgstr ""
|
9873 |
|
9874 |
+
#: languages/vue.php:3705
|
9875 |
msgid "Get access to advanced reports inside WordPress including search keywords report, real-time analytics dashboard, publishers / eCommerce report, custom dimensions, and more."
|
9876 |
msgstr ""
|
9877 |
|
9878 |
+
#: languages/vue.php:3708
|
9879 |
msgid "Instantly enable enhanced eCommerce tracking, so you can measure conversions, sales, and revenue stats. Works with WooCommerce, Easy Digital Downloads, MemberPress, and more."
|
9880 |
msgstr ""
|
9881 |
|
9882 |
+
#: languages/vue.php:3711
|
9883 |
msgid "20+ Advanced Tracking"
|
9884 |
msgstr ""
|
9885 |
|
9886 |
+
#: languages/vue.php:3714
|
9887 |
msgid "Get access to advanced tracking features like form conversion tracking, author tracking, custom dimensions, scroll tracking, and more."
|
9888 |
msgstr ""
|
9889 |
|
9890 |
+
#: languages/vue.php:3717
|
9891 |
msgid "Advanced Growth Tools"
|
9892 |
msgstr ""
|
9893 |
|
9894 |
+
#: languages/vue.php:3720
|
9895 |
msgid "Get access to advanced growth tools such as popular posts addon, A/B testing tool, smart URL builder, and more."
|
9896 |
msgstr ""
|
9897 |
|
9898 |
+
#: languages/vue.php:3723
|
9899 |
msgid "Track how your users interact with videos on your website."
|
9900 |
msgstr ""
|
9901 |
|
9902 |
+
#: languages/vue.php:3726
|
9903 |
msgid "Error Processing"
|
9904 |
msgstr ""
|
9905 |
|
9906 |
+
#: languages/vue.php:3729
|
9907 |
msgid "There was an error while processing some features. Please try again or you can skip this process for now"
|
9908 |
msgstr ""
|
9909 |
|
9910 |
+
#: languages/vue.php:3732
|
9911 |
msgid "Which website features would you like to enable?"
|
9912 |
msgstr ""
|
9913 |
|
9914 |
+
#: languages/vue.php:3735
|
9915 |
msgid "We’ve already selected our recommended features based on your site. "
|
9916 |
msgstr ""
|
9917 |
|
9918 |
+
#: languages/vue.php:3738
|
9919 |
msgid "Continue"
|
9920 |
msgstr ""
|
9921 |
|
9922 |
+
#: languages/vue.php:3741
|
9923 |
msgid "Standard Analytics & Reports"
|
9924 |
msgstr ""
|
9925 |
|
9926 |
+
#: languages/vue.php:3744
|
9927 |
msgid "Get the reports and stats that matter right inside your WordPress Dashboard."
|
9928 |
msgstr ""
|
9929 |
|
9930 |
+
#: languages/vue.php:3747
|
9931 |
msgid "Helps you see what links your users are clicking on your site."
|
9932 |
msgstr ""
|
9933 |
|
9934 |
+
#: languages/vue.php:3750
|
9935 |
msgid "All In One SEO Toolkit"
|
9936 |
msgstr ""
|
9937 |
|
9938 |
+
#: languages/vue.php:3753
|
9939 |
msgid "The best WordPress SEO plugin that works with MonsterInsights to boost your rankings."
|
9940 |
msgstr ""
|
9941 |
|
9942 |
+
#: languages/vue.php:3756
|
9943 |
msgid "Smart Form Builder by WPForms"
|
9944 |
msgstr ""
|
9945 |
|
9946 |
+
#: languages/vue.php:3759
|
9947 |
msgid "The most popular WordPress form plugin, trusted by over 5 million websites. Easily create contact forms, payment forms, surveys and more."
|
9948 |
msgstr ""
|
9949 |
|
9950 |
+
#: languages/vue.php:3762
|
9951 |
+
msgid "The following plugins will be installed: "
|
9952 |
+
msgstr ""
|
9953 |
+
|
9954 |
#: lite/includes/admin/connect.php:42
|
9955 |
msgid "You are not allowed to install plugins."
|
9956 |
msgstr ""
|
languages/vue.php
CHANGED
@@ -7,7 +7,7 @@ $generated_i18n_strings = array(
|
|
7 |
// Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:97
|
8 |
__( '2', 'google-analytics-for-wordpress' ),
|
9 |
|
10 |
-
// Reference: src/modules/wizard-onboarding/components/
|
11 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:205
|
12 |
__( 'Error', 'google-analytics-for-wordpress' ),
|
13 |
|
@@ -243,10 +243,10 @@ $generated_i18n_strings = array(
|
|
243 |
// Reference: src/modules/frontend/monsterinsights-frontend.vue:36
|
244 |
__( 'Insights', 'google-analytics-for-wordpress' ),
|
245 |
|
246 |
-
// Reference: src/modules/
|
247 |
__( 'Overview Report', 'google-analytics-for-wordpress' ),
|
248 |
|
249 |
-
// Reference: src/modules/
|
250 |
__( 'Welcome to MonsterInsights', 'google-analytics-for-wordpress' ),
|
251 |
|
252 |
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:126
|
@@ -271,20 +271,20 @@ $generated_i18n_strings = array(
|
|
271 |
__( 'See All Features', 'google-analytics-for-wordpress' ),
|
272 |
|
273 |
// Reference: src/modules/frontend/components/FrontendUpsell-Lite.vue:11
|
274 |
-
// Reference: src/modules/
|
275 |
__( 'Upgrade to PRO', 'google-analytics-for-wordpress' ),
|
276 |
|
277 |
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:134
|
278 |
__( 'per year', 'google-analytics-for-wordpress' ),
|
279 |
|
280 |
-
// Reference: src/modules/
|
281 |
-
// Reference: src/modules/
|
282 |
__( 'Upgrade Now', 'google-analytics-for-wordpress' ),
|
283 |
|
284 |
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:136
|
285 |
__( 'Testimonials', 'google-analytics-for-wordpress' ),
|
286 |
|
287 |
-
// Reference: src/modules/
|
288 |
__( 'Universal Tracking', 'google-analytics-for-wordpress' ),
|
289 |
|
290 |
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:141
|
@@ -332,17 +332,16 @@ $generated_i18n_strings = array(
|
|
332 |
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:181
|
333 |
__( 'Ecommerce Report', 'google-analytics-for-wordpress' ),
|
334 |
|
335 |
-
// Reference: src/modules/
|
336 |
__( 'Form Conversions', 'google-analytics-for-wordpress' ),
|
337 |
|
338 |
-
// Reference: src/modules/
|
339 |
__( 'Custom Dimensions', 'google-analytics-for-wordpress' ),
|
340 |
|
341 |
-
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:184
|
342 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:278
|
343 |
__( 'Author Tracking', 'google-analytics-for-wordpress' ),
|
344 |
|
345 |
-
// Reference: src/modules/
|
346 |
__( 'Google Optimize', 'google-analytics-for-wordpress' ),
|
347 |
|
348 |
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:186
|
@@ -351,10 +350,10 @@ $generated_i18n_strings = array(
|
|
351 |
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:187
|
352 |
__( 'WooCommerce', 'google-analytics-for-wordpress' ),
|
353 |
|
354 |
-
// Reference: src/modules/
|
355 |
__( 'Easy Digital Downloads', 'google-analytics-for-wordpress' ),
|
356 |
|
357 |
-
// Reference: src/modules/
|
358 |
__( 'MemberPress', 'google-analytics-for-wordpress' ),
|
359 |
|
360 |
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:190
|
@@ -394,13 +393,16 @@ $generated_i18n_strings = array(
|
|
394 |
// Reference: src/modules/reports/components/ReportReAuth.vue:20
|
395 |
__( 'There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating.', 'google-analytics-for-wordpress' ),
|
396 |
|
397 |
-
// Reference: src/modules/
|
|
|
398 |
__( 'Reconnect MonsterInsights', 'google-analytics-for-wordpress' ),
|
399 |
|
400 |
-
// Reference: src/modules/
|
|
|
401 |
__( 'Re-Authenticating', 'google-analytics-for-wordpress' ),
|
402 |
|
403 |
-
// Reference: src/modules/wizard-onboarding/components/
|
|
|
404 |
__( 'Ok', 'google-analytics-for-wordpress' ),
|
405 |
|
406 |
// Reference: src/components/TheQuickLinks.vue:31
|
@@ -422,13 +424,19 @@ $generated_i18n_strings = array(
|
|
422 |
/* Translators: Placeholder is replaced with WPForms. */
|
423 |
__( 'Recommended Plugin: %s', 'google-analytics-for-wordpress' ),
|
424 |
|
|
|
|
|
425 |
// Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:42
|
426 |
__( 'Install', 'google-analytics-for-wordpress' ),
|
427 |
|
|
|
|
|
428 |
// Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:38
|
429 |
__( 'Activate', 'google-analytics-for-wordpress' ),
|
430 |
|
431 |
// Reference: src/modules/frontend/components/FrontendNoAuth.vue:27
|
|
|
|
|
432 |
__( 'Learn More', 'google-analytics-for-wordpress' ),
|
433 |
|
434 |
// Reference: src/modules/frontend/components/FrontendPoweredBy.vue:12
|
@@ -490,24 +498,24 @@ $generated_i18n_strings = array(
|
|
490 |
// Reference: src/modules/settings/routes/site.js:111
|
491 |
__( 'PrettyLinks Integration', 'google-analytics-for-wordpress' ),
|
492 |
|
493 |
-
// Reference: src/modules/about/components/AboutNavigation-Lite.vue:15
|
494 |
// Reference: src/modules/settings/routes/site.js:125
|
495 |
__( 'About Us', 'google-analytics-for-wordpress' ),
|
496 |
|
497 |
-
// Reference: src/modules/about/components/AboutNavigation-Lite.vue:16
|
498 |
// Reference: src/modules/settings/routes/site.js:133
|
499 |
__( 'Getting Started', 'google-analytics-for-wordpress' ),
|
500 |
|
501 |
-
// Reference: src/modules/about/components/AboutNavigation-Lite.vue:17
|
502 |
// Reference: src/modules/settings/routes/site.js:142
|
503 |
__( 'Lite vs Pro', 'google-analytics-for-wordpress' ),
|
504 |
|
|
|
505 |
// Reference: src/modules/settings/routes/site.js:163
|
506 |
__( 'Inline Popular Posts', 'google-analytics-for-wordpress' ),
|
507 |
|
|
|
508 |
// Reference: src/modules/settings/routes/site.js:171
|
509 |
__( 'Popular Posts Widget', 'google-analytics-for-wordpress' ),
|
510 |
|
|
|
511 |
// Reference: src/modules/settings/routes/site.js:180
|
512 |
__( 'Popular Products', 'google-analytics-for-wordpress' ),
|
513 |
|
@@ -521,12 +529,12 @@ $generated_i18n_strings = array(
|
|
521 |
// Reference: src/modules/settings/routes/site.js:38
|
522 |
__( 'General', 'google-analytics-for-wordpress' ),
|
523 |
|
524 |
-
// Reference: src/modules/growth-tools/components/GrowthNavigation.vue:19
|
525 |
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabsNavigation.vue:76
|
526 |
// Reference: src/modules/settings/routes/site.js:46
|
527 |
__( 'Engagement', 'google-analytics-for-wordpress' ),
|
528 |
|
529 |
-
// Reference: src/modules/
|
|
|
530 |
__( 'eCommerce', 'google-analytics-for-wordpress' ),
|
531 |
|
532 |
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabsNavigation.vue:78
|
@@ -565,7 +573,6 @@ $generated_i18n_strings = array(
|
|
565 |
// Reference: src/modules/reports/components/ReportNoAuth.vue:28
|
566 |
__( 'Please ask your webmaster to connect MonsterInsights to Google Analytics.', 'google-analytics-for-wordpress' ),
|
567 |
|
568 |
-
// Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:43
|
569 |
// Reference: src/modules/widget/store/index.js:77
|
570 |
__( 'Overview', 'google-analytics-for-wordpress' ),
|
571 |
|
@@ -575,7 +582,7 @@ $generated_i18n_strings = array(
|
|
575 |
// Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:46
|
576 |
__( 'Search Console', 'google-analytics-for-wordpress' ),
|
577 |
|
578 |
-
// Reference: src/modules/reports/components/monsterinsights-
|
579 |
__( 'Dimensions', 'google-analytics-for-wordpress' ),
|
580 |
|
581 |
// Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:48
|
@@ -604,7 +611,6 @@ $generated_i18n_strings = array(
|
|
604 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:261
|
605 |
__( 'eCommerce Report', 'google-analytics-for-wordpress' ),
|
606 |
|
607 |
-
// Reference: src/modules/reports/components/reports/monsterinsights-ReportSearchConsole-Lite.vue:26
|
608 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:299
|
609 |
__( 'Search Console Report', 'google-analytics-for-wordpress' ),
|
610 |
|
@@ -614,20 +620,18 @@ $generated_i18n_strings = array(
|
|
614 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:289
|
615 |
__( 'Forms Report', 'google-analytics-for-wordpress' ),
|
616 |
|
617 |
-
// Reference: src/modules/reports/
|
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 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:271
|
625 |
__( 'Time to Purchase', 'google-analytics-for-wordpress' ),
|
626 |
|
627 |
// Reference: src/modules/widget/store/index.js:104
|
628 |
__( 'This list shows how many days from first visit it took users to purchase products from your site.', 'google-analytics-for-wordpress' ),
|
629 |
|
630 |
-
// Reference: src/modules/widget/store/index.js:111
|
631 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:267
|
632 |
__( 'Sessions to Purchase', 'google-analytics-for-wordpress' ),
|
633 |
|
@@ -664,21 +668,18 @@ $generated_i18n_strings = array(
|
|
664 |
// Reference: src/modules/widget/store/index.js:35
|
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/modules/widget/store/index.js:41
|
668 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:252
|
669 |
__( 'Top Landing Pages', 'google-analytics-for-wordpress' ),
|
670 |
|
671 |
// Reference: src/modules/widget/store/index.js:42
|
672 |
__( 'This list shows the top pages users first land on when visiting your website.', 'google-analytics-for-wordpress' ),
|
673 |
|
674 |
-
// Reference: src/modules/widget/store/index.js:48
|
675 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:254
|
676 |
__( 'Top Exit Pages', 'google-analytics-for-wordpress' ),
|
677 |
|
678 |
// Reference: src/modules/widget/store/index.js:49
|
679 |
__( 'This list shows the top pages users exit your website from.', 'google-analytics-for-wordpress' ),
|
680 |
|
681 |
-
// Reference: src/modules/widget/store/index.js:56
|
682 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:256
|
683 |
__( 'Top Outbound Links', 'google-analytics-for-wordpress' ),
|
684 |
|
@@ -691,21 +692,18 @@ $generated_i18n_strings = array(
|
|
691 |
// Reference: src/modules/widget/store/index.js:64
|
692 |
__( 'This list shows the top affiliate links your visitors clicked on.', 'google-analytics-for-wordpress' ),
|
693 |
|
694 |
-
// Reference: src/modules/widget/store/index.js:70
|
695 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:255
|
696 |
__( 'Top Download Links', 'google-analytics-for-wordpress' ),
|
697 |
|
698 |
// Reference: src/modules/widget/store/index.js:71
|
699 |
__( 'This list shows the download links your visitors clicked the most.', 'google-analytics-for-wordpress' ),
|
700 |
|
701 |
-
// Reference: src/modules/widget/store/index.js:83
|
702 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:269
|
703 |
__( 'Top Products', 'google-analytics-for-wordpress' ),
|
704 |
|
705 |
// Reference: src/modules/widget/store/index.js:84
|
706 |
__( 'This list shows the top selling products on your website.', 'google-analytics-for-wordpress' ),
|
707 |
|
708 |
-
// Reference: src/modules/widget/store/index.js:90
|
709 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:268
|
710 |
__( 'Top Conversion Sources', 'google-analytics-for-wordpress' ),
|
711 |
|
@@ -845,7 +843,7 @@ $generated_i18n_strings = array(
|
|
845 |
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:107
|
846 |
__( 'Overview Reports for the last 30 days.', 'google-analytics-for-wordpress' ),
|
847 |
|
848 |
-
// Reference: src/modules/
|
849 |
__( 'Advanced Reports', 'google-analytics-for-wordpress' ),
|
850 |
|
851 |
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:109
|
@@ -869,6 +867,7 @@ $generated_i18n_strings = array(
|
|
869 |
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:121
|
870 |
__( 'Headline Analyzer', 'google-analytics-for-wordpress' ),
|
871 |
|
|
|
872 |
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:57
|
873 |
__( 'Email Summaries', 'google-analytics-for-wordpress' ),
|
874 |
|
@@ -902,7 +901,6 @@ $generated_i18n_strings = array(
|
|
902 |
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:150
|
903 |
__( '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' ),
|
904 |
|
905 |
-
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:156
|
906 |
// Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:84
|
907 |
__( 'Not Available', 'google-analytics-for-wordpress' ),
|
908 |
|
@@ -963,7 +961,7 @@ $generated_i18n_strings = array(
|
|
963 |
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:84
|
964 |
__( 'Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors', 'google-analytics-for-wordpress' ),
|
965 |
|
966 |
-
// Reference: src/modules/
|
967 |
__( 'eCommerce Tracking', 'google-analytics-for-wordpress' ),
|
968 |
|
969 |
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:91
|
@@ -988,19 +986,21 @@ $generated_i18n_strings = array(
|
|
988 |
// Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:48
|
989 |
__( 'Google Authentication', 'google-analytics-for-wordpress' ),
|
990 |
|
|
|
991 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:50
|
992 |
__( 'Connect Google Analytics + WordPress', 'google-analytics-for-wordpress' ),
|
993 |
|
|
|
994 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:51
|
995 |
__( 'You will be taken to the MonsterInsights website where you\'ll need to connect your Analytics account.', 'google-analytics-for-wordpress' ),
|
996 |
|
997 |
-
// Reference: src/modules/settings/components/
|
998 |
__( 'Miscellaneous', 'google-analytics-for-wordpress' ),
|
999 |
|
1000 |
-
// Reference: src/modules/settings/components/
|
1001 |
__( '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' ),
|
1002 |
|
1003 |
-
// Reference: src/modules/settings/components/
|
1004 |
__( 'Hide Announcements', 'google-analytics-for-wordpress' ),
|
1005 |
|
1006 |
// Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:55
|
@@ -1045,7 +1045,7 @@ $generated_i18n_strings = array(
|
|
1045 |
// Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:88
|
1046 |
__( 'Pretty Links Installed & Activated', 'google-analytics-for-wordpress' ),
|
1047 |
|
1048 |
-
// Reference: src/modules/tools/components/monsterinsights-
|
1049 |
__( 'Download Pretty Links', 'google-analytics-for-wordpress' ),
|
1050 |
|
1051 |
// Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:90
|
@@ -1258,6 +1258,7 @@ $generated_i18n_strings = array(
|
|
1258 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:45
|
1259 |
__( 'Continue & Install WPForms', 'google-analytics-for-wordpress' ),
|
1260 |
|
|
|
1261 |
// Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:30
|
1262 |
__( 'Installing...', 'google-analytics-for-wordpress' ),
|
1263 |
|
@@ -1267,7 +1268,6 @@ $generated_i18n_strings = array(
|
|
1267 |
// Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
|
1268 |
__( 'Show in full-width mode', 'google-analytics-for-wordpress' ),
|
1269 |
|
1270 |
-
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:328
|
1271 |
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:131
|
1272 |
__( 'Upgrade to MonsterInsights Pro', 'google-analytics-for-wordpress' ),
|
1273 |
|
@@ -1305,15 +1305,12 @@ $generated_i18n_strings = array(
|
|
1305 |
// Reference: src/modules/reports/store/actions.js:220
|
1306 |
__( 'Please wait', 'google-analytics-for-wordpress' ),
|
1307 |
|
1308 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:119
|
1309 |
// Reference: src/modules/reports/store/actions.js:57
|
1310 |
__( 'activate', 'google-analytics-for-wordpress' ),
|
1311 |
|
1312 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:119
|
1313 |
// Reference: src/modules/reports/store/actions.js:57
|
1314 |
__( 'install', 'google-analytics-for-wordpress' ),
|
1315 |
|
1316 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:127
|
1317 |
// Reference: src/modules/reports/store/actions.js:61
|
1318 |
__( 'Visit addons page', 'google-analytics-for-wordpress' ),
|
1319 |
|
@@ -1340,18 +1337,22 @@ $generated_i18n_strings = array(
|
|
1340 |
// Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:30
|
1341 |
__( 'Your Website', 'google-analytics-for-wordpress' ),
|
1342 |
|
|
|
1343 |
// Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:80
|
1344 |
__( 'Sessions', 'google-analytics-for-wordpress' ),
|
1345 |
|
|
|
1346 |
// Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:83
|
1347 |
__( 'Pageviews', 'google-analytics-for-wordpress' ),
|
1348 |
|
1349 |
// Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:33
|
1350 |
__( 'Avg. Duration', 'google-analytics-for-wordpress' ),
|
1351 |
|
|
|
1352 |
// Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:92
|
1353 |
__( 'Bounce Rate', 'google-analytics-for-wordpress' ),
|
1354 |
|
|
|
1355 |
// Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:93
|
1356 |
__( 'Total Users', 'google-analytics-for-wordpress' ),
|
1357 |
|
@@ -1586,6 +1587,7 @@ $generated_i18n_strings = array(
|
|
1586 |
__( 'A Tip for 2021', 'google-analytics-for-wordpress' ),
|
1587 |
|
1588 |
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:276
|
|
|
1589 |
__( 'Demographics', 'google-analytics-for-wordpress' ),
|
1590 |
|
1591 |
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:277
|
@@ -1612,7 +1614,6 @@ $generated_i18n_strings = array(
|
|
1612 |
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:284
|
1613 |
__( 'Average Age', 'google-analytics-for-wordpress' ),
|
1614 |
|
1615 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:106
|
1616 |
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:101
|
1617 |
__( 'Behavior', 'google-analytics-for-wordpress' ),
|
1618 |
|
@@ -1920,13 +1921,14 @@ $generated_i18n_strings = array(
|
|
1920 |
// Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:32
|
1921 |
__( 'SEO Score Tracking', 'google-analytics-for-wordpress' ),
|
1922 |
|
|
|
1923 |
// Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:26
|
1924 |
__( 'Activating...', 'google-analytics-for-wordpress' ),
|
1925 |
|
1926 |
-
// Reference: src/modules/addons/components/
|
1927 |
__( 'Deactivating...', 'google-analytics-for-wordpress' ),
|
1928 |
|
1929 |
-
// Reference: src/modules/addons/components/
|
1930 |
__( 'Deactivate', 'google-analytics-for-wordpress' ),
|
1931 |
|
1932 |
// Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:43
|
@@ -2017,11 +2019,11 @@ $generated_i18n_strings = array(
|
|
2017 |
/* Translators: Error status and error text. */
|
2018 |
__( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
|
2019 |
|
2020 |
-
// Reference: src/modules/
|
2021 |
// Reference: src/modules/wizard-onboarding/api/index.js:43
|
2022 |
__( 'You appear to be offline.', 'google-analytics-for-wordpress' ),
|
2023 |
|
2024 |
-
// Reference: src/modules/
|
2025 |
/* Translators: Error status and error text. */
|
2026 |
__( 'Can\'t save settings. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
|
2027 |
|
@@ -2136,17 +2138,21 @@ $generated_i18n_strings = array(
|
|
2136 |
/* Translators: Error status and error text. */
|
2137 |
__( 'Can\'t install WPForms. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
|
2138 |
|
|
|
2139 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:71
|
2140 |
/* Translators: Example path (/go/). */
|
2141 |
__( 'Path (example: %s)', 'google-analytics-for-wordpress' ),
|
2142 |
|
|
|
2143 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:73
|
2144 |
__( 'Path has to start with a / and have no spaces', 'google-analytics-for-wordpress' ),
|
2145 |
|
|
|
2146 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:78
|
2147 |
/* Translators: Example label (aff). */
|
2148 |
__( 'Label (example: %s)', 'google-analytics-for-wordpress' ),
|
2149 |
|
|
|
2150 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:80
|
2151 |
__( 'Label can\'t contain any spaces', 'google-analytics-for-wordpress' ),
|
2152 |
|
@@ -2196,7 +2202,7 @@ $generated_i18n_strings = array(
|
|
2196 |
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:135
|
2197 |
__( 'Disconnect MonsterInsights', 'google-analytics-for-wordpress' ),
|
2198 |
|
2199 |
-
// Reference: src/modules/
|
2200 |
__( 'Authenticating', 'google-analytics-for-wordpress' ),
|
2201 |
|
2202 |
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:245
|
@@ -2211,7 +2217,7 @@ $generated_i18n_strings = array(
|
|
2211 |
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:296
|
2212 |
__( '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' ),
|
2213 |
|
2214 |
-
// Reference: src/modules/
|
2215 |
__( 'Connect MonsterInsights', 'google-analytics-for-wordpress' ),
|
2216 |
|
2217 |
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:97
|
@@ -2223,10 +2229,10 @@ $generated_i18n_strings = array(
|
|
2223 |
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:100
|
2224 |
__( 'Active Profile', 'google-analytics-for-wordpress' ),
|
2225 |
|
2226 |
-
// Reference: src/modules/
|
2227 |
__( 'Your website profile has been set at the network level of your WordPress Multisite.', 'google-analytics-for-wordpress' ),
|
2228 |
|
2229 |
-
// Reference: src/modules/
|
2230 |
__( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-for-wordpress' ),
|
2231 |
|
2232 |
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:103
|
@@ -2359,7 +2365,7 @@ $generated_i18n_strings = array(
|
|
2359 |
// Reference: src/modules/widget/components/WidgetTips.vue:70
|
2360 |
__( 'Pro Tip:', 'google-analytics-for-wordpress' ),
|
2361 |
|
2362 |
-
// Reference: src/modules/reports/components/
|
2363 |
__( 'Show', 'google-analytics-for-wordpress' ),
|
2364 |
|
2365 |
// Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:14
|
@@ -2380,21 +2386,19 @@ $generated_i18n_strings = array(
|
|
2380 |
// Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:41
|
2381 |
__( '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' ),
|
2382 |
|
|
|
2383 |
// Reference: src/modules/settings/components/input/tab-engagement/SettingsInputEUCompliance-Lite.vue:22
|
2384 |
__( 'Upgrade', 'google-analytics-for-wordpress' ),
|
2385 |
|
2386 |
-
// Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:39
|
2387 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:27
|
2388 |
__( 'Usage Tracking', 'google-analytics-for-wordpress' ),
|
2389 |
|
2390 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:28
|
2391 |
__( 'Allow Usage Tracking', 'google-analytics-for-wordpress' ),
|
2392 |
|
2393 |
-
// Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:40
|
2394 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:29
|
2395 |
__( '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' ),
|
2396 |
|
2397 |
-
// Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:43
|
2398 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:31
|
2399 |
/* Translators: Add links to documentation. */
|
2400 |
__( 'Complete documentation on usage tracking is available %1$shere%2$s.', 'google-analytics-for-wordpress' ),
|
@@ -2414,11 +2418,9 @@ $generated_i18n_strings = array(
|
|
2414 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:35
|
2415 |
__( 'Unlock PRO Features Now', 'google-analytics-for-wordpress' ),
|
2416 |
|
2417 |
-
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:36
|
2418 |
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:139
|
2419 |
__( 'Paste your license key here', 'google-analytics-for-wordpress' ),
|
2420 |
|
2421 |
-
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:37
|
2422 |
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:140
|
2423 |
__( 'Verify', 'google-analytics-for-wordpress' ),
|
2424 |
|
@@ -2426,7 +2428,6 @@ $generated_i18n_strings = array(
|
|
2426 |
/* Translators: Add link to retrieve license from account area. */
|
2427 |
__( 'Already purchased? Simply enter your license key below to connect with MonsterInsights PRO! %1$sRetrieve your license key%2$s.', 'google-analytics-for-wordpress' ),
|
2428 |
|
2429 |
-
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:69
|
2430 |
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:211
|
2431 |
__( 'There was an error unlocking MonsterInsights PRO please try again or install manually.', 'google-analytics-for-wordpress' ),
|
2432 |
|
@@ -2555,7 +2556,6 @@ $generated_i18n_strings = array(
|
|
2555 |
// Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:285
|
2556 |
__( 'Export PDF Overview Report', 'google-analytics-for-wordpress' ),
|
2557 |
|
2558 |
-
// Reference: src/modules/settings/components/input/SettingsInputNumber.vue:56
|
2559 |
// Reference: src/modules/settings/components/input/SettingsInputText.vue:50
|
2560 |
__( 'Reset to default', 'google-analytics-for-wordpress' ),
|
2561 |
|
@@ -2583,7 +2583,7 @@ $generated_i18n_strings = array(
|
|
2583 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:57
|
2584 |
__( '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' ),
|
2585 |
|
2586 |
-
// Reference: src/modules/wizard-onboarding/components/steps/
|
2587 |
__( 'Enhanced Link Attribution', 'google-analytics-for-wordpress' ),
|
2588 |
|
2589 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:59
|
@@ -2782,23 +2782,18 @@ $generated_i18n_strings = array(
|
|
2782 |
// Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:92
|
2783 |
__( 'Error emptying the popular posts cache. Please try again.', 'google-analytics-for-wordpress' ),
|
2784 |
|
2785 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:105
|
2786 |
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:100
|
2787 |
__( 'Choose Theme', 'google-analytics-for-wordpress' ),
|
2788 |
|
2789 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:107
|
2790 |
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:102
|
2791 |
__( 'Widget Styling', 'google-analytics-for-wordpress' ),
|
2792 |
|
2793 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:108
|
2794 |
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:103
|
2795 |
__( 'Choose how you want to determine the colors, font sizes and spacing of the widget.', 'google-analytics-for-wordpress' ),
|
2796 |
|
2797 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:109
|
2798 |
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:104
|
2799 |
__( 'Sort By', 'google-analytics-for-wordpress' ),
|
2800 |
|
2801 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:110
|
2802 |
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:105
|
2803 |
__( 'Choose how you\'d like the widget to determine your popular posts.', 'google-analytics-for-wordpress' ),
|
2804 |
|
@@ -2811,49 +2806,39 @@ $generated_i18n_strings = array(
|
|
2811 |
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:108
|
2812 |
__( 'Title your widget and set its display preferences.', 'google-analytics-for-wordpress' ),
|
2813 |
|
2814 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:115
|
2815 |
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:109
|
2816 |
__( 'Include in Post Types', 'google-analytics-for-wordpress' ),
|
2817 |
|
2818 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:116
|
2819 |
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:110
|
2820 |
__( 'Exclude from specific posts', 'google-analytics-for-wordpress' ),
|
2821 |
|
2822 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:118
|
2823 |
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:112
|
2824 |
/* Translators: Placeholders make the text bold. */
|
2825 |
__( 'Choose which Post Types the widget %1$sWILL%2$s be placed.', 'google-analytics-for-wordpress' ),
|
2826 |
|
2827 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:120
|
2828 |
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:114
|
2829 |
/* Translators: Placeholders make the text bold. */
|
2830 |
__( 'Choose from which Posts the widget %1$sWILL NOT%2$s be placed.', 'google-analytics-for-wordpress' ),
|
2831 |
|
2832 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:122
|
2833 |
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:115
|
2834 |
__( 'Loading Themes', 'google-analytics-for-wordpress' ),
|
2835 |
|
2836 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:129
|
2837 |
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:120
|
2838 |
/* Translators: placeholders make text small. */
|
2839 |
__( 'Default Styles %1$s- As seen above.%2$s', 'google-analytics-for-wordpress' ),
|
2840 |
|
2841 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:134
|
2842 |
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:125
|
2843 |
/* Translators: placeholders make text small. */
|
2844 |
__( 'No Styles %1$s- Use your own CSS.%2$s', 'google-analytics-for-wordpress' ),
|
2845 |
|
2846 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:141
|
2847 |
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:132
|
2848 |
/* Translators: placeholders make text small. */
|
2849 |
__( 'Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s', 'google-analytics-for-wordpress' ),
|
2850 |
|
2851 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:146
|
2852 |
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:137
|
2853 |
/* Translators: placeholders make text small. */
|
2854 |
__( 'SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s', 'google-analytics-for-wordpress' ),
|
2855 |
|
2856 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:151
|
2857 |
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:142
|
2858 |
/* Translators: placeholders make text small. */
|
2859 |
__( 'Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s', 'google-analytics-for-wordpress' ),
|
@@ -2870,7 +2855,6 @@ $generated_i18n_strings = array(
|
|
2870 |
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:114
|
2871 |
__( 'Choose where in the post body the widget will be placed.', 'google-analytics-for-wordpress' ),
|
2872 |
|
2873 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:121
|
2874 |
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:109
|
2875 |
__( 'Customize Design', 'google-analytics-for-wordpress' ),
|
2876 |
|
@@ -2930,10 +2914,10 @@ $generated_i18n_strings = array(
|
|
2930 |
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:46
|
2931 |
__( 'To unlock more features consider upgrading to PRO. As a valued MonsterInsights Lite user you receive 50% off, automatically applied at checkout!', 'google-analytics-for-wordpress' ),
|
2932 |
|
2933 |
-
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:
|
2934 |
__( 'Other Addons', 'google-analytics-for-wordpress' ),
|
2935 |
|
2936 |
-
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:
|
2937 |
__( 'View all MonsterInsights addons', 'google-analytics-for-wordpress' ),
|
2938 |
|
2939 |
// Reference: src/modules/settings/components/input/tab-engagement/SettingsInputScroll-Lite.vue:18
|
@@ -2964,6 +2948,7 @@ $generated_i18n_strings = array(
|
|
2964 |
__( '%1$sPage %3$s%2$s of %4$s', 'google-analytics-for-wordpress' ),
|
2965 |
|
2966 |
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:99
|
|
|
2967 |
__( 'Theme Preview', 'google-analytics-for-wordpress' ),
|
2968 |
|
2969 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:61
|
@@ -2973,24 +2958,30 @@ $generated_i18n_strings = array(
|
|
2973 |
__( 'Narrow', 'google-analytics-for-wordpress' ),
|
2974 |
|
2975 |
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:104
|
|
|
2976 |
__( 'Title', 'google-analytics-for-wordpress' ),
|
2977 |
|
2978 |
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:102
|
|
|
2979 |
__( 'Color', 'google-analytics-for-wordpress' ),
|
2980 |
|
2981 |
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:103
|
|
|
2982 |
__( 'Size', 'google-analytics-for-wordpress' ),
|
2983 |
|
2984 |
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:107
|
|
|
2985 |
__( 'Border', 'google-analytics-for-wordpress' ),
|
2986 |
|
2987 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:141
|
2988 |
__( 'Author/Date', 'google-analytics-for-wordpress' ),
|
2989 |
|
2990 |
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:105
|
|
|
2991 |
__( 'Label', 'google-analytics-for-wordpress' ),
|
2992 |
|
2993 |
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:106
|
|
|
2994 |
__( 'Background', 'google-analytics-for-wordpress' ),
|
2995 |
|
2996 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:144
|
@@ -3032,7 +3023,7 @@ $generated_i18n_strings = array(
|
|
3032 |
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:112
|
3033 |
__( 'Close', 'google-analytics-for-wordpress' ),
|
3034 |
|
3035 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-
|
3036 |
__( 'Add Top 5 Posts from Google Analytics', 'google-analytics-for-wordpress' ),
|
3037 |
|
3038 |
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:49
|
@@ -3045,7 +3036,7 @@ $generated_i18n_strings = array(
|
|
3045 |
/* Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc. */
|
3046 |
__( 'Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics.', 'google-analytics-for-wordpress' ),
|
3047 |
|
3048 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-
|
3049 |
__( 'Automated + Curated', 'google-analytics-for-wordpress' ),
|
3050 |
|
3051 |
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:55
|
@@ -3087,12 +3078,15 @@ $generated_i18n_strings = array(
|
|
3087 |
__( 'Indexing completed, counts will update automatically every day.', 'google-analytics-for-wordpress' ),
|
3088 |
|
3089 |
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:100
|
|
|
3090 |
__( 'Sartorial taxidermy venmo you probably haven\'t heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu.', 'google-analytics-for-wordpress' ),
|
3091 |
|
3092 |
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:101
|
|
|
3093 |
__( 'Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan', 'google-analytics-for-wordpress' ),
|
3094 |
|
3095 |
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:108
|
|
|
3096 |
__( 'Icon', 'google-analytics-for-wordpress' ),
|
3097 |
|
3098 |
// Reference: src/modules/settings/components/input/SettingsInputNumber.vue:58
|
@@ -3233,7 +3227,6 @@ $generated_i18n_strings = array(
|
|
3233 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:104
|
3234 |
__( 'All Embed Options can be used in conjunction with one another.', 'google-analytics-for-wordpress' ),
|
3235 |
|
3236 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:79
|
3237 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:105
|
3238 |
__( 'Using the Gutenberg Block', 'google-analytics-for-wordpress' ),
|
3239 |
|
@@ -3252,14 +3245,12 @@ $generated_i18n_strings = array(
|
|
3252 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:111
|
3253 |
__( '%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg', 'google-analytics-for-wordpress' ),
|
3254 |
|
3255 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:85
|
3256 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:113
|
3257 |
__( '%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page.', 'google-analytics-for-wordpress' ),
|
3258 |
|
3259 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:114
|
3260 |
__( '%1$sStep 2%2$s - Search for “Popular Posts”.', 'google-analytics-for-wordpress' ),
|
3261 |
|
3262 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:87
|
3263 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:115
|
3264 |
__( '%1$sStep 3%2$s - Style the widget using the Block Settings sidebar.', 'google-analytics-for-wordpress' ),
|
3265 |
|
@@ -3275,11 +3266,9 @@ $generated_i18n_strings = array(
|
|
3275 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:122
|
3276 |
__( 'Display using a Shortcode', 'google-analytics-for-wordpress' ),
|
3277 |
|
3278 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:90
|
3279 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:123
|
3280 |
__( 'Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin.', 'google-analytics-for-wordpress' ),
|
3281 |
|
3282 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:91
|
3283 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:124
|
3284 |
__( 'Copy Shortcode', 'google-analytics-for-wordpress' ),
|
3285 |
|
@@ -3457,7 +3446,7 @@ $generated_i18n_strings = array(
|
|
3457 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:332
|
3458 |
__( 'Time to Interactive', 'google-analytics-for-wordpress' ),
|
3459 |
|
3460 |
-
// Reference: src/modules/reports/
|
3461 |
__( '2021 Year in Review', 'google-analytics-for-wordpress' ),
|
3462 |
|
3463 |
// Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:49
|
@@ -3660,7 +3649,7 @@ $generated_i18n_strings = array(
|
|
3660 |
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:55
|
3661 |
__( 'Works automatically with WooCommerce, MemberPress, and EasyDigitalDownloads.', 'google-analytics-for-wordpress' ),
|
3662 |
|
3663 |
-
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:
|
3664 |
__( 'Media Tracking', 'google-analytics-for-wordpress' ),
|
3665 |
|
3666 |
// Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:34
|
@@ -3706,67 +3695,70 @@ $generated_i18n_strings = array(
|
|
3706 |
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:197
|
3707 |
__( 'Verifying License...', 'google-analytics-for-wordpress' ),
|
3708 |
|
3709 |
-
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:
|
3710 |
__( 'Privacy Compliance Addon', 'google-analytics-for-wordpress' ),
|
3711 |
|
3712 |
-
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:
|
3713 |
__( 'Help Google Analytics become compliant with internet privacy laws like GDPR, PECR, and CCPA.', 'google-analytics-for-wordpress' ),
|
3714 |
|
3715 |
-
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:
|
3716 |
__( 'Get access to advanced reports inside WordPress including search keywords report, real-time analytics dashboard, publishers / eCommerce report, custom dimensions, and more.', 'google-analytics-for-wordpress' ),
|
3717 |
|
3718 |
-
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:
|
3719 |
__( 'Instantly enable enhanced eCommerce tracking, so you can measure conversions, sales, and revenue stats. Works with WooCommerce, Easy Digital Downloads, MemberPress, and more.', 'google-analytics-for-wordpress' ),
|
3720 |
|
3721 |
-
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:
|
3722 |
__( '20+ Advanced Tracking', 'google-analytics-for-wordpress' ),
|
3723 |
|
3724 |
-
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:
|
3725 |
__( 'Get access to advanced tracking features like form conversion tracking, author tracking, custom dimensions, scroll tracking, and more.', 'google-analytics-for-wordpress' ),
|
3726 |
|
3727 |
-
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:
|
3728 |
__( 'Advanced Growth Tools', 'google-analytics-for-wordpress' ),
|
3729 |
|
3730 |
-
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:
|
3731 |
__( 'Get access to advanced growth tools such as popular posts addon, A/B testing tool, smart URL builder, and more.', 'google-analytics-for-wordpress' ),
|
3732 |
|
3733 |
-
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:
|
3734 |
__( 'Track how your users interact with videos on your website.', 'google-analytics-for-wordpress' ),
|
3735 |
|
3736 |
-
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:
|
3737 |
__( 'Error Processing', 'google-analytics-for-wordpress' ),
|
3738 |
|
3739 |
-
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:
|
3740 |
__( 'There was an error while processing some features. Please try again or you can skip this process for now', 'google-analytics-for-wordpress' ),
|
3741 |
|
3742 |
-
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:
|
3743 |
__( 'Which website features would you like to enable?', 'google-analytics-for-wordpress' ),
|
3744 |
|
3745 |
-
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:
|
3746 |
__( 'We’ve already selected our recommended features based on your site. ', 'google-analytics-for-wordpress' ),
|
3747 |
|
3748 |
-
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:
|
3749 |
__( 'Continue', 'google-analytics-for-wordpress' ),
|
3750 |
|
3751 |
-
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:
|
3752 |
__( 'Standard Analytics & Reports', 'google-analytics-for-wordpress' ),
|
3753 |
|
3754 |
-
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:
|
3755 |
__( 'Get the reports and stats that matter right inside your WordPress Dashboard.', 'google-analytics-for-wordpress' ),
|
3756 |
|
3757 |
-
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:
|
3758 |
__( 'Helps you see what links your users are clicking on your site.', 'google-analytics-for-wordpress' ),
|
3759 |
|
3760 |
-
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:
|
3761 |
__( 'All In One SEO Toolkit', 'google-analytics-for-wordpress' ),
|
3762 |
|
3763 |
-
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:
|
3764 |
__( 'The best WordPress SEO plugin that works with MonsterInsights to boost your rankings.', 'google-analytics-for-wordpress' ),
|
3765 |
|
3766 |
-
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:
|
3767 |
__( 'Smart Form Builder by WPForms', 'google-analytics-for-wordpress' ),
|
3768 |
|
3769 |
-
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:
|
3770 |
-
__( 'The most popular WordPress form plugin, trusted by over 5 million websites. Easily create contact forms, payment forms, surveys and more.', 'google-analytics-for-wordpress' )
|
|
|
|
|
|
|
3771 |
);
|
3772 |
/* THIS IS THE END OF THE GENERATED FILE */
|
7 |
// Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:97
|
8 |
__( '2', 'google-analytics-for-wordpress' ),
|
9 |
|
10 |
+
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:213
|
11 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:205
|
12 |
__( 'Error', 'google-analytics-for-wordpress' ),
|
13 |
|
243 |
// Reference: src/modules/frontend/monsterinsights-frontend.vue:36
|
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/settings/components/SettingsFirstTImeNotice.vue:41
|
250 |
__( 'Welcome to MonsterInsights', 'google-analytics-for-wordpress' ),
|
251 |
|
252 |
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:126
|
271 |
__( 'See All Features', 'google-analytics-for-wordpress' ),
|
272 |
|
273 |
// Reference: src/modules/frontend/components/FrontendUpsell-Lite.vue:11
|
274 |
+
// Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewDatePicker-Lite.vue:51
|
275 |
__( 'Upgrade to PRO', 'google-analytics-for-wordpress' ),
|
276 |
|
277 |
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:134
|
278 |
__( 'per year', 'google-analytics-for-wordpress' ),
|
279 |
|
280 |
+
// Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:97
|
281 |
+
// Reference: src/modules/addons/monsterinsights-addons-Lite.vue:80
|
282 |
__( 'Upgrade Now', 'google-analytics-for-wordpress' ),
|
283 |
|
284 |
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:136
|
285 |
__( 'Testimonials', 'google-analytics-for-wordpress' ),
|
286 |
|
287 |
+
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:62
|
288 |
__( 'Universal Tracking', 'google-analytics-for-wordpress' ),
|
289 |
|
290 |
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:141
|
332 |
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:181
|
333 |
__( 'Ecommerce Report', 'google-analytics-for-wordpress' ),
|
334 |
|
335 |
+
// Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:30
|
336 |
__( 'Form Conversions', 'google-analytics-for-wordpress' ),
|
337 |
|
338 |
+
// Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:26
|
339 |
__( 'Custom Dimensions', 'google-analytics-for-wordpress' ),
|
340 |
|
|
|
341 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:278
|
342 |
__( 'Author Tracking', 'google-analytics-for-wordpress' ),
|
343 |
|
344 |
+
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabConversions-Lite.vue:33
|
345 |
__( 'Google Optimize', 'google-analytics-for-wordpress' ),
|
346 |
|
347 |
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:186
|
350 |
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:187
|
351 |
__( 'WooCommerce', 'google-analytics-for-wordpress' ),
|
352 |
|
353 |
+
// Reference: src/modules/growth-tools/monsterinsights-growth-tools.vue:254
|
354 |
__( 'Easy Digital Downloads', 'google-analytics-for-wordpress' ),
|
355 |
|
356 |
+
// Reference: src/modules/growth-tools/monsterinsights-growth-tools.vue:265
|
357 |
__( 'MemberPress', 'google-analytics-for-wordpress' ),
|
358 |
|
359 |
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:190
|
393 |
// Reference: src/modules/reports/components/ReportReAuth.vue:20
|
394 |
__( 'There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating.', 'google-analytics-for-wordpress' ),
|
395 |
|
396 |
+
// Reference: src/modules/reports/components/ReportReAuth.vue:21
|
397 |
+
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:98
|
398 |
__( 'Reconnect MonsterInsights', 'google-analytics-for-wordpress' ),
|
399 |
|
400 |
+
// Reference: src/modules/reports/components/ReportReAuth.vue:30
|
401 |
+
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:218
|
402 |
__( 'Re-Authenticating', 'google-analytics-for-wordpress' ),
|
403 |
|
404 |
+
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:323
|
405 |
+
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:220
|
406 |
__( 'Ok', 'google-analytics-for-wordpress' ),
|
407 |
|
408 |
// Reference: src/components/TheQuickLinks.vue:31
|
424 |
/* Translators: Placeholder is replaced with WPForms. */
|
425 |
__( 'Recommended Plugin: %s', 'google-analytics-for-wordpress' ),
|
426 |
|
427 |
+
// Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:114
|
428 |
+
// Reference: src/modules/addons/store/actions.js:49
|
429 |
// Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:42
|
430 |
__( 'Install', 'google-analytics-for-wordpress' ),
|
431 |
|
432 |
+
// Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:112
|
433 |
+
// Reference: src/modules/addons/store/actions.js:49
|
434 |
// Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:38
|
435 |
__( 'Activate', 'google-analytics-for-wordpress' ),
|
436 |
|
437 |
// Reference: src/modules/frontend/components/FrontendNoAuth.vue:27
|
438 |
+
// Reference: src/modules/growth-tools/monsterinsights-growth-tools.vue:246
|
439 |
+
// Reference: src/modules/widget/components/WidgetFooter.vue:22
|
440 |
__( 'Learn More', 'google-analytics-for-wordpress' ),
|
441 |
|
442 |
// Reference: src/modules/frontend/components/FrontendPoweredBy.vue:12
|
498 |
// Reference: src/modules/settings/routes/site.js:111
|
499 |
__( 'PrettyLinks Integration', 'google-analytics-for-wordpress' ),
|
500 |
|
|
|
501 |
// Reference: src/modules/settings/routes/site.js:125
|
502 |
__( 'About Us', 'google-analytics-for-wordpress' ),
|
503 |
|
|
|
504 |
// Reference: src/modules/settings/routes/site.js:133
|
505 |
__( 'Getting Started', 'google-analytics-for-wordpress' ),
|
506 |
|
|
|
507 |
// Reference: src/modules/settings/routes/site.js:142
|
508 |
__( 'Lite vs Pro', 'google-analytics-for-wordpress' ),
|
509 |
|
510 |
+
// Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:22
|
511 |
// Reference: src/modules/settings/routes/site.js:163
|
512 |
__( 'Inline Popular Posts', 'google-analytics-for-wordpress' ),
|
513 |
|
514 |
+
// Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:23
|
515 |
// Reference: src/modules/settings/routes/site.js:171
|
516 |
__( 'Popular Posts Widget', 'google-analytics-for-wordpress' ),
|
517 |
|
518 |
+
// Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:24
|
519 |
// Reference: src/modules/settings/routes/site.js:180
|
520 |
__( 'Popular Products', 'google-analytics-for-wordpress' ),
|
521 |
|
529 |
// Reference: src/modules/settings/routes/site.js:38
|
530 |
__( 'General', 'google-analytics-for-wordpress' ),
|
531 |
|
|
|
532 |
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabsNavigation.vue:76
|
533 |
// Reference: src/modules/settings/routes/site.js:46
|
534 |
__( 'Engagement', 'google-analytics-for-wordpress' ),
|
535 |
|
536 |
+
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabsNavigation.vue:77
|
537 |
+
// Reference: src/modules/settings/routes/site.js:54
|
538 |
__( 'eCommerce', 'google-analytics-for-wordpress' ),
|
539 |
|
540 |
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabsNavigation.vue:78
|
573 |
// Reference: src/modules/reports/components/ReportNoAuth.vue:28
|
574 |
__( 'Please ask your webmaster to connect MonsterInsights to Google Analytics.', 'google-analytics-for-wordpress' ),
|
575 |
|
|
|
576 |
// Reference: src/modules/widget/store/index.js:77
|
577 |
__( 'Overview', 'google-analytics-for-wordpress' ),
|
578 |
|
582 |
// Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:46
|
583 |
__( 'Search Console', 'google-analytics-for-wordpress' ),
|
584 |
|
585 |
+
// Reference: src/modules/reports/components/reports/monsterinsights-ReportDimensions-Lite.vue:22
|
586 |
__( 'Dimensions', 'google-analytics-for-wordpress' ),
|
587 |
|
588 |
// Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:48
|
611 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:261
|
612 |
__( 'eCommerce Report', 'google-analytics-for-wordpress' ),
|
613 |
|
|
|
614 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:299
|
615 |
__( 'Search Console Report', 'google-analytics-for-wordpress' ),
|
616 |
|
620 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:289
|
621 |
__( 'Forms Report', 'google-analytics-for-wordpress' ),
|
622 |
|
623 |
+
// Reference: src/modules/reports/routes/index.js:73
|
624 |
__( 'Real-Time Report', 'google-analytics-for-wordpress' ),
|
625 |
|
626 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:322
|
627 |
__( 'Site Speed Report', 'google-analytics-for-wordpress' ),
|
628 |
|
|
|
629 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:271
|
630 |
__( 'Time to Purchase', 'google-analytics-for-wordpress' ),
|
631 |
|
632 |
// Reference: src/modules/widget/store/index.js:104
|
633 |
__( 'This list shows how many days from first visit it took users to purchase products from your site.', 'google-analytics-for-wordpress' ),
|
634 |
|
|
|
635 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:267
|
636 |
__( 'Sessions to Purchase', 'google-analytics-for-wordpress' ),
|
637 |
|
668 |
// Reference: src/modules/widget/store/index.js:35
|
669 |
__( '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' ),
|
670 |
|
|
|
671 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:252
|
672 |
__( 'Top Landing Pages', 'google-analytics-for-wordpress' ),
|
673 |
|
674 |
// Reference: src/modules/widget/store/index.js:42
|
675 |
__( 'This list shows the top pages users first land on when visiting your website.', 'google-analytics-for-wordpress' ),
|
676 |
|
|
|
677 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:254
|
678 |
__( 'Top Exit Pages', 'google-analytics-for-wordpress' ),
|
679 |
|
680 |
// Reference: src/modules/widget/store/index.js:49
|
681 |
__( 'This list shows the top pages users exit your website from.', 'google-analytics-for-wordpress' ),
|
682 |
|
|
|
683 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:256
|
684 |
__( 'Top Outbound Links', 'google-analytics-for-wordpress' ),
|
685 |
|
692 |
// Reference: src/modules/widget/store/index.js:64
|
693 |
__( 'This list shows the top affiliate links your visitors clicked on.', 'google-analytics-for-wordpress' ),
|
694 |
|
|
|
695 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:255
|
696 |
__( 'Top Download Links', 'google-analytics-for-wordpress' ),
|
697 |
|
698 |
// Reference: src/modules/widget/store/index.js:71
|
699 |
__( 'This list shows the download links your visitors clicked the most.', 'google-analytics-for-wordpress' ),
|
700 |
|
|
|
701 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:269
|
702 |
__( 'Top Products', 'google-analytics-for-wordpress' ),
|
703 |
|
704 |
// Reference: src/modules/widget/store/index.js:84
|
705 |
__( 'This list shows the top selling products on your website.', 'google-analytics-for-wordpress' ),
|
706 |
|
|
|
707 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:268
|
708 |
__( 'Top Conversion Sources', 'google-analytics-for-wordpress' ),
|
709 |
|
843 |
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:107
|
844 |
__( 'Overview Reports for the last 30 days.', 'google-analytics-for-wordpress' ),
|
845 |
|
846 |
+
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:131
|
847 |
__( 'Advanced Reports', 'google-analytics-for-wordpress' ),
|
848 |
|
849 |
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:109
|
867 |
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:121
|
868 |
__( 'Headline Analyzer', 'google-analytics-for-wordpress' ),
|
869 |
|
870 |
+
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:128
|
871 |
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:57
|
872 |
__( 'Email Summaries', 'google-analytics-for-wordpress' ),
|
873 |
|
901 |
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:150
|
902 |
__( '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' ),
|
903 |
|
|
|
904 |
// Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:84
|
905 |
__( 'Not Available', 'google-analytics-for-wordpress' ),
|
906 |
|
961 |
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:84
|
962 |
__( 'Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors', 'google-analytics-for-wordpress' ),
|
963 |
|
964 |
+
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:142
|
965 |
__( 'eCommerce Tracking', 'google-analytics-for-wordpress' ),
|
966 |
|
967 |
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:91
|
986 |
// Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:48
|
987 |
__( 'Google Authentication', 'google-analytics-for-wordpress' ),
|
988 |
|
989 |
+
// Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:49
|
990 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:50
|
991 |
__( 'Connect Google Analytics + WordPress', 'google-analytics-for-wordpress' ),
|
992 |
|
993 |
+
// Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:50
|
994 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:51
|
995 |
__( 'You will be taken to the MonsterInsights website where you\'ll need to connect your Analytics account.', 'google-analytics-for-wordpress' ),
|
996 |
|
997 |
+
// Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:51
|
998 |
__( 'Miscellaneous', 'google-analytics-for-wordpress' ),
|
999 |
|
1000 |
+
// Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:53
|
1001 |
__( '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' ),
|
1002 |
|
1003 |
+
// Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:54
|
1004 |
__( 'Hide Announcements', 'google-analytics-for-wordpress' ),
|
1005 |
|
1006 |
// Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:55
|
1045 |
// Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:88
|
1046 |
__( 'Pretty Links Installed & Activated', 'google-analytics-for-wordpress' ),
|
1047 |
|
1048 |
+
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:192
|
1049 |
__( 'Download Pretty Links', 'google-analytics-for-wordpress' ),
|
1050 |
|
1051 |
// Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:90
|
1258 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:45
|
1259 |
__( 'Continue & Install WPForms', 'google-analytics-for-wordpress' ),
|
1260 |
|
1261 |
+
// Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:106
|
1262 |
// Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:30
|
1263 |
__( 'Installing...', 'google-analytics-for-wordpress' ),
|
1264 |
|
1268 |
// Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
|
1269 |
__( 'Show in full-width mode', 'google-analytics-for-wordpress' ),
|
1270 |
|
|
|
1271 |
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:131
|
1272 |
__( 'Upgrade to MonsterInsights Pro', 'google-analytics-for-wordpress' ),
|
1273 |
|
1305 |
// Reference: src/modules/reports/store/actions.js:220
|
1306 |
__( 'Please wait', 'google-analytics-for-wordpress' ),
|
1307 |
|
|
|
1308 |
// Reference: src/modules/reports/store/actions.js:57
|
1309 |
__( 'activate', 'google-analytics-for-wordpress' ),
|
1310 |
|
|
|
1311 |
// Reference: src/modules/reports/store/actions.js:57
|
1312 |
__( 'install', 'google-analytics-for-wordpress' ),
|
1313 |
|
|
|
1314 |
// Reference: src/modules/reports/store/actions.js:61
|
1315 |
__( 'Visit addons page', 'google-analytics-for-wordpress' ),
|
1316 |
|
1337 |
// Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:30
|
1338 |
__( 'Your Website', 'google-analytics-for-wordpress' ),
|
1339 |
|
1340 |
+
// Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:31
|
1341 |
// Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:80
|
1342 |
__( 'Sessions', 'google-analytics-for-wordpress' ),
|
1343 |
|
1344 |
+
// Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:32
|
1345 |
// Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:83
|
1346 |
__( 'Pageviews', 'google-analytics-for-wordpress' ),
|
1347 |
|
1348 |
// Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:33
|
1349 |
__( 'Avg. Duration', 'google-analytics-for-wordpress' ),
|
1350 |
|
1351 |
+
// Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:34
|
1352 |
// Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:92
|
1353 |
__( 'Bounce Rate', 'google-analytics-for-wordpress' ),
|
1354 |
|
1355 |
+
// Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:35
|
1356 |
// Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:93
|
1357 |
__( 'Total Users', 'google-analytics-for-wordpress' ),
|
1358 |
|
1587 |
__( 'A Tip for 2021', 'google-analytics-for-wordpress' ),
|
1588 |
|
1589 |
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:276
|
1590 |
+
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:59
|
1591 |
__( 'Demographics', 'google-analytics-for-wordpress' ),
|
1592 |
|
1593 |
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:277
|
1614 |
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:284
|
1615 |
__( 'Average Age', 'google-analytics-for-wordpress' ),
|
1616 |
|
|
|
1617 |
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:101
|
1618 |
__( 'Behavior', 'google-analytics-for-wordpress' ),
|
1619 |
|
1921 |
// Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:32
|
1922 |
__( 'SEO Score Tracking', 'google-analytics-for-wordpress' ),
|
1923 |
|
1924 |
+
// Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:100
|
1925 |
// Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:26
|
1926 |
__( 'Activating...', 'google-analytics-for-wordpress' ),
|
1927 |
|
1928 |
+
// Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:103
|
1929 |
__( 'Deactivating...', 'google-analytics-for-wordpress' ),
|
1930 |
|
1931 |
+
// Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:109
|
1932 |
__( 'Deactivate', 'google-analytics-for-wordpress' ),
|
1933 |
|
1934 |
// Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:43
|
2019 |
/* Translators: Error status and error text. */
|
2020 |
__( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
|
2021 |
|
2022 |
+
// Reference: src/modules/license/api/index.js:149
|
2023 |
// Reference: src/modules/wizard-onboarding/api/index.js:43
|
2024 |
__( 'You appear to be offline.', 'google-analytics-for-wordpress' ),
|
2025 |
|
2026 |
+
// Reference: src/modules/auth/api/index.js:232
|
2027 |
/* Translators: Error status and error text. */
|
2028 |
__( 'Can\'t save settings. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
|
2029 |
|
2138 |
/* Translators: Error status and error text. */
|
2139 |
__( 'Can\'t install WPForms. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
|
2140 |
|
2141 |
+
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:53
|
2142 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:71
|
2143 |
/* Translators: Example path (/go/). */
|
2144 |
__( 'Path (example: %s)', 'google-analytics-for-wordpress' ),
|
2145 |
|
2146 |
+
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:55
|
2147 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:73
|
2148 |
__( 'Path has to start with a / and have no spaces', 'google-analytics-for-wordpress' ),
|
2149 |
|
2150 |
+
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:60
|
2151 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:78
|
2152 |
/* Translators: Example label (aff). */
|
2153 |
__( 'Label (example: %s)', 'google-analytics-for-wordpress' ),
|
2154 |
|
2155 |
+
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:62
|
2156 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:80
|
2157 |
__( 'Label can\'t contain any spaces', 'google-analytics-for-wordpress' ),
|
2158 |
|
2202 |
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:135
|
2203 |
__( 'Disconnect MonsterInsights', 'google-analytics-for-wordpress' ),
|
2204 |
|
2205 |
+
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:191
|
2206 |
__( 'Authenticating', 'google-analytics-for-wordpress' ),
|
2207 |
|
2208 |
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:245
|
2217 |
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:296
|
2218 |
__( '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' ),
|
2219 |
|
2220 |
+
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:96
|
2221 |
__( 'Connect MonsterInsights', 'google-analytics-for-wordpress' ),
|
2222 |
|
2223 |
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:97
|
2229 |
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:100
|
2230 |
__( 'Active Profile', 'google-analytics-for-wordpress' ),
|
2231 |
|
2232 |
+
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:101
|
2233 |
__( 'Your website profile has been set at the network level of your WordPress Multisite.', 'google-analytics-for-wordpress' ),
|
2234 |
|
2235 |
+
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:102
|
2236 |
__( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-for-wordpress' ),
|
2237 |
|
2238 |
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:103
|
2365 |
// Reference: src/modules/widget/components/WidgetTips.vue:70
|
2366 |
__( 'Pro Tip:', 'google-analytics-for-wordpress' ),
|
2367 |
|
2368 |
+
// Reference: src/modules/reports/components/reports-year-in-review/ReportYearInReviewListBox.vue:38
|
2369 |
__( 'Show', 'google-analytics-for-wordpress' ),
|
2370 |
|
2371 |
// Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:14
|
2386 |
// Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:41
|
2387 |
__( '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' ),
|
2388 |
|
2389 |
+
// Reference: src/modules/settings/components/SettingsAddonUpgrade.vue:37
|
2390 |
// Reference: src/modules/settings/components/input/tab-engagement/SettingsInputEUCompliance-Lite.vue:22
|
2391 |
__( 'Upgrade', 'google-analytics-for-wordpress' ),
|
2392 |
|
|
|
2393 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:27
|
2394 |
__( 'Usage Tracking', 'google-analytics-for-wordpress' ),
|
2395 |
|
2396 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:28
|
2397 |
__( 'Allow Usage Tracking', 'google-analytics-for-wordpress' ),
|
2398 |
|
|
|
2399 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:29
|
2400 |
__( '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' ),
|
2401 |
|
|
|
2402 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:31
|
2403 |
/* Translators: Add links to documentation. */
|
2404 |
__( 'Complete documentation on usage tracking is available %1$shere%2$s.', 'google-analytics-for-wordpress' ),
|
2418 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:35
|
2419 |
__( 'Unlock PRO Features Now', 'google-analytics-for-wordpress' ),
|
2420 |
|
|
|
2421 |
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:139
|
2422 |
__( 'Paste your license key here', 'google-analytics-for-wordpress' ),
|
2423 |
|
|
|
2424 |
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:140
|
2425 |
__( 'Verify', 'google-analytics-for-wordpress' ),
|
2426 |
|
2428 |
/* Translators: Add link to retrieve license from account area. */
|
2429 |
__( 'Already purchased? Simply enter your license key below to connect with MonsterInsights PRO! %1$sRetrieve your license key%2$s.', 'google-analytics-for-wordpress' ),
|
2430 |
|
|
|
2431 |
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:211
|
2432 |
__( 'There was an error unlocking MonsterInsights PRO please try again or install manually.', 'google-analytics-for-wordpress' ),
|
2433 |
|
2556 |
// Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:285
|
2557 |
__( 'Export PDF Overview Report', 'google-analytics-for-wordpress' ),
|
2558 |
|
|
|
2559 |
// Reference: src/modules/settings/components/input/SettingsInputText.vue:50
|
2560 |
__( 'Reset to default', 'google-analytics-for-wordpress' ),
|
2561 |
|
2583 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:57
|
2584 |
__( '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' ),
|
2585 |
|
2586 |
+
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:84
|
2587 |
__( 'Enhanced Link Attribution', 'google-analytics-for-wordpress' ),
|
2588 |
|
2589 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:59
|
2782 |
// Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:92
|
2783 |
__( 'Error emptying the popular posts cache. Please try again.', 'google-analytics-for-wordpress' ),
|
2784 |
|
|
|
2785 |
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:100
|
2786 |
__( 'Choose Theme', 'google-analytics-for-wordpress' ),
|
2787 |
|
|
|
2788 |
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:102
|
2789 |
__( 'Widget Styling', 'google-analytics-for-wordpress' ),
|
2790 |
|
|
|
2791 |
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:103
|
2792 |
__( 'Choose how you want to determine the colors, font sizes and spacing of the widget.', 'google-analytics-for-wordpress' ),
|
2793 |
|
|
|
2794 |
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:104
|
2795 |
__( 'Sort By', 'google-analytics-for-wordpress' ),
|
2796 |
|
|
|
2797 |
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:105
|
2798 |
__( 'Choose how you\'d like the widget to determine your popular posts.', 'google-analytics-for-wordpress' ),
|
2799 |
|
2806 |
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:108
|
2807 |
__( 'Title your widget and set its display preferences.', 'google-analytics-for-wordpress' ),
|
2808 |
|
|
|
2809 |
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:109
|
2810 |
__( 'Include in Post Types', 'google-analytics-for-wordpress' ),
|
2811 |
|
|
|
2812 |
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:110
|
2813 |
__( 'Exclude from specific posts', 'google-analytics-for-wordpress' ),
|
2814 |
|
|
|
2815 |
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:112
|
2816 |
/* Translators: Placeholders make the text bold. */
|
2817 |
__( 'Choose which Post Types the widget %1$sWILL%2$s be placed.', 'google-analytics-for-wordpress' ),
|
2818 |
|
|
|
2819 |
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:114
|
2820 |
/* Translators: Placeholders make the text bold. */
|
2821 |
__( 'Choose from which Posts the widget %1$sWILL NOT%2$s be placed.', 'google-analytics-for-wordpress' ),
|
2822 |
|
|
|
2823 |
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:115
|
2824 |
__( 'Loading Themes', 'google-analytics-for-wordpress' ),
|
2825 |
|
|
|
2826 |
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:120
|
2827 |
/* Translators: placeholders make text small. */
|
2828 |
__( 'Default Styles %1$s- As seen above.%2$s', 'google-analytics-for-wordpress' ),
|
2829 |
|
|
|
2830 |
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:125
|
2831 |
/* Translators: placeholders make text small. */
|
2832 |
__( 'No Styles %1$s- Use your own CSS.%2$s', 'google-analytics-for-wordpress' ),
|
2833 |
|
|
|
2834 |
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:132
|
2835 |
/* Translators: placeholders make text small. */
|
2836 |
__( 'Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s', 'google-analytics-for-wordpress' ),
|
2837 |
|
|
|
2838 |
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:137
|
2839 |
/* Translators: placeholders make text small. */
|
2840 |
__( 'SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s', 'google-analytics-for-wordpress' ),
|
2841 |
|
|
|
2842 |
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:142
|
2843 |
/* Translators: placeholders make text small. */
|
2844 |
__( 'Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s', 'google-analytics-for-wordpress' ),
|
2855 |
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:114
|
2856 |
__( 'Choose where in the post body the widget will be placed.', 'google-analytics-for-wordpress' ),
|
2857 |
|
|
|
2858 |
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:109
|
2859 |
__( 'Customize Design', 'google-analytics-for-wordpress' ),
|
2860 |
|
2914 |
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:46
|
2915 |
__( 'To unlock more features consider upgrading to PRO. As a valued MonsterInsights Lite user you receive 50% off, automatically applied at checkout!', 'google-analytics-for-wordpress' ),
|
2916 |
|
2917 |
+
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:39
|
2918 |
__( 'Other Addons', 'google-analytics-for-wordpress' ),
|
2919 |
|
2920 |
+
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:40
|
2921 |
__( 'View all MonsterInsights addons', 'google-analytics-for-wordpress' ),
|
2922 |
|
2923 |
// Reference: src/modules/settings/components/input/tab-engagement/SettingsInputScroll-Lite.vue:18
|
2948 |
__( '%1$sPage %3$s%2$s of %4$s', 'google-analytics-for-wordpress' ),
|
2949 |
|
2950 |
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:99
|
2951 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:46
|
2952 |
__( 'Theme Preview', 'google-analytics-for-wordpress' ),
|
2953 |
|
2954 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:61
|
2958 |
__( 'Narrow', 'google-analytics-for-wordpress' ),
|
2959 |
|
2960 |
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:104
|
2961 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:51
|
2962 |
__( 'Title', 'google-analytics-for-wordpress' ),
|
2963 |
|
2964 |
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:102
|
2965 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:49
|
2966 |
__( 'Color', 'google-analytics-for-wordpress' ),
|
2967 |
|
2968 |
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:103
|
2969 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:50
|
2970 |
__( 'Size', 'google-analytics-for-wordpress' ),
|
2971 |
|
2972 |
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:107
|
2973 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:54
|
2974 |
__( 'Border', 'google-analytics-for-wordpress' ),
|
2975 |
|
2976 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:141
|
2977 |
__( 'Author/Date', 'google-analytics-for-wordpress' ),
|
2978 |
|
2979 |
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:105
|
2980 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:52
|
2981 |
__( 'Label', 'google-analytics-for-wordpress' ),
|
2982 |
|
2983 |
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:106
|
2984 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:53
|
2985 |
__( 'Background', 'google-analytics-for-wordpress' ),
|
2986 |
|
2987 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:144
|
3023 |
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:112
|
3024 |
__( 'Close', 'google-analytics-for-wordpress' ),
|
3025 |
|
3026 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:28
|
3027 |
__( 'Add Top 5 Posts from Google Analytics', 'google-analytics-for-wordpress' ),
|
3028 |
|
3029 |
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:49
|
3036 |
/* Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc. */
|
3037 |
__( 'Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics.', 'google-analytics-for-wordpress' ),
|
3038 |
|
3039 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:30
|
3040 |
__( 'Automated + Curated', 'google-analytics-for-wordpress' ),
|
3041 |
|
3042 |
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:55
|
3078 |
__( 'Indexing completed, counts will update automatically every day.', 'google-analytics-for-wordpress' ),
|
3079 |
|
3080 |
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:100
|
3081 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:47
|
3082 |
__( 'Sartorial taxidermy venmo you probably haven\'t heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu.', 'google-analytics-for-wordpress' ),
|
3083 |
|
3084 |
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:101
|
3085 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:48
|
3086 |
__( 'Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan', 'google-analytics-for-wordpress' ),
|
3087 |
|
3088 |
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:108
|
3089 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:55
|
3090 |
__( 'Icon', 'google-analytics-for-wordpress' ),
|
3091 |
|
3092 |
// Reference: src/modules/settings/components/input/SettingsInputNumber.vue:58
|
3227 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:104
|
3228 |
__( 'All Embed Options can be used in conjunction with one another.', 'google-analytics-for-wordpress' ),
|
3229 |
|
|
|
3230 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:105
|
3231 |
__( 'Using the Gutenberg Block', 'google-analytics-for-wordpress' ),
|
3232 |
|
3245 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:111
|
3246 |
__( '%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg', 'google-analytics-for-wordpress' ),
|
3247 |
|
|
|
3248 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:113
|
3249 |
__( '%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page.', 'google-analytics-for-wordpress' ),
|
3250 |
|
3251 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:114
|
3252 |
__( '%1$sStep 2%2$s - Search for “Popular Posts”.', 'google-analytics-for-wordpress' ),
|
3253 |
|
|
|
3254 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:115
|
3255 |
__( '%1$sStep 3%2$s - Style the widget using the Block Settings sidebar.', 'google-analytics-for-wordpress' ),
|
3256 |
|
3266 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:122
|
3267 |
__( 'Display using a Shortcode', 'google-analytics-for-wordpress' ),
|
3268 |
|
|
|
3269 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:123
|
3270 |
__( 'Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin.', 'google-analytics-for-wordpress' ),
|
3271 |
|
|
|
3272 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:124
|
3273 |
__( 'Copy Shortcode', 'google-analytics-for-wordpress' ),
|
3274 |
|
3446 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:332
|
3447 |
__( 'Time to Interactive', 'google-analytics-for-wordpress' ),
|
3448 |
|
3449 |
+
// Reference: src/modules/reports/routes/index.js:95
|
3450 |
__( '2021 Year in Review', 'google-analytics-for-wordpress' ),
|
3451 |
|
3452 |
// Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:49
|
3649 |
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:55
|
3650 |
__( 'Works automatically with WooCommerce, MemberPress, and EasyDigitalDownloads.', 'google-analytics-for-wordpress' ),
|
3651 |
|
3652 |
+
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:175
|
3653 |
__( 'Media Tracking', 'google-analytics-for-wordpress' ),
|
3654 |
|
3655 |
// Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:34
|
3695 |
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:197
|
3696 |
__( 'Verifying License...', 'google-analytics-for-wordpress' ),
|
3697 |
|
3698 |
+
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:120
|
3699 |
__( 'Privacy Compliance Addon', 'google-analytics-for-wordpress' ),
|
3700 |
|
3701 |
+
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:121
|
3702 |
__( 'Help Google Analytics become compliant with internet privacy laws like GDPR, PECR, and CCPA.', 'google-analytics-for-wordpress' ),
|
3703 |
|
3704 |
+
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:132
|
3705 |
__( 'Get access to advanced reports inside WordPress including search keywords report, real-time analytics dashboard, publishers / eCommerce report, custom dimensions, and more.', 'google-analytics-for-wordpress' ),
|
3706 |
|
3707 |
+
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:143
|
3708 |
__( 'Instantly enable enhanced eCommerce tracking, so you can measure conversions, sales, and revenue stats. Works with WooCommerce, Easy Digital Downloads, MemberPress, and more.', 'google-analytics-for-wordpress' ),
|
3709 |
|
3710 |
+
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:153
|
3711 |
__( '20+ Advanced Tracking', 'google-analytics-for-wordpress' ),
|
3712 |
|
3713 |
+
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:154
|
3714 |
__( 'Get access to advanced tracking features like form conversion tracking, author tracking, custom dimensions, scroll tracking, and more.', 'google-analytics-for-wordpress' ),
|
3715 |
|
3716 |
+
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:164
|
3717 |
__( 'Advanced Growth Tools', 'google-analytics-for-wordpress' ),
|
3718 |
|
3719 |
+
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:165
|
3720 |
__( 'Get access to advanced growth tools such as popular posts addon, A/B testing tool, smart URL builder, and more.', 'google-analytics-for-wordpress' ),
|
3721 |
|
3722 |
+
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:176
|
3723 |
__( 'Track how your users interact with videos on your website.', 'google-analytics-for-wordpress' ),
|
3724 |
|
3725 |
+
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:321
|
3726 |
__( 'Error Processing', 'google-analytics-for-wordpress' ),
|
3727 |
|
3728 |
+
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:322
|
3729 |
__( 'There was an error while processing some features. Please try again or you can skip this process for now', 'google-analytics-for-wordpress' ),
|
3730 |
|
3731 |
+
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:37
|
3732 |
__( 'Which website features would you like to enable?', 'google-analytics-for-wordpress' ),
|
3733 |
|
3734 |
+
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:38
|
3735 |
__( 'We’ve already selected our recommended features based on your site. ', 'google-analytics-for-wordpress' ),
|
3736 |
|
3737 |
+
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:41
|
3738 |
__( 'Continue', 'google-analytics-for-wordpress' ),
|
3739 |
|
3740 |
+
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:72
|
3741 |
__( 'Standard Analytics & Reports', 'google-analytics-for-wordpress' ),
|
3742 |
|
3743 |
+
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:73
|
3744 |
__( 'Get the reports and stats that matter right inside your WordPress Dashboard.', 'google-analytics-for-wordpress' ),
|
3745 |
|
3746 |
+
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:85
|
3747 |
__( 'Helps you see what links your users are clicking on your site.', 'google-analytics-for-wordpress' ),
|
3748 |
|
3749 |
+
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:96
|
3750 |
__( 'All In One SEO Toolkit', 'google-analytics-for-wordpress' ),
|
3751 |
|
3752 |
+
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:97
|
3753 |
__( 'The best WordPress SEO plugin that works with MonsterInsights to boost your rankings.', 'google-analytics-for-wordpress' ),
|
3754 |
|
3755 |
+
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:108
|
3756 |
__( 'Smart Form Builder by WPForms', 'google-analytics-for-wordpress' ),
|
3757 |
|
3758 |
+
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:109
|
3759 |
+
__( 'The most popular WordPress form plugin, trusted by over 5 million websites. Easily create contact forms, payment forms, surveys and more.', 'google-analytics-for-wordpress' ),
|
3760 |
+
|
3761 |
+
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:43
|
3762 |
+
__( 'The following plugins will be installed: ', 'google-analytics-for-wordpress' )
|
3763 |
);
|
3764 |
/* THIS IS THE END OF THE GENERATED FILE */
|
lite/assets/vue/css/settings.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap);.monsterinsights-dark[data-v-3b9e68c1],.monsterinsights-dark[data-v-97789704]{display:block}.monsterinsights-addons-navbar h1{display:inline-block;font-size:16px;line-height:48px;font-weight:400;margin:0;color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters{float:right;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;margin-top:10px;width:258px;position:relative}@media (max-width:750px){.monsterinsights-addons-navbar .monsterinsights-addons-filters{width:calc(100vw - 200px)}}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]{height:28px;margin-right:0;padding-left:10px;padding-right:28px;font-size:14px;border-color:#d6e2ed}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]::-webkit-input-placeholder{color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]:-moz-placeholder,.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]::-moz-placeholder{color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]:-ms-input-placeholder{color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters>i{position:absolute;right:10px;top:5px;z-index:10;color:#b7c9d9}.monsterinsights-addon-not-available .monsterinsights-addon-status span,.monsterinsights-addon-not-installed .monsterinsights-addon-status span{color:#777}.monsterinsights-addon-inactive .monsterinsights-addon-status span{color:#d4393d}.monsterinsights-addon-active .monsterinsights-addon-status span{color:#64bfa5}#monsterinsights-addons{width:770px}@media (max-width:782px){#monsterinsights-addons{width:100%}}#monsterinsights-addons .monsterinsights-addons-area{margin:0 10px}#monsterinsights-addons .monsterinsights-addon-active .monsterinsights-button,#monsterinsights-addons .monsterinsights-addon-inactive .monsterinsights-button,#monsterinsights-addons .monsterinsights-addon-not-available .monsterinsights-button{background:#f9fbff;border-color:#d6e2eb;color:#8ba4b7}#monsterinsights-addons .monsterinsights-addon-active .monsterinsights-button:focus,#monsterinsights-addons .monsterinsights-addon-active .monsterinsights-button:hover,#monsterinsights-addons .monsterinsights-addon-inactive .monsterinsights-button:focus,#monsterinsights-addons .monsterinsights-addon-inactive .monsterinsights-button:hover,#monsterinsights-addons .monsterinsights-addon-not-available .monsterinsights-button:focus,#monsterinsights-addons .monsterinsights-addon-not-available .monsterinsights-button:hover{background:#fff;border-color:#c4d6e2}#monsterinsights-addons .monsterinsights-addons-no-results{margin-top:25px;padding:0 10px}#monsterinsights-addons .monsterinsights-addons-no-results p{font-size:16px}#monsterinsights-addons .monsterinsights-addons-no-results>div{visibility:hidden;-webkit-animation:loadMonsterInsightsSettingsNoJSView 0s 2s forwards;animation:loadMonsterInsightsSettingsNoJSView 0s 2s forwards}.monsterinsights-path-addons .monsterinsights-navigation-bar{padding-left:10px;padding-right:10px;background:#fff;border-top:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-path-addons .monsterinsights-navigation-bar .monsterinsights-container,.monsterinsights-path-addons .monsterinsights-navigation-bar .monsterinsights-main-navigation.monsterinsights-main-navigation-open{padding:0}.monsterinsights-addons-list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-top:25px}.monsterinsights-addons-list .monsterinsights-addon{width:calc(50% - 12.5px);border:1px solid #d6e2ed;position:relative;background:#fff;padding:0 0 72px;margin-bottom:25px}@media (max-width:782px){.monsterinsights-addons-list .monsterinsights-addon{width:100%}}.monsterinsights-addons-list .monsterinsights-addon h3{color:#393f4c;margin:0 0 -5px;font-size:15px}.monsterinsights-addons-list .monsterinsights-addon .monsterinsights-addon-excerpt{color:#777;font-weight:400;margin:10px 0 0;font-size:14px}.monsterinsights-addons-list .monsterinsights-addon-top{padding:20px 24px;display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-addons-list .monsterinsights-addon-image{border:1px solid #d6e2ed;width:74px;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-item-align:start;align-self:start;margin-right:20px}.monsterinsights-addons-list .monsterinsights-addon-image img{display:block;max-width:100%}.monsterinsights-addons-list .monsterinsights-addon-message{position:absolute;bottom:0;background:#f9fbff;border-top:1px solid #d6e2ed;left:0;right:0}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-interior{padding:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-addon-status{font-weight:700;font-size:13px;color:#393f4c}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-addon-action{-ms-flex-item-align:end;align-self:flex-end}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-button{padding-bottom:7px;padding-top:9px;min-width:120px;line-height:1}.monsterinsights-addons-list .monsterinsights-addon-upgrade{text-align:center;width:100%}#request-filesystem-credentials-dialog[data-v-496d2653]{display:block}.monsterinsights-file-input{margin-bottom:20px}.monsterinsights-tools .monsterinsights-dark{margin-bottom:5px;display:block}.monsterinsights-tools-url-builder p .monsterinsights-info{margin-left:0}.monsterinsights-tools-url-builder .monsterinsights-input-text{margin-bottom:20px}.monsterinsights-required{color:#d4393d}textarea:-moz-read-only{background-color:#f9fbff}textarea:read-only{background-color:#f9fbff}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-tools-info-row p{margin-top:0}.monsterinsights-tools-info-row{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-tools-info-row .monsterinsights-tools-info-label{width:230px;-ms-flex-negative:0;flex-shrink:0}.monsterinsights-tools-info-row .monsterinsights-tools-info-description p{margin-bottom:5px}@media (max-width:782px){.monsterinsights-tools-info-row{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info a{color:#777}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info a:focus,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info a:hover{color:#393f4c}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info i{margin-right:10px;color:#b6c9da}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad{background-color:#0c55da;background-image:url(data:image/png;base64,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);background-repeat:no-repeat;background-position:100% 0;background-size:contain;border-radius:5px;padding:30px;margin-top:30px;position:relative}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad{padding-bottom:50px}}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-title,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-title{font-weight:700;font-size:28px;line-height:32px;color:#fff;margin-top:0;margin-bottom:15px;font-family:Helvetica,Helvetica Neue,Arial,Lucida Grande,sans-serif}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-description,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-description{color:#fff;font-family:Roboto,sans-serif;line-height:20px}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-button,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-button{background:#256ef3;border:0;font-size:16px;font-weight:700;border-radius:5px;font-family:Roboto,sans-serif;position:relative;padding:12px 76px 12px 60px}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-button:hover,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-button:hover{background:rgba(37,110,243,.85);border-color:rgba(37,110,243,.85);outline:none}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-button:after,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-button:after{position:absolute;content:"";right:53px;top:50%;width:16px;height:17px;margin-top:-8px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAARCAYAAADUryzEAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAEJSURBVHgB3VPBbcMwDDxSbgEDfWQEb9Cu0BGMLqBu0L6Dou0j6BjVAkVW6AgZQSP450cSsrIaubErB0jyy31IUbwTJVKECSy+WhtMtVv6+UPpcnnFlAAxfY5CLpfHOBMXIEDJ+Vi2lQhsv8H0up+oou/JXzPcW136zu+7sAktMyPS4KS/vSbIuRTvr/BSl98KfcRhNIrNfTp9cIWExbK1hH8z0JPn9c1qUFkmMSeSJUeB0chGiPKKjcx2IpEs26uKSe5GfF9kRhYGGl7H2K2sa4Z64utbA3G5gif/AkRcgcIpqAn+01TawUEKXbFBaY8sz4htTPaoSewqiRa/FrO46l48BCqcAob/ASVTXz+pYfYFAAAAAElFTkSuQmCC);background-repeat:no-repeat}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-logo,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-logo{position:absolute;right:45px;bottom:40px;background-image:url(../img/pretty-links-logo-white.svg);background-repeat:no-repeat;width:240px;min-height:39px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-logo,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-logo{right:10px;bottom:0}}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-copy-to-prettylinks{position:relative;background:#256ef3;border-color:#0d59e3;margin-left:15px;padding:10px 48px 10px 23px}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-copy-to-prettylinks:active,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-copy-to-prettylinks:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-copy-to-prettylinks:hover{background:rgba(37,110,243,.85);border-color:rgba(37,110,243,.85);outline:none}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-copy-to-prettylinks:after{position:absolute;content:"";right:23px;top:50%;width:16px;height:15px;margin-top:-7px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAPCAYAAADtc08vAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAEQSURBVHgBlVLBccIwENyTPXnwSEwHooLYFYRnxlXQgekgpgNaSAe8eOSTuAI5lUAyDHxAx2mwAcEgj3fGPtne3VufBASwMuNkZd51iKNCHyMamIjUtzPqbfBv8okU7S6FwbS3AQgf5yWh6GWw+c2LpnuLpHl338cNKVZUMEMzkBJIIwDh1AReS6p6b3ezWEIkIp6eUndDOKm7i2Yc4alSw2xZy8MMPeE0z9nX4tz0z+QlXQ2uS/ySLcsm0QViMg9N/Fbs4O2Cgl2gA4R97WuuYEFplwEj0g8NiOjNJ2N9ayCc14cGIklaoftXy9vRge2ImT8vpuyljD05UyWlstjOh9lP293ViRy4UoFKWXszOAInrGJHik+ELQAAAABJRU5ErkJggg==);background-repeat:no-repeat}body.monsterinsights-prettylinks-flow-page{background:#fff}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow{max-width:770px;margin:0 auto}@media (max-width:782px){body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow{padding:0 30px}}@media (min-width:783px) and (max-width:935px){body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow{max-width:700px}}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow a,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow button,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow div,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow h1,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow h2,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow h3,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow h4,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow p,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow span{font-family:Roboto,sans-serif}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow p{font-size:16px;line-height:21px;color:#393f4c}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-header{text-align:center;max-width:680px;margin:0 auto;padding-top:75px;padding-bottom:20px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-header .monsterinsights-tools-prettylinks-flow-header-logo{min-height:56px;background-image:url(../img/mi-and-pl-logo.svg);background-repeat:no-repeat;background-position:50%}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-header .monsterinsights-prettylinks-flow-title{font-size:39px;font-weight:900;line-height:46px;text-align:center;color:#393f4c;margin-top:60px;margin-bottom:18px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-header .monsterinsights-prettylinks-flow-description{max-width:560px;margin:0 auto}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:25px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row .monsterinsights-tools-prettylinks-row-image{margin-left:-35px}@media (max-width:782px){body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row .monsterinsights-tools-prettylinks-row-image{margin-left:0}}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row .monsterinsights-tools-prettylinks-row-description{padding-left:16px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row .monsterinsights-tools-prettylinks-row-description h3{margin-top:0}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard{border-radius:5px;border:1px solid #e2e4e9;margin-bottom:36px}@media (max-width:782px){body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard{text-align:center;padding:30px 30px 0}}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated{border-width:2px;border-color:#338eef}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated .monsterinsights-prettylinks-flow-counter,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated .monsterinsights-prettylinks-flow-counter{background:#338eef}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated .monsterinsights-tools-prettylinks-action .monsterinsights-button,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated .monsterinsights-tools-prettylinks-action .monsterinsights-button{background:#338eef;border-color:#338eef;color:#fff}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-install-prettylinks .monsterinsights-button:after,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-install-prettylinks .monsterinsights-button:after{background-position:0 -16px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button{pointer-events:auto}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button:after,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button:after{background-position:-18px -18px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-status-active .monsterinsights-prettylinks-flow-counter{background:#1ec185}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-status-active .monsterinsights-tools-prettylinks-action .monsterinsights-button{pointer-events:none}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-prettylinks-flow-counter{width:48px;height:48px;text-align:center;background:#b6bcc8;border-radius:50%;color:#fff;font-size:24px;line-height:48px;font-weight:700;margin-left:35px;margin-right:35px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action{padding:30px 0}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action h3{font-size:18px;line-height:18px;color:#393f4c;font-weight:700;margin-top:12px;margin-bottom:0}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action p{margin-top:6px;margin-bottom:0}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action .monsterinsights-button{font-size:14px;font-weight:700;border:0;border-radius:5px;margin-top:30px;color:#b6bcc8;background:#e2e4e9;border-color:#e2e4e9;padding:13px 46px 13px 20px;position:relative}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action .monsterinsights-button:after{position:absolute;content:"";right:20px;top:50%;width:16px;height:16px;margin-top:-8px;background-repeat:no-repeat;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAAXNSR0IB2cksfwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAIRQTFRFAAAA1Nfe09fe1dff09ff0tfe0dXd09je09ff1Njf09Td0tbcz9fbz8/f09je0tfc0tjf1Nje19fXz8/Pz9fX09fd0dfdDl2vDlyvDlyxDlyvDluvDlytDlyvDVyvDVysDFyrEGCvDlyvDlyuDluvDlquDl2vDl2vEGCvEFCvCFivDlyvL0miRwAAACx0Uk5TAN//f3/fgO+/j5BQQBDPoI/PIBAggIDf/39/34Dvv1BAEM+gj5CP7yAQIICE4JwzAAABEElEQVR4nKWQCU/EIBCFH9UC67G1XqAF1FZdV////7Mc07K9YuIjIRPex7zJAEGsKBiSzopM5+nR18jqUWtAybnYBCQg/wEIKXfAhZRleL0cJ7qKACeWB+B6T36FRWAgKopgUt4AOylFCo5EtTGkJ8ifAszf9e2+uqt9xRIgOGcRiPH1ffR9y8mqs1oUYaiH3H/MAIESYljXoPK0QzkDopTWasWK0r3+DDzpTM8LgD7RGtAYYzcBBzgCXsZ+r4vAW0t+lzpY596BD+ea2JeIjiIMpZkUHIkOq0AgyO8BFSI+nTv0gPKf26+2O4Y2ajZkjG+/jy0tZhEIsv0hwBqjpoBFA6tnq27G+tCfBvjJffMLAwgkWFxoOwcAAAAASUVORK5CYII=);background-position:0 0}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button{pointer-events:none}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button:after{width:14px;height:14px;margin-top:-7px;background-position:-18px 0}.monsterinsights-about-block{padding:25px;background:#fff;border:1px solid #d6e2ed;margin-top:20px;margin-left:20px;margin-right:20px}.monsterinsights-about-block h3{color:#393f4c;font-size:18px;margin:0 0 20px;line-height:1.4}.monsterinsights-about-block p{font-size:16px}.monsterinsights-about-block:after{content:"";display:table;clear:both}div[class*=" monsterinsights-path-about-"] .monsterinsights-container,div[class^=monsterinsights-path-about-] .monsterinsights-container{width:100%}div[class*=" monsterinsights-path-about-"] .monsterinsights-header,div[class*=" monsterinsights-path-about-"] .monsterinsights-navigation-bar,div[class^=monsterinsights-path-about-] .monsterinsights-header,div[class^=monsterinsights-path-about-] .monsterinsights-navigation-bar{padding-left:20px;padding-right:20px}@media (max-width:782px){div[class*=" monsterinsights-path-about-"] .monsterinsights-header,div[class*=" monsterinsights-path-about-"] .monsterinsights-navigation-bar,div[class^=monsterinsights-path-about-] .monsterinsights-header,div[class^=monsterinsights-path-about-] .monsterinsights-navigation-bar{padding-left:0;padding-right:0}}div[class*=" monsterinsights-path-about-"] .monsterinsights-addons-list,div[class^=monsterinsights-path-about-] .monsterinsights-addons-list{padding:0 20px}div[class*=" monsterinsights-path-about-"] .monsterinsights-addons-list .monsterinsights-addon,div[class^=monsterinsights-path-about-] .monsterinsights-addons-list .monsterinsights-addon{width:calc(33.3333% - 12.5px)}@media (max-width:782px){div[class*=" monsterinsights-path-about-"] .monsterinsights-addons-list .monsterinsights-addon,div[class^=monsterinsights-path-about-] .monsterinsights-addons-list .monsterinsights-addon{width:100%}}div[class*=" monsterinsights-path-about-"] .monsterinsights-addon-image,div[class^=monsterinsights-path-about-] .monsterinsights-addon-image{min-height:74px;padding:5px;display:-webkit-box;display:-ms-flexbox;display:flex;height:74px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}div[class*=" monsterinsights-path-about-"] .monstericon-star:before,div[class^=monsterinsights-path-about-] .monstericon-star:before{color:#fdb72c}.monsterinsights-lite-vs-pro-table{padding:0}.monsterinsights-lite-vs-pro-table .monsterinsights-lite-vs-pro-footer{background:#f0f0f0}.monsterinsights-lite-vs-pro-header{text-align:center;padding:40px 0 22px}.monsterinsights-lite-vs-pro-header h1{font-size:22px;margin:0 0 22px}.monsterinsights-features-table{width:100%;border-collapse:collapse;border-top:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-features-table td,.monsterinsights-features-table th{width:33.33333%;border-bottom:1px solid #d6e2ed;padding:30px;vertical-align:top}.monsterinsights-features-table td p,.monsterinsights-features-table th p{margin:0}.monsterinsights-features-table th{background:#f0f0f0;text-align:left;border-right:none}.monsterinsights-features-table td p>span{display:block;margin-left:30px}.monsterinsights-features-full:before,.monsterinsights-features-none:before,.monsterinsights-features-partial:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f021";font-size:20px;margin-right:10px;color:#d4393d;position:relative;top:2px}.monsterinsights-features-partial:before{content:"";background:url(../img/about-icon-check.svg) no-repeat 50%;background-size:19px auto;width:19px;height:19px;top:6px}.monsterinsights-features-full:before{content:"\f015";color:#4ab99b}.monsterinsights-lite-vs-pro-footer{padding:50px 20px 30px;text-align:center}.monsterinsights-lite-vs-pro-footer h3{margin-bottom:10px}.monsterinsights-lite-vs-pro-footer p{margin-bottom:0}.monsterinsights-lite-vs-pro-footer a{color:#509fe2}.monsterinsights-lite-vs-pro-footer a:focus,.monsterinsights-lite-vs-pro-footer a:hover{color:#393f4c}.monsterinsights-lite-vs-pro-footer.monsterinsights-small{padding:0;text-align:left}.monsterinsights-lite-vs-pro-footer.monsterinsights-small h3{margin-bottom:5px}.monsterinsights-lite-vs-pro-footer.monsterinsights-small p{margin-top:0}.monsterinsights-two-column{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-two-column>div{width:50%}.monsterinsights-list-check ul{margin:0}.monsterinsights-list-check li{font-size:16px;margin-top:10px;padding-left:30px;position:relative}.monsterinsights-list-check li:first-child{margin-top:0}.monsterinsights-list-check li:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f015";font-size:20px;margin-right:10px;color:#5cc0a5;position:absolute;left:0;top:0}.monsterinsights-about-docs-row:after{display:table;clear:both;content:""}.monsterinsights-about-docs-image{width:270px;float:left;margin-right:20px}.monsterinsights-about-docs-1:after{background-image:url(../img/about-icon-connect.png)}.monsterinsights-about-docs-2:after{background-image:url(../img/about-icon-guide.png)}.monsterinsights-about-docs-3:after{background-image:url(../img/about-icon-gdpr.png)}.monsterinsights-about-docs-4:after{background-image:url(../img/about-icon-addons.png)}.monsterinsights-about-docs-5:after{background-image:url(../img/about-icon-ecommerce.png)}.monsterinsights-bg-img.monsterinsights-about-team{padding-top:59%}.monsterinsights-bg-img.monsterinsights-about-team:after{background-image:url(../img/about-team.jpg)}.monsterinsights-about-page-right-image{float:right;width:40%;text-align:center;margin:0 0 0 20px}@media (max-width:782px){.monsterinsights-about-page-right-image{width:100%;float:none;margin:0 0 20px}}.monsterinsights-about-page-right-image img{width:100%}.monsterinsights-about-page-right-image figcaption{color:#999797;margin-top:5px}.monsterinsights-about-page-right-image iframe{max-width:100%}.monsterinsights-path-growth-tools{background-color:#fafafa}.monsterinsights-path-growth-tools .monsterinsights-container{width:100%!important}.monsterinsights-path-growth-tools .monsterinsights-header{padding:20px}.monsterinsights-path-growth-tools .monsterinsights-navigation-bar{padding-left:20px;padding-right:20px}.monsterinsights-growth-tools{padding:16px 20px 0}.mi-growth__block{margin-bottom:17px}.mi-growth__block-title{padding:16px 0;font-style:normal;font-weight:700;font-size:18px;line-height:21px;color:#393e4b;margin:0}.mi-growth__content{display:-webkit-box;display:-ms-flexbox;display:flex;background:#fff;border:1px solid #e2e4e9;padding:24px}@media (max-width:450px){.mi-growth__content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center}}.mi-growth__content:nth-child(n+2){border-top:none}.mi-growth__content-icon_container{margin-right:24px}@media (max-width:450px){.mi-growth__content-icon_container{margin:0 auto 24px}}.mi-growth__content-icon{border:1px solid #e2e4e9;border-radius:5.33333px;width:40px;height:40px;background-repeat:no-repeat;background-position:50%}.mi-growth__content-icon.icon-mi{background-image:url(../img/icon-mi.svg)}.mi-growth__content-icon.icon-aioseo{background-image:url(../img/icon-aioseo.svg)}.mi-growth__content-icon.icon-pushengage{background-image:url(../img/icon-pushengage.svg)}.mi-growth__content-icon.icon-rafflepress{background-image:url(../img/icon-rafflepress.svg)}.mi-growth__content-icon.icon-constantcontact{background-image:url(../img/icon-constantcontact.svg)}.mi-growth__content-icon.icon-semrush{background-image:url(../img/icon-semrush.svg)}.mi-growth__content-icon.icon-wpforms{background-image:url(../img/icon-wpforms.svg)}.mi-growth__content-icon.icon-optinmonster{background-image:url(../img/icon-optinmonster.svg)}.mi-growth__content-icon.icon-smashballoon{background-image:url(../img/icon-smashballoon.svg)}.mi-growth__content-icon.icon-seedprod{background-image:url(../img/icon-seedprod.png)}.mi-growth__content-icon.icon-easyaffiliate{background-image:url(../img/icon-easyaffiliate.svg)}.mi-growth__content-icon.icon-searchwp{background-image:url(../img/icon-searchwp.svg)}.mi-growth__content-icon.icon-edd{background-image:url(../img/icon-edd.svg)}.mi-growth__content-icon.icon-memberpress{background-image:url(../img/icon-memberpress.svg)}.mi-growth__content-icon.icon-thirstyaffiliates{background-image:url(../img/icon-thirstyaffiliates.png)}.mi-growth__content-icon.icon-advancedcoupons{background-image:url(../img/icon-advancedcoupons.svg)}.mi-growth__content-icon.icon-prettylinks{background-image:url(../img/icon-prettylinks.svg)}.mi-growth__content-icon.icon-guide{background-image:url(../img/icon-guide.svg)}.mi-growth__content-desc_container{-webkit-box-flex:1;-ms-flex:1;flex:1;padding-right:24px}@media (max-width:450px){.mi-growth__content-desc_container{padding-right:0}}.mi-growth__desc-title{font-style:normal;font-weight:700;font-size:16px;line-height:18px;color:#393f4c;margin:0 0 7px}@media (max-width:450px){.mi-growth__desc-title{margin-bottom:16px}}.mi-growth__desc-excerpt{color:#586074;padding:0;margin:0;font-style:normal;font-weight:400;font-size:14px;line-height:16px}@media (max-width:450px){.mi-growth__desc-excerpt{margin-bottom:16px}}.mi-growth__content-button_container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:767px){.mi-growth__content-button_container{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}}.mi-growth__content-button_container .btn{width:170px;text-align:center;padding:7.5px 0;font-style:normal;font-weight:700;font-size:14px;line-height:18px;border-radius:5px;display:inline-block;text-decoration:none;margin-left:24px;border:0;cursor:pointer;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}@media (max-width:767px){.mi-growth__content-button_container .btn{margin-left:0;margin-bottom:24px}}.mi-growth__content-button_container .btn-green{color:#fff;background-color:#46bf40}.mi-growth__content-button_container .btn-blue{color:#fff;background-color:#338eef}.mi-growth__content-button_container .btn-blue:hover{background-color:#2a73c2;color:#fff}.mi-growth__content-button_container .btn-guide{color:#338eef;border:1px solid #338eef;background-color:#fff}.mi-growth__content-button_container .btn-guide:hover{background-color:#efefef;color:#338eef}.monsterinsights-dark[data-v-5b3522ee]{display:block}.monsterinsights-colorpicker-preview span{width:40px;height:40px;display:inline-block;border:1px solid #b9c9d7;border-radius:5px}.monsterinsights-colorpicker-picker{position:absolute;z-index:100}.monsterinsights-colorpicker-picker .hu-color-picker{min-width:218px!important}.monsterinsights-pp-theme-picker{overflow:hidden}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-carousel,.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slide{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slide{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-negative:0;flex-shrink:0}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slide:after{content:"";margin-left:48%}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option{width:150px;border-radius:10px;border:1px solid #d3d7de;height:150px;padding:17px 20px;margin-bottom:24px;cursor:pointer;position:relative;background:rgba(0,0,0,0)}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option.monsterinsights-pp-theme-option-selected,.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option:focus,.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option:hover{border:3px solid #338eef;padding:15px 18px;outline:none}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option.monsterinsights-pp-theme-not-available .monsterinsights-pp-theme-icon,.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option.monsterinsights-pp-theme-not-available .monsterinsights-pp-theme-name{opacity:.6}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-active-icon{position:absolute;right:5px;top:5px}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-icon{display:block;width:110px;height:94px}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-name{color:#393f4c;font-size:14px;margin-top:8px;display:block;text-align:left}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-icon{background:url(../img/theme-icons.png) no-repeat 0 0;background-size:488px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-beta .monsterinsights-pp-theme-icon{background-position-x:-126px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-charlie .monsterinsights-pp-theme-icon{background-position-x:-252px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-delta .monsterinsights-pp-theme-icon{background-position-x:-378px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-echo .monsterinsights-pp-theme-icon{background-position:0 -126px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-foxtrot .monsterinsights-pp-theme-icon{background-position:-126px -126px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-golf .monsterinsights-pp-theme-icon{background-position:-252px -126px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-hotel .monsterinsights-pp-theme-icon{background-position:-378px -126px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-india .monsterinsights-pp-theme-icon{background-position:0 -252px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-juliett .monsterinsights-pp-theme-icon{background-position:-126px -252px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-kilo .monsterinsights-pp-theme-icon{background-position:-252px -252px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-lima .monsterinsights-pp-theme-icon{background-position:-378px -252px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-mike .monsterinsights-pp-theme-icon{background-position:0 -378px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-november .monsterinsights-pp-theme-icon{background-position:-126px -378px}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls{text-align:center;font-size:14px;color:#626d83}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls>span{display:inline-block;margin:0 11px;vertical-align:middle}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button{border:none;border-radius:3px;background:#f0f2f4;width:20px;height:20px;text-align:center;color:#626d83;font-size:8px;cursor:pointer}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button:focus,.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button:hover{background:#dadcde}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button:disabled{opacity:.5;cursor:default}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button i{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button.monsterinsights-pp-themes-slider-button-next i{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-option{text-align:center}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-name{position:absolute;left:18px;bottom:10px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-icon{width:74px;height:46px;background-image:url(data:image/png;base64,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);background-repeat:no-repeat;background-position:0 0;background-size:392px;display:inline-block}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-beta .monsterinsights-pp-theme-icon{background-position-x:-212px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-charlie .monsterinsights-pp-theme-icon{background-position-x:-106px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-delta .monsterinsights-pp-theme-icon{height:43px;background-position:-318px 0}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-echo .monsterinsights-pp-theme-icon{height:76px;background-position:0 -73px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-foxtrot .monsterinsights-pp-theme-icon{background-position:-106px -90px;height:41px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-golf .monsterinsights-pp-theme-icon{background-position:-212px -83px;height:56px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-hotel .monsterinsights-pp-theme-icon{height:50px;background-position:-318px -86px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-option{text-align:center}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-name{position:absolute;left:18px;bottom:10px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-icon{width:74px;height:40px;background:url(data:image/png;base64,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) no-repeat 0 -19px;background-size:296px;display:inline-block}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-beta .monsterinsights-pp-theme-icon{background-position-x:-74px;background-position-y:-6px;height:66px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-charlie .monsterinsights-pp-theme-icon{background-position-x:-148px;height:50px;background-position-y:-14px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-delta .monsterinsights-pp-theme-icon{height:78px;background-position:-222px 0}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-preview{position:relative}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-controls{margin-right:22px;margin-bottom:20px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls input[type=number]{width:40px;height:40px;border-radius:5px;border:1px solid #b9c9d7;padding:2px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-controls-inputs{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label{font-size:14px;width:auto;margin-right:9px;color:#393f4c;margin-bottom:8px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label span{display:block}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-pp-control-label{margin-bottom:4px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows input{border-radius:5px 0 0 5px;text-align:center;-moz-appearance:textfield}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows input::-webkit-inner-spin-button,.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;font-size:10px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow{background:#f9fbff;padding:3px 5px;border:1px solid #b9c9d7;border-left-width:0;cursor:pointer}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow:focus,.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow:hover{background:#fff}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow.monsterinsights-number-input-arrow-up{border-radius:0 5px 0 0;border-bottom:0;padding-bottom:4px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow.monsterinsights-number-input-arrow-up i{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow.monsterinsights-number-input-arrow-down{border-radius:0 0 5px 0}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-unit{font-size:14px;color:#444;margin-left:5px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-controls-description{font-weight:700}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-color-input-inline{display:-webkit-box;display:-ms-flexbox;display:flex;padding-right:9px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-color-input-inline .monsterinsights-colorpicker-preview span{border-top-right-radius:0;border-bottom-right-radius:0;border-right-width:0}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-color-input-inline input[type=text]{border-top-left-radius:0;border-bottom-left-radius:0;max-width:108px}.monsterinsights-admin-page .monsterinsights-color-picker{position:relative;max-width:40px}.monsterinsights-admin-page .monsterinsights-color-picker .monsterinsights-colorpicker-picker{bottom:-120px;margin-left:10px;left:100%}.monsterinsights-admin-page .monsterinsights-pp-posts-picker .multiselect__input{border:none}.monsterinsights-admin-page .monsterinsights-popular-posts .monsterinsights-settings-block .monsterinsights-settings-input-select+p{margin-top:25px}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button{background:#fff;color:#444;border-bottom-width:1px;border-color:#b9c9d7;border-radius:0;line-height:18px;border-right:0;margin:0}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button:hover{background:#509fe2;color:#fff;border-color:#b9c9d7}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button:focus{z-index:10;position:relative;border-radius:0;outline:none}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;border-right:1px solid #d6e2ed}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button.monsterinsights-selected-interval{background:#509fe2;color:#fff;font-weight:400}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-notice-no-posts{padding-top:15px;cursor:default}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-notice-no-posts span{color:#d83638;font-weight:400}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-beta{width:144px;height:100px;padding:0}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-beta:after{background-image:url(../img/theme-preview-beta.png)}.monsterinsights-inline-popular-posts-image{width:128px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;margin-right:16px}.monsterinsights-inline-popular-posts-widget{margin-bottom:24px}.monsterinsights-inline-popular-posts-alpha{padding:24px 27px}.monsterinsights-inline-popular-posts-alpha .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1;display:block;margin-bottom:6px}.monsterinsights-inline-popular-posts-alpha .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:1;text-decoration:none}.monsterinsights-inline-popular-posts-beta{padding:14px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border:1px solid #d6e2ed}.monsterinsights-inline-popular-posts-beta .monsterinsights-inline-popular-posts-text{margin-left:19px}.monsterinsights-inline-popular-posts-beta .monsterinsights-inline-popular-posts-label{display:block;font-weight:700;font-size:18px;line-height:18px}.monsterinsights-inline-popular-posts-beta .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:130%;text-decoration:none}.monsterinsights-inline-popular-posts-charlie .monsterinsights-inline-popular-posts-border{display:block;border-bottom:1px solid;margin:16px 0}.monsterinsights-inline-popular-posts-charlie .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:16px;line-height:1.1}.monsterinsights-inline-popular-posts-charlie .monsterinsights-inline-popular-posts-list{list-style:disc inside none}.monsterinsights-inline-popular-posts-charlie .monsterinsights-inline-popular-posts-list li{font-style:normal;font-weight:400;font-size:16px;line-height:130%}.monsterinsights-inline-popular-posts-delta{border:1px solid #d6e2ed;padding:16px 18px;border-radius:5px}.monsterinsights-inline-popular-posts-delta .monsterinsights-inline-popular-posts-icon{margin-right:8px}.monsterinsights-inline-popular-posts-delta .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1.1;vertical-align:top}.monsterinsights-inline-popular-posts-delta .monsterinsights-inline-popular-posts-title{display:block;font-weight:700;font-size:18px;line-height:1;text-decoration:none;margin-top:4px}.monsterinsights-inline-popular-posts-echo{padding:13px 16px}.monsterinsights-inline-popular-posts-echo .monsterinsights-inline-popular-posts-icon{margin-right:8px}.monsterinsights-inline-popular-posts-echo .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:16px;line-height:1.1;margin-right:8px}.monsterinsights-inline-popular-posts-echo .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:16px;line-height:130%;text-decoration:none}.monsterinsights-inline-popular-posts-foxtrot{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-inline-popular-posts-foxtrot .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1.1;display:block}.monsterinsights-inline-popular-posts-foxtrot .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:125%;text-decoration:none}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-image{padding-top:57%}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-image:after{background-image:url(../img/theme-preview-image.jpg)}.monsterinsights-inline-popular-posts-golf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:16px;line-height:1.1;float:left;background:#fff;padding-right:20px}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:16px;line-height:125%;text-decoration:none;display:block;clear:both;margin-top:14px}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-title:before{width:100%}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-border{display:block;border-width:2px 0 0;border-style:solid;margin-top:10px}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-border-2{border-top:1px solid #e2e4e9;margin-top:20px;display:block}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-text{width:100%}.monsterinsights-inline-popular-posts-hotel .monsterinsights-inline-popular-posts-icon{margin-right:10px;vertical-align:middle}.monsterinsights-inline-popular-posts-hotel .monsterinsights-inline-popular-posts-title{font-style:normal;font-weight:700;font-size:18px;text-decoration:none;line-height:130%}.monsterinsights-inline-popular-posts-india{padding:13px 12px 13px 16px;position:relative}.monsterinsights-inline-popular-posts-india .monsterinsights-inline-popular-posts-border{border-width:0 0 0 4px;border-style:solid;position:absolute;left:0;top:0;bottom:0}.monsterinsights-inline-popular-posts-india .monsterinsights-inline-popular-posts-title{font-size:14px;text-decoration:none;font-weight:700}.monsterinsights-inline-popular-posts-india .monsterinsights-inline-popular-posts-label{font-size:14px;text-decoration:none;font-weight:700;margin-right:4px}.monsterinsights-inline-popular-posts-juliett{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%}.monsterinsights-inline-popular-posts-juliett .monsterinsights-inline-popular-posts-border{border-width:1px 0 0;border-style:solid;position:absolute;left:0;top:0;right:0}.monsterinsights-inline-popular-posts-juliett .monsterinsights-inline-popular-posts-title{font-size:18px;text-decoration:none;font-weight:700;max-width:400px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;display:block;line-height:125%}.monsterinsights-inline-popular-posts-juliett .monsterinsights-inline-popular-posts-label{font-size:14px;line-height:18px;text-decoration:none;font-weight:700;padding:4px 12px;position:absolute;right:0;top:0}.monsterinsights-inline-popular-posts-kilo{position:relative;padding:30px 0}.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1}.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:130%;text-decoration:none;display:block;clear:both;margin-top:6px}.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-title:before{width:100%}.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-border,.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-border-2{display:block;position:absolute;left:0;right:0;top:0;border-bottom:4px dashed #e2e4e9}.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-border-2{bottom:0;top:auto}.monsterinsights-inline-popular-posts-lima{padding:16px 19px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-inline-popular-posts-lima .monsterinsights-inline-popular-posts-text{margin-left:13px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.monsterinsights-inline-popular-posts-lima .monsterinsights-inline-popular-posts-label{display:block;font-weight:700;font-size:18px;line-height:18px}.monsterinsights-inline-popular-posts-lima .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:120%;text-decoration:none;display:block;max-width:420px;margin-top:7px}.monsterinsights-inline-popular-posts-lima .monsterinsights-inline-popular-posts-image{width:144px;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;margin-right:0;margin-left:20px}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-image-2{padding-top:69%}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-image-2:after{background-image:url(../img/theme-preview-image-2.jpg)}.monsterinsights-inline-popular-posts-mike{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-inline-popular-posts-mike .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:125%;text-decoration:none;display:block;max-width:380px}.monsterinsights-inline-popular-posts-mike .monsterinsights-inline-popular-posts-label{position:absolute;z-index:10;left:0;top:0;font-size:14px;font-weight:700;padding:5px 8px;line-height:1.2}.monsterinsights-inline-popular-posts-mike .monsterinsights-inline-popular-posts-image{margin-right:20px}.monsterinsights-inline-popular-posts-november{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:5px;border-width:1px;border-style:solid;padding:16px}.monsterinsights-inline-popular-posts-november .monsterinsights-inline-popular-posts-text{width:100%}.monsterinsights-inline-popular-posts-november .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:16px;line-height:125%;text-decoration:none;display:block;margin-top:4px}.monsterinsights-inline-popular-posts-november .monsterinsights-inline-popular-posts-label{display:block;font-size:16px;font-weight:700}.monsterinsights-inline-popular-posts-november .monsterinsights-inline-popular-posts-image{margin-right:20px}.monsterinsights-inline-popular-posts-november .monsterinsights-inline-popular-posts-icon{width:32px;height:32px;display:inline-block;border-radius:50%;text-align:center;float:left;line-height:38px;margin-right:17px;margin-top:4px}.monsterinsights-sharedcount-status{font-size:12px;color:#777;margin-top:12px;line-height:1.5}.monsterinsights-pp-manual-placement-options{margin-left:-12px;margin-right:-12px}.monsterinsights-pp-manual-placement-option{width:150px;height:150px;border-radius:10px;border:1px solid #b7c9d9;font-size:14px;line-height:17px;color:#444;text-align:center;-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;cursor:pointer;margin-left:12px;margin-right:12px;vertical-align:top;max-width:calc(50% - 24px)}.monsterinsights-pp-manual-placement-option,.monsterinsights-pp-manual-placement-option .monsterinsights-pp-manual-placement-options-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-pp-manual-placement-option .monsterinsights-pp-manual-placement-options-icon{min-height:40px;margin-bottom:23px}.monsterinsights-pp-manual-placement-option.monsterinsights-pp-manual-placement-option-active{border:3px solid #338eef;font-weight:700;background:#f1f7fe}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps{width:calc(50% - 12px);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin:0}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps .monsterinsights-button{margin-top:10px}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps input[type=text]{border-color:#b7c9d9;color:#444}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps{width:100%;margin-top:30px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps li{color:#777}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps li b{color:#444}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block{width:calc(50% - 12px);border-radius:10px;background:-webkit-gradient(linear,left top,left bottom,color-stop(17.51%,rgba(51,142,239,.6)),color-stop(74.11%,#0e5caf));background:linear-gradient(180deg,rgba(51,142,239,.6) 17.51%,#0e5caf 74.11%);color:#fff;position:relative;height:198px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;text-align:center}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block>div{position:absolute;bottom:0;padding:20px}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block .monsterinsights-welcome-overlay{position:fixed;bottom:0}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block .monsterinsights-pp-video-block-icon{margin-bottom:30px;display:inline-block}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block p{color:#fff;margin:0;text-align:left}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block{width:100%}}.monsterinsights-settings-content-pp-inline input[type=number]{max-width:80px}.monsterinsights-settings-content-pp-inline .monsterinsights-collapsible-content .settings-input-text{margin-bottom:20px}.monsterinsights-inline-desc{margin-left:5px}.monsterinsights-widget-popular-posts-widget{margin-bottom:24px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-alpha .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-alpha .monsterinsights-widget-popular-posts-list li{display:inline-block;padding:24px;background:#f0f2f4;border-radius:3px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-beta .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-beta .monsterinsights-widget-popular-posts-list li{display:inline-block;background:#fff;border-radius:3px;margin:0 6px 30px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700;border-left:4px solid #1ec185;padding-left:16px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-charlie .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-charlie .monsterinsights-widget-popular-posts-list li{display:inline-block;padding:24px;background:#f0f2f4;border-radius:3px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700;border-top:4px solid #338eef}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-delta .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-delta .monsterinsights-widget-popular-posts-list li{display:inline-block;padding:16px 0 0;margin:0 6px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700;border-top:2px solid #d3d7de}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-delta .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-delta .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta span{display:inline-block;margin-right:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-widget-popular-posts-list li{display:inline-block;margin:0 6px 24px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-comments{font-size:16px;font-weight:700;margin-top:14px;display:block}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta span{display:inline-block;margin-right:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-foxtrot .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-foxtrot .monsterinsights-widget-popular-posts-list li{display:inline-block;padding:16px;background:#f0f2f4;border-radius:5px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-foxtrot .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-comments{font-size:16px;font-weight:700;margin-top:14px;display:block}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-foxtrot .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-foxtrot .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta span{display:inline-block;margin-right:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list li{display:inline-block;padding:16px;background:#f0f2f4;border-radius:5px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-comments{font-size:16px;font-weight:700;margin-top:14px;display:block}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta span{display:inline-block;margin-right:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-label{font-weight:400;font-size:12px;display:inline-block;padding:4px 8px;border-radius:3px;line-height:1;margin-bottom:14px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-title{display:block}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-widget-popular-posts-list li{display:inline-block;margin:0 6px 24px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;font-weight:700;position:relative}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-text{position:absolute;bottom:0;padding:0 14px 14px;left:0;z-index:15}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta span{display:inline-block;margin-right:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-bg-img{margin-bottom:0;padding-top:50%;width:100%}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-bg-img:after{z-index:5;border-radius:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-bg-img:before{background:-webkit-gradient(linear,left bottom,left top,color-stop(-25.16%,#000),to(rgba(0,0,0,.1)));background:linear-gradient(0deg,#000 -25.16%,rgba(0,0,0,.1));content:"";top:0;bottom:0;left:0;right:0;position:absolute;z-index:10;border-radius:5px}.monsterinsights-pp-products-theme-preview-output,.monsterinsights-pp-widget-theme-preview-output{margin-top:28px}.monsterinsights-dummy-text{padding-right:24px}.monsterinsights-dummy-text p{margin-bottom:40px;line-height:180%}.monsterinsights-pp-widget-controls,.monsterinsights-pp-widget-theme-preview{position:relative}.monsterinsights-pp-widget-controls .monsterinsights-settings-input-select-simple select{min-width:50px}.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-1 .monsterinsights-widget-popular-posts-list{margin:0}.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-1 .monsterinsights-widget-popular-posts-list li{width:100%}.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-3 .monsterinsights-widget-popular-posts-list{margin:0}.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-3 .monsterinsights-widget-popular-posts-list li{width:calc(33.33333% - 12px)}@media (max-width:767px){.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-2 .monsterinsights-widget-popular-posts-list,.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-3 .monsterinsights-widget-popular-posts-list{margin:0}.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-2 .monsterinsights-widget-popular-posts-list li,.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-3 .monsterinsights-widget-popular-posts-list li{width:100%;margin-left:0;margin-right:0}}.monsterinsights-pp-widget-theme-preview-render h3{font-size:14px;margin-top:14px;margin-bottom:14px}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-settings-input-radio .monsterinsights-styled-radio{display:none}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-settings-input-radio>span{display:inline-block;margin-right:8px}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-wide-column{display:-webkit-box;display:-ms-flexbox;display:flex;border:1px solid #b7c9d9;border-radius:5px;width:40px;height:40px;padding:10px 5px;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-wide-column>span{background:#99a1b2;display:inline-block;width:8px;height:8px;border-radius:1px;margin-bottom:2px}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-wide-column.monsterinsights-wide-column-two>span{width:12px}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-wide-column.monsterinsights-wide-column-one>span{width:100%}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-styled-radio-label-checked .monsterinsights-wide-column{border:2px solid #338eef;background:#ecf4fe;padding:9px 4px}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-styled-radio-label-checked .monsterinsights-wide-column>span{background:#338eef}.monsterinsights-inline-checkboxes .monsterinsights-settings-input-checkbox{display:inline-block;margin-right:32px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-delta .monsterinsights-bg-img{width:121px;height:121px;padding:0;float:left;margin-right:16px;margin-bottom:12px}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-1:after{background-image:url(../img/theme-widget-1.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-2:after{background-image:url(../img/theme-widget-2.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-3:after{background-image:url(../img/theme-widget-3.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-4:after{background-image:url(../img/theme-widget-4.jpg)}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-bg-img{padding-top:50%;margin-bottom:14px;width:100%}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-5:after{background-image:url(../img/theme-widget-5.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-6:after{background-image:url(../img/theme-widget-6.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-7:after{background-image:url(../img/theme-widget-7.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-8:after{background-image:url(../img/theme-widget-8.jpg)}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-alpha .monsterinsights-bg-img{width:80px;height:80px;padding:0;float:left;margin-right:18px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-bg-img{padding-top:74%}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-1:after{background-image:url(data:image/jpeg;base64,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)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-2:after{background-image:url(../img/theme-products-2.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-3:after{background-image:url(../img/theme-products-3.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-4:after{background-image:url(../img/theme-products-4.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-5{padding-top:73%}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-5:after{background-image:url(../img/theme-products-5.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-6{padding-top:73%}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-6:after{background-image:url(../img/theme-products-6.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-7{padding-top:73%}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-7:after{background-image:url(../img/theme-products-7.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-8{padding-top:73%}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-8:after{background-image:url(../img/theme-products-8.jpg)}.monsterinsights-widget-popular-posts-products.monsterinsights-widget-popular-posts-echo .monsterinsights-bg-img{padding-top:50%;margin-bottom:14px;width:100%}.monsterinsights-input-text-small{margin-top:24px}.monsterinsights-input-text-small .settings-input-text-input{max-width:350px}.monsterinsights-input-text-extra-small .settings-input-text{display:inline-block;margin-right:5px}.monsterinsights-input-text-extra-small .settings-input-text-input{max-width:80px}.monsterinsights-widget-popular-posts-products{margin-bottom:24px}.monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-rating{display:block}.monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-rating svg{margin-right:2px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-alpha .monsterinsights-products-popular-posts-list{margin:0 -12px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-alpha .monsterinsights-products-popular-posts-list li{display:inline-block;margin:0 12px;width:calc(50% - 24px);vertical-align:top;font-size:16px;border-top:1px solid #d3d7de;padding-top:15px;padding-bottom:30px;font-weight:700;line-height:1.1}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-alpha .monsterinsights-products-popular-posts-price{display:block;margin:10px 0 7px;font-weight:400}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-products-popular-posts-list,.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-products-popular-posts-list li,.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-list li{display:inline-block;width:calc(50% - 12px);vertical-align:top;font-size:16px;padding:10px 12px;font-weight:700;line-height:1.1;margin:0 6px 24px;border-radius:3px;position:relative}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-products-popular-posts-price,.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-price{display:block;font-weight:400;position:absolute;right:12px;bottom:10px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-products-popular-posts-title,.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-title{margin-top:12px;display:block}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-products-popular-posts-rating,.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-rating{margin-top:13px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-list li{display:inline-block;width:calc(50% - 12px);vertical-align:top;font-size:16px;padding:0;font-weight:700;line-height:1.1;margin:0 6px 24px;border-radius:5px;position:relative}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-price{display:block;font-weight:400;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;margin-top:4px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-title{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;margin-top:4px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-text{position:absolute;bottom:0;z-index:10;left:0;right:0;padding:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-rating{margin-top:13px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-bg-img{padding-top:74%}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-bg-img:before{background:-webkit-gradient(linear,left bottom,left top,color-stop(-25.16%,#000),to(rgba(0,0,0,.1)));background:linear-gradient(0deg,#000 -25.16%,rgba(0,0,0,.1));content:"";top:0;bottom:0;left:0;right:0;position:absolute;z-index:10;border-radius:5px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-price{position:relative;margin-top:8px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-list li{padding:0}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-price{right:auto;bottom:auto;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-rating{margin-top:8px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-title{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-text{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-1 .monsterinsights-products-popular-posts-list{margin:0}.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-1 .monsterinsights-products-popular-posts-list li{width:100%;margin-left:0;margin-right:0}.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-3 .monsterinsights-products-popular-posts-list li{width:calc(33.33333% - 24px)}@media (max-width:767px){.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-2 .monsterinsights-products-popular-posts-list,.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-3 .monsterinsights-products-popular-posts-list{margin:0}.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-2 .monsterinsights-products-popular-posts-list li,.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-3 .monsterinsights-products-popular-posts-list li{width:100%;margin-left:0;margin-right:0}}.monsterinsights-pp-blurred{-webkit-filter:blur(3px);filter:blur(3px)}.monsterinsights-pp-upgrade-overlay{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background:#fff;padding:8px 12px;-webkit-box-shadow:0 5px 15px rgba(0,0,0,.05),0 15px 35px rgba(0,0,0,.1);box-shadow:0 5px 15px rgba(0,0,0,.05),0 15px 35px rgba(0,0,0,.1);border-radius:3px;z-index:10;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-pp-upgrade-overlay>span{margin:0 10px}.monsterinsights-pp-theme-controls-holder{position:relative}.monsterinsights-pro-pill{font-style:normal;font-weight:700;font-size:11px;background:#1ec185;border-radius:5px;color:#fff;padding:3px 8px;margin-left:8px}.monsterinsights-bg-img.monsterinsights-popular-posts-products-upsell{position:relative;width:750px;height:815px;max-width:100%}.monsterinsights-bg-img.monsterinsights-popular-posts-products-upsell:after{background-image:url(../img/popular-products-bg.jpg)}.monsterinsights-bg-img.monsterinsights-popular-products-upsell-browser{padding-top:83%;-webkit-filter:drop-shadow(0 61.7368px 144.053px rgba(0,0,0,.1));filter:drop-shadow(0 61.7368px 144.053px rgba(0,0,0,.1))}.monsterinsights-bg-img.monsterinsights-popular-products-upsell-browser:after{background-image:url(../img/popular-products-browser.jpg)}.monsterinsights-popular-posts-products-upsell{margin-top:20px}.monsterinsights-popular-posts-products-upsell .monsterinsights-popular-products-upsell-window{padding:48px 50px 0;text-align:center;position:absolute;width:600px;top:62px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);z-index:1;background:#fff;border:1px solid #d6e2ed;-webkit-box-shadow:0 5px 15px rgba(0,0,0,.05),0 15px 35px rgba(0,0,0,.1);box-shadow:0 5px 15px rgba(0,0,0,.05),0 15px 35px rgba(0,0,0,.1)}.monsterinsights-popular-posts-products-upsell h2{margin-top:0;font-size:22px;line-height:1.2}.monsterinsights-popular-posts-products-upsell p{font-size:16px;line-height:1.2;color:#626d83;margin-bottom:32px}.monsterinsights-popular-posts-products-upsell .monsterinsights-button-text{margin:28px 0;color:#99a1b2;font-size:16px;display:inline-block}.monsterinsights-popular-posts-widget-category{margin-top:25px}.monsterinsights-popular-posts-widget-category.monsterinsights-popular-posts-widget-category-lite .monsterinsights-settings-input-select{pointer-events:none;opacity:.6}.monsterinsights-popular-posts-products-no-woocommerce{margin-top:72px}.monsterinsights-popular-posts-products-no-woocommerce .monsterinsights-settings-block{opacity:.6;pointer-events:none}.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice{position:absolute;top:-72px;left:0;right:0;padding:16px 24px;background:#d7930f;color:#fff;font-size:12px}.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice a{color:#fff;text-decoration:underline;font-weight:700}.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice a:focus,.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice a:hover{text-decoration:none}.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice span{margin-left:8px}.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice svg{vertical-align:middle}.monsterinsights-popular-posts-products-top{position:relative}.monsterinsights-pp-placement-options-accordion{padding-left:30px}.monsterinsights-pp-accordion-item-title{border-bottom:1px solid #d6e2ed;padding:24px 0;position:relative}.monsterinsights-pp-accordion-item-title.monsterinsights-pp-accordion-item-title-toggle *{cursor:pointer}.monsterinsights-pp-accordion-item-title .monsterinsights-settings-input-toggle-collapsible{position:absolute;right:0;top:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.monsterinsights-pp-accordion-item-title .monsterinsights-settings-input-toggle-collapsible i{-webkit-transform-origin:50%;-ms-transform-origin:50%;transform-origin:50%}.monsterinsights-pp-accordion-item-title.monsterinsights-pp-accordion-item-title-active{border-bottom:0}.monsterinsights-pp-accordion-item-title.monsterinsights-pp-accordion-item-title-active .monsterinsights-settings-input-toggle-collapsible i{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}.monsterinsights-pp-accordion-item-title .monsterinsights-pp-accordion-item-title-top{margin-bottom:8px;font-weight:700;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-pp-accordion-item-title .monsterinsights-pp-accordion-item-title-top>span{margin-right:8px;margin-left:8px}.monsterinsights-pp-accordion-item-title .monsterinsights-pp-accordion-item-title-top .monsterinsights-settings-input-checkbox{display:inline-block}.monsterinsights-pp-accordion-item-title .monsterinsights-pp-accordion-item-title-bottom{color:#777;padding-right:45px}.monsterinsights-pp-accordion-item-content{border-bottom:1px solid #d6e2ed;padding:0 0 24px}.monsterinsights-dummy-text p,.monsterinsights-pp-inline-theme-preview-render>p{opacity:.5}.monsterinsights-pp-products-theme-preview-output-narrow,.monsterinsights-pp-widget-theme-preview-output-narrow{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-dummy-text,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-dummy-text{width:60%}.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget{width:40%}.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-list,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-widget-popular-posts-list,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-products-popular-posts-list,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-widget-popular-posts-list,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-list,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-widget-popular-posts-list,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-products-popular-posts-list,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-widget-popular-posts-list{margin:0}.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-list li,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-widget-popular-posts-list li,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-products-popular-posts-list li,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-widget-popular-posts-list li,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-list li,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-widget-popular-posts-list li,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-products-popular-posts-list li,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-widget-popular-posts-list li{width:100%}.monsterinsights-dark[data-v-5e919f58]{display:block}.monsterinsights-reset-default[data-v-5e919f58]{margin-left:5px}.saturation{position:relative;cursor:pointer}.saturation .slide{position:absolute;left:100px;top:0;width:10px;height:10px;border-radius:50%;border:1px solid #fff;-webkit-box-shadow:0 0 1px 1px rgba(0,0,0,.3);box-shadow:0 0 1px 1px rgba(0,0,0,.3);pointer-events:none}.hue{position:relative;margin-left:8px;cursor:pointer}.hue .slide{position:absolute;left:0;top:100px;width:100%;height:4px;background:#fff;-webkit-box-shadow:0 0 1px 0 rgba(0,0,0,.3);box-shadow:0 0 1px 0 rgba(0,0,0,.3);pointer-events:none}.color-alpha{position:relative;margin-left:8px;cursor:pointer}.color-alpha .slide{position:absolute;left:0;top:100px;width:100%;height:4px;background:#fff;-webkit-box-shadow:0 0 1px 0 rgba(0,0,0,.3);box-shadow:0 0 1px 0 rgba(0,0,0,.3);pointer-events:none}.sucker{width:30px;fill:#9099a4;background:#2e333a;cursor:pointer;-webkit-transition:all .3s;transition:all .3s}.sucker.active,.sucker:hover{fill:#1593ff}.color-type{margin-top:8px;font-size:12px}.color-type,.color-type .name{display:-webkit-box;display:-ms-flexbox;display:flex}.color-type .name{width:60px;height:30px;float:left;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#999;background:#252930}.color-type .value{-webkit-box-flex:1;-ms-flex:1;flex:1;height:30px;min-width:100px;padding:0 12px;border:0;color:#fff;background:#2e333a;-webkit-box-sizing:border-box;box-sizing:border-box}.colors{padding:0;margin:0}.colors.history{margin-top:10px;border-top:1px solid #2e333a}.colors .item{position:relative;width:16px;height:16px;margin:10px 0 0 10px;border-radius:3px;-webkit-box-sizing:border-box;box-sizing:border-box;vertical-align:top;display:inline-block;-webkit-transition:all .1s;transition:all .1s;cursor:pointer}.colors .item:nth-child(8n+1){margin-left:0}.colors .item:hover{-webkit-transform:scale(1.4);-ms-transform:scale(1.4);transform:scale(1.4)}.colors .item .alpha{height:100%;border-radius:4px}.colors .item .color{position:absolute;left:0;top:0;width:100%;height:100%;border-radius:3px}.hu-color-picker{padding:10px;background:#1d2024;border-radius:4px;-webkit-box-shadow:0 0 16px 0 rgba(0,0,0,.16);box-shadow:0 0 16px 0 rgba(0,0,0,.16);z-index:1}.hu-color-picker.light{background:#f7f8f9}.hu-color-picker.light .color-show .sucker{background:#eceef0}.hu-color-picker.light .color-type .name{background:#e7e8e9}.hu-color-picker.light .color-type .value{color:#666;background:#eceef0}.hu-color-picker.light .colors.history{border-top:1px solid #eee}.hu-color-picker canvas{vertical-align:top}.hu-color-picker .color-set,.hu-color-picker .color-show{display:-webkit-box;display:-ms-flexbox;display:flex}.hu-color-picker .color-show{margin-top:8px}.monsterinsights-rotate-loader{width:2.5em;height:2.5em;margin:.46875em;padding:0;border-radius:100%;border-color:rgba(0,0,0,0) #3085d6;border-style:solid;border-width:.25em;background-color:rgba(0,0,0,0)!important;color:rgba(0,0,0,0);cursor:default;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}@font-face{font-family:Lato;src:url(../fonts/lato-regular-webfont.woff) format("woff"),url(../fonts/lato-regular-webfont.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-bold-webfont.woff) format("woff"),url(../fonts/lato-bold-webfont.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:text-security-disc;src:url(data:font/woff2;base64,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) format("woff2"),url(data:font/woff;base64,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) format("woff"),url(../fonts/text-security-disc.ttf) format("truetype")}@font-face{font-family:Misettings;src:url(../fonts/icons.woff2) format("woff2"),url(../fonts/icons.woff) format("woff"),url(../fonts/icons.ttf) format("truetype"),url(../fonts/icons.otf) format("opentype");font-weight:400;font-style:normal}[class*=monstericon-]:before,body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before,body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before,body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.monstericon-times-circle:before{content:"\f01b"}.monstericon-times:before{content:"\f021"}.monstericon-info-circle-regular:before{content:"\f01e"}.monstericon-arrow{-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);display:inline-block}.monstericon-arrow.monstericon-down{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.monstericon-arrow:before{content:"\f01f"}.monstericon-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"}@media (max-width:782px){.monsterinsights-notices-area{margin-left:10px;margin-right:10px}}.monsterinsights-notice{position:relative;color:#444}.monsterinsights-notice .monsterinsights-notice-inner{margin-top:25px;padding:20px;background:#fff;border-left:3px solid;line-height:1.5;font-size:14px}.monsterinsights-notice .monsterinsights-notice-inner .notice-title{color:#393f4c;font-weight:700;display:block;margin:0 0 6px;padding:0}@media (max-width:782px){.monsterinsights-notice .monsterinsights-notice-inner{padding:10px}}.monsterinsights-notice.monsterinsights-notice-error .monsterinsights-notice-inner{border-left-color:#ea4e64}.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-inner{border-left-color:#f5c953}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-inner{border-left-color:#509fe2}.monsterinsights-notice.monsterinsights-notice-info-xl .monsterinsights-notice-inner{border:1px solid #509fe2;border-left-width:3px;color:#777}.monsterinsights-notice.monsterinsights-notice-info-xl .monsterinsights-notice-inner .monsterinsights-button{color:#fff;margin:15px 0 0}.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-inner{border-left-color:#5cc0a5}.monsterinsights-notice .notice-content{margin-right:20px}.monsterinsights-notice .notice-content a{color:#444}.monsterinsights-notice .dismiss-notice{border:none;background:none;padding:0;margin:0;display:inline-block;cursor:pointer;color:#acbdc9;position:relative;float:right}.monsterinsights-notice .dismiss-notice:focus,.monsterinsights-notice .dismiss-notice:hover{color:#444}.monsterinsights-notice.monsterinsights-notice-info .notice-content,.monsterinsights-notice.monsterinsights-notice-success .notice-content,.monsterinsights-notice.monsterinsights-notice-warning .notice-content{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:425px){.monsterinsights-notice.monsterinsights-notice-info .notice-content,.monsterinsights-notice.monsterinsights-notice-success .notice-content,.monsterinsights-notice.monsterinsights-notice-warning .notice-content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-button{-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;margin-right:-20px;margin-left:auto}@media (max-width:782px){.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-button{margin-left:0}}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-button{margin-top:0;padding:10px 16px 8px;line-height:1;font-size:14px;font-weight:600}@media (max-width:782px){.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-button{margin-top:10px;margin-left:0}}.monsterinsights-notice.monsterinsights-notice-error .monsterinsights-button{margin-top:10px;margin-left:0;color:#fff}body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-end,body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-right{top:32px}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-end,body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-right{top:42px;right:auto;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast{border-radius:0;padding:9px;border-left:3px solid #fff}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast{width:80vw}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-success{border-left-color:#5cc0a5}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-info{border-left-color:#509fe2}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-error{border-left-color:#ea4e64}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-title{color:#393f4c;font-size:13px;font-weight:400}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{font-size:15px;width:10px;height:10px;line-height:10px}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{padding:9px;line-height:0}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon{width:14px;height:14px;min-width:14px;margin:0;border:0}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info{border:none;position:relative}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before{content:"\f01e";position:absolute;top:-1px;left:0;color:#509fe2;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info .swal2-icon-text{display:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error{border:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before{content:"\f023";position:absolute;top:-1px;left:0;color:#ea4e64;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error .swal2-x-mark *{display:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon [class^=-ring]{width:14px;height:14px;top:0;left:0}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:14px;height:14px;top:0;left:0;border:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{content:"\f027";position:absolute;top:-1px;left:0;color:#5cc0a5;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success [class^=swal2-success-line]{display:none}@-webkit-keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@-webkit-keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}to{top:2.8125em;left:.875em;width:1.5625em}}@keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}to{top:2.8125em;left:.875em;width:1.5625em}}@-webkit-keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}to{top:2.375em;right:.5em;width:2.9375em}}@keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}to{top:2.375em;right:.5em;width:2.9375em}}@-webkit-keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}5%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}12%{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}to{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}}@keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}5%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}12%{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}to{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}}@-webkit-keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@-webkit-keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}@keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}.monsterinsights_page body.swal2-toast-shown .swal2-container,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-shown{background-color:rgba(0,0,0,0)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top{top:0;right:auto;bottom:auto;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;right:0;bottom:auto;left:auto}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-start{top:0;right:auto;bottom:auto;left:0}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-start{top:50%;right:auto;bottom:auto;left:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center{top:50%;right:auto;bottom:auto;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-right{top:50%;right:0;bottom:auto;left:auto;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-start{top:auto;right:auto;bottom:0;left:0}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom{top:auto;right:auto;bottom:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;right:0;bottom:0;left:auto}.monsterinsights_page body.swal2-toast-column .swal2-toast{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-actions{-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;height:2.2em;margin-top:.3125em}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-loading{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-input{height:2em;margin:.3125em auto;font-size:1em}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-validation-message{font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast{-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:auto;padding:.625em;-webkit-box-shadow:0 0 .625em #d9d9d9;box-shadow:0 0 .625em #d9d9d9;overflow-y:hidden}.monsterinsights_page .swal2-popup.swal2-toast,.monsterinsights_page .swal2-popup.swal2-toast .swal2-header{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.monsterinsights_page .swal2-popup.swal2-toast .swal2-title{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin:0 .6em;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{position:static;width:.8em;height:.8em;line-height:.8}.monsterinsights_page .swal2-popup.swal2-toast .swal2-content{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon{width:2em;min-width:2em;height:2em;margin:0}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon-text{font-size:2em;font-weight:700;line-height:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-actions{height:auto;margin:0 .3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-styled{margin:0 .3125em;padding:.3125em .625em;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-styled:focus{-webkit-box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4);box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4)}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{position:absolute;width:2em;height:2.8125em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);border-radius:50%}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.25em;left:-.9375em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:2em 2em;-ms-transform-origin:2em 2em;transform-origin:2em 2em;border-radius:4em 0 0 4em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.25em;left:.9375em;-webkit-transform-origin:0 2em;-ms-transform-origin:0 2em;transform-origin:0 2em;border-radius:0 4em 4em 0}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;left:.4375em;width:.4375em;height:2.6875em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;left:.1875em;width:.75em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;right:.1875em;width:1.375em}.monsterinsights_page .swal2-popup.swal2-toast.swal2-show{-webkit-animation:showSweetToast .5s;animation:showSweetToast .5s}.monsterinsights_page .swal2-popup.swal2-toast.swal2-hide{-webkit-animation:hideSweetToast .2s forwards;animation:hideSweetToast .2s forwards}.monsterinsights_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:animate-toast-success-tip .75s;animation:animate-toast-success-tip .75s}.monsterinsights_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:animate-toast-success-long .75s;animation:animate-toast-success-long .75s}@-webkit-keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(2deg);transform:translateY(-.625em) rotate(2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(-2deg);transform:translateY(0) rotate(-2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(2deg);transform:translateY(.3125em) rotate(2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(2deg);transform:translateY(-.625em) rotate(2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(-2deg);transform:translateY(0) rotate(-2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(2deg);transform:translateY(.3125em) rotate(2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@-webkit-keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(1deg);transform:rotate(1deg);opacity:0}}@keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(1deg);transform:rotate(1deg);opacity:0}}@-webkit-keyframes animate-toast-success-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}to{top:1.125em;left:.1875em;width:.75em}}@keyframes animate-toast-success-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}to{top:1.125em;left:.1875em;width:.75em}}@-webkit-keyframes animate-toast-success-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}to{top:.9375em;right:.1875em;width:1.375em}}@keyframes animate-toast-success-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}to{top:.9375em;right:.1875em;width:1.375em}}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}.monsterinsights_page body.swal2-height-auto{height:auto!important}.monsterinsights_page body.swal2-no-backdrop .swal2-shown{top:auto;right:auto;bottom:auto;left:auto;background-color:rgba(0,0,0,0)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown>.swal2-modal{-webkit-box-shadow:0 0 10px rgba(0,0,0,.4);box-shadow:0 0 10px rgba(0,0,0,.4)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top{top:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-start{top:0;left:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-right{top:0;right:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center{top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-start{top:50%;left:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-right{top:50%;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom{bottom:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-start{bottom:0;left:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-right{right:0;bottom:0}.monsterinsights_page .swal2-container{display:-webkit-box;display:-ms-flexbox;display:flex;position:fixed;top:0;right:0;bottom:0;left:0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:10px;background-color:rgba(0,0,0,0);z-index:1060;overflow-x:hidden;-webkit-overflow-scrolling:touch}.monsterinsights_page .swal2-container.swal2-top{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights_page .swal2-container.swal2-top-left,.monsterinsights_page .swal2-container.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights_page .swal2-container.swal2-top-end,.monsterinsights_page .swal2-container.swal2-top-right{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.monsterinsights_page .swal2-container.swal2-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-container.swal2-center-left,.monsterinsights_page .swal2-container.swal2-center-start{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights_page .swal2-container.swal2-center-end,.monsterinsights_page .swal2-container.swal2-center-right{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.monsterinsights_page .swal2-container.swal2-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights_page .swal2-container.swal2-bottom-left,.monsterinsights_page .swal2-container.swal2-bottom-start{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights_page .swal2-container.swal2-bottom-end,.monsterinsights_page .swal2-container.swal2-bottom-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.monsterinsights_page .swal2-container.swal2-grow-fullscreen>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;-ms-flex-pack:center}.monsterinsights_page .swal2-container.swal2-grow-fullscreen>.swal2-modal,.monsterinsights_page .swal2-container.swal2-grow-row>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-webkit-box-pack:center;justify-content:center}.monsterinsights_page .swal2-container.swal2-grow-row>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-ms-flex-pack:center}.monsterinsights_page .swal2-container.swal2-grow-column{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-start,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-start,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-right,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-right,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights_page .swal2-container.swal2-grow-column>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page .swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal{margin:auto}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.monsterinsights_page .swal2-container .swal2-modal{margin:0!important}}.monsterinsights_page .swal2-container.swal2-fade{-webkit-transition:background-color .1s;transition:background-color .1s}.monsterinsights_page .swal2-container.swal2-shown{background-color:rgba(0,0,0,.4)}.monsterinsights_page .swal2-popup{display:none;position:relative;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:32em;max-width:100%;padding:1.25em;border-radius:.3125em;background:#fff;font-family:inherit;font-size:1rem;-webkit-box-sizing:border-box;box-sizing:border-box;left:0;top:0}.monsterinsights_page .swal2-popup:focus{outline:0}.monsterinsights_page .swal2-popup.swal2-loading{overflow-y:hidden}.monsterinsights_page .swal2-popup .swal2-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-popup .swal2-title{display:block;position:relative;max-width:100%;margin:0 0 .4em;padding:0;color:#595959;font-size:1.875em;font-weight:600;text-align:center;text-transform:none;word-wrap:break-word}.monsterinsights_page .swal2-popup .swal2-actions{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em auto 0;z-index:1}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:hover{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.1)),to(rgba(0,0,0,.1)));background-image:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1))}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:active{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.2)),to(rgba(0,0,0,.2)));background-image:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2))}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-confirm{width:2.5em;height:2.5em;margin:.46875em;padding:0;border-radius:100%;border:.25em solid rgba(0,0,0,0);background-color:rgba(0,0,0,0)!important;color:rgba(0,0,0,0);cursor:default;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-cancel{margin-right:30px;margin-left:30px}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm:after{display:inline-block;width:15px;height:15px;margin-left:5px;border-radius:50%;border:3px solid #999;border-right-color:rgba(0,0,0,0);-webkit-box-shadow:1px 1px 1px #fff;box-shadow:1px 1px 1px #fff;content:"";-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal}.monsterinsights_page .swal2-popup .swal2-styled{margin:.3125em;padding:.625em 2em;font-weight:500;-webkit-box-shadow:none;box-shadow:none}.monsterinsights_page .swal2-popup .swal2-styled:not([disabled]){cursor:pointer}.monsterinsights_page .swal2-popup .swal2-styled.swal2-confirm{border:0;border-radius:.25em;background:initial;background-color:#3085d6;color:#fff;font-size:1.0625em}.monsterinsights_page .swal2-popup .swal2-styled.swal2-cancel{border:0;border-radius:.25em;background:initial;background-color:#aaa;color:#fff;font-size:1.0625em}.monsterinsights_page .swal2-popup .swal2-styled:focus{outline:0;-webkit-box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4);box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4)}.monsterinsights_page .swal2-popup .swal2-styled::-moz-focus-inner{border:0}.monsterinsights_page .swal2-popup .swal2-footer{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em 0 0;padding:1em 0 0;border-top:1px solid #eee;color:#545454;font-size:1em}.monsterinsights_page .swal2-popup .swal2-image{max-width:100%;margin:1.25em auto}.monsterinsights_page .swal2-popup .swal2-close{position:absolute;top:0;right:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:1.2em;height:1.2em;padding:0;-webkit-transition:color .1s ease-out;transition:color .1s ease-out;border:none;border-radius:0;outline:initial;background:0 0;color:#ccc;font-family:serif;font-size:2.5em;line-height:1.2;cursor:pointer;overflow:hidden}.monsterinsights_page .swal2-popup .swal2-close:hover{-webkit-transform:none;-ms-transform:none;transform:none;color:#f27474}.monsterinsights_page .swal2-popup>.swal2-checkbox,.monsterinsights_page .swal2-popup>.swal2-file,.monsterinsights_page .swal2-popup>.swal2-input,.monsterinsights_page .swal2-popup>.swal2-radio,.monsterinsights_page .swal2-popup>.swal2-select,.monsterinsights_page .swal2-popup>.swal2-textarea{display:none}.monsterinsights_page .swal2-popup .swal2-content{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0;padding:0;color:#545454;font-size:1.125em;font-weight:300;line-height:normal;z-index:1;word-wrap:break-word}.monsterinsights_page .swal2-popup #swal2-content{text-align:center}.monsterinsights_page .swal2-popup .swal2-checkbox,.monsterinsights_page .swal2-popup .swal2-file,.monsterinsights_page .swal2-popup .swal2-input,.monsterinsights_page .swal2-popup .swal2-radio,.monsterinsights_page .swal2-popup .swal2-select,.monsterinsights_page .swal2-popup .swal2-textarea{margin:1em auto}.monsterinsights_page .swal2-popup .swal2-file,.monsterinsights_page .swal2-popup .swal2-input,.monsterinsights_page .swal2-popup .swal2-textarea{width:100%;-webkit-transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,box-shadow .3s;transition:border-color .3s,box-shadow .3s,-webkit-box-shadow .3s;border:1px solid #d9d9d9;border-radius:.1875em;font-size:1.125em;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.06);box-shadow:inset 0 1px 1px rgba(0,0,0,.06);-webkit-box-sizing:border-box;box-sizing:border-box}.monsterinsights_page .swal2-popup .swal2-file.swal2-inputerror,.monsterinsights_page .swal2-popup .swal2-input.swal2-inputerror,.monsterinsights_page .swal2-popup .swal2-textarea.swal2-inputerror{border-color:#f27474!important;-webkit-box-shadow:0 0 2px #f27474!important;box-shadow:0 0 2px #f27474!important}.monsterinsights_page .swal2-popup .swal2-file:focus,.monsterinsights_page .swal2-popup .swal2-input:focus,.monsterinsights_page .swal2-popup .swal2-textarea:focus{border:1px solid #b4dbed;outline:0;-webkit-box-shadow:0 0 3px #c4e6f5;box-shadow:0 0 3px #c4e6f5}.monsterinsights_page .swal2-popup .swal2-file::-webkit-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-webkit-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-webkit-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::-moz-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-moz-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-moz-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file:-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input:-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea:-ms-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-ms-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::placeholder,.monsterinsights_page .swal2-popup .swal2-input::placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-range input{width:80%}.monsterinsights_page .swal2-popup .swal2-range output{width:20%;font-weight:600;text-align:center}.monsterinsights_page .swal2-popup .swal2-range input,.monsterinsights_page .swal2-popup .swal2-range output{height:2.625em;margin:1em auto;padding:0;font-size:1.125em;line-height:2.625em}.monsterinsights_page .swal2-popup .swal2-input{height:2.625em;padding:0 .75em}.monsterinsights_page .swal2-popup .swal2-input[type=number]{max-width:10em}.monsterinsights_page .swal2-popup .swal2-file{font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-textarea{height:6.75em;padding:.75em}.monsterinsights_page .swal2-popup .swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;color:#545454;font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-checkbox,.monsterinsights_page .swal2-popup .swal2-radio{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page .swal2-popup .swal2-checkbox label,.monsterinsights_page .swal2-popup .swal2-radio label{margin:0 .6em;font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-checkbox input,.monsterinsights_page .swal2-popup .swal2-radio input{margin:0 .4em}.monsterinsights_page .swal2-popup .swal2-validation-message{display:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:.625em;background:#f0f0f0;color:#666;font-size:1em;font-weight:300;overflow:hidden}.monsterinsights_page .swal2-popup .swal2-validation-message:before{display:inline-block;width:1.5em;min-width:1.5em;height:1.5em;margin:0 .625em;border-radius:50%;background-color:#f27474;color:#fff;font-weight:600;line-height:1.5em;text-align:center;content:"!";zoom:normal}@supports (-ms-accelerator:true){.monsterinsights_page .swal2-range input{width:100%!important}.monsterinsights_page .swal2-range output{display:none}}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.monsterinsights_page .swal2-range input{width:100%!important}.monsterinsights_page .swal2-range output{display:none}}@-moz-document url-prefix(){.monsterinsights_page .swal2-close:focus{outline:2px solid rgba(50,100,150,.4)}}.monsterinsights_page .swal2-icon{position:relative;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:5em;height:5em;margin:1.25em auto 1.875em;border:.25em solid rgba(0,0,0,0);border-radius:50%;line-height:5em;cursor:default;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;zoom:normal}.monsterinsights_page .swal2-icon-text{font-size:3.75em}.monsterinsights_page .swal2-icon.swal2-error{border-color:#f27474}.monsterinsights_page .swal2-icon.swal2-error .swal2-x-mark{position:relative;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.monsterinsights_page .swal2-icon.swal2-error [class^=swal2-x-mark-line]{display:block;position:absolute;top:2.3125em;width:2.9375em;height:.3125em;border-radius:.125em;background-color:#f27474}.monsterinsights_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:1.0625em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.monsterinsights_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:1em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.monsterinsights_page .swal2-icon.swal2-warning{border-color:#facea8;color:#f8bb86}.monsterinsights_page .swal2-icon.swal2-info{border-color:#9de0f6;color:#3fc3ee;font-size:1rem}.monsterinsights_page .swal2-icon.swal2-question{border-color:#c9dae1;color:#87adbd}.monsterinsights_page .swal2-icon.swal2-success{border-color:#a5dc86}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-circular-line]{position:absolute;width:3.75em;height:7.5em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);border-radius:50%}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.4375em;left:-2.0635em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:3.75em 3.75em;-ms-transform-origin:3.75em 3.75em;transform-origin:3.75em 3.75em;border-radius:7.5em 0 0 7.5em}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.6875em;left:1.875em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:0 3.75em;-ms-transform-origin:0 3.75em;transform-origin:0 3.75em;border-radius:0 7.5em 7.5em 0}.monsterinsights_page .swal2-icon.swal2-success .swal2-success-ring{position:absolute;top:-.25em;left:-.25em;width:100%;height:100%;border:.25em solid rgba(165,220,134,.3);border-radius:50%;z-index:2;-webkit-box-sizing:content-box;box-sizing:content-box}.monsterinsights_page .swal2-icon.swal2-success .swal2-success-fix{position:absolute;top:.5em;left:1.625em;width:.4375em;height:5.625em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);z-index:1}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line]{display:block;position:absolute;height:.3125em;border-radius:.125em;background-color:#a5dc86;z-index:2}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{top:2.875em;left:.875em;width:1.5625em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:2.375em;right:.5em;width:2.9375em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.monsterinsights_page .swal2-progresssteps{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 0 1.25em;padding:0;font-weight:600}.monsterinsights_page .swal2-progresssteps li{display:inline-block;position:relative}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle{width:2em;height:2em;border-radius:2em;background:#3085d6;color:#fff;line-height:2em;text-align:center;z-index:20}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle:first-child{margin-left:0}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle:last-child{margin-right:0}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep{background:#3085d6}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progresscircle,.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progressline{background:#add8e6}.monsterinsights_page .swal2-progresssteps .swal2-progressline{width:2.5em;height:.4em;margin:0 -1px;background:#3085d6;z-index:10}.monsterinsights_page [class^=swal2]{-webkit-tap-highlight-color:transparent}.monsterinsights_page .swal2-show{-webkit-animation:swal2-show .3s;animation:swal2-show .3s}.monsterinsights_page .swal2-show.swal2-noanimation{-webkit-animation:none;animation:none}.monsterinsights_page .swal2-hide{-webkit-animation:swal2-hide .15s forwards;animation:swal2-hide .15s forwards}.monsterinsights_page .swal2-hide.swal2-noanimation{-webkit-animation:none;animation:none}.monsterinsights_page .swal2-rtl .swal2-close{right:auto;left:0}.monsterinsights_page .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:swal2-animate-success-line-tip .75s;animation:swal2-animate-success-line-tip .75s}.monsterinsights_page .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:swal2-animate-success-line-long .75s;animation:swal2-animate-success-line-long .75s}.monsterinsights_page .swal2-animate-success-icon .swal2-success-circular-line-right{-webkit-animation:swal2-rotate-success-circular-line 4.25s ease-in;animation:swal2-rotate-success-circular-line 4.25s ease-in}.monsterinsights_page .swal2-animate-error-icon{-webkit-animation:swal2-animate-error-icon .5s;animation:swal2-animate-error-icon .5s}.monsterinsights_page .swal2-animate-error-icon .swal2-x-mark{-webkit-animation:swal2-animate-error-x-mark .5s;animation:swal2-animate-error-x-mark .5s}@-webkit-keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@media print{.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}.monsterinsights-notifications-display{background:#fff;border-left:3px solid #509fe2;padding:20px;border-radius:3px 0 0 3px;margin-bottom:50px;position:relative}.monsterinsights-settings-content .monsterinsights-notifications-display{margin-top:20px;margin-bottom:20px}.monsterinsights-notifications-display h3{margin:0 0 4px;font-size:16px;line-height:20px}.monsterinsights-notifications-display p{margin-top:4px;margin-bottom:12px;font-size:14px;line-height:18px}.monsterinsights-notifications-display .monsterinsights-notification{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-notifications-display .monsterinsights-notification .monsterinsights-notifications-indicator{padding-top:10px}.monsterinsights-notifications-display .monsterinsights-notification .monsterinsights-notifications-indicator a{position:relative}.monsterinsights-notifications-display .monsterinsights-notification-inner{margin-left:25px}.monsterinsights-notifications-display .monsterinsights-button{margin-right:15px}.monsterinsights-notifications-display .monsterinsights-notification-navigation{position:absolute;right:0;top:100%}.monsterinsights-notifications-display .monsterinsights-notification-navigation button{background:#fff;border:none;border-radius:0 0 3px 3px;margin:0;padding:5px 8px 7px;color:#a8aebd;cursor:pointer}.monsterinsights-notifications-display .monsterinsights-notification-navigation button:focus,.monsterinsights-notifications-display .monsterinsights-notification-navigation button:hover{color:#509fe2}.monsterinsights-notifications-display .monsterinsights-notification-navigation button .monstericon-arrow{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);font-size:10px}.monsterinsights-notifications-display .monsterinsights-notification-navigation button.monsterinsights-notification-previous{margin-right:2px}.monsterinsights-notifications-display .monsterinsights-notification-navigation button.monsterinsights-notification-previous .monstericon-arrow{-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.monsterinsights-notifications-display .monsterinsights-notification-dismiss{border:none;background:none;color:#a8aebd;position:absolute;right:12px;top:9px;padding:0;margin:0;font-size:16px;cursor:pointer}.monsterinsights-notifications-display .monsterinsights-notifications-unread{min-width:10px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:12px;left:18px;border-radius:20px;line-height:16px;color:#fff;font-weight:700;text-align:center;display:inline-block;padding:0 3px}.monsterinsights-report .monsterinsights-notifications-display .monsterinsights-notifications-unread{min-width:16px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:4px;border-radius:20px;line-height:1;color:#fff;font-weight:700;text-align:center;padding:0 2px;left:20px}.monsterinsights-admin-page.monsterinsights-path-about-us .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-path-addons .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-path-tools-import-export .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-path-tools-url-builder .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-reports-page .monsterinsights-notificationsv3-container{margin-right:0}.monsterinsights-admin-page .monsterinsights-notificationsv3-container{display:inline-block;margin-right:20px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-number{position:absolute;top:-11px;min-width:20px;height:20px;line-height:20px;display:block;background:#eb5757;border-radius:20px;font-size:12px;color:#fff;font-weight:700;text-align:center;padding:0 6px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-number.number-greater-than-10{right:-13px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-number.number-less-than-10{right:-10px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-dismissed-number{min-width:24px;height:24px;background:#7c869d;border-radius:20px;display:inline-block;text-align:center;vertical-align:middle;line-height:24px;color:#fff;font-size:14px;font-weight:700;padding:0 8px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-no-notifications{text-align:center;position:absolute;top:50%;margin-top:-69px;width:100%}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-no-notifications h4{font-size:16px;color:#7c869d}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button{position:relative}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button{position:absolute;top:21px;right:15px}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button{background:#f0f2f4;border-radius:3px;padding:11px 7px;line-height:0;vertical-align:middle;margin-top:-2px;border:solid #d3d7de;border-width:1px 1px 2px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button{display:inline-block}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button:hover{background:#e7eaec;border-color:#d3d7de;outline:none}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-notificationsv3-inbox-number{cursor:pointer}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar{width:440px;position:fixed;top:32px;right:0;background:#fff;z-index:1001;overflow:scroll;height:100%;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar{top:46px;width:300px}}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(50px)}to{opacity:1;-webkit-transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(50px);transform:translateX(50px)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar.monsterinsights-notificationsv3-sidebar-in{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-single-notification{padding:0 16px;overflow:hidden}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top{background:#2679c1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:50px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-title{width:50%}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-title svg{margin-right:10px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-title h3{display:inline-block;color:#fff;font-size:18px;font-weight:700}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions{width:50%;text-align:right}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button{color:#fff;text-decoration:underline;border:0;padding:0;background:rgba(0,0,0,0);border-radius:0}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button{display:inline-block}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button:hover{color:#efe5e5}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button:focus{outline:none}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close{margin-left:12px;vertical-align:bottom}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close:active svg path,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close:focus svg path,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close:hover svg path{fill:#efe5e5}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:60px;border-bottom:1px solid #e2e4e9;margin:0 16px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count{width:50%}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count .monsterinsights-notificationsv3-inbox-number{position:relative;display:inline-block;top:inherit;right:inherit;min-width:24px;height:24px;line-height:24px;margin-right:8px;padding:0 8px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count .monsterinsights-notificationsv3-dismissed-number{margin-right:8px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count h4{display:inline-block}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions{width:50%;text-align:right}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span{text-decoration:underline;color:#99a1b3;cursor:pointer}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span:hover{color:#a9b1c3}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications{display:block;margin-bottom:32px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications{margin-bottom:46px}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification{border-bottom:1px solid #e2e4e9;padding-bottom:24px;display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-icon{width:54px;float:left;text-align:center;padding-top:24px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-icon{float:none;margin:0 auto}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details{float:left;width:354px;padding-top:20px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details{width:260px}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-title h5{margin-top:0;margin-bottom:0;color:#393f4c;font-size:13px;font-weight:700;width:70%;display:inline-block}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-title h5{width:65%}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-title span{color:#7f899f;font-size:13px;float:right}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-content p{color:#393f4c;font-size:13px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-top:2px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button{display:block;background:#f0f2f4;border:1px solid #d3d7de;border-radius:3px;font-weight:500;font-size:13px;color:#393f4c;letter-spacing:.02em;padding:6px 11px;margin-right:10px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button:hover{background:#d3d7de}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span{font-size:13px;color:#7f899f;cursor:pointer}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span:hover{color:#a9b1c3}.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}.monsterinsights-conditional-logic-container button:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-header{margin-bottom:30px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-header .monsterinsights-conditional-rule-sets-number{float:right}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator{text-align:center;font-weight:700;display:block;margin:0 auto 20px;position:relative}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:after,.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:before{content:"";position:absolute;top:45%;width:45%;height:2px;background:#d6e2ed;margin-top:-1px}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:before{left:0}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:after{right:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:24px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column{width:100%;margin-right:18px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field{text-transform:capitalize;width:100%;height:38px;min-height:38px;line-height:38px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field.text-input{padding:0 8px;border-color:#ddd;text-transform:none;border-radius:5px;-webkit-box-sizing:border-box;box-sizing:border-box;height:38px;margin-top:0;line-height:38px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field input[type=text]{padding-top:5px;padding-bottom:5px;height:inherit}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field.multiselect--active .multiselect__tags .multiselect__spinner{z-index:1}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags{padding:0;height:38px;min-height:38px;border-color:#ddd;margin-top:0;-webkit-box-sizing:border-box;box-sizing:border-box}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags input[type=text]{border:0;height:36px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__single{margin-bottom:0;padding:0 8px;line-height:36px;font-size:14px;white-space:pre}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__placeholder{display:block;margin-bottom:0;line-height:36px;padding:0 8px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__spinner{width:35px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .add-new-condition{padding:6px 12px;margin:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .add-new-condition:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition{border:0;padding:0;margin:0;background:rgba(0,0,0,0)}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition .monstericon-times-circle{color:#dc3232;cursor:pointer;padding:0;margin:0 15px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition .monstericon-times-circle:focus{outline:0}.monsterinsights-upload-media-wrapper .monsterinsights-dark{display:block}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media-label{margin-bottom:0}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media{display:block;width:100%;margin-top:20px;position:relative;max-width:300px}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media .monsterinsights-uploaded-media-overlay{display:none;background:rgba(0,0,0,.7);width:100%;position:absolute;top:0;left:0;height:100%;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media .monsterinsights-uploaded-media-overlay .monsterinsights-remove-uploaded-media{color:#fff;text-decoration:underline;margin-left:auto;cursor:pointer;padding:0 10px 10px 0}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media .monsterinsights-uploaded-media-overlay .monsterinsights-remove-uploaded-media:hover{text-decoration:none}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media:hover .monsterinsights-uploaded-media-overlay{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media img{max-width:100%;display:inline-block}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media{overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;margin-top:20px}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-input{width:73%;margin-right:2%;float:left;position:relative}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button{width:25%;float:left;font-size:15px}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button:active,.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button:focus,.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button:hover{outline:none}.monsterinsights-email-summaries-settings a{color:#509fe2!important}.monsterinsights-email-summaries-settings a:focus,.monsterinsights-email-summaries-settings a:hover{color:#393f4c!important}.monsterinsights-email-summaries-settings .monsterinsights-dark{display:block}.monsterinsights-email-summaries-settings .inline-field .monsterinsights-button:first-child{margin-left:0}.monsterinsights-email-summaries-settings .monsterinsights-settings-input-repeater{margin-bottom:18px}.monsterinsights-email-summaries-settings .monsterinsights-button.monsterinsights-button-disabled{cursor:not-allowed;background:#39967e!important;border-color:#4ab99b!important}.monsterinsights-accordion .monsterinsights-accordion{padding:0;border:1px solid #e0e0e0}.monsterinsights-accordion .monsterinsights-accordion div:not(:last-child){border-bottom:1px solid rgba(10,10,10,.1)}.monsterinsights-accordion .monsterinsights-accordion div:last-child .monsterinsights-accordion-item-details{border-radius:5px}.monsterinsights-accordion .monsterinsights-accordion dd{margin-left:0;margin-bottom:0}.monsterinsights-accordion .monsterinsights-accordion-item-trigger{cursor:pointer;outline:none}.monsterinsights-accordion .monsterinsights-accordion-item-details-inner,.monsterinsights-accordion .monsterinsights-accordion-item-trigger{padding:0 20px 30px}.monsterinsights-accordion .monsterinsights-accordion-item.is-active .monsterinsights-accordion-item-title{border-bottom:1px solid #e0e0e0}.monsterinsights-accordion .monsterinsights-accordion-item-title{position:relative;background-color:#fff;cursor:pointer}.monsterinsights-accordion .monsterinsights-accordion-item-title h4.monsterinsights-accordion-item-title-text{font-size:20px;margin-bottom:0;padding-right:1.25rem}.monsterinsights-accordion .monsterinsights-accordion-item-title h4.monsterinsights-accordion-item-title-text .title{padding-left:15px}.monsterinsights-accordion .monsterinsights-accordion-item-trigger{width:100%;text-align:left;background-color:rgba(0,0,0,0);border:none}.monsterinsights-accordion .monsterinsights-accordion-item-trigger-icon{display:block;position:absolute;top:0;right:1.5rem;bottom:0;margin:auto;width:8px;height:8px;border-right:2px solid #363636;border-bottom:2px solid #363636;-webkit-transform:translateY(-2px) rotate(45deg);-ms-transform:translateY(-2px) rotate(45deg);transform:translateY(-2px) rotate(45deg);-webkit-transition:-webkit-transform .2s ease;transition:-webkit-transform .2s ease;transition:transform .2s ease;transition:transform .2s ease,-webkit-transform .2s ease}.monsterinsights-accordion .monsterinsights-accordion-item-trigger-icon.is-active{-webkit-transform:translateY(2px) rotate(225deg);-ms-transform:translateY(2px) rotate(225deg);transform:translateY(2px) rotate(225deg)}.monsterinsights-accordion .monsterinsights-accordion-item-details{overflow:hidden;background-color:#fff;padding-top:15px}.monsterinsights-accordion .monsterinsights-accordion-item-details p,.monsterinsights-accordion .monsterinsights-accordion-item-details ul{font-size:1.2em;line-height:1.8}.monsterinsights-accordion .monsterinsights-accordion-item-enter-active,.monsterinsights-accordion .monsterinsights-accordion-item-leave-active{will-change:height;-webkit-transition:height .2s ease;transition:height .2s ease}.monsterinsights-accordion .monsterinsights-accordion-item-enter,.monsterinsights-accordion .monsterinsights-accordion-item-leave-to{height:0!important}body{background:#f3f6ff;margin:0}.monsterinsights-admin-page,.monsterinsights-admin-page *{-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}#wpcontent,.auto-fold #wpcontent{padding-left:0}.monsterinsights-highlighted-text{color:#64bfa5;font-weight:700}.monsterinsights-bold{font-weight:700}.monsterinsights-bg-img{width:100%;padding-top:66%;position:relative}.monsterinsights-bg-img:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;background-repeat:no-repeat;background-size:contain}.monsterinsights-header{padding:20px 10px;background-color:#f9fbff;min-height:85px}.monsterinsights-settings-panel-network>.monsterinsights-header{background-color:rgba(0,0,0,0)}.monsterinsights-logo-area{float:left;max-width:calc(100vw - 170px)}.monsterinsights-logo-area img{display:block;max-width:100%}@media (max-width:782px){.monsterinsights-logo-area{text-align:center;margin:0 auto;float:none}.monsterinsights-logo-area img{display:inline-block;max-height:35px}}@media (max-width:782px){.monsterinsights-header .monsterinsights-container,.monsterinsights-navigation-bar .monsterinsights-container{padding:0;width:100%}}.monsterinsights-navigation-bar{width:100%;background:#fff;border-top:1px solid #d5e2ed;border-bottom:1px solid #d5e2ed;padding:0 10px}@media (max-width:782px){.monsterinsights-navigation-bar{padding:0;border:0}}@media (max-width:750px){.monsterinsights-navigation-bar{background:none}}.monsterinsights-admin-page{position:relative}.monsterinsights-admin-page .monsterinsights-blocked{position:absolute;top:0;bottom:0;right:0;left:0;background:hsla(0,0%,100%,.5);z-index:999}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-header{padding-bottom:5px}.monsterinsights-admin-page .monsterinsights-header .monsterinsights-button{display:none}}.swal2-popup .swal2-title{line-height:1.2}#footer-left{color:#393f4c}#footer-left .monsterinsights-no-text-decoration{text-decoration:none;color:#fdb72c;font-size:14px}#footer-left a{color:#509fe1}#wpfooter{position:relative}#wpfooter:before{left:20px;right:20px;height:1px;background:#d6e2ed;content:"";position:absolute;top:-12px}.monsterinsights-container{margin:0 auto;max-width:100%;width:750px}.monsterinsights-admin-page .monsterinsights-navigation-tab-link{text-decoration:none;padding:17px 0 15px;border-bottom:2px solid #fff;font-size:14px;color:#393f4c;display:inline-block;margin-right:25px;line-height:1;outline:none;font-family:Lato,sans-serif}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active,.monsterinsights-admin-page .monsterinsights-navigation-tab-link:focus,.monsterinsights-admin-page .monsterinsights-navigation-tab-link:hover{color:#509fe2;border-bottom-color:#509fe2;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active{font-weight:700}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.monsterinsights-navigation-tab-disabled:focus,.monsterinsights-admin-page .monsterinsights-navigation-tab-link.monsterinsights-navigation-tab-disabled:hover{border-bottom-color:rgba(0,0,0,0);color:#393f4c;cursor:default}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.year-in-review{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAANCAYAAACdKY9CAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAJKSURBVHgBjdJbSFMBHMfx/7lMT7qdk5s7IsvWdIqZ6UFNJC+Yl4EGQUkYItHN8NZl7KESohUUVKCst8QoYkTFlLzlhWHZispSK7NWyjbdZmPJ5tbuLk9ZBD0U+H35v3xe/vADAEDgr15nZ3PgPymLi3E0o9F4XJim5P7GtfEpvIJHNYrJE6UXDXF/4MdKec3qrU2pakNS6+YuhULhQL98z3tvR26C58OKgY7aVJjWd/bUT8OuwtGsvSXJuICKQPEyLJZpTvjutI4UURqgiNm7NqE+I1EvXNDu60rShr2mM5K8etOK22H2OrCsCXUbGnD0PgD8a2B0uvKKTySBzVJqC8IsHR3cVhHNCgia3F2N0wKxnuUR4wiCsL8eLj8wxuyM0Q3l5nTTfDwIQhcNVL4HXK6Aqq9Dfu/2xpJoHhmViaEIiTyT1dMzQl0yKjqoI9e5kbStQ0ByMfBhcaCeqQO3n5i1hxgVB/NP8jiRDtzjXIoUb6fPR0h6EONwA9gIHsQXDQNfhMMR8j5Q9nHpp88uN8rEmJjSt1bMshDrSywoa0mNnxKI06fAZZEBTuwCPrMIaMQiPNEavvnZ5fl0WaqnKUnEYK3XhIVBc4GCR6yHDdIvkFw+BwSXghc3xOGBnonOEVdmg+Ly41uNEg7fGeKb8ahIulqSpwH7Ozl4pTtg2aOBN7rWO2NW69UuatrC4qFsJbSjKE5wM5sGX0H7oZu2+f7DbNBSFXqqOj3QnK7M+dcsjOc6Tz6sOEbCy+v7W56runvVF8rzYQ39AJVT15Tcu/1IAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-position:0 50%;padding-left:18px;font-weight:700}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-navigation-tab-link{width:100%;text-align:center;padding:10px;color:#509fe2;font-size:16px;background:#fff;border:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active{display:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link:focus{color:#393f4c;text-decoration:underline}}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray{background:#8ea4b4;border-color:#738ea1;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray:hover{background-color:#596771;border-color:#738ea1}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray.monsterinsights-button-disabled{pointer-events:none}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text{background:rgba(0,0,0,0);border:none;color:#509fe2;padding:0;border-radius:0;text-decoration:underline}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text:hover{background:rgba(0,0,0,0);color:#393f4c}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-small{font-size:13px;line-height:20px;padding:5px 10px}.monsterinsights-green-text{color:#5cc0a5;font-weight:700}@media (max-width:782px){.wp-responsive-open #wpbody{margin-left:-18px}}.monsterinsights-mobile-nav-trigger{color:#393f4c;font-size:16px;font-weight:500;width:100%;display:block;border-color:#d6e2ed;border-style:solid;border-width:1px 0;background:#fff;padding:15px 10px;line-height:1;margin:0}@media (min-width:783px){.monsterinsights-mobile-nav-trigger{display:none}}.monsterinsights-mobile-nav-trigger i{color:#acbdc9;margin-left:10px;vertical-align:middle}@media (max-width:782px){.monsterinsights-main-navigation{background:#fff;height:0;overflow:hidden}.monsterinsights-main-navigation.monsterinsights-main-navigation-open{padding:10px 0;height:auto;border-bottom:1px solid #d6e2ed}}@media (min-width:782px){.wp-admin .monsterinsights-swal{margin-left:160px}.auto-fold .wp-admin .monsterinsights-swal{margin-left:36px}}@media (min-width:961px){.auto-fold .wp-admin .monsterinsights-swal{margin-left:160px}.folded .wp-admin .monsterinsights-swal{margin-left:36px}}.monsterinsights-modal{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.8);z-index:99999;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights-modal .monsterinsights-modal-inner{background:#fff;padding:50px;border:1px solid #d6e2ed;text-align:center;width:750px}.monsterinsights-modal .monsterinsights-modal-inner h2{margin-top:0;margin-bottom:0;line-height:1.4}.monsterinsights-modal .monsterinsights-modal-inner p{margin-bottom:0}.monsterinsights-modal .monsterinsights-modal-inner .monsterinsights-modal-buttons{margin-top:50px}.monsterinsights-modal .monsterinsights-modal-inner .monsterinsights-button{margin:0 10px}.monsterinsights-welcome-overlay{position:fixed;top:0;left:0;right:0;bottom:0;z-index:99999999;font-family:inherit;overflow:hidden;background-color:rgba(0,0,0,.5)}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-inner{background:#fff;padding:30px;width:70%;margin:0 auto;position:relative;top:10%;height:80%}.monsterinsights-welcome-overlay .monsterinsights-overlay-close{background:none;border:none;position:absolute;top:5px;right:7px;padding:0;color:#777}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-content{height:100%}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-content iframe{height:100%;width:100%}.monsterinsights-float-right{float:right}.monsterinsights-loading-spinner-inline{text-align:center;margin:25px}.monsterinsights-loading-spinner-inline .monsterinsights-loading-spinner-inline-loader-holder{display:inline-block}.monsterinsights-semrush-cta{background:#fff;border-left:3px solid #338eef;padding:20px 26px;border-radius:3px 0 0 3px;position:relative}.monsterinsights-semrush-cta br{display:none}.monsterinsights-semrush-cta .monsterinsights-semrush-cta-close{position:absolute;top:12px;right:12px;cursor:pointer;border:0;background:rgba(0,0,0,0);padding:0;margin:0;outline:none}.monsterinsights-semrush-cta .monsterinsights-semrush-cta-title{font-weight:700;font-size:16px;line-height:20px;color:#393f4c;margin:0}.monsterinsights-semrush-cta .monsterinsights-semrush-cta-content{font-weight:400;font-size:14px;color:#393f4c}.monsterinsights-semrush-cta .monsterinsights-button{background:#338eef;border-radius:3px;font-weight:400;font-size:14px;border-width:0;padding:7px 12px}.monsterinsights-semrush-cta .monsterinsights-button:active,.monsterinsights-semrush-cta .monsterinsights-button:focus,.monsterinsights-semrush-cta .monsterinsights-button:hover{background:#3088e6;outline:none}.monsterinsights-row-highlight{-webkit-animation-name:color;animation-name:color;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-iteration-count:2;animation-iteration-count:2}@-webkit-keyframes color{0%{background-color:#fff}50%{background-color:#509fe2}to{background-color:#fff}}@keyframes color{0%{background-color:#fff}50%{background-color:#509fe2}to{background-color:#fff}}.monsterinsights-clearfix:after{content:"";clear:both;display:table}.monsterinsights-path-seo .monsterinsights-header{display:none}#monsterinsights-seo{background-color:#fff;margin-bottom:-54px}@media screen and (max-width:1023px){#monsterinsights-seo{margin-bottom:-100px}}#monsterinsights-seo{padding:84px 0 0}#monsterinsights-seo .monsterinsights-flex{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}@media screen and (max-width:1023px){#monsterinsights-seo .monsterinsights-flex{display:block}}#monsterinsights-seo .monsterinsights-flex.monsterinsights-justify-start{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:start}#monsterinsights-seo .monsterinsights-install-button button{background-color:#00aa63;border-radius:7px;outline:0;border:1px solid #00aa63;padding:0 35px 3px 0;font-size:16px;color:#fff;font-weight:700;cursor:pointer;width:232px;height:42px;position:relative}@media screen and (max-width:1023px){#monsterinsights-seo .monsterinsights-install-button button{margin-bottom:15px}}#monsterinsights-seo .monsterinsights-install-button button:hover,#monsterinsights-seo .monsterinsights-install-button button:hover span.monsterinsights-download-icon{background-color:rgba(0,170,99,.9)}#monsterinsights-seo .monsterinsights-install-button button span.monsterinsights-download-icon{position:absolute;right:0;top:0;display:inline-block;width:42px;height:41px;background-color:#009959;border-top-right-radius:5px;border-bottom-right-radius:5px}#monsterinsights-seo .monsterinsights-install-button button span.monsterinsights-download-icon i{font-weight:800;margin-top:5px;font-size:22px;display:inline-block}#monsterinsights-seo .installing{opacity:.5}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-wrapper{max-width:1040px;margin:0 auto}@media screen and (max-width:767px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-wrapper{max-width:320px}}@media screen and (min-width:768px) and (max-width:1023px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-wrapper{max-width:768px;padding:0 30px}}@media screen and (min-width:1024px) and (max-width:1139px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-wrapper{padding:0 30px}}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero{position:relative;-ms-flex-line-pack:center;align-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-item-align:center;align-self:center;padding-bottom:9px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero:after{content:"";display:block;width:230px;background-color:#f3f6ff;height:3px;position:absolute;left:50%;bottom:0;-webkit-transform:translate(-50%);-ms-transform:translate(-50%);transform:translate(-50%)}@media screen and (max-width:1023px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-left{width:100%;text-align:center}}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-left .monsterinsights-aioseo-heading{width:538px;margin-bottom:3rem}@media screen and (max-width:1023px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-left .monsterinsights-aioseo-heading{width:100%;text-align:center}}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-left .monsterinsights-aioseo-heading h1{font-size:30px;text-transform:capitalize;line-height:1.2;margin-bottom:0}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-left .monsterinsights-aioseo-heading p{font-size:16px;color:#47525c;line-height:1.3;margin-top:16px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-left .monsterinsights-star-ratings{margin-left:24px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-left .monsterinsights-star-ratings .monsterinsights-stars span.star{margin-left:5px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-left .monsterinsights-star-ratings .monsterinsights-seo-active-installs{font-size:14px;color:#606467;padding:0;margin:2px 0 0 5px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-left .monsterinsights-star-ratings .monsterinsights-seo-downloads-number{font-size:14px;color:#606467;padding-left:8px;position:relative;top:-4px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-right{width:450px;height:382px}@media screen and (max-width:767px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-right{width:320px}}@media screen and (min-width:768px) and (max-width:1023px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-right{width:700px;height:592px;margin-top:60px}}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-right svg{width:100%;height:100%}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container{margin-top:56px;margin-bottom:56px;padding-bottom:56px;position:relative}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container:after{content:"";display:block;width:230px;background-color:#f3f6ff;height:3px;position:absolute;left:50%;bottom:0;-webkit-transform:translate(-50%);-ms-transform:translate(-50%);transform:translate(-50%)}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container h2{font-size:22px;text-align:center;margin:0 0 8px}@media screen and (max-width:767px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container h2{line-height:1.3}}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container p{font-size:16px;text-align:center;margin:15px 0 0;padding:0}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container .monsterinsights-grid{display:grid;grid-template-columns:auto auto auto}@media screen and (max-width:767px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container .monsterinsights-grid{grid-template-columns:auto}}@media screen and (min-width:768px) and (max-width:1139px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container .monsterinsights-grid{grid-gap:25px}}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container .monsterinsights-grid.monsterinsights-aioseo-features{margin-top:58px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container .monsterinsights-grid .monsterinsights-aioseo-feature{width:288px;margin-bottom:32px}@media screen and (max-width:767px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container .monsterinsights-grid .monsterinsights-aioseo-feature{width:320px}}@media screen and (min-width:768px) and (max-width:1023px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container .monsterinsights-grid .monsterinsights-aioseo-feature{width:223px}}@media screen and (min-width:1024px) and (max-width:1139px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container .monsterinsights-grid .monsterinsights-aioseo-feature{width:240px}}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container .monsterinsights-grid .monsterinsights-aioseo-feature h4{font-size:16px;margin:0 0 4px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container .monsterinsights-grid .monsterinsights-aioseo-feature p{text-align:left;font-size:14px;margin:0;padding:0}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container .monsterinsights-grid .monsterinsights-aioseo-feature.monsterinsights-more{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-line-pack:center;align-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:82px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container .monsterinsights-grid .monsterinsights-aioseo-feature.monsterinsights-more h4{font-size:16px;text-align:center}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-install{text-align:center;position:relative;padding-bottom:66px;margin-bottom:56px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-install:after{content:"";display:block;width:230px;background-color:#f3f6ff;height:3px;position:absolute;left:50%;bottom:0;-webkit-transform:translate(-50%);-ms-transform:translate(-50%);transform:translate(-50%)}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-install h3{font-size:22px;margin:0 0 8px;padding:0}@media screen and (max-width:767px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-install h3{line-height:1.3}}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-install p{font-size:16px;padding:0;margin-top:0;margin-bottom:21px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-clients{max-width:762px;margin:0 auto}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-clients h3{font-size:18px;text-align:center;margin-bottom:56px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-clients .monsterinsights-aioseo-client-logos{margin-left:60px;display:grid;grid-template-columns:auto auto auto auto auto auto;-ms-flex-line-pack:center;align-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media screen and (max-width:767px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-clients .monsterinsights-aioseo-client-logos{margin-left:30px;grid-template-columns:auto auto auto}}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-clients .monsterinsights-aioseo-client-logos .monsterinsights-aioseo-client-logo{margin-bottom:60px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-clients .monsterinsights-aioseo-client-logos .monsterinsights-aioseo-client-logo.logo-1{background-image:url(../img/aioseo-client-logo-1.svg);width:77px;height:16px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-clients .monsterinsights-aioseo-client-logos .monsterinsights-aioseo-client-logo.logo-2{background-image:url(../img/aioseo-client-logo-2.svg);width:91px;height:24px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-clients .monsterinsights-aioseo-client-logos .monsterinsights-aioseo-client-logo.logo-3{background-image:url(../img/aioseo-client-logo-3.svg);width:59px;height:40px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-clients .monsterinsights-aioseo-client-logos .monsterinsights-aioseo-client-logo.logo-4{background-image:url(../img/aioseo-client-logo-4.svg);width:50px;height:32px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-clients .monsterinsights-aioseo-client-logos .monsterinsights-aioseo-client-logo.logo-5{background-image:url(../img/aioseo-client-logo-5.svg);width:77px;height:24px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-clients .monsterinsights-aioseo-client-logos .monsterinsights-aioseo-client-logo.logo-6{background-image:url(../img/aioseo-client-logo-6.svg);width:57px;height:48px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-clients .monsterinsights-aioseo-client-logos .monsterinsights-aioseo-client-logo.logo-7{background-image:url(../img/aioseo-client-logo-7.svg);width:78px;height:35px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-clients .monsterinsights-aioseo-client-logos .monsterinsights-aioseo-client-logo.logo-8{background-image:url(../img/aioseo-client-logo-8.svg);width:66px;height:34px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-clients .monsterinsights-aioseo-client-logos .monsterinsights-aioseo-client-logo.logo-9{background-image:url(../img/aioseo-client-logo-9.svg);width:56px;height:34px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-clients .monsterinsights-aioseo-client-logos .monsterinsights-aioseo-client-logo.logo-10{background-image:url(../img/aioseo-client-logo-10.svg);width:59px;height:34px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-clients .monsterinsights-aioseo-client-logos .monsterinsights-aioseo-client-logo.logo-11{background-image:url(../img/aioseo-client-logo-11.svg);width:71px;height:24px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-clients .monsterinsights-aioseo-client-logos .monsterinsights-aioseo-client-logo.logo-12{background-image:url(../img/aioseo-client-logo-12.svg);width:70px;height:26px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-testimonials{color:#141b38;max-width:756px;margin:0 auto}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-testimonials .monsterinsights-aioseo-testimonial{border:1px solid #e6eefc;border-radius:6px;padding:26px 27px 40px 55px;-webkit-box-shadow:rgba(0,0,0,.02) 0 1px 3px 0,rgba(27,31,35,.15) 0 0 0 1px;box-shadow:0 1px 3px 0 rgba(0,0,0,.02),0 0 0 1px rgba(27,31,35,.15);width:353px;position:relative;margin-right:50px;float:left}@media screen and (max-width:767px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-testimonials .monsterinsights-aioseo-testimonial{width:320px;margin-bottom:30px}}@media screen and (min-width:768px) and (max-width:1023px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-testimonials .monsterinsights-aioseo-testimonial{width:329px}}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-testimonials .monsterinsights-aioseo-testimonial:last-child{margin-right:0}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-testimonials .monsterinsights-aioseo-testimonial svg{position:absolute;left:5%;top:14%}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-testimonials .monsterinsights-aioseo-testimonial svg.monsterinsights-testimonial-2-icon{left:5%;top:11.5%}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-testimonials .monsterinsights-aioseo-testimonial p.monsterinsights-text{font-size:16px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-testimonials .monsterinsights-aioseo-testimonial p.monsterinsights-name{font-size:16px;margin:0}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-testimonials .monsterinsights-aioseo-testimonial p.monsterinsights-company{font-size:14px;margin:0;color:#8c8f9a}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-footer{background-color:#005ae0;color:#fff;margin-top:60px}@media screen and (min-width:768px) and (max-width:1023px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-footer .monsterinsights-flex{display:-webkit-box;display:-ms-flexbox;display:flex}}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-footer .monsterinsights-wrapper{height:222px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center}@media screen and (max-width:767px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-footer .monsterinsights-wrapper{height:320px;padding:30px 0 50px}}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-footer .monsterinsights-wrapper .monsterinsights-footer-text{width:60%}@media screen and (max-width:767px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-footer .monsterinsights-wrapper .monsterinsights-footer-text{width:100%;margin-bottom:30px}}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-footer .monsterinsights-wrapper .monsterinsights-footer-text h5{font-size:22px;line-height:1.2;margin-top:0;margin-bottom:10px}@media screen and (max-width:1023px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-footer .monsterinsights-wrapper .monsterinsights-footer-text h5{line-height:1.4}}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-footer .monsterinsights-wrapper .monsterinsights-footer-text p{font-size:16px;padding:0;margin:0}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-hero{text-align:center}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-hero:after{content:"";display:block;width:638px;background-color:#f3f6ff;height:2px;position:absolute;left:50%;bottom:11px;-webkit-transform:translate(-50%);-ms-transform:translate(-50%);transform:translate(-50%)}@media screen and (max-width:767px){#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-hero:after{width:320px}}@media screen and (max-width:767px){#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-hero-screenshot svg{width:315px}}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-heading{max-width:516px;margin:0 auto}@media screen and (max-width:1023px){#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-heading{width:100%}}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-heading h1{font-size:30px;line-height:120%;margin-bottom:10px}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-heading h1 span{color:#005ae0}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-heading p{font-size:18px;padding:0;margin:0 0 32px}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-install-button button{width:200px;height:48px;padding:10px 35px 13px 0}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-install-button button span.monsterinsights-download-icon{height:47px}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-install-button button span.monsterinsights-download-icon svg{margin-bottom:-15px;width:18px;height:18px}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-star-ratings{margin-top:40px;margin-bottom:25px}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-star-ratings span{display:inline-block}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-star-ratings .monsterinsights-seo-downloads-number{position:relative;top:-4px;margin:0 8px;font-size:14px}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-star-ratings svg.circle{padding:0 12px;margin-bottom:5px}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-star-ratings .monsterinsights-seo-active-installs{display:inline-block;font-size:14px;position:relative;top:-3px}@media screen and (max-width:767px){#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-features-container{margin-left:-14px}}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-features{max-width:756px;margin:0 auto;padding-top:62px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center}@media screen and (max-width:767px){#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-features:last-child{padding-top:20px}}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-features .monsterinsights-aioseo-feature{width:350px;height:262px}@media screen and (min-width:768px) and (max-width:1023px){#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-features .monsterinsights-aioseo-feature{width:728px;background-repeat:no-repeat;background-position:50%}}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-features .monsterinsights-aioseo-feature.feature-1-image{background-image:url(../img/aioseo-screen-1.svg)}@media screen and (min-width:768px) and (max-width:1023px){#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-features .monsterinsights-aioseo-feature.feature-1-image{margin-bottom:40px}}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-features .monsterinsights-aioseo-feature.feature-2-image{background-image:url(../img/aioseo-screen-2.svg)}@media screen and (min-width:768px) and (max-width:1023px){#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-features .monsterinsights-aioseo-feature.feature-2-image{margin-top:40px}}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-features .monsterinsights-aioseo-feat-text{width:350px}@media screen and (max-width:767px){#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-features .monsterinsights-aioseo-feat-text{width:320px;padding:20px 0}}@media screen and (min-width:768px) and (max-width:1023px){#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-features .monsterinsights-aioseo-feat-text{margin:0 auto;text-align:center}}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-features .monsterinsights-aioseo-feat-text h3{margin-bottom:20px;line-height:120%}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-features .monsterinsights-aioseo-feat-text p{text-align:left;margin-bottom:20px}@media screen and (min-width:768px) and (max-width:1023px){#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-features .monsterinsights-aioseo-feat-text p{text-align:center}}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-features .monsterinsights-aioseo-feat-text a{display:inline-block;color:#005ae0;text-decoration:none;outline:0}.monsterinsights-aioseo-love.monsterinsights-bg-img{padding-top:0;width:154px;height:28px}.monsterinsights-aioseo-love.monsterinsights-bg-img:after{background-image:url(../img/monsterinsights-aioseo.jpg)}body.monsterinsights-woo-insights-page{background:#fff}body.monsterinsights-woo-insights-page #wpbody-content{padding-bottom:0}body.monsterinsights-woo-insights-page #wpfooter{display:none}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside{max-width:992px;margin:0 auto}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside h4{font-size:16px;color:#393f4c;font-weight:400}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-top{margin-top:77px;background-image:url(../img/woo-insights-hero-image.png);background-repeat:no-repeat;background-position:100% 15px;padding-left:16px}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-top .monsterinsights-woo-insights-top-content h1{font-size:40px;line-height:120%;text-transform:capitalize;font-weight:700;color:#393f4c;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAATMAAAAJCAYAAABezsshAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAIsSURBVHgB7ZpBTgIxFED/r8ToQh1OoB7BlXGna03kCN7AeALjDbyBV2Dn1p3s9Ah4AoobCTL9/hkgMO3v4KAJjP63gvZPaWD6+NNfBOVHfDy3DqT2EYzEdgInto/7TLQPN3AfyiBKACEpDQGOofKY4HMBs/hK1/wmPOdulXiesOU524VxBBYwHofc7xz14x/jumKHIYtuQxy3AQ3xmu2TttiuVANhjem9nCZbg6SwkHxJkEkTcFiIIeL3WGwzBvfIX+yCAGILftWLWvl/iCKPyhqDWErpLRyUZYtki0Oa4FpfvIMta5tHT4v/JFaIKLNFEhEF4mUVQSbhiUOSBv9IhTEURVlrLK/johjRk6qQAQeS9QUrZLfzco2JNZdZJq/GcOeWJ3YFmn0oilIbsJvC6KZ5/NjOZfbeOX9ge16BoihKDUkdnJn8lYpMUZQaYxBajcnr7PlTHy+XIFZtC/YOZj2R9siG7QQXq55NMcZyUPkGrXMWzGa1TdwVb/z2ItXiKG6Y8Hex+F42fL87F40zQhFpnmh1uaSqTEQH4liAYrtSjfwxs9+5uEeEa1gzKJfsEhuMWUmdvIXNm4zOq+KM8So5sQVfg2qO8reQRS4f+QHhyI8RjvrIEg4lG4oXE1zjhCd1o8NJAaCVmMHnPedql9MJ+xlHQSLfqFAEmYSfOQjSaOp5G0WpDVnhELxTD4FsvQxYynhDwRZFSvmpB5q7ZiZWQnpFcne7XAD4AhaLADIbxR8GAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-position:0 36px;margin-bottom:9px}@media (max-width:767px){body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-top .monsterinsights-woo-insights-top-content h1 br{display:none}}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-top .monsterinsights-woo-insights-top-content h1 span{color:#338eef}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-top .monsterinsights-woo-insights-top-content h4{margin-top:0;line-height:120%;margin-bottom:31px}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-top .monsterinsights-woo-insights-top-content .monsterinsights-button{background:#3990ec;border-radius:4px;color:#fff;font-size:16px;font-weight:700;border:none;padding:15px 24px}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-top .monsterinsights-woo-insights-top-content .monsterinsights-button svg{margin-left:14px;margin-bottom:0}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-top .monsterinsights-woo-insights-top-content .monsterinsights-button:active,body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-top .monsterinsights-woo-insights-top-content .monsterinsights-button:focus,body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-top .monsterinsights-woo-insights-top-content .monsterinsights-button:hover{background:#278ce0;outline:none}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-middle{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:43px;margin-bottom:54px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-left:16px}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-middle .monsterinsights-woo-insights-content-middle-left{width:29px;margin-top:3px}@media (max-width:767px){body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-middle .monsterinsights-woo-insights-content-middle-content{margin-left:15px}}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-middle .monsterinsights-woo-insights-content-middle-content h4{font-size:20px;line-height:160%;font-weight:700;color:#333;margin:0}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-middle .monsterinsights-woo-insights-content-middle-content p{font-size:16px;font-weight:400;color:#333;margin:0}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features-header{text-align:center;margin-bottom:64px}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features-header h5{font-weight:700;font-size:12px;line-height:110%;text-align:center;letter-spacing:.2em;text-transform:uppercase;color:#2f80ed;margin-top:0;margin-bottom:7px}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features-header h2{font-weight:700;font-size:28px;line-height:110%;color:#23282d;margin:0 0 10px}@media (max-width:767px){body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features-header h2{font-size:20px}}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features-header p{font-weight:400;font-size:16px;line-height:140%;color:#23282d;margin:0}@media (max-width:767px){body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features-header p br{display:none}}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features .monsterinsights-woo-insights-single-feature{position:relative;width:calc(34.6% - 40px);-webkit-box-shadow:0 2px 24px 4px rgba(0,0,0,.03);box-shadow:0 2px 24px 4px rgba(0,0,0,.03);border-radius:10px;margin-bottom:44px;padding:32px 22px 32px 32px}@media (max-width:767px){body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features .monsterinsights-woo-insights-single-feature{width:100%;margin-right:20px;margin-left:20px}}@media screen and (min-width:768px) and (max-width:1024px){body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features .monsterinsights-woo-insights-single-feature{width:calc(50% - 40px)}}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features .monsterinsights-woo-insights-single-feature .monsterinsights-woo-insights-single-feature-icon{min-height:26px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features .monsterinsights-woo-insights-single-feature h3{font-weight:700;font-size:20px;line-height:110%;color:#23282d;margin-top:15px;margin-bottom:17px}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features .monsterinsights-woo-insights-single-feature p{font-weight:400;font-size:14px;line-height:140%;color:rgba(35,40,45,.72);margi-top:0;margin-bottom:17px}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features .monsterinsights-woo-insights-single-feature .monsterinsights-woo-insights-link-addon-install,body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features .monsterinsights-woo-insights-single-feature .monsterinsights-woo-insights-upgrade-link{font-weight:400;font-size:14px;line-height:110%;text-align:center;-webkit-text-decoration-line:underline;text-decoration-line:underline;color:#3990ec}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features .monsterinsights-woo-insights-single-feature .monsterinsights-woo-insights-link-addon-install svg,body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features .monsterinsights-woo-insights-single-feature .monsterinsights-woo-insights-upgrade-link svg{margin-left:7px}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features .monsterinsights-woo-insights-single-feature .monsterinsights-woo-insights-link-addon-install:active,body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features .monsterinsights-woo-insights-single-feature .monsterinsights-woo-insights-link-addon-install:focus,body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features .monsterinsights-woo-insights-single-feature .monsterinsights-woo-insights-link-addon-install:hover,body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features .monsterinsights-woo-insights-single-feature .monsterinsights-woo-insights-upgrade-link:active,body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features .monsterinsights-woo-insights-single-feature .monsterinsights-woo-insights-upgrade-link:focus,body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features .monsterinsights-woo-insights-single-feature .monsterinsights-woo-insights-upgrade-link:hover{color:#007cff;outline:none}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features .monsterinsights-woo-insights-single-feature .monsterinsights-woo-insights-link-addon-install{background:rgba(0,0,0,0);border:0;padding:0;text-align:left;margin-top:2px}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features .monsterinsights-woo-insights-single-feature .monsterinsights-woo-insights-link-addon-install svg{margin-bottom:-5px}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-questions-container{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:30px}@media (max-width:767px){body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-questions-container{display:block;padding:0 20px}}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-questions-container .monsterinsights-woo-insights-questions{width:61%;margin-top:33px}@media (max-width:767px){body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-questions-container .monsterinsights-woo-insights-questions{width:100%;margin-bottom:30px}}@media screen and (min-width:768px) and (max-width:1024px){body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-questions-container .monsterinsights-woo-insights-questions{padding-left:20px}}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-questions-container .monsterinsights-woo-insights-questions h2{font-weight:700;font-size:28px;line-height:120%;text-transform:capitalize;color:#393f4c;margin-top:0;margin-bottom:33px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKUAAAAHCAYAAABp/40/AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAHJSURBVHgB7ZhNTsMwEIVn3AqVFe4JyBVYsmONAHEDuAIngCNwFI7ArkJC4giUE8QgJBBqZxgn/m1TgUQqGjVv0cSeiRvJn58nRuiIyqcjPfrU2rdnMCv8PQMVaS6DCm2lcI8RdDYYs4aFPmYuYIUQcGXst2Lg6aoYIk4bHjASMCFH2kT8GuNsEDnGQWVjDGEY2ruHd8vjb7AQ1qCPyXlhr3P60qxUNfkeHGYUILDqwwHux6dqKGTytPzo+IJYQK/WlC6OfDHU9xn8Cfgp9B74dcGeQelh8i60CFLuOg4i5zACj+3X0Gsr5WFvAp3n/FInOciVXGlQwd4EOL4/nl3QnG6hB6rXvwunaoA3+PZw+uxdb9P109YT8vzKdCKgLC6FppFOk48+zHNSjYwZH9wb+INKtws1a7YcU2ISRMEoVFL2VJIdC2Xnig/EOeSq/GGXixq7ZThGoDwpoeWXjvCg2LWffGfltl7hui+HxdUsRGLvOwGAcceK9E1XWBxS74Or92vVpVoGfwZ+Cn0o2QpoWZYdLCfHl1IrXts/WIZpASSpCSh88fnC1zlMC27Sq5uyJyMQTkac6ydOr/xpiIc8Of1IAWfrkoRX37Hg4bWWRg4HAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-position:0 23px}@media screen and (min-width:768px) and (max-width:1024px){body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-questions-container .monsterinsights-woo-insights-questions h2 br{display:none}}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-questions-container .monsterinsights-woo-insights-questions ul.monsterinsights-woo-insights-questions-list{margin:0;padding:0;list-style:none}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-questions-container .monsterinsights-woo-insights-questions ul.monsterinsights-woo-insights-questions-list li{display:block;font-weight:400;font-size:20px;line-height:110%;color:#23282d;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAANCAYAAABlyXS1AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAABDSURBVHgBfZBBDQAhEAPnHJwEJGARhUhASlkSnrRN+tjM7KcAvfpjoup0gpKgJCgJcsJ3j1eG+1zVRgIkQAIkcGK33bhuKTqR8GZOAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-position:0;padding-left:26px;margin-left:3px;margin-bottom:12px}@media screen and (min-width:768px) and (max-width:1024px){body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-questions-container .monsterinsights-woo-insights-questions ul.monsterinsights-woo-insights-questions-list li{font-size:16px}}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-questions-container .monsterinsights-woo-insights-image{width:39%}@media (max-width:767px){body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-questions-container .monsterinsights-woo-insights-image{width:100%}}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-questions-container .monsterinsights-woo-insights-image img{display:inline-block;max-width:100%}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-call-to-action{background:#3990ec;text-align:center;padding-top:63px;margin-top:66px;padding-bottom:70px}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-call-to-action h2{font-weight:700;font-size:36px;line-height:120%;text-align:center;color:#fff;margin-top:0;margin-bottom:17px}@media (max-width:767px){body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-call-to-action h2 br{display:none}}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-call-to-action h2 span{font-weight:900}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-call-to-action p{margin:0;font-weight:400;font-size:16px;line-height:140%;text-align:center;color:#fff}@media (max-width:767px){body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-call-to-action p br{display:none}}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-call-to-action .monsterinsights-button{background:#1a6fcb;border:1px solid #1762b5;border-radius:4px;color:#fff;font-size:16px;font-weight:700;padding:13px 25px;margin-top:31px}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-call-to-action .monsterinsights-button svg{margin-left:14px;margin-bottom:0}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-call-to-action .monsterinsights-button:active,body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-call-to-action .monsterinsights-button:focus,body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-call-to-action .monsterinsights-button:hover{background:#2c79cc;border-color:#3377bf;outline:none}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel #monsterinsights-woo-insights-install-addon{display:none}body.monsterinsights-woo-insights-page .monsterinsights-woo-insights-swal .swal2-header .swal2-title{font-weight:700;font-size:24px;line-height:110%;text-align:center;color:#23282d;margin:0}body.monsterinsights-woo-insights-page .monsterinsights-woo-insights-swal .swal2-content{padding:0 7px}body.monsterinsights-woo-insights-page .monsterinsights-woo-insights-swal .swal2-content .monsterinsights-woo-insights-swal-content{border-bottom:1px solid #e0e0e0;padding-bottom:39px}body.monsterinsights-woo-insights-page .monsterinsights-woo-insights-swal .swal2-content .monsterinsights-woo-insights-swal-content p{font-weight:400;font-size:16px;line-height:110%;text-align:center;color:#23282d;margin-top:16px;margin-bottom:0}body.monsterinsights-woo-insights-page .monsterinsights-woo-insights-swal .swal2-content .monsterinsights-woo-insights-swal-content .monsterinsights-button{background:#3990ec;border-radius:4px;color:#fff;font-size:16px;font-weight:700;border:none;padding:13px 25px;display:inline-block;text-decoration:none;margin-top:30px;cursor:pointer}body.monsterinsights-woo-insights-page .monsterinsights-woo-insights-swal .swal2-content .monsterinsights-woo-insights-swal-content .monsterinsights-button:active,body.monsterinsights-woo-insights-page .monsterinsights-woo-insights-swal .swal2-content .monsterinsights-woo-insights-swal-content .monsterinsights-button:focus,body.monsterinsights-woo-insights-page .monsterinsights-woo-insights-swal .swal2-content .monsterinsights-woo-insights-swal-content .monsterinsights-button:hover{background:#278ce0;outline:none}body.monsterinsights-woo-insights-page .monsterinsights-woo-insights-swal .swal2-actions .swal2-styled.swal2-confirm{font-weight:700;font-size:16px;line-height:110%;text-align:center;color:#338eef;padding:0;background:rgba(0,0,0,0)}body.monsterinsights-woo-insights-page .monsterinsights-woo-insights-swal .swal2-actions .swal2-styled.swal2-confirm:active,body.monsterinsights-woo-insights-page .monsterinsights-woo-insights-swal .swal2-actions .swal2-styled.swal2-confirm:focus,body.monsterinsights-woo-insights-page .monsterinsights-woo-insights-swal .swal2-actions .swal2-styled.swal2-confirm:hover{color:#278ce0;background:rgba(0,0,0,0);outline:none}button[data-v-84152f64]{margin-top:3px}.monsterinsights-dark[data-v-3f0b0409]{display:block}.monsterinsights-admin-page fieldset[disabled] .multiselect{pointer-events:none}.monsterinsights-admin-page .multiselect__spinner{position:absolute;right:1px;top:1px;width:48px;height:35px;background:#fff;display:block}.monsterinsights-admin-page .multiselect__spinner:after,.monsterinsights-admin-page .multiselect__spinner:before{position:absolute;content:"";top:50%;left:50%;margin:-8px 0 0 -8px;width:16px;height:16px;border-radius:100%;border:2px solid rgba(0,0,0,0);border-top-color:#b7c9d9;-webkit-box-shadow:0 0 0 1px rgba(0,0,0,0);box-shadow:0 0 0 1px rgba(0,0,0,0)}.monsterinsights-admin-page .multiselect__spinner:before{-webkit-animation:a 2.4s cubic-bezier(.41,.26,.2,.62);animation:a 2.4s cubic-bezier(.41,.26,.2,.62);-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.monsterinsights-admin-page .multiselect__spinner:after{-webkit-animation:a 2.4s cubic-bezier(.51,.09,.21,.8);animation:a 2.4s cubic-bezier(.51,.09,.21,.8);-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.monsterinsights-admin-page .multiselect__loading-enter-active,.monsterinsights-admin-page .multiselect__loading-leave-active{-webkit-transition:opacity .4s ease-in-out;transition:opacity .4s ease-in-out;opacity:1}.monsterinsights-admin-page .multiselect__loading-enter,.monsterinsights-admin-page .multiselect__loading-leave-active{opacity:0}.monsterinsights-admin-page .multiselect,.monsterinsights-admin-page .multiselect__input,.monsterinsights-admin-page .multiselect__single{font-family:inherit;font-size:16px;-ms-touch-action:manipulation;touch-action:manipulation}.monsterinsights-admin-page .multiselect{-webkit-box-sizing:content-box;box-sizing:content-box;display:block;position:relative;width:100%;min-height:40px;text-align:left;color:#35495e}.monsterinsights-admin-page .multiselect *{-webkit-box-sizing:border-box;box-sizing:border-box}.monsterinsights-admin-page .multiselect:focus{outline:none}.monsterinsights-admin-page .multiselect--disabled{opacity:.6}.monsterinsights-admin-page .multiselect--active{z-index:1}.monsterinsights-admin-page .multiselect--active:not(.multiselect--above) .multiselect__current,.monsterinsights-admin-page .multiselect--active:not(.multiselect--above) .multiselect__input,.monsterinsights-admin-page .multiselect--active:not(.multiselect--above) .multiselect__tags{border-bottom-left-radius:0;border-bottom-right-radius:0}.monsterinsights-admin-page .multiselect--active .multiselect__select{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.monsterinsights-admin-page .multiselect--above.multiselect--active .multiselect__current,.monsterinsights-admin-page .multiselect--above.multiselect--active .multiselect__input,.monsterinsights-admin-page .multiselect--above.multiselect--active .multiselect__tags{border-top-left-radius:0;border-top-right-radius:0}.monsterinsights-admin-page .multiselect__input,.monsterinsights-admin-page .multiselect__single{position:relative;display:inline-block;min-height:20px;line-height:20px;border:none;border-radius:5px;background:#fff;padding:0 0 0 5px;width:100%;-webkit-transition:border .1s ease;transition:border .1s ease;-webkit-box-sizing:border-box;box-sizing:border-box;margin-bottom:8px;vertical-align:top}.monsterinsights-admin-page .multiselect__input:-ms-input-placeholder{color:#35495e}.monsterinsights-admin-page .multiselect__input::-webkit-input-placeholder{color:#35495e}.monsterinsights-admin-page .multiselect__input::-moz-placeholder{color:#35495e}.monsterinsights-admin-page .multiselect__input::-ms-input-placeholder{color:#35495e}.monsterinsights-admin-page .multiselect__input::placeholder{color:#35495e}.monsterinsights-admin-page .multiselect__tag~.multiselect__input,.monsterinsights-admin-page .multiselect__tag~.multiselect__single{width:auto}.monsterinsights-admin-page .multiselect__input:hover,.monsterinsights-admin-page .multiselect__single:hover{border-color:#cfcfcf}.monsterinsights-admin-page .multiselect__input:focus,.monsterinsights-admin-page .multiselect__single:focus{border-color:#a8a8a8;outline:none}.monsterinsights-admin-page .multiselect__single{padding-left:5px;margin-bottom:8px}.monsterinsights-admin-page .multiselect__tags-wrap{display:inline}.monsterinsights-admin-page .multiselect__tags{min-height:40px;display:block;padding:9px 40px 0 8px;border-radius:5px;border:1px solid #b8c9d8;background:#fff;font-size:14px}.monsterinsights-admin-page .multiselect__tag{position:relative;display:inline-block;padding:2px 8px 2px 20px;border-radius:5px;margin-right:10px;color:#393f4c;line-height:1.2;background:#f3f6ff;margin-bottom:5px;overflow:hidden;max-width:100%;text-overflow:ellipsis;border:1px solid #b7c9d9;font-size:14px}.monsterinsights-admin-page .multiselect__tag.monsterinsights-tag-forced{padding-left:8px}.monsterinsights-admin-page .multiselect__tag.monsterinsights-tag-forced i{display:none}.monsterinsights-admin-page .multiselect__tag-icon{cursor:pointer;position:absolute;left:0;top:0;bottom:0;font-weight:700;font-style:normal;width:22px;text-align:center;line-height:24px;-webkit-transition:all .2s ease;transition:all .2s ease;border-radius:5px;margin-left:0}.monsterinsights-admin-page .multiselect__tag-icon:hover{background:rgba(0,0,0,0)}.monsterinsights-admin-page .multiselect__tag-icon:after{content:"\D7";color:#b7c9d8;font-size:18px;margin-top:-4px;display:block}.monsterinsights-admin-page .multiselect__tag-icon:focus:after,.monsterinsights-admin-page .multiselect__tag-icon:hover:after{color:#444}.monsterinsights-admin-page .multiselect__current{min-height:40px;overflow:hidden;padding:8px 30px 0 12px;white-space:nowrap;border-radius:5px;border:1px solid #e8e8e8}.monsterinsights-admin-page .multiselect__current,.monsterinsights-admin-page .multiselect__select{line-height:16px;-webkit-box-sizing:border-box;box-sizing:border-box;display:block;margin:0;text-decoration:none;cursor:pointer}.monsterinsights-admin-page .multiselect__select{display:none}.monsterinsights-admin-page .multiselect__placeholder{color:#adadad;display:inline-block;margin-bottom:10px;padding-top:2px}.monsterinsights-admin-page .multiselect--active .multiselect__placeholder{display:none}.monsterinsights-admin-page .multiselect__content-wrapper{position:absolute;display:block;background:#fff;width:100%;max-height:240px;overflow:auto;border:1px solid #b7c9d9;border-top:none;border-bottom-left-radius:5px;border-bottom-right-radius:5px;z-index:1;-webkit-overflow-scrolling:touch}.monsterinsights-admin-page .multiselect__content{list-style:none;display:inline-block;padding:0;margin:0;min-width:100%;vertical-align:top}.monsterinsights-admin-page .multiselect--above .multiselect__content-wrapper{bottom:100%;border-bottom-left-radius:0;border-bottom-right-radius:0;border-top-left-radius:5px;border-top-right-radius:5px;border-bottom:none;border-top:1px solid #e8e8e8}.monsterinsights-admin-page .multiselect__content::webkit-scrollbar{display:none}.monsterinsights-admin-page .multiselect__element{display:block}.monsterinsights-admin-page .multiselect__option{display:block;padding:10px;line-height:16px;text-decoration:none;text-transform:none;vertical-align:middle;position:relative;cursor:pointer;white-space:nowrap;font-size:14px}.monsterinsights-admin-page .multiselect__option:after{top:0;right:0;position:absolute;line-height:40px;padding-right:12px;padding-left:20px;font-size:13px}.monsterinsights-admin-page .multiselect__option--highlight{background:#acbdc9;outline:none;color:#fff}.monsterinsights-admin-page .multiselect__option--highlight:after{content:attr(data-select);background:#acbdc9;color:#fff}.monsterinsights-admin-page .multiselect__option--selected{background:#f3f3f3;color:#35495e;font-weight:700}.monsterinsights-admin-page .multiselect__option--selected:after{content:attr(data-selected);color:silver}.monsterinsights-admin-page .multiselect__option--selected.multiselect__option--highlight{background:#509fe2;color:#fff}.monsterinsights-admin-page .multiselect__option--selected.multiselect__option--highlight:after{background:#509fe2;content:attr(data-deselect);color:#fff}.monsterinsights-admin-page .multiselect--disabled{background:#ededed;pointer-events:none}.monsterinsights-admin-page .multiselect--disabled .multiselect__current,.monsterinsights-admin-page .multiselect--disabled .multiselect__select{background:#ededed;color:#a6a6a6}.monsterinsights-admin-page .multiselect__option--disabled{background:#ededed!important;color:#a6a6a6!important;cursor:text;pointer-events:none}.monsterinsights-admin-page .multiselect__option--group{background:#ededed;color:#35495e}.monsterinsights-admin-page .multiselect__option--group.multiselect__option--highlight{background:#35495e;color:#fff}.monsterinsights-admin-page .multiselect__option--group.multiselect__option--highlight:after{background:#35495e}.monsterinsights-admin-page .multiselect__option--disabled.multiselect__option--highlight{background:#dedede}.monsterinsights-admin-page .multiselect__option--group-selected.multiselect__option--highlight{background:#509fe2;color:#fff}.monsterinsights-admin-page .multiselect__option--group-selected.multiselect__option--highlight:after{background:#509fe2;content:attr(data-deselect);color:#fff}.monsterinsights-admin-page .multiselect-enter-active,.monsterinsights-admin-page .multiselect-leave-active{-webkit-transition:all .15s ease;transition:all .15s ease}.monsterinsights-admin-page .multiselect-enter,.monsterinsights-admin-page .multiselect-leave-active{opacity:0}.monsterinsights-admin-page .multiselect__strong{margin-bottom:8px;line-height:20px;display:inline-block;vertical-align:top}.monsterinsights-admin-page [dir=rtl] .multiselect{text-align:right}.monsterinsights-admin-page [dir=rtl] .multiselect__select{right:auto;left:1px}.monsterinsights-admin-page [dir=rtl] .multiselect__tags{padding:8px 8px 0 40px}.monsterinsights-admin-page [dir=rtl] .multiselect__content{text-align:right}.monsterinsights-admin-page [dir=rtl] .multiselect__option:after{right:auto;left:0}.monsterinsights-admin-page [dir=rtl] .multiselect__clear{right:auto;left:12px}.monsterinsights-admin-page [dir=rtl] .multiselect__spinner{right:auto;left:1px}@-webkit-keyframes a{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(2turn);transform:rotate(2turn)}}@keyframes a{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(2turn);transform:rotate(2turn)}}.update-nag{display:none}.monsterinsights-admin-page{min-height:100vh;font-size:14px}.monsterinsights-admin-page a{color:#509fe2}.monsterinsights-admin-page a:focus,.monsterinsights-admin-page a:hover{color:#393f4c}.monsterinsights-admin-page .monsterinsights-container{margin:0 auto;max-width:100%;width:750px}.monsterinsights-admin-page .monsterinsights-separator{background:#d6e2ed;display:block;height:1px;margin:25px 0}.monsterinsights-admin-page .monsterinsights-settings-content{margin-left:auto;margin-right:auto;max-width:750px}@media (min-width:783px) and (max-width:790px){.monsterinsights-admin-page .monsterinsights-settings-content{padding:0 10px}}.monsterinsights-admin-page input.monsterinsights-has-error{border-color:red}.monsterinsights-admin-page .monsterinsights-button{background:#509fe2;color:#fff;border:solid #2e7fbe;border-width:1px 1px 2px;border-radius:3px;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none}.monsterinsights-admin-page .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-button:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-disabled{background:#f3f6ff;border-color:#d6e2eb;color:#8ba4b7}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary{background:#8da4b5;border-color:#6f8ca0;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary:hover{background-color:#7e98ab;border-color:#627f94;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green{background:#5cc0a5;border-color:#40a88d;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green:hover{background-color:#4ab99b;border-color:#39967e;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-red{background:#ea4e64;border-color:#d21933;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-large{font-size:16px;padding:14px 27px}.monsterinsights-admin-page input[type=number],.monsterinsights-admin-page input[type=text],.monsterinsights-admin-page textarea{border:1px solid #b7c9d9;border-radius:3px;font-size:14px;padding:9px 15px;width:100%;-webkit-box-shadow:none;box-shadow:none;height:40px;margin:0;color:#444}.monsterinsights-admin-page input[type=number]::-webkit-input-placeholder,.monsterinsights-admin-page input[type=text]::-webkit-input-placeholder,.monsterinsights-admin-page textarea::-webkit-input-placeholder{color:#b7c9d9}.monsterinsights-admin-page input[type=number]:-moz-placeholder,.monsterinsights-admin-page input[type=number]::-moz-placeholder,.monsterinsights-admin-page input[type=text]:-moz-placeholder,.monsterinsights-admin-page input[type=text]::-moz-placeholder,.monsterinsights-admin-page textarea:-moz-placeholder,.monsterinsights-admin-page textarea::-moz-placeholder{color:#b7c9d9}.monsterinsights-admin-page input[type=number]:-ms-input-placeholder,.monsterinsights-admin-page input[type=text]:-ms-input-placeholder,.monsterinsights-admin-page textarea:-ms-input-placeholder{color:#b7c9d9}.monsterinsights-admin-page input[type=number].monsterinsights-has-error,.monsterinsights-admin-page input[type=text].monsterinsights-has-error,.monsterinsights-admin-page textarea.monsterinsights-has-error{border-color:#d83638}.monsterinsights-admin-page input[type=text]:-moz-read-only{background:#fff;color:#b7c9d9}.monsterinsights-admin-page input[type=text]:read-only{background:#fff;color:#b7c9d9}.monsterinsights-admin-page textarea{height:150px}.monsterinsights-admin-page label{width:100%;font-size:14px;display:inline-block;color:#777;margin:2px 0 17px}.monsterinsights-admin-page .inline-field{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights-admin-page .inline-field input{width:100%}.monsterinsights-admin-page .inline-field .monsterinsights-button{margin-left:10px;-ms-flex-negative:0;flex-shrink:0}.monsterinsights-admin-page .monsterinsights-error{margin:18px 0 0;color:#d83638;cursor:default}.monsterinsights-admin-page .monsterinsights-error i{margin-right:10px}.monsterinsights-admin-page .monsterinsights-tracking-mode-settings-enter-active,.monsterinsights-admin-page .monsterinsights-tracking-mode-settings-leave-active{-webkit-transition:opacity 1s;transition:opacity 1s}.monsterinsights-admin-page .monsterinsights-tracking-mode-settings-enter,.monsterinsights-admin-page .monsterinsights-tracking-mode-settings-leave-to{opacity:0}.monsterinsights-admin-page .monsterinsights-tracking-mode-settings-enter .monsterinsights-styled-checkbox,.monsterinsights-admin-page .monsterinsights-tracking-mode-settings-leave-to .monsterinsights-styled-checkbox{background-color:#509fe2!important}.monsterinsights-admin-page .monsterinsights-tracking-mode-settings-enter .monsterinsights-styled-checkbox:after,.monsterinsights-admin-page .monsterinsights-tracking-mode-settings-leave-to .monsterinsights-styled-checkbox:after{right:2px!important;left:auto!important}.monsterinsights-admin-page .monsterinsights-license-type-text{color:#777;font-weight:700;margin-top:16px}.monsterinsights-admin-page .monsterinsights-license-type-text a{color:#777;font-weight:400}.monsterinsights-admin-page .monsterinsights-dark{color:#444;text-transform:capitalize;font-weight:700}.monsterinsights-admin-page .monsterinsights-settings-block{background:#fff;border:1px solid #d6e2ed;margin:25px 0}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block{margin-left:10px;margin-right:10px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-title{border-bottom:1px solid #d6e2ed;padding:16px 25px;font-weight:500;font-size:14px}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-title{padding-left:15px;padding-right:15px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-title:before{display:none}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content{padding:25px}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content{padding-left:15px;padding-right:15px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content p{font-size:14px;color:#777;margin-top:-5px}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content p a{color:inherit}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-settings-addon-upgrade{padding:25px 25px 25px 22px;margin:-25px;border-left:3px solid #64bfa5}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-settings-addon-upgrade{padding-left:15px;padding-right:15px;margin:-25px -15px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-settings-addon-upgrade.monsterinsights-settings-addon-disabled{border-left-color:#f5c953;padding-top:15px;padding-bottom:15px}.monsterinsights-admin-page .monsterinsights-settings-input-radio>span{display:block;margin:2px 0 17px}.monsterinsights-admin-page .monsterinsights-settings-input-radio>span:last-child{margin-bottom:0}.monsterinsights-admin-page .monsterinsights-settings-input-radio input[type=radio]{opacity:0;position:absolute}.monsterinsights-admin-page .monsterinsights-settings-input-radio label{color:#444;font-size:14px}.monsterinsights-admin-page .monsterinsights-settings-input-radio label small{font-size:14px;color:#777;font-weight:400}.monsterinsights-admin-page .monsterinsights-settings-input-radio label>span{vertical-align:middle;font-weight:500}.monsterinsights-admin-page .monsterinsights-settings-input-radio label:last-child{margin-bottom:0}.monsterinsights-admin-page .monsterinsights-settings-input-radio label.monsterinsights-styled-radio-label-disabled{pointer-events:none}.monsterinsights-admin-page .monsterinsights-settings-input-radio label.monsterinsights-styled-radio-label-disabled .monsterinsights-settings-radio-text,.monsterinsights-admin-page .monsterinsights-settings-input-radio label.monsterinsights-styled-radio-label-disabled .monsterinsights-styled-radio{opacity:.6}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-styled-radio{width:20px;height:20px;border:1px solid #b2c1cd;position:relative;display:inline-block;border-radius:50%;margin-right:16px}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-styled-radio.monsterinsights-styled-radio-checked{border-color:#509fe2}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-styled-radio.monsterinsights-styled-radio-checked:after{left:2px;right:2px;top:2px;bottom:2px;position:absolute;content:"";background:#509fe2;display:block;border-radius:50%}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label{color:#444;font-size:14px;margin:0}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label.monsterinsights-styled-checkbox-faux{cursor:default}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label.monsterinsights-styled-checkbox-faux .monsterinsights-styled-checkbox{background-color:#dee5e9}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label.monsterinsights-styled-checkbox-faux .monsterinsights-styled-checkbox.monsterinsights-styled-checkbox-checked{background-color:#b9d8f3}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label input{display:none}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label>span{vertical-align:middle}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label:last-child{margin-bottom:0}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox{width:27px;height:18px;position:relative;display:inline-block;border-radius:10px;margin-right:9px;background-color:#acbdc9}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox.monsterinsights-styled-checkbox-checked{background-color:#509fe2}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox.monsterinsights-styled-checkbox-checked:after{right:2px;left:auto}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox:after{left:2px;top:2px;bottom:2px;width:14px;position:absolute;content:"";background:#fff;display:block;border-radius:50%}.monsterinsights-admin-page .monsterinsights-info{color:#b6c9da;margin-left:10px;cursor:help}.monsterinsights-admin-page .monsterinsights-settings-input-repeater .monsterinsights-error{margin-top:0;margin-bottom:18px}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-labels label{color:#393f4c;font-weight:700;margin-bottom:6px}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:18px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row>span{width:100%;margin-right:18px}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row button{padding:0;border:none;background:rgba(0,0,0,0);color:#dc3232;cursor:pointer}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row input[type=number]{width:calc(30% - 20px);margin-right:20px;margin-left:20px}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row label{margin-top:0;margin-bottom:0;width:calc(70% - 20px)}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row select{width:70%}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row.monsterinsights-disabled-row{opacity:.5}.monsterinsights-admin-page .monsterinsights-dimensions-count{color:#777;font-style:italic;font-size:14px}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-settings-input-repeater-labels label{margin-bottom:0;width:auto}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-settings-input-repeater-labels label:first-child{width:calc(70% - 20px)}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-button{margin-right:25px}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-error{margin:0 0 20px}.monsterinsights-admin-page .monsterinsights-settings-input-select .monsterinsights-dark{margin-bottom:5px}.monsterinsights-admin-page .monsterinsights-settings-input-select label{margin-top:-4px}.monsterinsights-admin-page .monsterinsights-collapsible .monsterinsights-collapsible-content{padding-left:30px}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-collapsible .monsterinsights-collapsible-content{padding-left:15px}}.monsterinsights-admin-page .monsterinsights-collapsible>p{margin-top:0}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible{color:#b7c9d9;float:right;font-size:22px;padding-left:20px}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible:hover{color:#393f4c}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible:focus{outline:none}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible i{cursor:pointer}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate .monsterinsights-dark{display:block;margin-bottom:9px}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate label{margin-top:0;margin-bottom:4px}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate p{margin:2px 0 17px}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate .monsterinsights-ua,.monsterinsights-admin-page .monsterinsights-settings-input-authenticate button{margin-top:14px}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate .monsterinsights-manual-ua+.monsterinsights-error{margin-top:15px}.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-auth-actions{margin-top:18px}.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-auth-actions .monsterinsights-button{margin-right:20px;margin-top:0}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-auth-actions .monsterinsights-button{margin-bottom:10px}}.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-settings-input-toggle-collapsible{margin-top:12px}.monsterinsights-admin-page .monsterinsights-auth-manual-connect-paragraph{padding-top:5px}.monsterinsights-admin-page .monsterinsights-auth-manual-connect-text{color:#999797;font-size:12px;text-decoration:none}.monsterinsights-admin-page .monsterinsights-auth-manual-connect-text:hover{text-decoration:underline}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade .monsterinsights-upgrade-icon{margin-right:25px}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade .monsterinsights-settings-addon-message{margin-right:25px;width:100%}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade .monsterinsights-button{font-size:12px;padding:6px 16px}.monsterinsights-admin-page .monsterinsights-icon-warning{width:48px}.monsterinsights-admin-page .monsterinsights-icon-warning:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAMAAADVRocKAAAAllBMVEUAAADV4u3V4u3V4u3V4u3V4u3V4u3V4u3V4u3V4u3V4u3V4u2KpLj///+etMW0xdKqvs6ascPG1eKww9PO3OmVrb+LpbnR3+qRqr3U4ezA0d60x9atwdGPqLyNp7rT4Oy8ztzBztmiuMnx9PfJ2OXW4ObL2ua3ytilu8v7/P31+PnT3eXC0t/r8PPo7fHe5uvR2+OftscAs3DjAAAAC3RSTlMABtDHbvQb+ctt0f3LxK8AAAIoSURBVGje7drZbqMwFIBh05Au4wPBYPa1TPak2/u/3NAME6lzSMHGvqjk/zJI/sTiSLZMCLHsxZJqaLmwLdJ1f0e1dXdPiIXGVypY5Ilq7YksqNYW5IFq7YFQzRnAAAYwgAEMIAxwP2t2TbZOKWo+wHdtCH0VK3zFQPYRwdfCgqsDMgYDVUWsBuAt3ChpVABZCbfbx7OBPILvYnwmUMBI4XYWEMBoIZ8BNDAhVksD6wqm5MkCKf78g83bOUS/ZpJAjkZ6d7qOLnoNtRQQowmwci69ROjGpAD8Bb05f0O3UMYSQF0i4LUHPHQllwAaQJ16IMSTQQJoMeAenM/eAbcWBtIKcN6xG38zdCUXBnwYqvRWLgzVCgM5CBUKAx6giudLq0GhFgXwO2ZOX2fjuCiAH7X7Dxi8hbVuwJ8PJEelQAtYYL8VPiIPBvoGiEWBXAxIqChwFgNcYSCOhIBAGKCuEOCLAzs0yPPmcAFeTwy/AmEAPyPmXDuhvykJgO7RTL62ga9FWxlgHU0GPCoO4LlWvjh9h/9ec8XlgDiBaeVUDqAZTMpNZQFawIQSTqWBtIXRKn/OAqT+GB3/PG8Jle5Hno8/e5UZRHA7tlWwTvZDuFFUpEpW+nVQwlDMV7ZXEQ8QbqZ0t6Vu9glci1iw1bBfxJs88Dwv2PkppT9zx8sAnxnAAAag1AAGEE/3oYGl/mMPNtWarfnoyS9L++GZLst+1HP859G2CPkDRZCgO+Q/ERIAAAAASUVORK5CYII=)}.monsterinsights-admin-page .monsterinsights-settings-network-notice{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-bottom:20px;border-bottom:1px solid #d6e2ed;margin-bottom:15px;color:#777}.monsterinsights-admin-page .monsterinsights-settings-network-notice .monsterinsights-bg-img{margin-right:25px}.monsterinsights-admin-page .monsterinsights-settings-network-notice .monsterinsights-network-message{width:100%}.monsterinsights-admin-page .monsterinsights-undo-redo{float:right;margin-top:16px}.monsterinsights-admin-page .monsterinsights-undo-redo button{border:none;background:rgba(0,0,0,0);color:#509fe2;padding:0;margin-left:5px}.monsterinsights-admin-page #monsterinsights-license-key-valid{-webkit-text-security:disc;text-security:disc;-moz-text-security:disc;font-family:text-security-disc;font-size:25px;line-height:1.2;color:#b7c9d9;padding-top:7px}.monsterinsights-admin-page #monsterinsights-license-key-valid::-webkit-input-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.monsterinsights-admin-page #monsterinsights-license-key-valid:-moz-placeholder,.monsterinsights-admin-page #monsterinsights-license-key-valid::-moz-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.monsterinsights-admin-page #monsterinsights-license-key-valid:-ms-input-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.monsterinsights-first-time-notice .monsterinsights-notice-button{margin-top:20px}.monsterinsights-settings-blur .monsterinsights-settings-content{-webkit-filter:blur(5px);filter:blur(5px);pointer-events:none}.monsterinsights-settings-blur.monsterinsights-path-general .monsterinsights-settings-content{-webkit-filter:none;filter:none;pointer-events:auto}.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-license-button{line-height:1;margin-top:20px}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input-authenticate .monsterinsights-button{margin:0 20px}.monsterinsights-not-authenticated-notice .monsterinsights-dark{font-weight:400;margin-bottom:20px}.monsterinsights-pdf-exports-settings .inline-field .monsterinsights-button:first-child{margin-left:0}.monsterinsights-admin-page .edd-logo,.monsterinsights-admin-page .memberpress-logo,.monsterinsights-admin-page .woocommerce-logo{background:url(../img/woocommerce.png) no-repeat;background-size:contain;width:156px;height:31px}@media (max-width:767px){.monsterinsights-admin-page .edd-logo,.monsterinsights-admin-page .memberpress-logo,.monsterinsights-admin-page .woocommerce-logo{margin-top:18px}}.monsterinsights-admin-page .edd-logo{background-image:url(../img/easy-digital-downloads.png);width:194px}.monsterinsights-admin-page .memberpress-logo{background-image:url(../img/memberpress.png)}.monsterinsights-admin-page .monsterinsights-logos-row{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;border:1px solid #d6e2ed;margin:40px 50px 60px;padding:25px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-logos-row{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-left:20px;margin-right:20px}}.monsterinsights-admin-page .monsterinsights-logos-row .monsterinsights-box-title{font-size:13px;font-weight:700;color:#8aa4b8;position:absolute;background:#fff;padding:0 10px;top:0;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);left:50%}.monsterinsights-admin-page .monsterinsights-upsell{background:#fff;border:1px solid #d6e2ed;text-align:center;margin-top:25px}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell{margin-left:10px;margin-right:10px}}.monsterinsights-admin-page .monsterinsights-upsell h2{font-size:20px;color:#393f4c;margin:36px 0 14px}.monsterinsights-admin-page .monsterinsights-upsell h3{font-size:18px;color:#393f4c;margin:0 0 14px}.monsterinsights-admin-page .monsterinsights-upsell h4{font-size:18px;color:#4c6577;font-weight:400;margin:0;line-height:2}.monsterinsights-admin-page .monsterinsights-upsell p{font-size:14px;color:#4c6577}.monsterinsights-admin-page .monsterinsights-upsell .monsterinsights-upsell-top{padding-left:10px;padding-right:10px}.monsterinsights-admin-page .monsterinsights-upsell-bottom{background:#f7f9fd;border-top:1px solid #d6e2ed;padding:36px 50px 30px;position:relative}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell-bottom{padding-left:20px;padding-right:20px}}.monsterinsights-admin-page .monsterinsights-upsell-bottom .monsterinsights-button-top{position:absolute;top:0;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell-bottom .monsterinsights-button-top{min-width:288px}}.monsterinsights-admin-page .monsterinsights-upsell-bottom img{max-width:100%}.monsterinsights-admin-page .monsterinsights-report-ecommerce:after{background-image:url(../img/monsterinsights-report-ecommerce.png)}.monsterinsights-admin-page .monsterinsights-addon-ads,.monsterinsights-admin-page .monsterinsights-addon-amp,.monsterinsights-admin-page .monsterinsights-addon-dimensions,.monsterinsights-admin-page .monsterinsights-addon-eu-compliance,.monsterinsights-admin-page .monsterinsights-addon-forms,.monsterinsights-admin-page .monsterinsights-addon-instant-articles,.monsterinsights-admin-page .monsterinsights-addon-media,.monsterinsights-admin-page .monsterinsights-addon-optimize,.monsterinsights-admin-page .monsterinsights-addon-performance,.monsterinsights-admin-page .monsterinsights-addon-scroll{width:48px;padding-top:110%}.monsterinsights-admin-page .monsterinsights-addon-eu-compliance{padding-top:100%}.monsterinsights-admin-page .monsterinsights-addon-eu-compliance:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAF8AAABfCAMAAAC5kuvHAAAAWlBMVEUAAACtvcitvcitvcitvciduM2tvcitvcitvcitvcitvchQn+KtvchQn+JQn+JQn+KtvcitvcitvchQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+KtvchQn+KLGAvfAAAAHHRSTlMAIu53RBG7qogzme7dIpkzzGZVzKqIZnfdu0RVXT0ICgAAAsdJREFUaN7tmd1ymzAUhAEjMMYCJ/wT6f1fs4QWH4OwN3StmV70uzMzWRF5vaszCg6ShYFPMhOpwCOpMR+BP0JjzDXwRRgnZuKc+dii8BaZO1Hyltd9/BSbRyLFe+pqssePp0f5mPCU6KXbByLPe+o6Ca3/8fOiH/OeCue3TVcLfCz6Gecpld7MnWtyX+OyPPvkPJWZFaflefKtMr8t8hT+agX5kiMTnVR4mR5BT+EFXPngfFbzrlw+gacOLAA21fUURnZWttrF9ZSP93c9JeA/A7+cjaeOcJvePA6/VwGmE08d258knq2Sgv1xPIUSmScLQSJ7OAFIIns7AUgi8ycAmMj8CQAmMn8CwImMAScAkMgHQGl9IuRBWh9INN22+kBaH0zkcbATw/gXaY3fX3W9/UPfKZjWBxO5LOyKogRpfSiR28o6VC1I658msm5yu0veaJTWGF3bF9Q64Chz+5K85PQLCyg4/coCqn9E/0n11k/3Xf9eugYlDKq3eCI/+UbNCxSghEH1Ns/kJ77sRAdKGFRvuy8ve9eCEgbV+7UvL1s3ghIG1asXmwz78laDEkbVWy2/omZXvkcljKq3uZuw2ZG3DShhWL2lmKRx5e0IShhXVy4p1jjyOSphXL2FlQW6jbwtUAnj9y+dHBZ5O8ISxtVbywJb+QqXMB6GSmmSbSKVYGT62TBUywJr+ZoZmQQtXSjy8tvlaZcF2lUddIwmbpk6eBtq73zleIGYT3VuN/SKmE/xOSgv3zyf6n719vrt86kaRH5QPubTLrczeedpPlXNXCnKx3wq89f/+RRAz6cIej7FsPMphp1PMdR8KmmKyUJQjSBNAcz9C4C/f8Hw9y8ufu5fBD/3L+IVP/cv4hU/9y/iFU/3L65X+PsX4BX6/gV4hb5/AV7h719eeoW/fwFeAYlJtysP6RW+XXkIr9DtykN55RdZztdXJmO7xAAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-ads:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABmCAMAAAADH2QXAAAAV1BMVEUAAABQn+Iuf75Qn+JQn+Iuf76svcmsvclQn+L///+LpLesvckuf743iMhzsujc7PmKv+xMm97o8vvz+f2izPDQ5fd/uepcpeSt0vGWxe652fNnrObF3/Xl1C/0AAAACHRSTlMA7OajHEnmSn/UIZcAAAF/SURBVGje7dkNb4IwEAbgFlCvWymVb3D//3fu2oUQiRGh1wzNvYmE5kwfyxFsgniYU6KTU0BhNYnWOgkorEa7bC98KpClEpbRLoAJK8g0w/lx+lgAEplIISYAqZBxASkgLgAPgGuu/5Jf9xTWgVxPyfcU1gE9Z3vhECug7gFtGGAAgIHNgC3V05Q2DLBqNTYIKNeBMghQL4SBKUVTKMw8LkiByuBoUHNGAEsJjMubqgYwlEDrh300oPKjacrGmvZGC4yuA/jxjR3AhRYwOJ1bRY3nPdADpb/+LcANBx1ANxhaoHc/frT+GhV4/FGKtgcGptSq8YxqiYDlA7PzN1Tb9EAJ1DCnUZa+yTeAVmGqDmDAIzlgsK3TUmp03Bo6ymdR1RSLR2hR4em7/R+8KfDKruLY+6IXdnZH35sywAADDDBwDEBC1EiRQtSkIou6BJnNLyjo419QLPJNkLsJPw84h89/fgpcgoXzRezM112efJEBBhhggAEGGGCAgX8BfgF9zfCNw+tX7wAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-amp:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABmCAMAAAADH2QXAAABAlBMVEUAAABQn+LW4upQn+JQn+JQn+JQn+JQn+LW4upQn+JQn+LW4upQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+LW4upQn+Ksvcn///+vv8uyws1SoOLT4OnF091WouLO2+PH1d69zNa3x9K6ydS0xNCw1O/L2OFNnuDC0dvAztjQ3eZqreTI1t9ZpOL5/P7r9PqdxueLvOZ5t+VjqeRWpOCdyuyoy+d1suT1+v3m8fjb7PfO5fTF4POo0O6hzezL3enK3OmKwOiCvOdwsuRmrOHz+fu52fG+3PDI2+nD2OmtzuiYw+aIu+VeqOGYxumXbKjeAAAAHHRSTlMA9PEaFPz4z612TycFzHHalI9ZKWlm7be2JeyNLqjzBwAAA2ZJREFUaN7s2OlSo0AQAGAwh+LmMPHend62sCj/pPKDIiYhpzExmnitq+//KkLUKmZ6EIbhp98DdBfdPT2Aoa3YbBzXj8rlo/pxo1k0clasVYFTreWZo/DHBMLcK+QUvmKZIGValTzin25DrO19/fi7JnzD3NWNf1iCb5UO9eIfQKIDrfqUIFFJo0r7svr3J0OhD5k7XZHNT7uDd+IsZZ1WCyRaiAMQWBnPr6xALuLEI8O6OdO/draYkv+yAl0hzhwQ7YXxFcOzGweoO0Rs2SAqB5tvhynqyjuMeAtUzTC2mCIXqDkG+kBVDYMpWgLlYaDjgkRBOcFI2uHA9BUkmsoJekCsMPRobwCvoZxgTB/gEkPTRSvwsAbOiXICH0QLjJoDp66cgJyCAUZNB8JhjiS4OPsb6+yCfSIFusaoNQgiCbj4JENcgj5GzchZVktAS+TcYwRdqL+VS+STLR1Bt0Vdd0z7D8Fszhcfk3rZBtGJ9kGzQ84MY7ZRI8uqoPzNE1znsiqWILHqhNtuAFSBNDmxz27MfYPDpHUtxKcZ4i+ct7DDNlA11QTyK9MJT/MKQHZlKpZIful7V4iPbQDppc+UPZFHsBHRgw362sLUvYDgVd5hsIxsCc7FQbrFe65A3Ksjy+BZKNJwspYV6DQIT5qcrs//7LSv7wpjyi3tbpoPEJ0ErGun/IRSL9FXlZyUH4Esq2c33Wcsy+z8xQGpMvchzjQ89ZzkXwlMy03XTfoZwnQtR72x79m25497o6JBsFwZPwne2y+jFYlBGIoufSrMLwxiUSRRxIr//2+7YKdbGmde5oZhoHlrhXvI1Zh4AT4DCH6NyS4cS9UANDb/sXg0wC9dWSAwABeNDHIwQE1mFAkFqHbc1jII4A72MxHxrg8CxN2S5jqx/SFtQG2yfzhSDklR14cAtg04KTpYHXihD74qUgf4uxIgbHV71wIUkQAYQB3g1AB8dmg1p3DvAXoV8wtAeA/QReILQNbOIGvvQcWeIgnA1EF56p7FVrJcSaC7qDwzz2NuU3lYsqgzbD9om37EdTTjB/omI3syt4c9+y8CTxULUyE+fDvoXCQj6E52NuvOpqmqTtdm1X0fFKf2wkmRSv7SN9oFuAAfB0xI/WkAmJGAeQC4TcAEbj8jwgxCTPNI/xcIan5QyH2lWAAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-instant-articles:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABmCAMAAAADH2QXAAAA+VBMVEUAAABQn+JQn+LW4upQn+LW4upQn+JQn+LW4upQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+LW4upQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+LW4upQn+Ksvcn////L2OGvv8vAzti0xNDG1N7T4OhXo+NPmtzC0duKvObI1t+3x9LL3emqzOhVoOJPneCaxOZrrOSGrtfI2urQ3eZ1suRjqeOkwN+9zNb6+/3i6fK/0ue3zOSxx+HH1d6YuNtVmtlbmtV7pdN3o9PW4u/D2Omgx+e7z+TO2+OuxeGTtNnv8/rY4/DT4Oycu9x6qdmToCJeAAAAH3RSTlMA8xrwz612TycF9sxxE5SPWSn58+1pZhbb2Le2JfGNzELbBwAAAsdJREFUaN7tmF1f2jAUh1OwKIKCiDCdW0J5LRQo410UmeLm1L1+/w+zWrefLSdpmya9YOtzBxf/p+ScnJAiYcr53NlpsVAonp7l8mUkmYNshrjIZA8kxifeKwSwf5iQFJ9OKYSKkkrLyD/fIUx2jsTzd98RD5Rd0fwS8aEkln9CfDkRWh8SAIFVOlKCCJTQlU4z++fDeODspbDdmiIsJkviJBVy/zIX6EK7dS+Svaf31CTmwiAMfmor4ubwOZ8zHvcHzOfX1ptzyZp8KuZkyM6/Al9mEUryCkb0/llpmvYJfJ1BCHPSp+dfaxZtAkhwC0xq/oNm8ZVA8twCg/n8Vo9CctyCGSV/Yuc/EApvuQVzkNFe2vmXa5rgDbdAB/k/tBfBL+rEcwg+1ipMak38B5D/WXOzsR0cAmc+NAABM3/p7NYCt0B3538H+U/ESdEhaPouESyyBliBIou0KVRdCLep4Sl4Et9oJqHRvrTzb+CokDTs7hj5JAH2gUedPcb1lWYxJt7j2sr3NrAPnDVrmGa5BOwj8/r1+cGRCfYBe4mYfXT7mg8PfczNBMy7G/u0hCiJUAJYBUY+SaFwgtZos0fv6NeQdEgBvncv0rcxoaGcIwuwDwLV2eT4+w7aNNDQ/hLkAiIi8DeUEBA0gy6RjakHvATisNyPgl1jcWhawwGhsu+6iGMBJobu/yoBC9EfjvxehmBR+qYxm+uDgT6fGWYZAbBUUCyIBf+UYFr1QIKg7j23W2IC/9OnIyyoeFPfTkGtt6gvFo3IBPWXyjajqkEV40gFCxyx4BHbtFqdiAT4mU4jsi5q2I9fqUQrqMYChqDR7Xardg26Fj35gh52ErmgEbWgErFguo1dFAtiQSyISFDzFogf+nVPQW0q/X7waB84fz9txQ0nFsSC/0mQxBI5RhBVpkBFkD2JPyG5h2gG9VjS+qi0/N+iC9OxZrJwlgAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-media:after{background-image:url(data:image/png;base64,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)}.monsterinsights-admin-page .monsterinsights-addon-forms:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABmBAMAAADG74kWAAAAFVBMVEXW4urW4urW4uoAAADW4uqsvclQn+ITLWFyAAAABHRSTlPsoxwAEnMmfgAAAIFJREFUWMPt2LEJgDAUBNCvOICFAwhu4AQKP06QbCDuP4J9sPCKwOm/KwOvusCHs3V0IN1is0PpbcLAbgMGNnMwvwGp1MmPj7EBYXGEgLA4QkBYHCFI5VVybEBYHCEgLE5AQEBAIAQgPIqE4LjqnAJtwNe+RlMAz0XwIAVPXvCodgNhA6kmkI3HfAAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-optimize{padding-top:100%}.monsterinsights-admin-page .monsterinsights-addon-optimize:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAF8AAABeCAMAAAByzjhiAAAAkFBMVEUAAADW4utZo9+bxObW4utUod/W4utUod/W4utUoN5ToN3W4utUod/W4uvW4utTntpTntpUod/W4uvW4uvW4utTntpUod/W4uvW4uvW4uvW4utTndnW4uvW4utUod/W4uvW4utUod9QlMtRl89Qls1RmNFSmtNPk8lPksdSm9VOkMNRmdNSnNdTndlTnttUoN4GbpBuAAAAIHRSTlMAAgcM4/fvwLNVRvnULikb5+bRxbyil5SSi4BySTw4Jgr331EAAAGYSURBVGje7dJXbsQgFIVhPJ7qTEnvxb2Msdn/7gKOIiJ7AMkcXiL+BXxHiEvULXabVTK7m8dPoi3iuF37UMPvEvtW6oFTgmiv9DcJpEjBBwmmjep2ElDe9773ve9973vf+zP9YFSI9MPXq3h+KTP4B65bVNVM63/FdlVn3QAJ1ta+boC8x/b+uWJKf2vv6wbI2t7XDZAY4ItS5tQXA079uk6ZQ7/m5cyZXw9lzIkveLFQVRnD++ngD7wcwPr1r5+mBcP7kue1cF/yQ6UTvxK+HED6Iz7PS6w/5vOsgfojnvtZg/XHfFZQpD/li4Li/Akv/LZD+bn0//Bt2eH8Kc/9sgP5Cr5seow/+dvih2+aHuZPeeHTHuGreUp7iC8vc8TTzt7PFHwjeIQ/OR3JQ3w1j/F1POB/C8XpUMEjfB1/DfA1fP8G8BWXOfgLgK/hI2Lvt4rT4fyOIHwV/3AiCD+4nLAhPrmc973vfe//d3/p2H+25LcG/2jpfxBD91b8bWDyQ5sfWIfE2GI7m78TvLnjy5w3LJ8OZvobpmnKQFwgNYcAAAAASUVORK5CYII=)}.monsterinsights-admin-page .monsterinsights-addon-dimensions{padding-top:105%}.monsterinsights-admin-page .monsterinsights-addon-dimensions:after{background-image:url(data:image/png;base64,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)}.monsterinsights-admin-page .monsterinsights-addon-performance{padding-top:105%}.monsterinsights-admin-page .monsterinsights-addon-performance:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABlCAMAAACFixa5AAAA8FBMVEUAAADW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4uqsvclQn+KwwczT4erK1+DR3+rH2+m91ulkqeNbpeN2suRnq+PJ3OmKvOZ7teViqON4s+R0seRWouPC0dvL3emOvuaAt+WXwuZuruRgqOO6ydSuzujL2OKT9JW9AAAAMnRSTlMA4dIH+kUD8u3kDNZoShiYfeiQg2I/DsiIJhRPLfTexcG8s65vIBza0KReuYx3WFU2dMplGNoAAAPgSURBVGje7ZnZetowEEaHesMsBrOvIWwhpOk2UFqaNE3a0CZd3/9tataxIwnZRL7o15wbjC7+g6XxSJ+B8Gj1crOUyWReNY16CtSivSp0bfST7GQ0UEY9jRxOT0ARlQRySauaqDco4IUiQRcFdBQJnqGAxJPgSfCfCMxsX0cRfQMeSSNv415GUZqqlh28dMBHKm+hFDuoGJYGZRO4lG1E1HOkaCYwFGmD7ji3GngNHFptXGEV113Y6WNoxo31FGzvuM0xNI5wi5sxAbJJjIBdBjBLNn13mGLpBm66WcRo6MXsaaCTP1z7IiomBwEMVM4Z+HBcVI41BKKHMdChx6GEcUBnAieJUZndXU79XP5GFr21EYwxMt+nD/iJHI43LQKjczF9CPJ4uRJUMTqfwwmOtEMfgbtwAix5gud4ALOP4QRpgBYexOxLKAEakMMDDTehBDmwUcb7DzOu4T6MIA0WSvhwOb2Y87y3YQQj6MryF8vHaM7Plwv6kJXne3yeC/LliwwFyfxMeYb3Icu0AB6ZpCSfDEz+1c0+QXKwPf4khfmEb6Vnu/xvu0tOfL5CR4qiJc4nA5u/W4xLQTwpztvC/Ivt56ftQ0z5nuHH8vpaFE+c6IL8u9kNGZh8z3C/WFzPgl2U4n0CQf61ry1cfQpcC7GAgWnbV5TvN8yZfC4OEIKdn/ID876g2doH7/SbxwD3lB8wsPnv3k4mb99hgCaw1DgN/5qzxVDFfl3HevmeQXSsI3LMyeT2O2cTo/w/m9jJCgyQCSHwz8HXXX+grvF++cujCGoowkvaGih/9muyR3AmX2TCS9gabqnrefkBgXyRB0gEa2NChvvFjzlZxQIDWF4hQbXBTZAL6sDS4gUcKNA1YEkpFBwBi3mmSwS0MFKBm2VXII0oEdDCCAVENahoniLKBNJBscKoIioXkOKki6hWQBwPASojjE+AdgOKGKcACzCKV2CDFa8AIR2vIAH5eAU1cPR4BNRWx3EKnlObjkdQBo9xfIL+ulewlUqNky6lgyz6ZmN7gQzU+ulSPsiW0BrtFGPhKLXbjnWMAb3M/FOmlhoQ5jEq51nwnXkSFWPVIUAWA1RtjIjbYd6mid8tuyXTiThpxw68tAMbzUPM3m71zyvL74VIC2ouj25FfeczgaFS3fSnFqwxEqELfluQ9c2v7DSAgzaouolelgZStTaGoF301YvRs91uyYSQnOR0lKAXHHgMw8LeAk6eD+GxaGdChVXS/oF/Ap8ETwIlCLfskSLBGAX0FQkMFFAGReSQyzmowuT1besFKKRiDHLP0661SnbTvULGSEEspKLm/gXsGeljiPFFoAAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-scroll{padding-top:105%}.monsterinsights-admin-page .monsterinsights-addon-scroll:after{background-image:url(data:image/png;base64,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)}.monsterinsights-admin-page .monsterinsights-upsell-large{padding-bottom:35px}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell-large{padding-left:10px;padding-right:10px;line-height:1.2}}.monsterinsights-admin-page .monsterinsights-upsell-large h3{color:#4c6577;font-size:18px;font-weight:400;margin-top:33px;margin-bottom:14px}.monsterinsights-admin-page .monsterinsights-upsell-large h2{font-size:18px;margin-top:0}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-coupon{color:#509fe2;border:1px dashed #509fe2;padding:7px;margin:0 7px;vertical-align:middle;line-height:1}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-features{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-flow:wrap;flex-flow:wrap;margin:30px auto 25px;max-width:525px}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-features span{display:block;width:33%;color:#393f4a;font-size:14px;text-align:left;margin:10px 0}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-features span:before{content:"";background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAElBMVEUAAABQn+JQn+JQn+JQn+JQn+KxowiZAAAABXRSTlMARO4idxyyls4AAAAySURBVAjXYwABoyADBhgQDRWgKttQUFDQNdQRSBowqIbCgAJDKBwEIIsjq6eFe5D9CwCWPRV/mairZAAAAABJRU5ErkJggg==);width:11px;height:11px;background-size:contain;display:inline-block;margin-right:12px}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .settings-input-license p{color:#444}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .settings-input-license p a{color:#509fe2}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-smile{display:inline-block;width:16px;height:16px;padding:0;vertical-align:middle}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-smile:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAYFBMVEUAAAD/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE1mRQDuvkTSpDZ7VwqgeB2bdBqvhiV+Wgx2Uwj4xkn3xUnfsD3KnTKziSeLZhOFYRBnRgD04bLqAAAADnRSTlMALPrz8dvSp6SXYxMNONmrFGwAAADrSURBVDjLhZPploMgDIVjqQjY3hS12r3v/5bDjFGH0gPfH+4JS0IW2mid0QpQ2riWUqpmh5VdU1HMweIDe4iu10io/z1y3OML++N6X/aTE5X4l/dT6jkOCyHF/jmAcAIS+eukET1wJ/ZTx4MYG6JW8uOZuZ9lH6SXjLXkMHMO1m6WXZBnMTsy+QOGNHIuoEkhFyQUxX9LJaEAKWRRpJFFk0EWQw7C/YaV2x2CW1ONx3vwVwSufng/sKR6K9ZlZOZpHKewjJelWFG5nyw8t3LHDeP71zS9eo8FW2y5UtMW2748OOXRKw9vcfx/ACZnLYWsWc2gAAAAAElFTkSuQmCC)}.monsterinsights-admin-page .monsterinsights-affiliate-tracking-upsell{margin-top:30px;background-color:#fff}.monsterinsights-admin-page .monsterinsights-affiliate-tracking-upsell .monsterinsights-aft-upsell-head{border:1px solid #e2e4e9;padding:0 24px}.monsterinsights-admin-page .monsterinsights-affiliate-tracking-upsell .monsterinsights-aft-upsell-content{text-align:center;border-right:1px solid #e2e4e9;border-left:1px solid #e2e4e9;border-bottom:1px solid #e2e4e9;padding-top:32px}.monsterinsights-admin-page .monsterinsights-affiliate-tracking-upsell .monsterinsights-aft-upsell-content h3{font-size:24px;margin-bottom:30px}.monsterinsights-admin-page .monsterinsights-affiliate-tracking-upsell .monsterinsights-aft-upsell-content .monsterinsights-affiliates-promo-logo{background:url(../img/affiliates-promo-logo.png) no-repeat;background-size:contain;width:210px;height:201px;margin:0 auto}.monsterinsights-admin-page .monsterinsights-affiliate-tracking-upsell .monsterinsights-aft-upsell-content p{max-width:507px;font-size:16px;margin:25px auto 0}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-affiliate-tracking-upsell .monsterinsights-aft-upsell-content p{padding:0 15px}}.monsterinsights-admin-page .monsterinsights-affiliate-tracking-upsell .monsterinsights-aft-upsell-content .monsterinsights-button{margin-top:25px;margin-bottom:44px}
|
1 |
+
@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap);.monsterinsights-dark[data-v-3b9e68c1],.monsterinsights-dark[data-v-97789704]{display:block}.monsterinsights-addons-navbar h1{display:inline-block;font-size:16px;line-height:48px;font-weight:400;margin:0;color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters{float:right;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;margin-top:10px;width:258px;position:relative}@media (max-width:750px){.monsterinsights-addons-navbar .monsterinsights-addons-filters{width:calc(100vw - 200px)}}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]{height:28px;margin-right:0;padding-left:10px;padding-right:28px;font-size:14px;border-color:#d6e2ed}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]::-webkit-input-placeholder{color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]:-moz-placeholder,.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]::-moz-placeholder{color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]:-ms-input-placeholder{color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters>i{position:absolute;right:10px;top:5px;z-index:10;color:#b7c9d9}.monsterinsights-addon-not-available .monsterinsights-addon-status span,.monsterinsights-addon-not-installed .monsterinsights-addon-status span{color:#777}.monsterinsights-addon-inactive .monsterinsights-addon-status span{color:#d4393d}.monsterinsights-addon-active .monsterinsights-addon-status span{color:#64bfa5}#monsterinsights-addons{width:770px}@media (max-width:782px){#monsterinsights-addons{width:100%}}#monsterinsights-addons .monsterinsights-addons-area{margin:0 10px}#monsterinsights-addons .monsterinsights-addon-active .monsterinsights-button,#monsterinsights-addons .monsterinsights-addon-inactive .monsterinsights-button,#monsterinsights-addons .monsterinsights-addon-not-available .monsterinsights-button{background:#f9fbff;border-color:#d6e2eb;color:#8ba4b7}#monsterinsights-addons .monsterinsights-addon-active .monsterinsights-button:focus,#monsterinsights-addons .monsterinsights-addon-active .monsterinsights-button:hover,#monsterinsights-addons .monsterinsights-addon-inactive .monsterinsights-button:focus,#monsterinsights-addons .monsterinsights-addon-inactive .monsterinsights-button:hover,#monsterinsights-addons .monsterinsights-addon-not-available .monsterinsights-button:focus,#monsterinsights-addons .monsterinsights-addon-not-available .monsterinsights-button:hover{background:#fff;border-color:#c4d6e2}#monsterinsights-addons .monsterinsights-addons-no-results{margin-top:25px;padding:0 10px}#monsterinsights-addons .monsterinsights-addons-no-results p{font-size:16px}#monsterinsights-addons .monsterinsights-addons-no-results>div{visibility:hidden;-webkit-animation:loadMonsterInsightsSettingsNoJSView 0s 2s forwards;animation:loadMonsterInsightsSettingsNoJSView 0s 2s forwards}.monsterinsights-path-addons .monsterinsights-navigation-bar{padding-left:10px;padding-right:10px;background:#fff;border-top:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-path-addons .monsterinsights-navigation-bar .monsterinsights-container,.monsterinsights-path-addons .monsterinsights-navigation-bar .monsterinsights-main-navigation.monsterinsights-main-navigation-open{padding:0}.monsterinsights-addons-list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-top:25px}.monsterinsights-addons-list .monsterinsights-addon{width:calc(50% - 12.5px);border:1px solid #d6e2ed;position:relative;background:#fff;padding:0 0 72px;margin-bottom:25px}@media (max-width:782px){.monsterinsights-addons-list .monsterinsights-addon{width:100%}}.monsterinsights-addons-list .monsterinsights-addon h3{color:#393f4c;margin:0 0 -5px;font-size:15px}.monsterinsights-addons-list .monsterinsights-addon .monsterinsights-addon-excerpt{color:#777;font-weight:400;margin:10px 0 0;font-size:14px}.monsterinsights-addons-list .monsterinsights-addon-top{padding:20px 24px;display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-addons-list .monsterinsights-addon-image{border:1px solid #d6e2ed;width:74px;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-item-align:start;align-self:start;margin-right:20px}.monsterinsights-addons-list .monsterinsights-addon-image img{display:block;max-width:100%}.monsterinsights-addons-list .monsterinsights-addon-message{position:absolute;bottom:0;background:#f9fbff;border-top:1px solid #d6e2ed;left:0;right:0}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-interior{padding:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-addon-status{font-weight:700;font-size:13px;color:#393f4c}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-addon-action{-ms-flex-item-align:end;align-self:flex-end}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-button{padding-bottom:7px;padding-top:9px;min-width:120px;line-height:1}.monsterinsights-addons-list .monsterinsights-addon-upgrade{text-align:center;width:100%}#request-filesystem-credentials-dialog[data-v-496d2653]{display:block}.monsterinsights-file-input{margin-bottom:20px}.monsterinsights-tools .monsterinsights-dark{margin-bottom:5px;display:block}.monsterinsights-tools-url-builder p .monsterinsights-info{margin-left:0}.monsterinsights-tools-url-builder .monsterinsights-input-text{margin-bottom:20px}.monsterinsights-required{color:#d4393d}textarea:-moz-read-only{background-color:#f9fbff}textarea:read-only{background-color:#f9fbff}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-tools-info-row p{margin-top:0}.monsterinsights-tools-info-row{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-tools-info-row .monsterinsights-tools-info-label{width:230px;-ms-flex-negative:0;flex-shrink:0}.monsterinsights-tools-info-row .monsterinsights-tools-info-description p{margin-bottom:5px}@media (max-width:782px){.monsterinsights-tools-info-row{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info a{color:#777}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info a:focus,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info a:hover{color:#393f4c}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info i{margin-right:10px;color:#b6c9da}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad{background-color:#0c55da;background-image:url(data:image/png;base64,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);background-repeat:no-repeat;background-position:100% 0;background-size:contain;border-radius:5px;padding:30px;margin-top:30px;position:relative}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad{padding-bottom:50px}}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-title,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-title{font-weight:700;font-size:28px;line-height:32px;color:#fff;margin-top:0;margin-bottom:15px;font-family:Helvetica,Helvetica Neue,Arial,Lucida Grande,sans-serif}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-description,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-description{color:#fff;font-family:Roboto,sans-serif;line-height:20px}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-button,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-button{background:#256ef3;border:0;font-size:16px;font-weight:700;border-radius:5px;font-family:Roboto,sans-serif;position:relative;padding:12px 76px 12px 60px}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-button:hover,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-button:hover{background:rgba(37,110,243,.85);border-color:rgba(37,110,243,.85);outline:none}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-button:after,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-button:after{position:absolute;content:"";right:53px;top:50%;width:16px;height:17px;margin-top:-8px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAARCAYAAADUryzEAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAEJSURBVHgB3VPBbcMwDDxSbgEDfWQEb9Cu0BGMLqBu0L6Dou0j6BjVAkVW6AgZQSP450cSsrIaubErB0jyy31IUbwTJVKECSy+WhtMtVv6+UPpcnnFlAAxfY5CLpfHOBMXIEDJ+Vi2lQhsv8H0up+oou/JXzPcW136zu+7sAktMyPS4KS/vSbIuRTvr/BSl98KfcRhNIrNfTp9cIWExbK1hH8z0JPn9c1qUFkmMSeSJUeB0chGiPKKjcx2IpEs26uKSe5GfF9kRhYGGl7H2K2sa4Z64utbA3G5gif/AkRcgcIpqAn+01TawUEKXbFBaY8sz4htTPaoSewqiRa/FrO46l48BCqcAob/ASVTXz+pYfYFAAAAAElFTkSuQmCC);background-repeat:no-repeat}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-logo,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-logo{position:absolute;right:45px;bottom:40px;background-image:url(../img/pretty-links-logo-white.svg);background-repeat:no-repeat;width:240px;min-height:39px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-logo,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-logo{right:10px;bottom:0}}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-copy-to-prettylinks{position:relative;background:#256ef3;border-color:#0d59e3;margin-left:15px;padding:10px 48px 10px 23px}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-copy-to-prettylinks:active,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-copy-to-prettylinks:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-copy-to-prettylinks:hover{background:rgba(37,110,243,.85);border-color:rgba(37,110,243,.85);outline:none}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-copy-to-prettylinks:after{position:absolute;content:"";right:23px;top:50%;width:16px;height:15px;margin-top:-7px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAPCAYAAADtc08vAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAEQSURBVHgBlVLBccIwENyTPXnwSEwHooLYFYRnxlXQgekgpgNaSAe8eOSTuAI5lUAyDHxAx2mwAcEgj3fGPtne3VufBASwMuNkZd51iKNCHyMamIjUtzPqbfBv8okU7S6FwbS3AQgf5yWh6GWw+c2LpnuLpHl338cNKVZUMEMzkBJIIwDh1AReS6p6b3ezWEIkIp6eUndDOKm7i2Yc4alSw2xZy8MMPeE0z9nX4tz0z+QlXQ2uS/ySLcsm0QViMg9N/Fbs4O2Cgl2gA4R97WuuYEFplwEj0g8NiOjNJ2N9ayCc14cGIklaoftXy9vRge2ImT8vpuyljD05UyWlstjOh9lP293ViRy4UoFKWXszOAInrGJHik+ELQAAAABJRU5ErkJggg==);background-repeat:no-repeat}body.monsterinsights-prettylinks-flow-page{background:#fff}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow{max-width:770px;margin:0 auto}@media (max-width:782px){body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow{padding:0 30px}}@media (min-width:783px) and (max-width:935px){body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow{max-width:700px}}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow a,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow button,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow div,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow h1,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow h2,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow h3,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow h4,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow p,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow span{font-family:Roboto,sans-serif}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow p{font-size:16px;line-height:21px;color:#393f4c}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-header{text-align:center;max-width:680px;margin:0 auto;padding-top:75px;padding-bottom:20px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-header .monsterinsights-tools-prettylinks-flow-header-logo{min-height:56px;background-image:url(../img/mi-and-pl-logo.svg);background-repeat:no-repeat;background-position:50%}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-header .monsterinsights-prettylinks-flow-title{font-size:39px;font-weight:900;line-height:46px;text-align:center;color:#393f4c;margin-top:60px;margin-bottom:18px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-header .monsterinsights-prettylinks-flow-description{max-width:560px;margin:0 auto}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:25px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row .monsterinsights-tools-prettylinks-row-image{margin-left:-35px}@media (max-width:782px){body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row .monsterinsights-tools-prettylinks-row-image{margin-left:0}}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row .monsterinsights-tools-prettylinks-row-description{padding-left:16px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row .monsterinsights-tools-prettylinks-row-description h3{margin-top:0}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard{border-radius:5px;border:1px solid #e2e4e9;margin-bottom:36px}@media (max-width:782px){body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard{text-align:center;padding:30px 30px 0}}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated{border-width:2px;border-color:#338eef}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated .monsterinsights-prettylinks-flow-counter,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated .monsterinsights-prettylinks-flow-counter{background:#338eef}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated .monsterinsights-tools-prettylinks-action .monsterinsights-button,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated .monsterinsights-tools-prettylinks-action .monsterinsights-button{background:#338eef;border-color:#338eef;color:#fff}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-install-prettylinks .monsterinsights-button:after,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-install-prettylinks .monsterinsights-button:after{background-position:0 -16px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button{pointer-events:auto}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button:after,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button:after{background-position:-18px -18px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-status-active .monsterinsights-prettylinks-flow-counter{background:#1ec185}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-status-active .monsterinsights-tools-prettylinks-action .monsterinsights-button{pointer-events:none}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-prettylinks-flow-counter{width:48px;height:48px;text-align:center;background:#b6bcc8;border-radius:50%;color:#fff;font-size:24px;line-height:48px;font-weight:700;margin-left:35px;margin-right:35px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action{padding:30px 0}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action h3{font-size:18px;line-height:18px;color:#393f4c;font-weight:700;margin-top:12px;margin-bottom:0}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action p{margin-top:6px;margin-bottom:0}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action .monsterinsights-button{font-size:14px;font-weight:700;border:0;border-radius:5px;margin-top:30px;color:#b6bcc8;background:#e2e4e9;border-color:#e2e4e9;padding:13px 46px 13px 20px;position:relative}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action .monsterinsights-button:after{position:absolute;content:"";right:20px;top:50%;width:16px;height:16px;margin-top:-8px;background-repeat:no-repeat;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAAXNSR0IB2cksfwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAIRQTFRFAAAA1Nfe09fe1dff09ff0tfe0dXd09je09ff1Njf09Td0tbcz9fbz8/f09je0tfc0tjf1Nje19fXz8/Pz9fX09fd0dfdDl2vDlyvDlyxDlyvDluvDlytDlyvDVyvDVysDFyrEGCvDlyvDlyuDluvDlquDl2vDl2vEGCvEFCvCFivDlyvL0miRwAAACx0Uk5TAN//f3/fgO+/j5BQQBDPoI/PIBAggIDf/39/34Dvv1BAEM+gj5CP7yAQIICE4JwzAAABEElEQVR4nKWQCU/EIBCFH9UC67G1XqAF1FZdV////7Mc07K9YuIjIRPex7zJAEGsKBiSzopM5+nR18jqUWtAybnYBCQg/wEIKXfAhZRleL0cJ7qKACeWB+B6T36FRWAgKopgUt4AOylFCo5EtTGkJ8ifAszf9e2+uqt9xRIgOGcRiPH1ffR9y8mqs1oUYaiH3H/MAIESYljXoPK0QzkDopTWasWK0r3+DDzpTM8LgD7RGtAYYzcBBzgCXsZ+r4vAW0t+lzpY596BD+ea2JeIjiIMpZkUHIkOq0AgyO8BFSI+nTv0gPKf26+2O4Y2ajZkjG+/jy0tZhEIsv0hwBqjpoBFA6tnq27G+tCfBvjJffMLAwgkWFxoOwcAAAAASUVORK5CYII=);background-position:0 0}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button{pointer-events:none}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button:after{width:14px;height:14px;margin-top:-7px;background-position:-18px 0}.monsterinsights-about-block{padding:25px;background:#fff;border:1px solid #d6e2ed;margin-top:20px;margin-left:20px;margin-right:20px}.monsterinsights-about-block h3{color:#393f4c;font-size:18px;margin:0 0 20px;line-height:1.4}.monsterinsights-about-block p{font-size:16px}.monsterinsights-about-block:after{content:"";display:table;clear:both}div[class*=" monsterinsights-path-about-"] .monsterinsights-container,div[class^=monsterinsights-path-about-] .monsterinsights-container{width:100%}div[class*=" monsterinsights-path-about-"] .monsterinsights-header,div[class*=" monsterinsights-path-about-"] .monsterinsights-navigation-bar,div[class^=monsterinsights-path-about-] .monsterinsights-header,div[class^=monsterinsights-path-about-] .monsterinsights-navigation-bar{padding-left:20px;padding-right:20px}@media (max-width:782px){div[class*=" monsterinsights-path-about-"] .monsterinsights-header,div[class*=" monsterinsights-path-about-"] .monsterinsights-navigation-bar,div[class^=monsterinsights-path-about-] .monsterinsights-header,div[class^=monsterinsights-path-about-] .monsterinsights-navigation-bar{padding-left:0;padding-right:0}}div[class*=" monsterinsights-path-about-"] .monsterinsights-floating-bar,div[class^=monsterinsights-path-about-] .monsterinsights-floating-bar{margin-right:-20px;margin-left:-20px}div[class*=" monsterinsights-path-about-"] .monsterinsights-addons-list,div[class^=monsterinsights-path-about-] .monsterinsights-addons-list{padding:0 20px}div[class*=" monsterinsights-path-about-"] .monsterinsights-addons-list .monsterinsights-addon,div[class^=monsterinsights-path-about-] .monsterinsights-addons-list .monsterinsights-addon{width:calc(33.3333% - 12.5px)}@media (max-width:782px){div[class*=" monsterinsights-path-about-"] .monsterinsights-addons-list .monsterinsights-addon,div[class^=monsterinsights-path-about-] .monsterinsights-addons-list .monsterinsights-addon{width:100%}}div[class*=" monsterinsights-path-about-"] .monsterinsights-addon-image,div[class^=monsterinsights-path-about-] .monsterinsights-addon-image{min-height:74px;padding:5px;display:-webkit-box;display:-ms-flexbox;display:flex;height:74px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}div[class*=" monsterinsights-path-about-"] .monstericon-star:before,div[class^=monsterinsights-path-about-] .monstericon-star:before{color:#fdb72c}.monsterinsights-lite-vs-pro-table{padding:0}.monsterinsights-lite-vs-pro-table .monsterinsights-lite-vs-pro-footer{background:#f0f0f0}.monsterinsights-lite-vs-pro-header{text-align:center;padding:40px 0 22px}.monsterinsights-lite-vs-pro-header h1{font-size:22px;margin:0 0 22px}.monsterinsights-features-table{width:100%;border-collapse:collapse;border-top:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-features-table td,.monsterinsights-features-table th{width:33.33333%;border-bottom:1px solid #d6e2ed;padding:30px;vertical-align:top}.monsterinsights-features-table td p,.monsterinsights-features-table th p{margin:0}.monsterinsights-features-table th{background:#f0f0f0;text-align:left;border-right:none}.monsterinsights-features-table td p>span{display:block;margin-left:30px}.monsterinsights-features-full:before,.monsterinsights-features-none:before,.monsterinsights-features-partial:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f021";font-size:20px;margin-right:10px;color:#d4393d;position:relative;top:2px}.monsterinsights-features-partial:before{content:"";background:url(../img/about-icon-check.svg) no-repeat 50%;background-size:19px auto;width:19px;height:19px;top:6px}.monsterinsights-features-full:before{content:"\f015";color:#4ab99b}.monsterinsights-lite-vs-pro-footer{padding:50px 20px 30px;text-align:center}.monsterinsights-lite-vs-pro-footer h3{margin-bottom:10px}.monsterinsights-lite-vs-pro-footer p{margin-bottom:0}.monsterinsights-lite-vs-pro-footer a{color:#509fe2}.monsterinsights-lite-vs-pro-footer a:focus,.monsterinsights-lite-vs-pro-footer a:hover{color:#393f4c}.monsterinsights-lite-vs-pro-footer.monsterinsights-small{padding:0;text-align:left}.monsterinsights-lite-vs-pro-footer.monsterinsights-small h3{margin-bottom:5px}.monsterinsights-lite-vs-pro-footer.monsterinsights-small p{margin-top:0}.monsterinsights-two-column{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-two-column>div{width:50%}.monsterinsights-list-check ul{margin:0}.monsterinsights-list-check li{font-size:16px;margin-top:10px;padding-left:30px;position:relative}.monsterinsights-list-check li:first-child{margin-top:0}.monsterinsights-list-check li:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f015";font-size:20px;margin-right:10px;color:#5cc0a5;position:absolute;left:0;top:0}.monsterinsights-about-docs-row:after{display:table;clear:both;content:""}.monsterinsights-about-docs-image{width:270px;float:left;margin-right:20px}.monsterinsights-about-docs-1:after{background-image:url(../img/about-icon-connect.png)}.monsterinsights-about-docs-2:after{background-image:url(../img/about-icon-guide.png)}.monsterinsights-about-docs-3:after{background-image:url(../img/about-icon-gdpr.png)}.monsterinsights-about-docs-4:after{background-image:url(../img/about-icon-addons.png)}.monsterinsights-about-docs-5:after{background-image:url(../img/about-icon-ecommerce.png)}.monsterinsights-bg-img.monsterinsights-about-team{padding-top:59%}.monsterinsights-bg-img.monsterinsights-about-team:after{background-image:url(../img/about-team.jpg)}.monsterinsights-about-page-right-image{float:right;width:40%;text-align:center;margin:0 0 0 20px}@media (max-width:782px){.monsterinsights-about-page-right-image{width:100%;float:none;margin:0 0 20px}}.monsterinsights-about-page-right-image img{width:100%}.monsterinsights-about-page-right-image figcaption{color:#999797;margin-top:5px}.monsterinsights-about-page-right-image iframe{max-width:100%}.monsterinsights-path-growth-tools{background-color:#fafafa}.monsterinsights-path-growth-tools .monsterinsights-container{width:100%!important}.monsterinsights-path-growth-tools .monsterinsights-logo-area{padding-left:10px}.monsterinsights-path-growth-tools .monsterinsights-navigation-bar{padding-left:20px;padding-right:20px}.monsterinsights-growth-tools{padding:16px 20px 0}.mi-growth__block{margin-bottom:17px}.mi-growth__block-title{padding:16px 0;font-style:normal;font-weight:700;font-size:18px;line-height:21px;color:#393e4b;margin:0}.mi-growth__content{display:-webkit-box;display:-ms-flexbox;display:flex;background:#fff;border:1px solid #e2e4e9;padding:24px}@media (max-width:450px){.mi-growth__content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center}}.mi-growth__content:nth-child(n+2){border-top:none}.mi-growth__content-icon_container{margin-right:24px}@media (max-width:450px){.mi-growth__content-icon_container{margin:0 auto 24px}}.mi-growth__content-icon{border:1px solid #e2e4e9;border-radius:5.33333px;width:40px;height:40px;background-repeat:no-repeat;background-position:50%}.mi-growth__content-icon.icon-mi{background-image:url(../img/icon-mi.svg)}.mi-growth__content-icon.icon-aioseo{background-image:url(../img/icon-aioseo.svg)}.mi-growth__content-icon.icon-pushengage{background-image:url(../img/icon-pushengage.svg)}.mi-growth__content-icon.icon-rafflepress{background-image:url(../img/icon-rafflepress.svg)}.mi-growth__content-icon.icon-constantcontact{background-image:url(../img/icon-constantcontact.svg)}.mi-growth__content-icon.icon-semrush{background-image:url(../img/icon-semrush.svg)}.mi-growth__content-icon.icon-wpforms{background-image:url(../img/icon-wpforms.svg)}.mi-growth__content-icon.icon-optinmonster{background-image:url(../img/icon-optinmonster.svg)}.mi-growth__content-icon.icon-smashballoon{background-image:url(../img/icon-smashballoon.svg)}.mi-growth__content-icon.icon-seedprod{background-image:url(../img/icon-seedprod.png)}.mi-growth__content-icon.icon-easyaffiliate{background-image:url(../img/icon-easyaffiliate.svg)}.mi-growth__content-icon.icon-searchwp{background-image:url(../img/icon-searchwp.svg)}.mi-growth__content-icon.icon-edd{background-image:url(../img/icon-edd.svg)}.mi-growth__content-icon.icon-memberpress{background-image:url(../img/icon-memberpress.svg)}.mi-growth__content-icon.icon-thirstyaffiliates{background-image:url(../img/icon-thirstyaffiliates.png)}.mi-growth__content-icon.icon-advancedcoupons{background-image:url(../img/icon-advancedcoupons.svg)}.mi-growth__content-icon.icon-prettylinks{background-image:url(../img/icon-prettylinks.svg)}.mi-growth__content-icon.icon-guide{background-image:url(../img/icon-guide.svg)}.mi-growth__content-desc_container{-webkit-box-flex:1;-ms-flex:1;flex:1;padding-right:24px}@media (max-width:450px){.mi-growth__content-desc_container{padding-right:0}}.mi-growth__desc-title{font-style:normal;font-weight:700;font-size:16px;line-height:18px;color:#393f4c;margin:0 0 7px}@media (max-width:450px){.mi-growth__desc-title{margin-bottom:16px}}.mi-growth__desc-excerpt{color:#586074;padding:0;margin:0;font-style:normal;font-weight:400;font-size:14px;line-height:16px}@media (max-width:450px){.mi-growth__desc-excerpt{margin-bottom:16px}}.mi-growth__content-button_container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:767px){.mi-growth__content-button_container{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}}.mi-growth__content-button_container .btn{width:170px;text-align:center;padding:7.5px 0;font-style:normal;font-weight:700;font-size:14px;line-height:18px;border-radius:5px;display:inline-block;text-decoration:none;margin-left:24px;border:0;cursor:pointer;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}@media (max-width:767px){.mi-growth__content-button_container .btn{margin-left:0;margin-bottom:24px}}.mi-growth__content-button_container .btn-green{color:#fff;background-color:#46bf40}.mi-growth__content-button_container .btn-blue{color:#fff;background-color:#338eef}.mi-growth__content-button_container .btn-blue:hover{background-color:#2a73c2;color:#fff}.mi-growth__content-button_container .btn-guide{color:#338eef;border:1px solid #338eef;background-color:#fff}.mi-growth__content-button_container .btn-guide:hover{background-color:#efefef;color:#338eef}.monsterinsights-dark[data-v-5b3522ee]{display:block}.monsterinsights-colorpicker-preview span{width:40px;height:40px;display:inline-block;border:1px solid #b9c9d7;border-radius:5px}.monsterinsights-colorpicker-picker{position:absolute;z-index:100}.monsterinsights-colorpicker-picker .hu-color-picker{min-width:218px!important}.monsterinsights-pp-theme-picker{overflow:hidden}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-carousel,.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slide{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slide{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-negative:0;flex-shrink:0}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slide:after{content:"";margin-left:48%}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option{width:150px;border-radius:10px;border:1px solid #d3d7de;height:150px;padding:17px 20px;margin-bottom:24px;cursor:pointer;position:relative;background:rgba(0,0,0,0)}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option.monsterinsights-pp-theme-option-selected,.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option:focus,.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option:hover{border:3px solid #338eef;padding:15px 18px;outline:none}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option.monsterinsights-pp-theme-not-available .monsterinsights-pp-theme-icon,.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option.monsterinsights-pp-theme-not-available .monsterinsights-pp-theme-name{opacity:.6}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-active-icon{position:absolute;right:5px;top:5px}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-icon{display:block;width:110px;height:94px}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-name{color:#393f4c;font-size:14px;margin-top:8px;display:block;text-align:left}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-icon{background:url(../img/theme-icons.png) no-repeat 0 0;background-size:488px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-beta .monsterinsights-pp-theme-icon{background-position-x:-126px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-charlie .monsterinsights-pp-theme-icon{background-position-x:-252px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-delta .monsterinsights-pp-theme-icon{background-position-x:-378px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-echo .monsterinsights-pp-theme-icon{background-position:0 -126px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-foxtrot .monsterinsights-pp-theme-icon{background-position:-126px -126px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-golf .monsterinsights-pp-theme-icon{background-position:-252px -126px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-hotel .monsterinsights-pp-theme-icon{background-position:-378px -126px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-india .monsterinsights-pp-theme-icon{background-position:0 -252px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-juliett .monsterinsights-pp-theme-icon{background-position:-126px -252px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-kilo .monsterinsights-pp-theme-icon{background-position:-252px -252px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-lima .monsterinsights-pp-theme-icon{background-position:-378px -252px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-mike .monsterinsights-pp-theme-icon{background-position:0 -378px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-november .monsterinsights-pp-theme-icon{background-position:-126px -378px}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls{text-align:center;font-size:14px;color:#626d83}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls>span{display:inline-block;margin:0 11px;vertical-align:middle}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button{border:none;border-radius:3px;background:#f0f2f4;width:20px;height:20px;text-align:center;color:#626d83;font-size:8px;cursor:pointer}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button:focus,.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button:hover{background:#dadcde}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button:disabled{opacity:.5;cursor:default}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button i{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button.monsterinsights-pp-themes-slider-button-next i{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-option{text-align:center}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-name{position:absolute;left:18px;bottom:10px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-icon{width:74px;height:46px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAxAAAAEqCAMAAACyWUYtAAABHVBMVEUAAAAzju89ku/n8vzf7//n8//n8v1ClfBBlfBClvDn8v3n8vzl8Pzn8v3n8f0yju/m8v7l8ftBlvAzje/n7/wRcNXo8v7n8v0yju8yju8hfeGfy/fn8v1ClfDn8vygy/gyju/o8f4yju8QcNWgy/gzje+gyvkzju8RcNUQcNEwj+8QcNCgy/cyju8RcNYzju7n8v3n8vzn7/8QcNbn8v0zju9ClvCgy/gRcNVZo/Lx9/5Lm/GkzfgScNXe7fy62fpGmPHR5fs+lPCx1flToPJgp/O21/k2kO+r0flrrfPm8f2kzfmayPjS5vvE3/vj8P3N5PvI4fvM4viHvfZ1s/QfeNeOwfZNnfE7k+88k/DB3fp9uPVGkN9TmOFUmOKGYDVYAAAANHRSTlMA/iCvEF/v7++vj29Q39/vz4C/r2Dfr4B3X1gg3r5g79/Pz8+/v6+PgCAQEO7ev7C/YSC/maRVeQAADIJJREFUeNrs3M9q20AQx/Fhk0ZS/tTBwQkkuD24KQmBXDq7NSipcdwcDFVOou//KC05GJyIIEur0az2932Dgf3YCK2GXts/Ov/MvXd6/ok8dXdzP1fT7JJQUB0fsJJO/JC4ncxVNbklFE6HrKgL8pAyD/9F3BEKpQtW1SG17nKurhtCgfSFlXVMbZvN1XVPKJBOWFkH+9SyucIIhZG6PwjmI4BAvbXH6toDCNRbp6yuE2oZK4xQCD9cj4M8PKwwQgABEAABEAoODyuMEEAABEAAhILDwwojBBAAARAAoeDwsMIIAQRAAERwscIwE6obQEQ6E6oOICKdCVUHEJHOhKoDiEhnQtUBRKQzoeoAItKZkFD8psWzFe55BRC1d0090tvMOHESZYaiiLdb2R5aAUS9XVMVIEzihEriEMHb5baHngCizq6pShCZE2tKMcRbvdheWgJEjV1TlSCcXAnFEG+1sL206BhEsc6dZGXhHcSsfxCOYigGEEXuhMsL3yDmAFEdQOwOonTirQEi0GIA4eTLASLQAKKbAKJG5npkd+vMdPkGJjMAsQkgxEGYkd25kenyDUxiAGITQEiDOLMNuu70DcwUIDYBhDQI26RRp5MnALEJIIIAYbudHCA2AQRAvAOxtL30AhBNQaTugwCiLQh+sj2UM0A0BTF2YmUxghjk9W9XqzBBmNQJlZoYQfBK/gOhBQNEYxBkMidROjUUJQgN+QaRuzoFCiLgbKO2n54AogGItROvBIiuQYxdB2VRgBjy9e+Qs43q8ukpNVGA4KJ0kuXrggGiaxD+n57SqRnm55asMIDwBqIq7GWKbSaAAAjMBBAAARAAoQqEwOa+3w8A0QyE1Oa+zFBlEYJYWYn+AkQDEIKb+5JqERGCyK1IvwDCE4jMddKUqooPxIuV6QEgdH8PkVBV8YFYWF+pAuFzc19ZxADCUVW6QLR5espMzCD8Xt3IC4DQAKLd01NiIgZROq+tAUIDiMy1ahoxCOe3HCA0gHDtSgDCWwAxABAOIAACIAACIAACIAACIAACIAACIKIB8QMgXhMGsbQyrQBix24+3twXIYhUAITY5r4lQOzY3UR0c19G71MGouXkWcTXv4cAgm4ngpv70gCuf5u0iwn72NyX/2GAaNDlTGhzXzoN4gOhFpOnYxPTVWl+Uz4MEIPLNgjfVOvb3FcCBEDUTyGIIVz/HmIAMYDNffm6YIAAiB1SCEJBhAACIAACIBQcHlYYIYAACIAACAWHhxVGyDeIq29ff/rt+9UwDw8rjNA/9uxupXEoCsPwokl70D8tI3pQmCLUHgkjsiD3f2dz4syhqE3ISvo8d7Dhe9khu+cgjqeud6/HWY4nCwp6DuLSDeA8y/FkQUHPQXRDeJ3leLKgYApBdLMcTxYUCEIQgvjM3VVBnLohxC7LeRbEbXj5SQ9/4sO5G8AlmiynEcRtWPzgirhbDPzbdZPlLAVxIxa/vpvDyyL+O166fp3Ox4h2lcXsvb4zom0Ws4xrvWU5z8FUrLOUQ1ztkOUsg8kotZ91XK/dZzH7YEIeygxotY0+vJc50EcP78GkPDT3Obp9s2l7O1CB8/zzdmgDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAb1m4e9zm6+8dlwPi2qyxiJwlGt85CngJG9ZSlrANG9DuL2QaMZ5fFrNqAr5r9BZG5CRhLk+U0AV829y+mzF3AWLKg4C97d/CaOBDFcVwPe9pdutCLLT0svRQKZVl4z6pxwxijQfcmiLbY/f//jM3BlkxqJ8aJ05eZ3+dYykBIvkTNGwJHQhAABQgCoABBABQgCIACBAFQgCAAzonKJrOEXVpMEATI8a6HhB1LJggCxKCSBTs3QxAgBpWwewmCADEEBMEIAnvfxSANgpBMzt73G3+TIA2CEAx73w9BEKHC3veDEESgfpMwnu59Jw2CEEvcTi5P976TBkFIJe4G0dTe9/ve5U/+dLeXVwiiVXzd+359wUI8XCGIFvlB4tx07N2xHN0egmgPEqhjrcei3CGI1iCBOrauWJbuNYJoCxKoY0vAt2ndxT2CaAkSyLcbBHO3hyBaggTqWLpkcX75G4Rnk6EkUMfSLYvz4G0QciZDv39BEIexPF1fg/BuMpTKVrv14CMvK6qEIEIKwr/JUCpZrQcG6+oiEERAQYh76cW3xoP4NzDaURUEEVAQHk6Gkm45MFtTFQQRThDibhBEXx0H8YeqIIhwgvBxMpSKEMQrBNHSydDvCAJBnBwEfrNHEEdCEAgihyBeIQgEkUMQrxAEgsgFFMQ2SoeNSKMtghAEQZwSRLYZNijKEIQYCOKEILJ02Kg0QxBSIIgTgoiGDdsgiJwXb0Ui3XIdQBDbYeOe2CSUIHx4KxKV7MxBvFA18UFEzQcRsUkoQfjwViTShDH+nTYfRMomoQTB7iXnPiZavXycw86PDULDM2ATBPGmdcckAYI4hsCLh6u17pgkcBzERvX7/ShFEAgCQeQ5PO3/2k8RBIIIPgjFb7IUQSAIEshhEIoLshRBIAiB3AURsSZDEFYXT8KVWndMErgLImOdQhA2F8+MnVsgiAaD2HBJhiAwuqHxYj6LjQpB9LlsgyCsLp4Fu5TMJoTIGwziicsUggj84wVp/JjPYiMEgSBk/3KWtCWItB8hCATxjvjzxEbG7xCRqYeMWSEIBFEm/jxxBe2xnC419pBTCAJBlIg/T2xkeg6xreghpxAEgtCJP09cQZvc0KSmHvbUSUHgqe5REMSnBlG+RShzD3vqlCDwVPcoCCLnPojDF7q5hwJ1QhBePvChsnj699HGPNbWOub/MZ/V7Ph32ue9zNiDRtUPIoinurFdDrlxXG+tcYz5rCaC0JPYMmdbNTT2oFO1gwji48X80dq05lpTjG4421Ot96BTCCJHJY/2xjXXGmM+y10Qeg86hSAMQViouxZ+KHAYhN6DTiEIBHEMAeeJK1j2sKcQBJWMGwxijCDOF0T0vBy5NI/CDGJq38O85lpzBFE/iGg5cmwZBRlEbH2LGMf11hrHCKJ+EPORc89BBkHx3C6Haaytdcz/I4j6QYzcW5aD8HKvLgmEYxIZxIiLghndEADH1NIgfNirSwJhPqulQbB7CYIIcz4LQRyE/RChzmexBkH8b+duWhMJwiAAt5jkkGTNBnPQ4CGbSyCw7OVtGxOJe4iLhMEPBjzE//8/NsJguieCOm205p16ziLMYBHTUyUDUfF+lg0wEAxExesoNuftaSMGgoGoTiDenw7uX1UDMRmPnBsNXqQotEBo6GfZAGh1w+6qFIGYZuco/ZkUAxcIDf0sm/d82PLG23suD5X51Y2ZW5lKEXiB0NDPshv4P0MT5S9/dcMTnrP3J1IAXiA09LNKEQiN1Y2B84ylCLxAAKhEIDRsdSVn5DwjKeLoHx4BVI1AAPjeI0rZGeI1IWAg1oO70RJgIDJw18RArMevTAwEA3HID8/YeQayM8RrQnC4QLw+R3llIAKTfnCavjPEa0Kw90B008TFSIe9leF883stutUMhEzdykwKQLwmAPsORDdxkZLhKg/JVq/vVjMQMutnfx+mUgjiNZW/n2VzFi7avJdJ3VbSigZCXgbLD894IgUBXlP5+1k2x8VLepltX58PhMqtrgBiP+sggXA7BsLlA6FyqyuA2M8qaSA0bHUFEPtZmwORuHi9zLbvlQ+Eyq2uAOLDxs2BSF20tJeZu60s8oFQOU0UQKyjlPTY1e2KgWAg9vZgbuFiJHP/wVy6+fXp1wdzKre6Aohfmb6yeGoqt7o/BM4v9rNKGggNW926wKmzn1XSQGjY6l4InFP2s8oaCAAm0smZgGkY9rMYiMJMrEsBc2rYz2IgCjPRzgXKtTE8OWMgCjPxrgXIuWEg1rmzcO5V3uilm4aAOLs0DMRaTQvnj8obnUWi/lOOrlG/ODEMxHoti6bWVnmjNRJAJtLjlQXzW+eN1kgAmVi3FkutrXOrq5EAMtEeLJSW0q2uRhr7WWj/Rjxo3epqpLGftdSGOXu9ulW71dVIYz8ri0Tz3h7dXbP1qHerqxFeP6tjVJKAjuGJSgr7WZAkoGOaqJO+fhYkCTAQwNT1syBJgF+ZkGnrZ0GSgI6trl4Q/azOsp+llgR0bHWJuNUl+sCtLpGHW10iY9iiJFpiIIg8DASRh4Eg8jAQRB4GgsjDQBCtxa0u0SdudYk83OoSfeJWlyjArS6Rh1tdIg+3ukTf46YjIBRvdalMuNUlWvoPwrM3CeMd4W0AAAAASUVORK5CYII=);background-repeat:no-repeat;background-position:0 0;background-size:392px;display:inline-block}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-beta .monsterinsights-pp-theme-icon{background-position-x:-212px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-charlie .monsterinsights-pp-theme-icon{background-position-x:-106px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-delta .monsterinsights-pp-theme-icon{height:43px;background-position:-318px 0}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-echo .monsterinsights-pp-theme-icon{height:76px;background-position:0 -73px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-foxtrot .monsterinsights-pp-theme-icon{background-position:-106px -90px;height:41px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-golf .monsterinsights-pp-theme-icon{background-position:-212px -83px;height:56px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-hotel .monsterinsights-pp-theme-icon{height:50px;background-position:-318px -86px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-option{text-align:center}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-name{position:absolute;left:18px;bottom:10px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-icon{width:74px;height:40px;background:url(data:image/png;base64,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) no-repeat 0 -19px;background-size:296px;display:inline-block}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-beta .monsterinsights-pp-theme-icon{background-position-x:-74px;background-position-y:-6px;height:66px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-charlie .monsterinsights-pp-theme-icon{background-position-x:-148px;height:50px;background-position-y:-14px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-delta .monsterinsights-pp-theme-icon{height:78px;background-position:-222px 0}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-preview{position:relative}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-controls{margin-right:22px;margin-bottom:20px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls input[type=number]{width:40px;height:40px;border-radius:5px;border:1px solid #b9c9d7;padding:2px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-controls-inputs{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label{font-size:14px;width:auto;margin-right:9px;color:#393f4c;margin-bottom:8px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label span{display:block}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-pp-control-label{margin-bottom:4px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows input{border-radius:5px 0 0 5px;text-align:center;-moz-appearance:textfield}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows input::-webkit-inner-spin-button,.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;font-size:10px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow{background:#f9fbff;padding:3px 5px;border:1px solid #b9c9d7;border-left-width:0;cursor:pointer}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow:focus,.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow:hover{background:#fff}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow.monsterinsights-number-input-arrow-up{border-radius:0 5px 0 0;border-bottom:0;padding-bottom:4px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow.monsterinsights-number-input-arrow-up i{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow.monsterinsights-number-input-arrow-down{border-radius:0 0 5px 0}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-unit{font-size:14px;color:#444;margin-left:5px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-controls-description{font-weight:700}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-color-input-inline{display:-webkit-box;display:-ms-flexbox;display:flex;padding-right:9px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-color-input-inline .monsterinsights-colorpicker-preview span{border-top-right-radius:0;border-bottom-right-radius:0;border-right-width:0}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-color-input-inline input[type=text]{border-top-left-radius:0;border-bottom-left-radius:0;max-width:108px}.monsterinsights-admin-page .monsterinsights-color-picker{position:relative;max-width:40px}.monsterinsights-admin-page .monsterinsights-color-picker .monsterinsights-colorpicker-picker{bottom:-120px;margin-left:10px;left:100%}.monsterinsights-admin-page .monsterinsights-pp-posts-picker .multiselect__input{border:none}.monsterinsights-admin-page .monsterinsights-popular-posts .monsterinsights-settings-block .monsterinsights-settings-input-select+p{margin-top:25px}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button{background:#fff;color:#444;border-bottom-width:1px;border-color:#b9c9d7;border-radius:0;line-height:18px;border-right:0;margin:0}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button:hover{background:#509fe2;color:#fff;border-color:#b9c9d7}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button:focus{z-index:10;position:relative;border-radius:0;outline:none}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;border-right:1px solid #d6e2ed}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button.monsterinsights-selected-interval{background:#509fe2;color:#fff;font-weight:400}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-notice-no-posts{padding-top:15px;cursor:default}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-notice-no-posts span{color:#d83638;font-weight:400}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-beta{width:144px;height:100px;padding:0}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-beta:after{background-image:url(../img/theme-preview-beta.png)}.monsterinsights-inline-popular-posts-image{width:128px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;margin-right:16px}.monsterinsights-inline-popular-posts-widget{margin-bottom:24px}.monsterinsights-inline-popular-posts-alpha{padding:24px 27px}.monsterinsights-inline-popular-posts-alpha .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1;display:block;margin-bottom:6px}.monsterinsights-inline-popular-posts-alpha .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:1;text-decoration:none}.monsterinsights-inline-popular-posts-beta{padding:14px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border:1px solid #d6e2ed}.monsterinsights-inline-popular-posts-beta .monsterinsights-inline-popular-posts-text{margin-left:19px}.monsterinsights-inline-popular-posts-beta .monsterinsights-inline-popular-posts-label{display:block;font-weight:700;font-size:18px;line-height:18px}.monsterinsights-inline-popular-posts-beta .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:130%;text-decoration:none}.monsterinsights-inline-popular-posts-charlie .monsterinsights-inline-popular-posts-border{display:block;border-bottom:1px solid;margin:16px 0}.monsterinsights-inline-popular-posts-charlie .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:16px;line-height:1.1}.monsterinsights-inline-popular-posts-charlie .monsterinsights-inline-popular-posts-list{list-style:disc inside none}.monsterinsights-inline-popular-posts-charlie .monsterinsights-inline-popular-posts-list li{font-style:normal;font-weight:400;font-size:16px;line-height:130%}.monsterinsights-inline-popular-posts-delta{border:1px solid #d6e2ed;padding:16px 18px;border-radius:5px}.monsterinsights-inline-popular-posts-delta .monsterinsights-inline-popular-posts-icon{margin-right:8px}.monsterinsights-inline-popular-posts-delta .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1.1;vertical-align:top}.monsterinsights-inline-popular-posts-delta .monsterinsights-inline-popular-posts-title{display:block;font-weight:700;font-size:18px;line-height:1;text-decoration:none;margin-top:4px}.monsterinsights-inline-popular-posts-echo{padding:13px 16px}.monsterinsights-inline-popular-posts-echo .monsterinsights-inline-popular-posts-icon{margin-right:8px}.monsterinsights-inline-popular-posts-echo .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:16px;line-height:1.1;margin-right:8px}.monsterinsights-inline-popular-posts-echo .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:16px;line-height:130%;text-decoration:none}.monsterinsights-inline-popular-posts-foxtrot{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-inline-popular-posts-foxtrot .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1.1;display:block}.monsterinsights-inline-popular-posts-foxtrot .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:125%;text-decoration:none}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-image{padding-top:57%}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-image:after{background-image:url(../img/theme-preview-image.jpg)}.monsterinsights-inline-popular-posts-golf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:16px;line-height:1.1;float:left;background:#fff;padding-right:20px}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:16px;line-height:125%;text-decoration:none;display:block;clear:both;margin-top:14px}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-title:before{width:100%}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-border{display:block;border-width:2px 0 0;border-style:solid;margin-top:10px}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-border-2{border-top:1px solid #e2e4e9;margin-top:20px;display:block}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-text{width:100%}.monsterinsights-inline-popular-posts-hotel .monsterinsights-inline-popular-posts-icon{margin-right:10px;vertical-align:middle}.monsterinsights-inline-popular-posts-hotel .monsterinsights-inline-popular-posts-title{font-style:normal;font-weight:700;font-size:18px;text-decoration:none;line-height:130%}.monsterinsights-inline-popular-posts-india{padding:13px 12px 13px 16px;position:relative}.monsterinsights-inline-popular-posts-india .monsterinsights-inline-popular-posts-border{border-width:0 0 0 4px;border-style:solid;position:absolute;left:0;top:0;bottom:0}.monsterinsights-inline-popular-posts-india .monsterinsights-inline-popular-posts-title{font-size:14px;text-decoration:none;font-weight:700}.monsterinsights-inline-popular-posts-india .monsterinsights-inline-popular-posts-label{font-size:14px;text-decoration:none;font-weight:700;margin-right:4px}.monsterinsights-inline-popular-posts-juliett{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%}.monsterinsights-inline-popular-posts-juliett .monsterinsights-inline-popular-posts-border{border-width:1px 0 0;border-style:solid;position:absolute;left:0;top:0;right:0}.monsterinsights-inline-popular-posts-juliett .monsterinsights-inline-popular-posts-title{font-size:18px;text-decoration:none;font-weight:700;max-width:400px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;display:block;line-height:125%}.monsterinsights-inline-popular-posts-juliett .monsterinsights-inline-popular-posts-label{font-size:14px;line-height:18px;text-decoration:none;font-weight:700;padding:4px 12px;position:absolute;right:0;top:0}.monsterinsights-inline-popular-posts-kilo{position:relative;padding:30px 0}.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1}.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:130%;text-decoration:none;display:block;clear:both;margin-top:6px}.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-title:before{width:100%}.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-border,.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-border-2{display:block;position:absolute;left:0;right:0;top:0;border-bottom:4px dashed #e2e4e9}.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-border-2{bottom:0;top:auto}.monsterinsights-inline-popular-posts-lima{padding:16px 19px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-inline-popular-posts-lima .monsterinsights-inline-popular-posts-text{margin-left:13px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.monsterinsights-inline-popular-posts-lima .monsterinsights-inline-popular-posts-label{display:block;font-weight:700;font-size:18px;line-height:18px}.monsterinsights-inline-popular-posts-lima .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:120%;text-decoration:none;display:block;max-width:420px;margin-top:7px}.monsterinsights-inline-popular-posts-lima .monsterinsights-inline-popular-posts-image{width:144px;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;margin-right:0;margin-left:20px}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-image-2{padding-top:69%}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-image-2:after{background-image:url(../img/theme-preview-image-2.jpg)}.monsterinsights-inline-popular-posts-mike{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-inline-popular-posts-mike .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:125%;text-decoration:none;display:block;max-width:380px}.monsterinsights-inline-popular-posts-mike .monsterinsights-inline-popular-posts-label{position:absolute;z-index:10;left:0;top:0;font-size:14px;font-weight:700;padding:5px 8px;line-height:1.2}.monsterinsights-inline-popular-posts-mike .monsterinsights-inline-popular-posts-image{margin-right:20px}.monsterinsights-inline-popular-posts-november{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:5px;border-width:1px;border-style:solid;padding:16px}.monsterinsights-inline-popular-posts-november .monsterinsights-inline-popular-posts-text{width:100%}.monsterinsights-inline-popular-posts-november .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:16px;line-height:125%;text-decoration:none;display:block;margin-top:4px}.monsterinsights-inline-popular-posts-november .monsterinsights-inline-popular-posts-label{display:block;font-size:16px;font-weight:700}.monsterinsights-inline-popular-posts-november .monsterinsights-inline-popular-posts-image{margin-right:20px}.monsterinsights-inline-popular-posts-november .monsterinsights-inline-popular-posts-icon{width:32px;height:32px;display:inline-block;border-radius:50%;text-align:center;float:left;line-height:38px;margin-right:17px;margin-top:4px}.monsterinsights-sharedcount-status{font-size:12px;color:#777;margin-top:12px;line-height:1.5}.monsterinsights-pp-manual-placement-options{margin-left:-12px;margin-right:-12px}.monsterinsights-pp-manual-placement-option{width:150px;height:150px;border-radius:10px;border:1px solid #b7c9d9;font-size:14px;line-height:17px;color:#444;text-align:center;-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;cursor:pointer;margin-left:12px;margin-right:12px;vertical-align:top;max-width:calc(50% - 24px)}.monsterinsights-pp-manual-placement-option,.monsterinsights-pp-manual-placement-option .monsterinsights-pp-manual-placement-options-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-pp-manual-placement-option .monsterinsights-pp-manual-placement-options-icon{min-height:40px;margin-bottom:23px}.monsterinsights-pp-manual-placement-option.monsterinsights-pp-manual-placement-option-active{border:3px solid #338eef;font-weight:700;background:#f1f7fe}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps{width:calc(50% - 12px);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin:0}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps .monsterinsights-button{margin-top:10px}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps input[type=text]{border-color:#b7c9d9;color:#444}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps{width:100%;margin-top:30px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps li{color:#777}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps li b{color:#444}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block{width:calc(50% - 12px);border-radius:10px;background:-webkit-gradient(linear,left top,left bottom,color-stop(17.51%,rgba(51,142,239,.6)),color-stop(74.11%,#0e5caf));background:linear-gradient(180deg,rgba(51,142,239,.6) 17.51%,#0e5caf 74.11%);color:#fff;position:relative;height:198px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;text-align:center}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block>div{position:absolute;bottom:0;padding:20px}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block .monsterinsights-welcome-overlay{position:fixed;bottom:0}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block .monsterinsights-pp-video-block-icon{margin-bottom:30px;display:inline-block}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block p{color:#fff;margin:0;text-align:left}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block{width:100%}}.monsterinsights-settings-content-pp-inline input[type=number]{max-width:80px}.monsterinsights-settings-content-pp-inline .monsterinsights-collapsible-content .settings-input-text{margin-bottom:20px}.monsterinsights-inline-desc{margin-left:5px}.monsterinsights-widget-popular-posts-widget{margin-bottom:24px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-alpha .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-alpha .monsterinsights-widget-popular-posts-list li{display:inline-block;padding:24px;background:#f0f2f4;border-radius:3px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-beta .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-beta .monsterinsights-widget-popular-posts-list li{display:inline-block;background:#fff;border-radius:3px;margin:0 6px 30px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700;border-left:4px solid #1ec185;padding-left:16px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-charlie .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-charlie .monsterinsights-widget-popular-posts-list li{display:inline-block;padding:24px;background:#f0f2f4;border-radius:3px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700;border-top:4px solid #338eef}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-delta .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-delta .monsterinsights-widget-popular-posts-list li{display:inline-block;padding:16px 0 0;margin:0 6px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700;border-top:2px solid #d3d7de}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-delta .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-delta .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta span{display:inline-block;margin-right:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-widget-popular-posts-list li{display:inline-block;margin:0 6px 24px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-comments{font-size:16px;font-weight:700;margin-top:14px;display:block}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta span{display:inline-block;margin-right:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-foxtrot .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-foxtrot .monsterinsights-widget-popular-posts-list li{display:inline-block;padding:16px;background:#f0f2f4;border-radius:5px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-foxtrot .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-comments{font-size:16px;font-weight:700;margin-top:14px;display:block}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-foxtrot .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-foxtrot .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta span{display:inline-block;margin-right:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list li{display:inline-block;padding:16px;background:#f0f2f4;border-radius:5px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-comments{font-size:16px;font-weight:700;margin-top:14px;display:block}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta span{display:inline-block;margin-right:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-label{font-weight:400;font-size:12px;display:inline-block;padding:4px 8px;border-radius:3px;line-height:1;margin-bottom:14px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-title{display:block}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-widget-popular-posts-list li{display:inline-block;margin:0 6px 24px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;font-weight:700;position:relative}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-text{position:absolute;bottom:0;padding:0 14px 14px;left:0;z-index:15}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta span{display:inline-block;margin-right:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-bg-img{margin-bottom:0;padding-top:50%;width:100%}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-bg-img:after{z-index:5;border-radius:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-bg-img:before{background:-webkit-gradient(linear,left bottom,left top,color-stop(-25.16%,#000),to(rgba(0,0,0,.1)));background:linear-gradient(0deg,#000 -25.16%,rgba(0,0,0,.1));content:"";top:0;bottom:0;left:0;right:0;position:absolute;z-index:10;border-radius:5px}.monsterinsights-pp-products-theme-preview-output,.monsterinsights-pp-widget-theme-preview-output{margin-top:28px}.monsterinsights-dummy-text{padding-right:24px}.monsterinsights-dummy-text p{margin-bottom:40px;line-height:180%}.monsterinsights-pp-widget-controls,.monsterinsights-pp-widget-theme-preview{position:relative}.monsterinsights-pp-widget-controls .monsterinsights-settings-input-select-simple select{min-width:50px}.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-1 .monsterinsights-widget-popular-posts-list{margin:0}.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-1 .monsterinsights-widget-popular-posts-list li{width:100%}.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-3 .monsterinsights-widget-popular-posts-list{margin:0}.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-3 .monsterinsights-widget-popular-posts-list li{width:calc(33.33333% - 12px)}@media (max-width:767px){.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-2 .monsterinsights-widget-popular-posts-list,.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-3 .monsterinsights-widget-popular-posts-list{margin:0}.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-2 .monsterinsights-widget-popular-posts-list li,.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-3 .monsterinsights-widget-popular-posts-list li{width:100%;margin-left:0;margin-right:0}}.monsterinsights-pp-widget-theme-preview-render h3{font-size:14px;margin-top:14px;margin-bottom:14px}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-settings-input-radio .monsterinsights-styled-radio{display:none}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-settings-input-radio>span{display:inline-block;margin-right:8px}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-wide-column{display:-webkit-box;display:-ms-flexbox;display:flex;border:1px solid #b7c9d9;border-radius:5px;width:40px;height:40px;padding:10px 5px;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-wide-column>span{background:#99a1b2;display:inline-block;width:8px;height:8px;border-radius:1px;margin-bottom:2px}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-wide-column.monsterinsights-wide-column-two>span{width:12px}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-wide-column.monsterinsights-wide-column-one>span{width:100%}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-styled-radio-label-checked .monsterinsights-wide-column{border:2px solid #338eef;background:#ecf4fe;padding:9px 4px}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-styled-radio-label-checked .monsterinsights-wide-column>span{background:#338eef}.monsterinsights-inline-checkboxes .monsterinsights-settings-input-checkbox{display:inline-block;margin-right:32px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-delta .monsterinsights-bg-img{width:121px;height:121px;padding:0;float:left;margin-right:16px;margin-bottom:12px}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-1:after{background-image:url(../img/theme-widget-1.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-2:after{background-image:url(../img/theme-widget-2.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-3:after{background-image:url(../img/theme-widget-3.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-4:after{background-image:url(../img/theme-widget-4.jpg)}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-bg-img{padding-top:50%;margin-bottom:14px;width:100%}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-5:after{background-image:url(../img/theme-widget-5.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-6:after{background-image:url(../img/theme-widget-6.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-7:after{background-image:url(../img/theme-widget-7.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-8:after{background-image:url(../img/theme-widget-8.jpg)}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-alpha .monsterinsights-bg-img{width:80px;height:80px;padding:0;float:left;margin-right:18px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-bg-img{padding-top:74%}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-1:after{background-image:url(data:image/jpeg;base64,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)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-2:after{background-image:url(../img/theme-products-2.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-3:after{background-image:url(../img/theme-products-3.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-4:after{background-image:url(../img/theme-products-4.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-5{padding-top:73%}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-5:after{background-image:url(../img/theme-products-5.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-6{padding-top:73%}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-6:after{background-image:url(../img/theme-products-6.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-7{padding-top:73%}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-7:after{background-image:url(../img/theme-products-7.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-8{padding-top:73%}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-8:after{background-image:url(../img/theme-products-8.jpg)}.monsterinsights-widget-popular-posts-products.monsterinsights-widget-popular-posts-echo .monsterinsights-bg-img{padding-top:50%;margin-bottom:14px;width:100%}.monsterinsights-input-text-small{margin-top:24px}.monsterinsights-input-text-small .settings-input-text-input{max-width:350px}.monsterinsights-input-text-extra-small .settings-input-text{display:inline-block;margin-right:5px}.monsterinsights-input-text-extra-small .settings-input-text-input{max-width:80px}.monsterinsights-widget-popular-posts-products{margin-bottom:24px}.monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-rating{display:block}.monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-rating svg{margin-right:2px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-alpha .monsterinsights-products-popular-posts-list{margin:0 -12px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-alpha .monsterinsights-products-popular-posts-list li{display:inline-block;margin:0 12px;width:calc(50% - 24px);vertical-align:top;font-size:16px;border-top:1px solid #d3d7de;padding-top:15px;padding-bottom:30px;font-weight:700;line-height:1.1}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-alpha .monsterinsights-products-popular-posts-price{display:block;margin:10px 0 7px;font-weight:400}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-products-popular-posts-list,.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-products-popular-posts-list li,.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-list li{display:inline-block;width:calc(50% - 12px);vertical-align:top;font-size:16px;padding:10px 12px;font-weight:700;line-height:1.1;margin:0 6px 24px;border-radius:3px;position:relative}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-products-popular-posts-price,.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-price{display:block;font-weight:400;position:absolute;right:12px;bottom:10px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-products-popular-posts-title,.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-title{margin-top:12px;display:block}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-products-popular-posts-rating,.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-rating{margin-top:13px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-list li{display:inline-block;width:calc(50% - 12px);vertical-align:top;font-size:16px;padding:0;font-weight:700;line-height:1.1;margin:0 6px 24px;border-radius:5px;position:relative}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-price{display:block;font-weight:400;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;margin-top:4px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-title{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;margin-top:4px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-text{position:absolute;bottom:0;z-index:10;left:0;right:0;padding:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-rating{margin-top:13px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-bg-img{padding-top:74%}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-bg-img:before{background:-webkit-gradient(linear,left bottom,left top,color-stop(-25.16%,#000),to(rgba(0,0,0,.1)));background:linear-gradient(0deg,#000 -25.16%,rgba(0,0,0,.1));content:"";top:0;bottom:0;left:0;right:0;position:absolute;z-index:10;border-radius:5px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-price{position:relative;margin-top:8px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-list li{padding:0}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-price{right:auto;bottom:auto;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-rating{margin-top:8px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-title{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-text{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-1 .monsterinsights-products-popular-posts-list{margin:0}.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-1 .monsterinsights-products-popular-posts-list li{width:100%;margin-left:0;margin-right:0}.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-3 .monsterinsights-products-popular-posts-list li{width:calc(33.33333% - 24px)}@media (max-width:767px){.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-2 .monsterinsights-products-popular-posts-list,.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-3 .monsterinsights-products-popular-posts-list{margin:0}.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-2 .monsterinsights-products-popular-posts-list li,.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-3 .monsterinsights-products-popular-posts-list li{width:100%;margin-left:0;margin-right:0}}.monsterinsights-pp-blurred{-webkit-filter:blur(3px);filter:blur(3px)}.monsterinsights-pp-upgrade-overlay{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background:#fff;padding:8px 12px;-webkit-box-shadow:0 5px 15px rgba(0,0,0,.05),0 15px 35px rgba(0,0,0,.1);box-shadow:0 5px 15px rgba(0,0,0,.05),0 15px 35px rgba(0,0,0,.1);border-radius:3px;z-index:10;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-pp-upgrade-overlay>span{margin:0 10px}.monsterinsights-pp-theme-controls-holder{position:relative}.monsterinsights-pro-pill{font-style:normal;font-weight:700;font-size:11px;background:#1ec185;border-radius:5px;color:#fff;padding:3px 8px;margin-left:8px}.monsterinsights-bg-img.monsterinsights-popular-posts-products-upsell{position:relative;width:750px;height:815px;max-width:100%}.monsterinsights-bg-img.monsterinsights-popular-posts-products-upsell:after{background-image:url(../img/popular-products-bg.jpg)}.monsterinsights-bg-img.monsterinsights-popular-products-upsell-browser{padding-top:83%;-webkit-filter:drop-shadow(0 61.7368px 144.053px rgba(0,0,0,.1));filter:drop-shadow(0 61.7368px 144.053px rgba(0,0,0,.1))}.monsterinsights-bg-img.monsterinsights-popular-products-upsell-browser:after{background-image:url(../img/popular-products-browser.jpg)}.monsterinsights-popular-posts-products-upsell{margin-top:20px}.monsterinsights-popular-posts-products-upsell .monsterinsights-popular-products-upsell-window{padding:48px 50px 0;text-align:center;position:absolute;width:600px;top:62px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);z-index:1;background:#fff;border:1px solid #d6e2ed;-webkit-box-shadow:0 5px 15px rgba(0,0,0,.05),0 15px 35px rgba(0,0,0,.1);box-shadow:0 5px 15px rgba(0,0,0,.05),0 15px 35px rgba(0,0,0,.1)}.monsterinsights-popular-posts-products-upsell h2{margin-top:0;font-size:22px;line-height:1.2}.monsterinsights-popular-posts-products-upsell p{font-size:16px;line-height:1.2;color:#626d83;margin-bottom:32px}.monsterinsights-popular-posts-products-upsell .monsterinsights-button-text{margin:28px 0;color:#99a1b2;font-size:16px;display:inline-block}.monsterinsights-popular-posts-widget-category{margin-top:25px}.monsterinsights-popular-posts-widget-category.monsterinsights-popular-posts-widget-category-lite .monsterinsights-settings-input-select{pointer-events:none;opacity:.6}.monsterinsights-popular-posts-products-no-woocommerce{margin-top:72px}.monsterinsights-popular-posts-products-no-woocommerce .monsterinsights-settings-block{opacity:.6;pointer-events:none}.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice{position:absolute;top:-72px;left:0;right:0;padding:16px 24px;background:#d7930f;color:#fff;font-size:12px}.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice a{color:#fff;text-decoration:underline;font-weight:700}.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice a:focus,.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice a:hover{text-decoration:none}.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice span{margin-left:8px}.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice svg{vertical-align:middle}.monsterinsights-popular-posts-products-top{position:relative}.monsterinsights-pp-placement-options-accordion{padding-left:30px}.monsterinsights-pp-accordion-item-title{border-bottom:1px solid #d6e2ed;padding:24px 0;position:relative}.monsterinsights-pp-accordion-item-title.monsterinsights-pp-accordion-item-title-toggle *{cursor:pointer}.monsterinsights-pp-accordion-item-title .monsterinsights-settings-input-toggle-collapsible{position:absolute;right:0;top:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.monsterinsights-pp-accordion-item-title .monsterinsights-settings-input-toggle-collapsible i{-webkit-transform-origin:50%;-ms-transform-origin:50%;transform-origin:50%}.monsterinsights-pp-accordion-item-title.monsterinsights-pp-accordion-item-title-active{border-bottom:0}.monsterinsights-pp-accordion-item-title.monsterinsights-pp-accordion-item-title-active .monsterinsights-settings-input-toggle-collapsible i{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}.monsterinsights-pp-accordion-item-title .monsterinsights-pp-accordion-item-title-top{margin-bottom:8px;font-weight:700;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-pp-accordion-item-title .monsterinsights-pp-accordion-item-title-top>span{margin-right:8px;margin-left:8px}.monsterinsights-pp-accordion-item-title .monsterinsights-pp-accordion-item-title-top .monsterinsights-settings-input-checkbox{display:inline-block}.monsterinsights-pp-accordion-item-title .monsterinsights-pp-accordion-item-title-bottom{color:#777;padding-right:45px}.monsterinsights-pp-accordion-item-content{border-bottom:1px solid #d6e2ed;padding:0 0 24px}.monsterinsights-dummy-text p,.monsterinsights-pp-inline-theme-preview-render>p{opacity:.5}.monsterinsights-pp-products-theme-preview-output-narrow,.monsterinsights-pp-widget-theme-preview-output-narrow{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-dummy-text,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-dummy-text{width:60%}.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget{width:40%}.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-list,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-widget-popular-posts-list,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-products-popular-posts-list,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-widget-popular-posts-list,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-list,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-widget-popular-posts-list,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-products-popular-posts-list,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-widget-popular-posts-list{margin:0}.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-list li,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-widget-popular-posts-list li,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-products-popular-posts-list li,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-widget-popular-posts-list li,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-list li,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-widget-popular-posts-list li,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-products-popular-posts-list li,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-widget-popular-posts-list li{width:100%}.monsterinsights-dark[data-v-5e919f58]{display:block}.monsterinsights-reset-default[data-v-5e919f58]{margin-left:5px}.saturation{position:relative;cursor:pointer}.saturation .slide{position:absolute;left:100px;top:0;width:10px;height:10px;border-radius:50%;border:1px solid #fff;-webkit-box-shadow:0 0 1px 1px rgba(0,0,0,.3);box-shadow:0 0 1px 1px rgba(0,0,0,.3);pointer-events:none}.hue{position:relative;margin-left:8px;cursor:pointer}.hue .slide{position:absolute;left:0;top:100px;width:100%;height:4px;background:#fff;-webkit-box-shadow:0 0 1px 0 rgba(0,0,0,.3);box-shadow:0 0 1px 0 rgba(0,0,0,.3);pointer-events:none}.color-alpha{position:relative;margin-left:8px;cursor:pointer}.color-alpha .slide{position:absolute;left:0;top:100px;width:100%;height:4px;background:#fff;-webkit-box-shadow:0 0 1px 0 rgba(0,0,0,.3);box-shadow:0 0 1px 0 rgba(0,0,0,.3);pointer-events:none}.sucker{width:30px;fill:#9099a4;background:#2e333a;cursor:pointer;-webkit-transition:all .3s;transition:all .3s}.sucker.active,.sucker:hover{fill:#1593ff}.color-type{margin-top:8px;font-size:12px}.color-type,.color-type .name{display:-webkit-box;display:-ms-flexbox;display:flex}.color-type .name{width:60px;height:30px;float:left;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#999;background:#252930}.color-type .value{-webkit-box-flex:1;-ms-flex:1;flex:1;height:30px;min-width:100px;padding:0 12px;border:0;color:#fff;background:#2e333a;-webkit-box-sizing:border-box;box-sizing:border-box}.colors{padding:0;margin:0}.colors.history{margin-top:10px;border-top:1px solid #2e333a}.colors .item{position:relative;width:16px;height:16px;margin:10px 0 0 10px;border-radius:3px;-webkit-box-sizing:border-box;box-sizing:border-box;vertical-align:top;display:inline-block;-webkit-transition:all .1s;transition:all .1s;cursor:pointer}.colors .item:nth-child(8n+1){margin-left:0}.colors .item:hover{-webkit-transform:scale(1.4);-ms-transform:scale(1.4);transform:scale(1.4)}.colors .item .alpha{height:100%;border-radius:4px}.colors .item .color{position:absolute;left:0;top:0;width:100%;height:100%;border-radius:3px}.hu-color-picker{padding:10px;background:#1d2024;border-radius:4px;-webkit-box-shadow:0 0 16px 0 rgba(0,0,0,.16);box-shadow:0 0 16px 0 rgba(0,0,0,.16);z-index:1}.hu-color-picker.light{background:#f7f8f9}.hu-color-picker.light .color-show .sucker{background:#eceef0}.hu-color-picker.light .color-type .name{background:#e7e8e9}.hu-color-picker.light .color-type .value{color:#666;background:#eceef0}.hu-color-picker.light .colors.history{border-top:1px solid #eee}.hu-color-picker canvas{vertical-align:top}.hu-color-picker .color-set,.hu-color-picker .color-show{display:-webkit-box;display:-ms-flexbox;display:flex}.hu-color-picker .color-show{margin-top:8px}.monsterinsights-rotate-loader{width:2.5em;height:2.5em;margin:.46875em;padding:0;border-radius:100%;border-color:rgba(0,0,0,0) #3085d6;border-style:solid;border-width:.25em;background-color:rgba(0,0,0,0)!important;color:rgba(0,0,0,0);cursor:default;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}@font-face{font-family:Lato;src:url(../fonts/lato-regular-webfont.woff) format("woff"),url(../fonts/lato-regular-webfont.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-bold-webfont.woff) format("woff"),url(../fonts/lato-bold-webfont.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:text-security-disc;src:url(data:font/woff2;base64,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) format("woff2"),url(data:font/woff;base64,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) format("woff"),url(../fonts/text-security-disc.ttf) format("truetype")}@font-face{font-family:Misettings;src:url(../fonts/icons.woff2) format("woff2"),url(../fonts/icons.woff) format("woff"),url(../fonts/icons.ttf) format("truetype"),url(../fonts/icons.otf) format("opentype");font-weight:400;font-style:normal}[class*=monstericon-]:before,body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before,body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before,body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.monstericon-times-circle:before{content:"\f01b"}.monstericon-times:before{content:"\f021"}.monstericon-info-circle-regular:before{content:"\f01e"}.monstericon-arrow{-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);display:inline-block}.monstericon-arrow.monstericon-down{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.monstericon-arrow:before{content:"\f01f"}.monstericon-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"}@media (max-width:782px){.monsterinsights-notices-area{margin-left:10px;margin-right:10px}}.monsterinsights-notice{position:relative;color:#444}.monsterinsights-notice .monsterinsights-notice-inner{margin-top:25px;padding:20px;background:#fff;border-left:3px solid;line-height:1.5;font-size:14px}.monsterinsights-notice .monsterinsights-notice-inner .notice-title{color:#393f4c;font-weight:700;display:block;margin:0 0 6px;padding:0}@media (max-width:782px){.monsterinsights-notice .monsterinsights-notice-inner{padding:10px}}.monsterinsights-notice.monsterinsights-notice-error .monsterinsights-notice-inner{border-left-color:#ea4e64}.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-inner{border-left-color:#f5c953}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-inner{border-left-color:#509fe2}.monsterinsights-notice.monsterinsights-notice-info-xl .monsterinsights-notice-inner{border:1px solid #509fe2;border-left-width:3px;color:#777}.monsterinsights-notice.monsterinsights-notice-info-xl .monsterinsights-notice-inner .monsterinsights-button{color:#fff;margin:15px 0 0}.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-inner{border-left-color:#5cc0a5}.monsterinsights-notice .notice-content{margin-right:20px}.monsterinsights-notice .notice-content a{color:#444}.monsterinsights-notice .dismiss-notice{border:none;background:none;padding:0;margin:0;display:inline-block;cursor:pointer;color:#acbdc9;position:relative;float:right}.monsterinsights-notice .dismiss-notice:focus,.monsterinsights-notice .dismiss-notice:hover{color:#444}.monsterinsights-notice.monsterinsights-notice-info .notice-content,.monsterinsights-notice.monsterinsights-notice-success .notice-content,.monsterinsights-notice.monsterinsights-notice-warning .notice-content{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:425px){.monsterinsights-notice.monsterinsights-notice-info .notice-content,.monsterinsights-notice.monsterinsights-notice-success .notice-content,.monsterinsights-notice.monsterinsights-notice-warning .notice-content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-button{-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;margin-right:-20px;margin-left:auto}@media (max-width:782px){.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-button{margin-left:0}}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-button{margin-top:0;padding:10px 16px 8px;line-height:1;font-size:14px;font-weight:600}@media (max-width:782px){.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-button{margin-top:10px;margin-left:0}}.monsterinsights-notice.monsterinsights-notice-error .monsterinsights-button{margin-top:10px;margin-left:0;color:#fff}body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-end,body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-right{top:32px}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-end,body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-right{top:42px;right:auto;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast{border-radius:0;padding:9px;border-left:3px solid #fff}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast{width:80vw}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-success{border-left-color:#5cc0a5}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-info{border-left-color:#509fe2}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-error{border-left-color:#ea4e64}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-title{color:#393f4c;font-size:13px;font-weight:400}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{font-size:15px;width:10px;height:10px;line-height:10px}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{padding:9px;line-height:0}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon{width:14px;height:14px;min-width:14px;margin:0;border:0}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info{border:none;position:relative}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before{content:"\f01e";position:absolute;top:-1px;left:0;color:#509fe2;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info .swal2-icon-text{display:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error{border:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before{content:"\f023";position:absolute;top:-1px;left:0;color:#ea4e64;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error .swal2-x-mark *{display:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon [class^=-ring]{width:14px;height:14px;top:0;left:0}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:14px;height:14px;top:0;left:0;border:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{content:"\f027";position:absolute;top:-1px;left:0;color:#5cc0a5;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success [class^=swal2-success-line]{display:none}@-webkit-keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@-webkit-keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}to{top:2.8125em;left:.875em;width:1.5625em}}@keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}to{top:2.8125em;left:.875em;width:1.5625em}}@-webkit-keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}to{top:2.375em;right:.5em;width:2.9375em}}@keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}to{top:2.375em;right:.5em;width:2.9375em}}@-webkit-keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}5%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}12%{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}to{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}}@keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}5%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}12%{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}to{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}}@-webkit-keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@-webkit-keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}@keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}.monsterinsights_page body.swal2-toast-shown .swal2-container,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-shown{background-color:rgba(0,0,0,0)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top{top:0;right:auto;bottom:auto;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;right:0;bottom:auto;left:auto}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-start{top:0;right:auto;bottom:auto;left:0}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-start{top:50%;right:auto;bottom:auto;left:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center{top:50%;right:auto;bottom:auto;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-right{top:50%;right:0;bottom:auto;left:auto;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-start{top:auto;right:auto;bottom:0;left:0}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom{top:auto;right:auto;bottom:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;right:0;bottom:0;left:auto}.monsterinsights_page body.swal2-toast-column .swal2-toast{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-actions{-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;height:2.2em;margin-top:.3125em}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-loading{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-input{height:2em;margin:.3125em auto;font-size:1em}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-validation-message{font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast{-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:auto;padding:.625em;-webkit-box-shadow:0 0 .625em #d9d9d9;box-shadow:0 0 .625em #d9d9d9;overflow-y:hidden}.monsterinsights_page .swal2-popup.swal2-toast,.monsterinsights_page .swal2-popup.swal2-toast .swal2-header{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.monsterinsights_page .swal2-popup.swal2-toast .swal2-title{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin:0 .6em;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{position:static;width:.8em;height:.8em;line-height:.8}.monsterinsights_page .swal2-popup.swal2-toast .swal2-content{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon{width:2em;min-width:2em;height:2em;margin:0}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon-text{font-size:2em;font-weight:700;line-height:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-actions{height:auto;margin:0 .3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-styled{margin:0 .3125em;padding:.3125em .625em;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-styled:focus{-webkit-box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4);box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4)}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{position:absolute;width:2em;height:2.8125em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);border-radius:50%}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.25em;left:-.9375em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:2em 2em;-ms-transform-origin:2em 2em;transform-origin:2em 2em;border-radius:4em 0 0 4em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.25em;left:.9375em;-webkit-transform-origin:0 2em;-ms-transform-origin:0 2em;transform-origin:0 2em;border-radius:0 4em 4em 0}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;left:.4375em;width:.4375em;height:2.6875em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;left:.1875em;width:.75em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;right:.1875em;width:1.375em}.monsterinsights_page .swal2-popup.swal2-toast.swal2-show{-webkit-animation:showSweetToast .5s;animation:showSweetToast .5s}.monsterinsights_page .swal2-popup.swal2-toast.swal2-hide{-webkit-animation:hideSweetToast .2s forwards;animation:hideSweetToast .2s forwards}.monsterinsights_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:animate-toast-success-tip .75s;animation:animate-toast-success-tip .75s}.monsterinsights_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:animate-toast-success-long .75s;animation:animate-toast-success-long .75s}@-webkit-keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(2deg);transform:translateY(-.625em) rotate(2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(-2deg);transform:translateY(0) rotate(-2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(2deg);transform:translateY(.3125em) rotate(2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(2deg);transform:translateY(-.625em) rotate(2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(-2deg);transform:translateY(0) rotate(-2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(2deg);transform:translateY(.3125em) rotate(2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@-webkit-keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(1deg);transform:rotate(1deg);opacity:0}}@keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(1deg);transform:rotate(1deg);opacity:0}}@-webkit-keyframes animate-toast-success-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}to{top:1.125em;left:.1875em;width:.75em}}@keyframes animate-toast-success-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}to{top:1.125em;left:.1875em;width:.75em}}@-webkit-keyframes animate-toast-success-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}to{top:.9375em;right:.1875em;width:1.375em}}@keyframes animate-toast-success-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}to{top:.9375em;right:.1875em;width:1.375em}}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}.monsterinsights_page body.swal2-height-auto{height:auto!important}.monsterinsights_page body.swal2-no-backdrop .swal2-shown{top:auto;right:auto;bottom:auto;left:auto;background-color:rgba(0,0,0,0)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown>.swal2-modal{-webkit-box-shadow:0 0 10px rgba(0,0,0,.4);box-shadow:0 0 10px rgba(0,0,0,.4)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top{top:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-start{top:0;left:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-right{top:0;right:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center{top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-start{top:50%;left:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-right{top:50%;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom{bottom:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-start{bottom:0;left:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-right{right:0;bottom:0}.monsterinsights_page .swal2-container{display:-webkit-box;display:-ms-flexbox;display:flex;position:fixed;top:0;right:0;bottom:0;left:0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:10px;background-color:rgba(0,0,0,0);z-index:1060;overflow-x:hidden;-webkit-overflow-scrolling:touch}.monsterinsights_page .swal2-container.swal2-top{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights_page .swal2-container.swal2-top-left,.monsterinsights_page .swal2-container.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights_page .swal2-container.swal2-top-end,.monsterinsights_page .swal2-container.swal2-top-right{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.monsterinsights_page .swal2-container.swal2-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-container.swal2-center-left,.monsterinsights_page .swal2-container.swal2-center-start{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights_page .swal2-container.swal2-center-end,.monsterinsights_page .swal2-container.swal2-center-right{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.monsterinsights_page .swal2-container.swal2-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights_page .swal2-container.swal2-bottom-left,.monsterinsights_page .swal2-container.swal2-bottom-start{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights_page .swal2-container.swal2-bottom-end,.monsterinsights_page .swal2-container.swal2-bottom-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.monsterinsights_page .swal2-container.swal2-grow-fullscreen>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;-ms-flex-pack:center}.monsterinsights_page .swal2-container.swal2-grow-fullscreen>.swal2-modal,.monsterinsights_page .swal2-container.swal2-grow-row>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-webkit-box-pack:center;justify-content:center}.monsterinsights_page .swal2-container.swal2-grow-row>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-ms-flex-pack:center}.monsterinsights_page .swal2-container.swal2-grow-column{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-start,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-start,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-right,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-right,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights_page .swal2-container.swal2-grow-column>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page .swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal{margin:auto}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.monsterinsights_page .swal2-container .swal2-modal{margin:0!important}}.monsterinsights_page .swal2-container.swal2-fade{-webkit-transition:background-color .1s;transition:background-color .1s}.monsterinsights_page .swal2-container.swal2-shown{background-color:rgba(0,0,0,.4)}.monsterinsights_page .swal2-popup{display:none;position:relative;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:32em;max-width:100%;padding:1.25em;border-radius:.3125em;background:#fff;font-family:inherit;font-size:1rem;-webkit-box-sizing:border-box;box-sizing:border-box;left:0;top:0}.monsterinsights_page .swal2-popup:focus{outline:0}.monsterinsights_page .swal2-popup.swal2-loading{overflow-y:hidden}.monsterinsights_page .swal2-popup .swal2-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-popup .swal2-title{display:block;position:relative;max-width:100%;margin:0 0 .4em;padding:0;color:#595959;font-size:1.875em;font-weight:600;text-align:center;text-transform:none;word-wrap:break-word}.monsterinsights_page .swal2-popup .swal2-actions{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em auto 0;z-index:1}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:hover{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.1)),to(rgba(0,0,0,.1)));background-image:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1))}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:active{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.2)),to(rgba(0,0,0,.2)));background-image:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2))}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-confirm{width:2.5em;height:2.5em;margin:.46875em;padding:0;border-radius:100%;border:.25em solid rgba(0,0,0,0);background-color:rgba(0,0,0,0)!important;color:rgba(0,0,0,0);cursor:default;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-cancel{margin-right:30px;margin-left:30px}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm:after{display:inline-block;width:15px;height:15px;margin-left:5px;border-radius:50%;border:3px solid #999;border-right-color:rgba(0,0,0,0);-webkit-box-shadow:1px 1px 1px #fff;box-shadow:1px 1px 1px #fff;content:"";-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal}.monsterinsights_page .swal2-popup .swal2-styled{margin:.3125em;padding:.625em 2em;font-weight:500;-webkit-box-shadow:none;box-shadow:none}.monsterinsights_page .swal2-popup .swal2-styled:not([disabled]){cursor:pointer}.monsterinsights_page .swal2-popup .swal2-styled.swal2-confirm{border:0;border-radius:.25em;background:initial;background-color:#3085d6;color:#fff;font-size:1.0625em}.monsterinsights_page .swal2-popup .swal2-styled.swal2-cancel{border:0;border-radius:.25em;background:initial;background-color:#aaa;color:#fff;font-size:1.0625em}.monsterinsights_page .swal2-popup .swal2-styled:focus{outline:0;-webkit-box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4);box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4)}.monsterinsights_page .swal2-popup .swal2-styled::-moz-focus-inner{border:0}.monsterinsights_page .swal2-popup .swal2-footer{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em 0 0;padding:1em 0 0;border-top:1px solid #eee;color:#545454;font-size:1em}.monsterinsights_page .swal2-popup .swal2-image{max-width:100%;margin:1.25em auto}.monsterinsights_page .swal2-popup .swal2-close{position:absolute;top:0;right:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:1.2em;height:1.2em;padding:0;-webkit-transition:color .1s ease-out;transition:color .1s ease-out;border:none;border-radius:0;outline:initial;background:0 0;color:#ccc;font-family:serif;font-size:2.5em;line-height:1.2;cursor:pointer;overflow:hidden}.monsterinsights_page .swal2-popup .swal2-close:hover{-webkit-transform:none;-ms-transform:none;transform:none;color:#f27474}.monsterinsights_page .swal2-popup>.swal2-checkbox,.monsterinsights_page .swal2-popup>.swal2-file,.monsterinsights_page .swal2-popup>.swal2-input,.monsterinsights_page .swal2-popup>.swal2-radio,.monsterinsights_page .swal2-popup>.swal2-select,.monsterinsights_page .swal2-popup>.swal2-textarea{display:none}.monsterinsights_page .swal2-popup .swal2-content{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0;padding:0;color:#545454;font-size:1.125em;font-weight:300;line-height:normal;z-index:1;word-wrap:break-word}.monsterinsights_page .swal2-popup #swal2-content{text-align:center}.monsterinsights_page .swal2-popup .swal2-checkbox,.monsterinsights_page .swal2-popup .swal2-file,.monsterinsights_page .swal2-popup .swal2-input,.monsterinsights_page .swal2-popup .swal2-radio,.monsterinsights_page .swal2-popup .swal2-select,.monsterinsights_page .swal2-popup .swal2-textarea{margin:1em auto}.monsterinsights_page .swal2-popup .swal2-file,.monsterinsights_page .swal2-popup .swal2-input,.monsterinsights_page .swal2-popup .swal2-textarea{width:100%;-webkit-transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,box-shadow .3s;transition:border-color .3s,box-shadow .3s,-webkit-box-shadow .3s;border:1px solid #d9d9d9;border-radius:.1875em;font-size:1.125em;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.06);box-shadow:inset 0 1px 1px rgba(0,0,0,.06);-webkit-box-sizing:border-box;box-sizing:border-box}.monsterinsights_page .swal2-popup .swal2-file.swal2-inputerror,.monsterinsights_page .swal2-popup .swal2-input.swal2-inputerror,.monsterinsights_page .swal2-popup .swal2-textarea.swal2-inputerror{border-color:#f27474!important;-webkit-box-shadow:0 0 2px #f27474!important;box-shadow:0 0 2px #f27474!important}.monsterinsights_page .swal2-popup .swal2-file:focus,.monsterinsights_page .swal2-popup .swal2-input:focus,.monsterinsights_page .swal2-popup .swal2-textarea:focus{border:1px solid #b4dbed;outline:0;-webkit-box-shadow:0 0 3px #c4e6f5;box-shadow:0 0 3px #c4e6f5}.monsterinsights_page .swal2-popup .swal2-file::-webkit-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-webkit-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-webkit-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::-moz-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-moz-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-moz-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file:-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input:-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea:-ms-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-ms-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::placeholder,.monsterinsights_page .swal2-popup .swal2-input::placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-range input{width:80%}.monsterinsights_page .swal2-popup .swal2-range output{width:20%;font-weight:600;text-align:center}.monsterinsights_page .swal2-popup .swal2-range input,.monsterinsights_page .swal2-popup .swal2-range output{height:2.625em;margin:1em auto;padding:0;font-size:1.125em;line-height:2.625em}.monsterinsights_page .swal2-popup .swal2-input{height:2.625em;padding:0 .75em}.monsterinsights_page .swal2-popup .swal2-input[type=number]{max-width:10em}.monsterinsights_page .swal2-popup .swal2-file{font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-textarea{height:6.75em;padding:.75em}.monsterinsights_page .swal2-popup .swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;color:#545454;font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-checkbox,.monsterinsights_page .swal2-popup .swal2-radio{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page .swal2-popup .swal2-checkbox label,.monsterinsights_page .swal2-popup .swal2-radio label{margin:0 .6em;font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-checkbox input,.monsterinsights_page .swal2-popup .swal2-radio input{margin:0 .4em}.monsterinsights_page .swal2-popup .swal2-validation-message{display:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:.625em;background:#f0f0f0;color:#666;font-size:1em;font-weight:300;overflow:hidden}.monsterinsights_page .swal2-popup .swal2-validation-message:before{display:inline-block;width:1.5em;min-width:1.5em;height:1.5em;margin:0 .625em;border-radius:50%;background-color:#f27474;color:#fff;font-weight:600;line-height:1.5em;text-align:center;content:"!";zoom:normal}@supports (-ms-accelerator:true){.monsterinsights_page .swal2-range input{width:100%!important}.monsterinsights_page .swal2-range output{display:none}}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.monsterinsights_page .swal2-range input{width:100%!important}.monsterinsights_page .swal2-range output{display:none}}@-moz-document url-prefix(){.monsterinsights_page .swal2-close:focus{outline:2px solid rgba(50,100,150,.4)}}.monsterinsights_page .swal2-icon{position:relative;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:5em;height:5em;margin:1.25em auto 1.875em;border:.25em solid rgba(0,0,0,0);border-radius:50%;line-height:5em;cursor:default;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;zoom:normal}.monsterinsights_page .swal2-icon-text{font-size:3.75em}.monsterinsights_page .swal2-icon.swal2-error{border-color:#f27474}.monsterinsights_page .swal2-icon.swal2-error .swal2-x-mark{position:relative;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.monsterinsights_page .swal2-icon.swal2-error [class^=swal2-x-mark-line]{display:block;position:absolute;top:2.3125em;width:2.9375em;height:.3125em;border-radius:.125em;background-color:#f27474}.monsterinsights_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:1.0625em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.monsterinsights_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:1em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.monsterinsights_page .swal2-icon.swal2-warning{border-color:#facea8;color:#f8bb86}.monsterinsights_page .swal2-icon.swal2-info{border-color:#9de0f6;color:#3fc3ee;font-size:1rem}.monsterinsights_page .swal2-icon.swal2-question{border-color:#c9dae1;color:#87adbd}.monsterinsights_page .swal2-icon.swal2-success{border-color:#a5dc86}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-circular-line]{position:absolute;width:3.75em;height:7.5em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);border-radius:50%}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.4375em;left:-2.0635em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:3.75em 3.75em;-ms-transform-origin:3.75em 3.75em;transform-origin:3.75em 3.75em;border-radius:7.5em 0 0 7.5em}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.6875em;left:1.875em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:0 3.75em;-ms-transform-origin:0 3.75em;transform-origin:0 3.75em;border-radius:0 7.5em 7.5em 0}.monsterinsights_page .swal2-icon.swal2-success .swal2-success-ring{position:absolute;top:-.25em;left:-.25em;width:100%;height:100%;border:.25em solid rgba(165,220,134,.3);border-radius:50%;z-index:2;-webkit-box-sizing:content-box;box-sizing:content-box}.monsterinsights_page .swal2-icon.swal2-success .swal2-success-fix{position:absolute;top:.5em;left:1.625em;width:.4375em;height:5.625em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);z-index:1}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line]{display:block;position:absolute;height:.3125em;border-radius:.125em;background-color:#a5dc86;z-index:2}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{top:2.875em;left:.875em;width:1.5625em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:2.375em;right:.5em;width:2.9375em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.monsterinsights_page .swal2-progresssteps{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 0 1.25em;padding:0;font-weight:600}.monsterinsights_page .swal2-progresssteps li{display:inline-block;position:relative}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle{width:2em;height:2em;border-radius:2em;background:#3085d6;color:#fff;line-height:2em;text-align:center;z-index:20}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle:first-child{margin-left:0}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle:last-child{margin-right:0}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep{background:#3085d6}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progresscircle,.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progressline{background:#add8e6}.monsterinsights_page .swal2-progresssteps .swal2-progressline{width:2.5em;height:.4em;margin:0 -1px;background:#3085d6;z-index:10}.monsterinsights_page [class^=swal2]{-webkit-tap-highlight-color:transparent}.monsterinsights_page .swal2-show{-webkit-animation:swal2-show .3s;animation:swal2-show .3s}.monsterinsights_page .swal2-show.swal2-noanimation{-webkit-animation:none;animation:none}.monsterinsights_page .swal2-hide{-webkit-animation:swal2-hide .15s forwards;animation:swal2-hide .15s forwards}.monsterinsights_page .swal2-hide.swal2-noanimation{-webkit-animation:none;animation:none}.monsterinsights_page .swal2-rtl .swal2-close{right:auto;left:0}.monsterinsights_page .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:swal2-animate-success-line-tip .75s;animation:swal2-animate-success-line-tip .75s}.monsterinsights_page .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:swal2-animate-success-line-long .75s;animation:swal2-animate-success-line-long .75s}.monsterinsights_page .swal2-animate-success-icon .swal2-success-circular-line-right{-webkit-animation:swal2-rotate-success-circular-line 4.25s ease-in;animation:swal2-rotate-success-circular-line 4.25s ease-in}.monsterinsights_page .swal2-animate-error-icon{-webkit-animation:swal2-animate-error-icon .5s;animation:swal2-animate-error-icon .5s}.monsterinsights_page .swal2-animate-error-icon .swal2-x-mark{-webkit-animation:swal2-animate-error-x-mark .5s;animation:swal2-animate-error-x-mark .5s}@-webkit-keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@media print{.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}.monsterinsights-notifications-display{background:#fff;border-left:3px solid #509fe2;padding:20px;border-radius:3px 0 0 3px;margin-bottom:50px;position:relative}.monsterinsights-settings-content .monsterinsights-notifications-display{margin-top:20px;margin-bottom:20px}.monsterinsights-notifications-display h3{margin:0 0 4px;font-size:16px;line-height:20px}.monsterinsights-notifications-display p{margin-top:4px;margin-bottom:12px;font-size:14px;line-height:18px}.monsterinsights-notifications-display .monsterinsights-notification{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-notifications-display .monsterinsights-notification .monsterinsights-notifications-indicator{padding-top:10px}.monsterinsights-notifications-display .monsterinsights-notification .monsterinsights-notifications-indicator a{position:relative}.monsterinsights-notifications-display .monsterinsights-notification-inner{margin-left:25px}.monsterinsights-notifications-display .monsterinsights-button{margin-right:15px}.monsterinsights-notifications-display .monsterinsights-notification-navigation{position:absolute;right:0;top:100%}.monsterinsights-notifications-display .monsterinsights-notification-navigation button{background:#fff;border:none;border-radius:0 0 3px 3px;margin:0;padding:5px 8px 7px;color:#a8aebd;cursor:pointer}.monsterinsights-notifications-display .monsterinsights-notification-navigation button:focus,.monsterinsights-notifications-display .monsterinsights-notification-navigation button:hover{color:#509fe2}.monsterinsights-notifications-display .monsterinsights-notification-navigation button .monstericon-arrow{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);font-size:10px}.monsterinsights-notifications-display .monsterinsights-notification-navigation button.monsterinsights-notification-previous{margin-right:2px}.monsterinsights-notifications-display .monsterinsights-notification-navigation button.monsterinsights-notification-previous .monstericon-arrow{-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.monsterinsights-notifications-display .monsterinsights-notification-dismiss{border:none;background:none;color:#a8aebd;position:absolute;right:12px;top:9px;padding:0;margin:0;font-size:16px;cursor:pointer}.monsterinsights-notifications-display .monsterinsights-notifications-unread{min-width:10px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:12px;left:18px;border-radius:20px;line-height:16px;color:#fff;font-weight:700;text-align:center;display:inline-block;padding:0 3px}.monsterinsights-report .monsterinsights-notifications-display .monsterinsights-notifications-unread{min-width:16px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:4px;border-radius:20px;line-height:1;color:#fff;font-weight:700;text-align:center;padding:0 2px;left:20px}.monsterinsights-admin-page.monsterinsights-path-about-us .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-path-addons .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-path-tools-import-export .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-path-tools-url-builder .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-reports-page .monsterinsights-notificationsv3-container{margin-right:0}.monsterinsights-admin-page .monsterinsights-notificationsv3-container{display:inline-block;margin-right:20px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-number{position:absolute;top:-11px;min-width:20px;height:20px;line-height:20px;display:block;background:#eb5757;border-radius:20px;font-size:12px;color:#fff;font-weight:700;text-align:center;padding:0 6px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-number.number-greater-than-10{right:-13px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-number.number-less-than-10{right:-10px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-dismissed-number{min-width:24px;height:24px;background:#7c869d;border-radius:20px;display:inline-block;text-align:center;vertical-align:middle;line-height:24px;color:#fff;font-size:14px;font-weight:700;padding:0 8px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-no-notifications{text-align:center;position:absolute;top:50%;margin-top:-69px;width:100%}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-no-notifications h4{font-size:16px;color:#7c869d}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button{position:relative}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button{position:absolute;top:21px;right:15px}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button{background:#f0f2f4;border-radius:3px;padding:11px 7px;line-height:0;vertical-align:middle;margin-top:-2px;border:solid #d3d7de;border-width:1px 1px 2px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button{display:inline-block}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button:hover{background:#e7eaec;border-color:#d3d7de;outline:none}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-notificationsv3-inbox-number{cursor:pointer}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar{width:440px;position:fixed;top:32px;right:0;background:#fff;z-index:1001;overflow:scroll;height:100%;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar{top:46px;width:300px}}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(50px)}to{opacity:1;-webkit-transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(50px);transform:translateX(50px)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar.monsterinsights-notificationsv3-sidebar-in{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-single-notification{padding:0 16px;overflow:hidden}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top{background:#2679c1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:50px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-title{width:50%}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-title svg{margin-right:10px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-title h3{display:inline-block;color:#fff;font-size:18px;font-weight:700}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions{width:50%;text-align:right}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button{color:#fff;text-decoration:underline;border:0;padding:0;background:rgba(0,0,0,0);border-radius:0}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button{display:inline-block}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button:hover{color:#efe5e5}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button:focus{outline:none}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close{margin-left:12px;vertical-align:bottom}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close:active svg path,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close:focus svg path,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close:hover svg path{fill:#efe5e5}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:60px;border-bottom:1px solid #e2e4e9;margin:0 16px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count{width:50%}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count .monsterinsights-notificationsv3-inbox-number{position:relative;display:inline-block;top:inherit;right:inherit;min-width:24px;height:24px;line-height:24px;margin-right:8px;padding:0 8px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count .monsterinsights-notificationsv3-dismissed-number{margin-right:8px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count h4{display:inline-block}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions{width:50%;text-align:right}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span{text-decoration:underline;color:#99a1b3;cursor:pointer}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span:hover{color:#a9b1c3}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications{display:block;margin-bottom:32px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications{margin-bottom:46px}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification{border-bottom:1px solid #e2e4e9;padding-bottom:24px;display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-icon{width:54px;float:left;text-align:center;padding-top:24px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-icon{float:none;margin:0 auto}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details{float:left;width:354px;padding-top:20px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details{width:260px}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-title h5{margin-top:0;margin-bottom:0;color:#393f4c;font-size:13px;font-weight:700;width:70%;display:inline-block}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-title h5{width:65%}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-title span{color:#7f899f;font-size:13px;float:right}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-content p{color:#393f4c;font-size:13px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-top:2px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button{display:block;background:#f0f2f4;border:1px solid #d3d7de;border-radius:3px;font-weight:500;font-size:13px;color:#393f4c;letter-spacing:.02em;padding:6px 11px;margin-right:10px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button:hover{background:#d3d7de}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span{font-size:13px;color:#7f899f;cursor:pointer}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span:hover{color:#a9b1c3}.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}.monsterinsights-conditional-logic-container button:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-header{margin-bottom:30px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-header .monsterinsights-conditional-rule-sets-number{float:right}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator{text-align:center;font-weight:700;display:block;margin:0 auto 20px;position:relative}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:after,.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:before{content:"";position:absolute;top:45%;width:45%;height:2px;background:#d6e2ed;margin-top:-1px}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:before{left:0}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:after{right:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:24px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column{width:100%;margin-right:18px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field{text-transform:capitalize;width:100%;height:38px;min-height:38px;line-height:38px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field.text-input{padding:0 8px;border-color:#ddd;text-transform:none;border-radius:5px;-webkit-box-sizing:border-box;box-sizing:border-box;height:38px;margin-top:0;line-height:38px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field input[type=text]{padding-top:5px;padding-bottom:5px;height:inherit}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field.multiselect--active .multiselect__tags .multiselect__spinner{z-index:1}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags{padding:0;height:38px;min-height:38px;border-color:#ddd;margin-top:0;-webkit-box-sizing:border-box;box-sizing:border-box}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags input[type=text]{border:0;height:36px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__single{margin-bottom:0;padding:0 8px;line-height:36px;font-size:14px;white-space:pre}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__placeholder{display:block;margin-bottom:0;line-height:36px;padding:0 8px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__spinner{width:35px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .add-new-condition{padding:6px 12px;margin:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .add-new-condition:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition{border:0;padding:0;margin:0;background:rgba(0,0,0,0)}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition .monstericon-times-circle{color:#dc3232;cursor:pointer;padding:0;margin:0 15px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition .monstericon-times-circle:focus{outline:0}.monsterinsights-upload-media-wrapper .monsterinsights-dark{display:block}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media-label{margin-bottom:0}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media{display:block;width:100%;margin-top:20px;position:relative;max-width:300px}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media .monsterinsights-uploaded-media-overlay{display:none;background:rgba(0,0,0,.7);width:100%;position:absolute;top:0;left:0;height:100%;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media .monsterinsights-uploaded-media-overlay .monsterinsights-remove-uploaded-media{color:#fff;text-decoration:underline;margin-left:auto;cursor:pointer;padding:0 10px 10px 0}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media .monsterinsights-uploaded-media-overlay .monsterinsights-remove-uploaded-media:hover{text-decoration:none}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media:hover .monsterinsights-uploaded-media-overlay{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media img{max-width:100%;display:inline-block}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media{overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;margin-top:20px}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-input{width:73%;margin-right:2%;float:left;position:relative}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button{width:25%;float:left;font-size:15px}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button:active,.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button:focus,.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button:hover{outline:none}.monsterinsights-email-summaries-settings a{color:#509fe2!important}.monsterinsights-email-summaries-settings a:focus,.monsterinsights-email-summaries-settings a:hover{color:#393f4c!important}.monsterinsights-email-summaries-settings .monsterinsights-dark{display:block}.monsterinsights-email-summaries-settings .inline-field .monsterinsights-button:first-child{margin-left:0}.monsterinsights-email-summaries-settings .monsterinsights-settings-input-repeater{margin-bottom:18px}.monsterinsights-email-summaries-settings .monsterinsights-button.monsterinsights-button-disabled{cursor:not-allowed;background:#39967e!important;border-color:#4ab99b!important}.monsterinsights-accordion .monsterinsights-accordion{padding:0;border:1px solid #e0e0e0}.monsterinsights-accordion .monsterinsights-accordion div:not(:last-child){border-bottom:1px solid rgba(10,10,10,.1)}.monsterinsights-accordion .monsterinsights-accordion div:last-child .monsterinsights-accordion-item-details{border-radius:5px}.monsterinsights-accordion .monsterinsights-accordion dd{margin-left:0;margin-bottom:0}.monsterinsights-accordion .monsterinsights-accordion-item-trigger{cursor:pointer;outline:none}.monsterinsights-accordion .monsterinsights-accordion-item-details-inner,.monsterinsights-accordion .monsterinsights-accordion-item-trigger{padding:0 20px 30px}.monsterinsights-accordion .monsterinsights-accordion-item.is-active .monsterinsights-accordion-item-title{border-bottom:1px solid #e0e0e0}.monsterinsights-accordion .monsterinsights-accordion-item-title{position:relative;background-color:#fff;cursor:pointer}.monsterinsights-accordion .monsterinsights-accordion-item-title h4.monsterinsights-accordion-item-title-text{font-size:20px;margin-bottom:0;padding-right:1.25rem}.monsterinsights-accordion .monsterinsights-accordion-item-title h4.monsterinsights-accordion-item-title-text .title{padding-left:15px}.monsterinsights-accordion .monsterinsights-accordion-item-trigger{width:100%;text-align:left;background-color:rgba(0,0,0,0);border:none}.monsterinsights-accordion .monsterinsights-accordion-item-trigger-icon{display:block;position:absolute;top:0;right:1.5rem;bottom:0;margin:auto;width:8px;height:8px;border-right:2px solid #363636;border-bottom:2px solid #363636;-webkit-transform:translateY(-2px) rotate(45deg);-ms-transform:translateY(-2px) rotate(45deg);transform:translateY(-2px) rotate(45deg);-webkit-transition:-webkit-transform .2s ease;transition:-webkit-transform .2s ease;transition:transform .2s ease;transition:transform .2s ease,-webkit-transform .2s ease}.monsterinsights-accordion .monsterinsights-accordion-item-trigger-icon.is-active{-webkit-transform:translateY(2px) rotate(225deg);-ms-transform:translateY(2px) rotate(225deg);transform:translateY(2px) rotate(225deg)}.monsterinsights-accordion .monsterinsights-accordion-item-details{overflow:hidden;background-color:#fff;padding-top:15px}.monsterinsights-accordion .monsterinsights-accordion-item-details p,.monsterinsights-accordion .monsterinsights-accordion-item-details ul{font-size:1.2em;line-height:1.8}.monsterinsights-accordion .monsterinsights-accordion-item-enter-active,.monsterinsights-accordion .monsterinsights-accordion-item-leave-active{will-change:height;-webkit-transition:height .2s ease;transition:height .2s ease}.monsterinsights-accordion .monsterinsights-accordion-item-enter,.monsterinsights-accordion .monsterinsights-accordion-item-leave-to{height:0!important}body{background:#f3f6ff;margin:0}.monsterinsights-admin-page,.monsterinsights-admin-page *{-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}#wpcontent,.auto-fold #wpcontent{padding-left:0}.monsterinsights-highlighted-text{color:#64bfa5;font-weight:700}.monsterinsights-bold{font-weight:700}.monsterinsights-bg-img{width:100%;padding-top:66%;position:relative}.monsterinsights-bg-img:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;background-repeat:no-repeat;background-size:contain}.monsterinsights-header{padding:20px 10px;background-color:#f9fbff;min-height:85px}.monsterinsights-settings-panel-network>.monsterinsights-header{background-color:rgba(0,0,0,0)}.monsterinsights-logo-area{float:left;max-width:calc(100vw - 170px)}.monsterinsights-logo-area img{display:block;max-width:100%}@media (max-width:782px){.monsterinsights-logo-area{text-align:center;margin:0 auto;float:none}.monsterinsights-logo-area img{display:inline-block;max-height:35px}}@media (max-width:782px){.monsterinsights-header .monsterinsights-container,.monsterinsights-navigation-bar .monsterinsights-container{padding:0;width:100%}}.monsterinsights-navigation-bar{width:100%;background:#fff;border-top:1px solid #d5e2ed;border-bottom:1px solid #d5e2ed;padding:0 10px}@media (max-width:782px){.monsterinsights-navigation-bar{padding:0;border:0}}@media (max-width:750px){.monsterinsights-navigation-bar{background:none}}.monsterinsights-admin-page{position:relative}.monsterinsights-admin-page .monsterinsights-blocked{position:absolute;top:0;bottom:0;right:0;left:0;background:hsla(0,0%,100%,.5);z-index:999}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-header{padding-bottom:5px}.monsterinsights-admin-page .monsterinsights-header .monsterinsights-button{display:none}}.swal2-popup .swal2-title{line-height:1.2}#footer-left{color:#393f4c}#footer-left .monsterinsights-no-text-decoration{text-decoration:none;color:#fdb72c;font-size:14px}#footer-left a{color:#509fe1}#wpfooter{position:relative}#wpfooter:before{left:20px;right:20px;height:1px;background:#d6e2ed;content:"";position:absolute;top:-12px}.monsterinsights-container{margin:0 auto;max-width:100%;width:750px}.monsterinsights-admin-page .monsterinsights-navigation-tab-link{text-decoration:none;padding:17px 0 15px;border-bottom:2px solid #fff;font-size:14px;color:#393f4c;display:inline-block;margin-right:25px;line-height:1;outline:none;font-family:Lato,sans-serif}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active,.monsterinsights-admin-page .monsterinsights-navigation-tab-link:focus,.monsterinsights-admin-page .monsterinsights-navigation-tab-link:hover{color:#509fe2;border-bottom-color:#509fe2;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active{font-weight:700}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.monsterinsights-navigation-tab-disabled:focus,.monsterinsights-admin-page .monsterinsights-navigation-tab-link.monsterinsights-navigation-tab-disabled:hover{border-bottom-color:rgba(0,0,0,0);color:#393f4c;cursor:default}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.year-in-review{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAANCAYAAACdKY9CAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAJKSURBVHgBjdJbSFMBHMfx/7lMT7qdk5s7IsvWdIqZ6UFNJC+Yl4EGQUkYItHN8NZl7KESohUUVKCst8QoYkTFlLzlhWHZispSK7NWyjbdZmPJ5tbuLk9ZBD0U+H35v3xe/vADAEDgr15nZ3PgPymLi3E0o9F4XJim5P7GtfEpvIJHNYrJE6UXDXF/4MdKec3qrU2pakNS6+YuhULhQL98z3tvR26C58OKgY7aVJjWd/bUT8OuwtGsvSXJuICKQPEyLJZpTvjutI4UURqgiNm7NqE+I1EvXNDu60rShr2mM5K8etOK22H2OrCsCXUbGnD0PgD8a2B0uvKKTySBzVJqC8IsHR3cVhHNCgia3F2N0wKxnuUR4wiCsL8eLj8wxuyM0Q3l5nTTfDwIQhcNVL4HXK6Aqq9Dfu/2xpJoHhmViaEIiTyT1dMzQl0yKjqoI9e5kbStQ0ByMfBhcaCeqQO3n5i1hxgVB/NP8jiRDtzjXIoUb6fPR0h6EONwA9gIHsQXDQNfhMMR8j5Q9nHpp88uN8rEmJjSt1bMshDrSywoa0mNnxKI06fAZZEBTuwCPrMIaMQiPNEavvnZ5fl0WaqnKUnEYK3XhIVBc4GCR6yHDdIvkFw+BwSXghc3xOGBnonOEVdmg+Ly41uNEg7fGeKb8ahIulqSpwH7Ozl4pTtg2aOBN7rWO2NW69UuatrC4qFsJbSjKE5wM5sGX0H7oZu2+f7DbNBSFXqqOj3QnK7M+dcsjOc6Tz6sOEbCy+v7W56runvVF8rzYQ39AJVT15Tcu/1IAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-position:0 50%;padding-left:18px;font-weight:700}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-navigation-tab-link{width:100%;text-align:center;padding:10px;color:#509fe2;font-size:16px;background:#fff;border:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active{display:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link:focus{color:#393f4c;text-decoration:underline}}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray{background:#8ea4b4;border-color:#738ea1;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray:hover{background-color:#596771;border-color:#738ea1}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray.monsterinsights-button-disabled{pointer-events:none}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text{background:rgba(0,0,0,0);border:none;color:#509fe2;padding:0;border-radius:0;text-decoration:underline}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text:hover{background:rgba(0,0,0,0);color:#393f4c}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-small{font-size:13px;line-height:20px;padding:5px 10px}.monsterinsights-green-text{color:#5cc0a5;font-weight:700}@media (max-width:782px){.wp-responsive-open #wpbody{margin-left:-18px}}.monsterinsights-mobile-nav-trigger{color:#393f4c;font-size:16px;font-weight:500;width:100%;display:block;border-color:#d6e2ed;border-style:solid;border-width:1px 0;background:#fff;padding:15px 10px;line-height:1;margin:0}@media (min-width:783px){.monsterinsights-mobile-nav-trigger{display:none}}.monsterinsights-mobile-nav-trigger i{color:#acbdc9;margin-left:10px;vertical-align:middle}@media (max-width:782px){.monsterinsights-main-navigation{background:#fff;height:0;overflow:hidden}.monsterinsights-main-navigation.monsterinsights-main-navigation-open{padding:10px 0;height:auto;border-bottom:1px solid #d6e2ed}}@media (min-width:782px){.wp-admin .monsterinsights-swal{margin-left:160px}.auto-fold .wp-admin .monsterinsights-swal{margin-left:36px}}@media (min-width:961px){.auto-fold .wp-admin .monsterinsights-swal{margin-left:160px}.folded .wp-admin .monsterinsights-swal{margin-left:36px}}.monsterinsights-modal{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.8);z-index:99999;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights-modal .monsterinsights-modal-inner{background:#fff;padding:50px;border:1px solid #d6e2ed;text-align:center;width:750px}.monsterinsights-modal .monsterinsights-modal-inner h2{margin-top:0;margin-bottom:0;line-height:1.4}.monsterinsights-modal .monsterinsights-modal-inner p{margin-bottom:0}.monsterinsights-modal .monsterinsights-modal-inner .monsterinsights-modal-buttons{margin-top:50px}.monsterinsights-modal .monsterinsights-modal-inner .monsterinsights-button{margin:0 10px}.monsterinsights-welcome-overlay{position:fixed;top:0;left:0;right:0;bottom:0;z-index:99999999;font-family:inherit;overflow:hidden;background-color:rgba(0,0,0,.5)}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-inner{background:#fff;padding:30px;width:70%;margin:0 auto;position:relative;top:10%;height:80%}.monsterinsights-welcome-overlay .monsterinsights-overlay-close{background:none;border:none;position:absolute;top:5px;right:7px;padding:0;color:#777}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-content{height:100%}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-content iframe{height:100%;width:100%}.monsterinsights-float-right{float:right}.monsterinsights-loading-spinner-inline{text-align:center;margin:25px}.monsterinsights-loading-spinner-inline .monsterinsights-loading-spinner-inline-loader-holder{display:inline-block}.monsterinsights-semrush-cta{background:#fff;border-left:3px solid #338eef;padding:20px 26px;border-radius:3px 0 0 3px;position:relative}.monsterinsights-semrush-cta br{display:none}.monsterinsights-semrush-cta .monsterinsights-semrush-cta-close{position:absolute;top:12px;right:12px;cursor:pointer;border:0;background:rgba(0,0,0,0);padding:0;margin:0;outline:none}.monsterinsights-semrush-cta .monsterinsights-semrush-cta-title{font-weight:700;font-size:16px;line-height:20px;color:#393f4c;margin:0}.monsterinsights-semrush-cta .monsterinsights-semrush-cta-content{font-weight:400;font-size:14px;color:#393f4c}.monsterinsights-semrush-cta .monsterinsights-button{background:#338eef;border-radius:3px;font-weight:400;font-size:14px;border-width:0;padding:7px 12px}.monsterinsights-semrush-cta .monsterinsights-button:active,.monsterinsights-semrush-cta .monsterinsights-button:focus,.monsterinsights-semrush-cta .monsterinsights-button:hover{background:#3088e6;outline:none}.monsterinsights-row-highlight{-webkit-animation-name:color;animation-name:color;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-iteration-count:2;animation-iteration-count:2}@-webkit-keyframes color{0%{background-color:#fff}50%{background-color:#509fe2}to{background-color:#fff}}@keyframes color{0%{background-color:#fff}50%{background-color:#509fe2}to{background-color:#fff}}.monsterinsights-clearfix:after{content:"";clear:both;display:table}.monsterinsights-path-seo .monsterinsights-header{display:none}#monsterinsights-seo{background-color:#fff;margin-bottom:-54px}@media screen and (max-width:1023px){#monsterinsights-seo{margin-bottom:-100px}}#monsterinsights-seo{padding:84px 0 0}#monsterinsights-seo .monsterinsights-flex{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}@media screen and (max-width:1023px){#monsterinsights-seo .monsterinsights-flex{display:block}}#monsterinsights-seo .monsterinsights-flex.monsterinsights-justify-start{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:start}#monsterinsights-seo .monsterinsights-install-button button{background-color:#00aa63;border-radius:7px;outline:0;border:1px solid #00aa63;padding:0 35px 3px 0;font-size:16px;color:#fff;font-weight:700;cursor:pointer;width:232px;height:42px;position:relative}@media screen and (max-width:1023px){#monsterinsights-seo .monsterinsights-install-button button{margin-bottom:15px}}#monsterinsights-seo .monsterinsights-install-button button:hover,#monsterinsights-seo .monsterinsights-install-button button:hover span.monsterinsights-download-icon{background-color:rgba(0,170,99,.9)}#monsterinsights-seo .monsterinsights-install-button button span.monsterinsights-download-icon{position:absolute;right:0;top:0;display:inline-block;width:42px;height:41px;background-color:#009959;border-top-right-radius:5px;border-bottom-right-radius:5px}#monsterinsights-seo .monsterinsights-install-button button span.monsterinsights-download-icon i{font-weight:800;margin-top:5px;font-size:22px;display:inline-block}#monsterinsights-seo .installing{opacity:.5}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-wrapper{max-width:1040px;margin:0 auto}@media screen and (max-width:767px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-wrapper{max-width:320px}}@media screen and (min-width:768px) and (max-width:1023px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-wrapper{max-width:768px;padding:0 30px}}@media screen and (min-width:1024px) and (max-width:1139px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-wrapper{padding:0 30px}}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero{position:relative;-ms-flex-line-pack:center;align-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-item-align:center;align-self:center;padding-bottom:9px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero:after{content:"";display:block;width:230px;background-color:#f3f6ff;height:3px;position:absolute;left:50%;bottom:0;-webkit-transform:translate(-50%);-ms-transform:translate(-50%);transform:translate(-50%)}@media screen and (max-width:1023px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-left{width:100%;text-align:center}}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-left .monsterinsights-aioseo-heading{width:538px;margin-bottom:3rem}@media screen and (max-width:1023px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-left .monsterinsights-aioseo-heading{width:100%;text-align:center}}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-left .monsterinsights-aioseo-heading h1{font-size:30px;text-transform:capitalize;line-height:1.2;margin-bottom:0}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-left .monsterinsights-aioseo-heading p{font-size:16px;color:#47525c;line-height:1.3;margin-top:16px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-left .monsterinsights-star-ratings{margin-left:24px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-left .monsterinsights-star-ratings .monsterinsights-stars span.star{margin-left:5px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-left .monsterinsights-star-ratings .monsterinsights-seo-active-installs{font-size:14px;color:#606467;padding:0;margin:2px 0 0 5px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-left .monsterinsights-star-ratings .monsterinsights-seo-downloads-number{font-size:14px;color:#606467;padding-left:8px;position:relative;top:-4px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-right{width:450px;height:382px}@media screen and (max-width:767px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-right{width:320px}}@media screen and (min-width:768px) and (max-width:1023px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-right{width:700px;height:592px;margin-top:60px}}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-right svg{width:100%;height:100%}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container{margin-top:56px;margin-bottom:56px;padding-bottom:56px;position:relative}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container:after{content:"";display:block;width:230px;background-color:#f3f6ff;height:3px;position:absolute;left:50%;bottom:0;-webkit-transform:translate(-50%);-ms-transform:translate(-50%);transform:translate(-50%)}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container h2{font-size:22px;text-align:center;margin:0 0 8px}@media screen and (max-width:767px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container h2{line-height:1.3}}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container p{font-size:16px;text-align:center;margin:15px 0 0;padding:0}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container .monsterinsights-grid{display:grid;grid-template-columns:auto auto auto}@media screen and (max-width:767px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container .monsterinsights-grid{grid-template-columns:auto}}@media screen and (min-width:768px) and (max-width:1139px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container .monsterinsights-grid{grid-gap:25px}}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container .monsterinsights-grid.monsterinsights-aioseo-features{margin-top:58px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container .monsterinsights-grid .monsterinsights-aioseo-feature{width:288px;margin-bottom:32px}@media screen and (max-width:767px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container .monsterinsights-grid .monsterinsights-aioseo-feature{width:320px}}@media screen and (min-width:768px) and (max-width:1023px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container .monsterinsights-grid .monsterinsights-aioseo-feature{width:223px}}@media screen and (min-width:1024px) and (max-width:1139px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container .monsterinsights-grid .monsterinsights-aioseo-feature{width:240px}}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container .monsterinsights-grid .monsterinsights-aioseo-feature h4{font-size:16px;margin:0 0 4px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container .monsterinsights-grid .monsterinsights-aioseo-feature p{text-align:left;font-size:14px;margin:0;padding:0}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container .monsterinsights-grid .monsterinsights-aioseo-feature.monsterinsights-more{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-line-pack:center;align-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:82px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container .monsterinsights-grid .monsterinsights-aioseo-feature.monsterinsights-more h4{font-size:16px;text-align:center}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-install{text-align:center;position:relative;padding-bottom:66px;margin-bottom:56px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-install:after{content:"";display:block;width:230px;background-color:#f3f6ff;height:3px;position:absolute;left:50%;bottom:0;-webkit-transform:translate(-50%);-ms-transform:translate(-50%);transform:translate(-50%)}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-install h3{font-size:22px;margin:0 0 8px;padding:0}@media screen and (max-width:767px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-install h3{line-height:1.3}}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-install p{font-size:16px;padding:0;margin-top:0;margin-bottom:21px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-clients{max-width:762px;margin:0 auto}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-clients h3{font-size:18px;text-align:center;margin-bottom:56px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-clients .monsterinsights-aioseo-client-logos{margin-left:60px;display:grid;grid-template-columns:auto auto auto auto auto auto;-ms-flex-line-pack:center;align-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media screen and (max-width:767px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-clients .monsterinsights-aioseo-client-logos{margin-left:30px;grid-template-columns:auto auto auto}}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-clients .monsterinsights-aioseo-client-logos .monsterinsights-aioseo-client-logo{margin-bottom:60px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-clients .monsterinsights-aioseo-client-logos .monsterinsights-aioseo-client-logo.logo-1{background-image:url(../img/aioseo-client-logo-1.svg);width:77px;height:16px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-clients .monsterinsights-aioseo-client-logos .monsterinsights-aioseo-client-logo.logo-2{background-image:url(../img/aioseo-client-logo-2.svg);width:91px;height:24px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-clients .monsterinsights-aioseo-client-logos .monsterinsights-aioseo-client-logo.logo-3{background-image:url(../img/aioseo-client-logo-3.svg);width:59px;height:40px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-clients .monsterinsights-aioseo-client-logos .monsterinsights-aioseo-client-logo.logo-4{background-image:url(../img/aioseo-client-logo-4.svg);width:50px;height:32px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-clients .monsterinsights-aioseo-client-logos .monsterinsights-aioseo-client-logo.logo-5{background-image:url(../img/aioseo-client-logo-5.svg);width:77px;height:24px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-clients .monsterinsights-aioseo-client-logos .monsterinsights-aioseo-client-logo.logo-6{background-image:url(../img/aioseo-client-logo-6.svg);width:57px;height:48px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-clients .monsterinsights-aioseo-client-logos .monsterinsights-aioseo-client-logo.logo-7{background-image:url(../img/aioseo-client-logo-7.svg);width:78px;height:35px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-clients .monsterinsights-aioseo-client-logos .monsterinsights-aioseo-client-logo.logo-8{background-image:url(../img/aioseo-client-logo-8.svg);width:66px;height:34px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-clients .monsterinsights-aioseo-client-logos .monsterinsights-aioseo-client-logo.logo-9{background-image:url(../img/aioseo-client-logo-9.svg);width:56px;height:34px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-clients .monsterinsights-aioseo-client-logos .monsterinsights-aioseo-client-logo.logo-10{background-image:url(../img/aioseo-client-logo-10.svg);width:59px;height:34px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-clients .monsterinsights-aioseo-client-logos .monsterinsights-aioseo-client-logo.logo-11{background-image:url(../img/aioseo-client-logo-11.svg);width:71px;height:24px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-clients .monsterinsights-aioseo-client-logos .monsterinsights-aioseo-client-logo.logo-12{background-image:url(../img/aioseo-client-logo-12.svg);width:70px;height:26px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-testimonials{color:#141b38;max-width:756px;margin:0 auto}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-testimonials .monsterinsights-aioseo-testimonial{border:1px solid #e6eefc;border-radius:6px;padding:26px 27px 40px 55px;-webkit-box-shadow:rgba(0,0,0,.02) 0 1px 3px 0,rgba(27,31,35,.15) 0 0 0 1px;box-shadow:0 1px 3px 0 rgba(0,0,0,.02),0 0 0 1px rgba(27,31,35,.15);width:353px;position:relative;margin-right:50px;float:left}@media screen and (max-width:767px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-testimonials .monsterinsights-aioseo-testimonial{width:320px;margin-bottom:30px}}@media screen and (min-width:768px) and (max-width:1023px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-testimonials .monsterinsights-aioseo-testimonial{width:329px}}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-testimonials .monsterinsights-aioseo-testimonial:last-child{margin-right:0}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-testimonials .monsterinsights-aioseo-testimonial svg{position:absolute;left:5%;top:14%}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-testimonials .monsterinsights-aioseo-testimonial svg.monsterinsights-testimonial-2-icon{left:5%;top:11.5%}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-testimonials .monsterinsights-aioseo-testimonial p.monsterinsights-text{font-size:16px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-testimonials .monsterinsights-aioseo-testimonial p.monsterinsights-name{font-size:16px;margin:0}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-testimonials .monsterinsights-aioseo-testimonial p.monsterinsights-company{font-size:14px;margin:0;color:#8c8f9a}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-footer{background-color:#005ae0;color:#fff;margin-top:60px}@media screen and (min-width:768px) and (max-width:1023px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-footer .monsterinsights-flex{display:-webkit-box;display:-ms-flexbox;display:flex}}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-footer .monsterinsights-wrapper{height:222px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center}@media screen and (max-width:767px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-footer .monsterinsights-wrapper{height:320px;padding:30px 0 50px}}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-footer .monsterinsights-wrapper .monsterinsights-footer-text{width:60%}@media screen and (max-width:767px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-footer .monsterinsights-wrapper .monsterinsights-footer-text{width:100%;margin-bottom:30px}}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-footer .monsterinsights-wrapper .monsterinsights-footer-text h5{font-size:22px;line-height:1.2;margin-top:0;margin-bottom:10px}@media screen and (max-width:1023px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-footer .monsterinsights-wrapper .monsterinsights-footer-text h5{line-height:1.4}}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-footer .monsterinsights-wrapper .monsterinsights-footer-text p{font-size:16px;padding:0;margin:0}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-hero{text-align:center}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-hero:after{content:"";display:block;width:638px;background-color:#f3f6ff;height:2px;position:absolute;left:50%;bottom:11px;-webkit-transform:translate(-50%);-ms-transform:translate(-50%);transform:translate(-50%)}@media screen and (max-width:767px){#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-hero:after{width:320px}}@media screen and (max-width:767px){#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-hero-screenshot svg{width:315px}}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-heading{max-width:516px;margin:0 auto}@media screen and (max-width:1023px){#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-heading{width:100%}}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-heading h1{font-size:30px;line-height:120%;margin-bottom:10px}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-heading h1 span{color:#005ae0}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-heading p{font-size:18px;padding:0;margin:0 0 32px}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-install-button button{width:200px;height:48px;padding:10px 35px 13px 0}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-install-button button span.monsterinsights-download-icon{height:47px}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-install-button button span.monsterinsights-download-icon svg{margin-bottom:-15px;width:18px;height:18px}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-star-ratings{margin-top:40px;margin-bottom:25px}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-star-ratings span{display:inline-block}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-star-ratings .monsterinsights-seo-downloads-number{position:relative;top:-4px;margin:0 8px;font-size:14px}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-star-ratings svg.circle{padding:0 12px;margin-bottom:5px}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-star-ratings .monsterinsights-seo-active-installs{display:inline-block;font-size:14px;position:relative;top:-3px}@media screen and (max-width:767px){#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-features-container{margin-left:-14px}}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-features{max-width:756px;margin:0 auto;padding-top:62px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center}@media screen and (max-width:767px){#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-features:last-child{padding-top:20px}}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-features .monsterinsights-aioseo-feature{width:350px;height:262px}@media screen and (min-width:768px) and (max-width:1023px){#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-features .monsterinsights-aioseo-feature{width:728px;background-repeat:no-repeat;background-position:50%}}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-features .monsterinsights-aioseo-feature.feature-1-image{background-image:url(../img/aioseo-screen-1.svg)}@media screen and (min-width:768px) and (max-width:1023px){#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-features .monsterinsights-aioseo-feature.feature-1-image{margin-bottom:40px}}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-features .monsterinsights-aioseo-feature.feature-2-image{background-image:url(../img/aioseo-screen-2.svg)}@media screen and (min-width:768px) and (max-width:1023px){#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-features .monsterinsights-aioseo-feature.feature-2-image{margin-top:40px}}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-features .monsterinsights-aioseo-feat-text{width:350px}@media screen and (max-width:767px){#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-features .monsterinsights-aioseo-feat-text{width:320px;padding:20px 0}}@media screen and (min-width:768px) and (max-width:1023px){#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-features .monsterinsights-aioseo-feat-text{margin:0 auto;text-align:center}}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-features .monsterinsights-aioseo-feat-text h3{margin-bottom:20px;line-height:120%}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-features .monsterinsights-aioseo-feat-text p{text-align:left;margin-bottom:20px}@media screen and (min-width:768px) and (max-width:1023px){#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-features .monsterinsights-aioseo-feat-text p{text-align:center}}#monsterinsights-seo .monsterinsights-aioseo.monsterinsights-yoast-installed .monsterinsights-aioseo-features .monsterinsights-aioseo-feat-text a{display:inline-block;color:#005ae0;text-decoration:none;outline:0}.monsterinsights-aioseo-love.monsterinsights-bg-img{padding-top:0;width:154px;height:28px}.monsterinsights-aioseo-love.monsterinsights-bg-img:after{background-image:url(../img/monsterinsights-aioseo.jpg)}body.monsterinsights-woo-insights-page{background:#fff}body.monsterinsights-woo-insights-page #wpbody-content{padding-bottom:0}body.monsterinsights-woo-insights-page #wpfooter{display:none}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside{max-width:992px;margin:0 auto}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside h4{font-size:16px;color:#393f4c;font-weight:400}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-top{margin-top:77px;background-image:url(../img/woo-insights-hero-image.png);background-repeat:no-repeat;background-position:100% 15px;padding-left:16px}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-top .monsterinsights-woo-insights-top-content h1{font-size:40px;line-height:120%;text-transform:capitalize;font-weight:700;color:#393f4c;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAATMAAAAJCAYAAABezsshAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAIsSURBVHgB7ZpBTgIxFED/r8ToQh1OoB7BlXGna03kCN7AeALjDbyBV2Dn1p3s9Ah4AoobCTL9/hkgMO3v4KAJjP63gvZPaWD6+NNfBOVHfDy3DqT2EYzEdgInto/7TLQPN3AfyiBKACEpDQGOofKY4HMBs/hK1/wmPOdulXiesOU524VxBBYwHofc7xz14x/jumKHIYtuQxy3AQ3xmu2TttiuVANhjem9nCZbg6SwkHxJkEkTcFiIIeL3WGwzBvfIX+yCAGILftWLWvl/iCKPyhqDWErpLRyUZYtki0Oa4FpfvIMta5tHT4v/JFaIKLNFEhEF4mUVQSbhiUOSBv9IhTEURVlrLK/johjRk6qQAQeS9QUrZLfzco2JNZdZJq/GcOeWJ3YFmn0oilIbsJvC6KZ5/NjOZfbeOX9ge16BoihKDUkdnJn8lYpMUZQaYxBajcnr7PlTHy+XIFZtC/YOZj2R9siG7QQXq55NMcZyUPkGrXMWzGa1TdwVb/z2ItXiKG6Y8Hex+F42fL87F40zQhFpnmh1uaSqTEQH4liAYrtSjfwxs9+5uEeEa1gzKJfsEhuMWUmdvIXNm4zOq+KM8So5sQVfg2qO8reQRS4f+QHhyI8RjvrIEg4lG4oXE1zjhCd1o8NJAaCVmMHnPedql9MJ+xlHQSLfqFAEmYSfOQjSaOp5G0WpDVnhELxTD4FsvQxYynhDwRZFSvmpB5q7ZiZWQnpFcne7XAD4AhaLADIbxR8GAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-position:0 36px;margin-bottom:9px}@media (max-width:767px){body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-top .monsterinsights-woo-insights-top-content h1 br{display:none}}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-top .monsterinsights-woo-insights-top-content h1 span{color:#338eef}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-top .monsterinsights-woo-insights-top-content h4{margin-top:0;line-height:120%;margin-bottom:31px}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-top .monsterinsights-woo-insights-top-content .monsterinsights-button{background:#3990ec;border-radius:4px;color:#fff;font-size:16px;font-weight:700;border:none;padding:15px 24px}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-top .monsterinsights-woo-insights-top-content .monsterinsights-button svg{margin-left:14px;margin-bottom:0}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-top .monsterinsights-woo-insights-top-content .monsterinsights-button:active,body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-top .monsterinsights-woo-insights-top-content .monsterinsights-button:focus,body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-top .monsterinsights-woo-insights-top-content .monsterinsights-button:hover{background:#278ce0;outline:none}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-middle{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:43px;margin-bottom:54px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-left:16px}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-middle .monsterinsights-woo-insights-content-middle-left{width:29px;margin-top:3px}@media (max-width:767px){body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-middle .monsterinsights-woo-insights-content-middle-content{margin-left:15px}}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-middle .monsterinsights-woo-insights-content-middle-content h4{font-size:20px;line-height:160%;font-weight:700;color:#333;margin:0}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-middle .monsterinsights-woo-insights-content-middle-content p{font-size:16px;font-weight:400;color:#333;margin:0}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features-header{text-align:center;margin-bottom:64px}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features-header h5{font-weight:700;font-size:12px;line-height:110%;text-align:center;letter-spacing:.2em;text-transform:uppercase;color:#2f80ed;margin-top:0;margin-bottom:7px}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features-header h2{font-weight:700;font-size:28px;line-height:110%;color:#23282d;margin:0 0 10px}@media (max-width:767px){body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features-header h2{font-size:20px}}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features-header p{font-weight:400;font-size:16px;line-height:140%;color:#23282d;margin:0}@media (max-width:767px){body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features-header p br{display:none}}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features .monsterinsights-woo-insights-single-feature{position:relative;width:calc(34.6% - 40px);-webkit-box-shadow:0 2px 24px 4px rgba(0,0,0,.03);box-shadow:0 2px 24px 4px rgba(0,0,0,.03);border-radius:10px;margin-bottom:44px;padding:32px 22px 32px 32px}@media (max-width:767px){body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features .monsterinsights-woo-insights-single-feature{width:100%;margin-right:20px;margin-left:20px}}@media screen and (min-width:768px) and (max-width:1024px){body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features .monsterinsights-woo-insights-single-feature{width:calc(50% - 40px)}}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features .monsterinsights-woo-insights-single-feature .monsterinsights-woo-insights-single-feature-icon{min-height:26px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features .monsterinsights-woo-insights-single-feature h3{font-weight:700;font-size:20px;line-height:110%;color:#23282d;margin-top:15px;margin-bottom:17px}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features .monsterinsights-woo-insights-single-feature p{font-weight:400;font-size:14px;line-height:140%;color:rgba(35,40,45,.72);margi-top:0;margin-bottom:17px}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features .monsterinsights-woo-insights-single-feature .monsterinsights-woo-insights-link-addon-install,body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features .monsterinsights-woo-insights-single-feature .monsterinsights-woo-insights-upgrade-link{font-weight:400;font-size:14px;line-height:110%;text-align:center;-webkit-text-decoration-line:underline;text-decoration-line:underline;color:#3990ec}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features .monsterinsights-woo-insights-single-feature .monsterinsights-woo-insights-link-addon-install svg,body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features .monsterinsights-woo-insights-single-feature .monsterinsights-woo-insights-upgrade-link svg{margin-left:7px}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features .monsterinsights-woo-insights-single-feature .monsterinsights-woo-insights-link-addon-install:active,body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features .monsterinsights-woo-insights-single-feature .monsterinsights-woo-insights-link-addon-install:focus,body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features .monsterinsights-woo-insights-single-feature .monsterinsights-woo-insights-link-addon-install:hover,body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features .monsterinsights-woo-insights-single-feature .monsterinsights-woo-insights-upgrade-link:active,body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features .monsterinsights-woo-insights-single-feature .monsterinsights-woo-insights-upgrade-link:focus,body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features .monsterinsights-woo-insights-single-feature .monsterinsights-woo-insights-upgrade-link:hover{color:#007cff;outline:none}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features .monsterinsights-woo-insights-single-feature .monsterinsights-woo-insights-link-addon-install{background:rgba(0,0,0,0);border:0;padding:0;text-align:left;margin-top:2px}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-features-container .monsterinsights-woo-insights-features .monsterinsights-woo-insights-single-feature .monsterinsights-woo-insights-link-addon-install svg{margin-bottom:-5px}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-questions-container{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:30px}@media (max-width:767px){body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-questions-container{display:block;padding:0 20px}}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-questions-container .monsterinsights-woo-insights-questions{width:61%;margin-top:33px}@media (max-width:767px){body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-questions-container .monsterinsights-woo-insights-questions{width:100%;margin-bottom:30px}}@media screen and (min-width:768px) and (max-width:1024px){body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-questions-container .monsterinsights-woo-insights-questions{padding-left:20px}}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-questions-container .monsterinsights-woo-insights-questions h2{font-weight:700;font-size:28px;line-height:120%;text-transform:capitalize;color:#393f4c;margin-top:0;margin-bottom:33px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKUAAAAHCAYAAABp/40/AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAHJSURBVHgB7ZhNTsMwEIVn3AqVFe4JyBVYsmONAHEDuAIngCNwFI7ArkJC4giUE8QgJBBqZxgn/m1TgUQqGjVv0cSeiRvJn58nRuiIyqcjPfrU2rdnMCv8PQMVaS6DCm2lcI8RdDYYs4aFPmYuYIUQcGXst2Lg6aoYIk4bHjASMCFH2kT8GuNsEDnGQWVjDGEY2ruHd8vjb7AQ1qCPyXlhr3P60qxUNfkeHGYUILDqwwHux6dqKGTytPzo+IJYQK/WlC6OfDHU9xn8Cfgp9B74dcGeQelh8i60CFLuOg4i5zACj+3X0Gsr5WFvAp3n/FInOciVXGlQwd4EOL4/nl3QnG6hB6rXvwunaoA3+PZw+uxdb9P109YT8vzKdCKgLC6FppFOk48+zHNSjYwZH9wb+INKtws1a7YcU2ISRMEoVFL2VJIdC2Xnig/EOeSq/GGXixq7ZThGoDwpoeWXjvCg2LWffGfltl7hui+HxdUsRGLvOwGAcceK9E1XWBxS74Or92vVpVoGfwZ+Cn0o2QpoWZYdLCfHl1IrXts/WIZpASSpCSh88fnC1zlMC27Sq5uyJyMQTkac6ydOr/xpiIc8Of1IAWfrkoRX37Hg4bWWRg4HAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-position:0 23px}@media screen and (min-width:768px) and (max-width:1024px){body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-questions-container .monsterinsights-woo-insights-questions h2 br{display:none}}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-questions-container .monsterinsights-woo-insights-questions ul.monsterinsights-woo-insights-questions-list{margin:0;padding:0;list-style:none}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-questions-container .monsterinsights-woo-insights-questions ul.monsterinsights-woo-insights-questions-list li{display:block;font-weight:400;font-size:20px;line-height:110%;color:#23282d;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAANCAYAAABlyXS1AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAABDSURBVHgBfZBBDQAhEAPnHJwEJGARhUhASlkSnrRN+tjM7KcAvfpjoup0gpKgJCgJcsJ3j1eG+1zVRgIkQAIkcGK33bhuKTqR8GZOAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-position:0;padding-left:26px;margin-left:3px;margin-bottom:12px}@media screen and (min-width:768px) and (max-width:1024px){body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-questions-container .monsterinsights-woo-insights-questions ul.monsterinsights-woo-insights-questions-list li{font-size:16px}}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-questions-container .monsterinsights-woo-insights-image{width:39%}@media (max-width:767px){body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-questions-container .monsterinsights-woo-insights-image{width:100%}}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-wrapper-inside .monsterinsights-woo-insights-questions-container .monsterinsights-woo-insights-image img{display:inline-block;max-width:100%}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-call-to-action{background:#3990ec;text-align:center;padding-top:63px;margin-top:66px;padding-bottom:70px}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-call-to-action h2{font-weight:700;font-size:36px;line-height:120%;text-align:center;color:#fff;margin-top:0;margin-bottom:17px}@media (max-width:767px){body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-call-to-action h2 br{display:none}}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-call-to-action h2 span{font-weight:900}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-call-to-action p{margin:0;font-weight:400;font-size:16px;line-height:140%;text-align:center;color:#fff}@media (max-width:767px){body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-call-to-action p br{display:none}}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-call-to-action .monsterinsights-button{background:#1a6fcb;border:1px solid #1762b5;border-radius:4px;color:#fff;font-size:16px;font-weight:700;padding:13px 25px;margin-top:31px}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-call-to-action .monsterinsights-button svg{margin-left:14px;margin-bottom:0}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-call-to-action .monsterinsights-button:active,body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-call-to-action .monsterinsights-button:focus,body.monsterinsights-woo-insights-page .monsterinsights-settings-panel .monsterinsights-woo-insights-call-to-action .monsterinsights-button:hover{background:#2c79cc;border-color:#3377bf;outline:none}body.monsterinsights-woo-insights-page .monsterinsights-settings-panel #monsterinsights-woo-insights-install-addon{display:none}body.monsterinsights-woo-insights-page .monsterinsights-woo-insights-swal .swal2-header .swal2-title{font-weight:700;font-size:24px;line-height:110%;text-align:center;color:#23282d;margin:0}body.monsterinsights-woo-insights-page .monsterinsights-woo-insights-swal .swal2-content{padding:0 7px}body.monsterinsights-woo-insights-page .monsterinsights-woo-insights-swal .swal2-content .monsterinsights-woo-insights-swal-content{border-bottom:1px solid #e0e0e0;padding-bottom:39px}body.monsterinsights-woo-insights-page .monsterinsights-woo-insights-swal .swal2-content .monsterinsights-woo-insights-swal-content p{font-weight:400;font-size:16px;line-height:110%;text-align:center;color:#23282d;margin-top:16px;margin-bottom:0}body.monsterinsights-woo-insights-page .monsterinsights-woo-insights-swal .swal2-content .monsterinsights-woo-insights-swal-content .monsterinsights-button{background:#3990ec;border-radius:4px;color:#fff;font-size:16px;font-weight:700;border:none;padding:13px 25px;display:inline-block;text-decoration:none;margin-top:30px;cursor:pointer}body.monsterinsights-woo-insights-page .monsterinsights-woo-insights-swal .swal2-content .monsterinsights-woo-insights-swal-content .monsterinsights-button:active,body.monsterinsights-woo-insights-page .monsterinsights-woo-insights-swal .swal2-content .monsterinsights-woo-insights-swal-content .monsterinsights-button:focus,body.monsterinsights-woo-insights-page .monsterinsights-woo-insights-swal .swal2-content .monsterinsights-woo-insights-swal-content .monsterinsights-button:hover{background:#278ce0;outline:none}body.monsterinsights-woo-insights-page .monsterinsights-woo-insights-swal .swal2-actions .swal2-styled.swal2-confirm{font-weight:700;font-size:16px;line-height:110%;text-align:center;color:#338eef;padding:0;background:rgba(0,0,0,0)}body.monsterinsights-woo-insights-page .monsterinsights-woo-insights-swal .swal2-actions .swal2-styled.swal2-confirm:active,body.monsterinsights-woo-insights-page .monsterinsights-woo-insights-swal .swal2-actions .swal2-styled.swal2-confirm:focus,body.monsterinsights-woo-insights-page .monsterinsights-woo-insights-swal .swal2-actions .swal2-styled.swal2-confirm:hover{color:#278ce0;background:rgba(0,0,0,0);outline:none}button[data-v-84152f64]{margin-top:3px}.monsterinsights-dark[data-v-3f0b0409]{display:block}.monsterinsights-admin-page fieldset[disabled] .multiselect{pointer-events:none}.monsterinsights-admin-page .multiselect__spinner{position:absolute;right:1px;top:1px;width:48px;height:35px;background:#fff;display:block}.monsterinsights-admin-page .multiselect__spinner:after,.monsterinsights-admin-page .multiselect__spinner:before{position:absolute;content:"";top:50%;left:50%;margin:-8px 0 0 -8px;width:16px;height:16px;border-radius:100%;border:2px solid rgba(0,0,0,0);border-top-color:#b7c9d9;-webkit-box-shadow:0 0 0 1px rgba(0,0,0,0);box-shadow:0 0 0 1px rgba(0,0,0,0)}.monsterinsights-admin-page .multiselect__spinner:before{-webkit-animation:a 2.4s cubic-bezier(.41,.26,.2,.62);animation:a 2.4s cubic-bezier(.41,.26,.2,.62);-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.monsterinsights-admin-page .multiselect__spinner:after{-webkit-animation:a 2.4s cubic-bezier(.51,.09,.21,.8);animation:a 2.4s cubic-bezier(.51,.09,.21,.8);-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.monsterinsights-admin-page .multiselect__loading-enter-active,.monsterinsights-admin-page .multiselect__loading-leave-active{-webkit-transition:opacity .4s ease-in-out;transition:opacity .4s ease-in-out;opacity:1}.monsterinsights-admin-page .multiselect__loading-enter,.monsterinsights-admin-page .multiselect__loading-leave-active{opacity:0}.monsterinsights-admin-page .multiselect,.monsterinsights-admin-page .multiselect__input,.monsterinsights-admin-page .multiselect__single{font-family:inherit;font-size:16px;-ms-touch-action:manipulation;touch-action:manipulation}.monsterinsights-admin-page .multiselect{-webkit-box-sizing:content-box;box-sizing:content-box;display:block;position:relative;width:100%;min-height:40px;text-align:left;color:#35495e}.monsterinsights-admin-page .multiselect *{-webkit-box-sizing:border-box;box-sizing:border-box}.monsterinsights-admin-page .multiselect:focus{outline:none}.monsterinsights-admin-page .multiselect--disabled{opacity:.6}.monsterinsights-admin-page .multiselect--active{z-index:1}.monsterinsights-admin-page .multiselect--active:not(.multiselect--above) .multiselect__current,.monsterinsights-admin-page .multiselect--active:not(.multiselect--above) .multiselect__input,.monsterinsights-admin-page .multiselect--active:not(.multiselect--above) .multiselect__tags{border-bottom-left-radius:0;border-bottom-right-radius:0}.monsterinsights-admin-page .multiselect--active .multiselect__select{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.monsterinsights-admin-page .multiselect--above.multiselect--active .multiselect__current,.monsterinsights-admin-page .multiselect--above.multiselect--active .multiselect__input,.monsterinsights-admin-page .multiselect--above.multiselect--active .multiselect__tags{border-top-left-radius:0;border-top-right-radius:0}.monsterinsights-admin-page .multiselect__input,.monsterinsights-admin-page .multiselect__single{position:relative;display:inline-block;min-height:20px;line-height:20px;border:none;border-radius:5px;background:#fff;padding:0 0 0 5px;width:100%;-webkit-transition:border .1s ease;transition:border .1s ease;-webkit-box-sizing:border-box;box-sizing:border-box;margin-bottom:8px;vertical-align:top}.monsterinsights-admin-page .multiselect__input:-ms-input-placeholder{color:#35495e}.monsterinsights-admin-page .multiselect__input::-webkit-input-placeholder{color:#35495e}.monsterinsights-admin-page .multiselect__input::-moz-placeholder{color:#35495e}.monsterinsights-admin-page .multiselect__input::-ms-input-placeholder{color:#35495e}.monsterinsights-admin-page .multiselect__input::placeholder{color:#35495e}.monsterinsights-admin-page .multiselect__tag~.multiselect__input,.monsterinsights-admin-page .multiselect__tag~.multiselect__single{width:auto}.monsterinsights-admin-page .multiselect__input:hover,.monsterinsights-admin-page .multiselect__single:hover{border-color:#cfcfcf}.monsterinsights-admin-page .multiselect__input:focus,.monsterinsights-admin-page .multiselect__single:focus{border-color:#a8a8a8;outline:none}.monsterinsights-admin-page .multiselect__single{padding-left:5px;margin-bottom:8px}.monsterinsights-admin-page .multiselect__tags-wrap{display:inline}.monsterinsights-admin-page .multiselect__tags{min-height:40px;display:block;padding:9px 40px 0 8px;border-radius:5px;border:1px solid #b8c9d8;background:#fff;font-size:14px}.monsterinsights-admin-page .multiselect__tag{position:relative;display:inline-block;padding:2px 8px 2px 20px;border-radius:5px;margin-right:10px;color:#393f4c;line-height:1.2;background:#f3f6ff;margin-bottom:5px;overflow:hidden;max-width:100%;text-overflow:ellipsis;border:1px solid #b7c9d9;font-size:14px}.monsterinsights-admin-page .multiselect__tag.monsterinsights-tag-forced{padding-left:8px}.monsterinsights-admin-page .multiselect__tag.monsterinsights-tag-forced i{display:none}.monsterinsights-admin-page .multiselect__tag-icon{cursor:pointer;position:absolute;left:0;top:0;bottom:0;font-weight:700;font-style:normal;width:22px;text-align:center;line-height:24px;-webkit-transition:all .2s ease;transition:all .2s ease;border-radius:5px;margin-left:0}.monsterinsights-admin-page .multiselect__tag-icon:hover{background:rgba(0,0,0,0)}.monsterinsights-admin-page .multiselect__tag-icon:after{content:"\D7";color:#b7c9d8;font-size:18px;margin-top:-4px;display:block}.monsterinsights-admin-page .multiselect__tag-icon:focus:after,.monsterinsights-admin-page .multiselect__tag-icon:hover:after{color:#444}.monsterinsights-admin-page .multiselect__current{min-height:40px;overflow:hidden;padding:8px 30px 0 12px;white-space:nowrap;border-radius:5px;border:1px solid #e8e8e8}.monsterinsights-admin-page .multiselect__current,.monsterinsights-admin-page .multiselect__select{line-height:16px;-webkit-box-sizing:border-box;box-sizing:border-box;display:block;margin:0;text-decoration:none;cursor:pointer}.monsterinsights-admin-page .multiselect__select{display:none}.monsterinsights-admin-page .multiselect__placeholder{color:#adadad;display:inline-block;margin-bottom:10px;padding-top:2px}.monsterinsights-admin-page .multiselect--active .multiselect__placeholder{display:none}.monsterinsights-admin-page .multiselect__content-wrapper{position:absolute;display:block;background:#fff;width:100%;max-height:240px;overflow:auto;border:1px solid #b7c9d9;border-top:none;border-bottom-left-radius:5px;border-bottom-right-radius:5px;z-index:1;-webkit-overflow-scrolling:touch}.monsterinsights-admin-page .multiselect__content{list-style:none;display:inline-block;padding:0;margin:0;min-width:100%;vertical-align:top}.monsterinsights-admin-page .multiselect--above .multiselect__content-wrapper{bottom:100%;border-bottom-left-radius:0;border-bottom-right-radius:0;border-top-left-radius:5px;border-top-right-radius:5px;border-bottom:none;border-top:1px solid #e8e8e8}.monsterinsights-admin-page .multiselect__content::webkit-scrollbar{display:none}.monsterinsights-admin-page .multiselect__element{display:block}.monsterinsights-admin-page .multiselect__option{display:block;padding:10px;line-height:16px;text-decoration:none;text-transform:none;vertical-align:middle;position:relative;cursor:pointer;white-space:nowrap;font-size:14px}.monsterinsights-admin-page .multiselect__option:after{top:0;right:0;position:absolute;line-height:40px;padding-right:12px;padding-left:20px;font-size:13px}.monsterinsights-admin-page .multiselect__option--highlight{background:#acbdc9;outline:none;color:#fff}.monsterinsights-admin-page .multiselect__option--highlight:after{content:attr(data-select);background:#acbdc9;color:#fff}.monsterinsights-admin-page .multiselect__option--selected{background:#f3f3f3;color:#35495e;font-weight:700}.monsterinsights-admin-page .multiselect__option--selected:after{content:attr(data-selected);color:silver}.monsterinsights-admin-page .multiselect__option--selected.multiselect__option--highlight{background:#509fe2;color:#fff}.monsterinsights-admin-page .multiselect__option--selected.multiselect__option--highlight:after{background:#509fe2;content:attr(data-deselect);color:#fff}.monsterinsights-admin-page .multiselect--disabled{background:#ededed;pointer-events:none}.monsterinsights-admin-page .multiselect--disabled .multiselect__current,.monsterinsights-admin-page .multiselect--disabled .multiselect__select{background:#ededed;color:#a6a6a6}.monsterinsights-admin-page .multiselect__option--disabled{background:#ededed!important;color:#a6a6a6!important;cursor:text;pointer-events:none}.monsterinsights-admin-page .multiselect__option--group{background:#ededed;color:#35495e}.monsterinsights-admin-page .multiselect__option--group.multiselect__option--highlight{background:#35495e;color:#fff}.monsterinsights-admin-page .multiselect__option--group.multiselect__option--highlight:after{background:#35495e}.monsterinsights-admin-page .multiselect__option--disabled.multiselect__option--highlight{background:#dedede}.monsterinsights-admin-page .multiselect__option--group-selected.multiselect__option--highlight{background:#509fe2;color:#fff}.monsterinsights-admin-page .multiselect__option--group-selected.multiselect__option--highlight:after{background:#509fe2;content:attr(data-deselect);color:#fff}.monsterinsights-admin-page .multiselect-enter-active,.monsterinsights-admin-page .multiselect-leave-active{-webkit-transition:all .15s ease;transition:all .15s ease}.monsterinsights-admin-page .multiselect-enter,.monsterinsights-admin-page .multiselect-leave-active{opacity:0}.monsterinsights-admin-page .multiselect__strong{margin-bottom:8px;line-height:20px;display:inline-block;vertical-align:top}.monsterinsights-admin-page [dir=rtl] .multiselect{text-align:right}.monsterinsights-admin-page [dir=rtl] .multiselect__select{right:auto;left:1px}.monsterinsights-admin-page [dir=rtl] .multiselect__tags{padding:8px 8px 0 40px}.monsterinsights-admin-page [dir=rtl] .multiselect__content{text-align:right}.monsterinsights-admin-page [dir=rtl] .multiselect__option:after{right:auto;left:0}.monsterinsights-admin-page [dir=rtl] .multiselect__clear{right:auto;left:12px}.monsterinsights-admin-page [dir=rtl] .multiselect__spinner{right:auto;left:1px}@-webkit-keyframes a{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(2turn);transform:rotate(2turn)}}@keyframes a{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(2turn);transform:rotate(2turn)}}.update-nag{display:none}.monsterinsights-admin-page{min-height:100vh;font-size:14px}.monsterinsights-admin-page a{color:#509fe2}.monsterinsights-admin-page a:focus,.monsterinsights-admin-page a:hover{color:#393f4c}.monsterinsights-admin-page .monsterinsights-container{margin:0 auto;max-width:100%;width:750px}.monsterinsights-admin-page .monsterinsights-separator{background:#d6e2ed;display:block;height:1px;margin:25px 0}.monsterinsights-admin-page .monsterinsights-settings-content{margin-left:auto;margin-right:auto;max-width:750px}@media (min-width:783px) and (max-width:790px){.monsterinsights-admin-page .monsterinsights-settings-content{padding:0 10px}}.monsterinsights-admin-page input.monsterinsights-has-error{border-color:red}.monsterinsights-admin-page .monsterinsights-button{background:#509fe2;color:#fff;border:solid #2e7fbe;border-width:1px 1px 2px;border-radius:3px;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none}.monsterinsights-admin-page .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-button:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-disabled{background:#f3f6ff;border-color:#d6e2eb;color:#8ba4b7}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary{background:#8da4b5;border-color:#6f8ca0;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary:hover{background-color:#7e98ab;border-color:#627f94;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green{background:#5cc0a5;border-color:#40a88d;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green:hover{background-color:#4ab99b;border-color:#39967e;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-red{background:#ea4e64;border-color:#d21933;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-large{font-size:16px;padding:14px 27px}.monsterinsights-admin-page input[type=number],.monsterinsights-admin-page input[type=text],.monsterinsights-admin-page textarea{border:1px solid #b7c9d9;border-radius:3px;font-size:14px;padding:9px 15px;width:100%;-webkit-box-shadow:none;box-shadow:none;height:40px;margin:0;color:#444}.monsterinsights-admin-page input[type=number]::-webkit-input-placeholder,.monsterinsights-admin-page input[type=text]::-webkit-input-placeholder,.monsterinsights-admin-page textarea::-webkit-input-placeholder{color:#b7c9d9}.monsterinsights-admin-page input[type=number]:-moz-placeholder,.monsterinsights-admin-page input[type=number]::-moz-placeholder,.monsterinsights-admin-page input[type=text]:-moz-placeholder,.monsterinsights-admin-page input[type=text]::-moz-placeholder,.monsterinsights-admin-page textarea:-moz-placeholder,.monsterinsights-admin-page textarea::-moz-placeholder{color:#b7c9d9}.monsterinsights-admin-page input[type=number]:-ms-input-placeholder,.monsterinsights-admin-page input[type=text]:-ms-input-placeholder,.monsterinsights-admin-page textarea:-ms-input-placeholder{color:#b7c9d9}.monsterinsights-admin-page input[type=number].monsterinsights-has-error,.monsterinsights-admin-page input[type=text].monsterinsights-has-error,.monsterinsights-admin-page textarea.monsterinsights-has-error{border-color:#d83638}.monsterinsights-admin-page input[type=text]:-moz-read-only{background:#fff;color:#b7c9d9}.monsterinsights-admin-page input[type=text]:read-only{background:#fff;color:#b7c9d9}.monsterinsights-admin-page textarea{height:150px}.monsterinsights-admin-page label{width:100%;font-size:14px;display:inline-block;color:#777;margin:2px 0 17px}.monsterinsights-admin-page .inline-field{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights-admin-page .inline-field input{width:100%}.monsterinsights-admin-page .inline-field .monsterinsights-button{margin-left:10px;-ms-flex-negative:0;flex-shrink:0}.monsterinsights-admin-page .monsterinsights-error{margin:18px 0 0;color:#d83638;cursor:default}.monsterinsights-admin-page .monsterinsights-error i{margin-right:10px}.monsterinsights-admin-page .monsterinsights-tracking-mode-settings-enter-active,.monsterinsights-admin-page .monsterinsights-tracking-mode-settings-leave-active{-webkit-transition:opacity 1s;transition:opacity 1s}.monsterinsights-admin-page .monsterinsights-tracking-mode-settings-enter,.monsterinsights-admin-page .monsterinsights-tracking-mode-settings-leave-to{opacity:0}.monsterinsights-admin-page .monsterinsights-tracking-mode-settings-enter .monsterinsights-styled-checkbox,.monsterinsights-admin-page .monsterinsights-tracking-mode-settings-leave-to .monsterinsights-styled-checkbox{background-color:#509fe2!important}.monsterinsights-admin-page .monsterinsights-tracking-mode-settings-enter .monsterinsights-styled-checkbox:after,.monsterinsights-admin-page .monsterinsights-tracking-mode-settings-leave-to .monsterinsights-styled-checkbox:after{right:2px!important;left:auto!important}.monsterinsights-admin-page .monsterinsights-license-type-text{color:#777;font-weight:700;margin-top:16px}.monsterinsights-admin-page .monsterinsights-license-type-text a{color:#777;font-weight:400}.monsterinsights-admin-page .monsterinsights-dark{color:#444;text-transform:capitalize;font-weight:700}.monsterinsights-admin-page .monsterinsights-settings-block{background:#fff;border:1px solid #d6e2ed;margin:25px 0}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block{margin-left:10px;margin-right:10px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-title{border-bottom:1px solid #d6e2ed;padding:16px 25px;font-weight:500;font-size:14px}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-title{padding-left:15px;padding-right:15px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-title:before{display:none}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content{padding:25px}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content{padding-left:15px;padding-right:15px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content p{font-size:14px;color:#777;margin-top:-5px}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content p a{color:inherit}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-settings-addon-upgrade{padding:25px 25px 25px 22px;margin:-25px;border-left:3px solid #64bfa5}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-settings-addon-upgrade{padding-left:15px;padding-right:15px;margin:-25px -15px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-settings-addon-upgrade.monsterinsights-settings-addon-disabled{border-left-color:#f5c953;padding-top:15px;padding-bottom:15px}.monsterinsights-admin-page .monsterinsights-settings-input-radio>span{display:block;margin:2px 0 17px}.monsterinsights-admin-page .monsterinsights-settings-input-radio>span:last-child{margin-bottom:0}.monsterinsights-admin-page .monsterinsights-settings-input-radio input[type=radio]{opacity:0;position:absolute}.monsterinsights-admin-page .monsterinsights-settings-input-radio label{color:#444;font-size:14px}.monsterinsights-admin-page .monsterinsights-settings-input-radio label small{font-size:14px;color:#777;font-weight:400}.monsterinsights-admin-page .monsterinsights-settings-input-radio label>span{vertical-align:middle;font-weight:500}.monsterinsights-admin-page .monsterinsights-settings-input-radio label:last-child{margin-bottom:0}.monsterinsights-admin-page .monsterinsights-settings-input-radio label.monsterinsights-styled-radio-label-disabled{pointer-events:none}.monsterinsights-admin-page .monsterinsights-settings-input-radio label.monsterinsights-styled-radio-label-disabled .monsterinsights-settings-radio-text,.monsterinsights-admin-page .monsterinsights-settings-input-radio label.monsterinsights-styled-radio-label-disabled .monsterinsights-styled-radio{opacity:.6}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-styled-radio{width:20px;height:20px;border:1px solid #b2c1cd;position:relative;display:inline-block;border-radius:50%;margin-right:16px}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-styled-radio.monsterinsights-styled-radio-checked{border-color:#509fe2}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-styled-radio.monsterinsights-styled-radio-checked:after{left:2px;right:2px;top:2px;bottom:2px;position:absolute;content:"";background:#509fe2;display:block;border-radius:50%}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label{color:#444;font-size:14px;margin:0}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label.monsterinsights-styled-checkbox-faux{cursor:default}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label.monsterinsights-styled-checkbox-faux .monsterinsights-styled-checkbox{background-color:#dee5e9}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label.monsterinsights-styled-checkbox-faux .monsterinsights-styled-checkbox.monsterinsights-styled-checkbox-checked{background-color:#b9d8f3}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label input{display:none}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label>span{vertical-align:middle}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label:last-child{margin-bottom:0}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox{width:27px;height:18px;position:relative;display:inline-block;border-radius:10px;margin-right:9px;background-color:#acbdc9}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox.monsterinsights-styled-checkbox-checked{background-color:#509fe2}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox.monsterinsights-styled-checkbox-checked:after{right:2px;left:auto}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox:after{left:2px;top:2px;bottom:2px;width:14px;position:absolute;content:"";background:#fff;display:block;border-radius:50%}.monsterinsights-admin-page .monsterinsights-info{color:#b6c9da;margin-left:10px;cursor:help}.monsterinsights-admin-page .monsterinsights-settings-input-repeater .monsterinsights-error{margin-top:0;margin-bottom:18px}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-labels label{color:#393f4c;font-weight:700;margin-bottom:6px}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:18px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row>span{width:100%;margin-right:18px}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row button{padding:0;border:none;background:rgba(0,0,0,0);color:#dc3232;cursor:pointer}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row input[type=number]{width:calc(30% - 20px);margin-right:20px;margin-left:20px}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row label{margin-top:0;margin-bottom:0;width:calc(70% - 20px)}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row select{width:70%}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row.monsterinsights-disabled-row{opacity:.5}.monsterinsights-admin-page .monsterinsights-dimensions-count{color:#777;font-style:italic;font-size:14px}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-settings-input-repeater-labels label{margin-bottom:0;width:auto}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-settings-input-repeater-labels label:first-child{width:calc(70% - 20px)}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-button{margin-right:25px}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-error{margin:0 0 20px}.monsterinsights-admin-page .monsterinsights-settings-input-select .monsterinsights-dark{margin-bottom:5px}.monsterinsights-admin-page .monsterinsights-settings-input-select label{margin-top:-4px}.monsterinsights-admin-page .monsterinsights-collapsible .monsterinsights-collapsible-content{padding-left:30px}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-collapsible .monsterinsights-collapsible-content{padding-left:15px}}.monsterinsights-admin-page .monsterinsights-collapsible>p{margin-top:0}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible{color:#b7c9d9;float:right;font-size:22px;padding-left:20px}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible:hover{color:#393f4c}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible:focus{outline:none}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible i{cursor:pointer}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate .monsterinsights-dark{display:block;margin-bottom:9px}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate label{margin-top:0;margin-bottom:4px}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate p{margin:2px 0 17px}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate .monsterinsights-ua,.monsterinsights-admin-page .monsterinsights-settings-input-authenticate button{margin-top:14px}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate .monsterinsights-manual-ua+.monsterinsights-error{margin-top:15px}.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-auth-actions{margin-top:18px}.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-auth-actions .monsterinsights-button{margin-right:20px;margin-top:0}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-auth-actions .monsterinsights-button{margin-bottom:10px}}.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-settings-input-toggle-collapsible{margin-top:12px}.monsterinsights-admin-page .monsterinsights-auth-manual-connect-paragraph{padding-top:5px}.monsterinsights-admin-page .monsterinsights-auth-manual-connect-text{color:#999797;font-size:12px;text-decoration:none}.monsterinsights-admin-page .monsterinsights-auth-manual-connect-text:hover{text-decoration:underline}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade .monsterinsights-upgrade-icon{margin-right:25px}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade .monsterinsights-settings-addon-message{margin-right:25px;width:100%}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade .monsterinsights-button{font-size:12px;padding:6px 16px}.monsterinsights-admin-page .monsterinsights-icon-warning{width:48px}.monsterinsights-admin-page .monsterinsights-icon-warning:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAMAAADVRocKAAAAllBMVEUAAADV4u3V4u3V4u3V4u3V4u3V4u3V4u3V4u3V4u3V4u3V4u2KpLj///+etMW0xdKqvs6ascPG1eKww9PO3OmVrb+LpbnR3+qRqr3U4ezA0d60x9atwdGPqLyNp7rT4Oy8ztzBztmiuMnx9PfJ2OXW4ObL2ua3ytilu8v7/P31+PnT3eXC0t/r8PPo7fHe5uvR2+OftscAs3DjAAAAC3RSTlMABtDHbvQb+ctt0f3LxK8AAAIoSURBVGje7drZbqMwFIBh05Au4wPBYPa1TPak2/u/3NAME6lzSMHGvqjk/zJI/sTiSLZMCLHsxZJqaLmwLdJ1f0e1dXdPiIXGVypY5Ilq7YksqNYW5IFq7YFQzRnAAAYwgAEMIAxwP2t2TbZOKWo+wHdtCH0VK3zFQPYRwdfCgqsDMgYDVUWsBuAt3ChpVABZCbfbx7OBPILvYnwmUMBI4XYWEMBoIZ8BNDAhVksD6wqm5MkCKf78g83bOUS/ZpJAjkZ6d7qOLnoNtRQQowmwci69ROjGpAD8Bb05f0O3UMYSQF0i4LUHPHQllwAaQJ16IMSTQQJoMeAenM/eAbcWBtIKcN6xG38zdCUXBnwYqvRWLgzVCgM5CBUKAx6giudLq0GhFgXwO2ZOX2fjuCiAH7X7Dxi8hbVuwJ8PJEelQAtYYL8VPiIPBvoGiEWBXAxIqChwFgNcYSCOhIBAGKCuEOCLAzs0yPPmcAFeTwy/AmEAPyPmXDuhvykJgO7RTL62ga9FWxlgHU0GPCoO4LlWvjh9h/9ec8XlgDiBaeVUDqAZTMpNZQFawIQSTqWBtIXRKn/OAqT+GB3/PG8Jle5Hno8/e5UZRHA7tlWwTvZDuFFUpEpW+nVQwlDMV7ZXEQ8QbqZ0t6Vu9glci1iw1bBfxJs88Dwv2PkppT9zx8sAnxnAAAag1AAGEE/3oYGl/mMPNtWarfnoyS9L++GZLst+1HP859G2CPkDRZCgO+Q/ERIAAAAASUVORK5CYII=)}.monsterinsights-admin-page .monsterinsights-settings-network-notice{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-bottom:20px;border-bottom:1px solid #d6e2ed;margin-bottom:15px;color:#777}.monsterinsights-admin-page .monsterinsights-settings-network-notice .monsterinsights-bg-img{margin-right:25px}.monsterinsights-admin-page .monsterinsights-settings-network-notice .monsterinsights-network-message{width:100%}.monsterinsights-admin-page .monsterinsights-undo-redo{float:right;margin-top:16px}.monsterinsights-admin-page .monsterinsights-undo-redo button{border:none;background:rgba(0,0,0,0);color:#509fe2;padding:0;margin-left:5px}.monsterinsights-admin-page #monsterinsights-license-key-valid{-webkit-text-security:disc;text-security:disc;-moz-text-security:disc;font-family:text-security-disc;font-size:25px;line-height:1.2;color:#b7c9d9;padding-top:7px}.monsterinsights-admin-page #monsterinsights-license-key-valid::-webkit-input-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.monsterinsights-admin-page #monsterinsights-license-key-valid:-moz-placeholder,.monsterinsights-admin-page #monsterinsights-license-key-valid::-moz-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.monsterinsights-admin-page #monsterinsights-license-key-valid:-ms-input-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.monsterinsights-first-time-notice .monsterinsights-notice-button{margin-top:20px}.monsterinsights-settings-blur .monsterinsights-settings-content{-webkit-filter:blur(5px);filter:blur(5px);pointer-events:none}.monsterinsights-settings-blur.monsterinsights-path-general .monsterinsights-settings-content{-webkit-filter:none;filter:none;pointer-events:auto}.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-license-button{line-height:1;margin-top:20px}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input-authenticate .monsterinsights-button{margin:0 20px}.monsterinsights-not-authenticated-notice .monsterinsights-dark{font-weight:400;margin-bottom:20px}.monsterinsights-pdf-exports-settings .inline-field .monsterinsights-button:first-child{margin-left:0}.monsterinsights-admin-page .edd-logo,.monsterinsights-admin-page .memberpress-logo,.monsterinsights-admin-page .woocommerce-logo{background:url(../img/woocommerce.png) no-repeat;background-size:contain;width:156px;height:31px}@media (max-width:767px){.monsterinsights-admin-page .edd-logo,.monsterinsights-admin-page .memberpress-logo,.monsterinsights-admin-page .woocommerce-logo{margin-top:18px}}.monsterinsights-admin-page .edd-logo{background-image:url(../img/easy-digital-downloads.png);width:194px}.monsterinsights-admin-page .memberpress-logo{background-image:url(../img/memberpress.png)}.monsterinsights-admin-page .monsterinsights-logos-row{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;border:1px solid #d6e2ed;margin:40px 50px 60px;padding:25px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-logos-row{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-left:20px;margin-right:20px}}.monsterinsights-admin-page .monsterinsights-logos-row .monsterinsights-box-title{font-size:13px;font-weight:700;color:#8aa4b8;position:absolute;background:#fff;padding:0 10px;top:0;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);left:50%}.monsterinsights-admin-page .monsterinsights-upsell{background:#fff;border:1px solid #d6e2ed;text-align:center;margin-top:25px}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell{margin-left:10px;margin-right:10px}}.monsterinsights-admin-page .monsterinsights-upsell h2{font-size:20px;color:#393f4c;margin:36px 0 14px}.monsterinsights-admin-page .monsterinsights-upsell h3{font-size:18px;color:#393f4c;margin:0 0 14px}.monsterinsights-admin-page .monsterinsights-upsell h4{font-size:18px;color:#4c6577;font-weight:400;margin:0;line-height:2}.monsterinsights-admin-page .monsterinsights-upsell p{font-size:14px;color:#4c6577}.monsterinsights-admin-page .monsterinsights-upsell .monsterinsights-upsell-top{padding-left:10px;padding-right:10px}.monsterinsights-admin-page .monsterinsights-upsell-bottom{background:#f7f9fd;border-top:1px solid #d6e2ed;padding:36px 50px 30px;position:relative}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell-bottom{padding-left:20px;padding-right:20px}}.monsterinsights-admin-page .monsterinsights-upsell-bottom .monsterinsights-button-top{position:absolute;top:0;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell-bottom .monsterinsights-button-top{min-width:288px}}.monsterinsights-admin-page .monsterinsights-upsell-bottom img{max-width:100%}.monsterinsights-admin-page .monsterinsights-report-ecommerce:after{background-image:url(../img/monsterinsights-report-ecommerce.png)}.monsterinsights-admin-page .monsterinsights-addon-ads,.monsterinsights-admin-page .monsterinsights-addon-amp,.monsterinsights-admin-page .monsterinsights-addon-dimensions,.monsterinsights-admin-page .monsterinsights-addon-eu-compliance,.monsterinsights-admin-page .monsterinsights-addon-forms,.monsterinsights-admin-page .monsterinsights-addon-instant-articles,.monsterinsights-admin-page .monsterinsights-addon-media,.monsterinsights-admin-page .monsterinsights-addon-optimize,.monsterinsights-admin-page .monsterinsights-addon-performance,.monsterinsights-admin-page .monsterinsights-addon-scroll{width:48px;padding-top:110%}.monsterinsights-admin-page .monsterinsights-addon-eu-compliance{padding-top:100%}.monsterinsights-admin-page .monsterinsights-addon-eu-compliance:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAF8AAABfCAMAAAC5kuvHAAAAWlBMVEUAAACtvcitvcitvcitvciduM2tvcitvcitvcitvcitvchQn+KtvchQn+JQn+JQn+KtvcitvcitvchQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+KtvchQn+KLGAvfAAAAHHRSTlMAIu53RBG7qogzme7dIpkzzGZVzKqIZnfdu0RVXT0ICgAAAsdJREFUaN7tmd1ymzAUhAEjMMYCJ/wT6f1fs4QWH4OwN3StmV70uzMzWRF5vaszCg6ShYFPMhOpwCOpMR+BP0JjzDXwRRgnZuKc+dii8BaZO1Hyltd9/BSbRyLFe+pqssePp0f5mPCU6KXbByLPe+o6Ca3/8fOiH/OeCue3TVcLfCz6Gecpld7MnWtyX+OyPPvkPJWZFaflefKtMr8t8hT+agX5kiMTnVR4mR5BT+EFXPngfFbzrlw+gacOLAA21fUURnZWttrF9ZSP93c9JeA/A7+cjaeOcJvePA6/VwGmE08d258knq2Sgv1xPIUSmScLQSJ7OAFIIns7AUgi8ycAmMj8CQAmMn8CwImMAScAkMgHQGl9IuRBWh9INN22+kBaH0zkcbATw/gXaY3fX3W9/UPfKZjWBxO5LOyKogRpfSiR28o6VC1I658msm5yu0veaJTWGF3bF9Q64Chz+5K85PQLCyg4/coCqn9E/0n11k/3Xf9eugYlDKq3eCI/+UbNCxSghEH1Ns/kJ77sRAdKGFRvuy8ve9eCEgbV+7UvL1s3ghIG1asXmwz78laDEkbVWy2/omZXvkcljKq3uZuw2ZG3DShhWL2lmKRx5e0IShhXVy4p1jjyOSphXL2FlQW6jbwtUAnj9y+dHBZ5O8ISxtVbywJb+QqXMB6GSmmSbSKVYGT62TBUywJr+ZoZmQQtXSjy8tvlaZcF2lUddIwmbpk6eBtq73zleIGYT3VuN/SKmE/xOSgv3zyf6n719vrt86kaRH5QPubTLrczeedpPlXNXCnKx3wq89f/+RRAz6cIej7FsPMphp1PMdR8KmmKyUJQjSBNAcz9C4C/f8Hw9y8ufu5fBD/3L+IVP/cv4hU/9y/iFU/3L65X+PsX4BX6/gV4hb5/AV7h719eeoW/fwFeAYlJtysP6RW+XXkIr9DtykN55RdZztdXJmO7xAAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-ads:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABmCAMAAAADH2QXAAAAV1BMVEUAAABQn+Iuf75Qn+JQn+Iuf76svcmsvclQn+L///+LpLesvckuf743iMhzsujc7PmKv+xMm97o8vvz+f2izPDQ5fd/uepcpeSt0vGWxe652fNnrObF3/Xl1C/0AAAACHRSTlMA7OajHEnmSn/UIZcAAAF/SURBVGje7dkNb4IwEAbgFlCvWymVb3D//3fu2oUQiRGh1wzNvYmE5kwfyxFsgniYU6KTU0BhNYnWOgkorEa7bC98KpClEpbRLoAJK8g0w/lx+lgAEplIISYAqZBxASkgLgAPgGuu/5Jf9xTWgVxPyfcU1gE9Z3vhECug7gFtGGAAgIHNgC3V05Q2DLBqNTYIKNeBMghQL4SBKUVTKMw8LkiByuBoUHNGAEsJjMubqgYwlEDrh300oPKjacrGmvZGC4yuA/jxjR3AhRYwOJ1bRY3nPdADpb/+LcANBx1ANxhaoHc/frT+GhV4/FGKtgcGptSq8YxqiYDlA7PzN1Tb9EAJ1DCnUZa+yTeAVmGqDmDAIzlgsK3TUmp03Bo6ymdR1RSLR2hR4em7/R+8KfDKruLY+6IXdnZH35sywAADDDBwDEBC1EiRQtSkIou6BJnNLyjo419QLPJNkLsJPw84h89/fgpcgoXzRezM112efJEBBhhggAEGGGCAgX8BfgF9zfCNw+tX7wAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-amp:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABmCAMAAAADH2QXAAABAlBMVEUAAABQn+LW4upQn+JQn+JQn+JQn+JQn+LW4upQn+JQn+LW4upQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+LW4upQn+Ksvcn///+vv8uyws1SoOLT4OnF091WouLO2+PH1d69zNa3x9K6ydS0xNCw1O/L2OFNnuDC0dvAztjQ3eZqreTI1t9ZpOL5/P7r9PqdxueLvOZ5t+VjqeRWpOCdyuyoy+d1suT1+v3m8fjb7PfO5fTF4POo0O6hzezL3enK3OmKwOiCvOdwsuRmrOHz+fu52fG+3PDI2+nD2OmtzuiYw+aIu+VeqOGYxumXbKjeAAAAHHRSTlMA9PEaFPz4z612TycFzHHalI9ZKWlm7be2JeyNLqjzBwAAA2ZJREFUaN7s2OlSo0AQAGAwh+LmMPHend62sCj/pPKDIiYhpzExmnitq+//KkLUKmZ6EIbhp98DdBfdPT2Aoa3YbBzXj8rlo/pxo1k0clasVYFTreWZo/DHBMLcK+QUvmKZIGValTzin25DrO19/fi7JnzD3NWNf1iCb5UO9eIfQKIDrfqUIFFJo0r7svr3J0OhD5k7XZHNT7uDd+IsZZ1WCyRaiAMQWBnPr6xALuLEI8O6OdO/draYkv+yAl0hzhwQ7YXxFcOzGweoO0Rs2SAqB5tvhynqyjuMeAtUzTC2mCIXqDkG+kBVDYMpWgLlYaDjgkRBOcFI2uHA9BUkmsoJekCsMPRobwCvoZxgTB/gEkPTRSvwsAbOiXICH0QLjJoDp66cgJyCAUZNB8JhjiS4OPsb6+yCfSIFusaoNQgiCbj4JENcgj5GzchZVktAS+TcYwRdqL+VS+STLR1Bt0Vdd0z7D8Fszhcfk3rZBtGJ9kGzQ84MY7ZRI8uqoPzNE1znsiqWILHqhNtuAFSBNDmxz27MfYPDpHUtxKcZ4i+ct7DDNlA11QTyK9MJT/MKQHZlKpZIful7V4iPbQDppc+UPZFHsBHRgw362sLUvYDgVd5hsIxsCc7FQbrFe65A3Ksjy+BZKNJwspYV6DQIT5qcrs//7LSv7wpjyi3tbpoPEJ0ErGun/IRSL9FXlZyUH4Esq2c33Wcsy+z8xQGpMvchzjQ89ZzkXwlMy03XTfoZwnQtR72x79m25497o6JBsFwZPwne2y+jFYlBGIoufSrMLwxiUSRRxIr//2+7YKdbGmde5oZhoHlrhXvI1Zh4AT4DCH6NyS4cS9UANDb/sXg0wC9dWSAwABeNDHIwQE1mFAkFqHbc1jII4A72MxHxrg8CxN2S5jqx/SFtQG2yfzhSDklR14cAtg04KTpYHXihD74qUgf4uxIgbHV71wIUkQAYQB3g1AB8dmg1p3DvAXoV8wtAeA/QReILQNbOIGvvQcWeIgnA1EF56p7FVrJcSaC7qDwzz2NuU3lYsqgzbD9om37EdTTjB/omI3syt4c9+y8CTxULUyE+fDvoXCQj6E52NuvOpqmqTtdm1X0fFKf2wkmRSv7SN9oFuAAfB0xI/WkAmJGAeQC4TcAEbj8jwgxCTPNI/xcIan5QyH2lWAAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-instant-articles:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABmCAMAAAADH2QXAAAA+VBMVEUAAABQn+JQn+LW4upQn+LW4upQn+JQn+LW4upQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+LW4upQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+LW4upQn+Ksvcn////L2OGvv8vAzti0xNDG1N7T4OhXo+NPmtzC0duKvObI1t+3x9LL3emqzOhVoOJPneCaxOZrrOSGrtfI2urQ3eZ1suRjqeOkwN+9zNb6+/3i6fK/0ue3zOSxx+HH1d6YuNtVmtlbmtV7pdN3o9PW4u/D2Omgx+e7z+TO2+OuxeGTtNnv8/rY4/DT4Oycu9x6qdmToCJeAAAAH3RSTlMA8xrwz612TycF9sxxE5SPWSn58+1pZhbb2Le2JfGNzELbBwAAAsdJREFUaN7tmF1f2jAUh1OwKIKCiDCdW0J5LRQo410UmeLm1L1+/w+zWrefLSdpmya9YOtzBxf/p+ScnJAiYcr53NlpsVAonp7l8mUkmYNshrjIZA8kxifeKwSwf5iQFJ9OKYSKkkrLyD/fIUx2jsTzd98RD5Rd0fwS8aEkln9CfDkRWh8SAIFVOlKCCJTQlU4z++fDeODspbDdmiIsJkviJBVy/zIX6EK7dS+Svaf31CTmwiAMfmor4ubwOZ8zHvcHzOfX1ptzyZp8KuZkyM6/Al9mEUryCkb0/llpmvYJfJ1BCHPSp+dfaxZtAkhwC0xq/oNm8ZVA8twCg/n8Vo9CctyCGSV/Yuc/EApvuQVzkNFe2vmXa5rgDbdAB/k/tBfBL+rEcwg+1ipMak38B5D/WXOzsR0cAmc+NAABM3/p7NYCt0B3538H+U/ESdEhaPouESyyBliBIou0KVRdCLep4Sl4Et9oJqHRvrTzb+CokDTs7hj5JAH2gUedPcb1lWYxJt7j2sr3NrAPnDVrmGa5BOwj8/r1+cGRCfYBe4mYfXT7mg8PfczNBMy7G/u0hCiJUAJYBUY+SaFwgtZos0fv6NeQdEgBvncv0rcxoaGcIwuwDwLV2eT4+w7aNNDQ/hLkAiIi8DeUEBA0gy6RjakHvATisNyPgl1jcWhawwGhsu+6iGMBJobu/yoBC9EfjvxehmBR+qYxm+uDgT6fGWYZAbBUUCyIBf+UYFr1QIKg7j23W2IC/9OnIyyoeFPfTkGtt6gvFo3IBPWXyjajqkEV40gFCxyx4BHbtFqdiAT4mU4jsi5q2I9fqUQrqMYChqDR7Xardg26Fj35gh52ErmgEbWgErFguo1dFAtiQSyISFDzFogf+nVPQW0q/X7waB84fz9txQ0nFsSC/0mQxBI5RhBVpkBFkD2JPyG5h2gG9VjS+qi0/N+iC9OxZrJwlgAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-media:after{background-image:url(data:image/png;base64,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)}.monsterinsights-admin-page .monsterinsights-addon-forms:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABmBAMAAADG74kWAAAAFVBMVEXW4urW4urW4uoAAADW4uqsvclQn+ITLWFyAAAABHRSTlPsoxwAEnMmfgAAAIFJREFUWMPt2LEJgDAUBNCvOICFAwhu4AQKP06QbCDuP4J9sPCKwOm/KwOvusCHs3V0IN1is0PpbcLAbgMGNnMwvwGp1MmPj7EBYXGEgLA4QkBYHCFI5VVybEBYHCEgLE5AQEBAIAQgPIqE4LjqnAJtwNe+RlMAz0XwIAVPXvCodgNhA6kmkI3HfAAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-optimize{padding-top:100%}.monsterinsights-admin-page .monsterinsights-addon-optimize:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAF8AAABeCAMAAAByzjhiAAAAkFBMVEUAAADW4utZo9+bxObW4utUod/W4utUod/W4utUoN5ToN3W4utUod/W4uvW4utTntpTntpUod/W4uvW4uvW4utTntpUod/W4uvW4uvW4uvW4utTndnW4uvW4utUod/W4uvW4utUod9QlMtRl89Qls1RmNFSmtNPk8lPksdSm9VOkMNRmdNSnNdTndlTnttUoN4GbpBuAAAAIHRSTlMAAgcM4/fvwLNVRvnULikb5+bRxbyil5SSi4BySTw4Jgr331EAAAGYSURBVGje7dJXbsQgFIVhPJ7qTEnvxb2Msdn/7gKOIiJ7AMkcXiL+BXxHiEvULXabVTK7m8dPoi3iuF37UMPvEvtW6oFTgmiv9DcJpEjBBwmmjep2ElDe9773ve9973vf+zP9YFSI9MPXq3h+KTP4B65bVNVM63/FdlVn3QAJ1ta+boC8x/b+uWJKf2vv6wbI2t7XDZAY4ItS5tQXA079uk6ZQ7/m5cyZXw9lzIkveLFQVRnD++ngD7wcwPr1r5+mBcP7kue1cF/yQ6UTvxK+HED6Iz7PS6w/5vOsgfojnvtZg/XHfFZQpD/li4Li/Akv/LZD+bn0//Bt2eH8Kc/9sgP5Cr5seow/+dvih2+aHuZPeeHTHuGreUp7iC8vc8TTzt7PFHwjeIQ/OR3JQ3w1j/F1POB/C8XpUMEjfB1/DfA1fP8G8BWXOfgLgK/hI2Lvt4rT4fyOIHwV/3AiCD+4nLAhPrmc973vfe//d3/p2H+25LcG/2jpfxBD91b8bWDyQ5sfWIfE2GI7m78TvLnjy5w3LJ8OZvobpmnKQFwgNYcAAAAASUVORK5CYII=)}.monsterinsights-admin-page .monsterinsights-addon-dimensions{padding-top:105%}.monsterinsights-admin-page .monsterinsights-addon-dimensions:after{background-image:url(data:image/png;base64,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)}.monsterinsights-admin-page .monsterinsights-addon-performance{padding-top:105%}.monsterinsights-admin-page .monsterinsights-addon-performance:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABlCAMAAACFixa5AAAA8FBMVEUAAADW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4uqsvclQn+KwwczT4erK1+DR3+rH2+m91ulkqeNbpeN2suRnq+PJ3OmKvOZ7teViqON4s+R0seRWouPC0dvL3emOvuaAt+WXwuZuruRgqOO6ydSuzujL2OKT9JW9AAAAMnRSTlMA4dIH+kUD8u3kDNZoShiYfeiQg2I/DsiIJhRPLfTexcG8s65vIBza0KReuYx3WFU2dMplGNoAAAPgSURBVGje7ZnZetowEEaHesMsBrOvIWwhpOk2UFqaNE3a0CZd3/9tataxIwnZRL7o15wbjC7+g6XxSJ+B8Gj1crOUyWReNY16CtSivSp0bfST7GQ0UEY9jRxOT0ARlQRySauaqDco4IUiQRcFdBQJnqGAxJPgSfCfCMxsX0cRfQMeSSNv415GUZqqlh28dMBHKm+hFDuoGJYGZRO4lG1E1HOkaCYwFGmD7ji3GngNHFptXGEV113Y6WNoxo31FGzvuM0xNI5wi5sxAbJJjIBdBjBLNn13mGLpBm66WcRo6MXsaaCTP1z7IiomBwEMVM4Z+HBcVI41BKKHMdChx6GEcUBnAieJUZndXU79XP5GFr21EYwxMt+nD/iJHI43LQKjczF9CPJ4uRJUMTqfwwmOtEMfgbtwAix5gud4ALOP4QRpgBYexOxLKAEakMMDDTehBDmwUcb7DzOu4T6MIA0WSvhwOb2Y87y3YQQj6MryF8vHaM7Plwv6kJXne3yeC/LliwwFyfxMeYb3Icu0AB6ZpCSfDEz+1c0+QXKwPf4khfmEb6Vnu/xvu0tOfL5CR4qiJc4nA5u/W4xLQTwpztvC/Ivt56ftQ0z5nuHH8vpaFE+c6IL8u9kNGZh8z3C/WFzPgl2U4n0CQf61ry1cfQpcC7GAgWnbV5TvN8yZfC4OEIKdn/ID876g2doH7/SbxwD3lB8wsPnv3k4mb99hgCaw1DgN/5qzxVDFfl3HevmeQXSsI3LMyeT2O2cTo/w/m9jJCgyQCSHwz8HXXX+grvF++cujCGoowkvaGih/9muyR3AmX2TCS9gabqnrefkBgXyRB0gEa2NChvvFjzlZxQIDWF4hQbXBTZAL6sDS4gUcKNA1YEkpFBwBi3mmSwS0MFKBm2VXII0oEdDCCAVENahoniLKBNJBscKoIioXkOKki6hWQBwPASojjE+AdgOKGKcACzCKV2CDFa8AIR2vIAH5eAU1cPR4BNRWx3EKnlObjkdQBo9xfIL+ulewlUqNky6lgyz6ZmN7gQzU+ulSPsiW0BrtFGPhKLXbjnWMAb3M/FOmlhoQ5jEq51nwnXkSFWPVIUAWA1RtjIjbYd6mid8tuyXTiThpxw68tAMbzUPM3m71zyvL74VIC2ouj25FfeczgaFS3fSnFqwxEqELfluQ9c2v7DSAgzaouolelgZStTaGoF301YvRs91uyYSQnOR0lKAXHHgMw8LeAk6eD+GxaGdChVXS/oF/Ap8ETwIlCLfskSLBGAX0FQkMFFAGReSQyzmowuT1besFKKRiDHLP0661SnbTvULGSEEspKLm/gXsGeljiPFFoAAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-scroll{padding-top:105%}.monsterinsights-admin-page .monsterinsights-addon-scroll:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAF8AAABdCAMAAAD0WkrMAAACH1BMVEUAAACNn7OOoLSOoLOQoraOoLSOobSNn7OOoLSNoLONn7SOoLSPoraOoLOOoLRKkOKPoLSNoLOQpbiOoLOOn7SNn7OOn7SNoLVKkeONn7SOn7RKkOOcpdpKkeOQoLSNn7OOn7N6puB9n8VKkONLkeRLkeNKkONKkONOleZKkOKNn7NSluxJkOJKkeNKkOONn7NLkeSQobVIj+NQlOlKkOJNlelKkONKkeKPobRLkuRMkeWSo7OUpLaRobOOoLVJlOpKkOOOoLRKkeNKkeRLkeNPlehAjuiNn7ZMkeZJkeVOkeVLkeVLk+NKkeOOoLRKkeNMkuVKkuNLkeSOoLRNk+WYoq1LkeROkudGkOZPlORJkuZOl+Y+iOBKkONLkeOOoLRKkORMkeROk+SNoLGOoLSOoLRLkeNMkuVMkuVMkeSPoLSPobWNna5PmuqOoLM0g99Hj99LkuJOlepLkeRQluxNkeWOorWOobVQmOxLkuOiyfRPludHjeCPobSSqLiOobSPoLSaotsugN+QoLRQm+6PorZgofVMk+Sls8WOobVFjuK/wuSLl66DmKk/iN9Li+WOobSWp7o8ieBCgN82iOSUosZ0qOc6h+A9jed0quhSluFQles3huE7j+yQorezvNqVve2SocCOn7SqyvCUv8Vgj/aZwu/F3PVjqvdr1PWNn7NKkOKMn7KOoLSJnahKkeNJj+JJkOJIjeBIj+CLnq7WZLCEAAAAqnRSTlMA/aILDZvF9bTj4hjBmSL1gtwHN07sneBGJF+Vf8Ao+dACBMd9g+r4B/zxGvvl2b5YGxYK3R3uy8ikTy4lHxIF8urUua9hV0tJPS8uzcSvm5B3cGQ6NTQyJyUPCf7z4Nm9s62qpqSfbmdcWkE7Evfy4Kmdi3psa2haVQ0N97iokoiGVFJRPzo2NTUiGvbk1tPSzsi7tbGkopOHhIF8bm5rY2NWTUs/OjApH9TI5RQAAAWsSURBVGje1Zn5VxJRFICvgpUtJmBFK80gQggiGAiKmqalaWpWpraZS6Zp+77v+77v+zqjBdkf2NxHOiPO1GOYzrHvB3Hg8L3Hfffe9wYgSZjj5vkL8wIzRdyFlU2tG0EbBrJz+PEssW+rcYAGHNnDK2BvyIWksbl4ZayrIEnmR2NTDbjrVltHyctZtoRHlo4OwBp1iaBnATkwHJtnkx/GsNHcEFuUwtyYPXzodFoidO4EgSIiWdZTBuNZ1U4+QgMusu7wLC4xht6hoxKj4zaDLAUhHMC+DsCYmcLFGKSlHOdfZcdELAIJjHSAdl5gmwMu7iJyZ/ocWmZNLwaAUER4vw0kbMgfAJFaDJ+9FerRnrK4z8tAIrTUYXSaQSS3kG9iQWS7ECFXD6QLessMPSRI70zBP19SpL7VwhM7JJM0LxOeqITJgt/DQqI0CW8erhKvjy/HeEWPSNIUA1SIfucVFaWLtgvicm6L1ZrrKIxSIVxvEfyDdxkVtYu20eR07OV/s7kaRliIl4I/5ZRK//cRP7PvBz9Czkepfyb6U4HAzqUjXGKM8z8hemsogA97Lin4velTqXB6Fo31P92E3i21sJ/001uf5f0ZQxwdW9eP8b84gVb3ZYwaaTv3WrT0r9lMwl4TKyoeaa+V85fOpqMr0yvxX84jbbQaCGwskWwb4/3q88dmFzRFYiFgVW0A7fywxsX3YpK2Nrdhn2gftvpBSz8834F7TP6W7yHcsK7t84Osn9FTomNG/SK+Cml/k13fNDq6M0tk/KuW4ro6AEky/w1ifkoI8XygBv6d35cdMrN/8k8LTqLiTldY4o9H2Q9GOnRGUOWnZ2L6SzPlOfPKS+PPrTpQU6Yqf6bupPFvj0QC61T5Df0U/g1/rS/vYnkM9cUUfn9elOd72D/42UUKZBj/7PcV4N+evJzlfrIQZdrmz7HHjQMkQtVt+FC93Mxo6T/2aFOksQBGWOeO7nnPaOf3PxBOD5FnDuky764q08zfTPbfHwdiQf9yO4oHR5tDu/hUu8kALzF1vtbhSSvScFyr+Ig3YpveMOC7j/poqE3b/pMfwIvd59o6eKRyQOv+VrUMvUutM/FhuQ/k/eGzC6g4+/q61I8c3MyPsNoPCv6sb5Tc7I8//8ManDoOWdcCSv6VXAL77360iXeneIpDKiRfOtThsVTiv5huoKL85CJhwpiHR0CkcQme0aUN2o3jSfcXEx39xTqAHYIukg0ibIMwW2lDbQngYqvNnxrsA4WtILJx7+5zgEgitsSm1g8deD/aCxKufToGIgXYN+zNqv3Z6M+rBSUaXfh6gfR8dT6Ljr4w7iKrSTHlgjwHMWFdvYzEv3PyLDoGZ+sx5YdJOcl+Akc2qYfCAlCT/9yND3ic7yADLLWtYuPsvvxKF7lpugRSf9YQLYOndBgha5QnI3TMt2WL7N++MFbMw1XsGL937TxKDmfpQaDV+oOIIryIeHniYBmIflXk7nPxSlRcYCFZP7QVLZS359hqGUjWj/iPNlbY+e+jYvzXXdm0jgWI97P6xNAxgDhaaqqP5gusIOQXmZt9+Mo4vyk4KSGCD9/q4S+oyH+Rn87g6bUr+03YT5GwyVRsVPZncWpImWwxFANhRvrUSV5lf/HsGQmTlpra1TmjBAgejps1V9nP6NTCAGEKx03NkPUny4TwXwlOV0WwPkzlXzmoEqeJzs+pxHmVyn/VM0UVnu4MKr9xmlrYCZE//7u/VPbLjUyTVv4Siwycc60WfuXvNyyHNJv/kBy7DmvlZzNkmJuhn/D50wXacFLez3lAG4IK/nIvaMEig4LfkgZakMrJ+cs5DmsoeQ458aeZEojDQ3aItGRDNG32LhTVl0Icay3klFTu6U5VT7ennCP0QTy6+hSOkJIMXIzUUhhHSaeF04ahzusgg65vytb05DFMOa+DcfwCnfF+X2DgUlQAAAAASUVORK5CYII=)}.monsterinsights-admin-page .monsterinsights-upsell-large{padding-bottom:35px}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell-large{padding-left:10px;padding-right:10px;line-height:1.2}}.monsterinsights-admin-page .monsterinsights-upsell-large h3{color:#4c6577;font-size:18px;font-weight:400;margin-top:33px;margin-bottom:14px}.monsterinsights-admin-page .monsterinsights-upsell-large h2{font-size:18px;margin-top:0}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-coupon{color:#509fe2;border:1px dashed #509fe2;padding:7px;margin:0 7px;vertical-align:middle;line-height:1}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-features{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-flow:wrap;flex-flow:wrap;margin:30px auto 25px;max-width:525px}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-features span{display:block;width:33%;color:#393f4a;font-size:14px;text-align:left;margin:10px 0}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-features span:before{content:"";background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAElBMVEUAAABQn+JQn+JQn+JQn+JQn+KxowiZAAAABXRSTlMARO4idxyyls4AAAAySURBVAjXYwABoyADBhgQDRWgKttQUFDQNdQRSBowqIbCgAJDKBwEIIsjq6eFe5D9CwCWPRV/mairZAAAAABJRU5ErkJggg==);width:11px;height:11px;background-size:contain;display:inline-block;margin-right:12px}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .settings-input-license p{color:#444}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .settings-input-license p a{color:#509fe2}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-smile{display:inline-block;width:16px;height:16px;padding:0;vertical-align:middle}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-smile:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAYFBMVEUAAAD/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE1mRQDuvkTSpDZ7VwqgeB2bdBqvhiV+Wgx2Uwj4xkn3xUnfsD3KnTKziSeLZhOFYRBnRgD04bLqAAAADnRSTlMALPrz8dvSp6SXYxMNONmrFGwAAADrSURBVDjLhZPploMgDIVjqQjY3hS12r3v/5bDjFGH0gPfH+4JS0IW2mid0QpQ2riWUqpmh5VdU1HMweIDe4iu10io/z1y3OML++N6X/aTE5X4l/dT6jkOCyHF/jmAcAIS+eukET1wJ/ZTx4MYG6JW8uOZuZ9lH6SXjLXkMHMO1m6WXZBnMTsy+QOGNHIuoEkhFyQUxX9LJaEAKWRRpJFFk0EWQw7C/YaV2x2CW1ONx3vwVwSufng/sKR6K9ZlZOZpHKewjJelWFG5nyw8t3LHDeP71zS9eo8FW2y5UtMW2748OOXRKw9vcfx/ACZnLYWsWc2gAAAAAElFTkSuQmCC)}.monsterinsights-admin-page .monsterinsights-affiliate-tracking-upsell{margin-top:30px;background-color:#fff}.monsterinsights-admin-page .monsterinsights-affiliate-tracking-upsell .monsterinsights-aft-upsell-head{border:1px solid #e2e4e9;padding:0 24px}.monsterinsights-admin-page .monsterinsights-affiliate-tracking-upsell .monsterinsights-aft-upsell-content{text-align:center;border-right:1px solid #e2e4e9;border-left:1px solid #e2e4e9;border-bottom:1px solid #e2e4e9;padding-top:32px}.monsterinsights-admin-page .monsterinsights-affiliate-tracking-upsell .monsterinsights-aft-upsell-content h3{font-size:24px;margin-bottom:30px}.monsterinsights-admin-page .monsterinsights-affiliate-tracking-upsell .monsterinsights-aft-upsell-content .monsterinsights-affiliates-promo-logo{background:url(../img/affiliates-promo-logo.png) no-repeat;background-size:contain;width:210px;height:201px;margin:0 auto}.monsterinsights-admin-page .monsterinsights-affiliate-tracking-upsell .monsterinsights-aft-upsell-content p{max-width:507px;font-size:16px;margin:25px auto 0}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-affiliate-tracking-upsell .monsterinsights-aft-upsell-content p{padding:0 15px}}.monsterinsights-admin-page .monsterinsights-affiliate-tracking-upsell .monsterinsights-aft-upsell-content .monsterinsights-button{margin-top:25px;margin-bottom:44px}
|
lite/assets/vue/css/settings.rtl.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap);.monsterinsights-dark[data-v-3b9e68c1],.monsterinsights-dark[data-v-97789704]{display:block}.monsterinsights-addons-navbar h1{display:inline-block;font-size:16px;line-height:48px;font-weight:400;margin:0;color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters{float:left;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;margin-top:10px;width:258px;position:relative}@media (max-width:750px){.monsterinsights-addons-navbar .monsterinsights-addons-filters{width:calc(100vw - 200px)}}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]{height:28px;margin-left:0;padding-right:10px;padding-left:28px;font-size:14px;border-color:#d6e2ed}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]::-webkit-input-placeholder{color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]:-moz-placeholder,.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]::-moz-placeholder{color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]:-ms-input-placeholder{color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters>i{position:absolute;left:10px;top:5px;z-index:10;color:#b7c9d9}.monsterinsights-addon-not-available .monsterinsights-addon-status span,.monsterinsights-addon-not-installed .monsterinsights-addon-status span{color:#777}.monsterinsights-addon-inactive .monsterinsights-addon-status span{color:#d4393d}.monsterinsights-addon-active .monsterinsights-addon-status span{color:#64bfa5}#monsterinsights-addons{width:770px}@media (max-width:782px){#monsterinsights-addons{width:100%}}#monsterinsights-addons .monsterinsights-addons-area{margin:0 10px}#monsterinsights-addons .monsterinsights-addon-active .monsterinsights-button,#monsterinsights-addons .monsterinsights-addon-inactive .monsterinsights-button,#monsterinsights-addons .monsterinsights-addon-not-available .monsterinsights-button{background:#f9fbff;border-color:#d6e2eb;color:#8ba4b7}#monsterinsights-addons .monsterinsights-addon-active .monsterinsights-button:focus,#monsterinsights-addons .monsterinsights-addon-active .monsterinsights-button:hover,#monsterinsights-addons .monsterinsights-addon-inactive .monsterinsights-button:focus,#monsterinsights-addons .monsterinsights-addon-inactive .monsterinsights-button:hover,#monsterinsights-addons .monsterinsights-addon-not-available .monsterinsights-button:focus,#monsterinsights-addons .monsterinsights-addon-not-available .monsterinsights-button:hover{background:#fff;border-color:#c4d6e2}#monsterinsights-addons .monsterinsights-addons-no-results{margin-top:25px;padding:0 10px}#monsterinsights-addons .monsterinsights-addons-no-results p{font-size:16px}#monsterinsights-addons .monsterinsights-addons-no-results>div{visibility:hidden;-webkit-animation:loadMonsterInsightsSettingsNoJSView 0s 2s forwards;animation:loadMonsterInsightsSettingsNoJSView 0s 2s forwards}.monsterinsights-path-addons .monsterinsights-navigation-bar{padding-right:10px;padding-left:10px;background:#fff;border-top:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-path-addons .monsterinsights-navigation-bar .monsterinsights-container,.monsterinsights-path-addons .monsterinsights-navigation-bar .monsterinsights-main-navigation.monsterinsights-main-navigation-open{padding:0}.monsterinsights-addons-list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-top:25px}.monsterinsights-addons-list .monsterinsights-addon{width:calc(50% - 12.5px);border:1px solid #d6e2ed;position:relative;background:#fff;padding:0 0 72px;margin-bottom:25px}@media (max-width:782px){.monsterinsights-addons-list .monsterinsights-addon{width:100%}}.monsterinsights-addons-list .monsterinsights-addon h3{color:#393f4c;margin:0 0 -5px;font-size:15px}.monsterinsights-addons-list .monsterinsights-addon .monsterinsights-addon-excerpt{color:#777;font-weight:400;margin:10px 0 0;font-size:14px}.monsterinsights-addons-list .monsterinsights-addon-top{padding:20px 24px;display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-addons-list .monsterinsights-addon-image{border:1px solid #d6e2ed;width:74px;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-item-align:start;align-self:start;margin-left:20px}.monsterinsights-addons-list .monsterinsights-addon-image img{display:block;max-width:100%}.monsterinsights-addons-list .monsterinsights-addon-message{position:absolute;bottom:0;background:#f9fbff;border-top:1px solid #d6e2ed;right:0;left:0}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-interior{padding:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-addon-status{font-weight:700;font-size:13px;color:#393f4c}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-addon-action{-ms-flex-item-align:end;align-self:flex-end}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-button{padding-bottom:7px;padding-top:9px;min-width:120px;line-height:1}.monsterinsights-addons-list .monsterinsights-addon-upgrade{text-align:center;width:100%}#request-filesystem-credentials-dialog[data-v-496d2653]{display:block}.monsterinsights-file-input{margin-bottom:20px}.monsterinsights-tools .monsterinsights-dark{margin-bottom:5px;display:block}.monsterinsights-tools-url-builder p .monsterinsights-info{margin-right:0}.monsterinsights-tools-url-builder .monsterinsights-input-text{margin-bottom:20px}.monsterinsights-required{color:#d4393d}textarea:-moz-read-only{background-color:#f9fbff}textarea:read-only{background-color:#f9fbff}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-tools-info-row p{margin-top:0}.monsterinsights-tools-info-row{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-tools-info-row .monsterinsights-tools-info-label{width:230px;-ms-flex-negative:0;flex-shrink:0}.monsterinsights-tools-info-row .monsterinsights-tools-info-description p{margin-bottom:5px}@media (max-width:782px){.monsterinsights-tools-info-row{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info a{color:#777}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info a:focus,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info a:hover{color:#393f4c}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info i{margin-left:10px;color:#b6c9da}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad{background-color:#0c55da;background-image:url(data:image/png;base64,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);background-repeat:no-repeat;background-position:0 0;background-size:contain;border-radius:5px;padding:30px;margin-top:30px;position:relative}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad{padding-bottom:50px}}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-title,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-title{font-weight:700;font-size:28px;line-height:32px;color:#fff;margin-top:0;margin-bottom:15px;font-family:Helvetica,Helvetica Neue,Arial,Lucida Grande,sans-serif}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-description,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-description{color:#fff;font-family:Roboto,sans-serif;line-height:20px}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-button,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-button{background:#256ef3;border:0;font-size:16px;font-weight:700;border-radius:5px;font-family:Roboto,sans-serif;position:relative;padding:12px 60px 12px 76px}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-button:hover,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-button:hover{background:rgba(37,110,243,.85);border-color:rgba(37,110,243,.85);outline:none}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-button:after,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-button:after{position:absolute;content:"";left:53px;top:50%;width:16px;height:17px;margin-top:-8px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAARCAYAAADUryzEAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAEJSURBVHgB3VPBbcMwDDxSbgEDfWQEb9Cu0BGMLqBu0L6Dou0j6BjVAkVW6AgZQSP450cSsrIaubErB0jyy31IUbwTJVKECSy+WhtMtVv6+UPpcnnFlAAxfY5CLpfHOBMXIEDJ+Vi2lQhsv8H0up+oou/JXzPcW136zu+7sAktMyPS4KS/vSbIuRTvr/BSl98KfcRhNIrNfTp9cIWExbK1hH8z0JPn9c1qUFkmMSeSJUeB0chGiPKKjcx2IpEs26uKSe5GfF9kRhYGGl7H2K2sa4Z64utbA3G5gif/AkRcgcIpqAn+01TawUEKXbFBaY8sz4htTPaoSewqiRa/FrO46l48BCqcAob/ASVTXz+pYfYFAAAAAElFTkSuQmCC);background-repeat:no-repeat}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-logo,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-logo{position:absolute;left:45px;bottom:40px;background-image:url(../img/pretty-links-logo-white.svg);background-repeat:no-repeat;width:240px;min-height:39px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-logo,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-logo{left:10px;bottom:0}}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-copy-to-prettylinks{position:relative;background:#256ef3;border-color:#0d59e3;margin-right:15px;padding:10px 23px 10px 48px}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-copy-to-prettylinks:active,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-copy-to-prettylinks:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-copy-to-prettylinks:hover{background:rgba(37,110,243,.85);border-color:rgba(37,110,243,.85);outline:none}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-copy-to-prettylinks:after{position:absolute;content:"";left:23px;top:50%;width:16px;height:15px;margin-top:-7px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAPCAYAAADtc08vAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAEQSURBVHgBlVLBccIwENyTPXnwSEwHooLYFYRnxlXQgekgpgNaSAe8eOSTuAI5lUAyDHxAx2mwAcEgj3fGPtne3VufBASwMuNkZd51iKNCHyMamIjUtzPqbfBv8okU7S6FwbS3AQgf5yWh6GWw+c2LpnuLpHl338cNKVZUMEMzkBJIIwDh1AReS6p6b3ezWEIkIp6eUndDOKm7i2Yc4alSw2xZy8MMPeE0z9nX4tz0z+QlXQ2uS/ySLcsm0QViMg9N/Fbs4O2Cgl2gA4R97WuuYEFplwEj0g8NiOjNJ2N9ayCc14cGIklaoftXy9vRge2ImT8vpuyljD05UyWlstjOh9lP293ViRy4UoFKWXszOAInrGJHik+ELQAAAABJRU5ErkJggg==);background-repeat:no-repeat}body.monsterinsights-prettylinks-flow-page{background:#fff}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow{max-width:770px;margin:0 auto}@media (max-width:782px){body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow{padding:0 30px}}@media (min-width:783px) and (max-width:935px){body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow{max-width:700px}}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow a,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow button,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow div,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow h1,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow h2,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow h3,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow h4,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow p,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow span{font-family:Roboto,sans-serif}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow p{font-size:16px;line-height:21px;color:#393f4c}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-header{text-align:center;max-width:680px;margin:0 auto;padding-top:75px;padding-bottom:20px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-header .monsterinsights-tools-prettylinks-flow-header-logo{min-height:56px;background-image:url(../img/mi-and-pl-logo.svg);background-repeat:no-repeat;background-position:50%}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-header .monsterinsights-prettylinks-flow-title{font-size:39px;font-weight:900;line-height:46px;text-align:center;color:#393f4c;margin-top:60px;margin-bottom:18px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-header .monsterinsights-prettylinks-flow-description{max-width:560px;margin:0 auto}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:25px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row .monsterinsights-tools-prettylinks-row-image{margin-right:-35px}@media (max-width:782px){body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row .monsterinsights-tools-prettylinks-row-image{margin-right:0}}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row .monsterinsights-tools-prettylinks-row-description{padding-right:16px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row .monsterinsights-tools-prettylinks-row-description h3{margin-top:0}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard{border-radius:5px;border:1px solid #e2e4e9;margin-bottom:36px}@media (max-width:782px){body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard{text-align:center;padding:30px 30px 0}}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated{border-width:2px;border-color:#338eef}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated .monsterinsights-prettylinks-flow-counter,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated .monsterinsights-prettylinks-flow-counter{background:#338eef}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated .monsterinsights-tools-prettylinks-action .monsterinsights-button,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated .monsterinsights-tools-prettylinks-action .monsterinsights-button{background:#338eef;border-color:#338eef;color:#fff}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-install-prettylinks .monsterinsights-button:after,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-install-prettylinks .monsterinsights-button:after{background-position:100% -16px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button{pointer-events:auto}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button:after,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button:after{background-position:-18px -18px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-status-active .monsterinsights-prettylinks-flow-counter{background:#1ec185}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-status-active .monsterinsights-tools-prettylinks-action .monsterinsights-button{pointer-events:none}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-prettylinks-flow-counter{width:48px;height:48px;text-align:center;background:#b6bcc8;border-radius:50%;color:#fff;font-size:24px;line-height:48px;font-weight:700;margin-right:35px;margin-left:35px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action{padding:30px 0}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action h3{font-size:18px;line-height:18px;color:#393f4c;font-weight:700;margin-top:12px;margin-bottom:0}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action p{margin-top:6px;margin-bottom:0}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action .monsterinsights-button{font-size:14px;font-weight:700;border:0;border-radius:5px;margin-top:30px;color:#b6bcc8;background:#e2e4e9;border-color:#e2e4e9;padding:13px 20px 13px 46px;position:relative}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action .monsterinsights-button:after{position:absolute;content:"";left:20px;top:50%;width:16px;height:16px;margin-top:-8px;background-repeat:no-repeat;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAAXNSR0IB2cksfwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAIRQTFRFAAAA1Nfe09fe1dff09ff0tfe0dXd09je09ff1Njf09Td0tbcz9fbz8/f09je0tfc0tjf1Nje19fXz8/Pz9fX09fd0dfdDl2vDlyvDlyxDlyvDluvDlytDlyvDVyvDVysDFyrEGCvDlyvDlyuDluvDlquDl2vDl2vEGCvEFCvCFivDlyvL0miRwAAACx0Uk5TAN//f3/fgO+/j5BQQBDPoI/PIBAggIDf/39/34Dvv1BAEM+gj5CP7yAQIICE4JwzAAABEElEQVR4nKWQCU/EIBCFH9UC67G1XqAF1FZdV////7Mc07K9YuIjIRPex7zJAEGsKBiSzopM5+nR18jqUWtAybnYBCQg/wEIKXfAhZRleL0cJ7qKACeWB+B6T36FRWAgKopgUt4AOylFCo5EtTGkJ8ifAszf9e2+uqt9xRIgOGcRiPH1ffR9y8mqs1oUYaiH3H/MAIESYljXoPK0QzkDopTWasWK0r3+DDzpTM8LgD7RGtAYYzcBBzgCXsZ+r4vAW0t+lzpY596BD+ea2JeIjiIMpZkUHIkOq0AgyO8BFSI+nTv0gPKf26+2O4Y2ajZkjG+/jy0tZhEIsv0hwBqjpoBFA6tnq27G+tCfBvjJffMLAwgkWFxoOwcAAAAASUVORK5CYII=);background-position:100% 0}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button{pointer-events:none}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button:after{width:14px;height:14px;margin-top:-7px;background-position:-18px 0}.monsterinsights-about-block{padding:25px;background:#fff;border:1px solid #d6e2ed;margin-top:20px;margin-right:20px;margin-left:20px}.monsterinsights-about-block h3{color:#393f4c;font-size:18px;margin:0 0 20px;line-height:1.4}.monsterinsights-about-block p{font-size:16px}.monsterinsights-about-block:after{content:"";display:table;clear:both}div[class*=" monsterinsights-path-about-"] .monsterinsights-container,div[class^=monsterinsights-path-about-] .monsterinsights-container{width:100%}div[class*=" monsterinsights-path-about-"] .monsterinsights-header,div[class*=" monsterinsights-path-about-"] .monsterinsights-navigation-bar,div[class^=monsterinsights-path-about-] .monsterinsights-header,div[class^=monsterinsights-path-about-] .monsterinsights-navigation-bar{padding-right:20px;padding-left:20px}@media (max-width:782px){div[class*=" monsterinsights-path-about-"] .monsterinsights-header,div[class*=" monsterinsights-path-about-"] .monsterinsights-navigation-bar,div[class^=monsterinsights-path-about-] .monsterinsights-header,div[class^=monsterinsights-path-about-] .monsterinsights-navigation-bar{padding-right:0;padding-left:0}}div[class*=" monsterinsights-path-about-"] .monsterinsights-addons-list,div[class^=monsterinsights-path-about-] .monsterinsights-addons-list{padding:0 20px}div[class*=" monsterinsights-path-about-"] .monsterinsights-addons-list .monsterinsights-addon,div[class^=monsterinsights-path-about-] .monsterinsights-addons-list .monsterinsights-addon{width:calc(33.3333% - 12.5px)}@media (max-width:782px){div[class*=" monsterinsights-path-about-"] .monsterinsights-addons-list .monsterinsights-addon,div[class^=monsterinsights-path-about-] .monsterinsights-addons-list .monsterinsights-addon{width:100%}}div[class*=" monsterinsights-path-about-"] .monsterinsights-addon-image,div[class^=monsterinsights-path-about-] .monsterinsights-addon-image{min-height:74px;padding:5px;display:-webkit-box;display:-ms-flexbox;display:flex;height:74px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}div[class*=" monsterinsights-path-about-"] .monstericon-star:before,div[class^=monsterinsights-path-about-] .monstericon-star:before{color:#fdb72c}.monsterinsights-lite-vs-pro-table{padding:0}.monsterinsights-lite-vs-pro-table .monsterinsights-lite-vs-pro-footer{background:#f0f0f0}.monsterinsights-lite-vs-pro-header{text-align:center;padding:40px 0 22px}.monsterinsights-lite-vs-pro-header h1{font-size:22px;margin:0 0 22px}.monsterinsights-features-table{width:100%;border-collapse:collapse;border-top:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-features-table td,.monsterinsights-features-table th{width:33.33333%;border-bottom:1px solid #d6e2ed;padding:30px;vertical-align:top}.monsterinsights-features-table td p,.monsterinsights-features-table th p{margin:0}.monsterinsights-features-table th{background:#f0f0f0;text-align:right;border-left:none}.monsterinsights-features-table td p>span{display:block;margin-right:30px}.monsterinsights-features-full:before,.monsterinsights-features-none:before,.monsterinsights-features-partial:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f021";font-size:20px;margin-left:10px;color:#d4393d;position:relative;top:2px}.monsterinsights-features-partial:before{content:"";background:url(../img/about-icon-check.svg) no-repeat 50%;background-size:19px auto;width:19px;height:19px;top:6px}.monsterinsights-features-full:before{content:"\f015";color:#4ab99b}.monsterinsights-lite-vs-pro-footer{padding:50px 20px 30px;text-align:center}.monsterinsights-lite-vs-pro-footer h3{margin-bottom:10px}.monsterinsights-lite-vs-pro-footer p{margin-bottom:0}.monsterinsights-lite-vs-pro-footer a{color:#509fe2}.monsterinsights-lite-vs-pro-footer a:focus,.monsterinsights-lite-vs-pro-footer a:hover{color:#393f4c}.monsterinsights-lite-vs-pro-footer.monsterinsights-small{padding:0;text-align:right}.monsterinsights-lite-vs-pro-footer.monsterinsights-small h3{margin-bottom:5px}.monsterinsights-lite-vs-pro-footer.monsterinsights-small p{margin-top:0}.monsterinsights-two-column{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-two-column>div{width:50%}.monsterinsights-list-check ul{margin:0}.monsterinsights-list-check li{font-size:16px;margin-top:10px;padding-right:30px;position:relative}.monsterinsights-list-check li:first-child{margin-top:0}.monsterinsights-list-check li:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f015";font-size:20px;margin-left:10px;color:#5cc0a5;position:absolute;right:0;top:0}.monsterinsights-about-docs-row:after{display:table;clear:both;content:""}.monsterinsights-about-docs-image{width:270px;float:right;margin-left:20px}.monsterinsights-about-docs-1:after{background-image:url(../img/about-icon-connect.png)}.monsterinsights-about-docs-2:after{background-image:url(../img/about-icon-guide.png)}.monsterinsights-about-docs-3:after{background-image:url(../img/about-icon-gdpr.png)}.monsterinsights-about-docs-4:after{background-image:url(../img/about-icon-addons.png)}.monsterinsights-about-docs-5:after{background-image:url(../img/about-icon-ecommerce.png)}.monsterinsights-bg-img.monsterinsights-about-team{padding-top:59%}.monsterinsights-bg-img.monsterinsights-about-team:after{background-image:url(../img/about-team.jpg)}.monsterinsights-about-page-right-image{float:left;width:40%;text-align:center;margin:0 20px 0 0}@media (max-width:782px){.monsterinsights-about-page-right-image{width:100%;float:none;margin:0 0 20px}}.monsterinsights-about-page-right-image img{width:100%}.monsterinsights-about-page-right-image figcaption{color:#999797;margin-top:5px}.monsterinsights-about-page-right-image iframe{max-width:100%}.monsterinsights-path-growth-tools{background-color:#fafafa}.monsterinsights-path-growth-tools .monsterinsights-container{width:100%!important}.monsterinsights-path-growth-tools .monsterinsights-header{padding:20px}.monsterinsights-path-growth-tools .monsterinsights-navigation-bar{padding-right:20px;padding-left:20px}.monsterinsights-growth-tools{padding:16px 20px 0}.mi-growth__block{margin-bottom:17px}.mi-growth__block-title{padding:16px 0;font-style:normal;font-weight:700;font-size:18px;line-height:21px;color:#393e4b;margin:0}.mi-growth__content{display:-webkit-box;display:-ms-flexbox;display:flex;background:#fff;border:1px solid #e2e4e9;padding:24px}@media (max-width:450px){.mi-growth__content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center}}.mi-growth__content:nth-child(n+2){border-top:none}.mi-growth__content-icon_container{margin-left:24px}@media (max-width:450px){.mi-growth__content-icon_container{margin:0 auto 24px}}.mi-growth__content-icon{border:1px solid #e2e4e9;border-radius:5.33333px;width:40px;height:40px;background-repeat:no-repeat;background-position:50%}.mi-growth__content-icon.icon-mi{background-image:url(../img/icon-mi.svg)}.mi-growth__content-icon.icon-aioseo{background-image:url(../img/icon-aioseo.svg)}.mi-growth__content-icon.icon-pushengage{background-image:url(../img/icon-pushengage.svg)}.mi-growth__content-icon.icon-rafflepress{background-image:url(../img/icon-rafflepress.svg)}.mi-growth__content-icon.icon-constantcontact{background-image:url(../img/icon-constantcontact.svg)}.mi-growth__content-icon.icon-semrush{background-image:url(../img/icon-semrush.svg)}.mi-growth__content-icon.icon-wpforms{background-image:url(../img/icon-wpforms.svg)}.mi-growth__content-icon.icon-optinmonster{background-image:url(../img/icon-optinmonster.svg)}.mi-growth__content-icon.icon-smashballoon{background-image:url(../img/icon-smashballoon.svg)}.mi-growth__content-icon.icon-seedprod{background-image:url(../img/icon-seedprod.png)}.mi-growth__content-icon.icon-easyaffiliate{background-image:url(../img/icon-easyaffiliate.svg)}.mi-growth__content-icon.icon-searchwp{background-image:url(../img/icon-searchwp.svg)}.mi-growth__content-icon.icon-edd{background-image:url(../img/icon-edd.svg)}.mi-growth__content-icon.icon-memberpress{background-image:url(../img/icon-memberpress.svg)}.mi-growth__content-icon.icon-thirstyaffiliates{background-image:url(../img/icon-thirstyaffiliates.png)}.mi-growth__content-icon.icon-advancedcoupons{background-image:url(../img/icon-advancedcoupons.svg)}.mi-growth__content-icon.icon-prettylinks{background-image:url(../img/icon-prettylinks.svg)}.mi-growth__content-icon.icon-guide{background-image:url(../img/icon-guide.svg)}.mi-growth__content-desc_container{-webkit-box-flex:1;-ms-flex:1;flex:1;padding-left:24px}@media (max-width:450px){.mi-growth__content-desc_container{padding-left:0}}.mi-growth__desc-title{font-style:normal;font-weight:700;font-size:16px;line-height:18px;color:#393f4c;margin:0 0 7px}@media (max-width:450px){.mi-growth__desc-title{margin-bottom:16px}}.mi-growth__desc-excerpt{color:#586074;padding:0;margin:0;font-style:normal;font-weight:400;font-size:14px;line-height:16px}@media (max-width:450px){.mi-growth__desc-excerpt{margin-bottom:16px}}.mi-growth__content-button_container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:767px){.mi-growth__content-button_container{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}}.mi-growth__content-button_container .btn{width:170px;text-align:center;padding:7.5px 0;font-style:normal;font-weight:700;font-size:14px;line-height:18px;border-radius:5px;display:inline-block;text-decoration:none;margin-right:24px;border:0;cursor:pointer;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}@media (max-width:767px){.mi-growth__content-button_container .btn{margin-right:0;margin-bottom:24px}}.mi-growth__content-button_container .btn-green{color:#fff;background-color:#46bf40}.mi-growth__content-button_container .btn-blue{color:#fff;background-color:#338eef}.mi-growth__content-button_container .btn-blue:hover{background-color:#2a73c2;color:#fff}.mi-growth__content-button_container .btn-guide{color:#338eef;border:1px solid #338eef;background-color:#fff}.mi-growth__content-button_container .btn-guide:hover{background-color:#efefef;color:#338eef}.monsterinsights-dark[data-v-5b3522ee]{display:block}.monsterinsights-colorpicker-preview span{width:40px;height:40px;display:inline-block;border:1px solid #b9c9d7;border-radius:5px}.monsterinsights-colorpicker-picker{position:absolute;z-index:100}.monsterinsights-colorpicker-picker .hu-color-picker{min-width:218px!important}.monsterinsights-pp-theme-picker{overflow:hidden}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-carousel,.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slide{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slide{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-negative:0;flex-shrink:0}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slide:after{content:"";margin-right:48%}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option{width:150px;border-radius:10px;border:1px solid #d3d7de;height:150px;padding:17px 20px;margin-bottom:24px;cursor:pointer;position:relative;background:rgba(0,0,0,0)}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option.monsterinsights-pp-theme-option-selected,.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option:focus,.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option:hover{border:3px solid #338eef;padding:15px 18px;outline:none}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option.monsterinsights-pp-theme-not-available .monsterinsights-pp-theme-icon,.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option.monsterinsights-pp-theme-not-available .monsterinsights-pp-theme-name{opacity:.6}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-active-icon{position:absolute;left:5px;top:5px}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-icon{display:block;width:110px;height:94px}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-name{color:#393f4c;font-size:14px;margin-top:8px;display:block;text-align:right}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-icon{background:url(../img/theme-icons.png) no-repeat 100% 0;background-size:488px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-beta .monsterinsights-pp-theme-icon{background-position-x:-126px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-charlie .monsterinsights-pp-theme-icon{background-position-x:-252px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-delta .monsterinsights-pp-theme-icon{background-position-x:-378px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-echo .monsterinsights-pp-theme-icon{background-position:100% -126px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-foxtrot .monsterinsights-pp-theme-icon{background-position:-126px -126px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-golf .monsterinsights-pp-theme-icon{background-position:-252px -126px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-hotel .monsterinsights-pp-theme-icon{background-position:-378px -126px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-india .monsterinsights-pp-theme-icon{background-position:100% -252px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-juliett .monsterinsights-pp-theme-icon{background-position:-126px -252px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-kilo .monsterinsights-pp-theme-icon{background-position:-252px -252px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-lima .monsterinsights-pp-theme-icon{background-position:-378px -252px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-mike .monsterinsights-pp-theme-icon{background-position:100% -378px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-november .monsterinsights-pp-theme-icon{background-position:-126px -378px}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls{text-align:center;font-size:14px;color:#626d83}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls>span{display:inline-block;margin:0 11px;vertical-align:middle}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button{border:none;border-radius:3px;background:#f0f2f4;width:20px;height:20px;text-align:center;color:#626d83;font-size:8px;cursor:pointer}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button:focus,.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button:hover{background:#dadcde}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button:disabled{opacity:.5;cursor:default}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button i{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button.monsterinsights-pp-themes-slider-button-next i{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-option{text-align:center}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-name{position:absolute;right:18px;bottom:10px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-icon{width:74px;height:46px;background-image:url(data:image/png;base64,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);background-repeat:no-repeat;background-position:100% 0;background-size:392px;display:inline-block}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-beta .monsterinsights-pp-theme-icon{background-position-x:-212px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-charlie .monsterinsights-pp-theme-icon{background-position-x:-106px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-delta .monsterinsights-pp-theme-icon{height:43px;background-position:-318px 0}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-echo .monsterinsights-pp-theme-icon{height:76px;background-position:100% -73px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-foxtrot .monsterinsights-pp-theme-icon{background-position:-106px -90px;height:41px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-golf .monsterinsights-pp-theme-icon{background-position:-212px -83px;height:56px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-hotel .monsterinsights-pp-theme-icon{height:50px;background-position:-318px -86px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-option{text-align:center}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-name{position:absolute;right:18px;bottom:10px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-icon{width:74px;height:40px;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAlAAAACcCAMAAACHiWWRAAAAzFBMVEUAAACfz/g3j+8yju8yju8zje/n8f5BlfAyju/n8v1BlfBClvCfy/dAl++gy/jn8v4yju8zje/m8vzn8v3n8v0yju/n8vzl8Pzf7/8wj+/n8v1ClvDn8f3o8vygyvkzju+gy/gzjO/n8f2gy/dBlfDo8v4yje0zjvCgy/gzjOwzju/n8v2gy/hZo/JClvDx9/5Lm/FGmPHe7fykzfnR5ftUoPI+lPC21/lhp/Oy1fk3ke9rrfNRn/KZx/eBuvY8k/CMwPacyfjB3fo6ku9qJEf1AAAAKnRSTlMAASDv369f71/fv68gIO/Pz7+vj4CAb1AQEO/v3q+vj79Q7u7ur3BvvlArPgaxAAAHCUlEQVR42uzcu2pCURRF0UWiopXvZyMpTMjaCBZGBAX//69CyhhtVMzcsMcXLDiTq7e4RyWz+bhvjF5bJbeXhlEaLyqZwXqyG3OVvNrGGavk1TNOXyUvA6nkZSCVvAykkpeBVPIykEpeBlLJy0AqeRlIWLPJqhP/rrtqCctAopouAqKDTcpAghoGyEhMBhLTKFCGQjKQkFoBMxWRgYQE+Df+22ImIAOJCPeAipgIyEAiGgTOQEAGElE3cDoCMpCIAkhABhJRAAnIQCIKIAEZSEQBJCADiSiABGQgEQWQgAwkogDSj/lHE/Cxbq/ZrqDuC2q73/mZDtuLQX2+GqLRrqDuCGq785PttheCWhpkXEHdHtTBT7f/G9TYKMsK6uag/Hy7OMO7meKtgkoUlOMM7+qc17mBREQMCveAst8NJCJiUE3jACdVUFfFGeBdTLgfYbuCuoqwISMREQ6TsCEj5Ksn4TAJGzKqoMAbMqqgwBsyqqDAGzKqoMAbMqqgwBsyqqDAGzKqoMAbMhIR4TAJGzISEeEwb9lw2nytH+K4OTkpESUNarN+oI1zElHOoI7rhzo6JRGlDOqbvbvbURUGozBMMBMSCAdz7OkcLaS2iSjb/3Hf/z1tdNyaMUym2AKtXe81PCGFfqWybOIzKnIxH0EdSut5uY6KXMxHULIRwEcUQf1Qd1Db0noVPCxyMR9BlT0ED4tcjKAIiqC+t1VCCFkRlBN5D2p7wFeiIigH8h2Uwq11RVDj5zkohXuNKIIaPb9BSXxrTVCj5wUosd/N9DrWQYGK3yfo1lsc3YrTRNgti70AJXYz7T7rgEDFE3RuEt88JcJ609gHUPtZh44BgXrDE71H1zLRQ6kPoGZd+gwIFJ5pEl0TfTR9OVAzgvqlXkGJkEBVQhIUQQE7O6CqNaAIiqCMF+V3T4AiKIIy/mxw9wQoggoeFMRel9PxN0+AIqjgQT1U3lvj3qOVdk+AIqhLiWgiqKZ2KLqeAEVQ51LRQ5nnoMpK4Jq2J0B1B1U4mCGoPBHWS3LfQZ1J/QVwUKW2J0ARVFOe2eaU5l5sDj9WtqfvCVAEdS3I8ZWHzD0BiqAuEVSTBU+AIqhzBNVkwxOgCKopTFDyVMxNWkm0JAkqioIEJYu5YUW7KIKKggS1mht3QluSoHoHtUQvGYGam1egLUVQvYOqMXibAUDNCeqWlVMvWezRNfsENQioODE736IHqlhsMGTLelEQ1CigMmFU+gMoByOoQUAJs6YERVA2QQmCIiiCulS4CGpRLzFkmwVB2QJ1Mve0sgvKjbdhgtJomK0Xc1AbDF5NUJZAQf4x43SSMAPlxI1ZS4LS7PnxFQXNXgEULINKhgDlxGITIKgBQKXCqMzfrReC+sqpUy8fuQ4oNxabAEG15dCpl480d3ceaklQenk5voIRIqj/EZRmrwfKhUFEgrIOaiuN2j4Lyo1BRIJqr/t/yo91aaegt17+tXd3q20DQRSAp3EcXBDO/19JnKSBtuzZhrBLEIK66fs/VUNsCp7asSzG+Eia71YwF8tB7M5Y63e9DNTT1OA2cttAUfwQ0QO1VKMrEf/sPFAEWhEohs1mUJbeRm7rVwgeqGU+baYdX73EJX7aeg6hf4Eq7sfR1qRoxeglavaBeg2hd4EqxtHcuMAiis1mUKbxf/YvqN4FahK34B6Eam3K7XdQfQtU3IYxCK1vG0xftvB+8kBZAKGg6HvKp7+fwutbm9vEy/NrmPFA9SZQBKClKsfNlQl2ZBCakLlxbMADZQRKyrGRnGBGjkMDQ5m7j1swAaFACEoZG6pgpuFfxG6zbfBYgFAgBCU2lWFGZG8YNjM43pN/ikm09fijaOVXL7sAJTYGM8IIWqpytFQmXVs/90B1OVApR2M56dr6eRsDlWMTPQxUGc1Va2pXUPYDnSMoVWyoxExfAhXt5TW1M5RhoDPEApK2ASMocQvW1YbyLdAZQUtl3FyuEuY8UKtZB+p6EMjsU56GhRGUHO2tqw1FHgKZkQeqLihVNFeuqV1CEbkLVM45b6kRRljA0TYQkfNA5I702iNhBC2VtnGqkq6tny9dqBFN72DwwHqPljACIXk3Gh6Fndsffr8mXycyICSEQEgYgZAQAiFhBEJCCMrKIXqZUEtH18kDZXwarjtc6eo6eaDsh+gVaujqOnmg7EdUGTV0dZ3kM+gcCiEo8QOoobOBOgGdEyGEBR6olS5A50AIQckeqOWuvoDMjTCCUsWVStTQ2UDJJchQvqC8bVDfKaicCSVoqVwxDO95Y/PNGYicCicQElYHNL2Dr5dCCoSE18HtIXbu5vbiSliBkLj2AiFx7QVC4toLhMS1FwiJay+agzD5EN35EN3V5UN0R8uH6E58iO6I+RDdifgQ3fHyIbqb6egQ/S9Ih7uHrNmwgAAAAABJRU5ErkJggg==) no-repeat 100% -19px;background-size:296px;display:inline-block}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-beta .monsterinsights-pp-theme-icon{background-position-x:-74px;background-position-y:-6px;height:66px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-charlie .monsterinsights-pp-theme-icon{background-position-x:-148px;height:50px;background-position-y:-14px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-delta .monsterinsights-pp-theme-icon{height:78px;background-position:-222px 0}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-preview{position:relative}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-controls{margin-left:22px;margin-bottom:20px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls input[type=number]{width:40px;height:40px;border-radius:5px;border:1px solid #b9c9d7;padding:2px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-controls-inputs{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label{font-size:14px;width:auto;margin-left:9px;color:#393f4c;margin-bottom:8px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label span{display:block}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-pp-control-label{margin-bottom:4px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows input{border-radius:0 5px 5px 0;text-align:center;-moz-appearance:textfield}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows input::-webkit-inner-spin-button,.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;font-size:10px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow{background:#f9fbff;padding:3px 5px;border:1px solid #b9c9d7;border-right-width:0;cursor:pointer}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow:focus,.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow:hover{background:#fff}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow.monsterinsights-number-input-arrow-up{border-radius:5px 0 0 0;border-bottom:0;padding-bottom:4px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow.monsterinsights-number-input-arrow-up i{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow.monsterinsights-number-input-arrow-down{border-radius:0 0 0 5px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-unit{font-size:14px;color:#444;margin-right:5px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-controls-description{font-weight:700}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-color-input-inline{display:-webkit-box;display:-ms-flexbox;display:flex;padding-left:9px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-color-input-inline .monsterinsights-colorpicker-preview span{border-top-left-radius:0;border-bottom-left-radius:0;border-left-width:0}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-color-input-inline input[type=text]{border-top-right-radius:0;border-bottom-right-radius:0;max-width:108px}.monsterinsights-admin-page .monsterinsights-color-picker{position:relative;max-width:40px}.monsterinsights-admin-page .monsterinsights-color-picker .monsterinsights-colorpicker-picker{bottom:-120px;margin-right:10px;right:100%}.monsterinsights-admin-page .monsterinsights-pp-posts-picker .multiselect__input{border:none}.monsterinsights-admin-page .monsterinsights-popular-posts .monsterinsights-settings-block .monsterinsights-settings-input-select+p{margin-top:25px}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button{background:#fff;color:#444;border-bottom-width:1px;border-color:#b9c9d7;border-radius:0;line-height:18px;border-left:0;margin:0}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button:hover{background:#509fe2;color:#fff;border-color:#b9c9d7}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button:focus{z-index:10;position:relative;border-radius:0;outline:none}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button:first-child{border-top-right-radius:3px;border-bottom-right-radius:3px}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button:last-child{border-top-left-radius:3px;border-bottom-left-radius:3px;border-left:1px solid #d6e2ed}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button.monsterinsights-selected-interval{background:#509fe2;color:#fff;font-weight:400}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-notice-no-posts{padding-top:15px;cursor:default}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-notice-no-posts span{color:#d83638;font-weight:400}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-beta{width:144px;height:100px;padding:0}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-beta:after{background-image:url(../img/theme-preview-beta.png)}.monsterinsights-inline-popular-posts-image{width:128px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;margin-left:16px}.monsterinsights-inline-popular-posts-widget{margin-bottom:24px}.monsterinsights-inline-popular-posts-alpha{padding:24px 27px}.monsterinsights-inline-popular-posts-alpha .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1;display:block;margin-bottom:6px}.monsterinsights-inline-popular-posts-alpha .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:1;text-decoration:none}.monsterinsights-inline-popular-posts-beta{padding:14px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border:1px solid #d6e2ed}.monsterinsights-inline-popular-posts-beta .monsterinsights-inline-popular-posts-text{margin-right:19px}.monsterinsights-inline-popular-posts-beta .monsterinsights-inline-popular-posts-label{display:block;font-weight:700;font-size:18px;line-height:18px}.monsterinsights-inline-popular-posts-beta .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:130%;text-decoration:none}.monsterinsights-inline-popular-posts-charlie .monsterinsights-inline-popular-posts-border{display:block;border-bottom:1px solid;margin:16px 0}.monsterinsights-inline-popular-posts-charlie .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:16px;line-height:1.1}.monsterinsights-inline-popular-posts-charlie .monsterinsights-inline-popular-posts-list{list-style:disc inside none}.monsterinsights-inline-popular-posts-charlie .monsterinsights-inline-popular-posts-list li{font-style:normal;font-weight:400;font-size:16px;line-height:130%}.monsterinsights-inline-popular-posts-delta{border:1px solid #d6e2ed;padding:16px 18px;border-radius:5px}.monsterinsights-inline-popular-posts-delta .monsterinsights-inline-popular-posts-icon{margin-left:8px}.monsterinsights-inline-popular-posts-delta .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1.1;vertical-align:top}.monsterinsights-inline-popular-posts-delta .monsterinsights-inline-popular-posts-title{display:block;font-weight:700;font-size:18px;line-height:1;text-decoration:none;margin-top:4px}.monsterinsights-inline-popular-posts-echo{padding:13px 16px}.monsterinsights-inline-popular-posts-echo .monsterinsights-inline-popular-posts-icon{margin-left:8px}.monsterinsights-inline-popular-posts-echo .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:16px;line-height:1.1;margin-left:8px}.monsterinsights-inline-popular-posts-echo .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:16px;line-height:130%;text-decoration:none}.monsterinsights-inline-popular-posts-foxtrot{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-inline-popular-posts-foxtrot .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1.1;display:block}.monsterinsights-inline-popular-posts-foxtrot .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:125%;text-decoration:none}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-image{padding-top:57%}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-image:after{background-image:url(../img/theme-preview-image.jpg)}.monsterinsights-inline-popular-posts-golf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:16px;line-height:1.1;float:right;background:#fff;padding-left:20px}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:16px;line-height:125%;text-decoration:none;display:block;clear:both;margin-top:14px}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-title:before{width:100%}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-border{display:block;border-width:2px 0 0;border-style:solid;margin-top:10px}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-border-2{border-top:1px solid #e2e4e9;margin-top:20px;display:block}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-text{width:100%}.monsterinsights-inline-popular-posts-hotel .monsterinsights-inline-popular-posts-icon{margin-left:10px;vertical-align:middle}.monsterinsights-inline-popular-posts-hotel .monsterinsights-inline-popular-posts-title{font-style:normal;font-weight:700;font-size:18px;text-decoration:none;line-height:130%}.monsterinsights-inline-popular-posts-india{padding:13px 16px 13px 12px;position:relative}.monsterinsights-inline-popular-posts-india .monsterinsights-inline-popular-posts-border{border-width:0 4px 0 0;border-style:solid;position:absolute;right:0;top:0;bottom:0}.monsterinsights-inline-popular-posts-india .monsterinsights-inline-popular-posts-title{font-size:14px;text-decoration:none;font-weight:700}.monsterinsights-inline-popular-posts-india .monsterinsights-inline-popular-posts-label{font-size:14px;text-decoration:none;font-weight:700;margin-left:4px}.monsterinsights-inline-popular-posts-juliett{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%}.monsterinsights-inline-popular-posts-juliett .monsterinsights-inline-popular-posts-border{border-width:1px 0 0;border-style:solid;position:absolute;right:0;top:0;left:0}.monsterinsights-inline-popular-posts-juliett .monsterinsights-inline-popular-posts-title{font-size:18px;text-decoration:none;font-weight:700;max-width:400px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;display:block;line-height:125%}.monsterinsights-inline-popular-posts-juliett .monsterinsights-inline-popular-posts-label{font-size:14px;line-height:18px;text-decoration:none;font-weight:700;padding:4px 12px;position:absolute;left:0;top:0}.monsterinsights-inline-popular-posts-kilo{position:relative;padding:30px 0}.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1}.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:130%;text-decoration:none;display:block;clear:both;margin-top:6px}.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-title:before{width:100%}.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-border,.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-border-2{display:block;position:absolute;right:0;left:0;top:0;border-bottom:4px dashed #e2e4e9}.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-border-2{bottom:0;top:auto}.monsterinsights-inline-popular-posts-lima{padding:16px 19px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-inline-popular-posts-lima .monsterinsights-inline-popular-posts-text{margin-right:13px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.monsterinsights-inline-popular-posts-lima .monsterinsights-inline-popular-posts-label{display:block;font-weight:700;font-size:18px;line-height:18px}.monsterinsights-inline-popular-posts-lima .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:120%;text-decoration:none;display:block;max-width:420px;margin-top:7px}.monsterinsights-inline-popular-posts-lima .monsterinsights-inline-popular-posts-image{width:144px;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;margin-left:0;margin-right:20px}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-image-2{padding-top:69%}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-image-2:after{background-image:url(../img/theme-preview-image-2.jpg)}.monsterinsights-inline-popular-posts-mike{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-inline-popular-posts-mike .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:125%;text-decoration:none;display:block;max-width:380px}.monsterinsights-inline-popular-posts-mike .monsterinsights-inline-popular-posts-label{position:absolute;z-index:10;right:0;top:0;font-size:14px;font-weight:700;padding:5px 8px;line-height:1.2}.monsterinsights-inline-popular-posts-mike .monsterinsights-inline-popular-posts-image{margin-left:20px}.monsterinsights-inline-popular-posts-november{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:5px;border-width:1px;border-style:solid;padding:16px}.monsterinsights-inline-popular-posts-november .monsterinsights-inline-popular-posts-text{width:100%}.monsterinsights-inline-popular-posts-november .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:16px;line-height:125%;text-decoration:none;display:block;margin-top:4px}.monsterinsights-inline-popular-posts-november .monsterinsights-inline-popular-posts-label{display:block;font-size:16px;font-weight:700}.monsterinsights-inline-popular-posts-november .monsterinsights-inline-popular-posts-image{margin-left:20px}.monsterinsights-inline-popular-posts-november .monsterinsights-inline-popular-posts-icon{width:32px;height:32px;display:inline-block;border-radius:50%;text-align:center;float:right;line-height:38px;margin-left:17px;margin-top:4px}.monsterinsights-sharedcount-status{font-size:12px;color:#777;margin-top:12px;line-height:1.5}.monsterinsights-pp-manual-placement-options{margin-right:-12px;margin-left:-12px}.monsterinsights-pp-manual-placement-option{width:150px;height:150px;border-radius:10px;border:1px solid #b7c9d9;font-size:14px;line-height:17px;color:#444;text-align:center;-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;cursor:pointer;margin-right:12px;margin-left:12px;vertical-align:top;max-width:calc(50% - 24px)}.monsterinsights-pp-manual-placement-option,.monsterinsights-pp-manual-placement-option .monsterinsights-pp-manual-placement-options-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-pp-manual-placement-option .monsterinsights-pp-manual-placement-options-icon{min-height:40px;margin-bottom:23px}.monsterinsights-pp-manual-placement-option.monsterinsights-pp-manual-placement-option-active{border:3px solid #338eef;font-weight:700;background:#f1f7fe}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps{width:calc(50% - 12px);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin:0}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps .monsterinsights-button{margin-top:10px}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps input[type=text]{border-color:#b7c9d9;color:#444}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps{width:100%;margin-top:30px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps li{color:#777}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps li b{color:#444}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block{width:calc(50% - 12px);border-radius:10px;background:-webkit-gradient(linear,right top,right bottom,color-stop(17.51%,rgba(51,142,239,.6)),color-stop(74.11%,#0e5caf));background:linear-gradient(-180deg,rgba(51,142,239,.6) 17.51%,#0e5caf 74.11%);color:#fff;position:relative;height:198px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;text-align:center}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block>div{position:absolute;bottom:0;padding:20px}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block .monsterinsights-welcome-overlay{position:fixed;bottom:0}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block .monsterinsights-pp-video-block-icon{margin-bottom:30px;display:inline-block}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block p{color:#fff;margin:0;text-align:right}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block{width:100%}}.monsterinsights-settings-content-pp-inline input[type=number]{max-width:80px}.monsterinsights-settings-content-pp-inline .monsterinsights-collapsible-content .settings-input-text{margin-bottom:20px}.monsterinsights-inline-desc{margin-right:5px}.monsterinsights-widget-popular-posts-widget{margin-bottom:24px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-alpha .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-alpha .monsterinsights-widget-popular-posts-list li{display:inline-block;padding:24px;background:#f0f2f4;border-radius:3px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-beta .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-beta .monsterinsights-widget-popular-posts-list li{display:inline-block;background:#fff;border-radius:3px;margin:0 6px 30px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700;border-right:4px solid #1ec185;padding-right:16px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-charlie .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-charlie .monsterinsights-widget-popular-posts-list li{display:inline-block;padding:24px;background:#f0f2f4;border-radius:3px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700;border-top:4px solid #338eef}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-delta .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-delta .monsterinsights-widget-popular-posts-list li{display:inline-block;padding:16px 0 0;margin:0 6px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700;border-top:2px solid #d3d7de}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-delta .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-delta .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta span{display:inline-block;margin-left:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-widget-popular-posts-list li{display:inline-block;margin:0 6px 24px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-comments{font-size:16px;font-weight:700;margin-top:14px;display:block}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta span{display:inline-block;margin-left:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-foxtrot .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-foxtrot .monsterinsights-widget-popular-posts-list li{display:inline-block;padding:16px;background:#f0f2f4;border-radius:5px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-foxtrot .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-comments{font-size:16px;font-weight:700;margin-top:14px;display:block}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-foxtrot .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-foxtrot .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta span{display:inline-block;margin-left:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list li{display:inline-block;padding:16px;background:#f0f2f4;border-radius:5px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-comments{font-size:16px;font-weight:700;margin-top:14px;display:block}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta span{display:inline-block;margin-left:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-label{font-weight:400;font-size:12px;display:inline-block;padding:4px 8px;border-radius:3px;line-height:1;margin-bottom:14px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-title{display:block}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-widget-popular-posts-list li{display:inline-block;margin:0 6px 24px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;font-weight:700;position:relative}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-text{position:absolute;bottom:0;padding:0 14px 14px;right:0;z-index:15}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta span{display:inline-block;margin-left:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-bg-img{margin-bottom:0;padding-top:50%;width:100%}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-bg-img:after{z-index:5;border-radius:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-bg-img:before{background:-webkit-gradient(linear,right bottom,right top,color-stop(-25.16%,#000),to(rgba(0,0,0,.1)));background:linear-gradient(0deg,#000 -25.16%,rgba(0,0,0,.1));content:"";top:0;bottom:0;right:0;left:0;position:absolute;z-index:10;border-radius:5px}.monsterinsights-pp-products-theme-preview-output,.monsterinsights-pp-widget-theme-preview-output{margin-top:28px}.monsterinsights-dummy-text{padding-left:24px}.monsterinsights-dummy-text p{margin-bottom:40px;line-height:180%}.monsterinsights-pp-widget-controls,.monsterinsights-pp-widget-theme-preview{position:relative}.monsterinsights-pp-widget-controls .monsterinsights-settings-input-select-simple select{min-width:50px}.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-1 .monsterinsights-widget-popular-posts-list{margin:0}.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-1 .monsterinsights-widget-popular-posts-list li{width:100%}.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-3 .monsterinsights-widget-popular-posts-list{margin:0}.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-3 .monsterinsights-widget-popular-posts-list li{width:calc(33.33333% - 12px)}@media (max-width:767px){.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-2 .monsterinsights-widget-popular-posts-list,.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-3 .monsterinsights-widget-popular-posts-list{margin:0}.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-2 .monsterinsights-widget-popular-posts-list li,.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-3 .monsterinsights-widget-popular-posts-list li{width:100%;margin-right:0;margin-left:0}}.monsterinsights-pp-widget-theme-preview-render h3{font-size:14px;margin-top:14px;margin-bottom:14px}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-settings-input-radio .monsterinsights-styled-radio{display:none}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-settings-input-radio>span{display:inline-block;margin-left:8px}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-wide-column{display:-webkit-box;display:-ms-flexbox;display:flex;border:1px solid #b7c9d9;border-radius:5px;width:40px;height:40px;padding:10px 5px;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-wide-column>span{background:#99a1b2;display:inline-block;width:8px;height:8px;border-radius:1px;margin-bottom:2px}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-wide-column.monsterinsights-wide-column-two>span{width:12px}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-wide-column.monsterinsights-wide-column-one>span{width:100%}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-styled-radio-label-checked .monsterinsights-wide-column{border:2px solid #338eef;background:#ecf4fe;padding:9px 4px}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-styled-radio-label-checked .monsterinsights-wide-column>span{background:#338eef}.monsterinsights-inline-checkboxes .monsterinsights-settings-input-checkbox{display:inline-block;margin-left:32px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-delta .monsterinsights-bg-img{width:121px;height:121px;padding:0;float:right;margin-left:16px;margin-bottom:12px}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-1:after{background-image:url(../img/theme-widget-1.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-2:after{background-image:url(../img/theme-widget-2.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-3:after{background-image:url(../img/theme-widget-3.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-4:after{background-image:url(../img/theme-widget-4.jpg)}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-bg-img{padding-top:50%;margin-bottom:14px;width:100%}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-5:after{background-image:url(../img/theme-widget-5.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-6:after{background-image:url(../img/theme-widget-6.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-7:after{background-image:url(../img/theme-widget-7.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-8:after{background-image:url(../img/theme-widget-8.jpg)}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-alpha .monsterinsights-bg-img{width:80px;height:80px;padding:0;float:right;margin-left:18px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-bg-img{padding-top:74%}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-1:after{background-image:url(data:image/jpeg;base64,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)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-2:after{background-image:url(../img/theme-products-2.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-3:after{background-image:url(../img/theme-products-3.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-4:after{background-image:url(../img/theme-products-4.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-5{padding-top:73%}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-5:after{background-image:url(../img/theme-products-5.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-6{padding-top:73%}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-6:after{background-image:url(../img/theme-products-6.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-7{padding-top:73%}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-7:after{background-image:url(../img/theme-products-7.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-8{padding-top:73%}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-8:after{background-image:url(../img/theme-products-8.jpg)}.monsterinsights-widget-popular-posts-products.monsterinsights-widget-popular-posts-echo .monsterinsights-bg-img{padding-top:50%;margin-bottom:14px;width:100%}.monsterinsights-input-text-small{margin-top:24px}.monsterinsights-input-text-small .settings-input-text-input{max-width:350px}.monsterinsights-input-text-extra-small .settings-input-text{display:inline-block;margin-left:5px}.monsterinsights-input-text-extra-small .settings-input-text-input{max-width:80px}.monsterinsights-widget-popular-posts-products{margin-bottom:24px}.monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-rating{display:block}.monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-rating svg{margin-left:2px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-alpha .monsterinsights-products-popular-posts-list{margin:0 -12px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-alpha .monsterinsights-products-popular-posts-list li{display:inline-block;margin:0 12px;width:calc(50% - 24px);vertical-align:top;font-size:16px;border-top:1px solid #d3d7de;padding-top:15px;padding-bottom:30px;font-weight:700;line-height:1.1}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-alpha .monsterinsights-products-popular-posts-price{display:block;margin:10px 0 7px;font-weight:400}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-products-popular-posts-list,.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-products-popular-posts-list li,.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-list li{display:inline-block;width:calc(50% - 12px);vertical-align:top;font-size:16px;padding:10px 12px;font-weight:700;line-height:1.1;margin:0 6px 24px;border-radius:3px;position:relative}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-products-popular-posts-price,.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-price{display:block;font-weight:400;position:absolute;left:12px;bottom:10px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-products-popular-posts-title,.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-title{margin-top:12px;display:block}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-products-popular-posts-rating,.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-rating{margin-top:13px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-list li{display:inline-block;width:calc(50% - 12px);vertical-align:top;font-size:16px;padding:0;font-weight:700;line-height:1.1;margin:0 6px 24px;border-radius:5px;position:relative}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-price{display:block;font-weight:400;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;margin-top:4px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-title{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;margin-top:4px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-text{position:absolute;bottom:0;z-index:10;right:0;left:0;padding:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-rating{margin-top:13px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-bg-img{padding-top:74%}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-bg-img:before{background:-webkit-gradient(linear,right bottom,right top,color-stop(-25.16%,#000),to(rgba(0,0,0,.1)));background:linear-gradient(0deg,#000 -25.16%,rgba(0,0,0,.1));content:"";top:0;bottom:0;right:0;left:0;position:absolute;z-index:10;border-radius:5px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-price{position:relative;margin-top:8px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-list li{padding:0}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-price{left:auto;bottom:auto;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-rating{margin-top:8px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-title{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-text{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-1 .monsterinsights-products-popular-posts-list{margin:0}.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-1 .monsterinsights-products-popular-posts-list li{width:100%;margin-right:0;margin-left:0}.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-3 .monsterinsights-products-popular-posts-list li{width:calc(33.33333% - 24px)}@media (max-width:767px){.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-2 .monsterinsights-products-popular-posts-list,.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-3 .monsterinsights-products-popular-posts-list{margin:0}.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-2 .monsterinsights-products-popular-posts-list li,.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-3 .monsterinsights-products-popular-posts-list li{width:100%;margin-right:0;margin-left:0}}.monsterinsights-pp-blurred{-webkit-filter:blur(3px);filter:blur(3px)}.monsterinsights-pp-upgrade-overlay{position:absolute;top:50%;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%);background:#fff;padding:8px 12px;-webkit-box-shadow:0 5px 15px rgba(0,0,0,.05),0 15px 35px rgba(0,0,0,.1);box-shadow:0 5px 15px rgba(0,0,0,.05),0 15px 35px rgba(0,0,0,.1);border-radius:3px;z-index:10;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-pp-upgrade-overlay>span{margin:0 10px}.monsterinsights-pp-theme-controls-holder{position:relative}.monsterinsights-pro-pill{font-style:normal;font-weight:700;font-size:11px;background:#1ec185;border-radius:5px;color:#fff;padding:3px 8px;margin-right:8px}.monsterinsights-bg-img.monsterinsights-popular-posts-products-upsell{position:relative;width:750px;height:815px;max-width:100%}.monsterinsights-bg-img.monsterinsights-popular-posts-products-upsell:after{background-image:url(../img/popular-products-bg.jpg)}.monsterinsights-bg-img.monsterinsights-popular-products-upsell-browser{padding-top:83%;-webkit-filter:drop-shadow(0 61.7368px 144.053px rgba(0,0,0,.1));filter:drop-shadow(0 61.7368px 144.053px rgba(0,0,0,.1))}.monsterinsights-bg-img.monsterinsights-popular-products-upsell-browser:after{background-image:url(../img/popular-products-browser.jpg)}.monsterinsights-popular-posts-products-upsell{margin-top:20px}.monsterinsights-popular-posts-products-upsell .monsterinsights-popular-products-upsell-window{padding:48px 50px 0;text-align:center;position:absolute;width:600px;top:62px;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%);z-index:1;background:#fff;border:1px solid #d6e2ed;-webkit-box-shadow:0 5px 15px rgba(0,0,0,.05),0 15px 35px rgba(0,0,0,.1);box-shadow:0 5px 15px rgba(0,0,0,.05),0 15px 35px rgba(0,0,0,.1)}.monsterinsights-popular-posts-products-upsell h2{margin-top:0;font-size:22px;line-height:1.2}.monsterinsights-popular-posts-products-upsell p{font-size:16px;line-height:1.2;color:#626d83;margin-bottom:32px}.monsterinsights-popular-posts-products-upsell .monsterinsights-button-text{margin:28px 0;color:#99a1b2;font-size:16px;display:inline-block}.monsterinsights-popular-posts-widget-category{margin-top:25px}.monsterinsights-popular-posts-widget-category.monsterinsights-popular-posts-widget-category-lite .monsterinsights-settings-input-select{pointer-events:none;opacity:.6}.monsterinsights-popular-posts-products-no-woocommerce{margin-top:72px}.monsterinsights-popular-posts-products-no-woocommerce .monsterinsights-settings-block{opacity:.6;pointer-events:none}.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice{position:absolute;top:-72px;right:0;left:0;padding:16px 24px;background:#d7930f;color:#fff;font-size:12px}.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice a{color:#fff;text-decoration:underline;font-weight:700}.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice a:focus,.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice a:hover{text-decoration:none}.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice span{margin-right:8px}.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice svg{vertical-align:middle}.monsterinsights-popular-posts-products-top{position:relative}.monsterinsights-pp-placement-options-accordion{padding-right:30px}.monsterinsights-pp-accordion-item-title{border-bottom:1px solid #d6e2ed;padding:24px 0;position:relative}.monsterinsights-pp-accordion-item-title.monsterinsights-pp-accordion-item-title-toggle *{cursor:pointer}.monsterinsights-pp-accordion-item-title .monsterinsights-settings-input-toggle-collapsible{position:absolute;left:0;top:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.monsterinsights-pp-accordion-item-title .monsterinsights-settings-input-toggle-collapsible i{-webkit-transform-origin:50%;-ms-transform-origin:50%;transform-origin:50%}.monsterinsights-pp-accordion-item-title.monsterinsights-pp-accordion-item-title-active{border-bottom:0}.monsterinsights-pp-accordion-item-title.monsterinsights-pp-accordion-item-title-active .monsterinsights-settings-input-toggle-collapsible i{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}.monsterinsights-pp-accordion-item-title .monsterinsights-pp-accordion-item-title-top{margin-bottom:8px;font-weight:700;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-pp-accordion-item-title .monsterinsights-pp-accordion-item-title-top>span{margin-left:8px;margin-right:8px}.monsterinsights-pp-accordion-item-title .monsterinsights-pp-accordion-item-title-top .monsterinsights-settings-input-checkbox{display:inline-block}.monsterinsights-pp-accordion-item-title .monsterinsights-pp-accordion-item-title-bottom{color:#777;padding-left:45px}.monsterinsights-pp-accordion-item-content{border-bottom:1px solid #d6e2ed;padding:0 0 24px}.monsterinsights-dummy-text p,.monsterinsights-pp-inline-theme-preview-render>p{opacity:.5}.monsterinsights-pp-products-theme-preview-output-narrow,.monsterinsights-pp-widget-theme-preview-output-narrow{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-dummy-text,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-dummy-text{width:60%}.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget{width:40%}.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-list,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-widget-popular-posts-list,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-products-popular-posts-list,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-widget-popular-posts-list,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-list,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-widget-popular-posts-list,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-products-popular-posts-list,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-widget-popular-posts-list{margin:0}.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-list li,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-widget-popular-posts-list li,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-products-popular-posts-list li,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-widget-popular-posts-list li,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-list li,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-widget-popular-posts-list li,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-products-popular-posts-list li,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-widget-popular-posts-list li{width:100%}.monsterinsights-dark[data-v-5e919f58]{display:block}.monsterinsights-reset-default[data-v-5e919f58]{margin-right:5px}.saturation{position:relative;cursor:pointer}.saturation .slide{position:absolute;right:100px;top:0;width:10px;height:10px;border-radius:50%;border:1px solid #fff;-webkit-box-shadow:0 0 1px 1px rgba(0,0,0,.3);box-shadow:0 0 1px 1px rgba(0,0,0,.3);pointer-events:none}.hue{position:relative;margin-right:8px;cursor:pointer}.hue .slide{position:absolute;right:0;top:100px;width:100%;height:4px;background:#fff;-webkit-box-shadow:0 0 1px 0 rgba(0,0,0,.3);box-shadow:0 0 1px 0 rgba(0,0,0,.3);pointer-events:none}.color-alpha{position:relative;margin-right:8px;cursor:pointer}.color-alpha .slide{position:absolute;right:0;top:100px;width:100%;height:4px;background:#fff;-webkit-box-shadow:0 0 1px 0 rgba(0,0,0,.3);box-shadow:0 0 1px 0 rgba(0,0,0,.3);pointer-events:none}.sucker{width:30px;fill:#9099a4;background:#2e333a;cursor:pointer;-webkit-transition:all .3s;transition:all .3s}.sucker.active,.sucker:hover{fill:#1593ff}.color-type{margin-top:8px;font-size:12px}.color-type,.color-type .name{display:-webkit-box;display:-ms-flexbox;display:flex}.color-type .name{width:60px;height:30px;float:right;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#999;background:#252930}.color-type .value{-webkit-box-flex:1;-ms-flex:1;flex:1;height:30px;min-width:100px;padding:0 12px;border:0;color:#fff;background:#2e333a;-webkit-box-sizing:border-box;box-sizing:border-box}.colors{padding:0;margin:0}.colors.history{margin-top:10px;border-top:1px solid #2e333a}.colors .item{position:relative;width:16px;height:16px;margin:10px 10px 0 0;border-radius:3px;-webkit-box-sizing:border-box;box-sizing:border-box;vertical-align:top;display:inline-block;-webkit-transition:all .1s;transition:all .1s;cursor:pointer}.colors .item:nth-child(8n+1){margin-right:0}.colors .item:hover{-webkit-transform:scale(1.4);-ms-transform:scale(1.4);transform:scale(1.4)}.colors .item .alpha{height:100%;border-radius:4px}.colors .item .color{position:absolute;right:0;top:0;width:100%;height:100%;border-radius:3px}.hu-color-picker{padding:10px;background:#1d2024;border-radius:4px;-webkit-box-shadow:0 0 16px 0 rgba(0,0,0,.16);box-shadow:0 0 16px 0 rgba(0,0,0,.16);z-index:1}.hu-color-picker.light{background:#f7f8f9}.hu-color-picker.light .color-show .sucker{background:#eceef0}.hu-color-picker.light .color-type .name{background:#e7e8e9}.hu-color-picker.light .color-type .value{color:#666;background:#eceef0}.hu-color-picker.light .colors.history{border-top:1px solid #eee}.hu-color-picker canvas{vertical-align:top}.hu-color-picker .color-set,.hu-color-picker .color-show{display:-webkit-box;display:-ms-flexbox;display:flex}.hu-color-picker .color-show{margin-top:8px}.monsterinsights-rotate-loader{width:2.5em;height:2.5em;margin:.46875em;padding:0;border-radius:100%;border-color:rgba(0,0,0,0) #3085d6;border-style:solid;border-width:.25em;background-color:rgba(0,0,0,0)!important;color:rgba(0,0,0,0);cursor:default;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}@font-face{font-family:Lato;src:url(../fonts/lato-regular-webfont.woff) format("woff"),url(../fonts/lato-regular-webfont.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-bold-webfont.woff) format("woff"),url(../fonts/lato-bold-webfont.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:text-security-disc;src:url(data:font/woff2;base64,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) format("woff2"),url(data:font/woff;base64,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) format("woff"),url(../fonts/text-security-disc.ttf) format("truetype")}@font-face{font-family:Misettings;src:url(../fonts/icons.woff2) format("woff2"),url(../fonts/icons.woff) format("woff"),url(../fonts/icons.ttf) format("truetype"),url(../fonts/icons.otf) format("opentype");font-weight:400;font-style:normal}[class*=monstericon-]:before,body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before,body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before,body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.monstericon-times-circle:before{content:"\f01b"}.monstericon-times:before{content:"\f021"}.monstericon-info-circle-regular:before{content:"\f01e"}.monstericon-arrow{-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease;-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg);display:inline-block}.monstericon-arrow.monstericon-down{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.monstericon-arrow:before{content:"\f01f"}.monstericon-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"}@media (max-width:782px){.monsterinsights-notices-area{margin-right:10px;margin-left:10px}}.monsterinsights-notice{position:relative;color:#444}.monsterinsights-notice .monsterinsights-notice-inner{margin-top:25px;padding:20px;background:#fff;border-right:3px solid;line-height:1.5;font-size:14px}.monsterinsights-notice .monsterinsights-notice-inner .notice-title{color:#393f4c;font-weight:700;display:block;margin:0 0 6px;padding:0}@media (max-width:782px){.monsterinsights-notice .monsterinsights-notice-inner{padding:10px}}.monsterinsights-notice.monsterinsights-notice-error .monsterinsights-notice-inner{border-right-color:#ea4e64}.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-inner{border-right-color:#f5c953}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-inner{border-right-color:#509fe2}.monsterinsights-notice.monsterinsights-notice-info-xl .monsterinsights-notice-inner{border:1px solid #509fe2;border-right-width:3px;color:#777}.monsterinsights-notice.monsterinsights-notice-info-xl .monsterinsights-notice-inner .monsterinsights-button{color:#fff;margin:15px 0 0}.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-inner{border-right-color:#5cc0a5}.monsterinsights-notice .notice-content{margin-left:20px}.monsterinsights-notice .notice-content a{color:#444}.monsterinsights-notice .dismiss-notice{border:none;background:none;padding:0;margin:0;display:inline-block;cursor:pointer;color:#acbdc9;position:relative;float:left}.monsterinsights-notice .dismiss-notice:focus,.monsterinsights-notice .dismiss-notice:hover{color:#444}.monsterinsights-notice.monsterinsights-notice-info .notice-content,.monsterinsights-notice.monsterinsights-notice-success .notice-content,.monsterinsights-notice.monsterinsights-notice-warning .notice-content{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:425px){.monsterinsights-notice.monsterinsights-notice-info .notice-content,.monsterinsights-notice.monsterinsights-notice-success .notice-content,.monsterinsights-notice.monsterinsights-notice-warning .notice-content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-button{-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;margin-left:-20px;margin-right:auto}@media (max-width:782px){.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-button{margin-right:0}}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-button{margin-top:0;padding:10px 16px 8px;line-height:1;font-size:14px;font-weight:600}@media (max-width:782px){.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-button{margin-top:10px;margin-right:0}}.monsterinsights-notice.monsterinsights-notice-error .monsterinsights-button{margin-top:10px;margin-right:0;color:#fff}body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-end,body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-right{top:32px}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-end,body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-right{top:42px;left:auto;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast{border-radius:0;padding:9px;border-right:3px solid #fff}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast{width:80vw}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-success{border-right-color:#5cc0a5}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-info{border-right-color:#509fe2}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-error{border-right-color:#ea4e64}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-title{color:#393f4c;font-size:13px;font-weight:400}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{font-size:15px;width:10px;height:10px;line-height:10px}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{padding:9px;line-height:0}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon{width:14px;height:14px;min-width:14px;margin:0;border:0}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info{border:none;position:relative}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before{content:"\f01e";position:absolute;top:-1px;right:0;color:#509fe2;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info .swal2-icon-text{display:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error{border:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before{content:"\f023";position:absolute;top:-1px;right:0;color:#ea4e64;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error .swal2-x-mark *{display:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon [class^=-ring]{width:14px;height:14px;top:0;right:0}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:14px;height:14px;top:0;right:0;border:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{content:"\f027";position:absolute;top:-1px;right:0;color:#5cc0a5;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success [class^=swal2-success-line]{display:none}@-webkit-keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@-webkit-keyframes swal2-animate-success-line-tip{0%{top:1.1875em;right:.0625em;width:0}54%{top:1.0625em;right:.125em;width:0}70%{top:2.1875em;right:-.375em;width:3.125em}84%{top:3em;right:1.3125em;width:1.0625em}to{top:2.8125em;right:.875em;width:1.5625em}}@keyframes swal2-animate-success-line-tip{0%{top:1.1875em;right:.0625em;width:0}54%{top:1.0625em;right:.125em;width:0}70%{top:2.1875em;right:-.375em;width:3.125em}84%{top:3em;right:1.3125em;width:1.0625em}to{top:2.8125em;right:.875em;width:1.5625em}}@-webkit-keyframes swal2-animate-success-line-long{0%{top:3.375em;left:2.875em;width:0}65%{top:3.375em;left:2.875em;width:0}84%{top:2.1875em;left:0;width:3.4375em}to{top:2.375em;left:.5em;width:2.9375em}}@keyframes swal2-animate-success-line-long{0%{top:3.375em;left:2.875em;width:0}65%{top:3.375em;left:2.875em;width:0}84%{top:2.1875em;left:0;width:3.4375em}to{top:2.375em;left:.5em;width:2.9375em}}@-webkit-keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}5%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}12%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}to{-webkit-transform:rotate(405deg);transform:rotate(405deg)}}@keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}5%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}12%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}to{-webkit-transform:rotate(405deg);transform:rotate(405deg)}}@-webkit-keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@-webkit-keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}@keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}.monsterinsights_page body.swal2-toast-shown .swal2-container,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-shown{background-color:rgba(0,0,0,0)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top{top:0;left:auto;bottom:auto;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;left:0;bottom:auto;right:auto}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-start{top:0;left:auto;bottom:auto;right:0}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-start{top:50%;left:auto;bottom:auto;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center{top:50%;left:auto;bottom:auto;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-right{top:50%;left:0;bottom:auto;right:auto;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-start{top:auto;left:auto;bottom:0;right:0}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom{top:auto;left:auto;bottom:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;left:0;bottom:0;right:auto}.monsterinsights_page body.swal2-toast-column .swal2-toast{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-actions{-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;height:2.2em;margin-top:.3125em}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-loading{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-input{height:2em;margin:.3125em auto;font-size:1em}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-validation-message{font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast{-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:auto;padding:.625em;-webkit-box-shadow:0 0 .625em #d9d9d9;box-shadow:0 0 .625em #d9d9d9;overflow-y:hidden}.monsterinsights_page .swal2-popup.swal2-toast,.monsterinsights_page .swal2-popup.swal2-toast .swal2-header{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.monsterinsights_page .swal2-popup.swal2-toast .swal2-title{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin:0 .6em;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{position:static;width:.8em;height:.8em;line-height:.8}.monsterinsights_page .swal2-popup.swal2-toast .swal2-content{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon{width:2em;min-width:2em;height:2em;margin:0}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon-text{font-size:2em;font-weight:700;line-height:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{right:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{left:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-actions{height:auto;margin:0 .3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-styled{margin:0 .3125em;padding:.3125em .625em;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-styled:focus{-webkit-box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4);box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4)}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{position:absolute;width:2em;height:2.8125em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);border-radius:50%}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.25em;right:-.9375em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:2em 2em;-ms-transform-origin:2em 2em;transform-origin:2em 2em;border-radius:0 4em 4em 0}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.25em;right:.9375em;-webkit-transform-origin:100% 2em;-ms-transform-origin:100% 2em;transform-origin:100% 2em;border-radius:4em 0 0 4em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;right:.4375em;width:.4375em;height:2.6875em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;right:.1875em;width:.75em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;left:.1875em;width:1.375em}.monsterinsights_page .swal2-popup.swal2-toast.swal2-show{-webkit-animation:showSweetToast .5s;animation:showSweetToast .5s}.monsterinsights_page .swal2-popup.swal2-toast.swal2-hide{-webkit-animation:hideSweetToast .2s forwards;animation:hideSweetToast .2s forwards}.monsterinsights_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:animate-toast-success-tip .75s;animation:animate-toast-success-tip .75s}.monsterinsights_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:animate-toast-success-long .75s;animation:animate-toast-success-long .75s}@-webkit-keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(-2deg);transform:translateY(-.625em) rotate(-2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(2deg);transform:translateY(0) rotate(2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(-2deg);transform:translateY(.3125em) rotate(-2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(-2deg);transform:translateY(-.625em) rotate(-2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(2deg);transform:translateY(0) rotate(2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(-2deg);transform:translateY(.3125em) rotate(-2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@-webkit-keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(-1deg);transform:rotate(-1deg);opacity:0}}@keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(-1deg);transform:rotate(-1deg);opacity:0}}@-webkit-keyframes animate-toast-success-tip{0%{top:.5625em;right:.0625em;width:0}54%{top:.125em;right:.125em;width:0}70%{top:.625em;right:-.25em;width:1.625em}84%{top:1.0625em;right:.75em;width:.5em}to{top:1.125em;right:.1875em;width:.75em}}@keyframes animate-toast-success-tip{0%{top:.5625em;right:.0625em;width:0}54%{top:.125em;right:.125em;width:0}70%{top:.625em;right:-.25em;width:1.625em}84%{top:1.0625em;right:.75em;width:.5em}to{top:1.125em;right:.1875em;width:.75em}}@-webkit-keyframes animate-toast-success-long{0%{top:1.625em;left:1.375em;width:0}65%{top:1.25em;left:.9375em;width:0}84%{top:.9375em;left:0;width:1.125em}to{top:.9375em;left:.1875em;width:1.375em}}@keyframes animate-toast-success-long{0%{top:1.625em;left:1.375em;width:0}65%{top:1.25em;left:.9375em;width:0}84%{top:.9375em;left:0;width:1.125em}to{top:.9375em;left:.1875em;width:1.375em}}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}.monsterinsights_page body.swal2-height-auto{height:auto!important}.monsterinsights_page body.swal2-no-backdrop .swal2-shown{top:auto;left:auto;bottom:auto;right:auto;background-color:rgba(0,0,0,0)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown>.swal2-modal{-webkit-box-shadow:0 0 10px rgba(0,0,0,.4);box-shadow:0 0 10px rgba(0,0,0,.4)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top{top:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-start{top:0;right:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-right{top:0;left:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center{top:50%;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-start{top:50%;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-right{top:50%;left:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom{bottom:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-start{bottom:0;right:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-right{left:0;bottom:0}.monsterinsights_page .swal2-container{display:-webkit-box;display:-ms-flexbox;display:flex;position:fixed;top:0;left:0;bottom:0;right:0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:10px;background-color:rgba(0,0,0,0);z-index:1060;overflow-x:hidden;-webkit-overflow-scrolling:touch}.monsterinsights_page .swal2-container.swal2-top{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights_page .swal2-container.swal2-top-left,.monsterinsights_page .swal2-container.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights_page .swal2-container.swal2-top-end,.monsterinsights_page .swal2-container.swal2-top-right{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.monsterinsights_page .swal2-container.swal2-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-container.swal2-center-left,.monsterinsights_page .swal2-container.swal2-center-start{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights_page .swal2-container.swal2-center-end,.monsterinsights_page .swal2-container.swal2-center-right{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.monsterinsights_page .swal2-container.swal2-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights_page .swal2-container.swal2-bottom-left,.monsterinsights_page .swal2-container.swal2-bottom-start{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights_page .swal2-container.swal2-bottom-end,.monsterinsights_page .swal2-container.swal2-bottom-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.monsterinsights_page .swal2-container.swal2-grow-fullscreen>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;-ms-flex-pack:center}.monsterinsights_page .swal2-container.swal2-grow-fullscreen>.swal2-modal,.monsterinsights_page .swal2-container.swal2-grow-row>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-webkit-box-pack:center;justify-content:center}.monsterinsights_page .swal2-container.swal2-grow-row>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-ms-flex-pack:center}.monsterinsights_page .swal2-container.swal2-grow-column{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-start,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-start,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-right,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-right,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights_page .swal2-container.swal2-grow-column>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page .swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal{margin:auto}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.monsterinsights_page .swal2-container .swal2-modal{margin:0!important}}.monsterinsights_page .swal2-container.swal2-fade{-webkit-transition:background-color .1s;transition:background-color .1s}.monsterinsights_page .swal2-container.swal2-shown{background-color:rgba(0,0,0,.4)}.monsterinsights_page .swal2-popup{display:none;position:relative;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:32em;max-width:100%;padding:1.25em;border-radius:.3125em;background:#fff;font-family:inherit;font-size:1rem;-webkit-box-sizing:border-box;box-sizing:border-box;right:0;top:0}.monsterinsights_page .swal2-popup:focus{outline:0}.monsterinsights_page .swal2-popup.swal2-loading{overflow-y:hidden}.monsterinsights_page .swal2-popup .swal2-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-popup .swal2-title{display:block;position:relative;max-width:100%;margin:0 0 .4em;padding:0;color:#595959;font-size:1.875em;font-weight:600;text-align:center;text-transform:none;word-wrap:break-word}.monsterinsights_page .swal2-popup .swal2-actions{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em auto 0;z-index:1}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:hover{background-image:-webkit-gradient(linear,right top,right bottom,from(rgba(0,0,0,.1)),to(rgba(0,0,0,.1)));background-image:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1))}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:active{background-image:-webkit-gradient(linear,right top,right bottom,from(rgba(0,0,0,.2)),to(rgba(0,0,0,.2)));background-image:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2))}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-confirm{width:2.5em;height:2.5em;margin:.46875em;padding:0;border-radius:100%;border:.25em solid rgba(0,0,0,0);background-color:rgba(0,0,0,0)!important;color:rgba(0,0,0,0);cursor:default;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-cancel{margin-left:30px;margin-right:30px}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm:after{display:inline-block;width:15px;height:15px;margin-right:5px;border-radius:50%;border:3px solid #999;border-left-color:rgba(0,0,0,0);-webkit-box-shadow:-1px 1px 1px #fff;box-shadow:-1px 1px 1px #fff;content:"";-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal}.monsterinsights_page .swal2-popup .swal2-styled{margin:.3125em;padding:.625em 2em;font-weight:500;-webkit-box-shadow:none;box-shadow:none}.monsterinsights_page .swal2-popup .swal2-styled:not([disabled]){cursor:pointer}.monsterinsights_page .swal2-popup .swal2-styled.swal2-confirm{border:0;border-radius:.25em;background:initial;background-color:#3085d6;color:#fff;font-size:1.0625em}.monsterinsights_page .swal2-popup .swal2-styled.swal2-cancel{border:0;border-radius:.25em;background:initial;background-color:#aaa;color:#fff;font-size:1.0625em}.monsterinsights_page .swal2-popup .swal2-styled:focus{outline:0;-webkit-box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4);box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4)}.monsterinsights_page .swal2-popup .swal2-styled::-moz-focus-inner{border:0}.monsterinsights_page .swal2-popup .swal2-footer{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em 0 0;padding:1em 0 0;border-top:1px solid #eee;color:#545454;font-size:1em}.monsterinsights_page .swal2-popup .swal2-image{max-width:100%;margin:1.25em auto}.monsterinsights_page .swal2-popup .swal2-close{position:absolute;top:0;left:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:1.2em;height:1.2em;padding:0;-webkit-transition:color .1s ease-out;transition:color .1s ease-out;border:none;border-radius:0;outline:initial;background:100% 0;color:#ccc;font-family:serif;font-size:2.5em;line-height:1.2;cursor:pointer;overflow:hidden}.monsterinsights_page .swal2-popup .swal2-close:hover{-webkit-transform:none;-ms-transform:none;transform:none;color:#f27474}.monsterinsights_page .swal2-popup>.swal2-checkbox,.monsterinsights_page .swal2-popup>.swal2-file,.monsterinsights_page .swal2-popup>.swal2-input,.monsterinsights_page .swal2-popup>.swal2-radio,.monsterinsights_page .swal2-popup>.swal2-select,.monsterinsights_page .swal2-popup>.swal2-textarea{display:none}.monsterinsights_page .swal2-popup .swal2-content{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0;padding:0;color:#545454;font-size:1.125em;font-weight:300;line-height:normal;z-index:1;word-wrap:break-word}.monsterinsights_page .swal2-popup #swal2-content{text-align:center}.monsterinsights_page .swal2-popup .swal2-checkbox,.monsterinsights_page .swal2-popup .swal2-file,.monsterinsights_page .swal2-popup .swal2-input,.monsterinsights_page .swal2-popup .swal2-radio,.monsterinsights_page .swal2-popup .swal2-select,.monsterinsights_page .swal2-popup .swal2-textarea{margin:1em auto}.monsterinsights_page .swal2-popup .swal2-file,.monsterinsights_page .swal2-popup .swal2-input,.monsterinsights_page .swal2-popup .swal2-textarea{width:100%;-webkit-transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,box-shadow .3s;transition:border-color .3s,box-shadow .3s,-webkit-box-shadow .3s;border:1px solid #d9d9d9;border-radius:.1875em;font-size:1.125em;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.06);box-shadow:inset 0 1px 1px rgba(0,0,0,.06);-webkit-box-sizing:border-box;box-sizing:border-box}.monsterinsights_page .swal2-popup .swal2-file.swal2-inputerror,.monsterinsights_page .swal2-popup .swal2-input.swal2-inputerror,.monsterinsights_page .swal2-popup .swal2-textarea.swal2-inputerror{border-color:#f27474!important;-webkit-box-shadow:0 0 2px #f27474!important;box-shadow:0 0 2px #f27474!important}.monsterinsights_page .swal2-popup .swal2-file:focus,.monsterinsights_page .swal2-popup .swal2-input:focus,.monsterinsights_page .swal2-popup .swal2-textarea:focus{border:1px solid #b4dbed;outline:0;-webkit-box-shadow:0 0 3px #c4e6f5;box-shadow:0 0 3px #c4e6f5}.monsterinsights_page .swal2-popup .swal2-file::-webkit-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-webkit-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-webkit-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::-moz-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-moz-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-moz-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file:-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input:-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea:-ms-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-ms-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::placeholder,.monsterinsights_page .swal2-popup .swal2-input::placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-range input{width:80%}.monsterinsights_page .swal2-popup .swal2-range output{width:20%;font-weight:600;text-align:center}.monsterinsights_page .swal2-popup .swal2-range input,.monsterinsights_page .swal2-popup .swal2-range output{height:2.625em;margin:1em auto;padding:0;font-size:1.125em;line-height:2.625em}.monsterinsights_page .swal2-popup .swal2-input{height:2.625em;padding:0 .75em}.monsterinsights_page .swal2-popup .swal2-input[type=number]{max-width:10em}.monsterinsights_page .swal2-popup .swal2-file{font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-textarea{height:6.75em;padding:.75em}.monsterinsights_page .swal2-popup .swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;color:#545454;font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-checkbox,.monsterinsights_page .swal2-popup .swal2-radio{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page .swal2-popup .swal2-checkbox label,.monsterinsights_page .swal2-popup .swal2-radio label{margin:0 .6em;font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-checkbox input,.monsterinsights_page .swal2-popup .swal2-radio input{margin:0 .4em}.monsterinsights_page .swal2-popup .swal2-validation-message{display:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:.625em;background:#f0f0f0;color:#666;font-size:1em;font-weight:300;overflow:hidden}.monsterinsights_page .swal2-popup .swal2-validation-message:before{display:inline-block;width:1.5em;min-width:1.5em;height:1.5em;margin:0 .625em;border-radius:50%;background-color:#f27474;color:#fff;font-weight:600;line-height:1.5em;text-align:center;content:"!";zoom:normal}@supports (-ms-accelerator:true){.monsterinsights_page .swal2-range input{width:100%!important}.monsterinsights_page .swal2-range output{display:none}}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.monsterinsights_page .swal2-range input{width:100%!important}.monsterinsights_page .swal2-range output{display:none}}@-moz-document url-prefix(){.monsterinsights_page .swal2-close:focus{outline:2px solid rgba(50,100,150,.4)}}.monsterinsights_page .swal2-icon{position:relative;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:5em;height:5em;margin:1.25em auto 1.875em;border:.25em solid rgba(0,0,0,0);border-radius:50%;line-height:5em;cursor:default;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;zoom:normal}.monsterinsights_page .swal2-icon-text{font-size:3.75em}.monsterinsights_page .swal2-icon.swal2-error{border-color:#f27474}.monsterinsights_page .swal2-icon.swal2-error .swal2-x-mark{position:relative;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.monsterinsights_page .swal2-icon.swal2-error [class^=swal2-x-mark-line]{display:block;position:absolute;top:2.3125em;width:2.9375em;height:.3125em;border-radius:.125em;background-color:#f27474}.monsterinsights_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{right:1.0625em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.monsterinsights_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{left:1em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.monsterinsights_page .swal2-icon.swal2-warning{border-color:#facea8;color:#f8bb86}.monsterinsights_page .swal2-icon.swal2-info{border-color:#9de0f6;color:#3fc3ee;font-size:1rem}.monsterinsights_page .swal2-icon.swal2-question{border-color:#c9dae1;color:#87adbd}.monsterinsights_page .swal2-icon.swal2-success{border-color:#a5dc86}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-circular-line]{position:absolute;width:3.75em;height:7.5em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);border-radius:50%}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.4375em;right:-2.0635em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:3.75em 3.75em;-ms-transform-origin:3.75em 3.75em;transform-origin:3.75em 3.75em;border-radius:0 7.5em 7.5em 0}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.6875em;right:1.875em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:100% 3.75em;-ms-transform-origin:100% 3.75em;transform-origin:100% 3.75em;border-radius:7.5em 0 0 7.5em}.monsterinsights_page .swal2-icon.swal2-success .swal2-success-ring{position:absolute;top:-.25em;right:-.25em;width:100%;height:100%;border:.25em solid rgba(165,220,134,.3);border-radius:50%;z-index:2;-webkit-box-sizing:content-box;box-sizing:content-box}.monsterinsights_page .swal2-icon.swal2-success .swal2-success-fix{position:absolute;top:.5em;right:1.625em;width:.4375em;height:5.625em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);z-index:1}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line]{display:block;position:absolute;height:.3125em;border-radius:.125em;background-color:#a5dc86;z-index:2}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{top:2.875em;right:.875em;width:1.5625em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:2.375em;left:.5em;width:2.9375em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.monsterinsights_page .swal2-progresssteps{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 0 1.25em;padding:0;font-weight:600}.monsterinsights_page .swal2-progresssteps li{display:inline-block;position:relative}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle{width:2em;height:2em;border-radius:2em;background:#3085d6;color:#fff;line-height:2em;text-align:center;z-index:20}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle:first-child{margin-right:0}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle:last-child{margin-left:0}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep{background:#3085d6}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progresscircle,.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progressline{background:#add8e6}.monsterinsights_page .swal2-progresssteps .swal2-progressline{width:2.5em;height:.4em;margin:0 -1px;background:#3085d6;z-index:10}.monsterinsights_page [class^=swal2]{-webkit-tap-highlight-color:transparent}.monsterinsights_page .swal2-show{-webkit-animation:swal2-show .3s;animation:swal2-show .3s}.monsterinsights_page .swal2-show.swal2-noanimation{-webkit-animation:none;animation:none}.monsterinsights_page .swal2-hide{-webkit-animation:swal2-hide .15s forwards;animation:swal2-hide .15s forwards}.monsterinsights_page .swal2-hide.swal2-noanimation{-webkit-animation:none;animation:none}.monsterinsights_page .swal2-rtl .swal2-close{left:auto;right:0}.monsterinsights_page .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:swal2-animate-success-line-tip .75s;animation:swal2-animate-success-line-tip .75s}.monsterinsights_page .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:swal2-animate-success-line-long .75s;animation:swal2-animate-success-line-long .75s}.monsterinsights_page .swal2-animate-success-icon .swal2-success-circular-line-right{-webkit-animation:swal2-rotate-success-circular-line 4.25s ease-in;animation:swal2-rotate-success-circular-line 4.25s ease-in}.monsterinsights_page .swal2-animate-error-icon{-webkit-animation:swal2-animate-error-icon .5s;animation:swal2-animate-error-icon .5s}.monsterinsights_page .swal2-animate-error-icon .swal2-x-mark{-webkit-animation:swal2-animate-error-x-mark .5s;animation:swal2-animate-error-x-mark .5s}@-webkit-keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@media print{.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}.monsterinsights-notifications-display{background:#fff;border-right:3px solid #509fe2;padding:20px;border-radius:0 3px 3px 0;margin-bottom:50px;position:relative}.monsterinsights-settings-content .monsterinsights-notifications-display{margin-top:20px;margin-bottom:20px}.monsterinsights-notifications-display h3{margin:0 0 4px;font-size:16px;line-height:20px}.monsterinsights-notifications-display p{margin-top:4px;margin-bottom:12px;font-size:14px;line-height:18px}.monsterinsights-notifications-display .monsterinsights-notification{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-notifications-display .monsterinsights-notification .monsterinsights-notifications-indicator{padding-top:10px}.monsterinsights-notifications-display .monsterinsights-notification .monsterinsights-notifications-indicator a{position:relative}.monsterinsights-notifications-display .monsterinsights-notification-inner{margin-right:25px}.monsterinsights-notifications-display .monsterinsights-button{margin-left:15px}.monsterinsights-notifications-display .monsterinsights-notification-navigation{position:absolute;left:0;top:100%}.monsterinsights-notifications-display .monsterinsights-notification-navigation button{background:#fff;border:none;border-radius:0 0 3px 3px;margin:0;padding:5px 8px 7px;color:#a8aebd;cursor:pointer}.monsterinsights-notifications-display .monsterinsights-notification-navigation button:focus,.monsterinsights-notifications-display .monsterinsights-notification-navigation button:hover{color:#509fe2}.monsterinsights-notifications-display .monsterinsights-notification-navigation button .monstericon-arrow{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);font-size:10px}.monsterinsights-notifications-display .monsterinsights-notification-navigation button.monsterinsights-notification-previous{margin-left:2px}.monsterinsights-notifications-display .monsterinsights-notification-navigation button.monsterinsights-notification-previous .monstericon-arrow{-webkit-transform:rotate(-270deg);-ms-transform:rotate(-270deg);transform:rotate(-270deg)}.monsterinsights-notifications-display .monsterinsights-notification-dismiss{border:none;background:none;color:#a8aebd;position:absolute;left:12px;top:9px;padding:0;margin:0;font-size:16px;cursor:pointer}.monsterinsights-notifications-display .monsterinsights-notifications-unread{min-width:10px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:12px;right:18px;border-radius:20px;line-height:16px;color:#fff;font-weight:700;text-align:center;display:inline-block;padding:0 3px}.monsterinsights-report .monsterinsights-notifications-display .monsterinsights-notifications-unread{min-width:16px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:4px;border-radius:20px;line-height:1;color:#fff;font-weight:700;text-align:center;padding:0 2px;right:20px}.monsterinsights-admin-page.monsterinsights-path-about-us .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-path-addons .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-path-tools-import-export .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-path-tools-url-builder .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-reports-page .monsterinsights-notificationsv3-container{margin-left:0}.monsterinsights-admin-page .monsterinsights-notificationsv3-container{display:inline-block;margin-left:20px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-number{position:absolute;top:-11px;min-width:20px;height:20px;line-height:20px;display:block;background:#eb5757;border-radius:20px;font-size:12px;color:#fff;font-weight:700;text-align:center;padding:0 6px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-number.number-greater-than-10{left:-13px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-number.number-less-than-10{left:-10px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-dismissed-number{min-width:24px;height:24px;background:#7c869d;border-radius:20px;display:inline-block;text-align:center;vertical-align:middle;line-height:24px;color:#fff;font-size:14px;font-weight:700;padding:0 8px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-no-notifications{text-align:center;position:absolute;top:50%;margin-top:-69px;width:100%}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-no-notifications h4{font-size:16px;color:#7c869d}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button{position:relative}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button{position:absolute;top:21px;left:15px}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button{background:#f0f2f4;border-radius:3px;padding:11px 7px;line-height:0;vertical-align:middle;margin-top:-2px;border:solid #d3d7de;border-width:1px 1px 2px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button{display:inline-block}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button:hover{background:#e7eaec;border-color:#d3d7de;outline:none}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-notificationsv3-inbox-number{cursor:pointer}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar{width:440px;position:fixed;top:32px;left:0;background:#fff;z-index:1001;overflow:scroll;height:100%;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar{top:46px;width:300px}}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(-50px)}to{opacity:1;-webkit-transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(-50px);transform:translateX(-50px)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar.monsterinsights-notificationsv3-sidebar-in{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-single-notification{padding:0 16px;overflow:hidden}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top{background:#2679c1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:50px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-title{width:50%}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-title svg{margin-left:10px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-title h3{display:inline-block;color:#fff;font-size:18px;font-weight:700}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions{width:50%;text-align:left}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button{color:#fff;text-decoration:underline;border:0;padding:0;background:rgba(0,0,0,0);border-radius:0}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button{display:inline-block}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button:hover{color:#efe5e5}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button:focus{outline:none}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close{margin-right:12px;vertical-align:bottom}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close:active svg path,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close:focus svg path,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close:hover svg path{fill:#efe5e5}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:60px;border-bottom:1px solid #e2e4e9;margin:0 16px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count{width:50%}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count .monsterinsights-notificationsv3-inbox-number{position:relative;display:inline-block;top:inherit;left:inherit;min-width:24px;height:24px;line-height:24px;margin-left:8px;padding:0 8px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count .monsterinsights-notificationsv3-dismissed-number{margin-left:8px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count h4{display:inline-block}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions{width:50%;text-align:left}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span{text-decoration:underline;color:#99a1b3;cursor:pointer}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span:hover{color:#a9b1c3}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications{display:block;margin-bottom:32px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications{margin-bottom:46px}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification{border-bottom:1px solid #e2e4e9;padding-bottom:24px;display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-icon{width:54px;float:right;text-align:center;padding-top:24px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-icon{float:none;margin:0 auto}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details{float:right;width:354px;padding-top:20px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details{width:260px}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-title h5{margin-top:0;margin-bottom:0;color:#393f4c;font-size:13px;font-weight:700;width:70%;display:inline-block}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-title h5{width:65%}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-title span{color:#7f899f;font-size:13px;float:left}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-content p{color:#393f4c;font-size:13px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-top:2px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button{display:block;background:#f0f2f4;border:1px solid #d3d7de;border-radius:3px;font-weight:500;font-size:13px;color:#393f4c;letter-spacing:.02em;padding:6px 11px;margin-left:10px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button:hover{background:#d3d7de}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span{font-size:13px;color:#7f899f;cursor:pointer}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span:hover{color:#a9b1c3}.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-right-color:rgba(0,0,0,0)!important;border-left-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;bottom:0;right:calc(50% - 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-right-color:rgba(0,0,0,0)!important;border-left-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;top:0;right:calc(50% - 5px);margin-top:0;margin-bottom:0}.monsterinsights-tooltip[x-placement^=right]{padding-right:5px}.monsterinsights-tooltip[x-placement^=right] .monsterinsights-tooltip-arrow{border-width:5px 0 5px 5px;border-right-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;right:0;top:calc(50% - 5px);margin-right:0;margin-left:0}.monsterinsights-tooltip[x-placement^=left]{padding-left:5px}.monsterinsights-tooltip[x-placement^=left] .monsterinsights-tooltip-arrow{border-width:5px 5px 5px 0;border-top-color:rgba(0,0,0,0)!important;border-left-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;left:0;top:calc(50% - 5px);margin-right:0;margin-left: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}.monsterinsights-conditional-logic-container button:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-header{margin-bottom:30px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-header .monsterinsights-conditional-rule-sets-number{float:left}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator{text-align:center;font-weight:700;display:block;margin:0 auto 20px;position:relative}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:after,.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:before{content:"";position:absolute;top:45%;width:45%;height:2px;background:#d6e2ed;margin-top:-1px}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:before{right:0}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:after{left:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:24px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column{width:100%;margin-left:18px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field{text-transform:capitalize;width:100%;height:38px;min-height:38px;line-height:38px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field.text-input{padding:0 8px;border-color:#ddd;text-transform:none;border-radius:5px;-webkit-box-sizing:border-box;box-sizing:border-box;height:38px;margin-top:0;line-height:38px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field input[type=text]{padding-top:5px;padding-bottom:5px;height:inherit}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field.multiselect--active .multiselect__tags .multiselect__spinner{z-index:1}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags{padding:0;height:38px;min-height:38px;border-color:#ddd;margin-top:0;-webkit-box-sizing:border-box;box-sizing:border-box}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags input[type=text]{border:0;height:36px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__single{margin-bottom:0;padding:0 8px;line-height:36px;font-size:14px;white-space:pre}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__placeholder{display:block;margin-bottom:0;line-height:36px;padding:0 8px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__spinner{width:35px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .add-new-condition{padding:6px 12px;margin:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .add-new-condition:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition{border:0;padding:0;margin:0;background:rgba(0,0,0,0)}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition .monstericon-times-circle{color:#dc3232;cursor:pointer;padding:0;margin:0 15px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition .monstericon-times-circle:focus{outline:0}.monsterinsights-upload-media-wrapper .monsterinsights-dark{display:block}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media-label{margin-bottom:0}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media{display:block;width:100%;margin-top:20px;position:relative;max-width:300px}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media .monsterinsights-uploaded-media-overlay{display:none;background:rgba(0,0,0,.7);width:100%;position:absolute;top:0;right:0;height:100%;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media .monsterinsights-uploaded-media-overlay .monsterinsights-remove-uploaded-media{color:#fff;text-decoration:underline;margin-right:auto;cursor:pointer;padding:0 0 10px 10px}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media .monsterinsights-uploaded-media-overlay .monsterinsights-remove-uploaded-media:hover{text-decoration:none}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media:hover .monsterinsights-uploaded-media-overlay{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media img{max-width:100%;display:inline-block}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media{overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;margin-top:20px}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-input{width:73%;margin-left:2%;float:right;position:relative}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button{width:25%;float:right;font-size:15px}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button:active,.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button:focus,.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button:hover{outline:none}.monsterinsights-email-summaries-settings a{color:#509fe2!important}.monsterinsights-email-summaries-settings a:focus,.monsterinsights-email-summaries-settings a:hover{color:#393f4c!important}.monsterinsights-email-summaries-settings .monsterinsights-dark{display:block}.monsterinsights-email-summaries-settings .inline-field .monsterinsights-button:first-child{margin-right:0}.monsterinsights-email-summaries-settings .monsterinsights-settings-input-repeater{margin-bottom:18px}.monsterinsights-email-summaries-settings .monsterinsights-button.monsterinsights-button-disabled{cursor:not-allowed;background:#39967e!important;border-color:#4ab99b!important}.monsterinsights-accordion .monsterinsights-accordion{padding:0;border:1px solid #e0e0e0}.monsterinsights-accordion .monsterinsights-accordion div:not(:last-child){border-bottom:1px solid rgba(10,10,10,.1)}.monsterinsights-accordion .monsterinsights-accordion div:last-child .monsterinsights-accordion-item-details{border-radius:5px}.monsterinsights-accordion .monsterinsights-accordion dd{margin-right:0;margin-bottom:0}.monsterinsights-accordion .monsterinsights-accordion-item-trigger{cursor:pointer;outline:none}.monsterinsights-accordion .monsterinsights-accordion-item-details-inner,.monsterinsights-accordion .monsterinsights-accordion-item-trigger{padding:0 20px 30px}.monsterinsights-accordion .monsterinsights-accordion-item.is-active .monsterinsights-accordion-item-title{border-bottom:1px solid #e0e0e0}.monsterinsights-accordion .monsterinsights-accordion-item-title{position:relative;background-color:#fff;cursor:pointer}.monsterinsights-accordion .monsterinsights-accordion-item-title h4.monsterinsights-accordion-item-title-text{font-size:20px;margin-bottom:0;padding-left:1.25rem}.monsterinsights-accordion .monsterinsights-accordion-item-title h4.monsterinsights-accordion-item-title-text .title{padding-right:15px}.monsterinsights-accordion .monsterinsights-accordion-item-trigger{width:100%;text-align:right;background-color:rgba(0,0,0,0);border:none}.monsterinsights-accordion .monsterinsights-accordion-item-trigger-icon{display:block;position:absolute;top:0;left:1.5rem;bottom:0;margin:auto;width:8px;height:8px;border-left:2px solid #363636;border-bottom:2px solid #363636;-webkit-transform:translateY(-2px) rotate(-45deg);-ms-transform:translateY(-2px) rotate(-45deg);transform:translateY(-2px) rotate(-45deg);-webkit-transition:-webkit-transform .2s ease;transition:-webkit-transform .2s ease;transition:transform .2s ease;transition:transform .2s ease,-webkit-transform .2s ease}.monsterinsights-accordion .monsterinsights-accordion-item-trigger-icon.is-active{-webkit-transform:translateY(2px) rotate(-225deg);-ms-transform:translateY(2px) rotate(-225deg);transform:translateY(2px) rotate(-225deg)}.monsterinsights-accordion .monsterinsights-accordion-item-details{overflow:hidden;background-color:#fff;padding-top:15px}.monsterinsights-accordion .monsterinsights-accordion-item-details p,.monsterinsights-accordion .monsterinsights-accordion-item-details ul{font-size:1.2em;line-height:1.8}.monsterinsights-accordion .monsterinsights-accordion-item-enter-active,.monsterinsights-accordion .monsterinsights-accordion-item-leave-active{will-change:height;-webkit-transition:height .2s ease;transition:height .2s ease}.monsterinsights-accordion .monsterinsights-accordion-item-enter,.monsterinsights-accordion .monsterinsights-accordion-item-leave-to{height:0!important}body{background:#f3f6ff;margin:0}.monsterinsights-admin-page,.monsterinsights-admin-page *{-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}#wpcontent,.auto-fold #wpcontent{padding-right:0}.monsterinsights-highlighted-text{color:#64bfa5;font-weight:700}.monsterinsights-bold{font-weight:700}.monsterinsights-bg-img{width:100%;padding-top:66%;position:relative}.monsterinsights-bg-img:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;background-repeat:no-repeat;background-size:contain}.monsterinsights-header{padding:20px 10px;background-color:#f9fbff;min-height:85px}.monsterinsights-settings-panel-network>.monsterinsights-header{background-color:rgba(0,0,0,0)}.monsterinsights-logo-area{float:right;max-width:calc(100vw - 170px)}.monsterinsights-logo-area img{display:block;max-width:100%}@media (max-width:782px){.monsterinsights-logo-area{text-align:center;margin:0 auto;float:none}.monsterinsights-logo-area img{display:inline-block;max-height:35px}}@media (max-width:782px){.monsterinsights-header .monsterinsights-container,.monsterinsights-navigation-bar .monsterinsights-container{padding:0;width:100%}}.monsterinsights-navigation-bar{width:100%;background:#fff;border-top:1px solid #d5e2ed;border-bottom:1px solid #d5e2ed;padding:0 10px}@media (max-width:782px){.monsterinsights-navigation-bar{padding:0;border:0}}@media (max-width:750px){.monsterinsights-navigation-bar{background:none}}.monsterinsights-admin-page{position:relative}.monsterinsights-admin-page .monsterinsights-blocked{position:absolute;top:0;bottom:0;left:0;right:0;background:hsla(0,0%,100%,.5);z-index:999}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-header{padding-bottom:5px}.monsterinsights-admin-page .monsterinsights-header .monsterinsights-button{display:none}}.swal2-popup .swal2-title{line-height:1.2}#footer-left{color:#393f4c}#footer-left .monsterinsights-no-text-decoration{text-decoration:none;color:#fdb72c;font-size:14px}#footer-left a{color:#509fe1}#wpfooter{position:relative}#wpfooter:before{right:20px;left:20px;height:1px;background:#d6e2ed;content:"";position:absolute;top:-12px}.monsterinsights-container{margin:0 auto;max-width:100%;width:750px}.monsterinsights-admin-page .monsterinsights-navigation-tab-link{text-decoration:none;padding:17px 0 15px;border-bottom:2px solid #fff;font-size:14px;color:#393f4c;display:inline-block;margin-left:25px;line-height:1;outline:none;font-family:Lato,sans-serif}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active,.monsterinsights-admin-page .monsterinsights-navigation-tab-link:focus,.monsterinsights-admin-page .monsterinsights-navigation-tab-link:hover{color:#509fe2;border-bottom-color:#509fe2;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active{font-weight:700}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.monsterinsights-navigation-tab-disabled:focus,.monsterinsights-admin-page .monsterinsights-navigation-tab-link.monsterinsights-navigation-tab-disabled:hover{border-bottom-color:rgba(0,0,0,0);color:#393f4c;cursor:default}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.year-in-review{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAANCAYAAACdKY9CAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAJKSURBVHgBjdJbSFMBHMfx/7lMT7qdk5s7IsvWdIqZ6UFNJC+Yl4EGQUkYItHN8NZl7KESohUUVKCst8QoYkTFlLzlhWHZispSK7NWyjbdZmPJ5tbuLk9ZBD0U+H35v3xe/vADAEDgr15nZ3PgPymLi3E0o9F4XJim5P7GtfEpvIJHNYrJE6UXDXF/4MdKec3qrU2pakNS6+YuhULhQL98z3tvR26C58OKgY7aVJjWd/bUT8OuwtGsvSXJuICKQPEyLJZpTvjutI4UURqgiNm7NqE+I1EvXNDu60rShr2mM5K8etOK22H2OrCsCXUbGnD0PgD8a2B0uvKKTySBzVJqC8IsHR3cVhHNCgia3F2N0wKxnuUR4wiCsL8eLj8wxuyM0Q3l5nTTfDwIQhcNVL4HXK6Aqq9Dfu/2xpJoHhmViaEIiTyT1dMzQl0yKjqoI9e5kbStQ0ByMfBhcaCeqQO3n5i1hxgVB/NP8jiRDtzjXIoUb6fPR0h6EONwA9gIHsQXDQNfhMMR8j5Q9nHpp88uN8rEmJjSt1bMshDrSywoa0mNnxKI06fAZZEBTuwCPrMIaMQiPNEavvnZ5fl0WaqnKUnEYK3XhIVBc4GCR6yHDdIvkFw+BwSXghc3xOGBnonOEVdmg+Ly41uNEg7fGeKb8ahIulqSpwH7Ozl4pTtg2aOBN7rWO2NW69UuatrC4qFsJbSjKE5wM5sGX0H7oZu2+f7DbNBSFXqqOj3QnK7M+dcsjOc6Tz6sOEbCy+v7W56runvVF8rzYQ39AJVT15Tcu/1IAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-position:100% 50%;padding-right:18px;font-weight:700}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-navigation-tab-link{width:100%;text-align:center;padding:10px;color:#509fe2;font-size:16px;background:#fff;border:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active{display:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link:focus{color:#393f4c;text-decoration:underline}}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray{background:#8ea4b4;border-color:#738ea1;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray:hover{background-color:#596771;border-color:#738ea1}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray.monsterinsights-button-disabled{pointer-events:none}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text{background:rgba(0,0,0,0);border:none;color:#509fe2;padding:0;border-radius:0;text-decoration:underline}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text:hover{background:rgba(0,0,0,0);color:#393f4c}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-small{font-size:13px;line-height:20px;padding:5px 10px}.monsterinsights-green-text{color:#5cc0a5;font-weight:700}@media (max-width:782px){.wp-responsive-open #wpbody{margin-right:-18px}}.monsterinsights-mobile-nav-trigger{color:#393f4c;font-size:16px;font-weight:500;width:100%;display:block;border-color:#d6e2ed;border-style:solid;border-width:1px 0;background:#fff;padding:15px 10px;line-height:1;margin:0}@media (min-width:783px){.monsterinsights-mobile-nav-trigger{display:none}}.monsterinsights-mobile-nav-trigger i{color:#acbdc9;margin-right:10px;vertical-align:middle}@media (max-width:782px){.monsterinsights-main-navigation{background:#fff;height:0;overflow:hidden}.monsterinsights-main-navigation.monsterinsights-main-navigation-open{padding:10px 0;height:auto;border-bottom:1px solid #d6e2ed}}@media (min-width:782px){.wp-admin .monsterinsights-swal{margin-right:160px}.auto-fold .wp-admin .monsterinsights-swal{margin-right:36px}}@media (min-width:961px){.auto-fold .wp-admin .monsterinsights-swal{margin-right:160px}.folded .wp-admin .monsterinsights-swal{margin-right:36px}}.monsterinsights-modal{position:fixed;top:0;right:0;left:0;bottom:0;background:rgba(0,0,0,.8);z-index:99999;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights-modal .monsterinsights-modal-inner{background:#fff;padding:50px;border:1px solid #d6e2ed;text-align:center;width:750px}.monsterinsights-modal .monsterinsights-modal-inner h2{margin-top:0;margin-bottom:0;line-height:1.4}.monsterinsights-modal .monsterinsights-modal-inner p{margin-bottom:0}.monsterinsights-modal .monsterinsights-modal-inner .monsterinsights-modal-buttons{margin-top:50px}.monsterinsights-modal .monsterinsights-modal-inner .monsterinsights-button{margin:0 10px}.monsterinsights-welcome-overlay{position:fixed;top:0;right:0;left:0;bottom:0;z-index:99999999;font-family:inherit;overflow:hidden;background-color:rgba(0,0,0,.5)}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-inner{background:#fff;padding:30px;width:70%;margin:0 auto;position:relative;top:10%;height:80%}.monsterinsights-welcome-overlay .monsterinsights-overlay-close{background:none;border:none;position:absolute;top:5px;left:7px;padding:0;color:#777}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-content{height:100%}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-content iframe{height:100%;width:100%}.monsterinsights-float-right{float:left}.monsterinsights-loading-spinner-inline{text-align:center;margin:25px}.monsterinsights-loading-spinner-inline .monsterinsights-loading-spinner-inline-loader-holder{display:inline-block}.monsterinsights-semrush-cta{background:#fff;border-right:3px solid #338eef;padding:20px 26px;border-radius:0 3px 3px 0;position:relative}.monsterinsights-semrush-cta br{display:none}.monsterinsights-semrush-cta .monsterinsights-semrush-cta-close{position:absolute;top:12px;left:12px;cursor:pointer;border:0;background:rgba(0,0,0,0);padding:0;margin:0;outline:none}.monsterinsights-semrush-cta .monsterinsights-semrush-cta-title{font-weight:700;font-size:16px;line-height:20px;color:#393f4c;margin:0}.monsterinsights-semrush-cta .monsterinsights-semrush-cta-content{font-weight:400;font-size:14px;color:#393f4c}.monsterinsights-semrush-cta .monsterinsights-button{background:#338eef;border-radius:3px;font-weight:400;font-size:14px;border-width:0;padding:7px 12px}.monsterinsights-semrush-cta .monsterinsights-button:active,.monsterinsights-semrush-cta .monsterinsights-button:focus,.monsterinsights-semrush-cta .monsterinsights-button:hover{background:#3088e6;outline:none}.monsterinsights-row-highlight{-webkit-animation-name:color;animation-name:color;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-iteration-count:2;animation-iteration-count:2}@-webkit-keyframes color{0%{background-color:#fff}50%{background-color:#509fe2}to{background-color:#fff}}@keyframes color{0%{background-color:#fff}50%{background-color:#509fe2}to{background-color:#fff}}.monsterinsights-clearfix:after{content:"";clear:both;display:table}.monsterinsights-path-seo .monsterinsights-header{display:none}#monsterinsights-seo{background-color:#fff;margin-bottom:-54px}@media screen and (max-width:1023px){#monsterinsights-seo{margin-bottom:-100px}}#monsterinsights-seo{padding:84px 0 0}#monsterinsights-seo .monsterinsights-flex{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}@media screen and (max-width:1023px){#monsterinsights-seo .monsterinsights-flex{display:block}}#monsterinsights-seo .monsterinsights-flex.monsterinsights-justify-start{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:start}#monsterinsights-seo .monsterinsights-install-button button{background-color:#00aa63;border-radius:7px;outline:0;border:1px solid #00aa63;padding:0 0 3px 35px;font-size:16px;color:#fff;font-weight:700;cursor:pointer;width:232px;height:42px;position:relative}@media screen and (max-width:1023px){#monsterinsights-seo .monsterinsights-install-button button{margin-bottom:15px}}#monsterinsights-seo .monsterinsights-install-button button:hover,#monsterinsights-seo .monsterinsights-install-button button:hover span.monsterinsights-download-icon{background-color:rgba(0,170,99,.9)}#monsterinsights-seo .monsterinsights-install-button button span.monsterinsights-download-icon{position:absolute;left:0;top:0;display:inline-block;width:42px;height:41px;background-color:#009959;border-top-left-radius:5px;border-bottom-left-radius:5px}#monsterinsights-seo .monsterinsights-install-button button span.monsterinsights-download-icon i{font-weight:800;margin-top:5px;font-size:22px;display:inline-block}#monsterinsights-seo .installing{opacity:.5}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-wrapper{max-width:1040px;margin:0 auto}@media screen and (max-width:767px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-wrapper{max-width:320px}}@media screen and (min-width:768px) and (max-width:1023px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-wrapper{max-width:768px;padding:0 30px}}@media screen and (min-width:1024px) and (max-width:1139px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-wrapper{padding:0 30px}}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero{position:relative;-ms-flex-line-pack:center;align-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-item-align:center;align-self:center;padding-bottom:9px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero:after{content:"";display:block;width:230px;background-color:#f3f6ff;height:3px;position:absolute;right:50%;bottom:0;-webkit-transform:translate(50%);-ms-transform:translate(50%);transform:translate(50%)}@media screen and (max-width:1023px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-left{width:100%;text-align:center}}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-left .monsterinsights-aioseo-heading{width:538px;margin-bottom:3rem}@media screen and (max-width:1023px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-left .monsterinsights-aioseo-heading{width:100%;text-align:center}}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-left .monsterinsights-aioseo-heading h1{font-size:30px;text-transform:capitalize;line-height:1.2;margin-bottom:0}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-left .monsterinsights-aioseo-heading p{font-size:16px;color:#47525c;line-height:1.3;margin-top:16px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-left .monsterinsights-star-ratings{margin-right:24px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-left .monsterinsights-star-ratings .monsterinsights-stars span.star{margin-right:5px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-left .monsterinsights-star-ratings .monsterinsights-seo-active-installs{font-size:14px;color:#606467;padding:0;margin:2px 5px 0 0}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-left .monsterinsights-star-ratings .monsterinsights-seo-downloads-number{font-size:14px;color:#606467;padding-right:8px;position:relative;top:-4px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-right{width:450px;height:382px}@media screen and (max-width:767px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-right{width:320px}}@media screen and (min-width:768px) and (max-width:1023px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-right{width:700px;height:592px;margin-top:60px}}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-hero .monsterinsights-hero-right svg{width:100%;height:100%}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container{margin-top:56px;margin-bottom:56px;padding-bottom:56px;position:relative}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container:after{content:"";display:block;width:230px;background-color:#f3f6ff;height:3px;position:absolute;right:50%;bottom:0;-webkit-transform:translate(50%);-ms-transform:translate(50%);transform:translate(50%)}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container h2{font-size:22px;text-align:center;margin:0 0 8px}@media screen and (max-width:767px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container h2{line-height:1.3}}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container p{font-size:16px;text-align:center;margin:15px 0 0;padding:0}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container .monsterinsights-grid{display:grid;grid-template-columns:auto auto auto}@media screen and (max-width:767px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container .monsterinsights-grid{grid-template-columns:auto}}@media screen and (min-width:768px) and (max-width:1139px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container .monsterinsights-grid{grid-gap:25px}}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container .monsterinsights-grid.monsterinsights-aioseo-features{margin-top:58px}#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container .monsterinsights-grid .monsterinsights-aioseo-feature{width:288px;margin-bottom:32px}@media screen and (max-width:767px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container .monsterinsights-grid .monsterinsights-aioseo-feature{width:320px}}@media screen and (min-width:768px) and (max-width:1023px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container .monsterinsights-grid .monsterinsights-aioseo-feature{width:223px}}@media screen and (min-width:1024px) and (max-width:1139px){#monsterinsights-seo .monsterinsights-aioseo .monsterinsights-aioseo-features-container .monsterinsights-grid .monster
|
|